| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | pass.h | 114 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 …]
|
| D | number_speculative_runner.cpp | 32 << "[" << GetMethodName() << "]" in Run() 49 << "[" << GetMethodName() << "]" in Run() 65 << "[" << GetMethodName() << "]" in Run() 79 << "[" << GetMethodName() << "]" in Run()
|
| D | stub.h | 37 const std::string &GetMethodName() const in GetMethodName() function
|
| D | state_split_linearizer.h | 43 const std::string& GetMethodName() const in GetMethodName() function
|
| D | number_speculative_runner.h | 40 const std::string& GetMethodName() const in GetMethodName() function
|
| D | loop_peeling.h | 46 std::string GetMethodName() const in GetMethodName() function
|
| D | value_numbering.h | 43 const std::string& GetMethodName() const in GetMethodName() function
|
| D | later_elimination.h | 45 const std::string& GetMethodName() const in GetMethodName() function
|
| D | ntype_hcr_lowering.h | 69 const std::string& GetMethodName() const in GetMethodName() function
|
| D | async_function_lowering.h | 43 const std::string& GetMethodName() const in GetMethodName() function
|
| D | code_generator.h | 54 const std::string& GetMethodName() const in GetMethodName() function
|
| D | stub_compiler.cpp | 74 LOG_COMPILER(INFO) << "Stub Name: " << stub->GetMethodName(); in Run() 108 log->SetStubLog(stub.GetMethodName(), GetLogList()); in RunPipeline()
|
| D | ntype_mcr_lowering.h | 70 const std::string& GetMethodName() const in GetMethodName() function
|
| D | value_numbering.cpp | 26 << "[" << GetMethodName() << "]" in Run()
|
| D | state_split_linearizer.cpp | 30 << "[" << GetMethodName() << "]" in Run() 46 << "[" << GetMethodName() << "]" in Run()
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | method.cpp | 28 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/ |
| 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/ets_runtime/ecmascript/jspandafile/ |
| D | method_literal.cpp | 90 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/ |
| D | pgo_profiler_test.cpp | 212 … 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/ |
| D | patch_loader.cpp | 87 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/ |
| D | initialization_analysis.h | 49 inline const std::string &GetMethodName() const in GetMethodName() function
|
| D | pgo_type_infer.h | 52 inline const std::string &GetMethodName() const in GetMethodName() function
|
| /arkcompiler/runtime_core/bytecode_optimizer/ |
| D | runtime_adapter.h | 131 std::string GetMethodName(MethodPtr method) const override in GetMethodName() function 143 auto method_name = GetMethodName(method); in GetMethodFullName()
|
| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
| D | pgo_profiler_decoder.h | 88 … const auto *methodName = MethodLiteral::GetMethodName(jsPandaFile, methodLiteral->GetMethodId()); in GetTypeInfo()
|
| D | pgo_profiler_info.cpp | 282 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()
|