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 | |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 14 | #include "MipsMachineFunction.h" |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 15 | #include "Mips.h" |
Akira Hatanaka | 047473e | 2012-03-28 00:24:17 +0000 | [diff] [blame] | 16 | #include "MipsRegisterInfo.h" |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 17 | #include "MipsSubtarget.h" |
| 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 | // |
| 36 | static cl::opt<bool> Mixed16_32( |
| 37 | "mips-mixed-16-32", |
| 38 | cl::init(false), |
| 39 | cl::desc("Allow for a mixture of Mips16 " |
| 40 | "and Mips32 code in a single source file"), |
| 41 | cl::Hidden); |
| 42 | |
Reed Kotler | fe94cc3 | 2013-04-10 16:58:04 +0000 | [diff] [blame] | 43 | static cl::opt<bool> Mips_Os16( |
| 44 | "mips-os16", |
| 45 | cl::init(false), |
| 46 | cl::desc("Compile all functions that don' use " |
| 47 | "floating point as Mips 16"), |
| 48 | cl::Hidden); |
| 49 | |
Reed Kotler | 783c794 | 2013-05-10 22:25:39 +0000 | [diff] [blame] | 50 | static cl::opt<bool> |
| 51 | Mips16HardFloat("mips16-hard-float", cl::NotHidden, |
| 52 | cl::desc("MIPS: mips16 hard float enable."), |
| 53 | cl::init(false)); |
| 54 | |
Reed Kotler | 91ae982 | 2013-10-27 21:57:36 +0000 | [diff] [blame] | 55 | static cl::opt<bool> |
| 56 | Mips16ConstantIslands( |
Reed Kotler | 0d409e2 | 2013-11-28 00:56:37 +0000 | [diff] [blame] | 57 | "mips16-constant-islands", cl::NotHidden, |
| 58 | cl::desc("MIPS: mips16 constant islands enable."), |
| 59 | cl::init(true)); |
Reed Kotler | 91ae982 | 2013-10-27 21:57:36 +0000 | [diff] [blame] | 60 | |
Daniel Sanders | e70897f | 2014-02-20 13:13:33 +0000 | [diff] [blame] | 61 | /// Select the Mips CPU for the given triple and cpu name. |
| 62 | /// FIXME: Merge with the copy in MipsMCTargetDesc.cpp |
Eric Christopher | 5b336a2 | 2014-07-02 01:14:43 +0000 | [diff] [blame] | 63 | static StringRef selectMipsCPU(Triple TT, StringRef CPU) { |
Daniel Sanders | 737285e | 2014-02-26 10:20:15 +0000 | [diff] [blame] | 64 | if (CPU.empty() || CPU == "generic") { |
Eric Christopher | 5b336a2 | 2014-07-02 01:14:43 +0000 | [diff] [blame] | 65 | if (TT.getArch() == Triple::mips || TT.getArch() == Triple::mipsel) |
Daniel Sanders | e70897f | 2014-02-20 13:13:33 +0000 | [diff] [blame] | 66 | CPU = "mips32"; |
| 67 | else |
| 68 | CPU = "mips64"; |
| 69 | } |
| 70 | return CPU; |
| 71 | } |
| 72 | |
David Blaikie | a379b181 | 2011-12-20 02:50:00 +0000 | [diff] [blame] | 73 | void MipsSubtarget::anchor() { } |
| 74 | |
Eric Christopher | 5f9fd21 | 2014-07-02 21:29:23 +0000 | [diff] [blame] | 75 | static std::string computeDataLayout(const MipsSubtarget &ST) { |
| 76 | std::string Ret = ""; |
| 77 | |
| 78 | // There are both little and big endian mips. |
| 79 | if (ST.isLittle()) |
| 80 | Ret += "e"; |
| 81 | else |
| 82 | Ret += "E"; |
| 83 | |
| 84 | Ret += "-m:m"; |
| 85 | |
| 86 | // Pointers are 32 bit on some ABIs. |
| 87 | if (!ST.isABI_N64()) |
| 88 | Ret += "-p:32:32"; |
| 89 | |
| 90 | // 8 and 16 bit integers only need no have natural alignment, but try to |
| 91 | // align them to 32 bits. 64 bit integers have natural alignment. |
| 92 | Ret += "-i8:8:32-i16:16:32-i64:64"; |
| 93 | |
| 94 | // 32 bit registers are always available and the stack is at least 64 bit |
| 95 | // aligned. On N64 64 bit registers are also available and the stack is |
| 96 | // 128 bit aligned. |
| 97 | if (ST.isABI_N64() || ST.isABI_N32()) |
| 98 | Ret += "-n32:64-S128"; |
| 99 | else |
| 100 | Ret += "-n32-S64"; |
| 101 | |
| 102 | return Ret; |
| 103 | } |
| 104 | |
Evan Cheng | fe6e405 | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 105 | MipsSubtarget::MipsSubtarget(const std::string &TT, const std::string &CPU, |
Akira Hatanaka | ad49502 | 2012-08-22 03:18:13 +0000 | [diff] [blame] | 106 | const std::string &FS, bool little, |
Eric Christopher | f74faf4 | 2014-07-18 22:34:20 +0000 | [diff] [blame] | 107 | MipsTargetMachine *_TM) |
Matheus Almeida | 0051f2d | 2014-04-16 15:48:55 +0000 | [diff] [blame] | 108 | : MipsGenSubtargetInfo(TT, CPU, FS), MipsArchVersion(Mips32), |
| 109 | MipsABI(UnknownABI), IsLittle(little), IsSingleFloat(false), |
Daniel Sanders | feb6130 | 2014-08-08 15:47:17 +0000 | [diff] [blame^] | 110 | IsFPXX(false), NoABICalls(false), IsFP64bit(false), UseOddSPReg(true), |
Daniel Sanders | 35837ac | 2014-08-08 10:01:29 +0000 | [diff] [blame] | 111 | IsNaN2008bit(false), IsGP64bit(false), HasVFPU(false), HasCnMips(false), |
| 112 | IsLinux(true), HasMips3_32(false), HasMips3_32r2(false), |
| 113 | HasMips4_32(false), HasMips4_32r2(false), HasMips5_32r2(false), |
| 114 | InMips16Mode(false), InMips16HardFloat(Mips16HardFloat), |
| 115 | InMicroMipsMode(false), HasDSP(false), HasDSPR2(false), |
| 116 | AllowMixed16_32(Mixed16_32 | Mips_Os16), Os16(Mips_Os16), |
Eric Christopher | 4e7d1e7 | 2014-07-18 23:41:32 +0000 | [diff] [blame] | 117 | HasMSA(false), TM(_TM), TargetTriple(TT), |
Eric Christopher | daa9dbb | 2014-07-03 00:10:24 +0000 | [diff] [blame] | 118 | DL(computeDataLayout(initializeSubtargetDependencies(CPU, FS, TM))), |
Eric Christopher | b9fd9ed | 2014-08-07 22:02:54 +0000 | [diff] [blame] | 119 | TSInfo(DL), JITInfo(), InstrInfo(MipsInstrInfo::create(*this)), |
Eric Christopher | e54f10e | 2014-07-18 23:33:47 +0000 | [diff] [blame] | 120 | FrameLowering(MipsFrameLowering::create(*this)), |
Eric Christopher | 8924d27 | 2014-07-18 23:25:04 +0000 | [diff] [blame] | 121 | TLInfo(MipsTargetLowering::create(*TM, *this)) { |
Simon Atanasyan | 1093afe2 | 2013-11-19 12:20:17 +0000 | [diff] [blame] | 122 | |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 123 | PreviousInMips16Mode = InMips16Mode; |
| 124 | |
Daniel Sanders | d240953 | 2014-05-07 16:25:22 +0000 | [diff] [blame] | 125 | // Don't even attempt to generate code for MIPS-I, MIPS-II, MIPS-III, and |
| 126 | // MIPS-V. They have not been tested and currently exist for the integrated |
| 127 | // assembler only. |
| 128 | if (MipsArchVersion == Mips1) |
| 129 | report_fatal_error("Code generation for MIPS-I is not implemented", false); |
| 130 | if (MipsArchVersion == Mips2) |
| 131 | report_fatal_error("Code generation for MIPS-II is not implemented", false); |
| 132 | if (MipsArchVersion == Mips3) |
| 133 | report_fatal_error("Code generation for MIPS-III is not implemented", |
| 134 | false); |
| 135 | if (MipsArchVersion == Mips5) |
| 136 | report_fatal_error("Code generation for MIPS-V is not implemented", false); |
| 137 | |
Daniel Sanders | 5a1449d | 2014-02-20 14:58:19 +0000 | [diff] [blame] | 138 | // Assert exactly one ABI was chosen. |
| 139 | assert(MipsABI != UnknownABI); |
| 140 | assert((((getFeatureBits() & Mips::FeatureO32) != 0) + |
| 141 | ((getFeatureBits() & Mips::FeatureEABI) != 0) + |
| 142 | ((getFeatureBits() & Mips::FeatureN32) != 0) + |
| 143 | ((getFeatureBits() & Mips::FeatureN64) != 0)) == 1); |
Akira Hatanaka | 6de4d12 | 2011-09-21 02:45:29 +0000 | [diff] [blame] | 144 | |
| 145 | // Check if Architecture and ABI are compatible. |
Daniel Sanders | 5e94e68 | 2014-03-27 16:42:17 +0000 | [diff] [blame] | 146 | assert(((!isGP64bit() && (isABI_O32() || isABI_EABI())) || |
| 147 | (isGP64bit() && (isABI_N32() || isABI_N64()))) && |
Akira Hatanaka | 6de4d12 | 2011-09-21 02:45:29 +0000 | [diff] [blame] | 148 | "Invalid Arch & ABI pair."); |
| 149 | |
Daniel Sanders | 1b1e25b | 2013-09-27 10:08:31 +0000 | [diff] [blame] | 150 | if (hasMSA() && !isFP64bit()) |
| 151 | report_fatal_error("MSA requires a 64-bit FPU register file (FR=1 mode). " |
| 152 | "See -mattr=+fp64.", |
| 153 | false); |
| 154 | |
Daniel Sanders | 7e52742 | 2014-07-10 13:38:23 +0000 | [diff] [blame] | 155 | if (!isABI_O32() && !useOddSPReg()) |
Daniel Sanders | 7ddb0ab | 2014-07-14 13:08:14 +0000 | [diff] [blame] | 156 | report_fatal_error("-mattr=+nooddspreg requires the O32 ABI.", false); |
Daniel Sanders | 7e52742 | 2014-07-10 13:38:23 +0000 | [diff] [blame] | 157 | |
Sasa Stankovic | b976fee | 2014-07-14 09:40:29 +0000 | [diff] [blame] | 158 | if (IsFPXX && (isABI_N32() || isABI_N64())) |
| 159 | report_fatal_error("FPXX is not permitted for the N32/N64 ABI's.", false); |
| 160 | |
Daniel Sanders | b7f1c6f | 2014-05-09 09:46:21 +0000 | [diff] [blame] | 161 | if (hasMips32r6()) { |
| 162 | StringRef ISA = hasMips64r6() ? "MIPS64r6" : "MIPS32r6"; |
| 163 | |
| 164 | assert(isFP64bit()); |
| 165 | assert(isNaN2008()); |
| 166 | if (hasDSP()) |
| 167 | report_fatal_error(ISA + " is not compatible with the DSP ASE", false); |
| 168 | } |
| 169 | |
Bruno Cardoso Lopes | 80ab8f9 | 2008-07-14 14:42:54 +0000 | [diff] [blame] | 170 | // Is the target system Linux ? |
| 171 | if (TT.find("linux") == std::string::npos) |
| 172 | IsLinux = false; |
Akira Hatanaka | ad49502 | 2012-08-22 03:18:13 +0000 | [diff] [blame] | 173 | |
| 174 | // Set UseSmallSection. |
Daniel Sanders | a024fb0 | 2014-04-16 12:29:08 +0000 | [diff] [blame] | 175 | // TODO: Investigate the IsLinux check. I suspect it's really checking for |
| 176 | // bare-metal. |
Eric Christopher | f74faf4 | 2014-07-18 22:34:20 +0000 | [diff] [blame] | 177 | UseSmallSection = !IsLinux && (TM->getRelocationModel() == Reloc::Static); |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 178 | } |
Akira Hatanaka | 047473e | 2012-03-28 00:24:17 +0000 | [diff] [blame] | 179 | |
Sanjay Patel | a2f658d | 2014-07-15 22:39:58 +0000 | [diff] [blame] | 180 | /// This overrides the PostRAScheduler bit in the SchedModel for any CPU. |
| 181 | bool MipsSubtarget::enablePostMachineScheduler() const { return true; } |
| 182 | |
| 183 | void MipsSubtarget::getCriticalPathRCs(RegClassVector &CriticalPathRCs) const { |
Akira Hatanaka | 047473e | 2012-03-28 00:24:17 +0000 | [diff] [blame] | 184 | CriticalPathRCs.clear(); |
Sanjay Patel | a2f658d | 2014-07-15 22:39:58 +0000 | [diff] [blame] | 185 | CriticalPathRCs.push_back(isGP64bit() ? |
| 186 | &Mips::GPR64RegClass : &Mips::GPR32RegClass); |
| 187 | } |
| 188 | |
| 189 | CodeGenOpt::Level MipsSubtarget::getOptLevelToEnablePostRAScheduler() const { |
| 190 | return CodeGenOpt::Aggressive; |
Akira Hatanaka | 047473e | 2012-03-28 00:24:17 +0000 | [diff] [blame] | 191 | } |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 192 | |
Eric Christopher | daa9dbb | 2014-07-03 00:10:24 +0000 | [diff] [blame] | 193 | MipsSubtarget & |
| 194 | MipsSubtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS, |
| 195 | const TargetMachine *TM) { |
Eric Christopher | 5b336a2 | 2014-07-02 01:14:43 +0000 | [diff] [blame] | 196 | std::string CPUName = selectMipsCPU(TargetTriple, CPU); |
| 197 | |
| 198 | // Parse features string. |
| 199 | ParseSubtargetFeatures(CPUName, FS); |
| 200 | // Initialize scheduling itinerary for the specified CPU. |
| 201 | InstrItins = getInstrItineraryForCPU(CPUName); |
Eric Christopher | daa9dbb | 2014-07-03 00:10:24 +0000 | [diff] [blame] | 202 | |
Eric Christopher | 7394e23 | 2014-07-18 00:08:50 +0000 | [diff] [blame] | 203 | if (InMips16Mode && !TM->Options.UseSoftFloat) |
Eric Christopher | daa9dbb | 2014-07-03 00:10:24 +0000 | [diff] [blame] | 204 | InMips16HardFloat = true; |
Eric Christopher | daa9dbb | 2014-07-03 00:10:24 +0000 | [diff] [blame] | 205 | |
Eric Christopher | 5b336a2 | 2014-07-02 01:14:43 +0000 | [diff] [blame] | 206 | return *this; |
| 207 | } |
| 208 | |
Eric Christopher | 7394e23 | 2014-07-18 00:08:50 +0000 | [diff] [blame] | 209 | bool MipsSubtarget::abiUsesSoftFloat() const { |
Reed Kotler | c03807a | 2013-08-30 19:40:56 +0000 | [diff] [blame] | 210 | return TM->Options.UseSoftFloat && !InMips16HardFloat; |
| 211 | } |
Reed Kotler | 91ae982 | 2013-10-27 21:57:36 +0000 | [diff] [blame] | 212 | |
| 213 | bool MipsSubtarget::useConstantIslands() { |
| 214 | DEBUG(dbgs() << "use constant islands " << Mips16ConstantIslands << "\n"); |
| 215 | return Mips16ConstantIslands; |
| 216 | } |
Eric Christopher | f74faf4 | 2014-07-18 22:34:20 +0000 | [diff] [blame] | 217 | |
| 218 | Reloc::Model MipsSubtarget::getRelocationModel() const { |
| 219 | return TM->getRelocationModel(); |
| 220 | } |