Home
last modified time | relevance | path

Searched refs:live_stack (Results 1 – 5 of 5) sorted by relevance

/art/runtime/gc/collector/
Dmark_compact.cc251 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in MarkReachableObjects() local
254 heap_->MarkAllocStackAsLive(live_stack); in MarkReachableObjects()
256 live_stack->Reset(); in MarkReachableObjects()
Dsemi_space.cc326 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in MarkReachableObjects() local
327 heap_->MarkAllocStackAsLive(live_stack); in MarkReachableObjects()
328 live_stack->Reset(); in MarkReachableObjects()
Dconcurrent_copying.cc783 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in Sweep() local
785 CHECK_GE(live_stack_freeze_size_, live_stack->Size()); in Sweep()
787 heap_->MarkAllocStackAsLive(live_stack); in Sweep()
788 live_stack->Reset(); in Sweep()
Dmark_sweep.cc1223 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in Sweep() local
1224 heap_->MarkAllocStackAsLive(live_stack); in Sweep()
1225 live_stack->Reset(); in Sweep()
/art/runtime/gc/
Dheap.cc2650 accounting::ObjectStack* live_stack = heap_->live_stack_.get(); in VerifyReference() local
2703 if (live_stack->Contains(const_cast<mirror::Object*>(obj))) { in VerifyReference()
2709 if (live_stack->Contains(const_cast<mirror::Object*>(ref))) { in VerifyReference()
2872 accounting::ObjectStack* live_stack = heap_->live_stack_.get(); in operator ()() local
2873 if (live_stack->ContainsSorted(ref)) { in operator ()()
2874 if (live_stack->ContainsSorted(obj)) { in operator ()()