Home
last modified time | relevance | path

Searched refs:CompiledMethod (Results 1 – 9 of 9) sorted by relevance

/arkcompiler/runtime_core/static_core/compiler/aot/
Dcompiled_method.h32 class CompiledMethod {
34CompiledMethod(Arch arch, Method *method, size_t index) : arch_(arch), method_(method), index_(ind… in CompiledMethod() function
35 NO_COPY_OPERATOR(CompiledMethod);
36 DEFAULT_COPY_CTOR(CompiledMethod);
37 DEFAULT_MOVE_SEMANTIC(CompiledMethod);
38 ~CompiledMethod() = default;
/arkcompiler/runtime_core/static_core/compiler/aot/aot_builder/
Dllvm_aot_builder.h28 const std::vector<CompiledMethod> &GetMethods() in GetMethods()
53 void AdjustMethodHeader(const CompiledMethod &method, size_t index) in AdjustMethodHeader()
63 void AdjustMethod(const CompiledMethod &method, size_t index) in AdjustMethod()
Delf_builder.h1117 void AddMethod(const CompiledMethod &method) in AddMethod()
1189 …std::vector<CompiledMethod> methods_; // NOLINT(misc-non-private-member-variables-i…
/arkcompiler/runtime_core/static_core/irtoc/lang/
Dvalidation.rb24 class CompiledMethod < OpenStruct class
51 methods << CompiledMethod.new
/arkcompiler/runtime_core/static_core/libllvmbackend/
Dllvm_irtoc_compiler.h31 class CompiledMethod; variable
/arkcompiler/runtime_core/compiler/tests/
Daot_test.cpp214 CompiledMethod compiled_method1(RUNTIME_ARCH, &method1); in TEST_F()
225 CompiledMethod compiled_method2(RUNTIME_ARCH, &method2); in TEST_F()
559 CompiledMethod compiled_method1(RUNTIME_ARCH, &method1); in TEST_F()
570 CompiledMethod compiled_method2(RUNTIME_ARCH, &method2); in TEST_F()
/arkcompiler/runtime_core/static_core/compiler/tests/
Daot_test.cpp231 CompiledMethod compiledMethod1(RUNTIME_ARCH, &method1, 0U); in TEST_F()
242 CompiledMethod compiledMethod2(RUNTIME_ARCH, &method2, 1U); in TEST_F()
574 CompiledMethod compiledMethod1(RUNTIME_ARCH, &method1, 0U); in TEST_F()
585 CompiledMethod compiledMethod2(RUNTIME_ARCH, &method2, 1U); in TEST_F()
/arkcompiler/runtime_core/static_core/compiler/
Dcompile_method.cpp428 CompiledMethod compiledMethod(graph->GetArch(), method, 0); in EmitElf()
/arkcompiler/runtime_core/static_core/compiler/tools/paoc/
Dpaoc.cpp741 CompiledMethod compiledMethod(ctx->graph->GetArch(), ctx->method, ctx->index); in FinalizeCompileAot()