| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | ValueProfilePlugins.inc | 105 Instruction *InsertPt = I->getNextNonDebugInstruction(); 110 InsertPt = InsertPt->getNextNonDebugInstruction();
|
| H A D | HWAddressSanitizer.cpp | 1424 IRBuilder<> IRB(LP->getNextNonDebugInstruction()); in instrumentLandingPads() 1449 IRBuilder<> IRB(AI->getNextNonDebugInstruction()); in instrumentStack()
|
| H A D | AddressSanitizer.cpp | 3399 Instruction *Start = InsBefore.getNextNonDebugInstruction(); in findStoresToUninstrumentedArgAllocas() 3400 for (Instruction *It = Start; It; It = It->getNextNonDebugInstruction()) { in findStoresToUninstrumentedArgAllocas()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| H A D | LockstepReverseIterator.h | 136 Instruction *Next = Inst->getNextNonDebugInstruction();
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Instruction.h | 905 getNextNonDebugInstruction(bool SkipPseudoOp = false) const; 906 Instruction *getNextNonDebugInstruction(bool SkipPseudoOp = false) { 908 static_cast<const Instruction *>(this)->getNextNonDebugInstruction(
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86WinEHState.cpp | 814 IRBuilder<> Builder(Alloca->getNextNonDebugInstruction()); in updateEspForInAllocas() 823 IRBuilder<> Builder(II->getNextNonDebugInstruction()); in updateEspForInAllocas()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/ |
| H A D | DXILDataScalarization.cpp | 205 Builder.SetInsertPoint(Instr->getNextNonDebugInstruction()); in createArrayFromVector()
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Instruction.cpp | 1239 Instruction::getNextNonDebugInstruction(bool SkipPseudoOp) const { in getNextNonDebugInstruction() function in Instruction 1256 if (const Instruction *Next = getNextNonDebugInstruction()) in getStableDebugLoc()
|
| H A D | Verifier.cpp | 6547 auto *Next = Call.getNextNonDebugInstruction(); in visitIntrinsicCall()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | Local.cpp | 2663 bool DomPointAfterFrom = From.getNextNonDebugInstruction() == &DomPoint; in rewriteDebugUsers() 2668 if (DomPointAfterFrom && DII->getNextNonDebugInstruction() == &DomPoint) { in rewriteDebugUsers() 2686 NextNonDebug = NextNonDebug->getNextNonDebugInstruction(); in rewriteDebugUsers() 3073 if (!isa<UnreachableInst>(CI->getNextNonDebugInstruction())) { in markAliveBlocks() 3075 changeToUnreachable(CI->getNextNonDebugInstruction(), false, DTU); in markAliveBlocks()
|
| H A D | ScalarEvolutionExpander.cpp | 1685 IP = OrigInc->getNextNonDebugInstruction()->getIterator(); in replaceCongruentIVInc()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCalls.cpp | 3301 Instruction *Next = II->getNextNonDebugInstruction(); in visitCallInst() 3474 Instruction *NextInst = II->getNextNonDebugInstruction(); in visitCallInst() 3479 NextInst = NextInst->getNextNonDebugInstruction(); in visitCallInst() 3489 Instruction *MoveI = II->getNextNonDebugInstruction(); in visitCallInst() 3492 MoveI = MoveI->getNextNonDebugInstruction(); in visitCallInst() 3916 auto *NFI = dyn_cast<FenceInst>(FI.getNextNonDebugInstruction()); in visitFenceInst()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | IROutliner.cpp | 271 EndInst != BackInst->getNextNonDebugInstruction()) in splitCandidate() 2329 NextModuleInst = ID.Inst->getNextNonDebugInstruction(); in nextIRInstructionDataMatchesNextInst() 2356 Region.Candidate->backInstruction()->getNextNonDebugInstruction(); in isCompatibleWithAlreadyOutlinedCode()
|
| H A D | GlobalOpt.cpp | 1881 Builder.SetInsertPoint(NewCB->getNextNonDebugInstruction()); in RemovePreallocated() 1905 auto *InsertBefore = PreallocatedSetup->getNextNonDebugInstruction(); in RemovePreallocated()
|
| H A D | Attributor.cpp | 796 Instruction *Inst = CB->getNextNonDebugInstruction(); in isPotentiallyReachable()
|
| H A D | AttributorAttributes.cpp | 1779 FromI = FromI->getNextNonDebugInstruction(); in updateImpl() 1790 if (IsImpactedInRange(LoadI->getNextNonDebugInstruction(), &IntrI)) in updateImpl() 1807 if (IsImpactedInRange(LoadI->getNextNonDebugInstruction(), in updateImpl()
|
| H A D | OpenMPOpt.cpp | 2859 } while ((CurI = CurI->getNextNonDebugInstruction())); in isExecutedInAlignedRegion()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | MemCpyOptimizer.cpp | 733 BBI = SI->getNextNonDebugInstruction()->getIterator(); in processStoreOfLoad() 1866 BBI = M->getNextNonDebugInstruction()->getIterator(); in processMemCpy()
|
| H A D | LoopStrengthReduce.cpp | 2708 if (Cond->getNextNonDebugInstruction() != TermBr) { in OptimizeLoopTermCond()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/ |
| H A D | CoroSplit.cpp | 811 if (!ActiveSuspend->getNextNonDebugInstruction()) { in updateScopeLine() 819 ActiveSuspend->getNextNonDebugInstruction()->getIterator(); in updateScopeLine()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | MemoryDependenceAnalysis.cpp | 356 for (const Instruction *I = LI; I != SI; I = I->getNextNonDebugInstruction()) in canSkipClobberingStore()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGBlocks.cpp | 1587 if (entry_ptr->getNextNonDebugInstruction()) in GenerateBlockFunction() 1588 entry_ptr = entry_ptr->getNextNonDebugInstruction()->getIterator(); in GenerateBlockFunction()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64TargetTransformInfo.cpp | 2677 auto *NI = II.getNextNonDebugInstruction(); in instCombineDMB() 2684 NI = NI->getNextNonDebugInstruction(); in instCombineDMB()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | SLPVectorizer.cpp | 16229 LastInst->getNextNonDebugInstruction()->getIterator()); in setInsertPointAfterBundle() 18981 Builder.SetInsertPoint(IVec->getNextNonDebugInstruction()); in vectorizeTree() 19959 if (PickedInst->getNextNonDebugInstruction() != LastScheduledInst) in scheduleBlock() 19968 if (PickedInst->getNextNonDebugInstruction() != LastScheduledInst) in scheduleBlock()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | CodeGenPrepare.cpp | 7335 IRBuilder<> Builder(Load->getNextNonDebugInstruction()); in optimizeLoadExt()
|