commit | 317cb6538c5dcee14dea432fecc9cad5c9d1f605 | [log] [tgz] |
---|---|---|
author | mstarzinger <mstarzinger@chromium.org> | Fri Jun 26 09:07:30 2015 |
committer | Commit bot <commit-bot@chromium.org> | Fri Jun 26 09:07:45 2015 |
tree | dab51c63c72ad5013ddd90fbd3ae12ddc8054132 | |
parent | d350ab47f70a9810a28100bef7d98df84ff90755 [diff] |
[turbofan] Implement sharing of context-independent code. This allows context-independent code generated by TurboFan to be cached in the optimized code map and reused across native contexts. Note that currently this cache is still flushed at GC time. R=bmeurer@chromium.org,mvstanton@chromium.org TEST=cctest/test-compiler/OptimizedCodeSharing Review URL: https://codereview.chromium.org/1208013002 Cr-Commit-Position: refs/heads/master@{#29313}
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://code.google.com/p/v8/
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/*