Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(242)

Unified Diff: src/heap.cc

Issue 227533006: Synchronize store buffer processing and concurrent sweeping. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/heap.h ('k') | src/heap-inl.h » ('j') | src/store-buffer.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap.cc
diff --git a/src/heap.cc b/src/heap.cc
index d115d664f337948623a1f9d937a69bb4fb332ad1..5e71a715b4965994226a52e9c7808095c8a47870 100644
--- a/src/heap.cc
+++ b/src/heap.cc
@@ -5934,7 +5934,8 @@ void Heap::IterateAndMarkPointersToFromSpace(Address start,
if (object->IsHeapObject()) {
if (Heap::InFromSpace(object)) {
callback(reinterpret_cast<HeapObject**>(slot),
- HeapObject::cast(object));
+ HeapObject::cast(object),
+ NULL);
Object* new_object = *slot;
if (InNewSpace(new_object)) {
SLOW_ASSERT(Heap::InToSpace(new_object));
« no previous file with comments | « src/heap.h ('k') | src/heap-inl.h » ('j') | src/store-buffer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698