Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dlarge_object_space.cc262 class AllocationInfo { class
264 AllocationInfo() : prev_free_(0), alloc_size_(0) { in AllocationInfo() function in art::gc::space::AllocationInfo
294 AllocationInfo* GetNextInfo() { in GetNextInfo()
297 const AllocationInfo* GetNextInfo() const { in GetNextInfo()
303 AllocationInfo* GetPrevFreeInfo() { in GetPrevFreeInfo()
337 size_t FreeListSpace::GetSlotIndexForAllocationInfo(const AllocationInfo* info) const { in GetSlotIndexForAllocationInfo()
339 DCHECK_LT(info, reinterpret_cast<AllocationInfo*>(allocation_info_map_.End())); in GetSlotIndexForAllocationInfo()
343 AllocationInfo* FreeListSpace::GetAllocationInfoForAddress(uintptr_t address) { in GetAllocationInfoForAddress()
347 const AllocationInfo* FreeListSpace::GetAllocationInfoForAddress(uintptr_t address) const { in GetAllocationInfoForAddress()
351 inline bool FreeListSpace::SortByPrevFree::operator()(const AllocationInfo* a, in operator ()()
[all …]
Dlarge_object_space.h34 class AllocationInfo; variable
209 size_t GetSlotIndexForAllocationInfo(const AllocationInfo* info) const;
210 AllocationInfo* GetAllocationInfoForAddress(uintptr_t address);
211 const AllocationInfo* GetAllocationInfoForAddress(uintptr_t address) const;
215 uintptr_t GetAddressForAllocationInfo(const AllocationInfo* info) const { in GetAddressForAllocationInfo()
219 void RemoveFreePrev(AllocationInfo* info) REQUIRES(lock_);
227 bool operator()(const AllocationInfo* a, const AllocationInfo* b) const;
229 typedef std::set<AllocationInfo*, SortByPrevFree,
230 TrackingAllocator<AllocationInfo*, kAllocatorTagLOSFreeList>> FreeBlocks;
237 AllocationInfo* allocation_info_;