Home
last modified time | relevance | path

Searched refs:funcProfData (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/src/
Dprofile.cpp135 funcProfData.insert( in ParseFunc()
401 if (funcProfData.empty()) { in CheckFuncHot()
405 auto iter = funcProfData.find(funcName); in CheckFuncHot()
406 if (iter == funcProfData.end()) { in CheckFuncHot()
414 for (auto &item : funcProfData) { in CheckFuncHot()
520 return funcProfData; in GetFunctionProf()
589 for (const auto &item : funcProfData) { in Dump()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dmir_function.h1513 funcProfData = data; in SetFuncProfData()
1517 return funcProfData; in GetFuncProfData()
1521 return funcProfData; in GetFuncProfData()
1525 DEBUG_ASSERT((funcProfData != nullptr && freq > 0), "nullptr check"); in SetStmtFreq()
1526 funcProfData->SetStmtFreq(stmtID, static_cast<int64_t>(freq)); in SetStmtFreq()
1636 GcovFuncInfo *funcProfData = nullptr; variable
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
Dprofile.h104 std::unordered_map<std::string, Profile::FuncItem> funcProfData; variable