Home
last modified time | relevance | path

Searched refs:UnwindBB (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/Transforms/Utils/
DLowerInvoke.cpp491 BasicBlock *UnwindBB = BasicBlock::Create(F.getContext(), "unwindbb", &F); in insertExpensiveEHSupport() local
492 Unwinds.push_back(new UnwindInst(F.getContext(), UnwindBB)); in insertExpensiveEHSupport()
496 SwitchInst::Create(CatchLoad, UnwindBB, Invokes.size(), CatchBB); in insertExpensiveEHSupport()
/external/clang/lib/CodeGen/
DCGObjCGNU.cpp2307 llvm::BasicBlock *UnwindBB = CGF.getInvokeDest(); in EmitThrowStmt() local
2308 if (!UnwindBB) { in EmitThrowStmt()
2312 CGF.Builder.CreateInvoke(ExceptionThrowFn, UnwindBB, UnwindBB, in EmitThrowStmt()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp2433 BasicBlock *UnwindBB = getBasicBlock(Record[3]); in ParseFunctionBody() local
2445 if (FTy == 0 || NormalBB == 0 || UnwindBB == 0 || in ParseFunctionBody()
2468 I = InvokeInst::Create(Callee, NormalBB, UnwindBB, Ops); in ParseFunctionBody()
/external/llvm/lib/AsmParser/
DLLParser.cpp3149 BasicBlock *NormalBB, *UnwindBB; in ParseInvoke() local
3159 ParseTypeAndBasicBlock(UnwindBB, PFS)) in ParseInvoke()
3221 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB, Args); in ParseInvoke()