Home
last modified time | relevance | path

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

/art/runtime/gc/collector/
Dsemi_space.cc283 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in MarkReachableObjects() local
284 heap_->MarkAllocStackAsLive(live_stack); in MarkReachableObjects()
285 live_stack->Reset(); in MarkReachableObjects()
Dmark_sweep.cc1315 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in Sweep() local
1316 heap_->MarkAllocStackAsLive(live_stack); in Sweep()
1317 live_stack->Reset(); in Sweep()
Dconcurrent_copying.cc2411 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in Sweep() local
2414 CHECK_GE(live_stack_freeze_size_, live_stack->Size()); in Sweep()
2416 heap_->MarkAllocStackAsLive(live_stack); in Sweep()
2417 live_stack->Reset(); in Sweep()
/art/runtime/gc/
Dheap.cc2890 accounting::ObjectStack* live_stack = heap_->live_stack_.get(); in VerifyReference() local
2943 if (live_stack->Contains(const_cast<mirror::Object*>(obj))) { in VerifyReference()
2949 if (live_stack->Contains(const_cast<mirror::Object*>(ref))) { in VerifyReference()
3112 accounting::ObjectStack* live_stack = heap_->live_stack_.get(); in operator ()() local
3113 if (live_stack->ContainsSorted(ref)) { in operator ()()
3114 if (live_stack->ContainsSorted(obj)) { in operator ()()