Home
last modified time | relevance | path

Searched refs:getNextNonDebugInstruction (Results 1 – 20 of 20) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DValueProfilePlugins.inc105 Instruction *InsertPt = I->getNextNonDebugInstruction();
110 InsertPt = InsertPt->getNextNonDebugInstruction();
H A DHWAddressSanitizer.cpp1404 IRBuilder<> IRB(LP->getNextNonDebugInstruction()); in instrumentLandingPads()
1429 IRBuilder<> IRB(AI->getNextNonDebugInstruction()); in instrumentStack()
H A DAddressSanitizer.cpp3344 Instruction *Start = InsBefore.getNextNonDebugInstruction(); in findStoresToUninstrumentedArgAllocas()
3345 for (Instruction *It = Start; It; It = It->getNextNonDebugInstruction()) { in findStoresToUninstrumentedArgAllocas()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.h851 getNextNonDebugInstruction(bool SkipPseudoOp = false) const;
852 Instruction *getNextNonDebugInstruction(bool SkipPseudoOp = false) {
854 static_cast<const Instruction *>(this)->getNextNonDebugInstruction(
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DInstruction.cpp1164 Instruction::getNextNonDebugInstruction(bool SkipPseudoOp) const { in getNextNonDebugInstruction() function in Instruction
1181 if (const Instruction *Next = getNextNonDebugInstruction()) in getStableDebugLoc()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp2622 bool DomPointAfterFrom = From.getNextNonDebugInstruction() == &DomPoint; in rewriteDebugUsers()
2627 if (DomPointAfterFrom && DII->getNextNonDebugInstruction() == &DomPoint) { in rewriteDebugUsers()
2645 NextNonDebug = NextNonDebug->getNextNonDebugInstruction(); in rewriteDebugUsers()
3033 if (!isa<UnreachableInst>(CI->getNextNonDebugInstruction())) { in markAliveBlocks()
3035 changeToUnreachable(CI->getNextNonDebugInstruction(), false, DTU); in markAliveBlocks()
H A DScalarEvolutionExpander.cpp1657 IP = OrigInc->getNextNonDebugInstruction()->getIterator(); in replaceCongruentIVInc()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp3006 Instruction *Next = II->getNextNonDebugInstruction(); in visitCallInst()
3177 Instruction *NextInst = II->getNextNonDebugInstruction(); in visitCallInst()
3182 NextInst = NextInst->getNextNonDebugInstruction(); in visitCallInst()
3192 Instruction *MoveI = II->getNextNonDebugInstruction(); in visitCallInst()
3195 MoveI = MoveI->getNextNonDebugInstruction(); in visitCallInst()
3631 auto *NFI = dyn_cast<FenceInst>(FI.getNextNonDebugInstruction()); in visitFenceInst()
H A DInstructionCombining.cpp4577 MoveBefore = MoveBefore->getNextNonDebugInstruction()->getIterator(); in freezeOtherUses()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DIROutliner.cpp270 EndInst != BackInst->getNextNonDebugInstruction()) in splitCandidate()
2352 NextModuleInst = ID.Inst->getNextNonDebugInstruction(); in nextIRInstructionDataMatchesNextInst()
2379 Region.Candidate->backInstruction()->getNextNonDebugInstruction(); in isCompatibleWithAlreadyOutlinedCode()
H A DGlobalOpt.cpp1879 Builder.SetInsertPoint(NewCB->getNextNonDebugInstruction()); in RemovePreallocated()
1903 auto *InsertBefore = PreallocatedSetup->getNextNonDebugInstruction(); in RemovePreallocated()
H A DAttributor.cpp795 Instruction *Inst = CB->getNextNonDebugInstruction(); in isPotentiallyReachable()
H A DAttributorAttributes.cpp1765 FromI = FromI->getNextNonDebugInstruction(); in updateImpl()
1776 if (IsImpactedInRange(LoadI->getNextNonDebugInstruction(), &IntrI)) in updateImpl()
1793 if (IsImpactedInRange(LoadI->getNextNonDebugInstruction(), in updateImpl()
H A DOpenMPOpt.cpp2856 } while ((CurI = CurI->getNextNonDebugInstruction())); in isExecutedInAlignedRegion()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp748 BBI = SI->getNextNonDebugInstruction()->getIterator(); in processStoreOfLoad()
1848 BBI = M->getNextNonDebugInstruction()->getIterator(); in processMemCpy()
H A DLoopStrengthReduce.cpp2719 if (Cond->getNextNonDebugInstruction() != TermBr) { in OptimizeLoopTermCond()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBlocks.cpp1555 if (entry_ptr->getNextNonDebugInstruction()) in GenerateBlockFunction()
1556 entry_ptr = entry_ptr->getNextNonDebugInstruction()->getIterator(); in GenerateBlockFunction()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp388 for (const Instruction *I = LI; I != SI; I = I->getNextNonDebugInstruction()) in canSkipClobberingStore()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp11590 LastInst->getNextNonDebugInstruction()->getIterator()); in setInsertPointAfterBundle()
14001 Builder.SetInsertPoint(IVec->getNextNonDebugInstruction()); in vectorizeTree()
15013 if (PickedInst->getNextNonDebugInstruction() != LastScheduledInst) in scheduleBlock()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp6943 IRBuilder<> Builder(Load->getNextNonDebugInstruction()); in optimizeLoadExt()