Index: src/heap/heap.cc |
diff --git a/src/heap/heap.cc b/src/heap/heap.cc |
index 65429a4b1090f6c22c3604ea7cf8ad6ef9779b4f..4ef4c900b955b52ae03f425eda508d598785a9e6 100644 |
--- a/src/heap/heap.cc |
+++ b/src/heap/heap.cc |
@@ -4272,7 +4272,7 @@ void Heap::RegisterReservationsForBlackAllocation(Reservation* reservations) { |
void Heap::NotifyObjectLayoutChange(HeapObject* object, |
const DisallowHeapAllocation&) { |
if (FLAG_incremental_marking && incremental_marking()->IsMarking()) { |
- incremental_marking()->MarkGrey(object); |
+ incremental_marking()->WhiteToGreyAndPush(object); |
} |
#ifdef VERIFY_HEAP |
DCHECK(pending_layout_change_object_ == nullptr); |
@@ -4836,7 +4836,7 @@ class IterateAndScavengePromotedObjectsVisitor final : public ObjectVisitor { |
// promoted objects. |
if (heap_->incremental_marking()->black_allocation()) { |
Code* code = Code::cast(Code::GetObjectFromEntryAddress(code_entry_slot)); |
- heap_->incremental_marking()->MarkGrey(code); |
+ heap_->incremental_marking()->WhiteToGreyAndPush(code); |
} |
} |
@@ -5630,7 +5630,7 @@ void Heap::RegisterExternallyReferencedObject(Object** object) { |
HeapObject* heap_object = HeapObject::cast(*object); |
DCHECK(Contains(heap_object)); |
if (FLAG_incremental_marking_wrappers && incremental_marking()->IsMarking()) { |
- incremental_marking()->MarkGrey(heap_object); |
+ incremental_marking()->WhiteToGreyAndPush(heap_object); |
} else { |
DCHECK(mark_compact_collector()->in_use()); |
mark_compact_collector()->MarkObject(heap_object); |