Home
last modified time | relevance | path

Searched refs:live_words_bitmap_ (Results 1 – 3 of 3) sorted by relevance

/art/runtime/gc/collector/
Dmark_compact-inl.h300 live_words_bitmap_->Test(old_ref)) in VerifyRootSingleUpdate()
366 const uintptr_t begin = live_words_bitmap_->Begin(); in PostCompactOldObjAddr()
370 live_words_bitmap_->CountLiveWordsUpto(addr_offset / kAlignment) * kAlignment; in PostCompactOldObjAddr()
382 DCHECK(live_words_bitmap_->Test(old_ref)) in PostCompactAddressUnchecked()
Dmark_compact.cc496 live_words_bitmap_.reset(LiveWordsBitmap<kAlignment>::Create( in MarkCompact()
686 live_words_bitmap_->SetBitmapSize(moving_space_size); in MaybeClampGcStructures()
893 offset_in_chunk_word = live_words_bitmap_->FindNthLiveWordOffset(chunk_idx, /*n*/ 0); in InitMovingSpaceFirstObjects()
895 DCHECK(live_words_bitmap_->Test(offset)) << "offset=" << offset in InitMovingSpaceFirstObjects()
900 << live_words_bitmap_->GetWord(chunk_idx); in InitMovingSpaceFirstObjects()
927 live_words_bitmap_->FindNthLiveWordOffset( in InitMovingSpaceFirstObjects()
930 DCHECK(live_words_bitmap_->Test(offset)) in InitMovingSpaceFirstObjects()
935 << " word=" << std::hex << live_words_bitmap_->GetWord(chunk_idx); in InitMovingSpaceFirstObjects()
1064 DCHECK_EQ(chunk_info_vec_[i], live_words_bitmap_->LiveBytesInBitmapWord(i)); in PrepareForCompaction()
1599 CHECK(live_words_bitmap_->Test(pre_compact_klass)); in VerifyObject()
[all …]
Dmark_compact.h635 std::unique_ptr<LiveWordsBitmap<kAlignment>> live_words_bitmap_; variable