commit | 57037944127d4f3ff4ab8392cb318c651a788925 | [log] [tgz] |
---|---|---|
author | chunyang.dai <chunyang.dai@intel.com> | Tue Mar 24 08:08:06 2015 |
committer | Commit bot <commit-bot@chromium.org> | Tue Mar 24 08:08:19 2015 |
tree | 8b03f49ac4ea6783dc865b71732646b703477bcf | |
parent | aca7895353e4e4b46124a4873f8119a0a89c33a1 [diff] |
X87: Remove kind field from StackHandler. port 15f8213809a57c2a163b500a732c9ffe5160a41a (r27263) original commit message: This relands commit 96f79568a926966ebcf0685bf9adc947f4e1fbff. This makes the Isolate::Throw logic not depend on a prediction of whether an exception is caught or uncaught. Such a prediction is inherently undecidable because a finally block can decide between consuming or re-throwing an exception depending on arbitray control flow. There still is a conservative prediction mechanism in place that components like the debugger or tracing can use for reporting. With this change we can get rid of the StackHandler::kind field, a pre-requisite to do table-based lookups of exception handlers. BUG= Review URL: https://codereview.chromium.org/1027413002 Cr-Commit-Position: refs/heads/master@{#27385}
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/*