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 | #define DEBUG_TYPE "mips-subtarget" |
| 15 | |
| 16 | #include "MipsMachineFunction.h" |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 17 | #include "Mips.h" |
Akira Hatanaka | 047473e | 2012-03-28 00:24:17 +0000 | [diff] [blame] | 18 | #include "MipsRegisterInfo.h" |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 19 | #include "MipsSubtarget.h" |
| 20 | #include "MipsTargetMachine.h" |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 21 | #include "llvm/IR/Attributes.h" |
| 22 | #include "llvm/IR/Function.h" |
| 23 | #include "llvm/Support/CommandLine.h" |
| 24 | #include "llvm/Support/Debug.h" |
Evan Cheng | 2bb4035 | 2011-08-24 18:08:43 +0000 | [diff] [blame] | 25 | #include "llvm/Support/TargetRegistry.h" |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 26 | #include "llvm/Support/raw_ostream.h" |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 27 | |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 28 | #define GET_SUBTARGETINFO_TARGET_DESC |
Evan Cheng | 4d1ca96 | 2011-07-08 01:53:10 +0000 | [diff] [blame] | 29 | #define GET_SUBTARGETINFO_CTOR |
Evan Cheng | c9c090d | 2011-07-01 22:36:09 +0000 | [diff] [blame] | 30 | #include "MipsGenSubtargetInfo.inc" |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 31 | |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 32 | |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 33 | using namespace llvm; |
| 34 | |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 35 | // FIXME: Maybe this should be on by default when Mips16 is specified |
| 36 | // |
| 37 | static cl::opt<bool> Mixed16_32( |
| 38 | "mips-mixed-16-32", |
| 39 | cl::init(false), |
| 40 | cl::desc("Allow for a mixture of Mips16 " |
| 41 | "and Mips32 code in a single source file"), |
| 42 | cl::Hidden); |
| 43 | |
Reed Kotler | fe94cc3 | 2013-04-10 16:58:04 +0000 | [diff] [blame] | 44 | static cl::opt<bool> Mips_Os16( |
| 45 | "mips-os16", |
| 46 | cl::init(false), |
| 47 | cl::desc("Compile all functions that don' use " |
| 48 | "floating point as Mips 16"), |
| 49 | cl::Hidden); |
| 50 | |
Reed Kotler | 783c794 | 2013-05-10 22:25:39 +0000 | [diff] [blame] | 51 | static cl::opt<bool> |
| 52 | Mips16HardFloat("mips16-hard-float", cl::NotHidden, |
| 53 | cl::desc("MIPS: mips16 hard float enable."), |
| 54 | cl::init(false)); |
| 55 | |
Reed Kotler | 91ae982 | 2013-10-27 21:57:36 +0000 | [diff] [blame] | 56 | static cl::opt<bool> |
| 57 | Mips16ConstantIslands( |
Reed Kotler | 0d409e2 | 2013-11-28 00:56:37 +0000 | [diff] [blame] | 58 | "mips16-constant-islands", cl::NotHidden, |
| 59 | cl::desc("MIPS: mips16 constant islands enable."), |
| 60 | cl::init(true)); |
Reed Kotler | 91ae982 | 2013-10-27 21:57:36 +0000 | [diff] [blame] | 61 | |
Daniel Sanders | e70897f | 2014-02-20 13:13:33 +0000 | [diff] [blame] | 62 | /// Select the Mips CPU for the given triple and cpu name. |
| 63 | /// FIXME: Merge with the copy in MipsMCTargetDesc.cpp |
| 64 | static inline StringRef selectMipsCPU(StringRef TT, StringRef CPU) { |
| 65 | if (CPU.empty()) { |
| 66 | Triple TheTriple(TT); |
| 67 | if (TheTriple.getArch() == Triple::mips || |
| 68 | TheTriple.getArch() == Triple::mipsel) |
| 69 | CPU = "mips32"; |
| 70 | else |
| 71 | CPU = "mips64"; |
| 72 | } |
| 73 | return CPU; |
| 74 | } |
| 75 | |
David Blaikie | a379b181 | 2011-12-20 02:50:00 +0000 | [diff] [blame] | 76 | void MipsSubtarget::anchor() { } |
| 77 | |
Evan Cheng | fe6e405 | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 78 | MipsSubtarget::MipsSubtarget(const std::string &TT, const std::string &CPU, |
Akira Hatanaka | ad49502 | 2012-08-22 03:18:13 +0000 | [diff] [blame] | 79 | const std::string &FS, bool little, |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 80 | Reloc::Model _RM, MipsTargetMachine *_TM) : |
Evan Cheng | 1a72add6 | 2011-07-07 07:07:08 +0000 | [diff] [blame] | 81 | MipsGenSubtargetInfo(TT, CPU, FS), |
Jia Liu | f54f60f | 2012-02-28 07:46:26 +0000 | [diff] [blame] | 82 | MipsArchVersion(Mips32), MipsABI(UnknownABI), IsLittle(little), |
Akira Hatanaka | 1b185f4 | 2011-09-21 17:31:45 +0000 | [diff] [blame] | 83 | IsSingleFloat(false), IsFP64bit(false), IsGP64bit(false), HasVFPU(false), |
Akira Hatanaka | c5dc055 | 2012-12-07 03:04:05 +0000 | [diff] [blame] | 84 | IsLinux(true), HasSEInReg(false), HasCondMov(false), HasSwap(false), |
| 85 | HasBitCount(false), HasFPIdx(false), |
Reed Kotler | 783c794 | 2013-05-10 22:25:39 +0000 | [diff] [blame] | 86 | InMips16Mode(false), InMips16HardFloat(Mips16HardFloat), |
| 87 | InMicroMipsMode(false), HasDSP(false), HasDSPR2(false), |
Jack Carter | 3a2c2d4 | 2013-08-13 20:54:07 +0000 | [diff] [blame] | 88 | AllowMixed16_32(Mixed16_32 | Mips_Os16), Os16(Mips_Os16), HasMSA(false), |
Petar Jovanovic | 9725016 | 2014-02-05 17:19:30 +0000 | [diff] [blame] | 89 | RM(_RM), OverrideMode(NoOverride), TM(_TM), TargetTriple(TT) |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 90 | { |
Evan Cheng | fe6e405 | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 91 | std::string CPUName = CPU; |
Daniel Sanders | e70897f | 2014-02-20 13:13:33 +0000 | [diff] [blame] | 92 | CPUName = selectMipsCPU(TT, CPUName); |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 93 | |
| 94 | // Parse features string. |
Evan Cheng | 1a72add6 | 2011-07-07 07:07:08 +0000 | [diff] [blame] | 95 | ParseSubtargetFeatures(CPUName, FS); |
Bruno Cardoso Lopes | 80ab8f9 | 2008-07-14 14:42:54 +0000 | [diff] [blame] | 96 | |
Simon Atanasyan | 1093afe2 | 2013-11-19 12:20:17 +0000 | [diff] [blame] | 97 | if (InMips16Mode && !TM->Options.UseSoftFloat) { |
| 98 | // Hard float for mips16 means essentially to compile as soft float |
| 99 | // but to use a runtime library for soft float that is written with |
| 100 | // native mips32 floating point instructions (those runtime routines |
| 101 | // run in mips32 hard float mode). |
| 102 | TM->Options.UseSoftFloat = true; |
| 103 | TM->Options.FloatABIType = FloatABI::Soft; |
| 104 | InMips16HardFloat = true; |
| 105 | } |
| 106 | |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 107 | PreviousInMips16Mode = InMips16Mode; |
| 108 | |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 109 | // Initialize scheduling itinerary for the specified CPU. |
| 110 | InstrItins = getInstrItineraryForCPU(CPUName); |
| 111 | |
Daniel Sanders | 5a1449d | 2014-02-20 14:58:19 +0000 | [diff] [blame^] | 112 | // Assert exactly one ABI was chosen. |
| 113 | assert(MipsABI != UnknownABI); |
| 114 | assert((((getFeatureBits() & Mips::FeatureO32) != 0) + |
| 115 | ((getFeatureBits() & Mips::FeatureEABI) != 0) + |
| 116 | ((getFeatureBits() & Mips::FeatureN32) != 0) + |
| 117 | ((getFeatureBits() & Mips::FeatureN64) != 0)) == 1); |
Akira Hatanaka | 6de4d12 | 2011-09-21 02:45:29 +0000 | [diff] [blame] | 118 | |
| 119 | // Check if Architecture and ABI are compatible. |
| 120 | assert(((!hasMips64() && (isABI_O32() || isABI_EABI())) || |
| 121 | (hasMips64() && (isABI_N32() || isABI_N64()))) && |
| 122 | "Invalid Arch & ABI pair."); |
| 123 | |
Daniel Sanders | 1b1e25b | 2013-09-27 10:08:31 +0000 | [diff] [blame] | 124 | if (hasMSA() && !isFP64bit()) |
| 125 | report_fatal_error("MSA requires a 64-bit FPU register file (FR=1 mode). " |
| 126 | "See -mattr=+fp64.", |
| 127 | false); |
| 128 | |
Bruno Cardoso Lopes | 80ab8f9 | 2008-07-14 14:42:54 +0000 | [diff] [blame] | 129 | // Is the target system Linux ? |
| 130 | if (TT.find("linux") == std::string::npos) |
| 131 | IsLinux = false; |
Akira Hatanaka | ad49502 | 2012-08-22 03:18:13 +0000 | [diff] [blame] | 132 | |
| 133 | // Set UseSmallSection. |
| 134 | UseSmallSection = !IsLinux && (RM == Reloc::Static); |
Reed Kotler | 0eae85f | 2013-08-16 23:05:18 +0000 | [diff] [blame] | 135 | // set some subtarget specific features |
| 136 | if (inMips16Mode()) |
| 137 | HasBitCount=false; |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 138 | } |
Akira Hatanaka | 047473e | 2012-03-28 00:24:17 +0000 | [diff] [blame] | 139 | |
| 140 | bool |
| 141 | MipsSubtarget::enablePostRAScheduler(CodeGenOpt::Level OptLevel, |
Akira Hatanaka | 5fd2248 | 2012-06-14 21:10:56 +0000 | [diff] [blame] | 142 | TargetSubtargetInfo::AntiDepBreakMode &Mode, |
| 143 | RegClassVector &CriticalPathRCs) const { |
Akira Hatanaka | cf434ee | 2012-05-15 03:14:52 +0000 | [diff] [blame] | 144 | Mode = TargetSubtargetInfo::ANTIDEP_NONE; |
Akira Hatanaka | 047473e | 2012-03-28 00:24:17 +0000 | [diff] [blame] | 145 | CriticalPathRCs.clear(); |
| 146 | CriticalPathRCs.push_back(hasMips64() ? |
Akira Hatanaka | 13e6ccf | 2013-08-06 23:08:38 +0000 | [diff] [blame] | 147 | &Mips::GPR64RegClass : &Mips::GPR32RegClass); |
Akira Hatanaka | 2c67006 | 2012-03-28 00:52:23 +0000 | [diff] [blame] | 148 | return OptLevel >= CodeGenOpt::Aggressive; |
Akira Hatanaka | 047473e | 2012-03-28 00:24:17 +0000 | [diff] [blame] | 149 | } |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 150 | |
| 151 | //FIXME: This logic for reseting the subtarget along with |
| 152 | // the helper classes can probably be simplified but there are a lot of |
| 153 | // cases so we will defer rewriting this to later. |
| 154 | // |
| 155 | void MipsSubtarget::resetSubtarget(MachineFunction *MF) { |
| 156 | bool ChangeToMips16 = false, ChangeToNoMips16 = false; |
| 157 | DEBUG(dbgs() << "resetSubtargetFeatures" << "\n"); |
| 158 | AttributeSet FnAttrs = MF->getFunction()->getAttributes(); |
| 159 | ChangeToMips16 = FnAttrs.hasAttribute(AttributeSet::FunctionIndex, |
| 160 | "mips16"); |
| 161 | ChangeToNoMips16 = FnAttrs.hasAttribute(AttributeSet::FunctionIndex, |
| 162 | "nomips16"); |
| 163 | assert (!(ChangeToMips16 & ChangeToNoMips16) && |
| 164 | "mips16 and nomips16 specified on the same function"); |
| 165 | if (ChangeToMips16) { |
| 166 | if (PreviousInMips16Mode) |
| 167 | return; |
| 168 | OverrideMode = Mips16Override; |
| 169 | PreviousInMips16Mode = true; |
| 170 | TM->setHelperClassesMips16(); |
| 171 | return; |
| 172 | } else if (ChangeToNoMips16) { |
| 173 | if (!PreviousInMips16Mode) |
| 174 | return; |
| 175 | OverrideMode = NoMips16Override; |
| 176 | PreviousInMips16Mode = false; |
| 177 | TM->setHelperClassesMipsSE(); |
| 178 | return; |
| 179 | } else { |
| 180 | if (OverrideMode == NoOverride) |
| 181 | return; |
| 182 | OverrideMode = NoOverride; |
| 183 | DEBUG(dbgs() << "back to default" << "\n"); |
| 184 | if (inMips16Mode() && !PreviousInMips16Mode) { |
| 185 | TM->setHelperClassesMips16(); |
| 186 | PreviousInMips16Mode = true; |
| 187 | } else if (!inMips16Mode() && PreviousInMips16Mode) { |
| 188 | TM->setHelperClassesMipsSE(); |
| 189 | PreviousInMips16Mode = false; |
| 190 | } |
| 191 | return; |
| 192 | } |
| 193 | } |
| 194 | |
Reed Kotler | c03807a | 2013-08-30 19:40:56 +0000 | [diff] [blame] | 195 | bool MipsSubtarget::mipsSEUsesSoftFloat() const { |
| 196 | return TM->Options.UseSoftFloat && !InMips16HardFloat; |
| 197 | } |
Reed Kotler | 91ae982 | 2013-10-27 21:57:36 +0000 | [diff] [blame] | 198 | |
| 199 | bool MipsSubtarget::useConstantIslands() { |
| 200 | DEBUG(dbgs() << "use constant islands " << Mips16ConstantIslands << "\n"); |
| 201 | return Mips16ConstantIslands; |
| 202 | } |