| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | Dominators.cpp | 192 BasicBlock *NormalDest = II->getNormalDest(); in dominates() local 193 BasicBlockEdge E(DefBB, NormalDest); in dominates() 199 BasicBlock *NormalDest = CBI->getDefaultDest(); in dominates() local 200 BasicBlockEdge E(DefBB, NormalDest); in dominates() 309 BasicBlock *NormalDest = II->getNormalDest(); in dominates() local 310 BasicBlockEdge E(DefBB, NormalDest); in dominates() 316 BasicBlock *NormalDest = CBI->getDefaultDest(); in dominates() local 317 BasicBlockEdge E(DefBB, NormalDest); in dominates()
|
| H A D | IRBuilder.cpp | 772 FunctionCallee ActualInvokee, BasicBlock *NormalDest, in CreateGCStatepointInvokeCommon() argument 787 FnStatepoint, NormalDest, UnwindDest, Args, in CreateGCStatepointInvokeCommon() 797 BasicBlock *NormalDest, BasicBlock *UnwindDest, in CreateGCStatepointInvoke() argument 801 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, in CreateGCStatepointInvoke() 808 BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags, in CreateGCStatepointInvoke() argument 813 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, Flags, in CreateGCStatepointInvoke() 819 BasicBlock *NormalDest, BasicBlock *UnwindDest, ArrayRef<Use> InvokeArgs, in CreateGCStatepointInvoke() argument 823 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, in CreateGCStatepointInvoke()
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | IRBuilder.h | 817 FunctionCallee ActualInvokee, BasicBlock *NormalDest, 826 BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags, 836 FunctionCallee ActualInvokee, BasicBlock *NormalDest, 1029 BasicBlock *NormalDest, BasicBlock *UnwindDest, 1034 InvokeInst::Create(Ty, Callee, NormalDest, UnwindDest, Args, OpBundles); 1040 BasicBlock *NormalDest, BasicBlock *UnwindDest, 1044 InvokeInst::Create(Ty, Callee, NormalDest, UnwindDest, Args); 1050 InvokeInst *CreateInvoke(FunctionCallee Callee, BasicBlock *NormalDest, 1055 NormalDest, UnwindDest, Args, OpBundles, Name); 1058 InvokeInst *CreateInvoke(FunctionCallee Callee, BasicBlock *NormalDest, [all …]
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Scalar/ |
| H A D | RewriteStatepointsForGC.cpp | 1853 BasicBlock *NormalDest = II->getNormalDest(); in makeStatepointExplicitImpl() local 1854 assert(!isa<PHINode>(NormalDest->begin()) && in makeStatepointExplicitImpl() 1855 NormalDest->getUniquePredecessor() && in makeStatepointExplicitImpl() 1858 Builder.SetInsertPoint(&*NormalDest->getFirstInsertionPt()); in makeStatepointExplicitImpl() 2155 BasicBlock *NormalDest = Invoke->getNormalDest(); in relocationViaAlloca() local 2156 Store->insertBefore(NormalDest->getFirstNonPHI()); in relocationViaAlloca()
|
| /llvm-project-15.0.7/llvm/unittests/IR/ |
| H A D | InstructionsTest.cpp | 775 std::unique_ptr<BasicBlock> NormalDest(BasicBlock::Create(C)); in TEST() local 779 InvokeInst::Create(FnTy, Callee, NormalDest.get(), UnwindDest.get(), Args, in TEST()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/ |
| H A D | MemorySanitizer.cpp | 3788 BasicBlock *NormalDest = cast<InvokeInst>(CB).getNormalDest(); in visitCallBase() local 3789 if (!NormalDest->getSinglePredecessor()) { in visitCallBase() 3799 NextInsn = NormalDest->getFirstInsertionPt(); in visitCallBase() 3800 assert(NextInsn != NormalDest->end() && in visitCallBase()
|