commit | e6e32315ccf7d30b1c8a7946f9940e4aaf2fe9c7 | [log] [tgz] |
---|---|---|
author | bmeurer <bmeurer@chromium.org> | Fri Aug 12 06:52:15 2016 |
committer | Commit bot <commit-bot@chromium.org> | Fri Aug 12 06:52:33 2016 |
tree | 4b6c155febb12e64c602eed5530b6659676d2967 | |
parent | b8c050424ea928cd75dec3346013a339fdfaccad [diff] |
[turbofan] Eliminate redundant elements kind transitions. A TransitionElementsKind operation is redundant if we already know that the object has the target_map (independent of what the source_map might be). R=yangguo@chromium.org Review-Url: https://codereview.chromium.org/2233403003 Cr-Commit-Position: refs/heads/master@{#38597}
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.