/arkcompiler/runtime_core/static_core/compiler/ |
H A D | inplace_task_runner.h | 59 localAllocator_ = localAllocator; in SetLocalAllocator() 104 return localAllocator_; in GetLocalAllocator() 132 ArenaAllocator *localAllocator_ {nullptr};
|
H A D | background_task_runner.h | 65 localAllocator_ = std::move(localAllocator); in SetLocalAllocator() 110 return localAllocator_.get(); in GetLocalAllocator() 137 std::unique_ptr<ArenaAllocator> localAllocator_; member in ark::compiler::BackgroundCompilerContext
|
/arkcompiler/runtime_core/static_core/compiler/tests/ |
H A D | unit_test.cpp | 67 localAllocator_ = new ArenaAllocator(ark::SpaceType::SPACE_TYPE_INTERNAL); in PandaRuntimeTest() 77 delete localAllocator_; in ~PandaRuntimeTest() 152 delete localAllocator_; in ~CommonTest()
|
H A D | unit_test.h | 133 localAllocator_ = new ArenaAllocator(SpaceType::SPACE_TYPE_COMPILER); in CommonTest() 153 return localAllocator_; in GetLocalAllocator() 251 ArenaAllocator *localAllocator_; member in ark::compiler::CommonTest 391 return localAllocator_; in GetLocalAllocator() 421 ArenaAllocator *localAllocator_ {nullptr};
|
H A D | inst_generator.h | 27 : allocator_(allocator), localAllocator_(localAllocator) in GraphCreator() 55 return &localAllocator_; in GetLocalAllocator() 113 ArenaAllocator &localAllocator_; member in ark::compiler::GraphCreator
|
H A D | inst_generator.cpp | 169 Graph *graph = allocator_.New<Graph>(&allocator_, &localAllocator_, arch_); in CreateGraph()
|
/arkcompiler/runtime_core/static_core/irtoc/backend/ |
H A D | compilation.h | 60 std::unique_ptr<ArenaAllocator> localAllocator_; member in ark::irtoc::Compilation
|
H A D | compilation.cpp | 188 localAllocator_ = std::make_unique<ArenaAllocator>(SpaceType::SPACE_TYPE_COMPILER); in Run() 219 localAllocator_.reset(); in Run() 243 auto result = unit->Compile(arch_, allocator_.get(), localAllocator_.get()); in Compile()
|
/arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/ |
H A D | common.h | 125 localAllocator_ = new ArenaAllocator(SpaceType::SPACE_TYPE_INTERNAL); in CommonTest() 134 delete localAllocator_; 151 return localAllocator_; in GetLocalAllocator() 187 ArenaAllocator *localAllocator_; member in ark::bytecodeopt::CommonTest 242 compiler::Graph::GraphArgs {&allocator_, &localAllocator_, Arch::NONE, methodPtr, adapter}, in ParseToGraph() 276 ArenaAllocator localAllocator_ {SpaceType::SPACE_TYPE_COMPILER};
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
H A D | codegen.h | 103 return localAllocator_; in GetLocalAllocator() 441 ArenaAllocator *localAllocator_; member in ark::compiler::Codegen
|
H A D | codegen.cpp | 146 localAllocator_(graph->GetLocalAllocator()), in Codegen()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | graph_cloner.h | 370 ArenaAllocator *localAllocator_; member in ark::compiler::GraphCloner
|
H A D | graph.h | 185 localAllocator_(args.localAllocator), in Graph() 326 return localAllocator_; in GetLocalAllocator() 1340 ArenaAllocator *const localAllocator_; member
|
H A D | graph_checker.h | 132 return &localAllocator_; in GetLocalAllocator() 530 ArenaAllocator localAllocator_ {SpaceType::SPACE_TYPE_COMPILER, nullptr, true};
|
H A D | graph_cloner.cpp | 27 localAllocator_(localAllocator), in GraphCloner() 36 auto newGraph = allocator_->New<Graph>(Graph::GraphArgs {allocator_, localAllocator_, GetGraph()->GetArch(), in CloneGraph()
|