Searched defs:InvokeBB (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/IR/
H A DStatepoint.h339 const BasicBlock *InvokeBB = local
342 assert(InvokeBB && "safepoints should have unique landingpads");
343 assert(InvokeBB->getTerminator() &&
345 assert(isStatepoint(InvokeBB->getTerminator()));
347 return InvokeBB->getTerminator();
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DInlineFunction.cpp271 llvm::BasicBlock *InvokeBB = II->getParent(); local
276 UnwindDestPHIValues.push_back(PHI->getIncomingValueForBlock(InvokeBB));
/external/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp83 llvm::BasicBlock *InvokeBB = II->getParent(); local
88 UnwindDestPHIValues.push_back(PHI->getIncomingValueForBlock(InvokeBB));
576 llvm::BasicBlock *InvokeBB = II->getParent(); local
582 UnwindDestPHIValues.push_back(PHI->getIncomingValueForBlock(InvokeBB));
688 UnwindDest->removePredecessor(InvokeBB);
/external/llvm/lib/IR/
H A DVerifier.cpp3958 const BasicBlock *InvokeBB = local
3963 Assert(InvokeBB, "safepoints should have unique landingpads",
3965 Assert(InvokeBB->getTerminator(), "safepoint block should be well formed",
3966 InvokeBB);
3967 Assert(isStatepoint(InvokeBB->getTerminator()),
3968 "gc relocate should be linked to a statepoint", InvokeBB);

Completed in 182 milliseconds