commit | 66e2a786795859926e0ea3d23620e743a59fe88e | [log] [tgz] |
---|---|---|
author | zhengxing.li <zhengxing.li@intel.com> | Wed Jan 27 12:59:52 2016 |
committer | Commit bot <commit-bot@chromium.org> | Wed Jan 27 13:00:26 2016 |
tree | bb7920ed687259944f3f968feac27c92a4fe4498 | |
parent | d984b3b0ce91e55800f5323b4bb32a06f8a5aab1 [diff] |
X87: [es6] Tail calls support. port 6131ab1edd6e78be01ac90b8f0b0f4f27f308071 (r33509) original commit message: This CL implements PrepareForTailCall() mentioned in ES6 spec for full codegen, Crankshaft and Turbofan. When debugger is active tail calls are disabled. Tail calling can be enabled by --harmony-tailcalls flag. BUG= Review URL: https://codereview.chromium.org/1637163003 Cr-Commit-Position: refs/heads/master@{#33549}
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.