Home
last modified time | relevance | path

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

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