Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap-visit-objects-inl.h112 for (auto* it = allocation_stack_->Begin(), *end = allocation_stack_->End(); it < end; ++it) { in VisitObjectsInternal()
Dheap.cc738 allocation_stack_.reset(accounting::ObjectStack::Create( in Heap()
1403 allocation_stack_->Reset(); in ~Heap()
1742 if (allocation_stack_->ContainsSorted(obj.Ptr())) { in IsLiveObjectLocked()
1745 } else if (allocation_stack_->Contains(obj.Ptr())) { in IsLiveObjectLocked()
2593 MarkAllocStackAsLive(allocation_stack_.get()); in FlushAllocStack()
2594 allocation_stack_->Reset(); in FlushAllocStack()
3047 accounting::ObjectStack* alloc_stack = heap_->allocation_stack_.get(); in VerifyReference()
3167 DCHECK(!allocation_stack_->AtomicPushBack(obj->Ptr())); in PushOnAllocationStackWithInternalGC()
3175 CHECK(allocation_stack_->AtomicPushBackIgnoreGrowthLimit(obj->Ptr())); in PushOnAllocationStackWithInternalGC()
3180 } while (!allocation_stack_->AtomicPushBack(obj->Ptr())); in PushOnAllocationStackWithInternalGC()
[all …]
Dheap-inl.h279 } else if (UNLIKELY(!allocation_stack_->AtomicPushBack(obj->Ptr()))) { in PushOnAllocationStack()
Dheap.h670 return allocation_stack_.get(); in GetAllocationStack()
1552 std::unique_ptr<accounting::ObjectStack> allocation_stack_; variable
/art/runtime/gc/collector/
Dmark_sweep.h157 void SweepArray(accounting::ObjectStack* allocation_stack_, bool swap_bitmaps)
Dconcurrent_copying.h266 void SweepArray(accounting::ObjectStack* allocation_stack_, bool swap_bitmaps)
Dconcurrent_copying.cc1915 return heap_->allocation_stack_.get(); in GetAllocationStack()
2035 for (auto* it = heap_->allocation_stack_->Begin(), *end = heap_->allocation_stack_->End(); in VerifyNoFromSpaceReferences()
Dmark_sweep.cc1123 CHECK(!heap_->allocation_stack_->Contains(obj)) in VerifyIsLive()