HomeSort by relevance Sort by last modified time
    Searched defs:UnwindBB (Results 1 - 10 of 10) sorted by null

  /external/llvm/lib/CodeGen/
DwarfEHPrepare.cpp 219 BasicBlock *UnwindBB = RI->getParent();
223 CallInst *CI = CallInst::Create(RewindFunction, ExnObj, "", UnwindBB);
227 new UnreachableInst(Ctx, UnwindBB);
231 BasicBlock *UnwindBB = BasicBlock::Create(Ctx, "unwind_resume", &Fn);
233 "exn.obj", UnwindBB);
239 BranchInst::Create(UnwindBB, Parent);
248 CallInst *CI = CallInst::Create(RewindFunction, PN, "", UnwindBB);
252 new UnreachableInst(Ctx, UnwindBB);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DwarfEHPrepare.cpp 222 BasicBlock *UnwindBB = RI->getParent();
226 CallInst *CI = CallInst::Create(RewindFunction, ExnObj, "", UnwindBB);
230 new UnreachableInst(Ctx, UnwindBB);
234 BasicBlock *UnwindBB = BasicBlock::Create(Ctx, "unwind_resume", &Fn);
236 "exn.obj", UnwindBB);
242 BranchInst::Create(UnwindBB, Parent);
251 CallInst *CI = CallInst::Create(RewindFunction, PN, "", UnwindBB);
255 new UnreachableInst(Ctx, UnwindBB);
WasmEHPrepare.cpp 345 const auto *UnwindBB = CatchPad->getCatchSwitch()->getUnwindDest();
346 if (!UnwindBB)
348 const Instruction *UnwindPad = UnwindBB->getFirstNonPHI();
353 EHInfo.setEHPadUnwindDest(&BB, UnwindBB);
360 BasicBlock *UnwindBB = nullptr;
362 UnwindBB = Invoke->getUnwindDest();
364 UnwindBB = CleanupRet->getUnwindDest();
365 if (!UnwindBB)
367 const Instruction *UnwindPad = UnwindBB->getFirstNonPHI();
372 EHInfo.setThrowUnwindDest(&BB, UnwindBB);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
DwarfEHPrepare.cpp 690 BasicBlock *UnwindBB = BasicBlock::Create(Ctx, "unwind_resume", F);
692 "exn.obj", UnwindBB);
700 BranchInst::Create(UnwindBB, RI->getParent());
709 CallInst *CI = CallInst::Create(RewindFunction, PN, "", UnwindBB);
713 new UnreachableInst(Ctx, UnwindBB);
716 DT->addNewBlock(UnwindBB, UnwindBBDom);
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
LowerInvoke.cpp 492 BasicBlock *UnwindBB = BasicBlock::Create(F.getContext(), "unwindbb", &F);
493 UnreachablePlaceholder = new UnreachableInst(F.getContext(), UnwindBB);
497 SwitchInst::Create(CatchLoad, UnwindBB, Invokes.size(), CatchBB);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-c-test/
echo.cpp 689 LLVMBasicBlockRef UnwindBB = nullptr;
691 UnwindBB = DeclareBB(UDest);
694 Dst = LLVMBuildCatchSwitch(Builder, ParentPad, UnwindBB, NumHandlers, Name);
    [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 886 llvm::BasicBlock *UnwindBB =
891 CGF.Builder.CreateCatchSwitch(ParentPad, UnwindBB, NumHandlers);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]

Completed in 943 milliseconds