Home
last modified time | relevance | path

Searched refs:GetFuncProfData (Results 1 - 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
H A Dmir_lower.cpp132 if (GetFuncProfData()) { in CreateCondGotoStmt()
133 GetFuncProfData()->CopyStmtFreq(brStmt->GetStmtID(), ifStmt.GetStmtID()); in CreateCondGotoStmt()
151 if (GetFuncProfData()) { in CreateBrFalseStmt()
152 DEBUG_ASSERT(GetFuncProfData()->GetStmtFreq(ifStmt.GetThenPart()->GetStmtID()) >= 0, "sanity check"); in CreateBrFalseStmt()
153 int64_t freq = GetFuncProfData()->GetStmtFreq(ifStmt.GetStmtID()) - in CreateBrFalseStmt()
154 GetFuncProfData()->GetStmtFreq(ifStmt.GetThenPart()->GetStmtID()); in CreateBrFalseStmt()
155 GetFuncProfData()->SetStmtFreq(lableStmt->GetStmtID(), freq); in CreateBrFalseStmt()
166 if (GetFuncProfData()) { in CreateBrTrueStmt()
167 DEBUG_ASSERT(GetFuncProfData()->GetStmtFreq(ifStmt.GetElsePart()->GetStmtID()) >= 0, "sanity check"); in CreateBrTrueStmt()
168 int64_t freq = GetFuncProfData() in CreateBrTrueStmt()
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
H A Dmir_lower.h135 GcovFuncInfo *GetFuncProfData() in GetFuncProfData() function in maple::MIRLower
137 return mirFunc->GetFuncProfData(); in GetFuncProfData()
141 DEBUG_ASSERT(GetFuncProfData() != nullptr, "nullptr check"); in CopyStmtFrequency()
144 int64_t freq = GetFuncProfData()->GetStmtFreq(oldStmt->GetStmtID()); in CopyStmtFrequency()
145 GetFuncProfData()->SetStmtFreq(newStmt->GetStmtID(), freq); in CopyStmtFrequency()
H A Dmir_function.h1351 GcovFuncInfo *GetFuncProfData() in GetFuncProfData() function in maple::MIRFunction
1355 GcovFuncInfo *GetFuncProfData() const in GetFuncProfData() function in maple::MIRFunction

Completed in 4 milliseconds