commit | 888c0c2d8bc521b63cb629065c804e070f858171 | [log] [tgz] |
---|---|---|
author | mtrofin <mtrofin@chromium.org> | Wed Dec 16 04:56:15 2015 |
committer | Commit bot <commit-bot@chromium.org> | Wed Dec 16 04:56:30 2015 |
tree | b590870a393b51bd206584a68e0bc9dced4341fb | |
parent | 3cc09fb47fd4c05ee810f384637e5359f3364a38 [diff] |
[turbofan] move down parallel moves. The regression the bug tracks (see the bug link) appears to be due to identical gap moves in the predecessors of a block not being moved to the common successor. This CR fixes one reason that is happening. BUG=chromium:549262 LOG=n Review URL: https://codereview.chromium.org/1523393003 Cr-Commit-Position: refs/heads/master@{#32874}
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://github.com/v8/v8/wiki
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 on the V8 wiki.