commit | 75f6ad74b2c0fe2e5dec7110d076d892cfbb6b69 | [log] [tgz] |
---|---|---|
author | rmcilroy <rmcilroy@chromium.org> | Fri Oct 02 18:13:41 2015 |
committer | Commit bot <commit-bot@chromium.org> | Fri Oct 02 18:13:57 2015 |
tree | 0fa4ff604d69c066ec6d9bc3d791cfd0099e4fe1 | |
parent | cf036c6fd78b97e679d2e58b4831b27833527684 [diff] |
[Interpreter] Add CallRuntime support to the interpreter. Adds support for calling runtime functions from the interpreter. Adds the CallRuntime bytecode which takes a Runtime::FunctionId of the function to call and the arguments in sequential registers. Adds a InterpreterCEntry builtin to enable the interpreter to enter C++ code based on the functionId. Also renames Builtin::PushArgsAndCall to Builtin::InterpreterPushArgsAndCall and groups all the interpreter builtins together. BUG=v8:4280 LOG=N Review URL: https://codereview.chromium.org/1362383002 Cr-Commit-Position: refs/heads/master@{#31089}
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.