a7c1b126ffe4609856fa75b65cd2a53b1f2df4c4
[oota-llvm.git] / lib / Target / Mips / MipsSubtarget.h
1 //===-- MipsSubtarget.h - Define Subtarget for the Mips ---------*- C++ -*-===//
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 declares the Mips specific subclass of TargetSubtargetInfo.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef MIPSSUBTARGET_H
15 #define MIPSSUBTARGET_H
16
17 #include "MipsFrameLowering.h"
18 #include "MipsISelLowering.h"
19 #include "MipsInstrInfo.h"
20 #include "MipsJITInfo.h"
21 #include "MipsSelectionDAGInfo.h"
22 #include "llvm/IR/DataLayout.h"
23 #include "llvm/MC/MCInstrItineraries.h"
24 #include "llvm/Support/ErrorHandling.h"
25 #include "llvm/Target/TargetSubtargetInfo.h"
26 #include <string>
27
28 #define GET_SUBTARGETINFO_HEADER
29 #include "MipsGenSubtargetInfo.inc"
30
31 namespace llvm {
32 class StringRef;
33
34 class MipsTargetMachine;
35
36 class MipsSubtarget : public MipsGenSubtargetInfo {
37   virtual void anchor();
38
39 public:
40   // NOTE: O64 will not be supported.
41   enum MipsABIEnum {
42     UnknownABI, O32, N32, N64, EABI
43   };
44
45 protected:
46   enum MipsArchEnum {
47     Mips1, Mips2, Mips32, Mips32r2, Mips32r6, Mips3, Mips4, Mips5, Mips64,
48     Mips64r2, Mips64r6
49   };
50
51   // Mips architecture version
52   MipsArchEnum MipsArchVersion;
53
54   // Mips supported ABIs
55   MipsABIEnum MipsABI;
56
57   // IsLittle - The target is Little Endian
58   bool IsLittle;
59
60   // IsSingleFloat - The target only supports single precision float
61   // point operations. This enable the target to use all 32 32-bit
62   // floating point registers instead of only using even ones.
63   bool IsSingleFloat;
64
65   // IsFPXX - MIPS O32 modeless ABI.
66   bool IsFPXX;
67
68   // IsFP64bit - The target processor has 64-bit floating point registers.
69   bool IsFP64bit;
70
71   /// Are odd single-precision registers permitted?
72   /// This corresponds to -modd-spreg and -mno-odd-spreg
73   bool UseOddSPReg;
74
75   // IsNan2008 - IEEE 754-2008 NaN encoding.
76   bool IsNaN2008bit;
77
78   // IsFP64bit - General-purpose registers are 64 bits wide
79   bool IsGP64bit;
80
81   // HasVFPU - Processor has a vector floating point unit.
82   bool HasVFPU;
83
84   // CPU supports cnMIPS (Cavium Networks Octeon CPU).
85   bool HasCnMips;
86
87   // isLinux - Target system is Linux. Is false we consider ELFOS for now.
88   bool IsLinux;
89
90   // UseSmallSection - Small section is used.
91   bool UseSmallSection;
92
93   /// Features related to the presence of specific instructions.
94
95   // HasMips3_32 - The subset of MIPS-III instructions added to MIPS32
96   bool HasMips3_32;
97
98   // HasMips3_32r2 - The subset of MIPS-III instructions added to MIPS32r2
99   bool HasMips3_32r2;
100
101   // HasMips4_32 - Has the subset of MIPS-IV present in MIPS32
102   bool HasMips4_32;
103
104   // HasMips4_32r2 - Has the subset of MIPS-IV present in MIPS32r2
105   bool HasMips4_32r2;
106
107   // HasMips5_32r2 - Has the subset of MIPS-V present in MIPS32r2
108   bool HasMips5_32r2;
109
110   // InMips16 -- can process Mips16 instructions
111   bool InMips16Mode;
112
113   // Mips16 hard float
114   bool InMips16HardFloat;
115
116   // PreviousInMips16 -- the function we just processed was in Mips 16 Mode
117   bool PreviousInMips16Mode;
118
119   // InMicroMips -- can process MicroMips instructions
120   bool InMicroMipsMode;
121
122   // HasDSP, HasDSPR2 -- supports DSP ASE.
123   bool HasDSP, HasDSPR2;
124
125   // Allow mixed Mips16 and Mips32 in one source file
126   bool AllowMixed16_32;
127
128   // Optimize for space by compiling all functions as Mips 16 unless
129   // it needs floating point. Functions needing floating point are
130   // compiled as Mips32
131   bool Os16;
132
133   // HasMSA -- supports MSA ASE.
134   bool HasMSA;
135
136   InstrItineraryData InstrItins;
137
138   // We can override the determination of whether we are in mips16 mode
139   // as from the command line
140   enum {NoOverride, Mips16Override, NoMips16Override} OverrideMode;
141
142   MipsTargetMachine *TM;
143
144   Triple TargetTriple;
145
146   const DataLayout DL; // Calculates type size & alignment
147   const MipsSelectionDAGInfo TSInfo;
148   MipsJITInfo JITInfo;
149   std::unique_ptr<const MipsInstrInfo> InstrInfo;
150   std::unique_ptr<const MipsFrameLowering> FrameLowering;
151   std::unique_ptr<const MipsTargetLowering> TLInfo;
152   std::unique_ptr<const MipsInstrInfo> InstrInfo16;
153   std::unique_ptr<const MipsFrameLowering> FrameLowering16;
154   std::unique_ptr<const MipsTargetLowering> TLInfo16;
155   std::unique_ptr<const MipsInstrInfo> InstrInfoSE;
156   std::unique_ptr<const MipsFrameLowering> FrameLoweringSE;
157   std::unique_ptr<const MipsTargetLowering> TLInfoSE;
158
159 public:
160   /// This overrides the PostRAScheduler bit in the SchedModel for each CPU.
161   bool enablePostMachineScheduler() const override;
162   void getCriticalPathRCs(RegClassVector &CriticalPathRCs) const override;
163   CodeGenOpt::Level getOptLevelToEnablePostRAScheduler() const override;
164
165   /// Only O32 and EABI supported right now.
166   bool isABI_EABI() const { return MipsABI == EABI; }
167   bool isABI_N64() const { return MipsABI == N64; }
168   bool isABI_N32() const { return MipsABI == N32; }
169   bool isABI_O32() const { return MipsABI == O32; }
170   bool isABI_FPXX() const { return isABI_O32() && IsFPXX; }
171   unsigned getTargetABI() const { return MipsABI; }
172
173   /// This constructor initializes the data members to match that
174   /// of the specified triple.
175   MipsSubtarget(const std::string &TT, const std::string &CPU,
176                 const std::string &FS, bool little, MipsTargetMachine *TM);
177
178   /// ParseSubtargetFeatures - Parses features string setting specified
179   /// subtarget options.  Definition of function is auto generated by tblgen.
180   void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
181
182   bool hasMips1() const { return MipsArchVersion >= Mips1; }
183   bool hasMips2() const { return MipsArchVersion >= Mips2; }
184   bool hasMips3() const { return MipsArchVersion >= Mips3; }
185   bool hasMips4() const { return MipsArchVersion >= Mips4; }
186   bool hasMips5() const { return MipsArchVersion >= Mips5; }
187   bool hasMips4_32() const { return HasMips4_32; }
188   bool hasMips4_32r2() const { return HasMips4_32r2; }
189   bool hasMips32() const {
190     return MipsArchVersion >= Mips32 && MipsArchVersion != Mips3 &&
191            MipsArchVersion != Mips4 && MipsArchVersion != Mips5;
192   }
193   bool hasMips32r2() const {
194     return MipsArchVersion == Mips32r2 || MipsArchVersion == Mips32r6 ||
195            MipsArchVersion == Mips64r2 || MipsArchVersion == Mips64r6;
196   }
197   bool hasMips32r6() const {
198     return MipsArchVersion == Mips32r6 || MipsArchVersion == Mips64r6;
199   }
200   bool hasMips64() const { return MipsArchVersion >= Mips64; }
201   bool hasMips64r2() const {
202     return MipsArchVersion == Mips64r2 || MipsArchVersion == Mips64r6;
203   }
204   bool hasMips64r6() const { return MipsArchVersion == Mips64r6; }
205
206   bool hasCnMips() const { return HasCnMips; }
207
208   bool isLittle() const { return IsLittle; }
209   bool isFPXX() const { return IsFPXX; }
210   bool isFP64bit() const { return IsFP64bit; }
211   bool useOddSPReg() const { return UseOddSPReg; }
212   bool isNaN2008() const { return IsNaN2008bit; }
213   bool isNotFP64bit() const { return !IsFP64bit; }
214   bool isGP64bit() const { return IsGP64bit; }
215   bool isGP32bit() const { return !IsGP64bit; }
216   bool isSingleFloat() const { return IsSingleFloat; }
217   bool isNotSingleFloat() const { return !IsSingleFloat; }
218   bool hasVFPU() const { return HasVFPU; }
219   bool inMips16Mode() const {
220     switch (OverrideMode) {
221     case NoOverride:
222       return InMips16Mode;
223     case Mips16Override:
224       return true;
225     case NoMips16Override:
226       return false;
227     }
228     llvm_unreachable("Unexpected mode");
229   }
230   bool inMips16ModeDefault() const {
231     return InMips16Mode;
232   }
233   // Hard float for mips16 means essentially to compile as soft float
234   // but to use a runtime library for soft float that is written with
235   // native mips32 floating point instructions (those runtime routines
236   // run in mips32 hard float mode).
237   bool inMips16HardFloat() const {
238     return inMips16Mode() && InMips16HardFloat;
239   }
240   bool inMicroMipsMode() const { return InMicroMipsMode; }
241   bool hasDSP() const { return HasDSP; }
242   bool hasDSPR2() const { return HasDSPR2; }
243   bool hasMSA() const { return HasMSA; }
244   bool isLinux() const { return IsLinux; }
245   bool useSmallSection() const { return UseSmallSection; }
246
247   bool hasStandardEncoding() const { return !inMips16Mode(); }
248
249   bool abiUsesSoftFloat() const;
250
251   bool enableLongBranchPass() const {
252     return hasStandardEncoding() || allowMixed16_32();
253   }
254
255   /// Features related to the presence of specific instructions.
256   bool hasExtractInsert() const { return !inMips16Mode() && hasMips32r2(); }
257   bool hasMTHC1() const { return hasMips32r2(); }
258
259   const InstrItineraryData &getInstrItineraryData() const { return InstrItins; }
260   bool allowMixed16_32() const { return inMips16ModeDefault() |
261                                         AllowMixed16_32;}
262
263   bool os16() const { return Os16;};
264
265   bool isTargetNaCl() const { return TargetTriple.isOSNaCl(); }
266   bool isNotTargetNaCl() const { return !TargetTriple.isOSNaCl(); }
267
268   // for now constant islands are on for the whole compilation unit but we only
269   // really use them if in addition we are in mips16 mode
270   static bool useConstantIslands();
271
272   unsigned stackAlignment() const { return hasMips64() ? 16 : 8; }
273
274   // Grab relocation model
275   Reloc::Model getRelocationModel() const;
276
277   /// \brief Reset the subtarget for the Mips target.
278   void resetSubtarget(MachineFunction *MF);
279
280   MipsSubtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS,
281                                                  const TargetMachine *TM);
282
283   /// Does the system support unaligned memory access.
284   ///
285   /// MIPS32r6/MIPS64r6 require full unaligned access support but does not
286   /// specify which component of the system provides it. Hardware, software, and
287   /// hybrid implementations are all valid.
288   bool systemSupportsUnalignedAccess() const { return hasMips32r6(); }
289
290   // Set helper classes
291   void setHelperClassesMips16();
292   void setHelperClassesMipsSE();
293
294   MipsJITInfo *getJITInfo() { return &JITInfo; }
295   const MipsSelectionDAGInfo *getSelectionDAGInfo() const { return &TSInfo; }
296   const DataLayout *getDataLayout() const { return &DL; }
297   const MipsInstrInfo *getInstrInfo() const { return InstrInfo.get(); }
298   const TargetFrameLowering *getFrameLowering() const {
299     return FrameLowering.get();
300   }
301   const MipsRegisterInfo *getRegisterInfo() const {
302     return &InstrInfo->getRegisterInfo();
303   }
304   const MipsTargetLowering *getTargetLowering() const { return TLInfo.get(); }
305 };
306 } // End llvm namespace
307
308 #endif