/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ReachingDefAnalysis.cpp | 154 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 D | MachineBasicBlock.cpp | 1777 auto R = instructionsWithoutDebug(begin(), end()); in sizeWithoutDebugLargerThan()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | SpeculateAnalyses.cpp | 37 llvm::any_of(BB.instructionsWithoutDebug(), findCallInst)) in findBBwithCalls() 60 for (auto &I : BB->instructionsWithoutDebug()) in findCalles()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | SSAContext.cpp |
|
H A D | BasicBlock.cpp | 248 BasicBlock::instructionsWithoutDebug(bool SkipPseudoOp) const { in instructionsWithoutDebug() function in BasicBlock 258 BasicBlock::instructionsWithoutDebug(bool SkipPseudoOp) { in instructionsWithoutDebug() function in BasicBlock 269 return std::distance(instructionsWithoutDebug().begin(), in sizeWithoutDebug() 270 instructionsWithoutDebug().end()); in sizeWithoutDebug()
|
H A D | Function.cpp | 369 NumInstrs += std::distance(BB.instructionsWithoutDebug().begin(), in getInstructionCount() 370 BB.instructionsWithoutDebug().end()); in getInstructionCount()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-sim/ |
H A D | llvm-sim.cpp | 132 for (Instruction &I : BB.instructionsWithoutDebug()) in main()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | BasicBlock.h | 342 instructionsWithoutDebug(bool SkipPseudoOp = true) const; 349 instructionsWithoutDebug(bool SkipPseudoOp = true);
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | InlineSizeEstimatorAnalysis.cpp | 176 for (const auto &I : BB.instructionsWithoutDebug()) { in getFunctionFeatures()
|
H A D | FunctionPropertiesAnalysis.cpp | 131 for (const Instruction &I : BB.instructionsWithoutDebug()) { in updateForBB()
|
H A D | IRSimilarityIdentifier.cpp | 1090 : &*BB->instructionsWithoutDebug().begin(); in createCanonicalRelationFrom()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
H A D | AArch64PostSelectOptimize.cpp | 266 for (auto &II : instructionsWithoutDebug(MBB.rbegin(), MBB.rend())) { in optimizeNZCVDefs()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | MergedLoadStoreMotion.cpp | 318 auto InstsNoDbg = Pred1->instructionsWithoutDebug(); in mergeStores()
|
H A D | LoopInterchange.cpp | 960 for (Instruction &I : BB->instructionsWithoutDebug()) in canInterchangeLoops()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | VPlanHCFGBuilder.cpp | 286 for (Instruction &InstRef : BB->instructionsWithoutDebug(false)) { in createVPInstructionsForVPBB()
|
H A D | LoopVectorize.cpp | 4787 for (Instruction &I : BB->instructionsWithoutDebug()) { in collectElementTypesForWidening() 5148 for (Instruction &I : BB->instructionsWithoutDebug()) { in calculateRegisterUsage() 5493 for (Instruction &I : BB->instructionsWithoutDebug()) { in expectedCost() 8554 for (Instruction &I : drop_end(BB->instructionsWithoutDebug(false))) { in tryToBuildVPlanWithVPRecipes()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64CollectLOH.cpp | 556 instructionsWithoutDebug(MBB.instr_rbegin(), MBB.instr_rend())) { in runOnMachineFunction()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | HotColdSplitting.cpp | 291 for (Instruction &I : BB->instructionsWithoutDebug()) in getOutliningBenefit()
|
H A D | MergeFunctions.cpp | 390 for (const Instruction &I : BB.instructionsWithoutDebug()) { in hasDistinctMetadataIntrinsic()
|
H A D | PartialInlining.cpp | 809 for (Instruction &I : BB->instructionsWithoutDebug()) { in computeBBInlineCost()
|
H A D | FunctionAttrs.cpp | 1695 for (auto &I : BB.instructionsWithoutDebug()) in addNoRecurseAttrs()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | LoopSimplify.cpp | 644 for (auto I = ExitingBlock->instructionsWithoutDebug().begin(); &*I != BI; ) { in simplifyOneLoop()
|
H A D | SimplifyCFG.cpp | 2866 for (Instruction &CurI : reverse(BrBB->instructionsWithoutDebug(true))) { in isSafeToSpeculateStore() 3255 for (Instruction &I : reverse(BB->instructionsWithoutDebug(false))) { in BlockIsSimpleEnoughToThreadThrough() 4129 for (auto &I : BB->instructionsWithoutDebug(false)) { in mergeConditionalStoreToAddress() 4430 if (&*BB->instructionsWithoutDebug(false).begin() != BI) in SimplifyCondBranchToCondBranch() 5919 for (Instruction &I : CaseDest->instructionsWithoutDebug(false)) { in getCaseResults() 7126 if (SI == &*BB->instructionsWithoutDebug(false).begin()) in simplifySwitch() 7479 auto I = BB->instructionsWithoutDebug(true).begin(); in simplifyCondBranch()
|
H A D | CodeExtractor.cpp | 312 for (Instruction &II : BB.instructionsWithoutDebug()) in CodeExtractorAnalysisCache() 321 for (Instruction &II : BB.instructionsWithoutDebug()) { in findSideEffectInfoForBlock()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | MachineBasicBlock.h | 1412 inline auto instructionsWithoutDebug(IterT It, IterT End,
|