/arkcompiler/runtime_core/static_core/libpandabase/tests/ |
H A D | mmap_mem_pool_test.cpp | 52 memPool->template FreePool<OSPagesPolicy::NO_RETURN>(pool.GetMem(), pool.GetSize()); in FreePoolWithPolicy() 54 memPool->template FreePool<OSPagesPolicy::IMMEDIATE_RETURN>(pool.GetMem(), pool.GetSize()); in FreePoolWithPolicy() 88 memPool->FreePool(finalPool.GetMem(), finalPool.GetSize()); in ReturnedToOsTest() 98 memPool->FreePool(pools[i].GetMem(), pools[i].GetSize()); in ReturnedToOsTest() 102 memPool->FreePool(fourthPool.GetMem(), fourthPool.GetSize()); in ReturnedToOsTest() 168 memPool->FreePool(pool1.GetMem(), pool1.GetSize()); in TEST_F() 191 memPool->FreePool(pool1.GetMem(), pool1.GetSize()); in TEST_F() 192 memPool->FreePool(pool3.GetMem(), pool3.GetSize()); in TEST_F() 193 memPool->FreePool(pool4.GetMem(), pool4.GetSize()); in TEST_F() 194 memPool->FreePool(pool in TEST_F() [all...] |
/arkcompiler/runtime_core/libpandabase/tests/ |
H A D | mmap_mem_pool_test.cpp | 74 memPool->FreePool(pool1.GetMem(), pool1.GetSize()); in HWTEST_F() 93 memPool->FreePool(pool1.GetMem(), pool1.GetSize()); in HWTEST_F() 94 memPool->FreePool(pool3.GetMem(), pool3.GetSize()); in HWTEST_F() 95 memPool->FreePool(pool4.GetMem(), pool4.GetSize()); in HWTEST_F() 96 memPool->FreePool(pool5.GetMem(), pool5.GetSize()); in HWTEST_F() 127 memPool->FreePool(pool_with_alloc_addr.GetMem(), pool_with_alloc_addr.GetSize()); in HWTEST_F() 128 memPool->FreePool(pool_without_alloc_addr.GetMem(), pool_without_alloc_addr.GetSize()); in HWTEST_F() 148 mem_pool->FreePool(object_pool.GetMem(), object_pool.GetSize()); in HWTEST_F() 149 mem_pool->FreePool(internal_pool.GetMem(), internal_pool.GetSize()); in HWTEST_F() 150 mem_pool->FreePool(code_poo in HWTEST_F() [all...] |
/arkcompiler/runtime_core/static_core/runtime/tests/ |
H A D | heap_space_test.cpp | 127 heapSpace_->FreePool(pool1.GetMem(), pool1.GetSize()); in TEST_F() 133 heapSpace_->FreePool(pool2.GetMem(), pool2.GetSize()); in TEST_F() 164 heapSpace_->FreePool(pool1.GetMem(), pool1.GetSize()); in TEST_F() 169 heapSpace_->FreePool(pool2.GetMem(), pool2.GetSize()); in TEST_F() 213 genSpaces_->FreePool(pool2.GetMem(), pool2.GetSize()); in TEST_F() 214 genSpaces_->FreePool(pool1.GetMem(), pool1.GetSize()); in TEST_F() 275 heapSpace_->FreePool(pool1.GetMem(), pool1.GetSize()); in TEST_F() 276 heapSpace_->FreePool(pool2.GetMem(), pool2.GetSize()); in TEST_F() 277 heapSpace_->FreePool(pool3.GetMem(), pool3.GetSize()); in TEST_F()
|
H A D | humongous_obj_allocator_test.cpp | 96 PoolManager::GetMmapMemPool()->FreePool(i.GetMem(), i.GetSize()); in ClearPoolManager()
|
H A D | freelist_allocator_test.cpp | 98 PoolManager::GetMmapMemPool()->FreePool(i.GetMem(), i.GetSize()); in ClearPoolManager()
|
/arkcompiler/runtime_core/static_core/runtime/mem/ |
H A D | heap_space.cpp | 199 void HeapSpace::FreePool(void *poolMem, size_t poolSize, bool releasePages) in FreePool() function in ark::mem::HeapSpace 205 PoolManager::GetMmapMemPool()->FreePool<OSPagesPolicy::IMMEDIATE_RETURN>(poolMem, poolSize); in FreePool() 207 PoolManager::GetMmapMemPool()->FreePool<OSPagesPolicy::NO_RETURN>(poolMem, poolSize); in FreePool() 430 PoolManager::GetMmapMemPool()->FreePool(poolMem, poolSize); in FreeSharedPool() 439 PoolManager::GetMmapMemPool()->FreePool<OSPagesPolicy::IMMEDIATE_RETURN>(poolMem, poolSize); in FreeYoungPool() 441 PoolManager::GetMmapMemPool()->FreePool<OSPagesPolicy::NO_RETURN>(poolMem, poolSize); in FreeYoungPool() 458 HeapSpace::FreePool(poolMem, poolSize, releasePages); in FreeTenuredPool()
|
H A D | internal_allocator.cpp | 322 [](void *mem, [[maybe_unused]] size_t size) { PoolManager::GetMmapMemPool()->FreePool(mem, size); }); in FinalizeLocalInternalAllocator() 335 [](void *mem, [[maybe_unused]] size_t size) { PoolManager::GetMmapMemPool()->FreePool(mem, size); }); in RemoveFreePoolsForLocalInternalAllocator()
|
H A D | allocator.cpp | 214 [](void *mem, size_t size) { PoolManager::GetMmapMemPool()->FreePool(mem, size); }); in FreeObjectsMovedToPygoteSpace() 406 [](void *mem, size_t size) { PoolManager::GetMmapMemPool()->FreePool(mem, size); }); in FreeObjectsMovedToPygoteSpace() 522 [](void *mem, [[maybe_unused]] size_t size) { PoolManager::GetMmapMemPool()->FreePool(mem, size); }); in ~ObjectAllocatorGen()
|
H A D | heap_space.h | 102 void FreePool(void *poolMem, size_t poolSize, bool releasePages = true);
|
H A D | heap_manager.cpp | 96 [](void *mem, [[maybe_unused]] size_t size) { PoolManager::GetMmapMemPool()->FreePool(mem, size); }); in Finalize()
|
/arkcompiler/runtime_core/libpandabase/mem/ |
H A D | mem_pool.h | 122 void FreePool(void *mem, size_t size) in FreePool() function in panda::MemPool
|
/arkcompiler/runtime_core/static_core/libpandabase/mem/ |
H A D | mem_pool.h | 150 void FreePool(void *mem, size_t size) in FreePool() function in ark::MemPool
|
H A D | stack_like_allocator-inl.h | 58 PoolManager::GetMmapMemPool()->FreePool(startAddr_, MAX_SIZE); in ~StackLikeAllocator()
|
/arkcompiler/runtime_core/static_core/runtime/mem/gc/stw-gc/ |
H A D | stw-gc.cpp | 167 [](void *mem, [[maybe_unused]] size_t size) { PoolManager::GetMmapMemPool()->FreePool(mem, size); }); in SweepImpl()
|
/arkcompiler/runtime_core/static_core/runtime/coroutines/ |
H A D | stackful_coroutine_manager.cpp | 38 PoolManager::GetMmapMemPool()->FreePool(stack, coroStackSizeBytes_); in FreeCoroutineStack()
|
/arkcompiler/runtime_core/static_core/runtime/mem/gc/ |
H A D | gc.cpp | 377 [](void *mem, [[maybe_unused]] size_t size) { PoolManager::GetMmapMemPool()->FreePool(mem, size); }); in RunPhases()
|
/arkcompiler/runtime_core/static_core/runtime/mem/gc/gen-gc/ |
H A D | gen-gc.cpp | 635 PoolManager::GetMmapMemPool()->FreePool(mem, size); in Sweep()
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | runtime.cpp | 114 [](void *mem, size_t size) { PoolManager::GetMmapMemPool()->FreePool(mem, size); }); in Finalize()
|