Searched refs:new_space_ (Results 1 – 3 of 3) sorted by relevance
97 new_space_(this), in Heap()190 return new_space_.Capacity() + OldGenerationCapacity(); in Capacity()212 return new_space_.CommittedMemory() + CommittedOldGenerationMemory(); in CommittedMemory()219 return new_space_.CommittedPhysicalMemory() + in CommittedPhysicalMemory()301 if (memory_allocator()->MaxAvailable() <= new_space_.Size()) { in SelectGarbageCollector()322 if (FLAG_heap_stats || FLAG_log_gc) new_space_.CollectStatistics(); in ReportStatisticsBeforeGC()326 new_space_.ReportStatistics(); in ReportStatisticsBeforeGC()328 if (FLAG_heap_stats || FLAG_log_gc) new_space_.ClearHistograms(); in ReportStatisticsBeforeGC()331 new_space_.CollectStatistics(); in ReportStatisticsBeforeGC()332 new_space_.ReportStatistics(); in ReportStatisticsBeforeGC()[all …]
219 allocation = new_space_.AllocateRaw(size_in_bytes, alignment); in AllocateRaw()365 bool result = new_space_.Contains(object); in InNewSpace()373 return new_space_.FromSpaceContains(object); in InFromSpace()378 return new_space_.ToSpaceContains(object); in InToSpace()384 return new_space_.ContainsSlow(address); in InNewSpaceSlow()399 Address age_mark = new_space_.age_mark(); in ShouldBePromoted()
646 return new_space_.allocation_top_address(); in NewSpaceAllocationTopAddress()649 return new_space_.allocation_limit_address(); in NewSpaceAllocationLimitAddress()793 intptr_t adjusted_allocation_limit = limit - new_space_.Capacity(); in HeapIsFullEnoughToStartIncrementalMarking()860 return new_space_.IsAtMaximumCapacity() && maximum_size_scavenges_ == 0; in DeoptMaybeTenuredAllocationSites()925 Address NewSpaceTop() { return new_space_.top(); } in NewSpaceTop()927 NewSpace* new_space() { return &new_space_; } in new_space()1627 bool UncommitFromSpace() { return new_space_.UncommitFromSpace(); } in UncommitFromSpace()2067 NewSpace new_space_; variable