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

References

utils/TableGen/GlobalISelEmitter.cpp
  157     if (Ty.isValid() != Other.Ty.isValid())
  158       return Ty.isValid() < Other.Ty.isValid();
  162     if (Ty.isVector() != Other.Ty.isVector())
  163       return Ty.isVector() < Other.Ty.isVector();
  164     if (Ty.isScalar() != Other.Ty.isScalar())
  165       return Ty.isScalar() < Other.Ty.isScalar();
  166     if (Ty.isPointer() != Other.Ty.isPointer())
  167       return Ty.isPointer() < Other.Ty.isPointer();
  169     if (Ty.isPointer() && Ty.getAddressSpace() != Other.Ty.getAddressSpace())
  170       return Ty.getAddressSpace() < Other.Ty.getAddressSpace();
  172     if (Ty.isVector() && Ty.getNumElements() != Other.Ty.getNumElements())
  173       return Ty.getNumElements() < Other.Ty.getNumElements();
  175     return Ty.getSizeInBits() < Other.Ty.getSizeInBits();