[mips] Correct r206370 to account for non-Linux targets using the small data section.
[oota-llvm.git] / lib / Target / Mips / MipsSubtarget.cpp
1 //===-- MipsSubtarget.cpp - Mips Subtarget Information --------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the Mips specific subclass of TargetSubtargetInfo.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #define DEBUG_TYPE "mips-subtarget"
15
16 #include "MipsMachineFunction.h"
17 #include "Mips.h"
18 #include "MipsRegisterInfo.h"
19 #include "MipsSubtarget.h"
20 #include "MipsTargetMachine.h"
21 #include "llvm/IR/Attributes.h"
22 #include "llvm/IR/Function.h"
23 #include "llvm/Support/CommandLine.h"
24 #include "llvm/Support/Debug.h"
25 #include "llvm/Support/TargetRegistry.h"
26 #include "llvm/Support/raw_ostream.h"
27
28 #define GET_SUBTARGETINFO_TARGET_DESC
29 #define GET_SUBTARGETINFO_CTOR
30 #include "MipsGenSubtargetInfo.inc"
31
32
33 using namespace llvm;
34
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
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
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
56 static cl::opt<bool>
57 Mips16ConstantIslands(
58   "mips16-constant-islands", cl::NotHidden,
59   cl::desc("MIPS: mips16 constant islands enable."),
60   cl::init(true));
61
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() || CPU == "generic") {
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
76 void MipsSubtarget::anchor() { }
77
78 MipsSubtarget::MipsSubtarget(const std::string &TT, const std::string &CPU,
79                              const std::string &FS, bool little,
80                              Reloc::Model _RM, MipsTargetMachine *_TM) :
81   MipsGenSubtargetInfo(TT, CPU, FS),
82   MipsArchVersion(Mips32), MipsABI(UnknownABI), IsLittle(little),
83   IsSingleFloat(false), IsFP64bit(false), IsGP64bit(false), HasVFPU(false),
84   HasCnMips(false), IsLinux(true), HasSEInReg(false), HasCondMov(false),
85   HasSwap(false), HasBitCount(false), HasFPIdx(false),
86   InMips16Mode(false), InMips16HardFloat(Mips16HardFloat),
87   InMicroMipsMode(false), HasDSP(false), HasDSPR2(false),
88   AllowMixed16_32(Mixed16_32 | Mips_Os16), Os16(Mips_Os16), HasMSA(false),
89   RM(_RM), OverrideMode(NoOverride), TM(_TM), TargetTriple(TT)
90 {
91   std::string CPUName = CPU;
92   CPUName = selectMipsCPU(TT, CPUName);
93
94   // Parse features string.
95   ParseSubtargetFeatures(CPUName, FS);
96
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
107   PreviousInMips16Mode = InMips16Mode;
108
109   // Initialize scheduling itinerary for the specified CPU.
110   InstrItins = getInstrItineraryForCPU(CPUName);
111
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);
118
119   // Check if Architecture and ABI are compatible.
120   assert(((!isGP64bit() && (isABI_O32() || isABI_EABI())) ||
121           (isGP64bit() && (isABI_N32() || isABI_N64()))) &&
122          "Invalid  Arch & ABI pair.");
123
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
129   // Is the target system Linux ?
130   if (TT.find("linux") == std::string::npos)
131     IsLinux = false;
132
133   // Set UseSmallSection.
134   // TODO: Investigate the IsLinux check. I suspect it's really checking for
135   //       bare-metal.
136   UseSmallSection = !IsLinux && (RM == Reloc::Static);
137   // set some subtarget specific features
138   if (inMips16Mode())
139     HasBitCount=false;
140 }
141
142 bool
143 MipsSubtarget::enablePostRAScheduler(CodeGenOpt::Level OptLevel,
144                                     TargetSubtargetInfo::AntiDepBreakMode &Mode,
145                                      RegClassVector &CriticalPathRCs) const {
146   Mode = TargetSubtargetInfo::ANTIDEP_NONE;
147   CriticalPathRCs.clear();
148   CriticalPathRCs.push_back(isGP64bit() ? &Mips::GPR64RegClass
149                                         : &Mips::GPR32RegClass);
150   return OptLevel >= CodeGenOpt::Aggressive;
151 }
152
153 //FIXME: This logic for reseting the subtarget along with
154 // the helper classes can probably be simplified but there are a lot of
155 // cases so we will defer rewriting this to later.
156 //
157 void MipsSubtarget::resetSubtarget(MachineFunction *MF) {
158   bool ChangeToMips16 = false, ChangeToNoMips16 = false;
159   DEBUG(dbgs() << "resetSubtargetFeatures" << "\n");
160   AttributeSet FnAttrs = MF->getFunction()->getAttributes();
161   ChangeToMips16 = FnAttrs.hasAttribute(AttributeSet::FunctionIndex,
162                                         "mips16");
163   ChangeToNoMips16 = FnAttrs.hasAttribute(AttributeSet::FunctionIndex,
164                                         "nomips16");
165   assert (!(ChangeToMips16 & ChangeToNoMips16) &&
166           "mips16 and nomips16 specified on the same function");
167   if (ChangeToMips16) {
168     if (PreviousInMips16Mode)
169       return;
170     OverrideMode = Mips16Override;
171     PreviousInMips16Mode = true;
172     TM->setHelperClassesMips16();
173     return;
174   } else if (ChangeToNoMips16) {
175     if (!PreviousInMips16Mode)
176       return;
177     OverrideMode = NoMips16Override;
178     PreviousInMips16Mode = false;
179     TM->setHelperClassesMipsSE();
180     return;
181   } else {
182     if (OverrideMode == NoOverride)
183       return;
184     OverrideMode = NoOverride;
185     DEBUG(dbgs() << "back to default" << "\n");
186     if (inMips16Mode() && !PreviousInMips16Mode) {
187       TM->setHelperClassesMips16();
188       PreviousInMips16Mode = true;
189     } else if (!inMips16Mode() && PreviousInMips16Mode) {
190       TM->setHelperClassesMipsSE();
191       PreviousInMips16Mode = false;
192     }
193     return;
194   }
195 }
196
197 bool MipsSubtarget::mipsSEUsesSoftFloat() const {
198   return TM->Options.UseSoftFloat && !InMips16HardFloat;
199 }
200
201 bool MipsSubtarget::useConstantIslands() {
202   DEBUG(dbgs() << "use constant islands " << Mips16ConstantIslands << "\n");
203   return Mips16ConstantIslands;
204 }