84d3ebcc681c3f3f8835f606bfe37e00fa5ebcf6
[oota-llvm.git] / lib / Target / ARM / ARMSubtarget.cpp
1 //===-- ARMSubtarget.cpp - ARM Subtarget Information ----------------------===//
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 implements the ARM specific subclass of TargetSubtargetInfo.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "ARMSubtarget.h"
15 #include "ARMFrameLowering.h"
16 #include "ARMISelLowering.h"
17 #include "ARMInstrInfo.h"
18 #include "ARMMachineFunctionInfo.h"
19 #include "ARMSelectionDAGInfo.h"
20 #include "ARMSubtarget.h"
21 #include "ARMTargetMachine.h"
22 #include "Thumb1FrameLowering.h"
23 #include "Thumb1InstrInfo.h"
24 #include "Thumb2InstrInfo.h"
25 #include "llvm/CodeGen/MachineRegisterInfo.h"
26 #include "llvm/IR/Attributes.h"
27 #include "llvm/IR/Function.h"
28 #include "llvm/IR/GlobalValue.h"
29 #include "llvm/Support/CommandLine.h"
30 #include "llvm/Target/TargetInstrInfo.h"
31 #include "llvm/Target/TargetOptions.h"
32 #include "llvm/Target/TargetRegisterInfo.h"
33
34 using namespace llvm;
35
36 #define DEBUG_TYPE "arm-subtarget"
37
38 #define GET_SUBTARGETINFO_TARGET_DESC
39 #define GET_SUBTARGETINFO_CTOR
40 #include "ARMGenSubtargetInfo.inc"
41
42 static cl::opt<bool>
43 UseFusedMulOps("arm-use-mulops",
44                cl::init(true), cl::Hidden);
45
46 enum ITMode {
47   DefaultIT,
48   RestrictedIT,
49   NoRestrictedIT
50 };
51
52 static cl::opt<ITMode>
53 IT(cl::desc("IT block support"), cl::Hidden, cl::init(DefaultIT),
54    cl::ZeroOrMore,
55    cl::values(clEnumValN(DefaultIT, "arm-default-it",
56                          "Generate IT block based on arch"),
57               clEnumValN(RestrictedIT, "arm-restrict-it",
58                          "Disallow deprecated IT based on ARMv8"),
59               clEnumValN(NoRestrictedIT, "arm-no-restrict-it",
60                          "Allow IT blocks based on ARMv7"),
61               clEnumValEnd));
62
63 /// ForceFastISel - Use the fast-isel, even for subtargets where it is not
64 /// currently supported (for testing only).
65 static cl::opt<bool>
66 ForceFastISel("arm-force-fast-isel",
67                cl::init(false), cl::Hidden);
68
69 /// initializeSubtargetDependencies - Initializes using a CPU and feature string
70 /// so that we can use initializer lists for subtarget initialization.
71 ARMSubtarget &ARMSubtarget::initializeSubtargetDependencies(StringRef CPU,
72                                                             StringRef FS) {
73   initializeEnvironment();
74   initSubtargetFeatures(CPU, FS);
75   return *this;
76 }
77
78 ARMFrameLowering *ARMSubtarget::initializeFrameLowering(StringRef CPU,
79                                                         StringRef FS) {
80   ARMSubtarget &STI = initializeSubtargetDependencies(CPU, FS);
81   if (STI.isThumb1Only())
82     return (ARMFrameLowering *)new Thumb1FrameLowering(STI);
83
84   return new ARMFrameLowering(STI);
85 }
86
87 ARMSubtarget::ARMSubtarget(const Triple &TT, const std::string &CPU,
88                            const std::string &FS,
89                            const ARMBaseTargetMachine &TM, bool IsLittle)
90     : ARMGenSubtargetInfo(TT, CPU, FS), ARMProcFamily(Others),
91       ARMProcClass(None), stackAlignment(4), CPUString(CPU), IsLittle(IsLittle),
92       TargetTriple(TT), Options(TM.Options), TM(TM),
93       FrameLowering(initializeFrameLowering(CPU, FS)),
94       // At this point initializeSubtargetDependencies has been called so
95       // we can query directly.
96       InstrInfo(isThumb1Only()
97                     ? (ARMBaseInstrInfo *)new Thumb1InstrInfo(*this)
98                     : !isThumb()
99                           ? (ARMBaseInstrInfo *)new ARMInstrInfo(*this)
100                           : (ARMBaseInstrInfo *)new Thumb2InstrInfo(*this)),
101       TLInfo(TM, *this) {}
102
103 void ARMSubtarget::initializeEnvironment() {
104   HasV4TOps = false;
105   HasV5TOps = false;
106   HasV5TEOps = false;
107   HasV6Ops = false;
108   HasV6MOps = false;
109   HasV6KOps = false;
110   HasV6T2Ops = false;
111   HasV7Ops = false;
112   HasV8Ops = false;
113   HasV8_1aOps = false;
114   HasVFPv2 = false;
115   HasVFPv3 = false;
116   HasVFPv4 = false;
117   HasFPARMv8 = false;
118   HasNEON = false;
119   UseNEONForSinglePrecisionFP = false;
120   UseMulOps = UseFusedMulOps;
121   SlowFPVMLx = false;
122   HasVMLxForwarding = false;
123   SlowFPBrcc = false;
124   InThumbMode = false;
125   UseSoftFloat = false;
126   HasThumb2 = false;
127   NoARM = false;
128   ReserveR9 = false;
129   NoMovt = false;
130   SupportsTailCall = false;
131   HasFP16 = false;
132   HasD16 = false;
133   HasHardwareDivide = false;
134   HasHardwareDivideInARM = false;
135   HasT2ExtractPack = false;
136   HasDataBarrier = false;
137   Pref32BitThumb = false;
138   AvoidCPSRPartialUpdate = false;
139   AvoidMOVsShifterOperand = false;
140   HasRAS = false;
141   HasMPExtension = false;
142   HasVirtualization = false;
143   FPOnlySP = false;
144   HasPerfMon = false;
145   HasTrustZone = false;
146   HasCrypto = false;
147   HasCRC = false;
148   HasZeroCycleZeroing = false;
149   StrictAlign = false;
150   HasDSP = false;
151   UseNaClTrap = false;
152   GenLongCalls = false;
153   UnsafeFPMath = false;
154 }
155
156 void ARMSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) {
157   if (CPUString.empty()) {
158     CPUString = "generic";
159
160     if (isTargetDarwin()) {
161       StringRef ArchName = TargetTriple.getArchName();
162       if (ArchName.endswith("v7s"))
163         // Default to the Swift CPU when targeting armv7s/thumbv7s.
164         CPUString = "swift";
165       else if (ArchName.endswith("v7k"))
166         // Default to the Cortex-a7 CPU when targeting armv7k/thumbv7k.
167         // ARMv7k does not use SjLj exception handling.
168         CPUString = "cortex-a7";
169     }
170   }
171
172   // Insert the architecture feature derived from the target triple into the
173   // feature string. This is important for setting features that are implied
174   // based on the architecture version.
175   std::string ArchFS = ARM_MC::ParseARMTriple(TargetTriple, CPUString);
176   if (!FS.empty()) {
177     if (!ArchFS.empty())
178       ArchFS = (Twine(ArchFS) + "," + FS).str();
179     else
180       ArchFS = FS;
181   }
182   ParseSubtargetFeatures(CPUString, ArchFS);
183
184   // FIXME: This used enable V6T2 support implicitly for Thumb2 mode.
185   // Assert this for now to make the change obvious.
186   assert(hasV6T2Ops() || !hasThumb2());
187
188   // Keep a pointer to static instruction cost data for the specified CPU.
189   SchedModel = getSchedModelForCPU(CPUString);
190
191   // Initialize scheduling itinerary for the specified CPU.
192   InstrItins = getInstrItineraryForCPU(CPUString);
193
194   // FIXME: this is invalid for WindowsCE
195   if (isTargetWindows())
196     NoARM = true;
197
198   if (isAAPCS_ABI())
199     stackAlignment = 8;
200   if (isTargetNaCl() || isAAPCS16_ABI())
201     stackAlignment = 16;
202
203   // FIXME: Completely disable sibcall for Thumb1 since ThumbRegisterInfo::
204   // emitEpilogue is not ready for them. Thumb tail calls also use t2B, as
205   // the Thumb1 16-bit unconditional branch doesn't have sufficient relocation
206   // support in the assembler and linker to be used. This would need to be
207   // fixed to fully support tail calls in Thumb1.
208   //
209   // Doing this is tricky, since the LDM/POP instruction on Thumb doesn't take
210   // LR.  This means if we need to reload LR, it takes an extra instructions,
211   // which outweighs the value of the tail call; but here we don't know yet
212   // whether LR is going to be used.  Probably the right approach is to
213   // generate the tail call here and turn it back into CALL/RET in
214   // emitEpilogue if LR is used.
215
216   // Thumb1 PIC calls to external symbols use BX, so they can be tail calls,
217   // but we need to make sure there are enough registers; the only valid
218   // registers are the 4 used for parameters.  We don't currently do this
219   // case.
220
221   SupportsTailCall = !isThumb1Only();
222
223   if (isTargetMachO() && isTargetIOS() && getTargetTriple().isOSVersionLT(5, 0))
224     SupportsTailCall = false;
225
226   switch (IT) {
227   case DefaultIT:
228     RestrictIT = hasV8Ops();
229     break;
230   case RestrictedIT:
231     RestrictIT = true;
232     break;
233   case NoRestrictedIT:
234     RestrictIT = false;
235     break;
236   }
237
238   // NEON f32 ops are non-IEEE 754 compliant. Darwin is ok with it by default.
239   const FeatureBitset &Bits = getFeatureBits();
240   if ((Bits[ARM::ProcA5] || Bits[ARM::ProcA8]) && // Where this matters
241       (Options.UnsafeFPMath || isTargetDarwin()))
242     UseNEONForSinglePrecisionFP = true;
243 }
244
245 bool ARMSubtarget::isAPCS_ABI() const {
246   assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
247   return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_APCS;
248 }
249 bool ARMSubtarget::isAAPCS_ABI() const {
250   assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
251   return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS ||
252          TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS16;
253 }
254 bool ARMSubtarget::isAAPCS16_ABI() const {
255   assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
256   return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS16;
257 }
258
259
260 /// GVIsIndirectSymbol - true if the GV will be accessed via an indirect symbol.
261 bool
262 ARMSubtarget::GVIsIndirectSymbol(const GlobalValue *GV,
263                                  Reloc::Model RelocM) const {
264   if (RelocM == Reloc::Static)
265     return false;
266
267   bool isDef = GV->isStrongDefinitionForLinker();
268
269   if (!isTargetMachO()) {
270     // Extra load is needed for all externally visible.
271     if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
272       return false;
273     return true;
274   } else {
275     // If this is a strong reference to a definition, it is definitely not
276     // through a stub.
277     if (isDef)
278       return false;
279
280     // Unless we have a symbol with hidden visibility, we have to go through a
281     // normal $non_lazy_ptr stub because this symbol might be resolved late.
282     if (!GV->hasHiddenVisibility())  // Non-hidden $non_lazy_ptr reference.
283       return true;
284
285     if (RelocM == Reloc::PIC_) {
286       // If symbol visibility is hidden, we have a stub for common symbol
287       // references and external declarations.
288       if (GV->isDeclarationForLinker() || GV->hasCommonLinkage())
289         // Hidden $non_lazy_ptr reference.
290         return true;
291     }
292   }
293
294   return false;
295 }
296
297 unsigned ARMSubtarget::getMispredictionPenalty() const {
298   return SchedModel.MispredictPenalty;
299 }
300
301 bool ARMSubtarget::hasSinCos() const {
302   return isTargetWatchOS() ||
303     (isTargetIOS() && !getTargetTriple().isOSVersionLT(7, 0));
304 }
305
306 bool ARMSubtarget::enableMachineScheduler() const {
307   // Enable the MachineScheduler before register allocation for out-of-order
308   // architectures where we do not use the PostRA scheduler anymore (for now
309   // restricted to swift).
310   return getSchedModel().isOutOfOrder() && isSwift();
311 }
312
313 // This overrides the PostRAScheduler bit in the SchedModel for any CPU.
314 bool ARMSubtarget::enablePostRAScheduler() const {
315   // No need for PostRA scheduling on out of order CPUs (for now restricted to
316   // swift).
317   if (getSchedModel().isOutOfOrder() && isSwift())
318     return false;
319   return (!isThumb() || hasThumb2());
320 }
321
322 bool ARMSubtarget::enableAtomicExpand() const {
323   return hasAnyDataBarrier() && !isThumb1Only();
324 }
325
326 bool ARMSubtarget::useStride4VFPs(const MachineFunction &MF) const {
327   return isSwift() && !MF.getFunction()->optForMinSize();
328 }
329
330 bool ARMSubtarget::useMovt(const MachineFunction &MF) const {
331   // NOTE Windows on ARM needs to use mov.w/mov.t pairs to materialise 32-bit
332   // immediates as it is inherently position independent, and may be out of
333   // range otherwise.
334   return !NoMovt && hasV6T2Ops() &&
335          (isTargetWindows() || !MF.getFunction()->optForMinSize());
336 }
337
338 bool ARMSubtarget::useFastISel() const {
339   // Enable fast-isel for any target, for testing only.
340   if (ForceFastISel)
341     return true;
342
343   // Limit fast-isel to the targets that are or have been tested.
344   if (!hasV6Ops())
345     return false;
346
347   // Thumb2 support on iOS; ARM support on iOS, Linux and NaCl.
348   return TM.Options.EnableFastISel &&
349          ((isTargetMachO() && !isThumb1Only()) ||
350           (isTargetLinux() && !isThumb()) || (isTargetNaCl() && !isThumb()));
351 }