commit | 40511877eb2f3c7fdab2d0dd86cc9668e5454cb7 | [log] [tgz] |
---|---|---|
author | oth <oth@chromium.org> | Tue Jul 05 13:44:05 2016 |
committer | Commit bot <commit-bot@chromium.org> | Tue Jul 05 13:46:11 2016 |
tree | 41231e11019f239a6d5cbadb47b44848757524d5 | |
parent | ddc75cc1356a58b6cfd63f9da0586e1150496b3d [diff] |
[interpreter] Introduce binary op bytecodes for Smi operand. Introduces fused bytecodes for fusing LdaSmi followed by a binary op bytecode. The chosen bytecodes are used frequently in Octane: AddSmi, SubSmi, BitwiseOrSmi, BitwiseAndSmi, ShiftLeftSmi, ShiftRightSmi. There are additional code stubs for these operations that are biased towards both the left hand and right hand operands being Smis. BUG=v8:4280 LOG=N Review-Url: https://codereview.chromium.org/2111923002 Cr-Commit-Position: refs/heads/master@{#37531}
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.