Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dlarge_object_space.cc272 return AlignSize() * FreeListSpace::kAlignment; in ByteSize()
277 DCHECK_ALIGNED(size, FreeListSpace::kAlignment); in SetByteSize()
278 alloc_size_ = (size / FreeListSpace::kAlignment) | (free ? kFlagFree : 0u); in SetByteSize()
317 return GetPrevFree() * FreeListSpace::kAlignment; in GetPrevFreeBytes()
321 DCHECK_ALIGNED(bytes, FreeListSpace::kAlignment); in SetPrevFreeBytes()
322 prev_free_ = bytes / FreeListSpace::kAlignment; in SetPrevFreeBytes()
337 size_t FreeListSpace::GetSlotIndexForAllocationInfo(const AllocationInfo* info) const { 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.h186 class FreeListSpace final : public LargeObjectSpace {
190 virtual ~FreeListSpace();
191 static FreeListSpace* Create(const std::string& name, size_t capacity);
204 FreeListSpace(const std::string& name, MemMap&& mem_map, uint8_t* begin, uint8_t* end);
Dlarge_object_space_test.cc45 los = space::FreeListSpace::Create("large object space", capacity); in LargeObjectTest()
160 los = space::FreeListSpace::Create("large object space", 128 * MB); in RaceTest()
/art/runtime/gc/
Dheap.cc598 large_object_space_ = space::FreeListSpace::Create("free list large object space", capacity_); in Heap()