commit | e26aa58b1af9f112f0ee315edab8375f8f3ea5f3 | [log] [tgz] |
---|---|---|
author | mstarzinger <mstarzinger@chromium.org> | Mon Jan 18 17:20:39 2016 |
committer | Commit bot <commit-bot@chromium.org> | Mon Jan 18 17:21:01 2016 |
tree | ec1d13ad6fbc9ada8dc0370a588df9638086924c | |
parent | 60d9733a571c79075fa1c77146464c9ae9ee6052 [diff] |
[interpreter] Add field for handler table to bytecode array. This adds a handler table field to the header of our BytecodeArray objects. The field will eventually hold a range-based handler table similar to full-codegen code, to support exception handlong within interpreted code. R=oth@chromium.org BUG=v8:4674 LOG=n Review URL: https://codereview.chromium.org/1606493002 Cr-Commit-Position: refs/heads/master@{#33373}
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.