commit | 8ea834385e4542ebccb2fb0239cc10a2b0d01442 | [log] [tgz] |
---|---|---|
author | mbrandy <mbrandy@us.ibm.com> | Tue Dec 01 23:09:36 2015 |
committer | Commit bot <commit-bot@chromium.org> | Tue Dec 01 23:09:48 2015 |
tree | 463d3c415d8e12a6e07f0438d5712ba88831530c | |
parent | ec5590dc82bd533373e0db9458f7481caead60ca [diff] |
PPC: Provide call counts for constructor calls, surface them as a vector IC. Port 66d5a9df62da458a51e8c7ed1811dc9660f4f418 Original commit message: CallIC and CallConstructStub look so alike, at least in the feedback they gather even if the implementation differs...and CallIC has such a nice way of surfacing the feedback (CallICNexus), that there is a request to make CallConstructStub look analogous. Enter ConstructICStub. R=mvstanton@chromium.org, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com BUG= Review URL: https://codereview.chromium.org/1485303002 Cr-Commit-Position: refs/heads/master@{#32481}
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.