commit | b27e7ac0e74296d8ced544066326169f8436a32d | [log] [tgz] |
---|---|---|
author | Clemens Backes <clemensb@chromium.org> | Fri Nov 15 15:00:15 2024 |
committer | V8 LUCI CQ <v8-scoped@luci-project-accounts.iam.gserviceaccount.com> | Tue Nov 26 16:19:45 2024 |
tree | 9a0f7b344f67342c17f57930aaf56777d4acf583 | |
parent | d948e23f90849f9908607d0a3dcb6eb3f2c5be7b [diff] |
Merged: [liftoff] Fix clobbered scratch register `GetMemOp` returns an `Operand` which can contain `kScratchRegister`. We should hence not clobber that register until after the last use of the `Operand`. This CL changes the scratch register to `kScratchRegister2` which has much fewer uses, and in particular none which collides with `GetMemOp`. R=mliedtke@chromium.org Bug: 378779897 (cherry picked from commit 57a017e611a5abfb0e4b59f6de028bc4070a3615) Change-Id: Ie3fc35d5822c09cfea4ce8faf955b0bb0d44a1be Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6050180 Commit-Queue: Clemens Backes <clemensb@chromium.org> Reviewed-by: Matthias Liedtke <mliedtke@chromium.org> Cr-Commit-Position: refs/branch-heads/13.2@{#20} Cr-Branched-From: 24068c59cedad9ee976ddc05431f5f497b1ebd71-refs/heads/13.2.152@{#1} Cr-Branched-From: 6054ba94db0969220be4f94dc1677fc4696bdc4f-refs/heads/main@{#97085}
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.