Home
last modified time | relevance | path

Searched refs:isEntryPoint (Results 1 – 15 of 15) sorted by relevance

/llvm-project-15.0.7/bolt/lib/Passes/
H A DExtTSPReorderAlgorithm.cpp232 bool isEntryPoint() const { return IsEntry; } in isEntryPoint() function in llvm::bolt::Chain
660 if (SrcChain != DstChain && !DstChain->isEntryPoint() && in mergeColdChains()
747 if ((ChainPred->isEntryPoint() || ChainSucc->isEntryPoint()) && in computeMergeGain()
827 if (C1->isEntryPoint() != C2->isEntryPoint()) { in concatChains()
828 if (C1->isEntryPoint()) in concatChains()
830 if (C2->isEntryPoint()) in concatChains()
883 assert(Order[0]->isEntryPoint() && "Original entry point is not preserved"); in reorderBasicBlocks()
H A DStokeInfo.cpp120 assert(EntryBB.isEntryPoint() && "Weird, this should be the entry block!"); in checkFunction()
H A DInstrumentation.cpp273 !TargetBB->isEntryPoint()) { in instrumentOneTarget()
327 if ((*BBI)->isEntryPoint() || (*BBI)->isLandingPad()) { in instrumentFunction()
329 if (opts::InstrumentCalls && (*BBI)->isEntryPoint()) { in instrumentFunction()
H A DBinaryPasses.cpp260 if (BB.isEntryPoint() || BB.isLandingPad()) in runOnFunction()
737 BB.isEntryPoint()); in fixDoubleJumps()
798 return (BB->pred_size() != 0 || BB->isLandingPad() || BB->isEntryPoint()); in fixTailCalls()
1268 if (IncomingMap[&BB] < 100 || OutgoingMap[&BB] == 0 || BB.isEntryPoint()) in runOnFunctions()
H A DSplitFunctions.cpp236 if (BC.isAArch64() && BB->isEntryPoint()) { in splitFunction()
/llvm-project-15.0.7/bolt/lib/Core/
H A DBinaryBasicBlock.cpp34 bool BinaryBasicBlock::isEntryPoint() const { in isEntryPoint() function in llvm::bolt::BinaryBasicBlock
35 return getParent()->isEntryPoint(*this); in isEntryPoint()
H A DBinaryFunctionProfile.cpp83 if ((!BB->isEntryPoint() && !BB->isLandingPad()) || in postProcessProfile()
H A DBinaryFunction.cpp300 if (isEntryPoint(*BB) || BB->isLandingPad()) { in markUnreachableBlocks()
338 assert(!isEntryPoint(*BB) && "all entry blocks must be valid"); in eraseInvalidBBs()
513 if (isEntryPoint(*BB)) { in print()
3013 if (isEntryPoint(*BB)) in dumpGraph()
3504 [&](const BinaryBasicBlock *const BB) { return isEntryPoint(*BB); }); in dfs()
/llvm-project-15.0.7/bolt/include/bolt/Passes/
H A DStackPointerTracking.h37 if (BB.isEntryPoint()) in getStartingStateAtBB()
/llvm-project-15.0.7/bolt/lib/Profile/
H A DYAMLProfileWriter.cpp113 if (YamlBB.CallSites.empty() && !BB->isEntryPoint() && in convert()
H A DDataReader.cpp387 if (BB && (BB->isEntryPoint() || BB->isLandingPad())) { in readProfile()
493 if (BB->isEntryPoint()) { in fetchProfileForOtherEntryPoints()
605 if (I->second->isEntryPoint()) in readSampleData()
773 if (FromInstruction && ToBB->isEntryPoint() && in recordBranch()
H A DYAMLProfileReader.cpp125 if (BB.isEntryPoint()) in parseFunctionProfile()
H A DDataAggregator.cpp878 !FromBB->isEntryPoint() && !FromBB->isLandingPad()) { in recordTrace()
961 if (BB->isEntryPoint()) in recordEntry()
/llvm-project-15.0.7/bolt/include/bolt/Core/
H A DBinaryBasicBlock.h669 bool isEntryPoint() const;
H A DBinaryFunction.h1113 bool isEntryPoint(const BinaryBasicBlock &BB) const { in isEntryPoint() function