Home
last modified time | relevance | path

Searched refs:ObjectStack (Results 1 – 11 of 11) sorted by relevance

/art/runtime/gc/collector/
Dconcurrent_copying.h43 typedef AtomicStack<mirror::Object> ObjectStack; typedef
168 accounting::ObjectStack* GetAllocationStack();
169 accounting::ObjectStack* GetLiveStack();
268 std::unique_ptr<accounting::ObjectStack> gc_mark_stack_;
269 std::unique_ptr<accounting::ObjectStack> rb_mark_bit_stack_;
273 std::vector<accounting::ObjectStack*> revoked_mark_stacks_
277 std::vector<accounting::ObjectStack*> pooled_mark_stacks_
Dmark_sweep.h49 typedef AtomicStack<mirror::Object> ObjectStack; typedef
157 void SweepArray(accounting::ObjectStack* allocation_stack_, bool swap_bitmaps)
316 accounting::ObjectStack* mark_stack_;
Dmark_compact.h48 typedef AtomicStack<mirror::Object> ObjectStack; typedef
196 accounting::ObjectStack* mark_stack_;
Dsemi_space.h47 typedef AtomicStack<mirror::Object> ObjectStack; typedef
205 accounting::ObjectStack* mark_stack_;
Dconcurrent_copying.cc70 gc_mark_stack_(accounting::ObjectStack::Create("concurrent copying gc mark stack", in ConcurrentCopying()
73 rb_mark_bit_stack_(accounting::ObjectStack::Create("rb copying gc mark stack", in ConcurrentCopying()
1135 accounting::ObjectStack* ConcurrentCopying::GetAllocationStack() { in GetAllocationStack()
1139 accounting::ObjectStack* ConcurrentCopying::GetLiveStack() { in GetLiveStack()
1666 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in Sweep()
2468 accounting::ObjectStack* alloc_stack = GetAllocationStack(); in IsOnAllocStack()
Dmark_compact.cc228 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in MarkReachableObjects()
Dmark_sweep.cc1183 void MarkSweep::SweepArray(accounting::ObjectStack* allocations, bool swap_bitmaps) { in SweepArray()
1291 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in Sweep()
Dsemi_space.cc336 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in MarkReachableObjects()
/art/runtime/gc/
Dheap.h71 typedef AtomicStack<mirror::Object> ObjectStack; typedef
588 accounting::ObjectStack* GetLiveStack() REQUIRES_SHARED(Locks::heap_bitmap_lock_) { in GetLiveStack()
608 accounting::ObjectStack* stack)
613 void MarkAllocStackAsLive(accounting::ObjectStack* stack)
884 accounting::ObjectStack* GetMarkStack() { in GetMarkStack()
1320 std::unique_ptr<accounting::ObjectStack> mark_stack_;
1325 std::unique_ptr<accounting::ObjectStack> allocation_stack_;
1328 std::unique_ptr<accounting::ObjectStack> live_stack_;
Dheap.cc546 mark_stack_.reset(accounting::ObjectStack::Create("mark stack", kDefaultMarkStackSize, in Heap()
549 allocation_stack_.reset(accounting::ObjectStack::Create( in Heap()
551 live_stack_.reset(accounting::ObjectStack::Create( in Heap()
904 void Heap::MarkAllocStackAsLive(accounting::ObjectStack* stack) { in MarkAllocStackAsLive()
2443 accounting::ObjectStack* stack) { in MarkAllocStack()
2808 accounting::ObjectStack* alloc_stack = heap_->allocation_stack_.get(); in VerifyReference()
2809 accounting::ObjectStack* live_stack = heap_->live_stack_.get(); in VerifyReference()
3028 accounting::ObjectStack* live_stack = heap_->live_stack_.get(); in operator ()()
/art/runtime/gc/accounting/
Datomic_stack.h281 typedef AtomicStack<mirror::Object> ObjectStack; typedef