commit | 03bf4dc0fdcd67fc8b5ad6ee92d2550332cf12da | [log] [tgz] |
---|---|---|
author | jyan <jyan@ca.ibm.com> | Tue Jun 14 05:11:57 2016 |
committer | Commit bot <commit-bot@chromium.org> | Tue Jun 14 06:12:04 2016 |
tree | c565a65a8218762c63d0eaca3bef94792329082d | |
parent | 24139633c88082de5db0b99b86e6c5178a7e4822 [diff] |
S390: Fix arguments object stubs for large arrays. Port e95cfafb67dba67eb7c541d97f5e69f8280df771 Original commit message: This fixes FastNewStrictArgumentsStub and FastNewRestParameterStub to no longer assume that the strict arguments object being allocated will fit into new-space. The case where said object needs to move to large object space is now handled in the runtime. R=mstarzinger@chromium.org, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com, mbrandy@us.ibm.com, bjaideep@ca.ibm.com BUG= Review-Url: https://codereview.chromium.org/2064023002 Cr-Commit-Position: refs/heads/master@{#36945}
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.