Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc555 allocation_stack_.reset(accounting::ObjectStack::Create( in Heap()
1033 for (auto* it = allocation_stack_->Begin(), *end = allocation_stack_->End(); it < end; ++it) { in VisitObjectsInternal()
1274 allocation_stack_->Reset(); in ~Heap()
1547 if (allocation_stack_->ContainsSorted(obj)) { in IsLiveObjectLocked()
1550 } else if (allocation_stack_->Contains(obj)) { in IsLiveObjectLocked()
2555 MarkAllocStackAsLive(allocation_stack_.get()); in FlushAllocStack()
2556 allocation_stack_->Reset(); in FlushAllocStack()
2917 accounting::ObjectStack* alloc_stack = heap_->allocation_stack_.get(); in VerifyReference()
3041 DCHECK(!allocation_stack_->AtomicPushBack(*obj)); in PushOnAllocationStackWithInternalGC()
3049 CHECK(allocation_stack_->AtomicPushBackIgnoreGrowthLimit(*obj)); in PushOnAllocationStackWithInternalGC()
[all …]
Dheap-inl.h217 } else if (UNLIKELY(!allocation_stack_->AtomicPushBack(*obj))) { in PushOnAllocationStack()
Dheap.h1230 std::unique_ptr<accounting::ObjectStack> allocation_stack_; variable
/art/runtime/gc/collector/
Dmark_sweep.h158 void SweepArray(accounting::ObjectStack* allocation_stack_, bool swap_bitmaps)
Dconcurrent_copying.cc651 return heap_->allocation_stack_.get(); in GetAllocationStack()
801 for (auto* it = heap_->allocation_stack_->Begin(), *end = heap_->allocation_stack_->End(); in VerifyNoFromSpaceReferences()
Dmark_sweep.cc1100 CHECK(!heap_->allocation_stack_->Contains(obj)) in VerifyIsLive()