Searched refs:InvokeBB (Results 1 – 9 of 9) sorted by relevance
/external/llvm-project/llvm/include/llvm/IR/ |
D | Statepoint.h | 247 const BasicBlock *InvokeBB = in getStatepoint() local 250 assert(InvokeBB && "safepoints should have unique landingpads"); in getStatepoint() 251 assert(InvokeBB->getTerminator() && in getStatepoint() 254 return cast<GCStatepointInst>(InvokeBB->getTerminator()); in getStatepoint()
|
/external/llvm/include/llvm/IR/ |
D | Statepoint.h | 339 const BasicBlock *InvokeBB = in getStatepoint() local 342 assert(InvokeBB && "safepoints should have unique landingpads"); in getStatepoint() 343 assert(InvokeBB->getTerminator() && in getStatepoint() 345 assert(isStatepoint(InvokeBB->getTerminator())); in getStatepoint() 347 return InvokeBB->getTerminator(); in getStatepoint()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Statepoint.h | 347 const BasicBlock *InvokeBB = in getStatepoint() local 350 assert(InvokeBB && "safepoints should have unique landingpads"); in getStatepoint() 351 assert(InvokeBB->getTerminator() && in getStatepoint() 353 assert(isStatepoint(InvokeBB->getTerminator())); in getStatepoint() 355 return cast<CallBase>(InvokeBB->getTerminator()); in getStatepoint()
|
/external/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 83 llvm::BasicBlock *InvokeBB = II->getParent(); in LandingPadInliningInfo() local 88 UnwindDestPHIValues.push_back(PHI->getIncomingValueForBlock(InvokeBB)); in LandingPadInliningInfo() 576 llvm::BasicBlock *InvokeBB = II->getParent(); in HandleInlinedEHPad() local 582 UnwindDestPHIValues.push_back(PHI->getIncomingValueForBlock(InvokeBB)); in HandleInlinedEHPad() 688 UnwindDest->removePredecessor(InvokeBB); in HandleInlinedEHPad()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 117 BasicBlock *InvokeBB = II->getParent(); in LandingPadInliningInfo() local 122 UnwindDestPHIValues.push_back(PHI->getIncomingValueForBlock(InvokeBB)); in LandingPadInliningInfo() 652 BasicBlock *InvokeBB = II->getParent(); in HandleInlinedEHPad() local 658 UnwindDestPHIValues.push_back(PHI->getIncomingValueForBlock(InvokeBB)); in HandleInlinedEHPad() 764 UnwindDest->removePredecessor(InvokeBB); in HandleInlinedEHPad()
|
/external/llvm-project/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 124 BasicBlock *InvokeBB = II->getParent(); in LandingPadInliningInfo() local 129 UnwindDestPHIValues.push_back(PHI->getIncomingValueForBlock(InvokeBB)); in LandingPadInliningInfo() 659 BasicBlock *InvokeBB = II->getParent(); in HandleInlinedEHPad() local 665 UnwindDestPHIValues.push_back(PHI->getIncomingValueForBlock(InvokeBB)); in HandleInlinedEHPad() 771 UnwindDest->removePredecessor(InvokeBB); in HandleInlinedEHPad()
|
/external/llvm/lib/IR/ |
D | Verifier.cpp | 3958 const BasicBlock *InvokeBB = in visitIntrinsicCallSite() local 3963 Assert(InvokeBB, "safepoints should have unique landingpads", in visitIntrinsicCallSite() 3965 Assert(InvokeBB->getTerminator(), "safepoint block should be well formed", in visitIntrinsicCallSite() 3966 InvokeBB); in visitIntrinsicCallSite() 3967 Assert(isStatepoint(InvokeBB->getTerminator()), in visitIntrinsicCallSite() 3968 "gc relocate should be linked to a statepoint", InvokeBB); in visitIntrinsicCallSite()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Verifier.cpp | 4509 const BasicBlock *InvokeBB = in visitIntrinsicCall() local 4514 Assert(InvokeBB, "safepoints should have unique landingpads", in visitIntrinsicCall() 4516 Assert(InvokeBB->getTerminator(), "safepoint block should be well formed", in visitIntrinsicCall() 4517 InvokeBB); in visitIntrinsicCall() 4518 Assert(isStatepoint(InvokeBB->getTerminator()), in visitIntrinsicCall() 4519 "gc relocate should be linked to a statepoint", InvokeBB); in visitIntrinsicCall()
|
/external/llvm-project/llvm/lib/IR/ |
D | Verifier.cpp | 4827 const BasicBlock *InvokeBB = in visitIntrinsicCall() local 4832 Assert(InvokeBB, "safepoints should have unique landingpads", in visitIntrinsicCall() 4834 Assert(InvokeBB->getTerminator(), "safepoint block should be well formed", in visitIntrinsicCall() 4835 InvokeBB); in visitIntrinsicCall() 4836 Assert(isa<GCStatepointInst>(InvokeBB->getTerminator()), in visitIntrinsicCall() 4837 "gc relocate should be linked to a statepoint", InvokeBB); in visitIntrinsicCall()
|