Searched refs:alloc_space (Results 1 – 5 of 5) sorted by relevance
/art/runtime/gc/space/ |
D | space_test.h | 67 mirror::Object* Alloc(space::MallocSpace* alloc_space, in Alloc() argument 76 mirror::Object* obj = alloc_space->Alloc(self, in Alloc() 87 mirror::Object* AllocWithGrowth(space::MallocSpace* alloc_space, in AllocWithGrowth() argument 96 mirror::Object* obj = alloc_space->AllocWithGrowth(self, bytes, bytes_allocated, usable_size, in AllocWithGrowth()
|
/art/runtime/gc/collector/ |
D | semi_space.cc | 514 space::ContinuousMemMapAllocSpace* alloc_space = space->AsContinuousMemMapAllocSpace(); in Sweep() local 515 if (!ShouldSweepSpace(alloc_space)) { in Sweep() 519 alloc_space->IsZygoteSpace() ? "SweepZygoteSpace" : "SweepAllocSpace", GetTimings()); in Sweep() 520 RecordFree(alloc_space->Sweep(swap_bitmaps)); in Sweep()
|
D | mark_sweep.cc | 1239 space::AllocSpace* alloc_space = space->AsAllocSpace(); in SweepArray() local 1258 freed.bytes += alloc_space->FreeList(self, chunk_free_pos, chunk_free_buffer); in SweepArray() 1270 freed.bytes += alloc_space->FreeList(self, chunk_free_pos, chunk_free_buffer); in SweepArray() 1322 space::ContinuousMemMapAllocSpace* alloc_space = space->AsContinuousMemMapAllocSpace(); in Sweep() local 1324 alloc_space->IsZygoteSpace() ? "SweepZygoteSpace" : "SweepMallocSpace", in Sweep() 1326 RecordFree(alloc_space->Sweep(swap_bitmaps)); in Sweep()
|
D | concurrent_copying.cc | 2497 space::ContinuousMemMapAllocSpace* alloc_space = space->AsContinuousMemMapAllocSpace(); in Sweep() local 2499 alloc_space->IsZygoteSpace() ? "SweepZygoteSpace" : "SweepAllocSpace", GetTimings()); in Sweep() 2500 RecordFree(alloc_space->Sweep(swap_bitmaps)); in Sweep() 2530 space::AllocSpace* alloc_space = space->AsAllocSpace(); in SweepArray() local 2549 freed.bytes += alloc_space->FreeList(self, chunk_free_pos, chunk_free_buffer); in SweepArray() 2561 freed.bytes += alloc_space->FreeList(self, chunk_free_pos, chunk_free_buffer); in SweepArray()
|
/art/runtime/gc/ |
D | heap.cc | 2284 space::ContinuousMemMapAllocSpace* alloc_space = space->AsContinuousMemMapAllocSpace(); in UnBindBitmaps() local 2285 if (alloc_space->GetLiveBitmap() != nullptr && alloc_space->HasBoundBitmaps()) { in UnBindBitmaps() 2286 alloc_space->UnBindBitmaps(); in UnBindBitmaps()
|