Home
last modified time | relevance | path

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

/external/v8/src/
Dheap-inl.h163 result = new_space_.AllocateRaw(size_in_bytes); in AllocateRaw()
254 bool result = new_space_.Contains(object); in InNewSpace()
263 return new_space_.FromSpaceContains(object); in InFromSpace()
268 return new_space_.ToSpaceContains(object); in InToSpace()
276 return old_address < new_space_.age_mark() in ShouldBePromoted()
277 || (new_space_.Size() + object_size) >= (new_space_.Capacity() >> 2); in ShouldBePromoted()
282 if (new_space_.Contains(address)) return; in RecordWrite()
283 ASSERT(!new_space_.FromSpaceContains(address)); in RecordWrite()
290 if (new_space_.Contains(address)) return; in RecordWrites()
291 ASSERT(!new_space_.FromSpaceContains(address)); in RecordWrites()
Dheap.cc102 new_space_(this), in Heap()
165 return new_space_.Capacity() + in Capacity()
177 return new_space_.CommittedMemory() + in CommittedMemory()
196 return new_space_.Available() + in Available()
271 if (isolate_->memory_allocator()->MaxAvailable() <= new_space_.Size()) { in SelectGarbageCollector()
290 if (FLAG_heap_stats || FLAG_log_gc) new_space_.CollectStatistics(); in ReportStatisticsBeforeGC()
294 new_space_.ReportStatistics(); in ReportStatisticsBeforeGC()
296 if (FLAG_heap_stats || FLAG_log_gc) new_space_.ClearHistograms(); in ReportStatisticsBeforeGC()
299 new_space_.CollectStatistics(); in ReportStatisticsBeforeGC()
301 new_space_.ClearHistograms(); in ReportStatisticsBeforeGC()
[all …]
Dheap.h390 Address NewSpaceStart() { return new_space_.start(); } in NewSpaceStart()
391 uintptr_t NewSpaceMask() { return new_space_.mask(); } in NewSpaceMask()
392 Address NewSpaceTop() { return new_space_.top(); } in NewSpaceTop()
394 NewSpace* new_space() { return &new_space_; } in new_space()
411 return new_space_.allocation_top_address(); in NewSpaceAllocationTopAddress()
414 return new_space_.allocation_limit_address(); in NewSpaceAllocationLimitAddress()
418 bool UncommitFromSpace() { return new_space_.UncommitFromSpace(); } in UncommitFromSpace()
1276 NewSpace new_space_; variable