Home
last modified time | relevance | path

Searched refs:hasProfile (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/bolt/lib/Passes/
H A DReorderFunctions.cpp271 if (!BF.hasProfile()) in runOnFunctions()
311 return !A->hasProfile() && in runOnFunctions()
312 (B->hasProfile() || in runOnFunctions()
316 if (BF->hasProfile()) in runOnFunctions()
H A DCacheMetrics.cpp69 if (!BF->hasProfile()) in calcTSPScore()
94 if (!BF->hasProfile()) in calcExtTSPScore()
264 if (BF->hasProfile()) in printAll()
H A DBinaryPasses.cpp1164 if (BB->hasProfile()) in simplifyRODataLoads()
1169 if (BB->hasProfile()) in simplifyRODataLoads()
1340 if (Function.hasProfile()) in runOnFunctions()
1354 if (!Function.hasProfile()) in runOnFunctions()
H A DIndirectCallPromotion.cpp1162 !Function.hasProfile()) in runOnFunctions()
1222 if (!Function.isSimple() || Function.isIgnored() || !Function.hasProfile()) in runOnFunctions()
/llvm-project-15.0.7/bolt/lib/Profile/
H A DYAMLProfileWriter.cpp174 if (BF.hasProfile() && !BF.empty()) { in writeProfile()
188 if (BF.hasProfile()) { in writeProfile()
H A DDataAggregator.cpp952 if (!BF.hasProfile()) in recordEntry()
976 if (!BF.hasProfile()) in recordExit()
/llvm-project-15.0.7/bolt/include/bolt/Core/
H A DBinaryBasicBlock.h647 bool hasProfile() const { return ExecutionCount != COUNT_NO_PROFILE; } in hasProfile() function
658 return !hasProfile() ? 0 : ExecutionCount; in getKnownExecutionCount()
H A DBinaryFunction.h1608 bool hasProfile() const { return ExecutionCount != COUNT_NO_PROFILE; } in hasProfile() function
/llvm-project-15.0.7/bolt/lib/Core/
H A DBinaryEmitter.cpp744 HotSection = BF.hasProfile() ? ReadOnlySection : ReadOnlyColdSection; in emitJumpTables()