Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DEHPersonalities.cpp151 if (auto *CatchRet = dyn_cast<CatchReturnInst>(Terminator)) { in colorEHFunclets() local
152 Value *ParentPad = CatchRet->getCatchSwitchParentPad(); in colorEHFunclets()
H A DInstruction.cpp711 case CatchRet: return "catchret"; in getOpcodeName()
938 case Instruction::CatchRet: in mayReadFromMemory()
958 case Instruction::CatchRet: in mayWriteToMemory()
H A DInstructions.cpp999 : Instruction(Type::getVoidTy(CRI.getContext()), Instruction::CatchRet, in CatchReturnInst()
1007 : Instruction(Type::getVoidTy(BB->getContext()), Instruction::CatchRet, in CatchReturnInst()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp978 if (auto *CatchRet = dyn_cast<CatchReturnInst>(Pred->getTerminator())) in cloneCommonBlocks() local
979 if (CatchRet->getCatchSwitchParentPad() == FuncletToken) in cloneCommonBlocks()
980 FixupCatchrets.push_back(CatchRet); in cloneCommonBlocks()
982 for (CatchReturnInst *CatchRet : FixupCatchrets) in cloneCommonBlocks()
983 CatchRet->setSuccessor(NewBlock); in cloneCommonBlocks()
1337 if (auto *CatchRet = in replaceUseWithLoad() local
1360 CatchRet->removeFromParent(); in replaceUseWithLoad()
1361 CatchRet->insertInto(IncomingBlock, IncomingBlock->end()); in replaceUseWithLoad()
1364 CatchRet->setSuccessor(NewBlock); in replaceUseWithLoad()
H A DTargetLoweringBase.cpp1769 case CatchRet: return 0; in InstructionOpcodeToISD()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.h347 case Instruction::CatchRet:
791 case Instruction::CatchRet:
H A DInstruction.def135 HANDLE_TERM_INST ( 9, CatchRet , CatchReturnInst)
H A DInstructions.h4229 return (I->getOpcode() == Instruction::CatchRet);
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FrameLowering.h269 MachineInstr *CatchRet) const;
H A DX86FrameLowering.cpp3040 MachineInstr *CatchRet) const { in emitCatchRetReturnValue()
3045 const DebugLoc &DL = CatchRet->getDebugLoc(); in emitCatchRetReturnValue()
3046 MachineBasicBlock *CatchRetTarget = CatchRet->getOperand(0).getMBB(); in emitCatchRetReturnValue()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DAliasAnalysis.cpp555 ModRefInfo AAResults::getModRefInfo(const CatchReturnInst *CatchRet, in getModRefInfo() argument
633 case Instruction::CatchRet: in getModRefInfo()
H A DValueTracking.cpp6918 case Instruction::CatchRet: in isSafeToSpeculativelyExecuteWithOpcode()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp909 INSTKEYWORD(catchret, CatchRet); in LexIdentifier()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.h1375 case Instruction::CatchRet: in hasResult()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp3156 case Instruction::CatchRet: { in writeInstruction()