/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | pass.h | 139 const std::string& GetMethodName() const in GetMethodName() function in panda::ecmascript::kungfu::PassData 245 TimeScope timescope("PreCompileCheckPass", data->GetMethodName(), data->GetMethodOffset(), data->GetLog()); in Run() 247 PreCompileChecker preCompileChecker(data, data->GetCircuit(), data->GetMethodName(), enableLog); in Run() 260 TimeScope timescope("PGOTypeInferPass", data->GetMethodName(), data->GetMethodOffset(), data->GetLog()); in Run() 263 PGOTypeInfer pgoTypeInfer(data->GetCircuit(), data->GetBuilder(), data->GetMethodName(), &chunk, enableLog); in Run() 277 TimeScope timescope("EscapeAnalysisPass", data->GetMethodName(), data->GetMethodOffset(), data->GetLog()); in Run() 281 CombinedPassVisitor visitor(data->GetCircuit(), enableLog, data->GetMethodName(), &chunk); in Run() 285 CombinedPassVisitor Editvisitor(data->GetCircuit(), enableLog, data->GetMethodName(), &chunk); in Run() 303 TimeScope timescope("InductionVariableAnalysisPass", data->GetMethodName(), in Run() 309 data->GetMethodName(), in Run() [all...] |
H A D | number_speculative_runner.cpp | 36 << "[" << GetMethodName() << "]" in Run() 54 << "[" << GetMethodName() << "]" in Run() 85 << "[" << GetMethodName() << "]" in Run() 105 << "[" << GetMethodName() << "]" in Run() 119 << "[" << GetMethodName() << "]" in Run()
|
H A D | useless_gate_elimination.cpp | 77 std::string UselessGateElimination::GetMethodName() in GetMethodName() function in panda::ecmascript::kungfu::UselessGateElimination 92 << "[" << GetMethodName() << "]" in Run()
|
H A D | ir_module.cpp | 26 std::string name = MethodLiteral::GetMethodName(jsPandaFile, methodLiteral->GetMethodId()); in GetFuncName()
|
H A D | number_speculative_runner.h | 41 const std::string& GetMethodName() const in GetMethodName() function in panda::ecmascript::kungfu::NumberSpeculativeRunner
|
H A D | stub.h | 37 const std::string &GetMethodName() const in GetMethodName() function in panda::ecmascript::kungfu::Stub
|
H A D | useless_gate_elimination.h | 36 std::string GetMethodName();
|
H A D | state_split_linearizer.h | 43 const std::string& GetMethodName() const in GetMethodName() function in panda::ecmascript::kungfu::StateSplitLinearizer
|
H A D | compilation_driver.h | 77 const std::string methodName(MethodLiteral::GetMethodName(jsPandaFile_, methodLiteral->GetMethodId())); in Run() 160 const std::string methodName(MethodLiteral::GetMethodName(jsPandaFile, methodLiteral->GetMethodId())); in CompileMethod()
|
H A D | async_function_lowering.h | 40 const std::string& GetMethodName() const
in GetMethodName() function in panda::ecmascript::kungfu::AsyncFunctionLowering
|
H A D | induction_variable_analysis.h | 44 const std::string& GetMethodName() const in GetMethodName() function in panda::ecmascript::kungfu::InductionVariableAnalysis
|
H A D | loop_peeling.h | 50 std::string GetMethodName() const in GetMethodName() function in panda::ecmascript::kungfu::LoopPeeling
|
H A D | stub_compiler.cpp | 74 LOG_COMPILER(INFO) << "Stub Name: " << stub->GetMethodName(); in Run() 108 log->SetStubLog(stub.GetMethodName(), GetLogList()); in RunPipeline()
|
/arkcompiler/runtime_core/bytecode_optimizer/tests/ |
H A D | runtime_adapter_test.cpp | 108 EXPECT_EQ(adapter.GetMethodName(main), std::string("main")); in TEST() 141 EXPECT_EQ(adapter.GetMethodName(main), std::string("main")); in TEST() 142 EXPECT_EQ(adapter.GetMethodName(ctor), std::string(".ctor")); in TEST() 185 EXPECT_EQ(adapter.GetMethodName(func_ret_u64), std::string("func_ret_u64")); in TEST() 186 EXPECT_EQ(adapter.GetMethodName(func_ret_i16), std::string("func_ret_i16")); in TEST() 187 EXPECT_EQ(adapter.GetMethodName(main), std::string("main")); in TEST() 232 EXPECT_EQ(adapter.GetMethodName(store_to_static), std::string("store_to_static")); in TEST()
|
/arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/ |
H A D | runtime_adapter_test.cpp | 108 EXPECT_EQ(adapter.GetMethodName(main), std::string("main")); in TEST() 141 EXPECT_EQ(adapter.GetMethodName(main), std::string("main")); in TEST() 142 EXPECT_EQ(adapter.GetMethodName(ctor), std::string(".ctor")); in TEST() 185 EXPECT_EQ(adapter.GetMethodName(funcRetU64), std::string("func_ret_u64")); in TEST() 186 EXPECT_EQ(adapter.GetMethodName(funcRetI16), std::string("func_ret_i16")); in TEST() 187 EXPECT_EQ(adapter.GetMethodName(main), std::string("main")); in TEST() 232 EXPECT_EQ(adapter.GetMethodName(storeToStatic), std::string("store_to_static")); in TEST()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | method.cpp | 33 const char *Method::GetMethodName() const in GetMethodName() function in panda::ecmascript::Method 36 return MethodLiteral::GetMethodName(jsPandaFile, GetMethodId()); in GetMethodName() 39 const char *Method::GetMethodName(const JSPandaFile *file) const in GetMethodName() function in panda::ecmascript::Method 41 return MethodLiteral::GetMethodName(file, GetMethodId()); in GetMethodName()
|
/arkcompiler/ets_runtime/ecmascript/jit/ |
H A D | jit_task.cpp | 96 LOG_JIT(DEBUG) << "[OSR] Empty profile for installing code:" << GetMethodName(); in InstallOsrCode() 110 LOG_JIT(DEBUG) << "[OSR] Install machine code:" << GetMethodName() in InstallOsrCode() 123 LOG_JIT(DEBUG) << "[OSR] Install machine code:" << GetMethodName() in InstallOsrCode() 231 const char *filename = method->GetMethodName(); in DumpJitCode() 321 LOG_JIT(DEBUG) <<"Install fast jit machine code:" << GetMethodName() << ", code range:" << in InstallCodeByCompilerTier() 325 if (profMap.find(GetMethodName()) != profMap.end()) { in InstallCodeByCompilerTier() 326 profMap[GetMethodName()] = true; in InstallCodeByCompilerTier() 333 LOG_BASELINEJIT(DEBUG) <<"Install baseline jit machine code:" << GetMethodName(); in InstallCodeByCompilerTier() 399 CString info = "compile method:" + jitTask_->GetMethodName(); in Run()
|
H A D | jit_dfx.cpp | 100 CString methodInfo = method->GetRecordNameStr() + "." + CString(method->GetMethodName()); in DumpBytecodeInst() 134 CString methodInfo = method->GetRecordNameStr() + "." + CString(method->GetMethodName()); in TraceJitCode()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ |
H A D | pass_manager.cpp | 91 << GetGraph()->GetRuntime()->GetMethodName(GetGraph()->GetMethod()); in GetFileName() 137 << GetGraph()->GetRuntime()->GetMethodName(GetGraph()->GetMethod()) << "\"\n"; in InitialDumpVisualizerGraph() 139 << GetGraph()->GetRuntime()->GetMethodName(GetGraph()->GetMethod()) << "\"\n"; in InitialDumpVisualizerGraph()
|
/arkcompiler/runtime_core/static_core/abc2program/ |
H A D | abc_method_processor.h | 27 void GetMethodName();
|
H A D | abc_method_processor.cpp | 39 GetMethodName(); in FillFunction() 53 void AbcMethodProcessor::GetMethodName() in GetMethodName() function in ark::abc2program::AbcMethodProcessor
|
/arkcompiler/runtime_core/static_core/compiler/ |
H A D | compile_method.cpp | 192 LOG(DEBUG, COMPILER) << "The method " << compilerCtx.GetMethodName() << " is compiled"; in RunOptimizations() 199 EndCompilation(EventCompilationArgs {compilerCtx.GetMethodName(), compilerCtx.IsOsr(), in RunOptimizations() 226 auto &name = compilerCtx.GetMethodName(); in CheckCompilation() 269 auto &methodName = taskCtx.GetMethodName(); in JITCompileMethod() 323 auto &methodName = taskCtx.GetMethodName(); in CompileInGraph()
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/tests/ |
H A D | pgo_profiler_test.cpp | 321 methodLiterals[idx]->GetMethodName(pf_.get(), methodLiterals[idx]->GetMethodId()), in HWTEST_F_L0() 375 methodLiterals[idx]->GetMethodName(pf_.get(), methodLiterals[idx]->GetMethodId()), in HWTEST_F_L0() 378 methodLiterals[idx]->GetMethodName(pf_.get(), methodLiterals[idx]->GetMethodId()), in HWTEST_F_L0() 643 methodLiterals[i]->GetMethodName(pf_.get(), methodId), methodId); in HWTEST_F_L0() 748 auto methodName = methodLiteral->GetMethodName(pf_.get(), methodId); in HWTEST_F_L0() 780 auto methodName = methodLiteral->GetMethodName(pf_.get(), methodId); in HWTEST_F_L0() 819 auto methodName = methodLiteral->GetMethodName(pf_.get(), methodId); in HWTEST_F_L0() 834 auto className = MethodLiteral::GetMethodName(jsPandaFile.get(), classId); in HWTEST_F_L0() 837 auto superClassName = MethodLiteral::GetMethodName(jsPandaFile.get(), superClassId); in HWTEST_F_L0() 841 auto superClassName = MethodLiteral::GetMethodName(jsPandaFil in HWTEST_F_L0() [all...] |
/arkcompiler/ets_runtime/ecmascript/jspandafile/ |
H A D | method_literal.cpp | 123 CString methodName(GetMethodName(jsPandaFile, methodId)); in ParseFunctionNameToCString() 137 const char* MethodLiteral::GetMethodName(const JSPandaFile* jsPandaFile, EntityId methodId, bool cpuProfiler) in GetMethodName() function in panda::ecmascript::MethodLiteral 152 return const_cast<JSPandaFile*>(jsPandaFile)->GetMethodName(methodId); in GetMethodNameView()
|
/arkcompiler/runtime_core/bytecode_optimizer/ |
H A D | runtime_adapter.h | 134 std::string GetMethodName(MethodPtr method) const override 146 auto method_name = GetMethodName(method);
|