Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/unittests/Transforms/Utils/
H A DLocalTest.cpp735 Instruction &B = *A.getNextNonDebugInstruction(); in TEST()
736 Instruction &C = *B.getNextNonDebugInstruction(); in TEST()
737 Instruction &D = *C.getNextNonDebugInstruction(); in TEST()
738 Instruction &E = *D.getNextNonDebugInstruction(); in TEST()
739 Instruction &F_ = *E.getNextNonDebugInstruction(); in TEST()
740 Instruction &Barrier = *F_.getNextNonDebugInstruction(); in TEST()
741 Instruction &G = *Barrier.getNextNonDebugInstruction(); in TEST()
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DInstruction.h674 getNextNonDebugInstruction(bool SkipPseudoOp = false) const;
675 Instruction *getNextNonDebugInstruction(bool SkipPseudoOp = false) {
677 static_cast<const Instruction *>(this)->getNextNonDebugInstruction(
/llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp2191 Instruction *Next = II->getNextNonDebugInstruction(); in visitCallInst()
2334 Instruction *NextInst = II->getNextNonDebugInstruction(); in visitCallInst()
2339 NextInst = NextInst->getNextNonDebugInstruction(); in visitCallInst()
2349 Instruction *MoveI = II->getNextNonDebugInstruction(); in visitCallInst()
2352 MoveI = MoveI->getNextNonDebugInstruction(); in visitCallInst()
2699 auto *NFI = dyn_cast<FenceInst>(FI.getNextNonDebugInstruction()); in visitFenceInst()
/llvm-project-15.0.7/llvm/lib/Transforms/IPO/
H A DIROutliner.cpp265 EndInst != BackInst->getNextNonDebugInstruction()) in splitCandidate()
2344 NextModuleInst = ID.Inst->getNextNonDebugInstruction(); in nextIRInstructionDataMatchesNextInst()
2371 Region.Candidate->backInstruction()->getNextNonDebugInstruction(); in isCompatibleWithAlreadyOutlinedCode()
H A DGlobalOpt.cpp1903 Builder.SetInsertPoint(NewCB->getNextNonDebugInstruction()); in RemovePreallocated()
1928 auto *InsertBefore = PreallocatedSetup->getNextNonDebugInstruction(); in RemovePreallocated()
H A DAttributor.cpp620 Instruction *Inst = CB->getNextNonDebugInstruction(); in isPotentiallyReachable()
/llvm-project-15.0.7/llvm/lib/IR/
H A DInstruction.cpp740 Instruction::getNextNonDebugInstruction(bool SkipPseudoOp) const { in getNextNonDebugInstruction() function in Instruction
/llvm-project-15.0.7/llvm/unittests/IR/
H A DInstructionsTest.cpp1405 EXPECT_EQ(Term, BB.begin()->getNextNonDebugInstruction()); in TEST()
1409 EXPECT_EQ(nullptr, Term->getNextNonDebugInstruction()); in TEST()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DLocal.cpp1977 bool DomPointAfterFrom = From.getNextNonDebugInstruction() == &DomPoint; in rewriteDebugUsers()
1982 if (DomPointAfterFrom && DII->getNextNonDebugInstruction() == &DomPoint) { in rewriteDebugUsers()
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp3018 Instruction *Start = InsBefore.getNextNonDebugInstruction(); in findStoresToUninstrumentedArgAllocas()
3019 for (Instruction *It = Start; It; It = It->getNextNonDebugInstruction()) { in findStoresToUninstrumentedArgAllocas()
/llvm-project-15.0.7/llvm/unittests/Frontend/
H A DOpenMPIRBuilderTest.cpp5000 Instruction *GeneratedStoreInst = TaskgroupCall->getNextNonDebugInstruction(); in TEST_F()
5003 GeneratedStoreInst->getNextNonDebugInstruction(); in TEST_F()
5005 Instruction *GeneratedLoad128 = GeneratedLoad32->getNextNonDebugInstruction(); in TEST_F()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2515 if (Cond->getNextNonDebugInstruction() != TermBr) { in OptimizeLoopTermCond()