commit | c207f10b09303a525a5e15a2a61f03efd2c300a1 | [log] [tgz] |
---|---|---|
author | mstarzinger <mstarzinger@chromium.org> | Mon Feb 01 10:46:57 2016 |
committer | Commit bot <commit-bot@chromium.org> | Mon Feb 01 10:47:33 2016 |
tree | e97d5c4dfb959ebcfe192a1bd2ae079d473dd013 | |
parent | 83a2c8ed7f0f3070af6d23cd9c465bbf8c503df6 [diff] |
[interpreter] Simplify BytecodeBranchAnalysis to minimum. This simplifies the branch analysis we perform on the bytecode stream down to the bare minimum that we need to build graphs. Note that we still record all branch targets, even though only the backwards ones would be needed, but this is essentially for free and might be useful eventually. R=oth@chromium.org Review URL: https://codereview.chromium.org/1646873004 Cr-Commit-Position: refs/heads/master@{#33635}
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.