commit | 4ee6fdf38b89950f645d91a33a98c219869798f6 | [log] [tgz] |
---|---|---|
author | bmeurer <bmeurer@chromium.org> | Fri Nov 11 08:08:32 2016 |
committer | Commit bot <commit-bot@chromium.org> | Fri Nov 11 08:08:53 2016 |
tree | c110a46a9a61587a44b99df05787831b1bfddd8b | |
parent | c7ebb14c3cff64ebf4c8844f9bccb2dcedbe213a [diff] |
[turbofan] Fix a couple of invalid Uint32Constant/Int32Constant uses. The contract for TurboFan is that we use NumberConstants for any kind of number value until the representation selection picks concrete representations, i.e. Int32Constant or Float64Constant. We will soon be able to also guard this contract with DCHECKs. BUG=v8:5267 R=yangguo@chromium.org Review-Url: https://codereview.chromium.org/2499573002 Cr-Commit-Position: refs/heads/master@{#40908}
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.