Home
last modified time | relevance | path

Searched refs:instructionsWithoutDebug (Results 1 – 25 of 33) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DReachingDefAnalysis.cpp154 instructionsWithoutDebug(MBB->instr_begin(), MBB->instr_end()); in reprocessBasicBlock()
207 instructionsWithoutDebug(MBB->instr_begin(), MBB->instr_end())) in processBasicBlock()
359 instructionsWithoutDebug(MBB->instr_begin(), MBB->instr_end())) { in getLiveInUses()
482 instructionsWithoutDebug(MBB->instr_rbegin(), MBB->instr_rend())) { in isRegUsedAfter()
H A DMachineBasicBlock.cpp1749 auto R = instructionsWithoutDebug(begin(), end()); in sizeWithoutDebugLargerThan()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DSpeculateAnalyses.cpp37 llvm::any_of(BB.instructionsWithoutDebug(), findCallInst)) in findBBwithCalls()
60 for (auto &I : BB->instructionsWithoutDebug()) in findCalles()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-sim/
H A Dllvm-sim.cpp132 for (Instruction &I : BB.instructionsWithoutDebug()) in main()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DBasicBlock.cpp286 BasicBlock::instructionsWithoutDebug(bool SkipPseudoOp) const { in instructionsWithoutDebug() function in BasicBlock
296 BasicBlock::instructionsWithoutDebug(bool SkipPseudoOp) { in instructionsWithoutDebug() function in BasicBlock
307 return std::distance(instructionsWithoutDebug().begin(), in sizeWithoutDebug()
308 instructionsWithoutDebug().end()); in sizeWithoutDebug()
H A DFunction.cpp348 NumInstrs += std::distance(BB.instructionsWithoutDebug().begin(), in getInstructionCount()
349 BB.instructionsWithoutDebug().end()); in getInstructionCount()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64PostSelectOptimize.cpp200 for (auto &II : instructionsWithoutDebug(MBB.rbegin(), MBB.rend())) { in optimizeNZCVDefs()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DBasicBlock.h341 instructionsWithoutDebug(bool SkipPseudoOp = true) const;
348 instructionsWithoutDebug(bool SkipPseudoOp = true);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineSizeEstimatorAnalysis.cpp177 for (const auto &I : BB.instructionsWithoutDebug()) { in getFunctionFeatures()
H A DFunctionPropertiesAnalysis.cpp131 for (const Instruction &I : BB.instructionsWithoutDebug()) { in updateForBB()
H A DIRSimilarityIdentifier.cpp1090 : &*BB->instructionsWithoutDebug().begin(); in createCanonicalRelationFrom()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMergedLoadStoreMotion.cpp318 auto InstsNoDbg = Pred1->instructionsWithoutDebug(); in mergeStores()
H A DLoopInterchange.cpp960 for (Instruction &I : BB->instructionsWithoutDebug()) in canInterchangeLoops()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanHCFGBuilder.cpp286 for (Instruction &InstRef : BB->instructionsWithoutDebug(false)) { in createVPInstructionsForVPBB()
H A DLoopVectorize.cpp5294 for (Instruction &I : BB->instructionsWithoutDebug()) { in collectElementTypesForWidening()
5644 for (Instruction &I : BB->instructionsWithoutDebug()) { in calculateRegisterUsage()
5985 for (Instruction &I : BB->instructionsWithoutDebug()) { in expectedCost()
8756 for (Instruction &I : drop_end(BB->instructionsWithoutDebug(false))) { in tryToBuildVPlanWithVPRecipes()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64LoopIdiomTransform.cpp239 auto CondBBInsts = LoopBlocks[0]->instructionsWithoutDebug(); in recognizeByteCompare()
254 auto LoopBBInsts = LoopBlocks[1]->instructionsWithoutDebug(); in recognizeByteCompare()
H A DAArch64CollectLOH.cpp556 instructionsWithoutDebug(MBB.instr_rbegin(), MBB.instr_rend())) { in runOnMachineFunction()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DHotColdSplitting.cpp276 for (Instruction &I : BB->instructionsWithoutDebug()) in getOutliningBenefit()
H A DMergeFunctions.cpp383 for (const Instruction &I : BB.instructionsWithoutDebug()) { in hasDistinctMetadataIntrinsic()
H A DPartialInlining.cpp809 for (Instruction &I : BB->instructionsWithoutDebug()) { in computeBBInlineCost()
H A DFunctionAttrs.cpp1674 for (auto &I : BB.instructionsWithoutDebug()) in addNoRecurseAttrs()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopSimplify.cpp645 for (auto I = ExitingBlock->instructionsWithoutDebug().begin(); &*I != BI; ) { in simplifyOneLoop()
H A DSimplifyCFG.cpp2808 for (Instruction &CurI : reverse(BrBB->instructionsWithoutDebug(true))) { in isSafeToSpeculateStore()
3193 for (Instruction &I : reverse(BB->instructionsWithoutDebug(false))) { in BlockIsSimpleEnoughToThreadThrough()
4061 for (auto &I : BB->instructionsWithoutDebug(false)) { in mergeConditionalStoreToAddress()
4362 if (&*BB->instructionsWithoutDebug(false).begin() != BI) in SimplifyCondBranchToCondBranch()
5824 for (Instruction &I : CaseDest->instructionsWithoutDebug(false)) { in getCaseResults()
7018 if (SI == &*BB->instructionsWithoutDebug(false).begin()) in simplifySwitch()
7282 auto I = BB->instructionsWithoutDebug(true).begin(); in simplifyCondBranch()
H A DCodeExtractor.cpp312 for (Instruction &II : BB.instructionsWithoutDebug()) in CodeExtractorAnalysisCache()
321 for (Instruction &II : BB.instructionsWithoutDebug()) { in findSideEffectInfoForBlock()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineBasicBlock.h1374 inline auto instructionsWithoutDebug(IterT It, IterT End,

12