Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DEHPersonalities.cpp159 if (auto *CatchRet = dyn_cast<CatchReturnInst>(Terminator)) { in colorEHFunclets() local
160 Value *ParentPad = CatchRet->getCatchSwitchParentPad(); in colorEHFunclets()
H A DInstruction.cpp773 case CatchRet: return "catchret"; in getOpcodeName()
1013 case Instruction::CatchRet: in mayReadFromMemory()
1033 case Instruction::CatchRet: in mayWriteToMemory()
H A DInstructions.cpp1066 : Instruction(Type::getVoidTy(CRI.getContext()), Instruction::CatchRet, in CatchReturnInst()
1074 : Instruction(Type::getVoidTy(BB->getContext()), Instruction::CatchRet, in CatchReturnInst()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp1008 if (auto *CatchRet = dyn_cast<CatchReturnInst>(Pred->getTerminator())) in cloneCommonBlocks() local
1009 if (CatchRet->getCatchSwitchParentPad() == FuncletToken) in cloneCommonBlocks()
1010 FixupCatchrets.push_back(CatchRet); in cloneCommonBlocks()
1012 for (CatchReturnInst *CatchRet : FixupCatchrets) in cloneCommonBlocks()
1013 CatchRet->setSuccessor(NewBlock); in cloneCommonBlocks()
1381 if (auto *CatchRet = in replaceUseWithLoad() local
1404 CatchRet->removeFromParent(); in replaceUseWithLoad()
1405 CatchRet->insertInto(IncomingBlock, IncomingBlock->end()); in replaceUseWithLoad()
1408 CatchRet->setSuccessor(NewBlock); in replaceUseWithLoad()
H A DTargetLoweringBase.cpp1856 case CatchRet: return 0; in InstructionOpcodeToISD()
/freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/
H A DValues.def83 DEF_INSTR(CatchRet, OP(CatchRet), CatchReturnInst)
H A DInstruction.h1626 : SingleLLVMInstructionImpl(ClassID::CatchRet, Opcode::CatchRet, CRI, in CatchReturnInst()
1643 return From->getSubclassID() == ClassID::CatchRet; in classof()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.h390 case Instruction::CatchRet:
845 case Instruction::CatchRet:
H A DInstruction.def135 HANDLE_TERM_INST ( 9, CatchRet , CatchReturnInst)
H A DInstructions.h4383 return (I->getOpcode() == Instruction::CatchRet);
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DAliasAnalysis.cpp507 ModRefInfo AAResults::getModRefInfo(const CatchReturnInst *CatchRet, in getModRefInfo() argument
585 case Instruction::CatchRet: in getModRefInfo()
H A DValueTracking.cpp7033 case Instruction::CatchRet: in isSafeToSpeculativelyExecuteWithOpcode()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/SandboxVectorizer/
H A DLegality.cpp178 case Instruction::Opcode::CatchRet: in notVectorizableBasedOnOpcodesAndTypes()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FrameLowering.h311 MachineInstr *CatchRet) const;
H A DX86FrameLowering.cpp3104 MachineInstr *CatchRet) const { in emitCatchRetReturnValue()
3109 const DebugLoc &DL = CatchRet->getDebugLoc(); in emitCatchRetReturnValue()
3110 MachineBasicBlock *CatchRetTarget = CatchRet->getOperand(0).getMBB(); in emitCatchRetReturnValue()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp959 INSTKEYWORD(catchret, CatchRet); in LexIdentifier()
/freebsd/contrib/llvm-project/llvm/lib/SandboxIR/
H A DContext.cpp171 case llvm::Instruction::CatchRet: { in getOrCreateValueInternal()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.h1104 case Instruction::CatchRet: in hasResult()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp3319 case Instruction::CatchRet: { in writeInstruction()