reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/IR/Instruction.def
  135 HANDLE_TERM_INST  ( 9, CatchRet      , CatchReturnInst)
lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
   53 class CatchReturnInst;

References

include/llvm/Analysis/AliasAnalysis.h
  605   ModRefInfo getModRefInfo(const CatchReturnInst *I, const MemoryLocation &Loc);
  608   ModRefInfo getModRefInfo(const CatchReturnInst *I, const Value *P,
  717   ModRefInfo getModRefInfo(const CatchReturnInst *I, const MemoryLocation &Loc,
include/llvm/IR/IRBuilder.h
  845   InstTy *Insert(InstTy *I, const Twine &Name = "") const {
  845   InstTy *Insert(InstTy *I, const Twine &Name = "") const {
 1061   CatchReturnInst *CreateCatchRet(CatchPadInst *CatchPad, BasicBlock *BB) {
 1062     return Insert(CatchReturnInst::Create(CatchPad, BB));
include/llvm/IR/InstVisitor.h
  255   RetTy visitCatchReturnInst(CatchReturnInst &I) {
include/llvm/IR/Instructions.h
 4486   CatchReturnInst(const CatchReturnInst &RI);
 4496   CatchReturnInst *cloneImpl() const;
 4499   static CatchReturnInst *Create(Value *CatchPad, BasicBlock *BB,
 4503     return new (2) CatchReturnInst(CatchPad, BB, InsertBefore);
 4506   static CatchReturnInst *Create(Value *CatchPad, BasicBlock *BB,
 4510     return new (2) CatchReturnInst(CatchPad, BB, InsertAtEnd);
 4558     : public FixedNumOperandTraits<CatchReturnInst, 2> {};
include/llvm/IR/OperandTraits.h
   31   static Use *op_begin(SubClass* U) {
   33         !std::is_polymorphic<SubClass>::value,
   37   static Use *op_end(SubClass* U) {
include/llvm/IR/User.h
  127   template <int Idx, typename U> static Use &OpFrom(const U *that) {
  129       ? OperandTraits<U>::op_end(const_cast<U*>(that))[Idx]
  130       : OperandTraits<U>::op_begin(const_cast<U*>(that))[Idx];
include/llvm/Support/Casting.h
   58     return To::classof(&Val);
   77     return isa_impl<To, From>::doit(Val);
  106     return isa_impl<To, From>::doit(*Val);
  122     return isa_impl_wrap<To, SimpleFrom,
  132     return isa_impl_cl<To,FromTy>::doit(Val);
  142   return isa_impl_wrap<X, const Y,
  168   using ret_type = const To &; // Normal case, return Ty&
  172   using ret_type = To *;       // Pointer arg case, return Ty*
  176   using ret_type = const To *; // Constant pointer arg case, return const Ty*
  198   using ret_type = typename cast_retty<To, SimpleFrom>::ret_type;
  204   using ret_type = typename cast_retty_impl<To,FromTy>::ret_type;
  210       To, From, typename simplify_type<From>::SimpleType>::ret_type;
  227   static typename cast_retty<To, FromTy>::ret_type doit(const FromTy &Val) {
  228     typename cast_retty<To, FromTy>::ret_type Res2
  256 inline typename cast_retty<X, Y>::ret_type cast(Y &Val) {
  258   return cast_convert_val<X, Y,
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  265   return cast_convert_val<X, Y*,
  337 LLVM_NODISCARD inline typename cast_retty<X, Y>::ret_type dyn_cast(Y &Val) {
  342 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type dyn_cast(Y *Val) {
  343   return isa<X>(Val) ? cast<X>(Val) : nullptr;
  343   return isa<X>(Val) ? cast<X>(Val) : nullptr;
  366 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type
  368   return (Val && isa<X>(Val)) ? cast<X>(Val) : nullptr;
  368   return (Val && isa<X>(Val)) ? cast<X>(Val) : nullptr;
lib/Analysis/AliasAnalysis.cpp
  555 ModRefInfo AAResults::getModRefInfo(const CatchReturnInst *CatchRet,
  561 ModRefInfo AAResults::getModRefInfo(const CatchReturnInst *CatchRet,
lib/Analysis/EHPersonalities.cpp
  123     if (auto *CatchRet = dyn_cast<CatchReturnInst>(Terminator)) {
  123     if (auto *CatchRet = dyn_cast<CatchReturnInst>(Terminator)) {
lib/Analysis/InlineCost.cpp
  289   bool visitCatchReturnInst(CatchReturnInst &RI);
 1526 bool CallAnalyzer::visitCatchReturnInst(CatchReturnInst &CRI) {
lib/AsmParser/LLParser.cpp
 6221   Inst = CatchReturnInst::Create(CatchPad, BB);
lib/Bitcode/Reader/BitcodeReader.cpp
 4284       I = CatchReturnInst::Create(CatchPad, BB);
lib/Bitcode/Writer/BitcodeWriter.cpp
 2798     const auto &CRI = cast<CatchReturnInst>(I);
 2798     const auto &CRI = cast<CatchReturnInst>(I);
lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
 1596 void SelectionDAGBuilder::visitCatchRet(const CatchReturnInst &I) {
lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
  638   void visitCatchRet(const CatchReturnInst &I);
lib/CodeGen/WinEHPrepare.cpp
  807     SmallVector<CatchReturnInst *, 2> FixupCatchrets;
  814         if (auto *CatchRet = dyn_cast<CatchReturnInst>(Pred->getTerminator()))
  814         if (auto *CatchRet = dyn_cast<CatchReturnInst>(Pred->getTerminator()))
  818       for (CatchReturnInst *CatchRet : FixupCatchrets)
  828         if (auto *CRI =
  829                 dyn_cast<CatchReturnInst>(IncomingBlock->getTerminator())) {
  984       if (auto *CRI = dyn_cast<CatchReturnInst>(TI))
  984       if (auto *CRI = dyn_cast<CatchReturnInst>(TI))
 1182     if (auto *CatchRet =
 1183             dyn_cast<CatchReturnInst>(IncomingBlock->getTerminator())) {
lib/IR/AsmWriter.cpp
 3824   } else if (const auto *CRI = dyn_cast<CatchReturnInst>(&I)) {
 3824   } else if (const auto *CRI = dyn_cast<CatchReturnInst>(&I)) {
lib/IR/Instructions.cpp
  965 CatchReturnInst::CatchReturnInst(const CatchReturnInst &CRI)
  967                   OperandTraits<CatchReturnInst>::op_begin(this), 2) {
  975                   OperandTraits<CatchReturnInst>::op_begin(this), 2,
  983                   OperandTraits<CatchReturnInst>::op_begin(this), 2,
 4294 CatchReturnInst *CatchReturnInst::cloneImpl() const {
 4295   return new (getNumOperands()) CatchReturnInst(*this);
lib/IR/Verifier.cpp
  490   void visitCatchReturnInst(CatchReturnInst &CatchReturn);
 3735 void Verifier::visitCatchReturnInst(CatchReturnInst &CatchReturn) {
lib/Target/X86/X86WinEHState.cpp
  570     if (isa<CatchReturnInst>(PredBB->getTerminator()))
  594   if (isa<CatchReturnInst>(BB->getTerminator()))
lib/Transforms/Instrumentation/MemorySanitizer.cpp
 3622   void visitCatchReturnInst(CatchReturnInst &CRI) {
lib/Transforms/Utils/CodeExtractor.cpp
  150         if (const auto *CRI = dyn_cast<CatchReturnInst>(U))
  150         if (const auto *CRI = dyn_cast<CatchReturnInst>(U))