Jia Liu | 9f61011 | 2012-02-17 08:55:11 +0000 | [diff] [blame] | 1 | //===-- MipsSubtarget.cpp - Mips Subtarget Information --------------------===// |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 7 | // |
Akira Hatanaka | e248912 | 2011-04-15 21:51:11 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 9 | // |
Evan Cheng | 0d639a2 | 2011-07-01 21:01:15 +0000 | [diff] [blame] | 10 | // This file implements the Mips specific subclass of TargetSubtargetInfo. |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 11 | // |
Akira Hatanaka | e248912 | 2011-04-15 21:51:11 +0000 | [diff] [blame] | 12 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 13 | |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 14 | #include "MipsSubtarget.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 15 | #include "Mips.h" |
| 16 | #include "MipsMachineFunction.h" |
| 17 | #include "MipsRegisterInfo.h" |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 18 | #include "MipsTargetMachine.h" |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 19 | #include "llvm/IR/Attributes.h" |
| 20 | #include "llvm/IR/Function.h" |
| 21 | #include "llvm/Support/CommandLine.h" |
| 22 | #include "llvm/Support/Debug.h" |
Evan Cheng | 2bb4035 | 2011-08-24 18:08:43 +0000 | [diff] [blame] | 23 | #include "llvm/Support/TargetRegistry.h" |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 24 | #include "llvm/Support/raw_ostream.h" |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 25 | |
Chandler Carruth | d174b72 | 2014-04-22 02:03:14 +0000 | [diff] [blame] | 26 | using namespace llvm; |
| 27 | |
Chandler Carruth | 84e68b2 | 2014-04-22 02:41:26 +0000 | [diff] [blame] | 28 | #define DEBUG_TYPE "mips-subtarget" |
| 29 | |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 30 | #define GET_SUBTARGETINFO_TARGET_DESC |
Evan Cheng | 4d1ca96 | 2011-07-08 01:53:10 +0000 | [diff] [blame] | 31 | #define GET_SUBTARGETINFO_CTOR |
Evan Cheng | c9c090d | 2011-07-01 22:36:09 +0000 | [diff] [blame] | 32 | #include "MipsGenSubtargetInfo.inc" |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 33 | |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 34 | // FIXME: Maybe this should be on by default when Mips16 is specified |
| 35 | // |
Eric Christopher | 0218f8c | 2015-02-20 08:42:34 +0000 | [diff] [blame] | 36 | static cl::opt<bool> |
| 37 | Mixed16_32("mips-mixed-16-32", cl::init(false), |
| 38 | cl::desc("Allow for a mixture of Mips16 " |
| 39 | "and Mips32 code in a single output file"), |
| 40 | cl::Hidden); |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 41 | |
Eric Christopher | 0218f8c | 2015-02-20 08:42:34 +0000 | [diff] [blame] | 42 | static cl::opt<bool> Mips_Os16("mips-os16", cl::init(false), |
| 43 | cl::desc("Compile all functions that don't use " |
| 44 | "floating point as Mips 16"), |
| 45 | cl::Hidden); |
| 46 | |
| 47 | static cl::opt<bool> Mips16HardFloat("mips16-hard-float", cl::NotHidden, |
| 48 | cl::desc("Enable mips16 hard float."), |
| 49 | cl::init(false)); |
Reed Kotler | fe94cc3 | 2013-04-10 16:58:04 +0000 | [diff] [blame] | 50 | |
Reed Kotler | 783c794 | 2013-05-10 22:25:39 +0000 | [diff] [blame] | 51 | static cl::opt<bool> |
Eric Christopher | 0218f8c | 2015-02-20 08:42:34 +0000 | [diff] [blame] | 52 | Mips16ConstantIslands("mips16-constant-islands", cl::NotHidden, |
| 53 | cl::desc("Enable mips16 constant islands."), |
| 54 | cl::init(true)); |
Reed Kotler | 783c794 | 2013-05-10 22:25:39 +0000 | [diff] [blame] | 55 | |
Reed Kotler | 91ae982 | 2013-10-27 21:57:36 +0000 | [diff] [blame] | 56 | static cl::opt<bool> |
Eric Christopher | 0218f8c | 2015-02-20 08:42:34 +0000 | [diff] [blame] | 57 | GPOpt("mgpopt", cl::Hidden, |
| 58 | cl::desc("Enable gp-relative addressing of mips small data items")); |
Sasa Stankovic | b38db1e | 2014-11-06 13:20:12 +0000 | [diff] [blame] | 59 | |
Petar Jovanovic | 29aced1 | 2018-01-22 16:43:30 +0000 | [diff] [blame^] | 60 | bool MipsSubtarget::DspWarningPrinted = false; |
| 61 | |
| 62 | bool MipsSubtarget::MSAWarningPrinted = false; |
| 63 | |
John Baldwin | 3a1a951 | 2017-08-11 18:35:19 +0000 | [diff] [blame] | 64 | void MipsSubtarget::anchor() {} |
David Blaikie | a379b181 | 2011-12-20 02:50:00 +0000 | [diff] [blame] | 65 | |
Simon Atanasyan | 039b02ec | 2017-05-23 15:00:26 +0000 | [diff] [blame] | 66 | MipsSubtarget::MipsSubtarget(const Triple &TT, StringRef CPU, StringRef FS, |
John Baldwin | 1255b16 | 2017-08-14 21:49:38 +0000 | [diff] [blame] | 67 | bool little, const MipsTargetMachine &TM, |
| 68 | unsigned StackAlignOverride) |
Daniel Sanders | 50f1723 | 2015-09-15 16:17:27 +0000 | [diff] [blame] | 69 | : MipsGenSubtargetInfo(TT, CPU, FS), MipsArchVersion(MipsDefault), |
| 70 | IsLittle(little), IsSoftFloat(false), IsSingleFloat(false), IsFPXX(false), |
| 71 | NoABICalls(false), IsFP64bit(false), UseOddSPReg(true), |
| 72 | IsNaN2008bit(false), IsGP64bit(false), HasVFPU(false), HasCnMips(false), |
| 73 | HasMips3_32(false), HasMips3_32r2(false), HasMips4_32(false), |
| 74 | HasMips4_32r2(false), HasMips5_32r2(false), InMips16Mode(false), |
| 75 | InMips16HardFloat(Mips16HardFloat), InMicroMipsMode(false), HasDSP(false), |
Zoran Jovanovic | 2e386d3 | 2015-10-12 16:07:25 +0000 | [diff] [blame] | 76 | HasDSPR2(false), HasDSPR3(false), AllowMixed16_32(Mixed16_32 | Mips_Os16), |
Simon Dardis | ca74dd7 | 2017-01-27 11:36:52 +0000 | [diff] [blame] | 77 | Os16(Mips_Os16), HasMSA(false), UseTCCInDIV(false), HasSym32(false), |
John Baldwin | 1255b16 | 2017-08-14 21:49:38 +0000 | [diff] [blame] | 78 | HasEVA(false), DisableMadd4(false), HasMT(false), |
| 79 | StackAlignOverride(StackAlignOverride), TM(TM), TargetTriple(TT), |
| 80 | TSInfo(), InstrInfo(MipsInstrInfo::create( |
| 81 | initializeSubtargetDependencies(CPU, FS, TM))), |
Eric Christopher | e54f10e | 2014-07-18 23:33:47 +0000 | [diff] [blame] | 82 | FrameLowering(MipsFrameLowering::create(*this)), |
Eric Christopher | 9072428 | 2015-01-08 18:18:57 +0000 | [diff] [blame] | 83 | TLInfo(MipsTargetLowering::create(TM, *this)) { |
Simon Atanasyan | 1093afe2 | 2013-11-19 12:20:17 +0000 | [diff] [blame] | 84 | |
Vasileios Kalintiris | b2dd15f | 2014-11-11 11:43:55 +0000 | [diff] [blame] | 85 | if (MipsArchVersion == MipsDefault) |
| 86 | MipsArchVersion = Mips32; |
| 87 | |
Vasileios Kalintiris | 8edbcad | 2014-12-12 15:16:46 +0000 | [diff] [blame] | 88 | // Don't even attempt to generate code for MIPS-I and MIPS-V. They have not |
| 89 | // been tested and currently exist for the integrated assembler only. |
Daniel Sanders | d240953 | 2014-05-07 16:25:22 +0000 | [diff] [blame] | 90 | if (MipsArchVersion == Mips1) |
| 91 | report_fatal_error("Code generation for MIPS-I is not implemented", false); |
Daniel Sanders | d240953 | 2014-05-07 16:25:22 +0000 | [diff] [blame] | 92 | if (MipsArchVersion == Mips5) |
| 93 | report_fatal_error("Code generation for MIPS-V is not implemented", false); |
| 94 | |
Akira Hatanaka | 6de4d12 | 2011-09-21 02:45:29 +0000 | [diff] [blame] | 95 | // Check if Architecture and ABI are compatible. |
Daniel Sanders | 43750eab | 2016-06-03 10:38:09 +0000 | [diff] [blame] | 96 | assert(((!isGP64bit() && isABI_O32()) || |
Daniel Sanders | 5e94e68 | 2014-03-27 16:42:17 +0000 | [diff] [blame] | 97 | (isGP64bit() && (isABI_N32() || isABI_N64()))) && |
Akira Hatanaka | 6de4d12 | 2011-09-21 02:45:29 +0000 | [diff] [blame] | 98 | "Invalid Arch & ABI pair."); |
| 99 | |
Daniel Sanders | 1b1e25b | 2013-09-27 10:08:31 +0000 | [diff] [blame] | 100 | if (hasMSA() && !isFP64bit()) |
| 101 | report_fatal_error("MSA requires a 64-bit FPU register file (FR=1 mode). " |
| 102 | "See -mattr=+fp64.", |
| 103 | false); |
| 104 | |
Daniel Sanders | 7e52742 | 2014-07-10 13:38:23 +0000 | [diff] [blame] | 105 | if (!isABI_O32() && !useOddSPReg()) |
Daniel Sanders | 7ddb0ab | 2014-07-14 13:08:14 +0000 | [diff] [blame] | 106 | report_fatal_error("-mattr=+nooddspreg requires the O32 ABI.", false); |
Daniel Sanders | 7e52742 | 2014-07-10 13:38:23 +0000 | [diff] [blame] | 107 | |
Sasa Stankovic | b976fee | 2014-07-14 09:40:29 +0000 | [diff] [blame] | 108 | if (IsFPXX && (isABI_N32() || isABI_N64())) |
| 109 | report_fatal_error("FPXX is not permitted for the N32/N64 ABI's.", false); |
| 110 | |
Aleksandar Beserminji | d6dada1 | 2017-12-11 11:21:40 +0000 | [diff] [blame] | 111 | if (hasMips64r6() && InMicroMipsMode) |
| 112 | report_fatal_error("microMIPS64R6 is not supported", false); |
| 113 | |
Daniel Sanders | b7f1c6f | 2014-05-09 09:46:21 +0000 | [diff] [blame] | 114 | if (hasMips32r6()) { |
| 115 | StringRef ISA = hasMips64r6() ? "MIPS64r6" : "MIPS32r6"; |
| 116 | |
| 117 | assert(isFP64bit()); |
| 118 | assert(isNaN2008()); |
| 119 | if (hasDSP()) |
| 120 | report_fatal_error(ISA + " is not compatible with the DSP ASE", false); |
| 121 | } |
| 122 | |
Rafael Espindola | b30e66b | 2016-06-28 14:33:28 +0000 | [diff] [blame] | 123 | if (NoABICalls && TM.isPositionIndependent()) |
Sasa Stankovic | b38db1e | 2014-11-06 13:20:12 +0000 | [diff] [blame] | 124 | report_fatal_error("position-independent code requires '-mabicalls'"); |
| 125 | |
Simon Dardis | ca74dd7 | 2017-01-27 11:36:52 +0000 | [diff] [blame] | 126 | if (isABI_N64() && !TM.isPositionIndependent() && !hasSym32()) |
| 127 | NoABICalls = true; |
| 128 | |
Akira Hatanaka | ad49502 | 2012-08-22 03:18:13 +0000 | [diff] [blame] | 129 | // Set UseSmallSection. |
Sasa Stankovic | b38db1e | 2014-11-06 13:20:12 +0000 | [diff] [blame] | 130 | UseSmallSection = GPOpt; |
| 131 | if (!NoABICalls && GPOpt) { |
| 132 | errs() << "warning: cannot use small-data accesses for '-mabicalls'" |
| 133 | << "\n"; |
| 134 | UseSmallSection = false; |
| 135 | } |
Petar Jovanovic | 29aced1 | 2018-01-22 16:43:30 +0000 | [diff] [blame^] | 136 | |
| 137 | if (hasDSPR2() && !DspWarningPrinted) { |
| 138 | if (hasMips64() && !hasMips64r2()) { |
| 139 | errs() << "warning: the 'dspr2' ASE requires MIPS64 revision 2 or " |
| 140 | << "greater\n"; |
| 141 | DspWarningPrinted = true; |
| 142 | } else if (hasMips32() && !hasMips32r2()) { |
| 143 | errs() << "warning: the 'dspr2' ASE requires MIPS32 revision 2 or " |
| 144 | << "greater\n"; |
| 145 | DspWarningPrinted = true; |
| 146 | } |
| 147 | } else if (hasDSP() && !DspWarningPrinted) { |
| 148 | if (hasMips64() && !hasMips64r2()) { |
| 149 | errs() << "warning: the 'dsp' ASE requires MIPS64 revision 2 or " |
| 150 | << "greater\n"; |
| 151 | DspWarningPrinted = true; |
| 152 | } else if (hasMips32() && !hasMips32r2()) { |
| 153 | errs() << "warning: the 'dsp' ASE requires MIPS32 revision 2 or " |
| 154 | << "greater\n"; |
| 155 | DspWarningPrinted = true; |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | if (hasMSA() && !MSAWarningPrinted) { |
| 160 | if (hasMips64() && !hasMips64r5()) { |
| 161 | errs() << "warning: the 'msa' ASE requires MIPS64 revision 5 or " |
| 162 | << "greater\n"; |
| 163 | MSAWarningPrinted = true; |
| 164 | } else if (hasMips32() && !hasMips32r5()) { |
| 165 | errs() << "warning: the 'msa' ASE requires MIPS32 revision 5 or " |
| 166 | << "greater\n"; |
| 167 | MSAWarningPrinted = true; |
| 168 | } |
| 169 | } |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 170 | } |
Akira Hatanaka | 047473e | 2012-03-28 00:24:17 +0000 | [diff] [blame] | 171 | |
Rafael Espindola | b30e66b | 2016-06-28 14:33:28 +0000 | [diff] [blame] | 172 | bool MipsSubtarget::isPositionIndependent() const { |
| 173 | return TM.isPositionIndependent(); |
| 174 | } |
| 175 | |
Sanjay Patel | a2f658d | 2014-07-15 22:39:58 +0000 | [diff] [blame] | 176 | /// This overrides the PostRAScheduler bit in the SchedModel for any CPU. |
Matthias Braun | 39a2afc | 2015-06-13 03:42:16 +0000 | [diff] [blame] | 177 | bool MipsSubtarget::enablePostRAScheduler() const { return true; } |
Sanjay Patel | a2f658d | 2014-07-15 22:39:58 +0000 | [diff] [blame] | 178 | |
| 179 | void MipsSubtarget::getCriticalPathRCs(RegClassVector &CriticalPathRCs) const { |
Akira Hatanaka | 047473e | 2012-03-28 00:24:17 +0000 | [diff] [blame] | 180 | CriticalPathRCs.clear(); |
John Baldwin | 3a1a951 | 2017-08-11 18:35:19 +0000 | [diff] [blame] | 181 | CriticalPathRCs.push_back(isGP64bit() ? &Mips::GPR64RegClass |
| 182 | : &Mips::GPR32RegClass); |
Sanjay Patel | a2f658d | 2014-07-15 22:39:58 +0000 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | CodeGenOpt::Level MipsSubtarget::getOptLevelToEnablePostRAScheduler() const { |
| 186 | return CodeGenOpt::Aggressive; |
Akira Hatanaka | 047473e | 2012-03-28 00:24:17 +0000 | [diff] [blame] | 187 | } |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 188 | |
Eric Christopher | daa9dbb | 2014-07-03 00:10:24 +0000 | [diff] [blame] | 189 | MipsSubtarget & |
| 190 | MipsSubtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS, |
Eric Christopher | 9072428 | 2015-01-08 18:18:57 +0000 | [diff] [blame] | 191 | const TargetMachine &TM) { |
Daniel Sanders | 50f1723 | 2015-09-15 16:17:27 +0000 | [diff] [blame] | 192 | std::string CPUName = MIPS_MC::selectMipsCPU(TM.getTargetTriple(), CPU); |
Eric Christopher | bbe6ff5 | 2015-02-18 00:55:06 +0000 | [diff] [blame] | 193 | |
Eric Christopher | 5b336a2 | 2014-07-02 01:14:43 +0000 | [diff] [blame] | 194 | // Parse features string. |
| 195 | ParseSubtargetFeatures(CPUName, FS); |
| 196 | // Initialize scheduling itinerary for the specified CPU. |
| 197 | InstrItins = getInstrItineraryForCPU(CPUName); |
Eric Christopher | daa9dbb | 2014-07-03 00:10:24 +0000 | [diff] [blame] | 198 | |
Toma Tabacu | 506cfd0 | 2015-05-07 10:29:52 +0000 | [diff] [blame] | 199 | if (InMips16Mode && !IsSoftFloat) |
Eric Christopher | daa9dbb | 2014-07-03 00:10:24 +0000 | [diff] [blame] | 200 | InMips16HardFloat = true; |
Eric Christopher | daa9dbb | 2014-07-03 00:10:24 +0000 | [diff] [blame] | 201 | |
John Baldwin | 1255b16 | 2017-08-14 21:49:38 +0000 | [diff] [blame] | 202 | if (StackAlignOverride) |
| 203 | stackAlignment = StackAlignOverride; |
| 204 | else if (isABI_N32() || isABI_N64()) |
| 205 | stackAlignment = 16; |
| 206 | else { |
| 207 | assert(isABI_O32() && "Unknown ABI for stack alignment!"); |
| 208 | stackAlignment = 8; |
| 209 | } |
| 210 | |
Eric Christopher | 5b336a2 | 2014-07-02 01:14:43 +0000 | [diff] [blame] | 211 | return *this; |
| 212 | } |
| 213 | |
Reed Kotler | 91ae982 | 2013-10-27 21:57:36 +0000 | [diff] [blame] | 214 | bool MipsSubtarget::useConstantIslands() { |
| 215 | DEBUG(dbgs() << "use constant islands " << Mips16ConstantIslands << "\n"); |
| 216 | return Mips16ConstantIslands; |
| 217 | } |
Eric Christopher | f74faf4 | 2014-07-18 22:34:20 +0000 | [diff] [blame] | 218 | |
| 219 | Reloc::Model MipsSubtarget::getRelocationModel() const { |
Eric Christopher | 9072428 | 2015-01-08 18:18:57 +0000 | [diff] [blame] | 220 | return TM.getRelocationModel(); |
Eric Christopher | f74faf4 | 2014-07-18 22:34:20 +0000 | [diff] [blame] | 221 | } |
Eric Christopher | a576281 | 2015-01-26 17:33:46 +0000 | [diff] [blame] | 222 | |
Eric Christopher | a576281 | 2015-01-26 17:33:46 +0000 | [diff] [blame] | 223 | bool MipsSubtarget::isABI_N64() const { return getABI().IsN64(); } |
| 224 | bool MipsSubtarget::isABI_N32() const { return getABI().IsN32(); } |
| 225 | bool MipsSubtarget::isABI_O32() const { return getABI().IsO32(); } |
| 226 | const MipsABIInfo &MipsSubtarget::getABI() const { return TM.getABI(); } |