commit | 4a0e07a0cc1284ecde91381d40981f4791266d79 | [log] [tgz] |
---|---|---|
author | ishell <ishell@chromium.org> | Tue Nov 15 10:09:43 2016 |
committer | Commit bot <commit-bot@chromium.org> | Tue Nov 15 10:10:40 2016 |
tree | 668c642c34c81ba5301a9a7a9197377e4d313c52 | |
parent | e18b03e651a9ab6dea61a43d6eb337de418dae95 [diff] |
[ic] Refactor LoadIC code. Extract CSA::HandleLoadICSmiHandlerCase() from CSA::HandleLoadICHandlerCase() and CSA::EmitLoadICProtoArrayCheck() from CSA::HandleLoadICProtoHandler(). This is a preliminary step for extracting LoadICProtoArrayCheck to a separate stub which is necesary to fix the preformance regression caused by proto array handlers support. BUG=v8:5561, chromium:660795 Review-Url: https://codereview.chromium.org/2498013002 Cr-Commit-Position: refs/heads/master@{#40983}
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.