Searched refs:new_space_ (Results 1 – 7 of 7) sorted by relevance
/third_party/node/deps/v8/src/heap/ |
D | evacuation-allocator.h | 27 new_space_(heap->new_space()), in EvacuationAllocator() 46 if (new_space_) new_space_->MaybeFreeUnusedLab(info); in Finalize() 67 NewSpace* const new_space_; variable
|
D | heap-inl.h | 162 return new_space_ ? new_space_->allocation_top_address() : nullptr; in NewSpaceAllocationTopAddress() 166 return new_space_ ? new_space_->allocation_limit_address() : nullptr; in NewSpaceAllocationLimitAddress() 236 return new_space_ ? new_space_->top() : kNullAddress; in NewSpaceTop() 327 Address age_mark = new_space_->age_mark(); in ShouldBePromoted() 440 new_space_->pending_allocation_mutex()); in IsPendingAllocationInternal() 441 Address top = new_space_->original_top_acquire(); in IsPendingAllocationInternal() 442 Address limit = new_space_->original_limit_relaxed(); in IsPendingAllocationInternal()
|
D | evacuation-allocator-inl.h | 104 new_space_->AllocateRawSynchronized(kLabSize, kTaggedAligned); in NewLocalAllocationBuffer() 121 return new_space_->AllocateRawSynchronized(object_size, alignment, origin); in AllocateInNewSpace()
|
D | heap.cc | 377 size_t new_space_committed = new_space_ ? new_space_->CommittedMemory() : 0; in CommittedMemory() 523 NewSpaceSize() / KB, new_space_->Available() / KB, in PrintShortHeapStatistics() 524 new_space_->CommittedMemory() / KB); in PrintShortHeapStatistics() 1017 bool Heap::UncommitFromSpace() { return new_space_->UncommitFromSpace(); } in UncommitFromSpace() 1058 if (new_space_ && new_space_->IsAtMaximumCapacity()) { in GarbageCollectionPrologue() 1070 if (new_space_) { in GarbageCollectionPrologueInSafepoint() 1073 new_space_->ResetParkedAllocationBuffers(); in GarbageCollectionPrologueInSafepoint() 1083 (new_space_ ? new_space()->AllocatedSinceLastGC() : 0); in NewSpaceAllocationCounter() 1158 if (new_space_) new_space_->MarkLabStartInitialized(); in PublishPendingAllocations() 1263 return new_space_ && new_space_->IsAtMaximumCapacity() && in DeoptMaybeTenuredAllocationSites() [all …]
|
D | scavenger.cc | 421 heap_->new_space_->set_age_mark(heap_->new_space()->top()); in CollectGarbage()
|
D | heap.h | 844 NewSpace* new_space() { return new_space_; } in new_space() 2169 NewSpace* new_space_ = nullptr; variable
|
/third_party/node/deps/v8/tools/ |
D | windbg.js | 585 h.new_space_.to_space_.memory_chunk_list_.front_, chunks); 587 h.new_space_.from_space_.memory_chunk_list_.front_, chunks); 633 h.new_space_.to_space_.memory_chunk_list_.front_, 634 h.new_space_.allocation_info_.top_, 635 h.new_space_.to_space_.age_mark_); 637 h.new_space_.from_space_.memory_chunk_list_.front_);
|