Home
last modified time | relevance | path

Searched refs:allocation_stack_ (Results 1 – 6 of 6) sorted by relevance

/art/runtime/gc/
Dheap.cc458 allocation_stack_.reset(accounting::ObjectStack::Create( in Heap()
847 for (auto* it = allocation_stack_->Begin(), *end = allocation_stack_->End(); it < end; ++it) { in VisitObjectsInternal()
1078 allocation_stack_->Reset(); in ~Heap()
1368 if (allocation_stack_->ContainsSorted(obj)) { in IsLiveObjectLocked()
1371 } else if (allocation_stack_->Contains(obj)) { in IsLiveObjectLocked()
2318 MarkAllocStackAsLive(allocation_stack_.get()); in FlushAllocStack()
2319 allocation_stack_->Reset(); in FlushAllocStack()
2649 accounting::ObjectStack* alloc_stack = heap_->allocation_stack_.get(); in VerifyReference()
2775 DCHECK(!allocation_stack_->AtomicPushBack(*obj)); in PushOnAllocationStackWithInternalGC()
2783 CHECK(allocation_stack_->AtomicPushBackIgnoreGrowthLimit(*obj)); in PushOnAllocationStackWithInternalGC()
[all …]
Dheap-inl.h204 } else if (UNLIKELY(!allocation_stack_->AtomicPushBack(*obj))) { in PushOnAllocationStack()
Dheap.h1096 std::unique_ptr<accounting::ObjectStack> allocation_stack_; variable
/art/runtime/gc/collector/
Dmark_sweep.h146 void SweepArray(accounting::ObjectStack* allocation_stack_, bool swap_bitmaps)
Dconcurrent_copying.cc470 return heap_->allocation_stack_.get(); in GetAllocationStack()
611 for (auto* it = heap_->allocation_stack_->Begin(), *end = heap_->allocation_stack_->End(); in VerifyNoFromSpaceReferences()
Dmark_sweep.cc1030 CHECK(!heap_->allocation_stack_->Contains(obj)) in VerifyIsLive()