Searched refs:UnwindBB (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/Transforms/Utils/ |
D | LowerInvoke.cpp | 491 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/ |
D | CGObjCGNU.cpp | 2307 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/ |
D | BitcodeReader.cpp | 2433 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/ |
D | LLParser.cpp | 3149 BasicBlock *NormalBB, *UnwindBB; in ParseInvoke() local 3159 ParseTypeAndBasicBlock(UnwindBB, PFS)) in ParseInvoke() 3221 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB, Args); in ParseInvoke()
|