commit | 9d66129a785e887b00f36c60a3b2b93b766b6f46 | [log] [tgz] |
---|---|---|
author | Olivier Flückiger <olivf@chromium.org> | Thu Nov 28 15:30:16 2024 |
committer | V8 LUCI CQ <v8-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Nov 28 16:01:38 2024 |
tree | 8e6bf7e598f1e2cfc37302de726d54204634eb83 | |
parent | 0efc70060ab7f22cb76cc1f0620df8a6123f9491 [diff] |
[maglev] Fix assert in uncompressed UncheckedSmiTagInt32 On non-compressed builds smi tagging left shifts by 31. This is (a) guaranteed to succeed by definition and (b) the state of the overflow flag is undefined on intel. Bug: 40096293 Change-Id: If7ddbccc77716cb08b0df1823e15b60fa865346c Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6054732 Auto-Submit: Olivier Flückiger <olivf@chromium.org> Reviewed-by: Igor Sheludko <ishell@chromium.org> Commit-Queue: Olivier Flückiger <olivf@chromium.org> Cr-Commit-Position: refs/heads/main@{#97473}
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.