commit | 968d3bce5832b66d1a33eb252b0a43d50bbe337b | [log] [tgz] |
---|---|---|
author | bmeurer <bmeurer@chromium.org> | Tue Jul 26 14:18:32 2016 |
committer | Commit bot <commit-bot@chromium.org> | Tue Jul 26 14:19:07 2016 |
tree | ca8f84e5b5650b99b534536103172a65cf6146c0 | |
parent | a06f63a2d3661e1d1d27adadf8a054223418a165 [diff] |
[x64] Apply leaq optimizations similar to leal. So far we didn't really recognize leaq, but only leal instructions in the x64 InstructionSelector. Now that we actually generate more of them, we should also pay more attention to those. R=epertoso@chromium.org Review-Url: https://codereview.chromium.org/2186573002 Cr-Commit-Position: refs/heads/master@{#38055}
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.