Home
last modified time | relevance | path

Searched refs:BBExecCount (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/bolt/lib/Core/
H A DBinaryFunctionProfile.cpp279 const uint64_t BBExecCount = BB->getExecutionCount(); in inferFallThroughCounts() local
315 if (BBExecCount > TotalReportedJumps) in inferFallThroughCounts()
316 Inferred = BBExecCount - TotalReportedJumps; in inferFallThroughCounts()
319 if (BBExecCount < TotalReportedJumps) dbgs() in inferFallThroughCounts()
322 << BBExecCount << " < " << ReportedBranches in inferFallThroughCounts()
H A DBinaryFunction.cpp523 uint64_t BBExecCount = BB->getExecutionCount(); in print() local
527 OS << BBExecCount << '\n'; in print()
2314 uint64_t BBExecCount = BB.getExecutionCount(); in getFunctionScore() local
2315 if (BBExecCount == BinaryBasicBlock::COUNT_NO_PROFILE) in getFunctionScore()
2317 TotalScore += BBExecCount * BB.getNumNonPseudos(); in getFunctionScore()
/llvm-project-15.0.7/bolt/lib/Passes/
H A DCMOVConversion.cpp189 uint64_t BBExecCount = BB->getKnownExecutionCount(); in runOnFunction() local
191 BBExecCount == 0 || // must be hot in runOnFunction()
227 Local.DynamicPossible += BBExecCount; in runOnFunction()
261 Local.DynamicPerformed += BBExecCount; in runOnFunction()
H A DShrinkWrapping.cpp1977 uint64_t BBExecCount = BB->getExecutionCount(); in perform() local
1978 if (!BBExecCount || BBExecCount == BinaryBasicBlock::COUNT_NO_PROFILE) in perform()
1984 TotalStoreInstrs += BBExecCount; in perform()
1985 TotalInstrs += BBExecCount; in perform()