commit | 33629651584b669c0bd24a9be7bad868f01ea809 | [log] [tgz] |
---|---|---|
author | mtrofin <mtrofin@chromium.org> | Tue Oct 11 15:05:44 2016 |
committer | Commit bot <commit-bot@chromium.org> | Tue Oct 11 15:06:04 2016 |
tree | 565c1dcde005ee7ab70383814b4548b69f9f6822 | |
parent | e46f1016f2d0be6a33c65763bf9ad48659ae091b [diff] |
[turbofan] Avoid large deopt blocks Treat allocation of splintered ranges differently, by optimizing for move counts (i.e. try to have less move counts), rather than optimizing for quality of moves (which is what normal allocation does). We can see reductions in code size in the benchmarks that measure it (e.g. Unity) BUG= Review-Url: https://codereview.chromium.org/2347563004 Cr-Commit-Position: refs/heads/master@{#40178}
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.