Home
last modified time | relevance | path

Searched refs:ArenaPool (Results 1 – 14 of 14) sorted by relevance

/aosp12/art/libartbase/base/
H A Darena_allocator.h32 class ArenaPool; variable
229 class ArenaPool {
231 virtual ~ArenaPool() = default;
242 ArenaPool() = default;
245 DISALLOW_COPY_AND_ASSIGN(ArenaPool);
256 explicit ArenaAllocator(ArenaPool* pool);
353 ArenaPool* GetArenaPool() const { in GetArenaPool()
373 ArenaPool* pool_;
H A Dscoped_arena_allocator.h47 explicit ArenaStack(ArenaPool* arena_pool);
80 explicit StatsAndPool(ArenaPool* arena_pool) : pool(arena_pool) { } in StatsAndPool()
81 ArenaPool* const pool;
H A Dmalloc_arena_pool.h26 class MallocArenaPool final : public ArenaPool {
H A Dscoped_arena_allocator.cc26 ArenaStack::ArenaStack(ArenaPool* arena_pool) in ArenaStack()
H A Darena_allocator.cc207 ArenaAllocator::ArenaAllocator(ArenaPool* pool) in ArenaAllocator()
/aosp12/art/runtime/
H A Dlinear_alloc.h25 class ArenaPool; variable
30 explicit LinearAlloc(ArenaPool* pool);
47 ArenaPool* GetArenaPool() REQUIRES(!lock_);
H A Dlinear_alloc.cc23 LinearAlloc::LinearAlloc(ArenaPool* pool) : lock_("linear alloc"), allocator_(pool) { in LinearAlloc()
46 ArenaPool* LinearAlloc::GetArenaPool() { in GetArenaPool()
H A Druntime.h88 class ArenaPool; variable
710 ArenaPool* GetArenaPool() { in GetArenaPool()
713 ArenaPool* GetJitArenaPool() { in GetJitArenaPool()
716 const ArenaPool* GetArenaPool() const { in GetArenaPool()
1153 std::unique_ptr<ArenaPool> jit_arena_pool_;
1154 std::unique_ptr<ArenaPool> arena_pool_;
1158 std::unique_ptr<ArenaPool> low_4gb_arena_pool_;
/aosp12/art/runtime/verifier/
H A Dmethod_verifier.h226 ArenaPool* arena_pool,
261 ArenaPool* arena_pool,
284 ArenaPool* arena_pool,
H A Dmethod_verifier.cc155 ArenaPool* arena_pool, in MethodVerifier()
4996 ArenaPool* arena_pool, in MethodVerifier()
5034 ArenaPool* arena_pool, in VerifyMethod()
5116 ArenaPool* arena_pool, in VerifyMethod()
/aosp12/art/runtime/base/
H A Dmem_map_arena_pool.h24 class MemMapArenaPool final : public ArenaPool {
/aosp12/art/libprofile/profile/
H A Dprofile_compilation_info.h293 explicit ProfileCompilationInfo(ArenaPool* arena_pool);
294 ProfileCompilationInfo(ArenaPool* arena_pool, bool for_boot_image);
H A Dprofile_compilation_info.cc548 ProfileCompilationInfo::ProfileCompilationInfo(ArenaPool* custom_arena_pool, bool for_boot_image) in ProfileCompilationInfo()
561 ProfileCompilationInfo::ProfileCompilationInfo(ArenaPool* custom_arena_pool) in ProfileCompilationInfo()
/aosp12/art/dex2oat/driver/
H A Dcompiler_driver.cc2662 const ArenaPool* const arena_pool = Runtime::Current()->GetArenaPool(); in Compile()