commit | 4b0565262ab09411d85ee734bd1ae392bf2905c4 | [log] [tgz] |
---|---|---|
author | chunyang.dai <chunyang.dai@intel.com> | Thu May 07 04:01:39 2015 |
committer | Commit bot <commit-bot@chromium.org> | Thu May 07 04:01:45 2015 |
tree | 293c74e668c0e31aa9af3969f0c8cb938976d236 | |
parent | c3529ce50158546e2f2c25ee888e7e0170a488f1 [diff] |
X87: Optimize the typeof operator. port 7798548a8f2ef14e8320cc42effa86f0eb8e4294 (r28260) original commit message: typeof was implemented as a runtime function. Calling it in optimized code with a non-constant input becomes burdensome. BUG= Review URL: https://codereview.chromium.org/1124263005 Cr-Commit-Position: refs/heads/master@{#28279}
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://code.google.com/p/v8/
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/*