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
173 accounting::ObjectStack* GetAllocationStack();
174 accounting::ObjectStack* GetLiveStack();
283 std::unique_ptr<accounting::ObjectStack> gc_mark_stack_;
291 std::unique_ptr<accounting::ObjectStack> rb_mark_bit_stack_;
300 std::vector<accounting::ObjectStack*> revoked_mark_stacks_
304 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_;
Dsemi_space.h47 typedef AtomicStack<mirror::Object> ObjectStack; typedef
205 accounting::ObjectStack* mark_stack_;
Dmark_compact.h48 typedef AtomicStack<mirror::Object> ObjectStack; typedef
196 accounting::ObjectStack* mark_stack_;
Dconcurrent_copying.cc72 gc_mark_stack_(accounting::ObjectStack::Create("concurrent copying gc mark stack", in ConcurrentCopying()
75 rb_mark_bit_stack_(accounting::ObjectStack::Create("rb copying gc mark stack", in ConcurrentCopying()
1138 accounting::ObjectStack* ConcurrentCopying::GetAllocationStack() { in GetAllocationStack()
1142 accounting::ObjectStack* ConcurrentCopying::GetLiveStack() { in GetLiveStack()
1671 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in Sweep()
2569 accounting::ObjectStack* alloc_stack = GetAllocationStack(); in IsOnAllocStack()
Dmark_compact.cc230 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in MarkReachableObjects()
Dmark_sweep.cc1206 void MarkSweep::SweepArray(accounting::ObjectStack* allocations, bool swap_bitmaps) { in SweepArray()
1314 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in Sweep()
Dsemi_space.cc335 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in MarkReachableObjects()
/art/runtime/gc/
Dheap.h76 typedef AtomicStack<mirror::Object> ObjectStack; typedef
598 accounting::ObjectStack* GetLiveStack() REQUIRES_SHARED(Locks::heap_bitmap_lock_) { in GetLiveStack()
618 accounting::ObjectStack* stack)
623 void MarkAllocStackAsLive(accounting::ObjectStack* stack)
894 accounting::ObjectStack* GetMarkStack() { in GetMarkStack()
1303 std::unique_ptr<accounting::ObjectStack> mark_stack_;
1308 std::unique_ptr<accounting::ObjectStack> allocation_stack_;
1311 std::unique_ptr<accounting::ObjectStack> live_stack_;
Dheap.cc549 mark_stack_.reset(accounting::ObjectStack::Create("mark stack", kDefaultMarkStackSize, in Heap()
552 allocation_stack_.reset(accounting::ObjectStack::Create( in Heap()
554 live_stack_.reset(accounting::ObjectStack::Create( in Heap()
902 void Heap::MarkAllocStackAsLive(accounting::ObjectStack* stack) { in MarkAllocStackAsLive()
2453 accounting::ObjectStack* stack) { in MarkAllocStack()
2817 accounting::ObjectStack* alloc_stack = heap_->allocation_stack_.get(); in VerifyReference()
2818 accounting::ObjectStack* live_stack = heap_->live_stack_.get(); in VerifyReference()
3037 accounting::ObjectStack* live_stack = heap_->live_stack_.get(); in operator ()()
/art/runtime/gc/accounting/
Datomic_stack.h282 typedef AtomicStack<mirror::Object> ObjectStack; typedef