HomeSort by relevance Sort by last modified time
    Searched refs:UnwindDest (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/IR/
IRBuilder.h 572 BasicBlock *UnwindDest, const Twine &Name = "") {
573 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest,
578 BasicBlock *UnwindDest, Value *Arg1,
580 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Arg1),
584 BasicBlock *UnwindDest, Value *Arg1,
588 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args),
593 BasicBlock *UnwindDest, ArrayRef<Value *> Args,
595 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args),
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 160 BasicBlock *UnwindDest = Inst->getUnwindDest();
161 if (UnwindDest->isLandingPad()) continue; // Already converted.
166 FindExnAndSelIntrinsics(UnwindDest, Exn, Sel, Visited);
180 BasicBlock *UnwindDest = Invoke->getUnwindDest();
181 Function *F = UnwindDest->getParent();
199 if (!UnwindDest->getSinglePredecessor()) {
203 UnwindDest->getParent());
204 BranchInst::Create(UnwindDest, NewBB);
209 II = UnwindDest->begin(); isa<PHINode>(II); ++II) {
216 UnwindDest = NewBB
    [all...]

Completed in 308 milliseconds