Searched refs:FuncletPad (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp188 auto *FuncletPad = local
190 assert(FuncletPad || FuncletEntryBB == &Fn->getEntryBlock());
191 if (!FuncletPad)
193 else if (auto *CatchPad = dyn_cast<CatchPadInst>(FuncletPad))
195 else if (auto *CleanupPad = dyn_cast<CleanupPadInst>(FuncletPad))
203 auto BaseStateI = FuncInfo.FuncletBaseStateMap.find(FuncletPad);
939 auto *FuncletPad = dyn_cast<FuncletPadInst>(FirstNonPHI); local
940 auto *CatchPad = dyn_cast_or_null<CatchPadInst>(FuncletPad);
941 auto *CleanupPad = dyn_cast_or_null<CleanupPadInst>(FuncletPad);
953 if (FuncletBundleOperand == FuncletPad)
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp911 auto *FuncletPad = local
913 assert(FuncInfo.FuncletBaseStateMap.count(FuncletPad) != 0);
914 BaseState = FuncInfo.FuncletBaseStateMap.find(FuncletPad)->second;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86WinEHState.cpp519 if (auto *FuncletPad =
521 auto BaseStateI = FuncInfo.FuncletBaseStateMap.find(FuncletPad);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp555 auto *FuncletPad = cast<Instruction>(FuncletBundle->Inputs[0]); local
557 getUnwindDestToken(FuncletPad, *FuncletUnwindMap);
562 if (auto *CatchPad = dyn_cast<CatchPadInst>(FuncletPad))
565 MemoKey = FuncletPad;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp855 if (auto *FuncletPad = dyn_cast<FuncletPadInst>(PadInst))
856 ParentPad = FuncletPad->getParentPad();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2807 const auto &FuncletPad = cast<FuncletPadInst>(I); local
2808 Code = isa<CatchPadInst>(FuncletPad) ? bitc::FUNC_CODE_INST_CATCHPAD
2810 pushValue(FuncletPad.getParentPad(), InstID, Vals);
2812 unsigned NumArgOperands = FuncletPad.getNumArgOperands();
2815 pushValueAndType(FuncletPad.getArgOperand(Op), InstID, Vals);

Completed in 231 milliseconds