Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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.cpp1750 case CatchRet: return 0; in InstructionOpcodeToISD()
/netbsd-src/external/apache2/llvm/dist/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.cpp4619 case Instruction::CatchRet: in isSafeToSpeculativelyExecute()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DInstruction.h233 case Instruction::CatchRet:
616 case Instruction::CatchRet:
H A DInstruction.def135 HANDLE_TERM_INST ( 9, CatchRet , CatchReturnInst)
H A DInstructions.h4530 return (I->getOpcode() == Instruction::CatchRet);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DInstruction.cpp328 case CatchRet: return "catchret"; in getOpcodeName()
552 case Instruction::CatchRet: in mayReadFromMemory()
572 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()
1082 : Instruction(Type::getVoidTy(BB->getContext()), Instruction::CatchRet, in CatchReturnInst()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86FrameLowering.h256 MachineInstr *CatchRet) const;
H A DX86FrameLowering.cpp2582 MachineInstr *CatchRet) const { in emitCatchRetReturnValue()
2587 const DebugLoc &DL = CatchRet->getDebugLoc(); in emitCatchRetReturnValue()
2588 MachineBasicBlock *CatchRetTarget = CatchRet->getOperand(0).getMBB(); in emitCatchRetReturnValue()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/AsmParser/
H A DLLLexer.cpp915 INSTKEYWORD(catchret, CatchRet); in LexIdentifier()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DVPlan.h840 case Instruction::CatchRet: in hasResult()
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
H A Dllvm.ml247 | CatchRet Constructor
H A Dllvm.mli271 | CatchRet Constructor
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2924 case Instruction::CatchRet: { in writeInstruction()