/external/llvm/lib/IR/ |
D | IRBuilder.cpp | 68 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()
|
D | Dominators.cpp | 130 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-7.0/llvm/lib/IR/ |
D | IRBuilder.cpp | 86 static InvokeInst *createInvokeHelper(Value *Invokee, BasicBlock *NormalDest, in createInvokeHelper() argument 92 InvokeInst::Create(Invokee, NormalDest, UnwindDest, Ops, Name); in createInvokeHelper() 654 Value *ActualInvokee, BasicBlock *NormalDest, BasicBlock *UnwindDest, in CreateGCStatepointInvokeCommon() argument 670 return createInvokeHelper(FnStatepoint, NormalDest, UnwindDest, Args, Builder, in CreateGCStatepointInvokeCommon() 676 BasicBlock *NormalDest, BasicBlock *UnwindDest, in CreateGCStatepointInvoke() argument 680 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, in CreateGCStatepointInvoke() 687 BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags, in CreateGCStatepointInvoke() argument 691 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, Flags, in CreateGCStatepointInvoke() 697 BasicBlock *NormalDest, BasicBlock *UnwindDest, ArrayRef<Use> InvokeArgs, in CreateGCStatepointInvoke() argument 700 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, in CreateGCStatepointInvoke()
|
D | Dominators.cpp | 166 BasicBlock *NormalDest = II->getNormalDest(); in dominates() local 167 BasicBlockEdge E(DefBB, NormalDest); in dominates() 271 BasicBlock *NormalDest = II->getNormalDest(); in dominates() local 272 BasicBlockEdge E(DefBB, NormalDest); in dominates()
|
/external/llvm/lib/Transforms/Utils/ |
D | CodeExtractor.cpp | 556 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/include/llvm/Support/ |
D | IRBuilder.h | 450 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest, 452 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, 456 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest, 459 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Arg1), 462 InvokeInst *CreateInvoke3(Value *Callee, BasicBlock *NormalDest, 467 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args), 471 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest, 474 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args),
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | Verifier.cpp | 1546 BasicBlock *NormalDest = II->getNormalDest(); in visitInstruction() local 1548 Assert2(NormalDest != II->getUnwindDest(), in visitInstruction() 1565 Assert2(BB == NormalDest || !DT->isReachableFromEntry(UseBlock), in visitInstruction() 1569 Assert2(DT->dominates(NormalDest, UseBlock) || in visitInstruction() 1577 if (!NormalDest->getSinglePredecessor() && in visitInstruction() 1582 for (pred_iterator PI = pred_begin(NormalDest), in visitInstruction() 1583 E = pred_end(NormalDest); PI != E; ++PI) in visitInstruction() 1584 if (*PI != II->getParent() && !DT->dominates(NormalDest, *PI) && in visitInstruction()
|
/external/llvm/lib/Transforms/Scalar/ |
D | RewriteStatepointsForGC.cpp | 1409 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/ |
D | IRBuilder.h | 503 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-7.0/llvm/lib/Transforms/Scalar/ |
D | RewriteStatepointsForGC.cpp | 1553 BasicBlock *NormalDest = ToReplace->getNormalDest(); in makeStatepointExplicitImpl() local 1554 assert(!isa<PHINode>(NormalDest->begin()) && in makeStatepointExplicitImpl() 1555 NormalDest->getUniquePredecessor() && in makeStatepointExplicitImpl() 1558 Builder.SetInsertPoint(&*NormalDest->getFirstInsertionPt()); in makeStatepointExplicitImpl() 1855 BasicBlock *NormalDest = Invoke->getNormalDest(); in relocationViaAlloca() local 1856 Store->insertBefore(NormalDest->getFirstNonPHI()); in relocationViaAlloca()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | IRBuilder.h | 640 Value *ActualInvokee, BasicBlock *NormalDest, 649 BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags, 659 Value *ActualInvokee, BasicBlock *NormalDest, 880 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest, 884 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args), 887 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest, 891 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args,
|
/external/llvm/unittests/IR/ |
D | InstructionsTest.cpp | 558 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-7.0/llvm/unittests/IR/ |
D | InstructionsTest.cpp | 571 std::unique_ptr<BasicBlock> NormalDest(BasicBlock::Create(C)); in TEST() local 575 Callee, NormalDest.get(), UnwindDest.get(), Args, OldBundle, "result")); in TEST()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | MemorySanitizer.cpp | 2614 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-7.0/llvm/lib/Transforms/Instrumentation/ |
D | MemorySanitizer.cpp | 2967 BasicBlock *NormalDest = cast<InvokeInst>(&I)->getNormalDest(); in visitCallSite() local 2968 if (!NormalDest->getSinglePredecessor()) { in visitCallSite() 2978 NextInsn = NormalDest->getFirstInsertionPt(); in visitCallSite() 2979 assert(NextInsn != NormalDest->end() && in visitCallSite()
|