commit | 3f7e96df21c251d7120c0ae86248406878158afe | [log] [tgz] |
---|---|---|
author | mtrofin <mtrofin@chromium.org> | Wed Dec 23 04:59:07 2015 |
committer | Commit bot <commit-bot@chromium.org> | Wed Dec 23 04:59:28 2015 |
tree | 0d2235a15b8fc77ec6f27fc1c66e1f4abab98118 | |
parent | f73642220666043765e19c237d0762ece3229c76 [diff] |
[turbofan] move optimizer - CompressBlock cleanup. I believe the code reads easier after this change. The original code probably dates back to when we had 4 gap positions. Now that there are only 2, the logic can be simpler by avoiding a loop and instead treating each case explicitly: no gaps; gaps just at end; gaps at start and maybe end. That way, it is also easier to understand how the moves get pushed downwards. This is what got me to make this change in the first place: trying to work out a finer grained move optimization. BUG= Review URL: https://codereview.chromium.org/1543973002 Cr-Commit-Position: refs/heads/master@{#33016}
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.