| Index: src/incremental-marking-inl.h
|
| diff --git a/src/incremental-marking-inl.h b/src/incremental-marking-inl.h
|
| index 768fc9171f91d5841c9a36810099840cc194c181..f99c09a1e6857a45f0e4a92953cf388032197598 100644
|
| --- a/src/incremental-marking-inl.h
|
| +++ b/src/incremental-marking-inl.h
|
| @@ -125,27 +125,6 @@ void IncrementalMarking::WhiteToGreyAndPush(HeapObject* obj, MarkBit mark_bit) {
|
| }
|
|
|
|
|
| -bool IncrementalMarking::MarkObjectAndPush(HeapObject* obj) {
|
| - MarkBit mark_bit = Marking::MarkBitFrom(obj);
|
| - if (!mark_bit.Get()) {
|
| - WhiteToGreyAndPush(obj, mark_bit);
|
| - return true;
|
| - }
|
| - return false;
|
| -}
|
| -
|
| -
|
| -bool IncrementalMarking::MarkObjectWithoutPush(HeapObject* obj) {
|
| - MarkBit mark_bit = Marking::MarkBitFrom(obj);
|
| - if (!mark_bit.Get()) {
|
| - mark_bit.Set();
|
| - MemoryChunk::IncrementLiveBytesFromGC(obj->address(), obj->Size());
|
| - return true;
|
| - }
|
| - return false;
|
| -}
|
| -
|
| -
|
| } } // namespace v8::internal
|
|
|
| #endif // V8_INCREMENTAL_MARKING_INL_H_
|
|
|