• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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;
isABI_FPXX()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 
hasMips1()234   bool hasMips1() const { return MipsArchVersion >= Mips1; }
hasMips2()235   bool hasMips2() const { return MipsArchVersion >= Mips2; }
hasMips3()236   bool hasMips3() const { return MipsArchVersion >= Mips3; }
hasMips4()237   bool hasMips4() const { return MipsArchVersion >= Mips4; }
hasMips5()238   bool hasMips5() const { return MipsArchVersion >= Mips5; }
hasMips4_32()239   bool hasMips4_32() const { return HasMips4_32; }
hasMips4_32r2()240   bool hasMips4_32r2() const { return HasMips4_32r2; }
hasMips32()241   bool hasMips32() const {
242     return (MipsArchVersion >= Mips32 && MipsArchVersion < Mips32Max) ||
243            hasMips64();
244   }
hasMips32r2()245   bool hasMips32r2() const {
246     return (MipsArchVersion >= Mips32r2 && MipsArchVersion < Mips32Max) ||
247            hasMips64r2();
248   }
hasMips32r3()249   bool hasMips32r3() const {
250     return (MipsArchVersion >= Mips32r3 && MipsArchVersion < Mips32Max) ||
251            hasMips64r2();
252   }
hasMips32r5()253   bool hasMips32r5() const {
254     return (MipsArchVersion >= Mips32r5 && MipsArchVersion < Mips32Max) ||
255            hasMips64r5();
256   }
hasMips32r6()257   bool hasMips32r6() const {
258     return (MipsArchVersion >= Mips32r6 && MipsArchVersion < Mips32Max) ||
259            hasMips64r6();
260   }
hasMips64()261   bool hasMips64() const { return MipsArchVersion >= Mips64; }
hasMips64r2()262   bool hasMips64r2() const { return MipsArchVersion >= Mips64r2; }
hasMips64r3()263   bool hasMips64r3() const { return MipsArchVersion >= Mips64r3; }
hasMips64r5()264   bool hasMips64r5() const { return MipsArchVersion >= Mips64r5; }
hasMips64r6()265   bool hasMips64r6() const { return MipsArchVersion >= Mips64r6; }
266 
hasCnMips()267   bool hasCnMips() const { return HasCnMips; }
268 
isLittle()269   bool isLittle() const { return IsLittle; }
isABICalls()270   bool isABICalls() const { return !NoABICalls; }
isFPXX()271   bool isFPXX() const { return IsFPXX; }
isFP64bit()272   bool isFP64bit() const { return IsFP64bit; }
useOddSPReg()273   bool useOddSPReg() const { return UseOddSPReg; }
noOddSPReg()274   bool noOddSPReg() const { return !UseOddSPReg; }
isNaN2008()275   bool isNaN2008() const { return IsNaN2008bit; }
isGP64bit()276   bool isGP64bit() const { return IsGP64bit; }
isGP32bit()277   bool isGP32bit() const { return !IsGP64bit; }
getGPRSizeInBytes()278   unsigned getGPRSizeInBytes() const { return isGP64bit() ? 8 : 4; }
isPTR64bit()279   bool isPTR64bit() const { return IsPTR64bit; }
isPTR32bit()280   bool isPTR32bit() const { return !IsPTR64bit; }
hasSym32()281   bool hasSym32() const {
282     return (HasSym32 && isABI_N64()) || isABI_N32() || isABI_O32();
283   }
isSingleFloat()284   bool isSingleFloat() const { return IsSingleFloat; }
isTargetELF()285   bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); }
hasVFPU()286   bool hasVFPU() const { return HasVFPU; }
inMips16Mode()287   bool inMips16Mode() const { return InMips16Mode; }
inMips16ModeDefault()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).
inMips16HardFloat()295   bool inMips16HardFloat() const {
296     return inMips16Mode() && InMips16HardFloat;
297   }
inMicroMipsMode()298   bool inMicroMipsMode() const { return InMicroMipsMode; }
inMicroMips32r6Mode()299   bool inMicroMips32r6Mode() const { return InMicroMipsMode && hasMips32r6(); }
hasDSP()300   bool hasDSP() const { return HasDSP; }
hasDSPR2()301   bool hasDSPR2() const { return HasDSPR2; }
hasDSPR3()302   bool hasDSPR3() const { return HasDSPR3; }
hasMSA()303   bool hasMSA() const { return HasMSA; }
disableMadd4()304   bool disableMadd4() const { return DisableMadd4; }
hasEVA()305   bool hasEVA() const { return HasEVA; }
hasMT()306   bool hasMT() const { return HasMT; }
hasCRC()307   bool hasCRC() const { return HasCRC; }
hasVirt()308   bool hasVirt() const { return HasVirt; }
hasGINV()309   bool hasGINV() const { return HasGINV; }
useIndirectJumpsHazard()310   bool useIndirectJumpsHazard() const {
311     return UseIndirectJumpsHazard && hasMips32r2();
312   }
useSmallSection()313   bool useSmallSection() const { return UseSmallSection; }
314 
hasStandardEncoding()315   bool hasStandardEncoding() const { return !inMips16Mode(); }
316 
useSoftFloat()317   bool useSoftFloat() const { return IsSoftFloat; }
318 
useLongCalls()319   bool useLongCalls() const { return UseLongCalls; }
320 
enableLongBranchPass()321   bool enableLongBranchPass() const {
322     return hasStandardEncoding() || allowMixed16_32();
323   }
324 
325   /// Features related to the presence of specific instructions.
hasExtractInsert()326   bool hasExtractInsert() const { return !inMips16Mode() && hasMips32r2(); }
hasMTHC1()327   bool hasMTHC1() const { return hasMips32r2(); }
328 
allowMixed16_32()329   bool allowMixed16_32() const { return inMips16ModeDefault() |
330                                         AllowMixed16_32; }
331 
os16()332   bool os16() const { return Os16; }
333 
isTargetNaCl()334   bool isTargetNaCl() const { return TargetTriple.isOSNaCl(); }
335 
isXRaySupported()336   bool isXRaySupported() const override { return true; }
337 
338   // for now constant islands are on for the whole compilation unit but we only
339   // really use them if in addition we are in mips16 mode
340   static bool useConstantIslands();
341 
getStackAlignment()342   unsigned getStackAlignment() const { return stackAlignment; }
343 
344   // Grab relocation model
345   Reloc::Model getRelocationModel() const;
346 
347   MipsSubtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS,
348                                                  const TargetMachine &TM);
349 
350   /// Does the system support unaligned memory access.
351   ///
352   /// MIPS32r6/MIPS64r6 require full unaligned access support but does not
353   /// specify which component of the system provides it. Hardware, software, and
354   /// hybrid implementations are all valid.
systemSupportsUnalignedAccess()355   bool systemSupportsUnalignedAccess() const { return hasMips32r6(); }
356 
357   // Set helper classes
358   void setHelperClassesMips16();
359   void setHelperClassesMipsSE();
360 
getSelectionDAGInfo()361   const SelectionDAGTargetInfo *getSelectionDAGInfo() const override {
362     return &TSInfo;
363   }
getInstrInfo()364   const MipsInstrInfo *getInstrInfo() const override { return InstrInfo.get(); }
getFrameLowering()365   const TargetFrameLowering *getFrameLowering() const override {
366     return FrameLowering.get();
367   }
getRegisterInfo()368   const MipsRegisterInfo *getRegisterInfo() const override {
369     return &InstrInfo->getRegisterInfo();
370   }
getTargetLowering()371   const MipsTargetLowering *getTargetLowering() const override {
372     return TLInfo.get();
373   }
getInstrItineraryData()374   const InstrItineraryData *getInstrItineraryData() const override {
375     return &InstrItins;
376   }
377 
378 protected:
379   // GlobalISel related APIs.
380   std::unique_ptr<CallLowering> CallLoweringInfo;
381   std::unique_ptr<LegalizerInfo> Legalizer;
382   std::unique_ptr<RegisterBankInfo> RegBankInfo;
383   std::unique_ptr<InstructionSelector> InstSelector;
384 
385 public:
386   const CallLowering *getCallLowering() const override;
387   const LegalizerInfo *getLegalizerInfo() const override;
388   const RegisterBankInfo *getRegBankInfo() const override;
389   const InstructionSelector *getInstructionSelector() const override;
390 };
391 } // End llvm namespace
392 
393 #endif
394