commit | 616af7ff7d71a84bb066a38f1c95503c01d889f6 | [log] [tgz] |
---|---|---|
author | Hao Xu <hao.a.xu@intel.com> | Mon Jan 08 08:04:51 2024 |
committer | V8 LUCI CQ <v8-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon Jan 08 11:01:49 2024 |
tree | 5c03229dae1f72a55f47448236414b38c9c175d9 | |
parent | 09f50a88257c9b86bcf56c9b85bbc0d13842398a [diff] |
[turboshaft] Optimize instructions generated for LoadFieldByIndex Before: REX.W movsxlq r15,r8 REX.W movq rbx,r15 andl rbx,0x1 movl rbx,rbx testl rbx,rbx After: REX.W movsxlq r15,r8 testl r15,r15 Change-Id: I078195543fefa0aeb4d3615dd60a6ba45a209732 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5176388 Reviewed-by: Nico Hartmann <nicohartmann@chromium.org> Commit-Queue: Hao A Xu <hao.a.xu@intel.com> Cr-Commit-Position: refs/heads/main@{#91711}
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.