commit | 7d383be9da728997e0c0a68500a6ac2f248240c1 | [log] [tgz] |
---|---|---|
author | bmeurer <bmeurer@chromium.org> | Thu Oct 27 05:59:41 2016 |
committer | Commit bot <commit-bot@chromium.org> | Thu Oct 27 06:00:05 2016 |
tree | e6efd756312481c57fce3d8fd14e8505a67fc4b1 | |
parent | 9bc155b9c390f50c817ecca3ba54b4c107b82ea8 [diff] |
[crankshaft] Support all oddballs for truncating TaggedToI changes. For inputs to truncating binary operations like <<, | or >>>, support all Oddballs not just undefined, true and false. This unifies treatment of these truncations in Crankshaft and TurboFan, and is very easy nowadays, since the memory layout of Oddball and HeapNumber is compatible. R=yangguo@chromium.org BUG=v8:5400 Review-Url: https://codereview.chromium.org/2452193003 Cr-Commit-Position: refs/heads/master@{#40608}
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.