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

References

include/llvm/Support/Casting.h
   58     return To::classof(&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,
include/llvm/Transforms/Scalar/GVNExpression.h
  541   DeadExpression(const DeadExpression &) = delete;
  542   DeadExpression &operator=(const DeadExpression &) = delete;
  542   DeadExpression &operator=(const DeadExpression &) = delete;
lib/Transforms/Scalar/NewGVN.cpp
  616   DeadExpression *SingletonDeadExpression = nullptr;
  679   const DeadExpression *createDeadExpression() const;
 1220 const DeadExpression *NewGVN::createDeadExpression() const {
 2344   } else if (isa<DeadExpression>(E)) {
 3410   SingletonDeadExpression = new (ExpressionAllocator) DeadExpression();
 3765   else if (isa<DeadExpression>(E))
 3885         if (VTE && isa<DeadExpression>(VTE))