commit | aa0ddf7db41eee028cd86ba23f74ac56e5c7e84f | [log] [tgz] |
---|---|---|
author | sigurds <sigurds@chromium.org> | Wed Dec 02 10:53:28 2015 |
committer | Commit bot <commit-bot@chromium.org> | Wed Dec 02 10:53:50 2015 |
tree | 6bcc4071118895fa0c6dba0f3b1f72160697a850 | |
parent | 9bee67509c5837d5fb84cddac133e67d289a0cf7 [diff] |
[turbofan] Initial support for escape analysis. This is the first part of escape analysis for turbofan. At the moment, there is no deopt support, and support for loops is partial (only binary Phis are handled). The CL includes 4 unittests. There are also 8 new mjsunit tests, some of which are skiped as they require features not yet implemented. BUG=v8:4586 LOG=n Review URL: https://codereview.chromium.org/1457683003 Cr-Commit-Position: refs/heads/master@{#32498}
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.