Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc380 allocation_stack_.reset(accounting::ObjectStack::Create( in Heap()
693 for (mirror::Object** it = allocation_stack_->Begin(), **end = allocation_stack_->End(); in VisitObjects()
860 allocation_stack_->Reset(); in ~Heap()
1113 if (allocation_stack_->ContainsSorted(obj)) { in IsLiveObjectLocked()
1116 } else if (allocation_stack_->Contains(obj)) { in IsLiveObjectLocked()
2016 MarkAllocStackAsLive(allocation_stack_.get()); in FlushAllocStack()
2017 allocation_stack_->Reset(); in FlushAllocStack()
2282 accounting::ObjectStack* alloc_stack = heap_->allocation_stack_.get(); in VerifyReference()
2402 DCHECK(!allocation_stack_->AtomicPushBack(*obj)); in PushOnAllocationStackWithInternalGC()
2410 CHECK(allocation_stack_->AtomicPushBackIgnoreGrowthLimit(*obj)); in PushOnAllocationStackWithInternalGC()
[all …]
Dheap-inl.h168 } else if (UNLIKELY(!allocation_stack_->AtomicPushBack(*obj))) { in PushOnAllocationStack()
Dheap.h974 std::unique_ptr<accounting::ObjectStack> allocation_stack_; variable
/art/runtime/gc/collector/
Dmark_sweep.h144 void SweepArray(accounting::ObjectStack* allocation_stack_, bool swap_bitmaps)
Dmark_sweep.cc944 accounting::ObjectStack* allocation_stack = heap_->allocation_stack_.get(); in VerifyIsLive()