Home
last modified time | relevance | path

Searched refs:new_space_ (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/heap/
Dheap.cc77 new_space_(this), in Heap()
163 return new_space_.Capacity() + old_pointer_space_->Capacity() + in Capacity()
173 return new_space_.CommittedMemory() + old_pointer_space_->CommittedMemory() + in CommittedMemory()
183 return new_space_.CommittedPhysicalMemory() + in CommittedPhysicalMemory()
214 return new_space_.Available() + old_pointer_space_->Available() + in Available()
275 if (isolate_->memory_allocator()->MaxAvailable() <= new_space_.Size()) { in SelectGarbageCollector()
296 if (FLAG_heap_stats || FLAG_log_gc) new_space_.CollectStatistics(); in ReportStatisticsBeforeGC()
300 new_space_.ReportStatistics(); in ReportStatisticsBeforeGC()
302 if (FLAG_heap_stats || FLAG_log_gc) new_space_.ClearHistograms(); in ReportStatisticsBeforeGC()
305 new_space_.CollectStatistics(); in ReportStatisticsBeforeGC()
[all …]
Dheap-inl.h183 allocation = new_space_.AllocateRaw(size_in_bytes); in AllocateRaw()
323 bool result = new_space_.Contains(object); in InNewSpace()
331 bool Heap::InNewSpace(Address address) { return new_space_.Contains(address); } in InNewSpace()
335 return new_space_.FromSpaceContains(object); in InFromSpace()
340 return new_space_.ToSpaceContains(object); in InToSpace()
372 Address age_mark = new_space_.age_mark(); in ShouldBePromoted()
Dheap.h589 Address NewSpaceStart() { return new_space_.start(); } in NewSpaceStart()
590 uintptr_t NewSpaceMask() { return new_space_.mask(); } in NewSpaceMask()
591 Address NewSpaceTop() { return new_space_.top(); } in NewSpaceTop()
593 NewSpace* new_space() { return &new_space_; } in new_space()
628 return new_space_.allocation_top_address(); in NewSpaceAllocationTopAddress()
631 return new_space_.allocation_limit_address(); in NewSpaceAllocationLimitAddress()
1141 old_generation_allocation_limit_ - new_space_.Capacity(); in NextGCIsLikelyToBeFull()
1285 return new_space_.IsAtMaximumCapacity() && maximum_size_scavenges_ == 0; in DeoptMaybeTenuredAllocationSites()
1454 NewSpace new_space_; variable
1840 bool UncommitFromSpace() { return new_space_.UncommitFromSpace(); } in UncommitFromSpace()