Check in a patch that has already been code reviewed by Owen that I'd forgotten to...
[oota-llvm.git] / lib / Target / ARM / ARMSubtarget.h
1 //=====---- ARMSubtarget.h - Define Subtarget for the ARM -----*- 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 ARM specific subclass of TargetSubtargetInfo.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef ARMSUBTARGET_H
15 #define ARMSUBTARGET_H
16
17 #include "MCTargetDesc/ARMMCTargetDesc.h"
18 #include "llvm/Target/TargetSubtargetInfo.h"
19 #include "llvm/MC/MCInstrItineraries.h"
20 #include "llvm/ADT/Triple.h"
21 #include <string>
22
23 #define GET_SUBTARGETINFO_HEADER
24 #include "ARMGenSubtargetInfo.inc"
25
26 namespace llvm {
27 class GlobalValue;
28 class StringRef;
29
30 class ARMSubtarget : public ARMGenSubtargetInfo {
31 protected:
32   enum ARMProcFamilyEnum {
33     Others, CortexA8, CortexA9
34   };
35
36   /// ARMProcFamily - ARM processor family: Cortex-A8, Cortex-A9, and others.
37   ARMProcFamilyEnum ARMProcFamily;
38
39   /// HasV4TOps, HasV5TOps, HasV5TEOps, HasV6Ops, HasV6T2Ops, HasV7Ops -
40   /// Specify whether target support specific ARM ISA variants.
41   bool HasV4TOps;
42   bool HasV5TOps;
43   bool HasV5TEOps;
44   bool HasV6Ops;
45   bool HasV6T2Ops;
46   bool HasV7Ops;
47
48   /// HasVFPv2, HasVFPv3, HasNEON - Specify what floating point ISAs are
49   /// supported.
50   bool HasVFPv2;
51   bool HasVFPv3;
52   bool HasNEON;
53
54   /// UseNEONForSinglePrecisionFP - if the NEONFP attribute has been
55   /// specified. Use the method useNEONForSinglePrecisionFP() to
56   /// determine if NEON should actually be used.
57   bool UseNEONForSinglePrecisionFP;
58
59   /// SlowFPVMLx - If the VFP2 / NEON instructions are available, indicates
60   /// whether the FP VML[AS] instructions are slow (if so, don't use them).
61   bool SlowFPVMLx;
62
63   /// HasVMLxForwarding - If true, NEON has special multiplier accumulator
64   /// forwarding to allow mul + mla being issued back to back.
65   bool HasVMLxForwarding;
66
67   /// SlowFPBrcc - True if floating point compare + branch is slow.
68   bool SlowFPBrcc;
69
70   /// InThumbMode - True if compiling for Thumb, false for ARM.
71   bool InThumbMode;
72
73   /// InNaClMode - True if targeting Native Client
74   bool InNaClMode;
75
76   /// HasThumb2 - True if Thumb2 instructions are supported.
77   bool HasThumb2;
78
79   /// IsMClass - True if the subtarget belongs to the 'M' profile of CPUs - 
80   /// v6m, v7m for example.
81   bool IsMClass;
82
83   /// NoARM - True if subtarget does not support ARM mode execution.
84   bool NoARM;
85
86   /// PostRAScheduler - True if using post-register-allocation scheduler.
87   bool PostRAScheduler;
88
89   /// IsR9Reserved - True if R9 is a not available as general purpose register.
90   bool IsR9Reserved;
91
92   /// UseMovt - True if MOVT / MOVW pairs are used for materialization of 32-bit
93   /// imms (including global addresses).
94   bool UseMovt;
95
96   /// HasFP16 - True if subtarget supports half-precision FP (We support VFP+HF
97   /// only so far)
98   bool HasFP16;
99
100   /// HasD16 - True if subtarget is limited to 16 double precision
101   /// FP registers for VFPv3.
102   bool HasD16;
103
104   /// HasHardwareDivide - True if subtarget supports [su]div
105   bool HasHardwareDivide;
106
107   /// HasT2ExtractPack - True if subtarget supports thumb2 extract/pack
108   /// instructions.
109   bool HasT2ExtractPack;
110
111   /// HasDataBarrier - True if the subtarget supports DMB / DSB data barrier
112   /// instructions.
113   bool HasDataBarrier;
114
115   /// Pref32BitThumb - If true, codegen would prefer 32-bit Thumb instructions
116   /// over 16-bit ones.
117   bool Pref32BitThumb;
118
119   /// AvoidCPSRPartialUpdate - If true, codegen would avoid using instructions
120   /// that partially update CPSR and add false dependency on the previous
121   /// CPSR setting instruction.
122   bool AvoidCPSRPartialUpdate;
123
124   /// HasMPExtension - True if the subtarget supports Multiprocessing
125   /// extension (ARMv7 only).
126   bool HasMPExtension;
127
128   /// FPOnlySP - If true, the floating point unit only supports single
129   /// precision.
130   bool FPOnlySP;
131
132   /// AllowsUnalignedMem - If true, the subtarget allows unaligned memory
133   /// accesses for some types.  For details, see
134   /// ARMTargetLowering::allowsUnalignedMemoryAccesses().
135   bool AllowsUnalignedMem;
136
137   /// Thumb2DSP - If true, the subtarget supports the v7 DSP (saturating arith
138   /// and such) instructions in Thumb2 code.
139   bool Thumb2DSP;
140
141   /// stackAlignment - The minimum alignment known to hold of the stack frame on
142   /// entry to the function and which must be maintained by every function.
143   unsigned stackAlignment;
144
145   /// CPUString - String name of used CPU.
146   std::string CPUString;
147
148   /// TargetTriple - What processor and OS we're targeting.
149   Triple TargetTriple;
150
151   /// Selected instruction itineraries (one entry per itinerary class.)
152   InstrItineraryData InstrItins;
153
154  public:
155   enum {
156     isELF, isDarwin
157   } TargetType;
158
159   enum {
160     ARM_ABI_APCS,
161     ARM_ABI_AAPCS // ARM EABI
162   } TargetABI;
163
164   /// This constructor initializes the data members to match that
165   /// of the specified triple.
166   ///
167   ARMSubtarget(const std::string &TT, const std::string &CPU,
168                const std::string &FS);
169
170   /// getMaxInlineSizeThreshold - Returns the maximum memset / memcpy size
171   /// that still makes it profitable to inline the call.
172   unsigned getMaxInlineSizeThreshold() const {
173     // FIXME: For now, we don't lower memcpy's to loads / stores for Thumb1.
174     // Change this once Thumb1 ldmia / stmia support is added.
175     return isThumb1Only() ? 0 : 64;
176   }
177   /// ParseSubtargetFeatures - Parses features string setting specified
178   /// subtarget options.  Definition of function is auto generated by tblgen.
179   void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
180
181   void computeIssueWidth();
182
183   bool hasV4TOps()  const { return HasV4TOps;  }
184   bool hasV5TOps()  const { return HasV5TOps;  }
185   bool hasV5TEOps() const { return HasV5TEOps; }
186   bool hasV6Ops()   const { return HasV6Ops;   }
187   bool hasV6T2Ops() const { return HasV6T2Ops; }
188   bool hasV7Ops()   const { return HasV7Ops;  }
189
190   bool isCortexA8() const { return ARMProcFamily == CortexA8; }
191   bool isCortexA9() const { return ARMProcFamily == CortexA9; }
192
193   bool hasARMOps() const { return !NoARM; }
194
195   bool hasVFP2() const { return HasVFPv2; }
196   bool hasVFP3() const { return HasVFPv3; }
197   bool hasNEON() const { return HasNEON;  }
198   bool useNEONForSinglePrecisionFP() const {
199     return hasNEON() && UseNEONForSinglePrecisionFP; }
200
201   bool hasDivide() const { return HasHardwareDivide; }
202   bool hasT2ExtractPack() const { return HasT2ExtractPack; }
203   bool hasDataBarrier() const { return HasDataBarrier; }
204   bool useFPVMLx() const { return !SlowFPVMLx; }
205   bool hasVMLxForwarding() const { return HasVMLxForwarding; }
206   bool isFPBrccSlow() const { return SlowFPBrcc; }
207   bool isFPOnlySP() const { return FPOnlySP; }
208   bool prefers32BitThumb() const { return Pref32BitThumb; }
209   bool avoidCPSRPartialUpdate() const { return AvoidCPSRPartialUpdate; }
210   bool hasMPExtension() const { return HasMPExtension; }
211   bool hasThumb2DSP() const { return Thumb2DSP; }
212
213   bool hasFP16() const { return HasFP16; }
214   bool hasD16() const { return HasD16; }
215
216   const Triple &getTargetTriple() const { return TargetTriple; }
217
218   bool isTargetDarwin() const { return TargetTriple.isOSDarwin(); }
219   bool isTargetNaCl() const {
220     return TargetTriple.getOS() == Triple::NativeClient;
221   }
222   bool isTargetELF() const { return !isTargetDarwin(); }
223
224   bool isAPCS_ABI() const { return TargetABI == ARM_ABI_APCS; }
225   bool isAAPCS_ABI() const { return TargetABI == ARM_ABI_AAPCS; }
226
227   bool isThumb() const { return InThumbMode; }
228   bool isThumb1Only() const { return InThumbMode && !HasThumb2; }
229   bool isThumb2() const { return InThumbMode && HasThumb2; }
230   bool hasThumb2() const { return HasThumb2; }
231   bool isMClass() const { return IsMClass; }
232   bool isARClass() const { return !IsMClass; }
233
234   bool isR9Reserved() const { return IsR9Reserved; }
235
236   bool useMovt() const { return UseMovt && hasV6T2Ops(); }
237
238   bool allowsUnalignedMem() const { return AllowsUnalignedMem; }
239
240   const std::string & getCPUString() const { return CPUString; }
241
242   unsigned getMispredictionPenalty() const;
243
244   /// enablePostRAScheduler - True at 'More' optimization.
245   bool enablePostRAScheduler(CodeGenOpt::Level OptLevel,
246                              TargetSubtargetInfo::AntiDepBreakMode& Mode,
247                              RegClassVector& CriticalPathRCs) const;
248
249   /// getInstrItins - Return the instruction itineraies based on subtarget
250   /// selection.
251   const InstrItineraryData &getInstrItineraryData() const { return InstrItins; }
252
253   /// getStackAlignment - Returns the minimum alignment known to hold of the
254   /// stack frame on entry to the function and which must be maintained by every
255   /// function for this subtarget.
256   unsigned getStackAlignment() const { return stackAlignment; }
257
258   /// GVIsIndirectSymbol - true if the GV will be accessed via an indirect
259   /// symbol.
260   bool GVIsIndirectSymbol(const GlobalValue *GV, Reloc::Model RelocM) const;
261 };
262 } // End llvm namespace
263
264 #endif  // ARMSUBTARGET_H