Lines Matching full:heap_
26 start_time_ = tracer_->heap_->MonotonicallyIncreasingTimeInMs();
33 tracer_->heap_->MonotonicallyIncreasingTimeInMs() - start_time_;
110 : heap_(heap),
130 current_.end_time = heap_->MonotonicallyIncreasingTimeInMs();
141 double start_time = heap_->MonotonicallyIncreasingTimeInMs();
142 SampleAllocation(start_time, heap_->NewSpaceAllocationCounter(),
143 heap_->OldGenerationAllocationCounter());
150 if (heap_->incremental_marking()->WasActivated()) {
158 current_.reduce_memory = heap_->ShouldReduceMemory();
160 current_.start_object_size = heap_->SizeOfObjects();
161 current_.start_memory_size = heap_->isolate()->memory_allocator()->Size();
162 current_.start_holes_size = CountTotalHolesSize(heap_);
164 heap_->new_space()->top() - heap_->new_space()->bottom();
179 int committed_memory = static_cast<int>(heap_->CommittedMemory() / KB);
181 heap_->isolate()->counters()->aggregated_memory_heap_committed()->AddSample(
183 heap_->isolate()->counters()->aggregated_memory_heap_used()->AddSample(
203 current_.end_time = heap_->MonotonicallyIncreasingTimeInMs();
204 current_.end_object_size = heap_->SizeOfObjects();
205 current_.end_memory_size = heap_->isolate()->memory_allocator()->Size();
206 current_.end_holes_size = CountTotalHolesSize(heap_);
207 current_.survived_new_space_object_size = heap_->SurvivedNewSpaceObjectSize();
211 int committed_memory = static_cast<int>(heap_->CommittedMemory() / KB);
213 heap_->isolate()->counters()->aggregated_memory_heap_committed()->AddSample(
215 heap_->isolate()->counters()->aggregated_memory_heap_used()->AddSample(
266 heap_->UpdateCumulativeGCStatistics(duration, spent_in_mutator,
278 heap_->PrintShortHeapStatistics();
381 heap_->AddToRingBuffer(buffer.start());
387 PrintIsolate(heap_->isolate(), "");
389 Output("%8.0f ms: ", heap_->isolate()->time_millis_since_init());
438 PrintIsolate(heap_->isolate(),
479 heap_->isolate()->time_millis_since_init(), duration,
494 allocated_since_last_gc, heap_->promoted_objects_size(),
495 heap_->semi_space_copied_object_size(),
496 heap_->nodes_died_in_new_space_,
497 heap_->nodes_copied_in_new_space_, heap_->nodes_promoted_,
498 heap_->promotion_ratio_, AverageSurvivalRatio(),
499 heap_->promotion_rate_, heap_->semi_space_copied_rate_,
506 heap_->isolate(),
577 heap_->isolate()->time_millis_since_init(), duration,
618 allocated_since_last_gc, heap_->promoted_objects_size(),
619 heap_->semi_space_copied_object_size(),
620 heap_->nodes_died_in_new_space_, heap_->nodes_copied_in_new_space_,
621 heap_->nodes_promoted_, heap_->promotion_ratio_,
622 AverageSurvivalRatio(), heap_->promotion_rate_,
623 heap_->semi_space_copied_rate_,
881 double begin = heap_->MonotonicallyIncreasingTimeInMs();