commit | fceed6b15911b573a2fd9642dd443173279243ce | [log] [tgz] |
---|---|---|
author | Olivier Flückiger <olivf@chromium.org> | Mon Feb 05 11:40:27 2024 |
committer | V8 LUCI CQ <v8-scoped@luci-project-accounts.iam.gserviceaccount.com> | Tue Feb 06 16:49:59 2024 |
tree | 3f4b5c226fe3f99312da6a4a682226ef9d419a19 | |
parent | 29f0359a4d6f304677b0e34e5d7e2f735e3bf6c2 [diff] |
[maglev][cse] Ignore zero cost nodes Nodes which are free to execute should have the smallest possible liveness interval instead of being tracked for cse. Fixes a regression in gaussian-blur. Fixed: chromium:41497279 Change-Id: I7d3b78ce8fb2821bc5dba5634a411553d9f04bc5 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5268502 Auto-Submit: Olivier Flückiger <olivf@chromium.org> Reviewed-by: Darius Mercadier <dmercadier@chromium.org> Commit-Queue: Darius Mercadier <dmercadier@chromium.org> Cr-Commit-Position: refs/heads/main@{#92219}
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.