• Home
  • Raw
  • Download

Lines Matching refs:heap

24     : CancelableTask(memory_reducer->heap()->isolate()),  in TimerTask()
29 Heap* heap = memory_reducer_->heap(); in RunInternal() local
31 double time_ms = heap->MonotonicallyIncreasingTimeInMs(); in RunInternal()
32 heap->tracer()->SampleAllocation(time_ms, heap->NewSpaceAllocationCounter(), in RunInternal()
33 heap->OldGenerationAllocationCounter()); in RunInternal()
34 bool low_allocation_rate = heap->HasLowAllocationRate(); in RunInternal()
35 bool optimize_for_memory = heap->ShouldOptimizeForMemoryUsage(); in RunInternal()
37 heap->isolate()->PrintWithTimestamp( in RunInternal()
50 heap->incremental_marking()->IsStopped() && in RunInternal()
51 (heap->incremental_marking()->CanBeActivated() || optimize_for_memory); in RunInternal()
52 event.committed_memory = heap->CommittedOldGenerationMemory(); in RunInternal()
62 DCHECK(heap()->incremental_marking()->IsStopped()); in NotifyTimer()
65 heap()->isolate()->PrintWithTimestamp("Memory reducer: started GC #%d\n", in NotifyTimer()
68 heap()->StartIdleIncrementalMarking( in NotifyTimer()
71 if (!heap()->incremental_marking()->IsStopped() && in NotifyTimer()
72 heap()->ShouldOptimizeForMemoryUsage()) { in NotifyTimer()
77 double deadline = heap()->MonotonicallyIncreasingTimeInMs() + in NotifyTimer()
79 heap()->incremental_marking()->AdvanceIncrementalMarking( in NotifyTimer()
82 heap()->FinalizeIncrementalMarkingIfComplete( in NotifyTimer()
88 heap()->isolate()->PrintWithTimestamp( in NotifyTimer()
106 heap()->isolate()->PrintWithTimestamp( in NotifyMarkCompact()
207 v8::Isolate* isolate = reinterpret_cast<v8::Isolate*>(heap()->isolate()); in ScheduleTimer()