commit | b0b97bfc0f3043058a479f62d3f4f0ea9995e6e5 | [log] [tgz] |
---|---|---|
author | bmeurer <bmeurer@chromium.org> | Wed Sep 21 07:14:29 2016 |
committer | Commit bot <commit-bot@chromium.org> | Wed Sep 21 07:15:20 2016 |
tree | d954503466995557fc39ad7c15f5d864f603363c | |
parent | 0965b9b5df532d3aa0583966ca60794b54f56943 [diff] |
[turbofan] Also allow TaggedSigned/Pointer memory operand. When we added the new MachineRepresentation::kTaggedSigned and MachineRepresentation::kTaggedPointer, we didn't extend the logic for memory operand covering, and so for map checks and other comparisons with fields we'd always need an additional register. This fixes that and does reduce register pressure in some cases. R=jarin@chromium.org BUG=v8:5267,v8:5270 Review-Url: https://codereview.chromium.org/2354863003 Cr-Commit-Position: refs/heads/master@{#39575}
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.