Home
last modified time | relevance | path

Searched refs:GetMethodFullName (Results 1 - 25 of 33) sorted by relevance

12

/arkcompiler/runtime_core/compiler/optimizer/ir/
H A Druntime_interface.h130 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 Dgraph.cpp453 std::string GetMethodFullName(const Graph *graph, RuntimeInterface::MethodPtr method) in GetMethodFullName() function
H A Ddump.cpp529 (*out) << "Method: " << runtime->GetMethodFullName(method, true) << std::endl; in Dump()
H A Dgraph.h1154 std::string GetMethodFullName(const Graph *graph, RuntimeInterface::MethodPtr method);
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H A Dinlining.cpp118 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 Dllvm_aot_compiler.cpp193 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 Dllvm_compiler.cpp120 std::string methodName = runtime->GetMethodFullName(method); in IsInliningDisabled()
/arkcompiler/runtime_core/static_core/compiler/
H A Dcompile_method.cpp118 << 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 Dets_runtime_interface.cpp142 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 Dreg_alloc.cpp73 COMPILER_LOG(DEBUG, IR_BUILDER) << graph->GetRuntime()->GetMethodFullName(graph->GetMethod()) in RemoveThrowEdges()
/arkcompiler/runtime_core/static_core/irtoc/backend/
H A Dirtoc_runtime.h48 std::string GetMethodFullName(MethodPtr method, [[maybe_unused]] bool withSignature) const override
/arkcompiler/runtime_core/bytecode_optimizer/
H A Druntime_adapter.h143 std::string GetMethodFullName(MethodPtr method, bool /* with_signature */) const override
H A Dreg_encoder.cpp316 LOG(DEBUG, BYTECODE_OPTIMIZER) << GetGraph()->GetRuntime()->GetMethodFullName(GetGraph()->GetMethod()) in CalculateNumNeededTemps()
/arkcompiler/runtime_core/compiler/optimizer/
H A Dpass_manager_statistics.cpp156 auto m_name = graph_->GetRuntime()->GetMethodFullName(graph_->GetMethod(), true); in DumpStatisticsCsv()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
H A Ddisassembly.cpp118 item.GetStream() << INDENT << "name: " << codegen->GetRuntime()->GetMethodFullName(graph->GetMethod(), true) in PrintMethodEntry()
/arkcompiler/runtime_core/static_core/compiler/optimizer/
H A Dpass_manager_statistics.cpp157 auto mName = graph_->GetRuntime()->GetMethodFullName(graph_->GetMethod(), true); in DumpStatisticsCsv()
/arkcompiler/runtime_core/bytecode_optimizer/tests/
H A Druntime_adapter_test.cpp109 EXPECT_EQ(adapter.GetMethodFullName(main, false), std::string("L_GLOBAL;::main")); in TEST()
H A Dcodegen_test.cpp437 * @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 Druntime_adapter_test.cpp109 EXPECT_EQ(adapter.GetMethodFullName(main, false), std::string("_GLOBAL::main")); in TEST()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H A Druntime_interface.h519 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 Ddump.cpp844 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 Dcode_info_producer.cpp292 LLVM_LOG(DEBUG, STACKMAPS) << "# Method '" << compilation_->GetRuntime()->GetMethodFullName(method, true) in ConvertStackMaps()
/arkcompiler/runtime_core/compiler/tests/
H A Dcompiler_graph_test.cpp261 * @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 Druntime_adapter.h277 std::string GetMethodFullName(MethodPtr method, bool /* with_signature */) const override
/arkcompiler/runtime_core/static_core/compiler/aot/aot_builder/
H A Daot_builder.cpp289 name = runtime_->GetMethodFullName(methodCasted, true);

Completed in 24 milliseconds

12