1 //=====---- ARMSubtarget.h - Define Subtarget for the ARM -----*- C++ -*--====//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file declares the ARM specific subclass of TargetSubtarget.
12 //===----------------------------------------------------------------------===//
14 #ifndef ARMSUBTARGET_H
15 #define ARMSUBTARGET_H
17 #include "llvm/Target/TargetInstrItineraries.h"
18 #include "llvm/Target/TargetMachine.h"
19 #include "llvm/Target/TargetSubtarget.h"
20 #include "ARMBaseRegisterInfo.h"
26 class ARMSubtarget
: public TargetSubtarget
{
29 V4
, V4T
, V5T
, V5TE
, V6
, V6M
, V6T2
, V7A
, V7M
32 enum ARMProcFamilyEnum
{
33 Others
, CortexA8
, CortexA9
37 None
, VFPv2
, VFPv3
, NEON
45 /// ARMArchVersion - ARM architecture version: V4, V4T (base), V5T, V5TE,
46 /// V6, V6T2, V7A, V7M.
47 ARMArchEnum ARMArchVersion
;
49 /// ARMProcFamily - ARM processor family: Cortex-A8, Cortex-A9, and others.
50 ARMProcFamilyEnum ARMProcFamily
;
52 /// ARMFPUType - Floating Point Unit type.
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
;
60 /// SlowVMLx - If the VFP2 instructions are available, indicates whether
61 /// the VML[AS] instructions are slow (if so, don't use them).
64 /// SlowFPBrcc - True if floating point compare + branch is slow.
67 /// IsThumb - True if we are in thumb mode, false if in ARM mode.
70 /// ThumbMode - Indicates supported Thumb version.
71 ThumbTypeEnum ThumbMode
;
73 /// NoARM - True if subtarget does not support ARM mode execution.
76 /// PostRAScheduler - True if using post-register-allocation scheduler.
79 /// IsR9Reserved - True if R9 is a not available as general purpose register.
82 /// UseMovt - True if MOVT / MOVW pairs are used for materialization of 32-bit
83 /// imms (including global addresses).
86 /// HasFP16 - True if subtarget supports half-precision FP (We support VFP+HF
90 /// HasD16 - True if subtarget is limited to 16 double precision
91 /// FP registers for VFPv3.
94 /// HasHardwareDivide - True if subtarget supports [su]div
95 bool HasHardwareDivide
;
97 /// HasT2ExtractPack - True if subtarget supports thumb2 extract/pack
99 bool HasT2ExtractPack
;
101 /// HasDataBarrier - True if the subtarget supports DMB / DSB data barrier
105 /// Pref32BitThumb - If true, codegen would prefer 32-bit Thumb instructions
106 /// over 16-bit ones.
109 /// HasMPExtension - True if the subtarget supports Multiprocessing
110 /// extension (ARMv7 only).
113 /// FPOnlySP - If true, the floating point unit only supports single
117 /// AllowsUnalignedMem - If true, the subtarget allows unaligned memory
118 /// accesses for some types. For details, see
119 /// ARMTargetLowering::allowsUnalignedMemoryAccesses().
120 bool AllowsUnalignedMem
;
122 /// stackAlignment - The minimum alignment known to hold of the stack frame on
123 /// entry to the function and which must be maintained by every function.
124 unsigned stackAlignment
;
126 /// CPUString - String name of used CPU.
127 std::string CPUString
;
129 /// Selected instruction itineraries (one entry per itinerary class.)
130 InstrItineraryData InstrItins
;
139 ARM_ABI_AAPCS
// ARM EABI
142 /// This constructor initializes the data members to match that
143 /// of the specified triple.
145 ARMSubtarget(const std::string
&TT
, const std::string
&FS
, bool isThumb
);
147 /// getMaxInlineSizeThreshold - Returns the maximum memset / memcpy size
148 /// that still makes it profitable to inline the call.
149 unsigned getMaxInlineSizeThreshold() const {
150 // FIXME: For now, we don't lower memcpy's to loads / stores for Thumb1.
151 // Change this once Thumb1 ldmia / stmia support is added.
152 return isThumb1Only() ? 0 : 64;
154 /// ParseSubtargetFeatures - Parses features string setting specified
155 /// subtarget options. Definition of function is auto generated by tblgen.
156 std::string
ParseSubtargetFeatures(const std::string
&FS
,
157 const std::string
&CPU
);
159 bool hasV4TOps() const { return ARMArchVersion
>= V4T
; }
160 bool hasV5TOps() const { return ARMArchVersion
>= V5T
; }
161 bool hasV5TEOps() const { return ARMArchVersion
>= V5TE
; }
162 bool hasV6Ops() const { return ARMArchVersion
>= V6
; }
163 bool hasV6T2Ops() const { return ARMArchVersion
>= V6T2
; }
164 bool hasV7Ops() const { return ARMArchVersion
>= V7A
; }
166 bool isCortexA8() const { return ARMProcFamily
== CortexA8
; }
167 bool isCortexA9() const { return ARMProcFamily
== CortexA9
; }
169 bool hasARMOps() const { return !NoARM
; }
171 bool hasVFP2() const { return ARMFPUType
>= VFPv2
; }
172 bool hasVFP3() const { return ARMFPUType
>= VFPv3
; }
173 bool hasNEON() const { return ARMFPUType
>= NEON
; }
174 bool useNEONForSinglePrecisionFP() const {
175 return hasNEON() && UseNEONForSinglePrecisionFP
; }
176 bool hasDivide() const { return HasHardwareDivide
; }
177 bool hasT2ExtractPack() const { return HasT2ExtractPack
; }
178 bool hasDataBarrier() const { return HasDataBarrier
; }
179 bool useVMLx() const {return hasVFP2() && !SlowVMLx
; }
180 bool isFPBrccSlow() const { return SlowFPBrcc
; }
181 bool isFPOnlySP() const { return FPOnlySP
; }
182 bool prefers32BitThumb() const { return Pref32BitThumb
; }
183 bool hasMPExtension() const { return HasMPExtension
; }
185 bool hasFP16() const { return HasFP16
; }
186 bool hasD16() const { return HasD16
; }
188 bool isTargetDarwin() const { return TargetType
== isDarwin
; }
189 bool isTargetELF() const { return TargetType
== isELF
; }
191 bool isAPCS_ABI() const { return TargetABI
== ARM_ABI_APCS
; }
192 bool isAAPCS_ABI() const { return TargetABI
== ARM_ABI_AAPCS
; }
194 bool isThumb() const { return IsThumb
; }
195 bool isThumb1Only() const { return IsThumb
&& (ThumbMode
== Thumb1
); }
196 bool isThumb2() const { return IsThumb
&& (ThumbMode
== Thumb2
); }
197 bool hasThumb2() const { return ThumbMode
>= Thumb2
; }
199 bool isR9Reserved() const { return IsR9Reserved
; }
201 bool useMovt() const { return UseMovt
&& hasV6T2Ops(); }
203 bool allowsUnalignedMem() const { return AllowsUnalignedMem
; }
205 const std::string
& getCPUString() const { return CPUString
; }
207 unsigned getMispredictionPenalty() const;
209 /// enablePostRAScheduler - True at 'More' optimization.
210 bool enablePostRAScheduler(CodeGenOpt::Level OptLevel
,
211 TargetSubtarget::AntiDepBreakMode
& Mode
,
212 RegClassVector
& CriticalPathRCs
) const;
214 /// getInstrItins - Return the instruction itineraies based on subtarget
216 const InstrItineraryData
&getInstrItineraryData() const { return InstrItins
; }
218 /// getStackAlignment - Returns the minimum alignment known to hold of the
219 /// stack frame on entry to the function and which must be maintained by every
220 /// function for this subtarget.
221 unsigned getStackAlignment() const { return stackAlignment
; }
223 /// GVIsIndirectSymbol - true if the GV will be accessed via an indirect
225 bool GVIsIndirectSymbol(const GlobalValue
*GV
, Reloc::Model RelocM
) const;
227 } // End llvm namespace
229 #endif // ARMSUBTARGET_H