Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.h690 getNextNonDebugInstruction(bool SkipPseudoOp = false) const;
691 Instruction *getNextNonDebugInstruction(bool SkipPseudoOp = false) {
693 static_cast<const Instruction *>(this)->getNextNonDebugInstruction(
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp1645 if (SS->getNextNonDebugInstruction() == II) { in visitCallInst()
1720 Instruction *Next = II->getNextNonDebugInstruction(); in visitCallInst()
1863 Instruction *NextInst = II->getNextNonDebugInstruction(); in visitCallInst()
1868 NextInst = NextInst->getNextNonDebugInstruction(); in visitCallInst()
1878 Instruction *MoveI = II->getNextNonDebugInstruction(); in visitCallInst()
1881 MoveI = MoveI->getNextNonDebugInstruction(); in visitCallInst()
2075 Instruction *Next = FI.getNextNonDebugInstruction(); in visitFenceInst()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DInstruction.cpp728 Instruction::getNextNonDebugInstruction(bool SkipPseudoOp) const { in getNextNonDebugInstruction() function in Instruction
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1844 Builder.SetInsertPoint(NewCB->getNextNonDebugInstruction()); in RemovePreallocated()
1871 auto *InsertBefore = PreallocatedSetup->getNextNonDebugInstruction(); in RemovePreallocated()
H A DIROutliner.cpp1351 ID.Inst->getNextNonDebugInstruction()) in pruneIncompatibleRegions()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp1967 bool DomPointAfterFrom = From.getNextNonDebugInstruction() == &DomPoint; in rewriteDebugUsers()
1972 if (DomPointAfterFrom && DII->getNextNonDebugInstruction() == &DomPoint) { in rewriteDebugUsers()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp3163 Instruction *Start = InsBefore.getNextNonDebugInstruction(); in findStoresToUninstrumentedArgAllocas()
3164 for (Instruction *It = Start; It; It = It->getNextNonDebugInstruction()) { in findStoresToUninstrumentedArgAllocas()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2512 if (Cond->getNextNonDebugInstruction() != TermBr) { in OptimizeLoopTermCond()