commit | 6256e1dcd5c45678b7fd03f7810283a303fd0ef5 | [log] [tgz] |
---|---|---|
author | rmcilroy <rmcilroy@chromium.org> | Thu Oct 22 21:41:47 2015 |
committer | Commit bot <commit-bot@chromium.org> | Thu Oct 22 21:42:04 2015 |
tree | a193da74374bab017f33179835a5bd260a71e91a | |
parent | 4e0d11435e99a1873c0c54e8ed170e7b5c3f9e9c [diff] |
[Interpreter] Fill out function prologue support. Fills out some more of the function prologue support in the interpreter. Deals with creation of arguments objects and throwing IllegalRedeclarations if necessary. Also adds (untested) support for this.function and new.target variable assignment. Also fixes a bug in Frames::is_java_script() to deal with interpreter frames correctly. Cleans up comments in builtins InterpreterEntryTrampoline about missing prologue support. Adds the following bytecodes: - CreateArgumentsSloppy - CreateArgumentsStrict BUG=v8:4280 LOG=N Review URL: https://codereview.chromium.org/1412953007 Cr-Commit-Position: refs/heads/master@{#31486}
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/*
Please follow the instructions mentioned on the V8 wiki.