6b977fade361e131441b6ef97293f7de4fff3969
[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 #include "MipsMachineFunction.h"
15 #include "Mips.h"
16 #include "MipsRegisterInfo.h"
17 #include "MipsSubtarget.h"
18 #include "MipsTargetMachine.h"
19 #include "llvm/IR/Attributes.h"
20 #include "llvm/IR/Function.h"
21 #include "llvm/Support/CommandLine.h"
22 #include "llvm/Support/Debug.h"
23 #include "llvm/Support/TargetRegistry.h"
24 #include "llvm/Support/raw_ostream.h"
25
26 using namespace llvm;
27
28 #define DEBUG_TYPE "mips-subtarget"
29
30 #define GET_SUBTARGETINFO_TARGET_DESC
31 #define GET_SUBTARGETINFO_CTOR
32 #include "MipsGenSubtargetInfo.inc"
33
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
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
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
55 static cl::opt<bool>
56 Mips16ConstantIslands(
57   "mips16-constant-islands", cl::NotHidden,
58   cl::desc("MIPS: mips16 constant islands enable."),
59   cl::init(true));
60
61 static cl::opt<bool>
62 GPOpt("mgpopt", cl::Hidden,
63       cl::desc("MIPS: Enable gp-relative addressing of small data items"));
64
65 void MipsSubtarget::anchor() { }
66
67 static std::string computeDataLayout(const MipsSubtarget &ST) {
68   std::string Ret = "";
69
70   // There are both little and big endian mips.
71   if (ST.isLittle())
72     Ret += "e";
73   else
74     Ret += "E";
75
76   Ret += "-m:m";
77
78   // Pointers are 32 bit on some ABIs.
79   if (!ST.isABI_N64())
80     Ret += "-p:32:32";
81
82   // 8 and 16 bit integers only need no have natural alignment, but try to
83   // align them to 32 bits. 64 bit integers have natural alignment.
84   Ret += "-i8:8:32-i16:16:32-i64:64";
85
86   // 32 bit registers are always available and the stack is at least 64 bit
87   // aligned. On N64 64 bit registers are also available and the stack is
88   // 128 bit aligned.
89   if (ST.isABI_N64() || ST.isABI_N32())
90     Ret += "-n32:64-S128";
91   else
92     Ret += "-n32-S64";
93
94   return Ret;
95 }
96
97 MipsSubtarget::MipsSubtarget(const std::string &TT, const std::string &CPU,
98                              const std::string &FS, bool little,
99                              const MipsTargetMachine &TM)
100     : MipsGenSubtargetInfo(TT, CPU, FS), MipsArchVersion(MipsDefault),
101       IsLittle(little), IsSingleFloat(false), IsFPXX(false), NoABICalls(false),
102       IsFP64bit(false), UseOddSPReg(true), IsNaN2008bit(false),
103       IsGP64bit(false), HasVFPU(false), HasCnMips(false), HasMips3_32(false),
104       HasMips3_32r2(false), HasMips4_32(false), HasMips4_32r2(false),
105       HasMips5_32r2(false), InMips16Mode(false),
106       InMips16HardFloat(Mips16HardFloat), InMicroMipsMode(false), HasDSP(false),
107       HasDSPR2(false), AllowMixed16_32(Mixed16_32 | Mips_Os16), Os16(Mips_Os16),
108       HasMSA(false), TM(TM), TargetTriple(TT),
109       DL(computeDataLayout(initializeSubtargetDependencies(CPU, FS, TM))),
110       TSInfo(DL), InstrInfo(MipsInstrInfo::create(*this)),
111       FrameLowering(MipsFrameLowering::create(*this)),
112       TLInfo(MipsTargetLowering::create(TM, *this)) {
113
114   PreviousInMips16Mode = InMips16Mode;
115
116   if (MipsArchVersion == MipsDefault)
117     MipsArchVersion = Mips32;
118
119   // Don't even attempt to generate code for MIPS-I and MIPS-V. They have not
120   // been tested and currently exist for the integrated assembler only.
121   if (MipsArchVersion == Mips1)
122     report_fatal_error("Code generation for MIPS-I is not implemented", false);
123   if (MipsArchVersion == Mips5)
124     report_fatal_error("Code generation for MIPS-V is not implemented", false);
125
126   // Check if Architecture and ABI are compatible.
127   assert(((!isGP64bit() && (isABI_O32() || isABI_EABI())) ||
128           (isGP64bit() && (isABI_N32() || isABI_N64()))) &&
129          "Invalid  Arch & ABI pair.");
130
131   if (hasMSA() && !isFP64bit())
132     report_fatal_error("MSA requires a 64-bit FPU register file (FR=1 mode). "
133                        "See -mattr=+fp64.",
134                        false);
135
136   if (!isABI_O32() && !useOddSPReg())
137     report_fatal_error("-mattr=+nooddspreg requires the O32 ABI.", false);
138
139   if (IsFPXX && (isABI_N32() || isABI_N64()))
140     report_fatal_error("FPXX is not permitted for the N32/N64 ABI's.", false);
141
142   if (hasMips32r6()) {
143     StringRef ISA = hasMips64r6() ? "MIPS64r6" : "MIPS32r6";
144
145     assert(isFP64bit());
146     assert(isNaN2008());
147     if (hasDSP())
148       report_fatal_error(ISA + " is not compatible with the DSP ASE", false);
149   }
150
151   if (NoABICalls && TM.getRelocationModel() == Reloc::PIC_)
152     report_fatal_error("position-independent code requires '-mabicalls'");
153
154   // Set UseSmallSection.
155   UseSmallSection = GPOpt;
156   if (!NoABICalls && GPOpt) {
157     errs() << "warning: cannot use small-data accesses for '-mabicalls'"
158            << "\n";
159     UseSmallSection = false;
160   }
161 }
162
163 /// This overrides the PostRAScheduler bit in the SchedModel for any CPU.
164 bool MipsSubtarget::enablePostMachineScheduler() const { return true; }
165
166 void MipsSubtarget::getCriticalPathRCs(RegClassVector &CriticalPathRCs) const {
167   CriticalPathRCs.clear();
168   CriticalPathRCs.push_back(isGP64bit() ?
169                             &Mips::GPR64RegClass : &Mips::GPR32RegClass);
170 }
171
172 CodeGenOpt::Level MipsSubtarget::getOptLevelToEnablePostRAScheduler() const {
173   return CodeGenOpt::Aggressive;
174 }
175
176 /// Select the Mips CPU for the given triple and cpu name.
177 /// FIXME: Merge with the copy in MipsMCTargetDesc.cpp
178 static StringRef selectMipsCPU(Triple TT, StringRef CPU) {
179   if (CPU.empty() || CPU == "generic") {
180     if (TT.getArch() == Triple::mips || TT.getArch() == Triple::mipsel)
181       CPU = "mips32";
182     else
183       CPU = "mips64";
184   }
185   return CPU;
186 }
187
188 MipsSubtarget &
189 MipsSubtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS,
190                                                const TargetMachine &TM) {
191   std::string CPUName = selectMipsCPU(TargetTriple, CPU);
192   
193   // Parse features string.
194   ParseSubtargetFeatures(CPUName, FS);
195   // Initialize scheduling itinerary for the specified CPU.
196   InstrItins = getInstrItineraryForCPU(CPUName);
197
198   if (InMips16Mode && !TM.Options.UseSoftFloat)
199     InMips16HardFloat = true;
200
201   return *this;
202 }
203
204 bool MipsSubtarget::abiUsesSoftFloat() const {
205   return TM.Options.UseSoftFloat && !InMips16HardFloat;
206 }
207
208 bool MipsSubtarget::useConstantIslands() {
209   DEBUG(dbgs() << "use constant islands " << Mips16ConstantIslands << "\n");
210   return Mips16ConstantIslands;
211 }
212
213 Reloc::Model MipsSubtarget::getRelocationModel() const {
214   return TM.getRelocationModel();
215 }
216
217 bool MipsSubtarget::isABI_EABI() const { return getABI().IsEABI(); }
218 bool MipsSubtarget::isABI_N64() const { return getABI().IsN64(); }
219 bool MipsSubtarget::isABI_N32() const { return getABI().IsN32(); }
220 bool MipsSubtarget::isABI_O32() const { return getABI().IsO32(); }
221 const MipsABIInfo &MipsSubtarget::getABI() const { return TM.getABI(); }