Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DEHPersonalities.cpp124 if (auto *CatchRet = dyn_cast<CatchReturnInst>(Terminator)) { in colorEHFunclets() local
125 Value *ParentPad = CatchRet->getCatchSwitchParentPad(); in colorEHFunclets()
H A DAliasAnalysis.cpp488 ModRefInfo AAResults::getModRefInfo(const CatchReturnInst *CatchRet, in getModRefInfo() argument
H A DValueTracking.cpp3918 case Instruction::CatchRet: in isSafeToSpeculativelyExecute()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp815 if (auto *CatchRet = dyn_cast<CatchReturnInst>(Pred->getTerminator())) in cloneCommonBlocks() local
816 if (CatchRet->getCatchSwitchParentPad() == FuncletToken) in cloneCommonBlocks()
817 FixupCatchrets.push_back(CatchRet); in cloneCommonBlocks()
819 for (CatchReturnInst *CatchRet : FixupCatchrets) in cloneCommonBlocks()
820 CatchRet->setSuccessor(NewBlock); in cloneCommonBlocks()
1182 if (auto *CatchRet = in replaceUseWithLoad() local
1205 CatchRet->removeFromParent(); in replaceUseWithLoad()
1206 IncomingBlock->getInstList().push_back(CatchRet); in replaceUseWithLoad()
1209 CatchRet->setSuccessor(NewBlock); in replaceUseWithLoad()
H A DTargetLoweringBase.cpp1453 case CatchRet: return 0; in InstructionOpcodeToISD()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DInstruction.h196 case Instruction::CatchRet:
549 case Instruction::CatchRet:
H A DInstruction.def136 HANDLE_TERM_INST ( 9, CatchRet , CatchReturnInst)
H A DInstructions.h4237 return (I->getOpcode() == Instruction::CatchRet);
/freebsd-12.1/contrib/llvm/lib/IR/
H A DInstruction.cpp302 case CatchRet: return "catchret"; in getOpcodeName()
516 case Instruction::CatchRet: in mayReadFromMemory()
536 case Instruction::CatchRet: in mayWriteToMemory()
H A DInstructions.cpp821 : Instruction(Type::getVoidTy(CRI.getContext()), Instruction::CatchRet, in CatchReturnInst()
829 : Instruction(Type::getVoidTy(BB->getContext()), Instruction::CatchRet, in CatchReturnInst()
837 : Instruction(Type::getVoidTy(BB->getContext()), Instruction::CatchRet, in CatchReturnInst()
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86FrameLowering.h216 MachineInstr *CatchRet) const;
H A DX86FrameLowering.cpp2096 MachineInstr *CatchRet) const { in emitCatchRetReturnValue()
2101 DebugLoc DL = CatchRet->getDebugLoc(); in emitCatchRetReturnValue()
2102 MachineBasicBlock *CatchRetTarget = CatchRet->getOperand(0).getMBB(); in emitCatchRetReturnValue()
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h624 case Instruction::CatchRet: in getModRefInfo()
/freebsd-12.1/contrib/llvm/lib/AsmParser/
H A DLLLexer.cpp878 INSTKEYWORD(catchret, CatchRet); in LexIdentifier()
/freebsd-12.1/contrib/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2744 case Instruction::CatchRet: { in writeInstruction()