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