Home
last modified time | relevance | path

Searched refs:GetMethodName (Results 1 - 25 of 103) sorted by relevance

12345

/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dpass.h139 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 Dnumber_speculative_runner.cpp36 << "[" << GetMethodName() << "]" in Run()
54 << "[" << GetMethodName() << "]" in Run()
85 << "[" << GetMethodName() << "]" in Run()
105 << "[" << GetMethodName() << "]" in Run()
119 << "[" << GetMethodName() << "]" in Run()
H A Duseless_gate_elimination.cpp77 std::string UselessGateElimination::GetMethodName() in GetMethodName() function in panda::ecmascript::kungfu::UselessGateElimination
92 << "[" << GetMethodName() << "]" in Run()
H A Dir_module.cpp26 std::string name = MethodLiteral::GetMethodName(jsPandaFile, methodLiteral->GetMethodId()); in GetFuncName()
H A Dnumber_speculative_runner.h41 const std::string& GetMethodName() const in GetMethodName() function in panda::ecmascript::kungfu::NumberSpeculativeRunner
H A Dstub.h37 const std::string &GetMethodName() const in GetMethodName() function in panda::ecmascript::kungfu::Stub
H A Duseless_gate_elimination.h36 std::string GetMethodName();
H A Dstate_split_linearizer.h43 const std::string& GetMethodName() const in GetMethodName() function in panda::ecmascript::kungfu::StateSplitLinearizer
H A Dcompilation_driver.h77 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 Dasync_function_lowering.h40 const std::string& GetMethodName() const in GetMethodName() function in panda::ecmascript::kungfu::AsyncFunctionLowering
H A Dinduction_variable_analysis.h44 const std::string& GetMethodName() const in GetMethodName() function in panda::ecmascript::kungfu::InductionVariableAnalysis
H A Dloop_peeling.h50 std::string GetMethodName() const in GetMethodName() function in panda::ecmascript::kungfu::LoopPeeling
H A Dstub_compiler.cpp74 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 Druntime_adapter_test.cpp108 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 Druntime_adapter_test.cpp108 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 Dmethod.cpp33 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 Djit_task.cpp96 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 Djit_dfx.cpp100 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 Dpass_manager.cpp91 << 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 Dabc_method_processor.h27 void GetMethodName();
H A Dabc_method_processor.cpp39 GetMethodName(); in FillFunction()
53 void AbcMethodProcessor::GetMethodName() in GetMethodName() function in ark::abc2program::AbcMethodProcessor
/arkcompiler/runtime_core/static_core/compiler/
H A Dcompile_method.cpp192 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 Dpgo_profiler_test.cpp321 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 Dmethod_literal.cpp123 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 Druntime_adapter.h134 std::string GetMethodName(MethodPtr method) const override
146 auto method_name = GetMethodName(method);

Completed in 12 milliseconds

12345