commit | 8bfa1ea33ae51b938af3532d1bebc6b1f6583f9a | [log] [tgz] |
---|---|---|
author | mstarzinger <mstarzinger@chromium.org> | Thu Jan 28 12:18:14 2016 |
committer | Commit bot <commit-bot@chromium.org> | Thu Jan 28 12:18:24 2016 |
tree | 769a0d862c5a263bfdbe331a3f2b0ecacf463284 | |
parent | 55438d60847c4df4579539ec48c60ec11cd522c4 [diff] |
[interpreter] Translate exception handlers into graph. This translates the exception handler table attached to a bytecode array correctly into exceptional projections within the TurboFan graph. We perform an abstract simulation of handlers that are being entered and exited by the bytecode iteration to track the correct handler for each node. R=oth@chromium.org BUG=v8:4674 LOG=n Review URL: https://codereview.chromium.org/1641723002 Cr-Commit-Position: refs/heads/master@{#33580}
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.