Searched defs:UnwindDest (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/VMCore/
H A DAutoUpgrade.cpp539 BasicBlock *UnwindDest = Inst->getUnwindDest(); local
540 if (UnwindDest->isLandingPad()) continue; // Already converted.
545 FindExnAndSelIntrinsics(UnwindDest, Exn, Sel, Visited);
559 BasicBlock *UnwindDest = Invoke->getUnwindDest(); local
560 Function *F = UnwindDest->getParent();
578 if (!UnwindDest->getSinglePredecessor()) {
582 UnwindDest->getParent());
583 BranchInst::Create(UnwindDest, NewBB);
588 II = UnwindDest->begin(); isa<PHINode>(II); ++II) {
595 UnwindDest
[all...]
/external/llvm/include/llvm/Support/
H A DIRBuilder.h451 BasicBlock *UnwindDest, const Twine &Name = "") {
452 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest,
457 BasicBlock *UnwindDest, Value *Arg1,
459 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Arg1),
463 BasicBlock *UnwindDest, Value *Arg1,
467 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args),
472 BasicBlock *UnwindDest, ArrayRef<Value *> Args,
474 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args),
450 CreateInvoke(Value *Callee, BasicBlock *NormalDest, BasicBlock *UnwindDest, const Twine &Name = Ó) argument
456 CreateInvoke(Value *Callee, BasicBlock *NormalDest, BasicBlock *UnwindDest, Value *Arg1, const Twine &Name = Ó) argument
462 CreateInvoke3(Value *Callee, BasicBlock *NormalDest, BasicBlock *UnwindDest, Value *Arg1, Value *Arg2, Value *Arg3, const Twine &Name = Ó) argument
471 CreateInvoke(Value *Callee, BasicBlock *NormalDest, BasicBlock *UnwindDest, ArrayRef<Value *> Args, const Twine &Name = Ó) argument

Completed in 86 milliseconds