commit | 515146f1d18d017ca680204320c03fb63a737c61 | [log] [tgz] |
---|---|---|
author | Shu-yu Guo <syg@chromium.org> | Tue Jun 13 22:22:24 2023 |
committer | V8 LUCI CQ <v8-scoped@luci-project-accounts.iam.gserviceaccount.com> | Tue Jun 13 23:15:35 2023 |
tree | a22a5648743b973efd342980046447f4e202012a | |
parent | f6e528ea599f3ee6dc470d27ae2054bd6f8b2772 [diff] |
Revert "[maglev] Avoid emitting phis for exception context" This reverts commit 466ac7969efbccb08cb8e186e8d092c61b86d577. Reason for revert: ChromeOS breakage https://ci.chromium.org/ui/p/chromium/builders/try/chromeos-amd64-generic-rel/1556980/overview Original change's description: > [maglev] Avoid emitting phis for exception context > > When the handler context register has a known value, we can avoid > emitting a Phi for the value, by using the same merge logic on the > handler-specific context register as we do for other registers. In > practice, this means that the current context is always statically > known, except when there is a generator. > > Bug: v8:7700 > Change-Id: Ib00466f95ef582ef97bdff3ca44db791d77d024b > Fixed: chromium:1450594 > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4608004 > Commit-Queue: Leszek Swirski <leszeks@chromium.org> > Auto-Submit: Leszek Swirski <leszeks@chromium.org> > Reviewed-by: Victor Gomes <victorgomes@chromium.org> > Cr-Commit-Position: refs/heads/main@{#88204} Bug: v8:7700 Change-Id: I86abc765f97f3ef8806adff735aa060b80169295 No-Presubmit: true No-Tree-Checks: true No-Try: true Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4610173 Commit-Queue: Shu-yu Guo <syg@chromium.org> Owners-Override: Shu-yu Guo <syg@chromium.org> Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com> Cr-Commit-Position: refs/heads/main@{#88217}
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.