| Index: test/cctest/test-heap.cc
|
| diff --git a/test/cctest/test-heap.cc b/test/cctest/test-heap.cc
|
| index d441ab6afe2c03c999b89be96e8ca6f491e7de11..d9d2a861ebf30d4644d91f71ee49ceaf10627f47 100644
|
| --- a/test/cctest/test-heap.cc
|
| +++ b/test/cctest/test-heap.cc
|
| @@ -2129,7 +2129,7 @@
|
|
|
| IncrementalMarking* marking = CcTest::heap()->incremental_marking();
|
| marking->Abort();
|
| - marking->Start();
|
| + marking->Start(Heap::kNoGCFlags);
|
|
|
| Handle<JSFunction> f =
|
| v8::Utils::OpenHandle(
|
| @@ -2255,7 +2255,7 @@
|
|
|
| IncrementalMarking* marking = CcTest::heap()->incremental_marking();
|
| marking->Abort();
|
| - marking->Start();
|
| + marking->Start(Heap::kNoGCFlags);
|
| // The following calls will increment CcTest::heap()->global_ic_age().
|
| CcTest::isolate()->ContextDisposedNotification();
|
| SimulateIncrementalMarking(CcTest::heap());
|
| @@ -2313,7 +2313,7 @@
|
| SimulateFullSpace(CcTest::heap()->old_space());
|
| IncrementalMarking* marking = CcTest::heap()->incremental_marking();
|
| marking->Abort();
|
| - marking->Start();
|
| + marking->Start(Heap::kNoGCFlags);
|
|
|
| CHECK_EQ(CcTest::heap()->gc_count(), 0);
|
|
|
| @@ -4123,7 +4123,7 @@
|
| "};"
|
| "f(10 * 1024 * 1024);");
|
| IncrementalMarking* marking = CcTest::heap()->incremental_marking();
|
| - if (marking->IsStopped()) marking->Start();
|
| + if (marking->IsStopped()) marking->Start(Heap::kNoGCFlags);
|
| // This big step should be sufficient to mark the whole array.
|
| marking->Step(100 * MB, IncrementalMarking::NO_GC_VIA_STACK_GUARD);
|
| DCHECK(marking->IsComplete() ||
|
| @@ -4851,7 +4851,7 @@
|
| Handle<WeakCell> weak_cell = factory->NewWeakCell(value);
|
| CHECK(weak_cell->value()->IsFixedArray());
|
| IncrementalMarking* marking = heap->incremental_marking();
|
| - if (marking->IsStopped()) marking->Start();
|
| + if (marking->IsStopped()) marking->Start(Heap::kNoGCFlags);
|
| marking->Step(128, IncrementalMarking::NO_GC_VIA_STACK_GUARD);
|
| heap->CollectGarbage(NEW_SPACE);
|
| CHECK(weak_cell->value()->IsFixedArray());
|
| @@ -5119,7 +5119,7 @@
|
| // that would cause crash.
|
| IncrementalMarking* marking = CcTest::heap()->incremental_marking();
|
| marking->Abort();
|
| - marking->Start();
|
| + marking->Start(Heap::kNoGCFlags);
|
| CHECK(marking->IsMarking());
|
|
|
| // Now everything is set up for crashing in JSObject::MigrateFastToFast()
|
| @@ -5145,7 +5145,7 @@
|
| "}"
|
| "weak_map");
|
| if (marking->IsStopped()) {
|
| - marking->Start();
|
| + marking->Start(Heap::kNoGCFlags);
|
| }
|
| // Incrementally mark the backing store.
|
| Handle<JSObject> obj =
|
|
|