Home
last modified time | relevance | path

Searched refs:CatchReturnInst (Results 1 – 22 of 22) sorted by relevance

/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp822 SmallVector<CatchReturnInst *, 2> FixupCatchrets; in cloneCommonBlocks()
829 if (auto *CatchRet = dyn_cast<CatchReturnInst>(Pred->getTerminator())) in cloneCommonBlocks()
833 for (CatchReturnInst *CatchRet : FixupCatchrets) in cloneCommonBlocks()
844 dyn_cast<CatchReturnInst>(IncomingBlock->getTerminator())) { in cloneCommonBlocks()
999 if (auto *CRI = dyn_cast<CatchReturnInst>(TI)) in removeImplausibleInstructions()
1195 dyn_cast<CatchReturnInst>(IncomingBlock->getTerminator())) { in replaceUseWithLoad()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DEHPersonalities.cpp131 if (auto *CatchRet = dyn_cast<CatchReturnInst>(Terminator)) { in colorEHFunclets()
H A DAliasAnalysis.cpp597 ModRefInfo AAResults::getModRefInfo(const CatchReturnInst *CatchRet, in getModRefInfo()
603 ModRefInfo AAResults::getModRefInfo(const CatchReturnInst *CatchRet, in getModRefInfo()
704 return getModRefInfo((const CatchReturnInst *)I, Loc, AAQIP); in getModRefInfo()
H A DInlineCost.cpp450 bool visitCatchReturnInst(CatchReturnInst &RI);
2352 bool CallAnalyzer::visitCatchReturnInst(CatchReturnInst &CRI) { in visitCatchReturnInst()
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h58 class CatchReturnInst; variable
808 ModRefInfo getModRefInfo(const CatchReturnInst *I, const MemoryLocation &Loc);
811 ModRefInfo getModRefInfo(const CatchReturnInst *I, const Value *P,
921 ModRefInfo getModRefInfo(const CatchReturnInst *I, const MemoryLocation &Loc,
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DInstructions.h4549 class CatchReturnInst : public Instruction {
4550 CatchReturnInst(const CatchReturnInst &RI);
4552 CatchReturnInst(Value *CatchPad, BasicBlock *BB, BasicBlock *InsertAtEnd);
4560 CatchReturnInst *cloneImpl() const;
4563 static CatchReturnInst *Create(Value *CatchPad, BasicBlock *BB,
4567 return new (2) CatchReturnInst(CatchPad, BB, InsertBefore);
4570 static CatchReturnInst *Create(Value *CatchPad, BasicBlock *BB,
4574 return new (2) CatchReturnInst(CatchPad, BB, InsertAtEnd);
4621 struct OperandTraits<CatchReturnInst>
4622 : public FixedNumOperandTraits<CatchReturnInst, 2> {};
[all …]
H A DInstVisitor.h248 RetTy visitCatchReturnInst(CatchReturnInst &I) { in visitCatchReturnInst()
H A DInstruction.def135 HANDLE_TERM_INST ( 9, CatchRet , CatchReturnInst)
H A DIRBuilder.h1129 CatchReturnInst *CreateCatchRet(CatchPadInst *CatchPad, BasicBlock *BB) { in CreateCatchRet()
1130 return Insert(CatchReturnInst::Create(CatchPad, BB)); in CreateCatchRet()
/llvm-project-15.0.7/llvm/lib/IR/
H A DInstructions.cpp1097 void CatchReturnInst::init(Value *CatchPad, BasicBlock *BB) { in init()
1102 CatchReturnInst::CatchReturnInst(const CatchReturnInst &CRI) in CatchReturnInst() function in CatchReturnInst
1104 OperandTraits<CatchReturnInst>::op_begin(this), 2) { in CatchReturnInst()
1109 CatchReturnInst::CatchReturnInst(Value *CatchPad, BasicBlock *BB, in CatchReturnInst() function in CatchReturnInst
1112 OperandTraits<CatchReturnInst>::op_begin(this), 2, in CatchReturnInst()
1117 CatchReturnInst::CatchReturnInst(Value *CatchPad, BasicBlock *BB, in CatchReturnInst() function in CatchReturnInst
1120 OperandTraits<CatchReturnInst>::op_begin(this), 2, in CatchReturnInst()
4826 CatchReturnInst *CatchReturnInst::cloneImpl() const { in cloneImpl()
4827 return new (getNumOperands()) CatchReturnInst(*this); in cloneImpl()
H A DVerifier.cpp548 void visitCatchReturnInst(CatchReturnInst &CatchReturn);
4159 void Verifier::visitCatchReturnInst(CatchReturnInst &CatchReturn) { in visitCatchReturnInst()
4224 Check(isa<CatchReturnInst>(U), "Bogus funclet pad use", U); in visitFuncletPadInst()
H A DAsmWriter.cpp4094 } else if (const auto *CRI = dyn_cast<CatchReturnInst>(&I)) { in printInstruction()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h50 class CatchReturnInst; variable
456 void visitCatchRet(const CatchReturnInst &I);
H A DSelectionDAGBuilder.cpp1703 void SelectionDAGBuilder::visitCatchRet(const CatchReturnInst &I) { in visitCatchRet()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86WinEHState.cpp562 if (isa<CatchReturnInst>(PredBB->getTerminator())) in getPredState()
586 if (isa<CatchReturnInst>(BB->getTerminator())) in getSuccState()
/llvm-project-15.0.7/llvm/test/Verifier/
H A Dinvalid-eh.ll35 ;T1: ; CHECK1: CatchReturnInst needs to be provided a CatchPad
45 ;T2: ; CHECK2: CatchReturnInst needs to be provided a CatchPad
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp151 if (const auto *CRI = dyn_cast<CatchReturnInst>(U)) in isBlockValidForExtraction()
/llvm-project-15.0.7/llvm/include/llvm-c/
H A DCore.h1653 macro(CatchReturnInst) \
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp4058 void visitCatchReturnInst(CatchReturnInst &CRI) { in visitCatchReturnInst()
/llvm-project-15.0.7/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2972 const auto &CRI = cast<CatchReturnInst>(I); in writeInstruction()
/llvm-project-15.0.7/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp5153 I = CatchReturnInst::Create(CatchPad, BB); in parseFunctionBody()
/llvm-project-15.0.7/llvm/lib/AsmParser/
H A DLLParser.cpp6548 Inst = CatchReturnInst::Create(CatchPad, BB); in parseCatchRet()