Home
last modified time | relevance | path

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

/art/runtime/gc/accounting/
Dspace_bitmap-inl.h35 DCHECK_GE(addr, heap_begin_); in AtomicTestAndSet()
36 const uintptr_t offset = addr - heap_begin_; in AtomicTestAndSet()
59 DCHECK_GE(addr, heap_begin_); in Test()
60 const uintptr_t offset = addr - heap_begin_; in Test()
76 DCHECK_LE(heap_begin_, visit_begin); in VisitMarkedRange()
79 const uintptr_t offset_start = visit_begin - heap_begin_; in VisitMarkedRange()
80 const uintptr_t offset_end = visit_end - heap_begin_; in VisitMarkedRange()
108 const uintptr_t ptr_base = IndexToOffset(index_start) + heap_begin_; in VisitMarkedRange()
121 const uintptr_t ptr_base = IndexToOffset(i) + heap_begin_; in VisitMarkedRange()
147 const uintptr_t ptr_base = IndexToOffset(index_end) + heap_begin_; in VisitMarkedRange()
[all …]
Dspace_bitmap.cc55 heap_begin_(reinterpret_cast<uintptr_t>(heap_begin)), in SpaceBitmap()
83 size_t new_size = OffsetToIndex(new_end - heap_begin_) * sizeof(intptr_t); in SetHeapLimit()
115 uintptr_t end = OffsetToIndex(HeapLimit() - heap_begin_ - 1); in Walk()
120 uintptr_t ptr_base = IndexToOffset(i) + heap_begin_; in Walk()
138 CHECK_EQ(live_bitmap.heap_begin_, mark_bitmap.heap_begin_); in SweepWalk()
142 CHECK_GE(sweep_begin, live_bitmap.heap_begin_); in SweepWalk()
160 size_t start = OffsetToIndex(sweep_begin - live_bitmap.heap_begin_); in SweepWalk()
161 size_t end = OffsetToIndex(sweep_end - live_bitmap.heap_begin_ - 1); in SweepWalk()
168 uintptr_t ptr_base = IndexToOffset(i) + live_bitmap.heap_begin_; in SweepWalk()
251 Create("bitmap for in-order walk", reinterpret_cast<uint8_t*>(heap_begin_), in InOrderWalk()
[all …]
Dcard_table_test.cc45 card_table_.reset(CardTable::Create(heap_begin_, heap_size_)); in CommonSetup()
52 CardTableTest() : heap_begin_(reinterpret_cast<uint8_t*>(0x2000000)), heap_size_(2 * MB) { in CardTableTest()
58 return heap_begin_; in HeapBegin()
65 size_t offset = RoundDown(addr - heap_begin_, CardTable::kCardSize); in PseudoRandomCard()
77 uint8_t* const heap_begin_; member in art::gc::accounting::CardTableTest
Dspace_bitmap.h96 const uintptr_t offset = reinterpret_cast<uintptr_t>(obj) - heap_begin_; in HasAddress()
170 return heap_begin_; in HeapBegin()
224 const uintptr_t heap_begin_; variable