Lines Matching refs:MipsABIInfo
1 //===---- MipsABIInfo.h - Information about MIPS ABI's --------------------===//
24 class MipsABIInfo {
32 MipsABIInfo(ABI ThisABI) : ThisABI(ThisABI) {}
34 static MipsABIInfo Unknown() { return MipsABIInfo(ABI::Unknown); }
35 static MipsABIInfo O32() { return MipsABIInfo(ABI::O32); }
36 static MipsABIInfo N32() { return MipsABIInfo(ABI::N32); }
37 static MipsABIInfo N64() { return MipsABIInfo(ABI::N64); }
38 static MipsABIInfo computeTargetABI(const Triple &TT, StringRef CPU,
60 bool operator<(const MipsABIInfo Other) const {