Home
last modified time | relevance | path

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

/art/runtime/gc/collector/
Dmark_compact.cc228 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in MarkReachableObjects() local
231 heap_->MarkAllocStackAsLive(live_stack); in MarkReachableObjects()
233 live_stack->Reset(); in MarkReachableObjects()
Dsemi_space.cc335 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in MarkReachableObjects() local
336 heap_->MarkAllocStackAsLive(live_stack); in MarkReachableObjects()
337 live_stack->Reset(); in MarkReachableObjects()
Dmark_sweep.cc1291 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in Sweep() local
1292 heap_->MarkAllocStackAsLive(live_stack); in Sweep()
1293 live_stack->Reset(); in Sweep()
Dconcurrent_copying.cc1589 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in Sweep() local
1591 CHECK_GE(live_stack_freeze_size_, live_stack->Size()); in Sweep()
1593 heap_->MarkAllocStackAsLive(live_stack); in Sweep()
1594 live_stack->Reset(); in Sweep()
/art/runtime/gc/
Dheap.cc2950 accounting::ObjectStack* live_stack = heap_->live_stack_.get(); in VerifyReference() local
3003 if (live_stack->Contains(const_cast<mirror::Object*>(obj))) { in VerifyReference()
3009 if (live_stack->Contains(const_cast<mirror::Object*>(ref))) { in VerifyReference()
3176 accounting::ObjectStack* live_stack = heap_->live_stack_.get(); in operator ()() local
3177 if (live_stack->ContainsSorted(ref)) { in operator ()()
3178 if (live_stack->ContainsSorted(obj)) { in operator ()()