commit | 475d178f2e10c70f20dd2f4f397073f3a70298a0 | [log] [tgz] |
---|---|---|
author | mstarzinger <mstarzinger@chromium.org> | Fri Jan 22 16:25:46 2016 |
committer | Commit bot <commit-bot@chromium.org> | Fri Jan 22 16:26:16 2016 |
tree | 1b8e983bd518ab94b8a8e16c9f4f12cd1d879dba | |
parent | 35dfeb2cfda3371535ce0c90e2a0d7bae132fce9 [diff] |
[interpreter] Add ReThrow bytecode for try-finally support. This adds an explicit ReThrow bytecode to be used in the modelling of try-finally statements. An exception that is being re-thrown should not trigger message object creation or location computation and hence cannot use the existing Throw bytecode. R=rmcilroy@chromium.org TEST=cctest/test-interpreter/InterpreterTryFinally BUG=v8:4674 LOG=n Review URL: https://codereview.chromium.org/1621673002 Cr-Commit-Position: refs/heads/master@{#33472}
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.