Home
last modified time | relevance | path

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

/external/llvm/lib/Analysis/
DEHPersonalities.cpp97 if (auto *CatchRet = dyn_cast<CatchReturnInst>(Terminator)) { in colorEHFunclets() local
98 Value *ParentPad = CatchRet->getCatchSwitchParentPad(); in colorEHFunclets()
DAliasAnalysis.cpp381 ModRefInfo AAResults::getModRefInfo(const CatchReturnInst *CatchRet, in getModRefInfo() argument
DValueTracking.cpp3189 case Instruction::CatchRet: in isSafeToSpeculativelyExecute()
/external/llvm/lib/CodeGen/
DWinEHPrepare.cpp801 if (auto *CatchRet = dyn_cast<CatchReturnInst>(Pred->getTerminator())) in cloneCommonBlocks() local
802 if (CatchRet->getCatchSwitchParentPad() == FuncletToken) in cloneCommonBlocks()
803 FixupCatchrets.push_back(CatchRet); in cloneCommonBlocks()
805 for (CatchReturnInst *CatchRet : FixupCatchrets) in cloneCommonBlocks()
806 CatchRet->setSuccessor(NewBlock); in cloneCommonBlocks()
1176 if (auto *CatchRet = in replaceUseWithLoad() local
1199 CatchRet->removeFromParent(); in replaceUseWithLoad()
1200 IncomingBlock->getInstList().push_back(CatchRet); in replaceUseWithLoad()
1203 CatchRet->setSuccessor(NewBlock); in replaceUseWithLoad()
DTargetLoweringBase.cpp1668 case CatchRet: return 0; in InstructionOpcodeToISD()
/external/llvm/lib/IR/
DInstruction.cpp269 case CatchRet: return "catchret"; in getOpcodeName()
490 case Instruction::CatchRet: in mayReadFromMemory()
512 case Instruction::CatchRet: in mayWriteToMemory()
DInstructions.cpp949 : TerminatorInst(Type::getVoidTy(CRI.getContext()), Instruction::CatchRet, in CatchReturnInst()
957 : TerminatorInst(Type::getVoidTy(BB->getContext()), Instruction::CatchRet, in CatchReturnInst()
965 : 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.h4259 return (I->getOpcode() == Instruction::CatchRet);
/external/llvm/include/llvm/Analysis/
DAliasAnalysis.h497 case Instruction::CatchRet: in getModRefInfo()
/external/llvm/lib/AsmParser/
DLLLexer.cpp781 INSTKEYWORD(catchret, CatchRet); in LexIdentifier()
/external/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp2473 case Instruction::CatchRet: { in writeInstruction()