Searched refs:CatchRet (Results 1 – 13 of 13) sorted by relevance
/external/llvm/lib/Analysis/ |
D | EHPersonalities.cpp | 94 if (auto *CatchRet = dyn_cast<CatchReturnInst>(Terminator)) { in colorEHFunclets() local 95 Value *ParentPad = CatchRet->getParentPad(); in colorEHFunclets()
|
D | AliasAnalysis.cpp | 263 ModRefInfo AAResults::getModRefInfo(const CatchReturnInst *CatchRet, in getModRefInfo() argument
|
D | ValueTracking.cpp | 3440 case Instruction::CatchRet: in isSafeToSpeculativelyExecute()
|
/external/llvm/lib/CodeGen/ |
D | WinEHPrepare.cpp | 539 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()
|
D | TargetLoweringBase.cpp | 1550 case CatchRet: return 0; in InstructionOpcodeToISD()
|
/external/llvm/lib/IR/ |
D | Instruction.cpp | 206 case CatchRet: return "catchret"; in getOpcodeName() 423 case Instruction::CatchRet: in mayReadFromMemory() 445 case Instruction::CatchRet: in mayWriteToMemory()
|
D | Instructions.cpp | 831 : 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/ |
D | Instruction.def | 118 HANDLE_TERM_INST ( 9, CatchRet , CatchReturnInst)
|
D | InstrTypes.h | 86 case Instruction::CatchRet: in isExceptional()
|
D | Instructions.h | 4142 return (I->getOpcode() == Instruction::CatchRet);
|
/external/llvm/include/llvm/Analysis/ |
D | AliasAnalysis.h | 486 case Instruction::CatchRet: in getModRefInfo()
|
/external/llvm/lib/AsmParser/ |
D | LLLexer.cpp | 766 INSTKEYWORD(catchret, CatchRet); in LexIdentifier()
|
/external/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 1988 case Instruction::CatchRet: { in WriteInstruction()
|