commit | 80f24f7a4c2037c677531db21643f20e4dffc789 | [log] [tgz] |
---|---|---|
author | paul.lind <paul.lind@imgtec.com> | Thu Apr 16 16:05:49 2015 |
committer | Commit bot <commit-bot@chromium.org> | Thu Apr 16 16:05:45 2015 |
tree | b0a0b0d319af5830dc6436a53870659fc34d3811 | |
parent | b882479f1c84a48961b8aec81fa1bb1225034784 [diff] |
Reland MIPS: Vector-ICs - speed towards the monomorphic exit as quickly as possible. Port 35a67b745d862c5b1f584c2786ebf1369dc4f1ff Original commit message: Thanks to some careful assumptions, we can examine the object found at vector[slot] and trust it's a heap object where the second field is either a map if it's a WeakCell, or definitely not a map if it's a Symbol, String or FixedArray. Use this to save a memory read. BUG= Review URL: https://codereview.chromium.org/1053843003 Cr-Commit-Position: refs/heads/master@{#27757} Review URL: https://codereview.chromium.org/1083413003 Cr-Commit-Position: refs/heads/master@{#27893}
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://code.google.com/p/v8/
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/*