Searched refs:compiledMethod (Results 1 – 4 of 4) sorted by relevance
| /arkcompiler/runtime_core/static_core/compiler/ |
| D | compile_method.cpp | 428 CompiledMethod compiledMethod(graph->GetArch(), method, 0); in EmitElf() local 429 compiledMethod.SetCode(graph->GetCode().ToConst()); in EmitElf() 430 compiledMethod.SetCodeInfo(graph->GetCodeInfoData()); in EmitElf() 431 compiledMethod.SetCfiInfo(graph->GetCallingConvention()->GetCfiInfo()); in EmitElf() 433 jitWriter.AddMethod(compiledMethod); in EmitElf()
|
| /arkcompiler/runtime_core/static_core/libllvmbackend/ |
| D | llvm_aot_compiler.cpp | 566 auto compiledMethod = AdaptCode(*methodsIt, {section.GetMemory(), section.GetSize()}); in CollectAotBuilderOffsets() local 567 aotBuilder_->AdjustMethodHeader(compiledMethod, i); in CollectAotBuilderOffsets() 613 auto compiledMethod = compiler::CompiledMethod(GetArch(), method, 0); in AdaptCode() local 614 compiledMethod.SetCode(Span<const uint8_t>(code)); in AdaptCode() 622 compiledMethod.SetCodeInfo(Span<const uint8_t>(codeInfo)); in AdaptCode() 624 return compiledMethod; in AdaptCode() 651 auto compiledMethod = AdaptCode(static_cast<Method *>(*methodsIt), code); in LinkModule() local 653 DumpCodeInfo(compiledMethod); in LinkModule() 655 aotBuilder_->AdjustMethod(compiledMethod, i); in LinkModule()
|
| /arkcompiler/runtime_core/static_core/compiler/tools/paoc/ |
| D | paoc.cpp | 751 CompiledMethod compiledMethod(ctx->graph->GetArch(), ctx->method, ctx->index); in FinalizeCompileAot() local 752 compiledMethod.SetCode(ctx->graph->GetCode().ToConst()); in FinalizeCompileAot() 753 compiledMethod.SetCodeInfo(ctx->graph->GetCodeInfoData()); in FinalizeCompileAot() 755 compiledMethod.SetCfiInfo(ctx->graph->GetCallingConvention()->GetCfiInfo()); in FinalizeCompileAot() 766 aotBuilder_->AddMethod(compiledMethod); in FinalizeCompileAot() 769 compiledMethod.GetCode().size(), compiledMethod.GetCodeInfo().size(), in FinalizeCompileAot()
|
| /arkcompiler/runtime_core/static_core/runtime/ |
| D | compiler.cpp | 921 auto *compiledMethod = compilerCtx.GetMethod(); in StartCompileMethod() local 925 compiledMethod->AtomicSetCompilationStatus(Method::COMPILATION, Method::COMPILED); in StartCompileMethod() 931 compiledMethod->SetCompilationStatus(Method::NOT_COMPILED); in StartCompileMethod() 935 compiledMethod->SetCompilationStatus(Method::FAILED); in StartCompileMethod()
|