Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Analysis/
H A DEHPersonalities.cpp131 if (auto *CatchRet = dyn_cast<CatchReturnInst>(Terminator)) { in colorEHFunclets() local
132 Value *ParentPad = CatchRet->getCatchSwitchParentPad(); in colorEHFunclets()
H A DAliasAnalysis.cpp597 ModRefInfo AAResults::getModRefInfo(const CatchReturnInst *CatchRet, in getModRefInfo() argument
600 return getModRefInfo(CatchRet, Loc, AAQIP); in getModRefInfo()
603 ModRefInfo AAResults::getModRefInfo(const CatchReturnInst *CatchRet, in getModRefInfo() argument
703 case Instruction::CatchRet: in getModRefInfo()
H A DValueTracking.cpp4792 case Instruction::CatchRet: in isSafeToSpeculativelyExecuteWithOpcode()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp829 if (auto *CatchRet = dyn_cast<CatchReturnInst>(Pred->getTerminator())) in cloneCommonBlocks() local
830 if (CatchRet->getCatchSwitchParentPad() == FuncletToken) in cloneCommonBlocks()
831 FixupCatchrets.push_back(CatchRet); in cloneCommonBlocks()
833 for (CatchReturnInst *CatchRet : FixupCatchrets) in cloneCommonBlocks()
834 CatchRet->setSuccessor(NewBlock); in cloneCommonBlocks()
1194 if (auto *CatchRet = in replaceUseWithLoad() local
1217 CatchRet->removeFromParent(); in replaceUseWithLoad()
1218 IncomingBlock->getInstList().push_back(CatchRet); in replaceUseWithLoad()
1221 CatchRet->setSuccessor(NewBlock); in replaceUseWithLoad()
H A DTargetLoweringBase.cpp1783 case CatchRet: return 0; in InstructionOpcodeToISD()
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DInstruction.h231 case Instruction::CatchRet:
614 case Instruction::CatchRet:
H A DInstruction.def135 HANDLE_TERM_INST ( 9, CatchRet , CatchReturnInst)
H A DInstructions.h4602 return (I->getOpcode() == Instruction::CatchRet);
/llvm-project-15.0.7/llvm/lib/IR/
H A DInstruction.cpp358 case CatchRet: return "catchret"; in getOpcodeName()
585 case Instruction::CatchRet: in mayReadFromMemory()
605 case Instruction::CatchRet: in mayWriteToMemory()
H A DInstructions.cpp1103 : Instruction(Type::getVoidTy(CRI.getContext()), Instruction::CatchRet, in CatchReturnInst()
1111 : Instruction(Type::getVoidTy(BB->getContext()), Instruction::CatchRet, in CatchReturnInst()
1119 : Instruction(Type::getVoidTy(BB->getContext()), Instruction::CatchRet, in CatchReturnInst()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86FrameLowering.h266 MachineInstr *CatchRet) const;
H A DX86FrameLowering.cpp2755 MachineInstr *CatchRet) const { in emitCatchRetReturnValue()
2760 const DebugLoc &DL = CatchRet->getDebugLoc(); in emitCatchRetReturnValue()
2761 MachineBasicBlock *CatchRetTarget = CatchRet->getOperand(0).getMBB(); in emitCatchRetReturnValue()
/llvm-project-15.0.7/llvm/lib/AsmParser/
H A DLLLexer.cpp865 INSTKEYWORD(catchret, CatchRet); in LexIdentifier()
/llvm-project-15.0.7/llvm/bindings/ocaml/llvm/
H A Dllvm.ml247 | CatchRet Constructor
H A Dllvm.mli271 | CatchRet Constructor
/llvm-project-15.0.7/llvm/lib/Transforms/Vectorize/
H A DVPlan.h881 case Instruction::CatchRet: in hasResult()
/llvm-project-15.0.7/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2970 case Instruction::CatchRet: { in writeInstruction()