Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dregion_space-inl.h113 DCHECK_LE(Top(), end_); in Alloc()
260 uint8_t* top = r->Top(); in WalkNonLargeRegion()
489 DCHECK_LT(begin_ + kRegionSize, Top()); in BytesAllocated()
490 return static_cast<size_t>(Top() - begin_); in BytesAllocated()
492 DCHECK_EQ(begin_, Top()); in BytesAllocated()
496 DCHECK_LE(begin_, Top()); in BytesAllocated()
501 bytes = static_cast<size_t>(Top() - begin_); in BytesAllocated()
510 DCHECK_LT(begin_ + kRegionSize, Top()); in ObjectsAllocated()
514 DCHECK_EQ(begin_, Top()); in ObjectsAllocated()
Dregion_space.h445 DCHECK_EQ(begin_, Top()); in IsFree()
479 DCHECK_LT(begin_ + kRegionSize, Top()); in IsLarge()
492 DCHECK_EQ(begin_, Top()); in IsLargeTail()
567 live_bytes_ += IsLarge() ? Top() - begin_ : live_bytes; in AddLiveBytes()
572 return LiveBytes() == static_cast<size_t>(Top() - Begin()); in AllAllocatedBytesAreLive()
588 ALWAYS_INLINE uint8_t* Top() const { in Top() function
608 DCHECK_EQ(Top(), end_); in RecordThreadLocalAllocations()
611 DCHECK_LE(Top(), end_); in RecordThreadLocalAllocations()
Dregion_space.cc653 live_bytes_recount = r->Top() - r->Begin(); in CheckLiveBytesAgainstRegionBitmap()
664 reinterpret_cast<uintptr_t>(r->Top()), in CheckLiveBytesAgainstRegionBitmap()
712 reinterpret_cast<uintptr_t>(r->Top()), in PoisonDeadObjectsInUnevacuatedRegion()
715 if (prev_obj_end < r->Top()) { in PoisonDeadObjectsInUnevacuatedRegion()
716 PoisonUnevacuatedRange(prev_obj_end, r->Top()); in PoisonDeadObjectsInUnevacuatedRegion()
725 if (current_region_->End() - current_region_->Top() > 0) { in LogFragmentationAllocFailure()
726 max_contiguous_allocation = current_region_->End() - current_region_->Top(); in LogFragmentationAllocFailure()
877 DCHECK_GE(r->Top(), pos); in AllocNewTlab()
878 *bytes_tl_bulk_allocated -= r->Top() - pos; in AllocNewTlab()
962 << "-" << reinterpret_cast<void*>(Top()) in Dump()