Home
last modified time | relevance | path

Searched refs:hasCFG (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/bolt/include/bolt/Core/
H A DBinaryBasicBlock.h288 assert(hasCFG()); in predecessors()
292 assert(hasCFG()); in predecessors()
296 assert(hasCFG()); in successors()
300 assert(hasCFG()); in successors()
304 assert(hasCFG()); in throwers()
308 assert(hasCFG()); in throwers()
312 assert(hasCFG()); in landing_pads()
316 assert(hasCFG()); in landing_pads()
913 bool hasCFG() const;
H A DBinaryFunction.h1023 bool hasCFG() const { in hasCFG() function
1030 return getState() == State::Disassembled || hasCFG(); in hasInstructions()
/llvm-project-15.0.7/bolt/lib/Passes/
H A DFrameAnalysis.cpp399 if (!BF.isSimple() || !BF.hasCFG()) { in computeArgsAccessed()
551 if (!(I.second.isSimple() && I.second.hasCFG() && !I.second.isIgnored()) || in FrameAnalysis()
603 return !BF.isSimple() || !BF.hasCFG(); in clearSPTMap()
620 if (!BF.isSimple() || !BF.hasCFG()) in preComputeSPT()
639 return !BF.isSimple() || !BF.hasCFG(); in preComputeSPT()
H A DRegAnalysis.cpp199 if (!Func->isSimple() || !Func->hasCFG()) { in getFunctionUsedRegsList()
218 if (!Func->isSimple() || !Func->hasCFG()) { in getFunctionClobberList()
H A DAllocCombiner.cpp54 return Function.isSimple() && Function.hasCFG() && !Function.isIgnored(); in shouldProcess()
H A DIdenticalCodeFolding.cpp151 assert(A.hasCFG() && B.hasCFG() && "both functions should have CFG"); in isIdenticalWith()
/llvm-project-15.0.7/bolt/lib/Core/
H A DBinaryBasicBlock.cpp32 bool BinaryBasicBlock::hasCFG() const { return getParent()->hasCFG(); } in hasCFG() function in llvm::bolt::BinaryBasicBlock
H A DBinaryFunction.cpp450 if (hasCFG()) in print()
2890 if (hasCFG()) { in setIgnored()
3421 if (hasCFG()) { in getSymbolForEntryID()
3560 assert(hasCFG() && "function is expected to have CFG"); in computeHash()
/llvm-project-15.0.7/bolt/lib/Rewrite/
H A DBoltDiff.cpp209 if (opts::MatchByHash && Function.hasCFG()) in buildLookupMaps()
262 if (Match || !Function2.hasCFG()) in matchFunctions()
/llvm-project-15.0.7/bolt/lib/Profile/
H A DDataAggregator.cpp860 assert(BF.hasCFG() && "can only record traces in CFG state"); in recordTrace()