commit | a5d251defebb69c4a39634fc8de8a6b074c3daf3 | [log] [tgz] |
---|---|---|
author | bmeurer <bmeurer@chromium.org> | Tue Nov 08 13:44:55 2016 |
committer | Commit bot <commit-bot@chromium.org> | Tue Nov 08 13:45:44 2016 |
tree | 0fae2306ad5941236028bf6b2aeb8543d42d2e9b | |
parent | e4bae133098ae6b4785219f2f6e0becf00d27d64 [diff] |
[turbofan] Introduce TypedObjectState common operator. This adds a new TypedObjectState operator, which is a version of ObjectState that carries along MachineTypes for the inputs, so we can tell the deoptimizer how to interpret the inputs, instead of having to force everything to Tagged. Drive-by-fix: Remove the unused id parameter from ObjectState. R=tebbi@chromium.org BUG=v8:5609 Review-Url: https://codereview.chromium.org/2488623002 Cr-Commit-Position: refs/heads/master@{#40832}
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.