commit | 727266fcb8b11becf58a298dcd909baa89d2b582 | [log] [tgz] |
---|---|---|
author | zhengxing.li <zhengxing.li@intel.com> | Fri Jul 01 04:32:01 2016 |
committer | Commit bot <commit-bot@chromium.org> | Fri Jul 01 04:32:21 2016 |
tree | a88f8f8ff5c7fad72bf936d9f47d718e5ce38e39 | |
parent | 1c1cd34f83244db3a2c2a1515e7331cf26259107 [diff] |
X87: [turbofan] Introduce Float64Pow and NumberPow operators. port e607e12ea0a706a0b8cb109e95f923426094dc09 (r37323) original commit message: Introduce a new machine operator Float64Pow that for now is backed by the existing MathPowStub to start the unification of Math.pow, and at the same time address the main performance issue that TurboFan still has with the imaging-darkroom benchmark in Kraken. Also migrate the Math.pow builtin itself to a TurboFan builtin and remove a few hundred lines of hand-written platform code for special handling of the fullcodegen Math.pow version. BUG= Review-Url: https://codereview.chromium.org/2119773003 Cr-Commit-Position: refs/heads/master@{#37468}
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.