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

References

include/llvm/CodeGen/SelectionDAGAddressAnalysis.h
   48   SDValue getBase() { return Base; }
   49   SDValue getBase() const { return Base; }
lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
   26   if (!Base.getNode() || !Other.Base.getNode())
   26   if (!Base.getNode() || !Other.Base.getNode())
   35     if (Other.Base == Base)
   35     if (Other.Base == Base)
   39     if (auto *A = dyn_cast<GlobalAddressSDNode>(Base))
   40       if (auto *B = dyn_cast<GlobalAddressSDNode>(Other.Base))
   47     if (auto *A = dyn_cast<ConstantPoolSDNode>(Base))
   48       if (auto *B = dyn_cast<ConstantPoolSDNode>(Other.Base)) {
   66     if (auto *A = dyn_cast<FrameIndexSDNode>(Base))
   67       if (auto *B = dyn_cast<FrameIndexSDNode>(Other.Base)) {
  291   Base->print(OS);