commit | 85969edead72426d6da6a387dba2480ad0b578e0 | [log] [tgz] |
---|---|---|
author | bmeurer <bmeurer@chromium.org> | Tue Jul 12 09:12:20 2016 |
committer | Commit bot <commit-bot@chromium.org> | Tue Jul 12 09:15:11 2016 |
tree | 544d06b3d1f544496d5e5734156ebb5cf026e0ff | |
parent | e92e911814cdc6d146bbd23083b8732b9881c2c5 [diff] |
[turbofan] Unify BooleanToNumber, StringToNumber and PlainPrimitiveToNumber. The PlainPrimitiveToNumber operator performs a superset of the operations previously performed by the BooleanToNumber and StringToNumber operators, so we can just use the special lowering rules for PlainPrimitiveToNumber based on the input type and get rid of the specialized operators. R=jarin@chromium.org Review-Url: https://codereview.chromium.org/2139183002 Cr-Commit-Position: refs/heads/master@{#37669}
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.