Home
last modified time | relevance | path

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

/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()
326 Value *ActualInvokee, BasicBlock *NormalDest, BasicBlock *UnwindDest, in CreateGCStatepointInvokeCommon() argument
342 return createInvokeHelper(FnStatepoint, NormalDest, UnwindDest, Args, Builder, in CreateGCStatepointInvokeCommon()
348 BasicBlock *NormalDest, BasicBlock *UnwindDest, in CreateGCStatepointInvoke() argument
352 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, in CreateGCStatepointInvoke()
359 BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags, in CreateGCStatepointInvoke() argument
363 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, Flags, in CreateGCStatepointInvoke()
369 BasicBlock *NormalDest, BasicBlock *UnwindDest, ArrayRef<Use> InvokeArgs, in CreateGCStatepointInvoke() argument
372 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, in CreateGCStatepointInvoke()
DDominators.cpp132 BasicBlock *NormalDest = II->getNormalDest(); in dominates() local
133 BasicBlockEdge E(DefBB, NormalDest); in dominates()
243 BasicBlock *NormalDest = II->getNormalDest(); in dominates() local
244 BasicBlockEdge E(DefBB, NormalDest); in dominates()
/external/llvm/include/llvm/IR/
DIRBuilder.h471 Value *ActualInvokee, BasicBlock *NormalDest,
480 BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags,
490 Value *ActualInvokee, BasicBlock *NormalDest,
668 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
670 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, None),
673 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
676 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Arg1),
679 InvokeInst *CreateInvoke3(Value *Callee, BasicBlock *NormalDest,
684 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args),
688 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
[all …]
/external/llvm/lib/Transforms/Utils/
DCodeExtractor.cpp569 BasicBlock *NormalDest = nullptr; in emitCallAndSwitchStatement() local
571 NormalDest = Invoke->getNormalDest(); in emitCallAndSwitchStatement()
573 if (NormalDest) { in emitCallAndSwitchStatement()
574 DefBlock = NormalDest; in emitCallAndSwitchStatement()
/external/llvm/lib/Transforms/Scalar/
DPlaceSafepoints.cpp927 BasicBlock *NormalDest = ToReplace->getNormalDest(); in ReplaceWithStatepoint() local
930 assert(!isa<PHINode>(NormalDest->begin())); in ReplaceWithStatepoint()
931 Instruction *IP = &*(NormalDest->getFirstInsertionPt()); in ReplaceWithStatepoint()
DRewriteStatepointsForGC.cpp1520 BasicBlock *NormalDest = ToReplace->getNormalDest(); in makeStatepointExplicitImpl() local
1521 assert(!isa<PHINode>(NormalDest->begin()) && in makeStatepointExplicitImpl()
1522 NormalDest->getUniquePredecessor() && in makeStatepointExplicitImpl()
1525 Builder.SetInsertPoint(&*NormalDest->getFirstInsertionPt()); in makeStatepointExplicitImpl()
1873 BasicBlock *NormalDest = Invoke->getNormalDest(); in relocationViaAlloca() local
1874 Store->insertBefore(NormalDest->getFirstNonPHI()); in relocationViaAlloca()
2008 BasicBlock *NormalDest = Invoke->getNormalDest(); in splitVectorValues() local
2009 assert(!isa<PHINode>(NormalDest->begin())); in splitVectorValues()
2013 Instruction *IP = &*(NormalDest->getFirstInsertionPt()); in splitVectorValues()
/external/llvm/lib/Transforms/Instrumentation/
DMemorySanitizer.cpp2524 BasicBlock *NormalDest = cast<InvokeInst>(&I)->getNormalDest(); in visitCallSite() local
2525 if (!NormalDest->getSinglePredecessor()) { in visitCallSite()
2533 NextInsn = NormalDest->getFirstInsertionPt(); in visitCallSite()
2534 assert(NextInsn != NormalDest->end() && in visitCallSite()