Home
last modified time | relevance | path

Searched refs:CatchRet (Results 1 – 15 of 15) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DEHPersonalities.cpp127 if (auto *CatchRet = dyn_cast<CatchReturnInst>(Terminator)) { in colorEHFunclets() local
128 Value *ParentPad = CatchRet->getCatchSwitchParentPad(); in colorEHFunclets()
H A DAliasAnalysis.cpp599 ModRefInfo AAResults::getModRefInfo(const CatchReturnInst *CatchRet, in getModRefInfo() argument
602 return getModRefInfo(CatchRet, Loc, AAQIP); in getModRefInfo()
605 ModRefInfo AAResults::getModRefInfo(const CatchReturnInst *CatchRet, in getModRefInfo() argument
705 case Instruction::CatchRet: in getModRefInfo()
H A DValueTracking.cpp4661 case Instruction::CatchRet: in isSafeToSpeculativelyExecute()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp832 if (auto *CatchRet = dyn_cast<CatchReturnInst>(Pred->getTerminator())) in cloneCommonBlocks() local
833 if (CatchRet->getCatchSwitchParentPad() == FuncletToken) in cloneCommonBlocks()
834 FixupCatchrets.push_back(CatchRet); in cloneCommonBlocks()
836 for (CatchReturnInst *CatchRet : FixupCatchrets) in cloneCommonBlocks()
837 CatchRet->setSuccessor(NewBlock); in cloneCommonBlocks()
1197 if (auto *CatchRet = in replaceUseWithLoad() local
1220 CatchRet->removeFromParent(); in replaceUseWithLoad()
1221 IncomingBlock->getInstList().push_back(CatchRet); in replaceUseWithLoad()
1224 CatchRet->setSuccessor(NewBlock); in replaceUseWithLoad()
H A DTargetLoweringBase.cpp1776 case CatchRet: return 0; in InstructionOpcodeToISD()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.h238 case Instruction::CatchRet:
630 case Instruction::CatchRet:
H A DInstruction.def135 HANDLE_TERM_INST ( 9, CatchRet , CatchReturnInst)
H A DInstructions.h4543 return (I->getOpcode() == Instruction::CatchRet);
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DInstruction.cpp349 case CatchRet: return "catchret"; in getOpcodeName()
573 case Instruction::CatchRet: in mayReadFromMemory()
593 case Instruction::CatchRet: in mayWriteToMemory()
H A DInstructions.cpp1076 : Instruction(Type::getVoidTy(CRI.getContext()), Instruction::CatchRet, in CatchReturnInst()
1084 : Instruction(Type::getVoidTy(BB->getContext()), Instruction::CatchRet, in CatchReturnInst()
1092 : Instruction(Type::getVoidTy(BB->getContext()), Instruction::CatchRet, in CatchReturnInst()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FrameLowering.h255 MachineInstr *CatchRet) const;
H A DX86FrameLowering.cpp2598 MachineInstr *CatchRet) const { in emitCatchRetReturnValue()
2603 const DebugLoc &DL = CatchRet->getDebugLoc(); in emitCatchRetReturnValue()
2604 MachineBasicBlock *CatchRetTarget = CatchRet->getOperand(0).getMBB(); in emitCatchRetReturnValue()
/freebsd-13.1/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp916 INSTKEYWORD(catchret, CatchRet); in LexIdentifier()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.h864 case Instruction::CatchRet: in hasResult()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2928 case Instruction::CatchRet: { in writeInstruction()