Home
last modified time | relevance | path

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

/external/llvm/lib/Analysis/
DEHPersonalities.cpp94 if (auto *CatchRet = dyn_cast<CatchReturnInst>(Terminator)) { in colorEHFunclets() local
95 Value *ParentPad = CatchRet->getParentPad(); in colorEHFunclets()
DAliasAnalysis.cpp263 ModRefInfo AAResults::getModRefInfo(const CatchReturnInst *CatchRet, in getModRefInfo() argument
DValueTracking.cpp3440 case Instruction::CatchRet: in isSafeToSpeculativelyExecute()
/external/llvm/lib/CodeGen/
DWinEHPrepare.cpp539 const auto *CatchRet = dyn_cast<CatchReturnInst>(BB.getTerminator()); in calculateCatchReturnSuccessorColors() local
540 if (!CatchRet) in calculateCatchReturnSuccessorColors()
543 Value *ParentPad = CatchRet->getParentPad(); in calculateCatchReturnSuccessorColors()
550 FuncInfo.CatchRetSuccessorColorMap[CatchRet] = Color; in calculateCatchReturnSuccessorColors()
1015 if (auto *CatchRet = in replaceUseWithLoad() local
1038 CatchRet->removeFromParent(); in replaceUseWithLoad()
1039 IncomingBlock->getInstList().push_back(CatchRet); in replaceUseWithLoad()
1042 CatchRet->setSuccessor(NewBlock); in replaceUseWithLoad()
DTargetLoweringBase.cpp1550 case CatchRet: return 0; in InstructionOpcodeToISD()
/external/llvm/lib/IR/
DInstruction.cpp206 case CatchRet: return "catchret"; in getOpcodeName()
423 case Instruction::CatchRet: in mayReadFromMemory()
445 case Instruction::CatchRet: in mayWriteToMemory()
DInstructions.cpp831 : TerminatorInst(Type::getVoidTy(CRI.getContext()), Instruction::CatchRet, in CatchReturnInst()
839 : TerminatorInst(Type::getVoidTy(BB->getContext()), Instruction::CatchRet, in CatchReturnInst()
847 : TerminatorInst(Type::getVoidTy(BB->getContext()), Instruction::CatchRet, in CatchReturnInst()
/external/llvm/include/llvm/IR/
DInstruction.def118 HANDLE_TERM_INST ( 9, CatchRet , CatchReturnInst)
DInstrTypes.h86 case Instruction::CatchRet: in isExceptional()
DInstructions.h4142 return (I->getOpcode() == Instruction::CatchRet);
/external/llvm/include/llvm/Analysis/
DAliasAnalysis.h486 case Instruction::CatchRet: in getModRefInfo()
/external/llvm/lib/AsmParser/
DLLLexer.cpp766 INSTKEYWORD(catchret, CatchRet); in LexIdentifier()
/external/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp1988 case Instruction::CatchRet: { in WriteInstruction()