Home
last modified time | relevance | path

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

/art/runtime/gc/collector/
Dconcurrent_copying.h45 using ObjectStack = AtomicStack<mirror::Object>; variable
207 accounting::ObjectStack* GetAllocationStack();
208 accounting::ObjectStack* GetLiveStack();
262 void SweepArray(accounting::ObjectStack* allocation_stack_, bool swap_bitmaps)
335 void RemoveThreadMarkStackMapping(Thread* thread, accounting::ObjectStack* tl_mark_stack)
337 void AddThreadMarkStackMapping(Thread* thread, accounting::ObjectStack* tl_mark_stack)
343 std::unique_ptr<accounting::ObjectStack> gc_mark_stack_;
364 std::unique_ptr<accounting::ObjectStack> rb_mark_bit_stack_;
376 std::vector<accounting::ObjectStack*> revoked_mark_stacks_
380 std::vector<accounting::ObjectStack*> pooled_mark_stacks_
Dmark_sweep.h49 using ObjectStack = AtomicStack<mirror::Object>; variable
157 void SweepArray(accounting::ObjectStack* allocation_stack_, bool swap_bitmaps)
315 accounting::ObjectStack* mark_stack_;
Dsemi_space.h47 using ObjectStack = AtomicStack<mirror::Object>; variable
206 accounting::ObjectStack* mark_stack_;
Dconcurrent_copying.cc80 gc_mark_stack_(accounting::ObjectStack::Create("concurrent copying gc mark stack", in ConcurrentCopying()
85 rb_mark_bit_stack_(accounting::ObjectStack::Create("rb copying gc mark stack", in ConcurrentCopying()
1899 accounting::ObjectStack* ConcurrentCopying::GetAllocationStack() { in GetAllocationStack()
1903 accounting::ObjectStack* ConcurrentCopying::GetLiveStack() { in GetLiveStack()
2502 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in Sweep()
2526 void ConcurrentCopying::SweepArray(accounting::ObjectStack* allocations, bool swap_bitmaps) { in SweepArray()
3653 accounting::ObjectStack* alloc_stack = GetAllocationStack(); in IsOnAllocStack()
Dsemi_space.cc284 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in MarkReachableObjects()
Dmark_sweep.cc1207 void MarkSweep::SweepArray(accounting::ObjectStack* allocations, bool swap_bitmaps) { in SweepArray()
1315 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in Sweep()
/art/runtime/gc/
Dheap.h79 using ObjectStack = AtomicStack<mirror::Object>; variable
660 accounting::ObjectStack* GetLiveStack() REQUIRES_SHARED(Locks::heap_bitmap_lock_) { in GetLiveStack()
680 accounting::ObjectStack* stack)
685 void MarkAllocStackAsLive(accounting::ObjectStack* stack)
1047 accounting::ObjectStack* GetMarkStack() { in GetMarkStack()
1535 std::unique_ptr<accounting::ObjectStack> mark_stack_;
1540 std::unique_ptr<accounting::ObjectStack> allocation_stack_;
1543 std::unique_ptr<accounting::ObjectStack> live_stack_;
Dheap.cc719 mark_stack_.reset(accounting::ObjectStack::Create("mark stack", kDefaultMarkStackSize, in Heap()
722 allocation_stack_.reset(accounting::ObjectStack::Create( in Heap()
724 live_stack_.reset(accounting::ObjectStack::Create( in Heap()
1093 void Heap::MarkAllocStackAsLive(accounting::ObjectStack* stack) { in MarkAllocStackAsLive()
2536 accounting::ObjectStack* stack) { in MarkAllocStack()
2978 accounting::ObjectStack* alloc_stack = heap_->allocation_stack_.get(); in VerifyReference()
2979 accounting::ObjectStack* live_stack = heap_->live_stack_.get(); in VerifyReference()
3207 accounting::ObjectStack* live_stack = heap_->live_stack_.get(); in operator ()()
/art/runtime/gc/accounting/
Datomic_stack.h288 using ObjectStack = AtomicStack<mirror::Object>; variable