Lines Matching defs:heap_statistics
8874 void Isolate::GetHeapStatistics(HeapStatistics* heap_statistics) {
8882 heap_statistics->used_global_handles_size_ = heap->UsedGlobalHandlesSize();
8883 heap_statistics->total_global_handles_size_ = heap->TotalGlobalHandlesSize();
8884 DCHECK_LE(heap_statistics->used_global_handles_size_,
8885 heap_statistics->total_global_handles_size_);
8887 heap_statistics->used_heap_size_ = heap->SizeOfObjects();
8888 heap_statistics->total_physical_size_ = heap->CommittedPhysicalMemory();
8889 heap_statistics->total_heap_size_ = heap->CommittedMemory();
8891 heap_statistics->total_available_size_ = heap->Available();
8895 heap_statistics->used_heap_size_ += ro_space->Size();
8896 heap_statistics->total_physical_size_ +=
8898 heap_statistics->total_heap_size_ += ro_space->CommittedMemory();
8903 DCHECK_LE(heap_statistics->used_heap_size_,
8904 heap_statistics->total_heap_size_);
8906 heap_statistics->total_heap_size_executable_ =
8908 heap_statistics->heap_size_limit_ = heap->MaxReserved();
8912 heap_statistics->malloced_memory_ =
8917 heap_statistics->external_memory_ =
8921 heap_statistics->peak_malloced_memory_ =
8923 heap_statistics->number_of_native_contexts_ = heap->NumberOfNativeContexts();
8924 heap_statistics->number_of_detached_contexts_ =
8926 heap_statistics->does_zap_garbage_ = heap->ShouldZapGarbage();
8929 heap_statistics->malloced_memory_ +=
8931 heap_statistics->peak_malloced_memory_ +=