Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-16.0/llvm/lib/IR/
DDominators.cpp192 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()
DIRBuilder.cpp850 FunctionCallee ActualInvokee, BasicBlock *NormalDest, in CreateGCStatepointInvokeCommon() argument
866 FnStatepoint, NormalDest, UnwindDest, Args, in CreateGCStatepointInvokeCommon()
876 BasicBlock *NormalDest, BasicBlock *UnwindDest, in CreateGCStatepointInvoke() argument
880 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, in CreateGCStatepointInvoke()
887 BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags, in CreateGCStatepointInvoke() argument
892 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, Flags, in CreateGCStatepointInvoke()
898 BasicBlock *NormalDest, BasicBlock *UnwindDest, ArrayRef<Use> InvokeArgs, in CreateGCStatepointInvoke() argument
902 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, in CreateGCStatepointInvoke()
/external/llvm/lib/IR/
DIRBuilder.cpp68 static InvokeInst *createInvokeHelper(Value *Invokee, BasicBlock *NormalDest, in createInvokeHelper() argument
74 InvokeInst::Create(Invokee, NormalDest, UnwindDest, Ops, Name); in createInvokeHelper()
387 Value *ActualInvokee, BasicBlock *NormalDest, BasicBlock *UnwindDest, in CreateGCStatepointInvokeCommon() argument
403 return createInvokeHelper(FnStatepoint, NormalDest, UnwindDest, Args, Builder, in CreateGCStatepointInvokeCommon()
409 BasicBlock *NormalDest, BasicBlock *UnwindDest, in CreateGCStatepointInvoke() argument
413 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, in CreateGCStatepointInvoke()
420 BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags, in CreateGCStatepointInvoke() argument
424 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, Flags, in CreateGCStatepointInvoke()
430 BasicBlock *NormalDest, BasicBlock *UnwindDest, ArrayRef<Use> InvokeArgs, in CreateGCStatepointInvoke() argument
433 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, in CreateGCStatepointInvoke()
DDominators.cpp130 BasicBlock *NormalDest = II->getNormalDest(); in dominates() local
131 BasicBlockEdge E(DefBB, NormalDest); in dominates()
241 BasicBlock *NormalDest = II->getNormalDest(); in dominates() local
242 BasicBlockEdge E(DefBB, NormalDest); in dominates()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
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()
DIRBuilder.cpp86 static InvokeInst *createInvokeHelper(Function *Invokee, BasicBlock *NormalDest, in createInvokeHelper() argument
92 InvokeInst::Create(Invokee, NormalDest, UnwindDest, Ops, Name); in createInvokeHelper()
660 Value *ActualInvokee, BasicBlock *NormalDest, BasicBlock *UnwindDest, in CreateGCStatepointInvokeCommon() argument
676 return createInvokeHelper(FnStatepoint, NormalDest, UnwindDest, Args, Builder, in CreateGCStatepointInvokeCommon()
682 BasicBlock *NormalDest, BasicBlock *UnwindDest, in CreateGCStatepointInvoke() argument
686 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, in CreateGCStatepointInvoke()
693 BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags, in CreateGCStatepointInvoke() argument
697 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, Flags, in CreateGCStatepointInvoke()
703 BasicBlock *NormalDest, BasicBlock *UnwindDest, ArrayRef<Use> InvokeArgs, in CreateGCStatepointInvoke() argument
706 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, in CreateGCStatepointInvoke()
/external/llvm/lib/Transforms/Utils/
DCodeExtractor.cpp556 BasicBlock *NormalDest = nullptr; in emitCallAndSwitchStatement() local
558 NormalDest = Invoke->getNormalDest(); in emitCallAndSwitchStatement()
560 if (NormalDest) { in emitCallAndSwitchStatement()
561 DefBlock = NormalDest; in emitCallAndSwitchStatement()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DIRBuilder.h763 Value *ActualInvokee, BasicBlock *NormalDest,
772 BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags,
782 Value *ActualInvokee, BasicBlock *NormalDest,
1016 BasicBlock *NormalDest, BasicBlock *UnwindDest,
1021 InvokeInst::Create(Ty, Callee, NormalDest, UnwindDest, Args, OpBundles),
1025 BasicBlock *NormalDest, BasicBlock *UnwindDest,
1028 return Insert(InvokeInst::Create(Ty, Callee, NormalDest, UnwindDest, Args),
1032 InvokeInst *CreateInvoke(FunctionCallee Callee, BasicBlock *NormalDest,
1037 NormalDest, UnwindDest, Args, OpBundles, Name);
1040 InvokeInst *CreateInvoke(FunctionCallee Callee, BasicBlock *NormalDest,
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/IR/
DIRBuilder.h846 FunctionCallee ActualInvokee, BasicBlock *NormalDest,
855 BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags,
865 FunctionCallee ActualInvokee, BasicBlock *NormalDest,
1074 BasicBlock *NormalDest, BasicBlock *UnwindDest,
1079 InvokeInst::Create(Ty, Callee, NormalDest, UnwindDest, Args, OpBundles);
1085 BasicBlock *NormalDest, BasicBlock *UnwindDest,
1089 InvokeInst::Create(Ty, Callee, NormalDest, UnwindDest, Args);
1095 InvokeInst *CreateInvoke(FunctionCallee Callee, BasicBlock *NormalDest,
1100 NormalDest, UnwindDest, Args, OpBundles, Name);
1103 InvokeInst *CreateInvoke(FunctionCallee Callee, BasicBlock *NormalDest,
[all …]
/external/llvm/lib/Transforms/Scalar/
DRewriteStatepointsForGC.cpp1409 BasicBlock *NormalDest = ToReplace->getNormalDest(); in makeStatepointExplicitImpl() local
1410 assert(!isa<PHINode>(NormalDest->begin()) && in makeStatepointExplicitImpl()
1411 NormalDest->getUniquePredecessor() && in makeStatepointExplicitImpl()
1414 Builder.SetInsertPoint(&*NormalDest->getFirstInsertionPt()); in makeStatepointExplicitImpl()
1709 BasicBlock *NormalDest = Invoke->getNormalDest(); in relocationViaAlloca() local
1710 Store->insertBefore(NormalDest->getFirstNonPHI()); in relocationViaAlloca()
/external/llvm/include/llvm/IR/
DIRBuilder.h503 Value *ActualInvokee, BasicBlock *NormalDest,
512 BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags,
522 Value *ActualInvokee, BasicBlock *NormalDest,
702 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
706 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args),
709 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
713 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args,
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DRewriteStatepointsForGC.cpp1549 BasicBlock *NormalDest = II->getNormalDest(); in makeStatepointExplicitImpl() local
1550 assert(!isa<PHINode>(NormalDest->begin()) && in makeStatepointExplicitImpl()
1551 NormalDest->getUniquePredecessor() && in makeStatepointExplicitImpl()
1554 Builder.SetInsertPoint(&*NormalDest->getFirstInsertionPt()); in makeStatepointExplicitImpl()
1851 BasicBlock *NormalDest = Invoke->getNormalDest(); in relocationViaAlloca() local
1852 Store->insertBefore(NormalDest->getFirstNonPHI()); in relocationViaAlloca()
/external/llvm/unittests/IR/
DInstructionsTest.cpp558 std::unique_ptr<BasicBlock> NormalDest(BasicBlock::Create(C)); in TEST() local
562 Callee, NormalDest.get(), UnwindDest.get(), Args, OldBundle, "result")); in TEST()
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Scalar/
DRewriteStatepointsForGC.cpp1907 BasicBlock *NormalDest = II->getNormalDest(); in makeStatepointExplicitImpl() local
1908 assert(!isa<PHINode>(NormalDest->begin()) && in makeStatepointExplicitImpl()
1909 NormalDest->getUniquePredecessor() && in makeStatepointExplicitImpl()
1912 Builder.SetInsertPoint(&*NormalDest->getFirstInsertionPt()); in makeStatepointExplicitImpl()
2213 BasicBlock *NormalDest = Invoke->getNormalDest(); in relocationViaAlloca() local
2214 Store->insertBefore(NormalDest->getFirstNonPHI()); in relocationViaAlloca()
/external/llvm/lib/Transforms/Instrumentation/
DMemorySanitizer.cpp2614 BasicBlock *NormalDest = cast<InvokeInst>(&I)->getNormalDest(); in visitCallSite() local
2615 if (!NormalDest->getSinglePredecessor()) { in visitCallSite()
2623 NextInsn = NormalDest->getFirstInsertionPt(); in visitCallSite()
2624 assert(NextInsn != NormalDest->end() && in visitCallSite()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DMemorySanitizer.cpp3460 BasicBlock *NormalDest = cast<InvokeInst>(&I)->getNormalDest(); in visitCallSite() local
3461 if (!NormalDest->getSinglePredecessor()) { in visitCallSite()
3471 NextInsn = NormalDest->getFirstInsertionPt(); in visitCallSite()
3472 assert(NextInsn != NormalDest->end() && in visitCallSite()
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Instrumentation/
DMemorySanitizer.cpp4196 BasicBlock *NormalDest = cast<InvokeInst>(CB).getNormalDest(); in visitCallBase() local
4197 if (!NormalDest->getSinglePredecessor()) { in visitCallBase()
4207 NextInsn = NormalDest->getFirstInsertionPt(); in visitCallBase()
4208 assert(NextInsn != NormalDest->end() && in visitCallBase()