Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDominators.cpp192 BasicBlock *NormalDest = II->getNormalDest(); in dominates() local
193 BasicBlockEdge E(DefBB, NormalDest); in dominates()
226 // . NormalDest in dominates()
229 // Given the definition of dominance, NormalDest is dominated by X iff X in dominates()
230 // dominates all of NormalDest's predecessors (X, B, C in the example). X in dominates()
232 // other predecessors. Since the only way out of X is via NormalDest, X can in dominates()
233 // only properly dominate a node if NormalDest dominates that node too. in dominates()
302 BasicBlock *NormalDest = II->getNormalDest(); in dominates() local
303 BasicBlockEdge E(DefBB, NormalDest); in dominates()
H A DIRBuilder.cpp816 FunctionCallee ActualInvokee, BasicBlock *NormalDest, in CreateGCStatepointInvokeCommon() argument
832 FnStatepoint, NormalDest, UnwindDest, Args, in CreateGCStatepointInvokeCommon()
842 BasicBlock *NormalDest, BasicBlock *UnwindDest, in CreateGCStatepointInvoke() argument
846 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, in CreateGCStatepointInvoke()
853 BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags, in CreateGCStatepointInvoke() argument
858 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, Flags, in CreateGCStatepointInvoke()
864 BasicBlock *NormalDest, BasicBlock *UnwindDest, ArrayRef<Use> InvokeArgs, in CreateGCStatepointInvoke() argument
868 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, in CreateGCStatepointInvoke()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRBuilder.h899 FunctionCallee ActualInvokee, BasicBlock *NormalDest,
908 BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags,
918 FunctionCallee ActualInvokee, BasicBlock *NormalDest,
1164 BasicBlock *NormalDest, BasicBlock *UnwindDest,
1169 InvokeInst::Create(Ty, Callee, NormalDest, UnwindDest, Args, OpBundles);
1175 BasicBlock *NormalDest, BasicBlock *UnwindDest,
1179 InvokeInst::Create(Ty, Callee, NormalDest, UnwindDest, Args);
1185 InvokeInst *CreateInvoke(FunctionCallee Callee, BasicBlock *NormalDest,
1190 NormalDest, UnwindDest, Args, OpBundles, Name);
1193 InvokeInst *CreateInvoke(FunctionCallee Callee, BasicBlock *NormalDest,
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp1883 BasicBlock *NormalDest = II->getNormalDest(); in makeStatepointExplicitImpl() local
1884 assert(!isa<PHINode>(NormalDest->begin()) && in makeStatepointExplicitImpl()
1885 NormalDest->getUniquePredecessor() && in makeStatepointExplicitImpl()
1888 Builder.SetInsertPoint(NormalDest, NormalDest->getFirstInsertionPt()); in makeStatepointExplicitImpl()
2181 BasicBlock *NormalDest = Invoke->getNormalDest(); in relocationViaAlloca() local
2182 Store->insertBefore(NormalDest->getFirstNonPHI()); in relocationViaAlloca()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp4530 BasicBlock *NormalDest = cast<InvokeInst>(CB).getNormalDest(); in visitCallBase() local
4531 if (!NormalDest->getSinglePredecessor()) { in visitCallBase()
4541 NextInsn = NormalDest->getFirstInsertionPt(); in visitCallBase()
4542 assert(NextInsn != NormalDest->end() && in visitCallBase()