]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Target/Mips/MipsSubtarget.h
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm / 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 LLVM_LIB_TARGET_MIPS_MIPSSUBTARGET_H
15 #define LLVM_LIB_TARGET_MIPS_MIPSSUBTARGET_H
16
17 #include "MCTargetDesc/MipsABIInfo.h"
18 #include "MipsFrameLowering.h"
19 #include "MipsISelLowering.h"
20 #include "MipsInstrInfo.h"
21 #include "llvm/CodeGen/SelectionDAGTargetInfo.h"
22 #include "llvm/CodeGen/TargetSubtargetInfo.h"
23 #include "llvm/CodeGen/GlobalISel/CallLowering.h"
24 #include "llvm/CodeGen/GlobalISel/LegalizerInfo.h"
25 #include "llvm/CodeGen/GlobalISel/RegisterBankInfo.h"
26 #include "llvm/CodeGen/GlobalISel/InstructionSelector.h"
27 #include "llvm/IR/DataLayout.h"
28 #include "llvm/MC/MCInstrItineraries.h"
29 #include "llvm/Support/ErrorHandling.h"
30 #include <string>
31
32 #define GET_SUBTARGETINFO_HEADER
33 #include "MipsGenSubtargetInfo.inc"
34
35 namespace llvm {
36 class StringRef;
37
38 class MipsTargetMachine;
39
40 class MipsSubtarget : public MipsGenSubtargetInfo {
41   virtual void anchor();
42
43   enum MipsArchEnum {
44     MipsDefault,
45     Mips1, Mips2, Mips32, Mips32r2, Mips32r3, Mips32r5, Mips32r6, Mips32Max,
46     Mips3, Mips4, Mips5, Mips64, Mips64r2, Mips64r3, Mips64r5, Mips64r6
47   };
48
49   enum class CPU { P5600 };
50
51   // Used to avoid printing dsp warnings multiple times.
52   static bool DspWarningPrinted;
53
54   // Used to avoid printing msa warnings multiple times.
55   static bool MSAWarningPrinted;
56
57   // Used to avoid printing crc warnings multiple times.
58   static bool CRCWarningPrinted;
59
60   // Used to avoid printing ginv warnings multiple times.
61   static bool GINVWarningPrinted;
62
63   // Used to avoid printing virt warnings multiple times.
64   static bool VirtWarningPrinted;
65
66   // Mips architecture version
67   MipsArchEnum MipsArchVersion;
68
69   // Processor implementation (unused but required to exist by
70   // tablegen-erated code).
71   CPU ProcImpl;
72
73   // IsLittle - The target is Little Endian
74   bool IsLittle;
75
76   // IsSoftFloat - The target does not support any floating point instructions.
77   bool IsSoftFloat;
78
79   // IsSingleFloat - The target only supports single precision float
80   // point operations. This enable the target to use all 32 32-bit
81   // floating point registers instead of only using even ones.
82   bool IsSingleFloat;
83
84   // IsFPXX - MIPS O32 modeless ABI.
85   bool IsFPXX;
86
87   // NoABICalls - Disable SVR4-style position-independent code.
88   bool NoABICalls;
89
90   // IsFP64bit - The target processor has 64-bit floating point registers.
91   bool IsFP64bit;
92
93   /// Are odd single-precision registers permitted?
94   /// This corresponds to -modd-spreg and -mno-odd-spreg
95   bool UseOddSPReg;
96
97   // IsNan2008 - IEEE 754-2008 NaN encoding.
98   bool IsNaN2008bit;
99
100   // IsGP64bit - General-purpose registers are 64 bits wide
101   bool IsGP64bit;
102
103   // IsPTR64bit - Pointers are 64 bit wide
104   bool IsPTR64bit;
105
106   // HasVFPU - Processor has a vector floating point unit.
107   bool HasVFPU;
108
109   // CPU supports cnMIPS (Cavium Networks Octeon CPU).
110   bool HasCnMips;
111
112   // isLinux - Target system is Linux. Is false we consider ELFOS for now.
113   bool IsLinux;
114
115   // UseSmallSection - Small section is used.
116   bool UseSmallSection;
117
118   /// Features related to the presence of specific instructions.
119
120   // HasMips3_32 - The subset of MIPS-III instructions added to MIPS32
121   bool HasMips3_32;
122
123   // HasMips3_32r2 - The subset of MIPS-III instructions added to MIPS32r2
124   bool HasMips3_32r2;
125
126   // HasMips4_32 - Has the subset of MIPS-IV present in MIPS32
127   bool HasMips4_32;
128
129   // HasMips4_32r2 - Has the subset of MIPS-IV present in MIPS32r2
130   bool HasMips4_32r2;
131
132   // HasMips5_32r2 - Has the subset of MIPS-V present in MIPS32r2
133   bool HasMips5_32r2;
134
135   // InMips16 -- can process Mips16 instructions
136   bool InMips16Mode;
137
138   // Mips16 hard float
139   bool InMips16HardFloat;
140
141   // InMicroMips -- can process MicroMips instructions
142   bool InMicroMipsMode;
143
144   // HasDSP, HasDSPR2, HasDSPR3 -- supports DSP ASE.
145   bool HasDSP, HasDSPR2, HasDSPR3;
146
147   // Allow mixed Mips16 and Mips32 in one source file
148   bool AllowMixed16_32;
149
150   // Optimize for space by compiling all functions as Mips 16 unless
151   // it needs floating point. Functions needing floating point are
152   // compiled as Mips32
153   bool Os16;
154
155   // HasMSA -- supports MSA ASE.
156   bool HasMSA;
157
158   // UseTCCInDIV -- Enables the use of trapping in the assembler.
159   bool UseTCCInDIV;
160
161   // Sym32 -- On Mips64 symbols are 32 bits.
162   bool HasSym32;
163
164   // HasEVA -- supports EVA ASE.
165   bool HasEVA;
166
167   // nomadd4 - disables generation of 4-operand madd.s, madd.d and
168   // related instructions.
169   bool DisableMadd4;
170
171   // HasMT -- support MT ASE.
172   bool HasMT;
173
174   // HasCRC -- supports R6 CRC ASE
175   bool HasCRC;
176
177   // HasVirt -- supports Virtualization ASE
178   bool HasVirt;
179
180   // HasGINV -- supports R6 Global INValidate ASE
181   bool HasGINV;
182
183   // Use hazard variants of the jump register instructions for indirect
184   // function calls and jump tables.
185   bool UseIndirectJumpsHazard;
186
187   // Disable use of the `jal` instruction.
188   bool UseLongCalls = false;
189
190   /// The minimum alignment known to hold of the stack frame on
191   /// entry to the function and which must be maintained by every function.
192   unsigned stackAlignment;
193
194   /// The overridden stack alignment.
195   unsigned StackAlignOverride;
196
197   InstrItineraryData InstrItins;
198
199   // We can override the determination of whether we are in mips16 mode
200   // as from the command line
201   enum {NoOverride, Mips16Override, NoMips16Override} OverrideMode;
202
203   const MipsTargetMachine &TM;
204
205   Triple TargetTriple;
206
207   const SelectionDAGTargetInfo TSInfo;
208   std::unique_ptr<const MipsInstrInfo> InstrInfo;
209   std::unique_ptr<const MipsFrameLowering> FrameLowering;
210   std::unique_ptr<const MipsTargetLowering> TLInfo;
211
212 public:
213   bool isPositionIndependent() const;
214   /// This overrides the PostRAScheduler bit in the SchedModel for each CPU.
215   bool enablePostRAScheduler() const override;
216   void getCriticalPathRCs(RegClassVector &CriticalPathRCs) const override;
217   CodeGenOpt::Level getOptLevelToEnablePostRAScheduler() const override;
218
219   bool isABI_N64() const;
220   bool isABI_N32() const;
221   bool isABI_O32() const;
222   const MipsABIInfo &getABI() const;
223   bool isABI_FPXX() const { return isABI_O32() && IsFPXX; }
224
225   /// This constructor initializes the data members to match that
226   /// of the specified triple.
227   MipsSubtarget(const Triple &TT, StringRef CPU, StringRef FS, bool little,
228                 const MipsTargetMachine &TM, unsigned StackAlignOverride);
229
230   /// ParseSubtargetFeatures - Parses features string setting specified
231   /// subtarget options.  Definition of function is auto generated by tblgen.
232   void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
233
234   bool hasMips1() const { return MipsArchVersion >= Mips1; }
235   bool hasMips2() const { return MipsArchVersion >= Mips2; }
236   bool hasMips3() const { return MipsArchVersion >= Mips3; }
237   bool hasMips4() const { return MipsArchVersion >= Mips4; }
238   bool hasMips5() const { return MipsArchVersion >= Mips5; }
239   bool hasMips4_32() const { return HasMips4_32; }
240   bool hasMips4_32r2() const { return HasMips4_32r2; }
241   bool hasMips32() const {
242     return (MipsArchVersion >= Mips32 && MipsArchVersion < Mips32Max) ||
243            hasMips64();
244   }
245   bool hasMips32r2() const {
246     return (MipsArchVersion >= Mips32r2 && MipsArchVersion < Mips32Max) ||
247            hasMips64r2();
248   }
249   bool hasMips32r3() const {
250     return (MipsArchVersion >= Mips32r3 && MipsArchVersion < Mips32Max) ||
251            hasMips64r2();
252   }
253   bool hasMips32r5() const {
254     return (MipsArchVersion >= Mips32r5 && MipsArchVersion < Mips32Max) ||
255            hasMips64r5();
256   }
257   bool hasMips32r6() const {
258     return (MipsArchVersion >= Mips32r6 && MipsArchVersion < Mips32Max) ||
259            hasMips64r6();
260   }
261   bool hasMips64() const { return MipsArchVersion >= Mips64; }
262   bool hasMips64r2() const { return MipsArchVersion >= Mips64r2; }
263   bool hasMips64r3() const { return MipsArchVersion >= Mips64r3; }
264   bool hasMips64r5() const { return MipsArchVersion >= Mips64r5; }
265   bool hasMips64r6() const { return MipsArchVersion >= Mips64r6; }
266
267   bool hasCnMips() const { return HasCnMips; }
268
269   bool isLittle() const { return IsLittle; }
270   bool isABICalls() const { return !NoABICalls; }
271   bool isFPXX() const { return IsFPXX; }
272   bool isFP64bit() const { return IsFP64bit; }
273   bool useOddSPReg() const { return UseOddSPReg; }
274   bool noOddSPReg() const { return !UseOddSPReg; }
275   bool isNaN2008() const { return IsNaN2008bit; }
276   bool isGP64bit() const { return IsGP64bit; }
277   bool isGP32bit() const { return !IsGP64bit; }
278   unsigned getGPRSizeInBytes() const { return isGP64bit() ? 8 : 4; }
279   bool isPTR64bit() const { return IsPTR64bit; }
280   bool isPTR32bit() const { return !IsPTR64bit; }
281   bool hasSym32() const {
282     return (HasSym32 && isABI_N64()) || isABI_N32() || isABI_O32();
283   }
284   bool isSingleFloat() const { return IsSingleFloat; }
285   bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); }
286   bool hasVFPU() const { return HasVFPU; }
287   bool inMips16Mode() const { return InMips16Mode; }
288   bool inMips16ModeDefault() const {
289     return InMips16Mode;
290   }
291   // Hard float for mips16 means essentially to compile as soft float
292   // but to use a runtime library for soft float that is written with
293   // native mips32 floating point instructions (those runtime routines
294   // run in mips32 hard float mode).
295   bool inMips16HardFloat() const {
296     return inMips16Mode() && InMips16HardFloat;
297   }
298   bool inMicroMipsMode() const { return InMicroMipsMode && !InMips16Mode; }
299   bool inMicroMips32r6Mode() const {
300     return inMicroMipsMode() && hasMips32r6();
301   }
302   bool hasDSP() const { return HasDSP; }
303   bool hasDSPR2() const { return HasDSPR2; }
304   bool hasDSPR3() const { return HasDSPR3; }
305   bool hasMSA() const { return HasMSA; }
306   bool disableMadd4() const { return DisableMadd4; }
307   bool hasEVA() const { return HasEVA; }
308   bool hasMT() const { return HasMT; }
309   bool hasCRC() const { return HasCRC; }
310   bool hasVirt() const { return HasVirt; }
311   bool hasGINV() const { return HasGINV; }
312   bool useIndirectJumpsHazard() const {
313     return UseIndirectJumpsHazard && hasMips32r2();
314   }
315   bool useSmallSection() const { return UseSmallSection; }
316
317   bool hasStandardEncoding() const { return !InMips16Mode && !InMicroMipsMode; }
318
319   bool useSoftFloat() const { return IsSoftFloat; }
320
321   bool useLongCalls() const { return UseLongCalls; }
322
323   bool enableLongBranchPass() const {
324     return hasStandardEncoding() || inMicroMipsMode() || allowMixed16_32();
325   }
326
327   /// Features related to the presence of specific instructions.
328   bool hasExtractInsert() const { return !inMips16Mode() && hasMips32r2(); }
329   bool hasMTHC1() const { return hasMips32r2(); }
330
331   bool allowMixed16_32() const { return inMips16ModeDefault() |
332                                         AllowMixed16_32; }
333
334   bool os16() const { return Os16; }
335
336   bool isTargetNaCl() const { return TargetTriple.isOSNaCl(); }
337
338   bool isXRaySupported() const override { return true; }
339
340   // for now constant islands are on for the whole compilation unit but we only
341   // really use them if in addition we are in mips16 mode
342   static bool useConstantIslands();
343
344   unsigned getStackAlignment() const { return stackAlignment; }
345
346   // Grab relocation model
347   Reloc::Model getRelocationModel() const;
348
349   MipsSubtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS,
350                                                  const TargetMachine &TM);
351
352   /// Does the system support unaligned memory access.
353   ///
354   /// MIPS32r6/MIPS64r6 require full unaligned access support but does not
355   /// specify which component of the system provides it. Hardware, software, and
356   /// hybrid implementations are all valid.
357   bool systemSupportsUnalignedAccess() const { return hasMips32r6(); }
358
359   // Set helper classes
360   void setHelperClassesMips16();
361   void setHelperClassesMipsSE();
362
363   const SelectionDAGTargetInfo *getSelectionDAGInfo() const override {
364     return &TSInfo;
365   }
366   const MipsInstrInfo *getInstrInfo() const override { return InstrInfo.get(); }
367   const TargetFrameLowering *getFrameLowering() const override {
368     return FrameLowering.get();
369   }
370   const MipsRegisterInfo *getRegisterInfo() const override {
371     return &InstrInfo->getRegisterInfo();
372   }
373   const MipsTargetLowering *getTargetLowering() const override {
374     return TLInfo.get();
375   }
376   const InstrItineraryData *getInstrItineraryData() const override {
377     return &InstrItins;
378   }
379
380 protected:
381   // GlobalISel related APIs.
382   std::unique_ptr<CallLowering> CallLoweringInfo;
383   std::unique_ptr<LegalizerInfo> Legalizer;
384   std::unique_ptr<RegisterBankInfo> RegBankInfo;
385   std::unique_ptr<InstructionSelector> InstSelector;
386
387 public:
388   const CallLowering *getCallLowering() const override;
389   const LegalizerInfo *getLegalizerInfo() const override;
390   const RegisterBankInfo *getRegBankInfo() const override;
391   const InstructionSelector *getInstructionSelector() const override;
392 };
393 } // End llvm namespace
394
395 #endif