commit | 8d4658077ca9f35904cefe0fb1cb4e927ea9f240 | [log] [tgz] |
---|---|---|
author | rmcilroy <rmcilroy@chromium.org> | Mon Jul 25 11:30:36 2016 |
committer | Commit bot <commit-bot@chromium.org> | Mon Jul 25 11:31:08 2016 |
tree | 8338e595ec1e65337ff429ba424b9445ca24b463 | |
parent | 0a6ccaf2684ff5972cb7a307c5270aa977c82483 [diff] |
[Interpreter] Avoid allocating pairs array in VisitDeclarations. Move the logic for allocating the global declaration pair array from VisitDeclarations to a later step. This is required for concurrent bytecode generation. This change requires adding support for reserving fixed constant pool array entries, which can be later updated with the value of the literal. BUG=v8:5203 Review-Url: https://codereview.chromium.org/2167763003 Cr-Commit-Position: refs/heads/master@{#38010}
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.