Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DInstruction.h712 getNextNonDebugInstruction(bool SkipPseudoOp = false) const;
713 Instruction *getNextNonDebugInstruction(bool SkipPseudoOp = false) {
715 static_cast<const Instruction *>(this)->getNextNonDebugInstruction(
/openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp2348 Instruction *Next = II->getNextNonDebugInstruction(); in visitCallInst()
2491 Instruction *NextInst = II->getNextNonDebugInstruction(); in visitCallInst()
2496 NextInst = NextInst->getNextNonDebugInstruction(); in visitCallInst()
2506 Instruction *MoveI = II->getNextNonDebugInstruction(); in visitCallInst()
2509 MoveI = MoveI->getNextNonDebugInstruction(); in visitCallInst()
2874 auto *NFI = dyn_cast<FenceInst>(FI.getNextNonDebugInstruction()); in visitFenceInst()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DIROutliner.cpp275 EndInst != BackInst->getNextNonDebugInstruction()) in splitCandidate()
2356 NextModuleInst = ID.Inst->getNextNonDebugInstruction(); in nextIRInstructionDataMatchesNextInst()
2383 Region.Candidate->backInstruction()->getNextNonDebugInstruction(); in isCompatibleWithAlreadyOutlinedCode()
H A DGlobalOpt.cpp1910 Builder.SetInsertPoint(NewCB->getNextNonDebugInstruction()); in RemovePreallocated()
1935 auto *InsertBefore = PreallocatedSetup->getNextNonDebugInstruction(); in RemovePreallocated()
H A DAttributorAttributes.cpp1681 FromI = FromI->getNextNonDebugInstruction(); in updateImpl()
1692 if (IsImpactedInRange(LoadI->getNextNonDebugInstruction(), &IntrI)) in updateImpl()
1707 if (IsImpactedInRange(LoadI->getNextNonDebugInstruction(), in updateImpl()
H A DAttributor.cpp711 Instruction *Inst = CB->getNextNonDebugInstruction(); in isPotentiallyReachable()
H A DOpenMPOpt.cpp2705 } while ((CurI = CurI->getNextNonDebugInstruction())); in isExecutedInAlignedRegion()
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DInstruction.cpp786 Instruction::getNextNonDebugInstruction(bool SkipPseudoOp) const { in getNextNonDebugInstruction() function in Instruction
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DLocal.cpp2083 bool DomPointAfterFrom = From.getNextNonDebugInstruction() == &DomPoint; in rewriteDebugUsers()
2088 if (DomPointAfterFrom && DII->getNextNonDebugInstruction() == &DomPoint) { in rewriteDebugUsers()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp3071 Instruction *Start = InsBefore.getNextNonDebugInstruction(); in findStoresToUninstrumentedArgAllocas()
3072 for (Instruction *It = Start; It; It = It->getNextNonDebugInstruction()) { in findStoresToUninstrumentedArgAllocas()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2530 if (Cond->getNextNonDebugInstruction() != TermBr) { in OptimizeLoopTermCond()