commit | 3ddb22494d04ec6d49a68e88863a657342421d07 | [log] [tgz] |
---|---|---|
author | ahaas <ahaas@chromium.org> | Thu May 19 13:17:09 2016 |
committer | Commit bot <commit-bot@chromium.org> | Thu May 19 13:17:58 2016 |
tree | 7ebb53c088f000bdddc384a6ddc36ec7e70d564b | |
parent | 806739279a00a546dff8211abb08163a03299971 [diff] |
[heap] Get rid of the wrapper in remembered-set.h This patch moves the wrapper code from the remembered-set to the scavenger and the mark-compact code. The wrapper code inspected a slot address to see if the object that belongs to the address is in the from-space. If it was in the from-space, then some callback was executed on the object. If the object got move to the to-space, then the wrapper returned KEEP_SLOT, otherwise REMOVE_SLOT. This logic does not really belong to the remembered set, so I moved it away from there. R=ulan@chromium.org Review-Url: https://codereview.chromium.org/1994933002 Cr-Commit-Position: refs/heads/master@{#36364}
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.