/arkcompiler/runtime_core/compiler/optimizer/ir/ |
H A D | runtime_interface.h | 130 virtual std::string GetMethodFullName([[maybe_unused]] MethodPtr method, [[maybe_unused]] bool with_signature) const in GetMethodFullName() function in panda::compiler::RuntimeInterface 135 std::string GetMethodFullName(MethodPtr method) const in GetMethodFullName() function in panda::compiler::RuntimeInterface 137 return GetMethodFullName(method, false); in GetMethodFullName()
|
H A D | graph.cpp | 453 std::string GetMethodFullName(const Graph *graph, RuntimeInterface::MethodPtr method) in GetMethodFullName() function
|
H A D | dump.cpp | 529 (*out) << "Method: " << runtime->GetMethodFullName(method, true) << std::endl; in Dump()
|
H A D | graph.h | 1154 std::string GetMethodFullName(const Graph *graph, RuntimeInterface::MethodPtr method);
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
H A D | inlining.cpp | 118 EVENT_INLINE(runtime->GetMethodFullName(graph->GetMethod()), in EmitEvent() 119 ctx.method != nullptr ? runtime->GetMethodFullName(ctx.method) : "null", callInst->GetId(), kind, res); in EmitEvent() 262 << "): " << GetGraph()->GetRuntime()->GetMethodFullName(ctx.method, true); in TryInline() 315 EVENT_INLINE(runtime->GetMethodFullName(GetGraph()->GetMethod()), "-", callInst->GetId(), in TryInlineWithInlineCaches() 342 << "): " << GetMethodFullName(GetGraph(), ctx.method); in DoInlineMonomorphic() 368 EVENT_INLINE(runtime->GetMethodFullName(GetGraph()->GetMethod()), runtime->GetMethodFullName(ctx.method), in DoInlineMonomorphic() 567 LOG_INLINING(DEBUG) << "Inline receiver " << runtime->GetMethodFullName(ctx.method); in DoInlinePolymorphic() 591 EVENT_INLINE(runtime->GetMethodFullName(GetGraph()->GetMethod()), runtime->GetMethodFullName(ct in DoInlinePolymorphic() [all...] |
/arkcompiler/runtime_core/static_core/libllvmbackend/ |
H A D | llvm_aot_compiler.cpp | 193 LLVM_LOG(DEBUG, INFRA) << "Getting module for graph (" << runtime_->GetMethodFullName(method, true) << "), " 390 LLVM_LOG(DEBUG, INFRA) << "Adding graph for method = '" << runtime_->GetMethodFullName(graph->GetMethod()) << "'"; in AddGraphToModule() 393 << runtime_->GetMethodFullName(graph->GetMethod()) << "'"; in AddGraphToModule() 568 EVENT_PAOC("Compiling " + runtime_->GetMethodFullName(*methodsIt) + " using llvm"); in CollectAotBuilderOffsets() 711 LLVM_LOG(DEBUG, INFRA) << "Will not add inline function = '" << runtime_->GetMethodFullName(method) in AddInlineMethodByDepth() 712 << "' for caller = '" << runtime_->GetMethodFullName(caller->GetMethod()) in AddInlineMethodByDepth() 728 LLVM_LOG(WARNING, INFRA) << "Could not add inline function = '" << runtime_->GetMethodFullName(method) in AddInlineMethodByDepth() 729 << "' for caller = '" << runtime_->GetMethodFullName(caller->GetMethod()) in AddInlineMethodByDepth() 736 LLVM_LOG(WARNING, INFRA) << "Could not add inline function = '" << runtime_->GetMethodFullName(method) in AddInlineMethodByDepth() 737 << "' for caller = '" << runtime_->GetMethodFullName(calle in AddInlineMethodByDepth() [all...] |
H A D | llvm_compiler.cpp | 120 std::string methodName = runtime->GetMethodFullName(method); in IsInliningDisabled()
|
/arkcompiler/runtime_core/static_core/compiler/ |
H A D | compile_method.cpp | 118 << graph->GetRuntime()->GetMethodFullName(siMethod); in CheckSingleImplementation() 268 taskCtx.SetMethodName(runtime->GetMethodFullName(taskMethod, false)); in JITCompileMethod() 277 if ((regex || regexWithSign) && !g_options.MatchesRegex(runtime->GetMethodFullName(taskMethod, regexWithSign))) { in JITCompileMethod() 279 << runtime->GetMethodFullName(taskMethod, true); in JITCompileMethod()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/ |
H A D | ets_runtime_interface.cpp | 142 return GetMethodFullName(method, false) == "std.core.String::concat" && in IsMethodStringConcat() 166 return GetMethodFullName(method, false) == "std.core.StringBuilder::toString" && in IsMethodStringBuilderToString() 172 return GetMethodFullName(method, false) == "std.core.StringBuilder::append"; in IsMethodStringBuilderAppend()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/ |
H A D | reg_alloc.cpp | 73 COMPILER_LOG(DEBUG, IR_BUILDER) << graph->GetRuntime()->GetMethodFullName(graph->GetMethod()) in RemoveThrowEdges()
|
/arkcompiler/runtime_core/static_core/irtoc/backend/ |
H A D | irtoc_runtime.h | 48 std::string GetMethodFullName(MethodPtr method, [[maybe_unused]] bool withSignature) const override
|
/arkcompiler/runtime_core/bytecode_optimizer/ |
H A D | runtime_adapter.h | 143 std::string GetMethodFullName(MethodPtr method, bool /* with_signature */) const override
|
H A D | reg_encoder.cpp | 316 LOG(DEBUG, BYTECODE_OPTIMIZER) << GetGraph()->GetRuntime()->GetMethodFullName(GetGraph()->GetMethod()) in CalculateNumNeededTemps()
|
/arkcompiler/runtime_core/compiler/optimizer/ |
H A D | pass_manager_statistics.cpp | 156 auto m_name = graph_->GetRuntime()->GetMethodFullName(graph_->GetMethod(), true); in DumpStatisticsCsv()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
H A D | disassembly.cpp | 118 item.GetStream() << INDENT << "name: " << codegen->GetRuntime()->GetMethodFullName(graph->GetMethod(), true) in PrintMethodEntry()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ |
H A D | pass_manager_statistics.cpp | 157 auto mName = graph_->GetRuntime()->GetMethodFullName(graph_->GetMethod(), true); in DumpStatisticsCsv()
|
/arkcompiler/runtime_core/bytecode_optimizer/tests/ |
H A D | runtime_adapter_test.cpp | 109 EXPECT_EQ(adapter.GetMethodFullName(main, false), std::string("L_GLOBAL;::main")); in TEST()
|
H A D | codegen_test.cpp | 437 * @tc.desc: Verify the GetMethodFullName function. 457 EXPECT_EQ(runtime_adapter.GetMethodFullName(method, false), "L_GLOBAL;::foo"); in HWTEST_F()
|
/arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/ |
H A D | runtime_adapter_test.cpp | 109 EXPECT_EQ(adapter.GetMethodFullName(main, false), std::string("_GLOBAL::main")); in TEST()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | runtime_interface.h | 519 virtual std::string GetMethodFullName([[maybe_unused]] MethodPtr method, [[maybe_unused]] bool withSignature) const in GetMethodFullName() function in ark::compiler::RuntimeInterface 524 std::string GetMethodFullName(MethodPtr method) const in GetMethodFullName() function in ark::compiler::RuntimeInterface 526 return GetMethodFullName(method, false); in GetMethodFullName()
|
H A D | dump.cpp | 844 ArenaString method(graph->GetRuntime()->GetMethodFullName(GetCallMethod()), adapter); in DumpOpcode() 859 ArenaString method(graph->GetRuntime()->GetMethodFullName(GetCallMethod()), adapter); in DumpOpcode() 892 ArenaString method(graph->GetRuntime()->GetMethodFullName(GetCallMethod()), adapter); in DumpOpcode() 1310 (*out) << "Method: " << runtime->GetMethodFullName(method, true) << " " << method << std::endl; in Dump()
|
/arkcompiler/runtime_core/static_core/libllvmbackend/object_code/ |
H A D | code_info_producer.cpp | 292 LLVM_LOG(DEBUG, STACKMAPS) << "# Method '" << compilation_->GetRuntime()->GetMethodFullName(method, true) in ConvertStackMaps()
|
/arkcompiler/runtime_core/compiler/tests/ |
H A D | compiler_graph_test.cpp | 261 * @tc.desc: Verify the GetMethodFullName function. 276 std::string str = GetMethodFullName(graph, graph->GetMethod()); in HWTEST_F()
|
/arkcompiler/runtime_core/static_core/bytecode_optimizer/ |
H A D | runtime_adapter.h | 277 std::string GetMethodFullName(MethodPtr method, bool /* with_signature */) const override
|
/arkcompiler/runtime_core/static_core/compiler/aot/aot_builder/ |
H A D | aot_builder.cpp | 289 name = runtime_->GetMethodFullName(methodCasted, true);
|