commit | 1d7da9c6395cd82a4bb37cd0d2a6bc94b701348d | [log] [tgz] |
---|---|---|
author | mstarzinger <mstarzinger@chromium.org> | Mon Mar 07 16:26:08 2016 |
committer | Commit bot <commit-bot@chromium.org> | Mon Mar 07 16:26:25 2016 |
tree | b524bc297304ae42f42a26777992d069298f494d | |
parent | cf43d2a788276bfb25618c30653ba3900b53a9fd [diff] |
[compiler] Move JSFunction post-instantiation tasks. This moves the post-instantiation work performed on newly allocated JSFunction objects into the Compiler class. The aim is to eventually have all decisions how to compile functions be centralized within the compiler pipeline. R=mvstanton@chromium.org Review URL: https://codereview.chromium.org/1764023003 Cr-Commit-Position: refs/heads/master@{#34550}
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.