commit | 6c8996ab1268468deaefb77c68f8d59977c66b71 | [log] [tgz] |
---|---|---|
author | Victor Gomes <victorgomes@chromium.org> | Tue Apr 11 08:07:37 2023 |
committer | V8 LUCI CQ <v8-scoped@luci-project-accounts.iam.gserviceaccount.com> | Tue Apr 11 08:52:44 2023 |
tree | 874c5f152d2d569ec1a8c63c6e9e4dd4842e8955 | |
parent | a1f4f8796a31a1cfbd21b01946189db1f46442d3 [diff] |
[maglev] Get raw accumulator to skip conversion nodes ... in StoreAndCacheContextSlot, otherwise we would cache the conversion node and try to set the accumulator once we load from the cache in InterpreterFrameState::set and fail in a DCHECK. Fixed: chromium:1431687 Bug: v8:7700 Change-Id: If823db98fd455b11442a63abacddb3edbfcc7f82 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4413495 Reviewed-by: Leszek Swirski <leszeks@chromium.org> Auto-Submit: Victor Gomes <victorgomes@chromium.org> Commit-Queue: Leszek Swirski <leszeks@chromium.org> Cr-Commit-Position: refs/heads/main@{#86999}
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.