Home
last modified time | relevance | path

Searched refs:GetMethodName (Results 1 – 25 of 73) sorted by relevance

123

/arkcompiler/ets_runtime/ecmascript/compiler/
Dpass.h114 const std::string& GetMethodName() const in GetMethodName() function
240 …TimeScope timescope("TypeInferPass", data->GetMethodName(), data->GetMethodOffset(), data->GetLog(… in Run()
249 data->GetMethodName(), enableLog); in Run()
261 …TimeScope timescope("PGOTypeInferPass", data->GetMethodName(), data->GetMethodOffset(), data->GetL… in Run()
265 data->GetMethodName(), &chunk, enableLog); in Run()
275 …TimeScope timescope("TSClassAnalysisPass", data->GetMethodName(), data->GetMethodOffset(), data->G… in Run()
290 …TimeScope timescope("TSHCRLoweringPass", data->GetMethodName(), data->GetMethodOffset(), data->Get… in Run()
294 enableLog, enableTypeLog, data->GetMethodName()); in Run()
311 …TimeScope timescope("NTypeHCRLoweringPass", data->GetMethodName(), data->GetMethodOffset(), data->… in Run()
314 data->GetTSManager(), data->GetRecordName(), enableLog, data->GetMethodName()); in Run()
[all …]
Dnumber_speculative_runner.cpp32 << "[" << GetMethodName() << "]" in Run()
49 << "[" << GetMethodName() << "]" in Run()
65 << "[" << GetMethodName() << "]" in Run()
79 << "[" << GetMethodName() << "]" in Run()
Dstub.h37 const std::string &GetMethodName() const in GetMethodName() function
Dstate_split_linearizer.h43 const std::string& GetMethodName() const in GetMethodName() function
Dnumber_speculative_runner.h40 const std::string& GetMethodName() const in GetMethodName() function
Dloop_peeling.h46 std::string GetMethodName() const in GetMethodName() function
Dvalue_numbering.h43 const std::string& GetMethodName() const in GetMethodName() function
Dlater_elimination.h45 const std::string& GetMethodName() const in GetMethodName() function
Dntype_hcr_lowering.h69 const std::string& GetMethodName() const in GetMethodName() function
Dasync_function_lowering.h43 const std::string& GetMethodName() const in GetMethodName() function
Dcode_generator.h54 const std::string& GetMethodName() const in GetMethodName() function
Dstub_compiler.cpp74 LOG_COMPILER(INFO) << "Stub Name: " << stub->GetMethodName(); in Run()
108 log->SetStubLog(stub.GetMethodName(), GetLogList()); in RunPipeline()
Dntype_mcr_lowering.h70 const std::string& GetMethodName() const in GetMethodName() function
Dvalue_numbering.cpp26 << "[" << GetMethodName() << "]" in Run()
Dstate_split_linearizer.cpp30 << "[" << GetMethodName() << "]" in Run()
46 << "[" << GetMethodName() << "]" in Run()
/arkcompiler/ets_runtime/ecmascript/
Dmethod.cpp28 const char *Method::GetMethodName() const in GetMethodName() function in panda::ecmascript::Method
31 return MethodLiteral::GetMethodName(jsPandaFile, GetMethodId()); in GetMethodName()
34 const char *Method::GetMethodName(const JSPandaFile *file) const in GetMethodName() function in panda::ecmascript::Method
36 return MethodLiteral::GetMethodName(file, GetMethodId()); in GetMethodName()
/arkcompiler/runtime_core/bytecode_optimizer/tests/
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/ets_runtime/ecmascript/jspandafile/
Dmethod_literal.cpp90 std::string methodName(GetMethodName(jsPandaFile, methodId)); in ParseFunctionName()
99 const char *MethodLiteral::GetMethodName(const JSPandaFile *jsPandaFile, EntityId methodId) in GetMethodName() function in panda::ecmascript::MethodLiteral
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/tests/
Dpgo_profiler_test.cpp212 … methodLiterals[idx]->GetMethodName(pf.get(), methodLiterals[idx]->GetMethodId()), in HWTEST_F_L0()
273 … methodLiterals[idx]->GetMethodName(pf.get(), methodLiterals[idx]->GetMethodId()), in HWTEST_F_L0()
276 … methodLiterals[idx]->GetMethodName(pf.get(), methodLiterals[idx]->GetMethodId()), in HWTEST_F_L0()
542 …loader.MatchAndMarkMethod(expectRecordName, methodLiterals[i]->GetMethodName(pf.get(), methodId), … in HWTEST_F_L0()
683 auto methodName = methodLiteral->GetMethodName(jsPandaFile.get(), methodId); in HWTEST_F_L0()
715 auto methodName = methodLiteral->GetMethodName(jsPandaFile.get(), methodId); in HWTEST_F_L0()
754 auto methodName = methodLiteral->GetMethodName(jsPandaFile.get(), methodId); in HWTEST_F_L0()
770 auto className = MethodLiteral::GetMethodName(jsPandaFile.get(), classId); in HWTEST_F_L0()
773 … auto superClassName = MethodLiteral::GetMethodName(jsPandaFile.get(), superClassId); in HWTEST_F_L0()
781 … auto superClassName = MethodLiteral::GetMethodName(jsPandaFile.get(), superClassId); in HWTEST_F_L0()
[all …]
/arkcompiler/ets_runtime/ecmascript/patch/
Dpatch_loader.cpp87 CString mainMethodName = MethodLiteral::GetMethodName(patchFile, mainMethodId); in ExecutePatchMain()
187 << ":" << patchMethod->GetMethodName(); in UnloadPatchInternal()
311 CString baseMethodName = MethodLiteral::GetMethodName(baseFile, baseMethodId); in FindSameMethod()
337 CString methodName = MethodLiteral::GetMethodName(patchFile, methodId); in GeneratePatchInfo()
/arkcompiler/ets_runtime/ecmascript/compiler/type_inference/
Dinitialization_analysis.h49 inline const std::string &GetMethodName() const in GetMethodName() function
Dpgo_type_infer.h52 inline const std::string &GetMethodName() const in GetMethodName() function
/arkcompiler/runtime_core/bytecode_optimizer/
Druntime_adapter.h131 std::string GetMethodName(MethodPtr method) const override in GetMethodName() function
143 auto method_name = GetMethodName(method); in GetMethodFullName()
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler_decoder.h88 … const auto *methodName = MethodLiteral::GetMethodName(jsPandaFile, methodLiteral->GetMethodId()); in GetTypeInfo()
Dpgo_profiler_info.cpp282 text += GetMethodName(); in ProcessToText()
626 CString methodName = jsMethod->GetMethodName(); in AddMethod()
632 …auto checksum = PGOMethodInfo::CalcChecksum(jsMethod->GetMethodName(), jsMethod->GetBytecodeArray(… in AddMethod()
695 size_t len = strlen(fromMethodInfo->GetMethodName()); in Merge()
699 …dId, fromMethodInfo->GetCount(), fromMethodInfo->GetSampleMode(), fromMethodInfo->GetMethodName()); in Merge()
746 << ELEMENT_SEPARATOR << info->GetMethodName(); in ParseFromBinary()
768 << ELEMENT_SEPARATOR << iter->second->GetMethodName(); in ProcessToBinary()
922 auto ret = methodInfoMap_.try_emplace(info->GetMethodName(), chunk_); in ParseFromBinary()
927 << ELEMENT_SEPARATOR << info->GetMethodName(); in ParseFromBinary()

123