Home
last modified time | relevance | path

Searched refs:current_space_bitmap_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/gc/collector/
Dmark_sweep.cc98 current_space_bitmap_(nullptr), in MarkSweep()
372 current_space_bitmap_ = bitmap; in FindDefaultSpaceBitmap()
379 CHECK(current_space_bitmap_ != nullptr) << "Could not find a default mark bitmap\n" in FindDefaultSpaceBitmap()
510 } else if (LIKELY(current_space_bitmap_->HasAddress(obj))) { in MarkObjectNonNull()
514 if (UNLIKELY(!current_space_bitmap_->Set(obj))) { in MarkObjectNonNull()
552 accounting::ContinuousSpaceBitmap* object_bitmap = current_space_bitmap_; in MarkObjectParallel()
1041 current_space_bitmap_ = space->GetMarkBitmap(); in RecursiveMark()
1042 if (current_space_bitmap_ == nullptr) { in RecursiveMark()
1063 current_space_bitmap_, in RecursiveMark()
1076 current_space_bitmap_->VisitMarkedRange(begin, end, scan_visitor); in RecursiveMark()
[all …]
Dmark_sweep.h311 accounting::ContinuousSpaceBitmap* current_space_bitmap_; variable