commit | 1da4b88e8200172eab71bc71253a8adf0e08b466 | [log] [tgz] |
---|---|---|
author | mtrofin <mtrofin@chromium.org> | Tue Mar 22 08:03:37 2016 |
committer | Commit bot <commit-bot@chromium.org> | Tue Mar 22 08:04:48 2016 |
tree | 9280810b62c3038dd42200ce9d6a774cdc47b866 | |
parent | e1bd9af1733b03175f62872cca3697bd46a23c42 [diff] |
[turbofan] Fix operands for VisitDiv on Intel. The idiv instruction has 2 registers as output. This needs to be modeled so that the move optimizer won't incorrectly elide away moves. BUG= Review URL: https://codereview.chromium.org/1818323002 Cr-Commit-Position: refs/heads/master@{#34978}
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.