Home
last modified time | relevance | path

Searched refs:bitmap_begin_ (Results 1 – 6 of 6) sorted by relevance

/art/runtime/gc/accounting/
Dbitmap-inl.h37 auto* atomic_entry = reinterpret_cast<Atomic<uintptr_t>*>(&bitmap_begin_[word_index]); in AtomicTestAndSetBit()
53 return (bitmap_begin_[BitIndexToWordIndex(bit_index)] & BitIndexToMask(bit_index)) != 0; in TestBit()
75 uintptr_t left_edge = bitmap_begin_[index_start]; in VisitSetBits()
97 uintptr_t w = bitmap_begin_[i]; in VisitSetBits()
114 right_edge = bitmap_begin_[index_end]; in VisitSetBits()
137 uintptr_t* address = &bitmap_begin_[word_index]; in ModifyBit()
Dspace_bitmap-inl.h40 Atomic<uintptr_t>* atomic_entry = &bitmap_begin_[index]; in AtomicTestAndSet()
59 DCHECK(bitmap_begin_ != nullptr); in Test()
63 return (bitmap_begin_[index].load(std::memory_order_relaxed) & OffsetToMask(offset)) != 0; in Test()
100 uintptr_t left_edge = bitmap_begin_[index_start]; in VisitMarkedRange()
123 uintptr_t w = bitmap_begin_[i].load(std::memory_order_relaxed); in VisitMarkedRange()
142 right_edge = bitmap_begin_[index_end]; in VisitMarkedRange()
167 CHECK(bitmap_begin_ != nullptr); in Walk()
170 Atomic<uintptr_t>* bitmap_begin = bitmap_begin_; in Walk()
195 Atomic<uintptr_t>* atomic_entry = &bitmap_begin_[index]; in Modify()
Dspace_bitmap.cc67 bitmap_begin_(reinterpret_cast<Atomic<uintptr_t>*>(bitmap_begin)), in SpaceBitmap()
72 CHECK(bitmap_begin_ != nullptr); in SpaceBitmap()
118 if (bitmap_begin_ != nullptr) { in Clear()
139 ZeroAndReleasePages(reinterpret_cast<uint8_t*>(&bitmap_begin_[start_index]), in ClearRange()
140 (end_index - start_index) * sizeof(*bitmap_begin_)); in ClearRange()
159 CHECK(live_bitmap.bitmap_begin_ != nullptr); in SweepWalk()
160 CHECK(mark_bitmap.bitmap_begin_ != nullptr); in SweepWalk()
172 Atomic<uintptr_t>* live = live_bitmap.bitmap_begin_; in SweepWalk()
173 Atomic<uintptr_t>* mark = mark_bitmap.bitmap_begin_; in SweepWalk()
Dspace_bitmap.h163 return bitmap_begin_; in Begin()
217 return bitmap_begin_ != nullptr; in IsValid()
222 bitmap_begin_ = other.bitmap_begin_; in CopyView()
248 Atomic<uintptr_t>* bitmap_begin_ = nullptr; variable
Dbitmap.cc37 bitmap_begin_(reinterpret_cast<uintptr_t*>(mem_map_.Begin())), in Bitmap()
39 CHECK(bitmap_begin_ != nullptr); in Bitmap()
71 if (bitmap_begin_ != nullptr) { in Clear()
Dbitmap.h85 return bitmap_begin_; in Begin()
116 uintptr_t* const bitmap_begin_; variable