commit | 98dd7a812557e650c48a593dba3a4b34bf98a2ea | [log] [tgz] |
---|---|---|
author | Darius Mercadier <dmercadier@chromium.org> | Thu Jan 30 13:48:34 2025 |
committer | V8 LUCI CQ <v8-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Jan 31 09:36:55 2025 |
tree | 80c0a81bf04d05dcda1dcaeb691d8a66bb1be9b6 | |
parent | 33ca4f51e5dbba9817eba16fd3249e66a880cf33 [diff] |
[turboshaft][isel] Improve branch-if-overflow fusion A recent CL (https://crrev.com/c/6206471) tried to improve branch-if-overflow fusion, but due to an oversight, loop phis were preventing their backedge from coming from a fused operation (without a good reason). Fixed: 392929030 Bug: 393335991 Change-Id: Ib977fa9477a24b5da4e8b8eee2405eca5bcb1fe9 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6218884 Commit-Queue: Matthias Liedtke <mliedtke@chromium.org> Reviewed-by: Matthias Liedtke <mliedtke@chromium.org> Auto-Submit: Darius Mercadier <dmercadier@chromium.org> Cr-Commit-Position: refs/heads/main@{#98429}
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.