commit | 7f10d47a49a02693c885b2fffd018e9c6b0dcd95 | [log] [tgz] |
---|---|---|
author | Darius Mercadier <dmercadier@chromium.org> | Wed May 08 07:45:22 2024 |
committer | V8 LUCI CQ <v8-scoped@luci-project-accounts.iam.gserviceaccount.com> | Wed May 08 08:26:23 2024 |
tree | b880801bf067db7d82d7d4a2cd1c948c8f5b5af0 | |
parent | 3b8777dfd1871b53ebbb8f9086701eb89151b863 [diff] |
[turboshaft] Speed up test-compare-combine These tests were a bit slow. One of them in particular (CombineCompareTwoLogicInputs) had more than 11 millions iterations, which in DEBUG mode (and in particular on simulator builds) was very slow (with this CL, it only has 28000 iterations). Drive-by: replace some OpIndex by V<>. Change-Id: I0605225ab68a70947245bc1159f91fa10cce8d51 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5522497 Reviewed-by: Matthias Liedtke <mliedtke@chromium.org> Auto-Submit: Darius Mercadier <dmercadier@chromium.org> Commit-Queue: Matthias Liedtke <mliedtke@chromium.org> Cr-Commit-Position: refs/heads/main@{#93784}
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.