commit | 4f674da2e990d8a05353b89d9699baede752e34a | [log] [tgz] |
---|---|---|
author | ishell <ishell@chromium.org> | Thu Jun 23 16:47:36 2016 |
committer | Commit bot <commit-bot@chromium.org> | Thu Jun 23 16:51:14 2016 |
tree | 7cf3c8ca5f44f9581f289fd07f469a07e3b22320 | |
parent | 25d59e9d48b83202962cd1932606ede39b782ce8 [diff] |
[ic] Don't compile load interceptor handlers for LoadGlobalIC. As a result LoadGlobalIC requires different slow stubs for each TypeofMode. This CL is a prerequisite for not passing variable name to LoadGlobalIC: the interceptor handler is the only kind of handler that requires a name and therefore LoadGlobalIC dispatcher does not need a variable name as well. BUG=chromium:576312 Review-Url: https://codereview.chromium.org/2081143002 Cr-Commit-Position: refs/heads/master@{#37222}
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.