commit | 8d6a228819d2a45a20e1dd5982ad53bf23145667 | [log] [tgz] |
---|---|---|
author | fedor <fedor@indutny.com> | Tue Oct 27 16:34:25 2015 |
committer | Commit bot <commit-bot@chromium.org> | Tue Oct 27 16:34:55 2015 |
tree | 971f7a6b49d59703aec254f708972d22fe7c4890 | |
parent | 8adb1c4705dc836fe1aa061511376c65e59e6a55 [diff] |
[heap] fix crash during the scavenge of ArrayBuffer Scavenger should not attempt to visit ArrayBuffer's storage, it is a user-supplied pointer that may have any alignment. Visiting it, may result in a crash. BUG= R=jochen Review URL: https://codereview.chromium.org/1406133003 Cr-Commit-Position: refs/heads/master@{#31611}
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/*
Please follow the instructions mentioned on the V8 wiki.