diff --git a/src/extensions/gc-extension.cc b/src/extensions/gc-extension.cc index 813b9219bf..2282075445 100644 --- a/src/extensions/gc-extension.cc +++ b/src/extensions/gc-extension.cc @@ -43,7 +43,7 @@ v8::Handle GCExtension::GC(const v8::Arguments& args) { if (args[0]->BooleanValue()) { HEAP->CollectGarbage(NEW_SPACE, "gc extension"); } else { - HEAP->CollectAllGarbage(Heap::kNoGCFlags, "gc extension"); + HEAP->CollectAllGarbage(Heap::kAbortIncrementalMarkingMask, "gc extension"); } return v8::Undefined(); } diff --git a/src/heap.cc b/src/heap.cc index a7c7b34eae..84b0f222b8 100644 --- a/src/heap.cc +++ b/src/heap.cc @@ -5322,8 +5322,7 @@ bool Heap::IdleNotification(int hint) { AgeInlineCaches(); } int mark_sweep_time = Min(TimeMarkSweepWouldTakeInMs(), 1000); - if (hint >= mark_sweep_time && !FLAG_expose_gc && - incremental_marking()->IsStopped()) { + if (hint >= mark_sweep_time && incremental_marking()->IsStopped()) { HistogramTimerScope scope(isolate_->counters()->gc_context()); CollectAllGarbage(kReduceMemoryFootprintMask, "idle notification: contexts disposed"); @@ -5342,7 +5341,7 @@ bool Heap::IdleNotification(int hint) { return false; } - if (!FLAG_incremental_marking || FLAG_expose_gc || Serializer::enabled()) { + if (!FLAG_incremental_marking || Serializer::enabled()) { return IdleGlobalGC(); } diff --git a/src/incremental-marking.cc b/src/incremental-marking.cc index e420d28521..8cdcdb5e5e 100644 --- a/src/incremental-marking.cc +++ b/src/incremental-marking.cc @@ -493,8 +493,7 @@ bool IncrementalMarking::WorthActivating() { static const intptr_t kActivationThreshold = 0; #endif - return !FLAG_expose_gc && - FLAG_incremental_marking && + return FLAG_incremental_marking && !Serializer::enabled() && heap_->PromotedSpaceSizeOfObjects() > kActivationThreshold; }