Searched refs:ObjectStack (Results 1 – 9 of 9) sorted by relevance
/art/runtime/gc/collector/ |
D | concurrent_copying.h | 45 typedef AtomicStack<mirror::Object> ObjectStack; typedef 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_
|
D | mark_sweep.h | 49 typedef AtomicStack<mirror::Object> ObjectStack; typedef 157 void SweepArray(accounting::ObjectStack* allocation_stack_, bool swap_bitmaps) 315 accounting::ObjectStack* mark_stack_;
|
D | semi_space.h | 47 typedef AtomicStack<mirror::Object> ObjectStack; typedef 206 accounting::ObjectStack* mark_stack_;
|
D | concurrent_copying.cc | 80 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() 1879 accounting::ObjectStack* ConcurrentCopying::GetAllocationStack() { in GetAllocationStack() 1883 accounting::ObjectStack* ConcurrentCopying::GetLiveStack() { in GetLiveStack() 2484 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in Sweep() 2508 void ConcurrentCopying::SweepArray(accounting::ObjectStack* allocations, bool swap_bitmaps) { in SweepArray() 3640 accounting::ObjectStack* alloc_stack = GetAllocationStack(); in IsOnAllocStack()
|
D | semi_space.cc | 283 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in MarkReachableObjects()
|
D | mark_sweep.cc | 1207 void MarkSweep::SweepArray(accounting::ObjectStack* allocations, bool swap_bitmaps) { in SweepArray() 1315 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in Sweep()
|
/art/runtime/gc/ |
D | heap.h | 79 typedef AtomicStack<mirror::Object> ObjectStack; typedef 652 accounting::ObjectStack* GetLiveStack() REQUIRES_SHARED(Locks::heap_bitmap_lock_) { in GetLiveStack() 672 accounting::ObjectStack* stack) 677 void MarkAllocStackAsLive(accounting::ObjectStack* stack) 1034 accounting::ObjectStack* GetMarkStack() { in GetMarkStack() 1499 std::unique_ptr<accounting::ObjectStack> mark_stack_; 1504 std::unique_ptr<accounting::ObjectStack> allocation_stack_; 1507 std::unique_ptr<accounting::ObjectStack> live_stack_;
|
D | heap.cc | 694 mark_stack_.reset(accounting::ObjectStack::Create("mark stack", kDefaultMarkStackSize, in Heap() 697 allocation_stack_.reset(accounting::ObjectStack::Create( in Heap() 699 live_stack_.reset(accounting::ObjectStack::Create( in Heap() 1068 void Heap::MarkAllocStackAsLive(accounting::ObjectStack* stack) { in MarkAllocStackAsLive() 2481 accounting::ObjectStack* stack) { in MarkAllocStack() 2913 accounting::ObjectStack* alloc_stack = heap_->allocation_stack_.get(); in VerifyReference() 2914 accounting::ObjectStack* live_stack = heap_->live_stack_.get(); in VerifyReference() 3142 accounting::ObjectStack* live_stack = heap_->live_stack_.get(); in operator ()()
|
/art/runtime/gc/accounting/ |
D | atomic_stack.h | 288 typedef AtomicStack<mirror::Object> ObjectStack; typedef
|