Home
last modified time | relevance | path

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

/art/runtime/gc/collector/
Dconcurrent_copying.cc1223 accounting::LargeObjectBitmap* los_bitmap = nullptr; in TestAndSetMarkBitForRef() local
1243 los_bitmap = heap_->GetLargeObjectsSpace()->GetMarkBitmap(); in TestAndSetMarkBitForRef()
1246 return (bitmap != nullptr) ? bitmap->AtomicTestAndSet(ref) : los_bitmap->AtomicTestAndSet(ref); in TestAndSetMarkBitForRef()
1248 return (bitmap != nullptr) ? bitmap->Set(ref) : los_bitmap->Set(ref); in TestAndSetMarkBitForRef()
2333 accounting::LargeObjectBitmap* los_bitmap = in ProcessMarkStackRef() local
2335 DCHECK(los_bitmap->HasAddress(to_ref)); in ProcessMarkStackRef()
2338 perform_scan = !los_bitmap->Set(to_ref); in ProcessMarkStackRef()
2941 accounting::LargeObjectBitmap* los_bitmap = in AssertToSpaceInvariant() local
2943 LOG(FATAL_WITHOUT_ABORT) << "BITMAP " << los_bitmap->Test(obj); in AssertToSpaceInvariant()
3082 accounting::LargeObjectBitmap* los_bitmap = nullptr; in LogFromSpaceRefHolder() local
[all …]
Dmark_compact.cc4123 accounting::LargeObjectBitmap* los_bitmap = heap_->GetLargeObjectsSpace()->GetMarkBitmap(); in MarkObjectNonNullNoPush() local
4124 DCHECK(los_bitmap->HasAddress(obj)); in MarkObjectNonNullNoPush()
4126 los_bitmap->AtomicTestAndSet(obj); in MarkObjectNonNullNoPush()
4128 los_bitmap->Set(obj); in MarkObjectNonNullNoPush()
4205 accounting::LargeObjectBitmap* los_bitmap = heap_->GetLargeObjectsSpace()->GetMarkBitmap(); in IsMarked() local
4206 if (los_bitmap->HasAddress(obj)) { in IsMarked()
4208 return los_bitmap->Test(obj) ? obj : nullptr; in IsMarked()