[MIPS] Add cpu octeon and some instructions
[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 "llvm/MC/MCInstrItineraries.h"
18 #include "llvm/Support/ErrorHandling.h"
19 #include "llvm/Target/TargetSubtargetInfo.h"
20 #include <string>
21
22 #define GET_SUBTARGETINFO_HEADER
23 #include "MipsGenSubtargetInfo.inc"
24
25 namespace llvm {
26 class StringRef;
27
28 class MipsTargetMachine;
29
30 class MipsSubtarget : public MipsGenSubtargetInfo {
31   virtual void anchor();
32
33 public:
34   // NOTE: O64 will not be supported.
35   enum MipsABIEnum {
36     UnknownABI, O32, N32, N64, EABI
37   };
38
39 protected:
40
41   enum MipsArchEnum {
42     Mips32, Mips32r2, Mips64, Mips64r2
43   };
44
45   // Mips architecture version
46   MipsArchEnum MipsArchVersion;
47
48   // Mips supported ABIs
49   MipsABIEnum MipsABI;
50
51   // IsLittle - The target is Little Endian
52   bool IsLittle;
53
54   // IsSingleFloat - The target only supports single precision float
55   // point operations. This enable the target to use all 32 32-bit
56   // floating point registers instead of only using even ones.
57   bool IsSingleFloat;
58
59   // IsFP64bit - The target processor has 64-bit floating point registers.
60   bool IsFP64bit;
61
62   // IsFP64bit - General-purpose registers are 64 bits wide
63   bool IsGP64bit;
64
65   // HasVFPU - Processor has a vector floating point unit.
66   bool HasVFPU;
67
68   // CPU supports cnMIPS (Cavium Networks Octeon CPU).
69   bool HasCnMips;
70
71   // isLinux - Target system is Linux. Is false we consider ELFOS for now.
72   bool IsLinux;
73
74   // UseSmallSection - Small section is used.
75   bool UseSmallSection;
76
77   /// Features related to the presence of specific instructions.
78
79   // HasSEInReg - SEB and SEH (signext in register) instructions.
80   bool HasSEInReg;
81
82   // HasCondMov - Conditional mov (MOVZ, MOVN) instructions.
83   bool HasCondMov;
84
85   // HasSwap - Byte and half swap instructions.
86   bool HasSwap;
87
88   // HasBitCount - Count leading '1' and '0' bits.
89   bool HasBitCount;
90
91   // HasFPIdx -- Floating point indexed load/store instructions.
92   bool HasFPIdx;
93
94   // InMips16 -- can process Mips16 instructions
95   bool InMips16Mode;
96
97   // Mips16 hard float
98   bool InMips16HardFloat;
99
100   // PreviousInMips16 -- the function we just processed was in Mips 16 Mode
101   bool PreviousInMips16Mode;
102
103   // InMicroMips -- can process MicroMips instructions
104   bool InMicroMipsMode;
105
106   // HasDSP, HasDSPR2 -- supports DSP ASE.
107   bool HasDSP, HasDSPR2;
108
109   // Allow mixed Mips16 and Mips32 in one source file
110   bool AllowMixed16_32;
111
112   // Optimize for space by compiling all functions as Mips 16 unless
113   // it needs floating point. Functions needing floating point are
114   // compiled as Mips32
115   bool Os16;
116
117   // HasMSA -- supports MSA ASE.
118   bool HasMSA;
119
120   InstrItineraryData InstrItins;
121
122   // Relocation Model
123   Reloc::Model RM;
124
125   // We can override the determination of whether we are in mips16 mode
126   // as from the command line
127   enum {NoOverride, Mips16Override, NoMips16Override} OverrideMode;
128
129   MipsTargetMachine *TM;
130
131   Triple TargetTriple;
132 public:
133   virtual bool enablePostRAScheduler(CodeGenOpt::Level OptLevel,
134                                      AntiDepBreakMode& Mode,
135                                      RegClassVector& CriticalPathRCs) const;
136
137   /// Only O32 and EABI supported right now.
138   bool isABI_EABI() const { return MipsABI == EABI; }
139   bool isABI_N64() const { return MipsABI == N64; }
140   bool isABI_N32() const { return MipsABI == N32; }
141   bool isABI_O32() const { return MipsABI == O32; }
142   unsigned getTargetABI() const { return MipsABI; }
143
144   /// This constructor initializes the data members to match that
145   /// of the specified triple.
146   MipsSubtarget(const std::string &TT, const std::string &CPU,
147                 const std::string &FS, bool little, Reloc::Model RM,
148                 MipsTargetMachine *TM);
149
150   /// ParseSubtargetFeatures - Parses features string setting specified
151   /// subtarget options.  Definition of function is auto generated by tblgen.
152   void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
153
154   bool hasMips32() const { return MipsArchVersion >= Mips32; }
155   bool hasMips32r2() const { return MipsArchVersion == Mips32r2 ||
156                                    MipsArchVersion == Mips64r2; }
157   bool hasMips64() const { return MipsArchVersion >= Mips64; }
158   bool hasMips64r2() const { return MipsArchVersion == Mips64r2; }
159
160   bool hasCnMips() const { return HasCnMips; }
161
162   bool isLittle() const { return IsLittle; }
163   bool isFP64bit() const { return IsFP64bit; }
164   bool isNotFP64bit() const { return !IsFP64bit; }
165   bool isGP64bit() const { return IsGP64bit; }
166   bool isGP32bit() const { return !IsGP64bit; }
167   bool isSingleFloat() const { return IsSingleFloat; }
168   bool isNotSingleFloat() const { return !IsSingleFloat; }
169   bool hasVFPU() const { return HasVFPU; }
170   bool inMips16Mode() const {
171     switch (OverrideMode) {
172     case NoOverride:
173       return InMips16Mode;
174     case Mips16Override:
175       return true;
176     case NoMips16Override:
177       return false;
178     }
179     llvm_unreachable("Unexpected mode");
180   }
181   bool inMips16ModeDefault() const {
182     return InMips16Mode;
183   }
184   bool inMips16HardFloat() const {
185     return inMips16Mode() && InMips16HardFloat;
186   }
187   bool inMicroMipsMode() const { return InMicroMipsMode; }
188   bool hasDSP() const { return HasDSP; }
189   bool hasDSPR2() const { return HasDSPR2; }
190   bool hasMSA() const { return HasMSA; }
191   bool isLinux() const { return IsLinux; }
192   bool useSmallSection() const { return UseSmallSection; }
193
194   bool hasStandardEncoding() const { return !inMips16Mode(); }
195
196   bool mipsSEUsesSoftFloat() const;
197
198   bool enableLongBranchPass() const {
199     return hasStandardEncoding() || allowMixed16_32();
200   }
201
202   /// Features related to the presence of specific instructions.
203   bool hasSEInReg()   const { return HasSEInReg; }
204   bool hasCondMov()   const { return HasCondMov; }
205   bool hasSwap()      const { return HasSwap; }
206   bool hasBitCount()  const { return HasBitCount; }
207   bool hasFPIdx()     const { return HasFPIdx; }
208   bool hasExtractInsert() const { return !inMips16Mode() && hasMips32r2(); }
209
210   const InstrItineraryData &getInstrItineraryData() const { return InstrItins; }
211   bool allowMixed16_32() const { return inMips16ModeDefault() |
212                                         AllowMixed16_32;}
213
214   bool os16() const { return Os16;};
215
216   bool isTargetNaCl() const { return TargetTriple.isOSNaCl(); }
217   bool isNotTargetNaCl() const { return !TargetTriple.isOSNaCl(); }
218
219 // for now constant islands are on for the whole compilation unit but we only
220 // really use them if in addition we are in mips16 mode
221 //
222 static bool useConstantIslands();
223
224   unsigned stackAlignment() const { return hasMips64() ? 16 : 8; }
225
226   // Grab relocation model
227   Reloc::Model getRelocationModel() const {return RM;}
228
229   /// \brief Reset the subtarget for the Mips target.
230   void resetSubtarget(MachineFunction *MF);
231
232
233 };
234 } // End llvm namespace
235
236 #endif