Home
last modified time | relevance | path

Searched refs:NormalDest (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/IR/
H A DDominators.cpp171 BasicBlock *NormalDest = II->getNormalDest(); in dominates() local
172 BasicBlockEdge E(DefBB, NormalDest); in dominates()
276 BasicBlock *NormalDest = II->getNormalDest(); in dominates() local
277 BasicBlockEdge E(DefBB, NormalDest); in dominates()
H A DIRBuilder.cpp87 static InvokeInst *createInvokeHelper(Value *Invokee, BasicBlock *NormalDest, in createInvokeHelper() argument
93 InvokeInst::Create(Invokee, NormalDest, UnwindDest, Ops, Name); in createInvokeHelper()
655 Value *ActualInvokee, BasicBlock *NormalDest, BasicBlock *UnwindDest, in CreateGCStatepointInvokeCommon() argument
671 return createInvokeHelper(FnStatepoint, NormalDest, UnwindDest, Args, Builder, in CreateGCStatepointInvokeCommon()
677 BasicBlock *NormalDest, BasicBlock *UnwindDest, in CreateGCStatepointInvoke() argument
681 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, in CreateGCStatepointInvoke()
688 BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags, in CreateGCStatepointInvoke() argument
692 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, Flags, in CreateGCStatepointInvoke()
698 BasicBlock *NormalDest, BasicBlock *UnwindDest, ArrayRef<Use> InvokeArgs, in CreateGCStatepointInvoke() argument
701 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, in CreateGCStatepointInvoke()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DIRBuilder.h640 Value *ActualInvokee, BasicBlock *NormalDest,
649 BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags,
659 Value *ActualInvokee, BasicBlock *NormalDest,
909 InvokeInst *CreateInvoke(Function *Callee, BasicBlock *NormalDest,
913 return CreateInvoke(Callee->getFunctionType(), Callee, NormalDest,
917 InvokeInst *CreateInvoke(Function *Callee, BasicBlock *NormalDest,
921 return CreateInvoke(Callee->getFunctionType(), Callee, NormalDest,
926 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
933 Callee, NormalDest, UnwindDest, Args, OpBundles, Name);
937 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
[all …]
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp1554 BasicBlock *NormalDest = ToReplace->getNormalDest(); in makeStatepointExplicitImpl() local
1555 assert(!isa<PHINode>(NormalDest->begin()) && in makeStatepointExplicitImpl()
1556 NormalDest->getUniquePredecessor() && in makeStatepointExplicitImpl()
1559 Builder.SetInsertPoint(&*NormalDest->getFirstInsertionPt()); in makeStatepointExplicitImpl()
1856 BasicBlock *NormalDest = Invoke->getNormalDest(); in relocationViaAlloca() local
1857 Store->insertBefore(NormalDest->getFirstNonPHI()); in relocationViaAlloca()
/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp3271 BasicBlock *NormalDest = cast<InvokeInst>(&I)->getNormalDest(); in visitCallSite() local
3272 if (!NormalDest->getSinglePredecessor()) { in visitCallSite()
3282 NextInsn = NormalDest->getFirstInsertionPt(); in visitCallSite()
3283 assert(NextInsn != NormalDest->end() && in visitCallSite()