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