commit | 8f82330cc7b292abd4aad64ea520cc6b3e5e15b7 | [log] [tgz] |
---|---|---|
author | Michael Achenbach <machenbach@chromium.org> | Thu Feb 06 19:05:17 2025 |
committer | V8 LUCI CQ <v8-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Feb 06 19:06:07 2025 |
tree | d711f32b24ffa17081ebbb3a6a69c3f96b9dac1a | |
parent | 810a03bbcbf8aa449a483ce84eb85552606a9a8f [diff] |
Revert "Lower the maximum JS parameter count" This reverts commit 1827ed8345369ca50a55a10ab3e45bcc581c6339. Reason for revert: The test regress-crbug-724153 now times out on multiple bots for some reason: https://ci.chromium.org/ui/p/v8/builders/ci/V8%20Linux64/60517/overview https://ci.chromium.org/ui/p/v8/builders/ci/V8%20Linux64%20TSAN/56221/overview Original change's description: > Lower the maximum JS parameter count > > To allow extra implicit arguments on the call node without overflowing > the uint16_t input count, in particular in the wasm-to-js wrapper where > we don't have a bailout mechanism. > > R=verwaest@chromium.org > > Fixed: 394350433 > Change-Id: I61d2e2387539cafd6a0909c3ee035c93d0217be3 > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6239302 > Reviewed-by: Toon Verwaest <verwaest@chromium.org> > Commit-Queue: Thibaud Michaud <thibaudm@chromium.org> > Cr-Commit-Position: refs/heads/main@{#98556} Change-Id: I6b5886f5dad2a4bdf1966841ea33b5702b78df20 No-Presubmit: true No-Tree-Checks: true No-Try: true Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6240472 Auto-Submit: Michael Achenbach <machenbach@chromium.org> Commit-Queue: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com> Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com> Cr-Commit-Position: refs/heads/main@{#98565}
V8 is Google's open source JavaScript engine.
V8 implements ECMAScript as specified in ECMA-262.
V8 is written in C++ and is used in Google Chrome, the open source browser from Google.
V8 can run standalone, or can be embedded into any C++ application.
V8 Project page: https://v8.dev/docs
Checkout depot tools, and run
fetch v8
This will checkout V8 into the directory v8
and fetch all of its dependencies. To stay up to date, run
git pull origin gclient sync
For fetching all branches, add the following into your remote configuration in .git/config
:
fetch = +refs/branch-heads/*:refs/remotes/branch-heads/* fetch = +refs/tags/*:refs/tags/*
Please follow the instructions mentioned at v8.dev/docs/contribute.