blob: dba2a2d27a4201bcb97bb4c0b21010add7e0a919 [file] [log] [blame]
Jia Liub22310f2012-02-18 12:03:15 +00001//===-- ARMSubtarget.cpp - ARM Subtarget Information ----------------------===//
Evan Cheng10043e22007-01-19 07:51:42 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Evan Cheng10043e22007-01-19 07:51:42 +00007//
8//===----------------------------------------------------------------------===//
9//
Evan Cheng0d639a22011-07-01 21:01:15 +000010// This file implements the ARM specific subclass of TargetSubtargetInfo.
Evan Cheng10043e22007-01-19 07:51:42 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "ARMSubtarget.h"
Eric Christopher80b24ef2014-06-26 19:30:02 +000015#include "ARMFrameLowering.h"
16#include "ARMISelLowering.h"
17#include "ARMInstrInfo.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000018#include "ARMMachineFunctionInfo.h"
Eric Christopher80b24ef2014-06-26 19:30:02 +000019#include "ARMSelectionDAGInfo.h"
20#include "ARMSubtarget.h"
Eric Christopher661f2d12014-12-18 02:20:58 +000021#include "ARMTargetMachine.h"
Eric Christopher80b24ef2014-06-26 19:30:02 +000022#include "Thumb1FrameLowering.h"
23#include "Thumb1InstrInfo.h"
24#include "Thumb2InstrInfo.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000025#include "llvm/CodeGen/MachineRegisterInfo.h"
Bill Wendling5a92eec2013-02-15 22:41:25 +000026#include "llvm/IR/Attributes.h"
Bill Wendling5a92eec2013-02-15 22:41:25 +000027#include "llvm/IR/Function.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000028#include "llvm/IR/GlobalValue.h"
Bob Wilson45825302009-06-22 21:01:46 +000029#include "llvm/Support/CommandLine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000030#include "llvm/Target/TargetInstrInfo.h"
Renato Golinb4dd6c52013-03-21 18:47:47 +000031#include "llvm/Target/TargetOptions.h"
Chris Bieneman03695ab2014-07-15 17:18:41 +000032#include "llvm/Target/TargetRegisterInfo.h"
Evan Cheng54b68e32011-07-01 20:45:01 +000033
Chandler Carruthd174b722014-04-22 02:03:14 +000034using namespace llvm;
35
Chandler Carruthe96dd892014-04-21 22:55:11 +000036#define DEBUG_TYPE "arm-subtarget"
37
Evan Cheng54b68e32011-07-01 20:45:01 +000038#define GET_SUBTARGETINFO_TARGET_DESC
Evan Cheng4d1ca962011-07-08 01:53:10 +000039#define GET_SUBTARGETINFO_CTOR
Evan Chengc9c090d2011-07-01 22:36:09 +000040#include "ARMGenSubtargetInfo.inc"
Evan Cheng54b68e32011-07-01 20:45:01 +000041
Bob Wilson45825302009-06-22 21:01:46 +000042static cl::opt<bool>
43ReserveR9("arm-reserve-r9", cl::Hidden,
44 cl::desc("Reserve R9, making it unavailable as GPR"));
45
Anton Korobeynikov25229082009-11-24 00:44:37 +000046static cl::opt<bool>
Renato Golinca570632013-08-15 20:54:38 +000047ArmUseMOVT("arm-use-movt", cl::init(true), cl::Hidden);
Anton Korobeynikov25229082009-11-24 00:44:37 +000048
Bob Wilson3dc97322010-09-28 04:09:35 +000049static cl::opt<bool>
Bob Wilsone8a549c2012-09-29 21:43:49 +000050UseFusedMulOps("arm-use-mulops",
51 cl::init(true), cl::Hidden);
52
Alexey Samsonovf17f03e2014-08-19 18:40:39 +000053namespace {
JF Bastien97b08c402013-05-17 23:49:01 +000054enum AlignMode {
55 DefaultAlign,
56 StrictAlign,
57 NoStrictAlign
58};
Alexey Samsonovf17f03e2014-08-19 18:40:39 +000059}
JF Bastien97b08c402013-05-17 23:49:01 +000060
61static cl::opt<AlignMode>
62Align(cl::desc("Load/store alignment support"),
63 cl::Hidden, cl::init(DefaultAlign),
64 cl::values(
65 clEnumValN(DefaultAlign, "arm-default-align",
66 "Generate unaligned accesses only on hardware/OS "
67 "combinations that are known to support them"),
68 clEnumValN(StrictAlign, "arm-strict-align",
69 "Disallow all unaligned memory accesses"),
70 clEnumValN(NoStrictAlign, "arm-no-strict-align",
71 "Allow unaligned memory accesses"),
72 clEnumValEnd));
Bob Wilson3dc97322010-09-28 04:09:35 +000073
Weiming Zhao0da5cc02013-11-13 18:29:49 +000074enum ITMode {
75 DefaultIT,
76 RestrictedIT,
77 NoRestrictedIT
78};
79
80static cl::opt<ITMode>
81IT(cl::desc("IT block support"), cl::Hidden, cl::init(DefaultIT),
82 cl::ZeroOrMore,
83 cl::values(clEnumValN(DefaultIT, "arm-default-it",
84 "Generate IT block based on arch"),
85 clEnumValN(RestrictedIT, "arm-restrict-it",
86 "Disallow deprecated IT based on ARMv8"),
87 clEnumValN(NoRestrictedIT, "arm-no-restrict-it",
88 "Allow IT blocks based on ARMv7"),
89 clEnumValEnd));
90
Eric Christophera47f6802014-06-13 00:20:35 +000091/// initializeSubtargetDependencies - Initializes using a CPU and feature string
92/// so that we can use initializer lists for subtarget initialization.
93ARMSubtarget &ARMSubtarget::initializeSubtargetDependencies(StringRef CPU,
94 StringRef FS) {
95 initializeEnvironment();
Eric Christopherb68e2532014-09-03 20:36:31 +000096 initSubtargetFeatures(CPU, FS);
Eric Christophera47f6802014-06-13 00:20:35 +000097 return *this;
98}
99
Eric Christopher8b770652015-01-26 19:03:15 +0000100ARMFrameLowering *ARMSubtarget::initializeFrameLowering(StringRef CPU,
101 StringRef FS) {
102 ARMSubtarget &STI = initializeSubtargetDependencies(CPU, FS);
103 if (STI.isThumb1Only())
104 return (ARMFrameLowering *)new Thumb1FrameLowering(STI);
105
106 return new ARMFrameLowering(STI);
107}
108
Evan Chengfe6e4052011-06-30 01:53:36 +0000109ARMSubtarget::ARMSubtarget(const std::string &TT, const std::string &CPU,
Eric Christopher8b770652015-01-26 19:03:15 +0000110 const std::string &FS,
111 const ARMBaseTargetMachine &TM, bool IsLittle)
Eric Christophera47f6802014-06-13 00:20:35 +0000112 : ARMGenSubtargetInfo(TT, CPU, FS), ARMProcFamily(Others),
113 ARMProcClass(None), stackAlignment(4), CPUString(CPU), IsLittle(IsLittle),
Eric Christopher661f2d12014-12-18 02:20:58 +0000114 TargetTriple(TT), Options(TM.Options), TM(TM),
Eric Christopher8b770652015-01-26 19:03:15 +0000115 TSInfo(*TM.getDataLayout()),
116 FrameLowering(initializeFrameLowering(CPU, FS)),
117 // At this point initializeSubtargetDependencies has been called so
118 // we can query directly.
Eric Christopher80b24ef2014-06-26 19:30:02 +0000119 InstrInfo(isThumb1Only()
120 ? (ARMBaseInstrInfo *)new Thumb1InstrInfo(*this)
121 : !isThumb()
122 ? (ARMBaseInstrInfo *)new ARMInstrInfo(*this)
123 : (ARMBaseInstrInfo *)new Thumb2InstrInfo(*this)),
Eric Christopher1889fdc2015-01-29 00:19:39 +0000124 TLInfo(TM, *this) {}
Bill Wendling5a92eec2013-02-15 22:41:25 +0000125
Bill Wendling61375d82013-02-16 01:36:26 +0000126void ARMSubtarget::initializeEnvironment() {
127 HasV4TOps = false;
128 HasV5TOps = false;
129 HasV5TEOps = false;
130 HasV6Ops = false;
Amara Emerson5035ee02013-10-07 16:55:23 +0000131 HasV6MOps = false;
Renato Golin12350602015-03-17 11:55:28 +0000132 HasV6KOps = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000133 HasV6T2Ops = false;
134 HasV7Ops = false;
Joey Goulyb3f550e2013-06-26 16:58:26 +0000135 HasV8Ops = false;
Vladimir Sukharev2afdb322015-04-01 14:54:56 +0000136 HasV8_1aOps = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000137 HasVFPv2 = false;
138 HasVFPv3 = false;
139 HasVFPv4 = false;
Joey Goulyccd04892013-09-13 13:46:57 +0000140 HasFPARMv8 = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000141 HasNEON = false;
142 UseNEONForSinglePrecisionFP = false;
143 UseMulOps = UseFusedMulOps;
144 SlowFPVMLx = false;
145 HasVMLxForwarding = false;
146 SlowFPBrcc = false;
147 InThumbMode = false;
148 HasThumb2 = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000149 NoARM = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000150 IsR9Reserved = ReserveR9;
151 UseMovt = false;
152 SupportsTailCall = false;
153 HasFP16 = false;
154 HasD16 = false;
155 HasHardwareDivide = false;
156 HasHardwareDivideInARM = false;
157 HasT2ExtractPack = false;
158 HasDataBarrier = false;
159 Pref32BitThumb = false;
160 AvoidCPSRPartialUpdate = false;
161 AvoidMOVsShifterOperand = false;
162 HasRAS = false;
163 HasMPExtension = false;
Bradley Smith25219752013-11-01 13:27:35 +0000164 HasVirtualization = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000165 FPOnlySP = false;
Tim Northovercedd4812013-05-23 19:11:14 +0000166 HasPerfMon = false;
Tim Northoverc6047652013-04-10 12:08:35 +0000167 HasTrustZone = false;
Amara Emerson33089092013-09-19 11:59:01 +0000168 HasCrypto = false;
Amara Emersonf9a67fc2013-10-29 16:54:52 +0000169 HasCRC = false;
Tim Northover13510302014-04-01 13:22:02 +0000170 HasZeroCycleZeroing = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000171 AllowsUnalignedMem = false;
172 Thumb2DSP = false;
173 UseNaClTrap = false;
Renato Golinb4dd6c52013-03-21 18:47:47 +0000174 UnsafeFPMath = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000175}
176
Eric Christopherb68e2532014-09-03 20:36:31 +0000177void ARMSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) {
Tilmann Scheller63872ce2013-09-02 17:09:01 +0000178 if (CPUString.empty()) {
Tim Northovere2c33712014-12-11 18:49:37 +0000179 if (isTargetDarwin() && TargetTriple.getArchName().endswith("v7s"))
Tilmann Scheller63872ce2013-09-02 17:09:01 +0000180 // Default to the Swift CPU when targeting armv7s/thumbv7s.
181 CPUString = "swift";
182 else
183 CPUString = "generic";
184 }
Evan Chengec415ef2009-03-08 04:02:49 +0000185
Evan Cheng0b33a322011-06-30 02:12:44 +0000186 // Insert the architecture feature derived from the target triple into the
187 // feature string. This is important for setting features that are implied
188 // based on the architecture version.
Eric Christopher1971c352014-12-18 02:08:45 +0000189 std::string ArchFS =
190 ARM_MC::ParseARMTriple(TargetTriple.getTriple(), CPUString);
Evan Cheng2bd65362011-07-07 00:08:19 +0000191 if (!FS.empty()) {
192 if (!ArchFS.empty())
Yaron Keren075759a2015-03-30 15:42:36 +0000193 ArchFS = (Twine(ArchFS) + "," + FS).str();
Evan Cheng2bd65362011-07-07 00:08:19 +0000194 else
195 ArchFS = FS;
196 }
Evan Cheng1a72add62011-07-07 07:07:08 +0000197 ParseSubtargetFeatures(CPUString, ArchFS);
Evan Cheng2bd65362011-07-07 00:08:19 +0000198
Joerg Sonnenberger002a1472013-12-13 11:16:00 +0000199 // FIXME: This used enable V6T2 support implicitly for Thumb2 mode.
200 // Assert this for now to make the change obvious.
201 assert(hasV6T2Ops() || !hasThumb2());
Bob Wilsond0046ca2010-11-09 22:50:47 +0000202
Andrew Trick352abc12012-08-08 02:44:16 +0000203 // Keep a pointer to static instruction cost data for the specified CPU.
204 SchedModel = getSchedModelForCPU(CPUString);
205
Evan Cheng54b68e32011-07-01 20:45:01 +0000206 // Initialize scheduling itinerary for the specified CPU.
207 InstrItins = getInstrItineraryForCPU(CPUString);
208
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000209 // FIXME: this is invalid for WindowsCE
Eric Christopher1971c352014-12-18 02:08:45 +0000210 if (isTargetWindows())
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000211 NoARM = true;
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000212
Lauro Ramos Venancio048e16ff2007-02-13 19:52:28 +0000213 if (isAAPCS_ABI())
214 stackAlignment = 8;
Mark Seabornbe266aa2014-02-16 18:59:48 +0000215 if (isTargetNaCl())
216 stackAlignment = 16;
Lauro Ramos Venancio048e16ff2007-02-13 19:52:28 +0000217
Renato Golinca570632013-08-15 20:54:38 +0000218 UseMovt = hasV6T2Ops() && ArmUseMOVT;
219
Tim Northoverd6a729b2014-01-06 14:28:05 +0000220 if (isTargetMachO()) {
Richard Trieu1fbe1a82014-09-17 01:47:52 +0000221 IsR9Reserved = ReserveR9 || !HasV6Ops;
Tim Northoverd6a729b2014-01-06 14:28:05 +0000222 SupportsTailCall = !isTargetIOS() || !getTargetTriple().isOSVersionLT(5, 0);
Saleem Abdulrasoolec1ec1b2014-03-11 15:09:44 +0000223 } else {
Tim Northoverd6a729b2014-01-06 14:28:05 +0000224 IsR9Reserved = ReserveR9;
Saleem Abdulrasoolec1ec1b2014-03-11 15:09:44 +0000225 SupportsTailCall = !isThumb1Only();
226 }
David Goodwin9a051a52009-10-01 21:46:35 +0000227
Renato Golin51dc3f42014-10-08 12:26:13 +0000228 if (Align == DefaultAlign) {
229 // Assume pre-ARMv6 doesn't support unaligned accesses.
230 //
231 // ARMv6 may or may not support unaligned accesses depending on the
232 // SCTLR.U bit, which is architecture-specific. We assume ARMv6
233 // Darwin and NetBSD targets support unaligned accesses, and others don't.
234 //
235 // ARMv7 always has SCTLR.U set to 1, but it has a new SCTLR.A bit
236 // which raises an alignment fault on unaligned accesses. Linux
237 // defaults this bit to 0 and handles it as a system-wide (not
238 // per-process) setting. It is therefore safe to assume that ARMv7+
239 // Linux targets support unaligned accesses. The same goes for NaCl.
240 //
241 // The above behavior is consistent with GCC.
242 AllowsUnalignedMem =
243 (hasV7Ops() && (isTargetLinux() || isTargetNaCl() ||
244 isTargetNetBSD())) ||
245 (hasV6Ops() && (isTargetMachO() || isTargetNetBSD()));
Renato Golin51dc3f42014-10-08 12:26:13 +0000246 } else {
247 AllowsUnalignedMem = !(Align == StrictAlign);
JF Bastien97b08c402013-05-17 23:49:01 +0000248 }
Renato Golinb4dd6c52013-03-21 18:47:47 +0000249
Renato Golinbab5ace2014-10-08 12:26:16 +0000250 // No v6M core supports unaligned memory access (v6M ARM ARM A3.2)
251 if (isV6M())
252 AllowsUnalignedMem = false;
253
Weiming Zhao0da5cc02013-11-13 18:29:49 +0000254 switch (IT) {
255 case DefaultIT:
256 RestrictIT = hasV8Ops() ? true : false;
257 break;
258 case RestrictedIT:
259 RestrictIT = true;
260 break;
261 case NoRestrictedIT:
262 RestrictIT = false;
263 break;
264 }
265
Renato Golinb4dd6c52013-03-21 18:47:47 +0000266 // NEON f32 ops are non-IEEE 754 compliant. Darwin is ok with it by default.
Michael Kuperstein29704e72015-03-24 12:56:59 +0000267 uint64_t Bits = getFeatureBits();
268 if ((Bits & ARM::ProcA5 || Bits & ARM::ProcA8) && // Where this matters
Renato Golinb4dd6c52013-03-21 18:47:47 +0000269 (Options.UnsafeFPMath || isTargetDarwin()))
270 UseNEONForSinglePrecisionFP = true;
Evan Cheng10043e22007-01-19 07:51:42 +0000271}
Evan Cheng43b9ca62009-08-28 23:18:09 +0000272
Eric Christopher661f2d12014-12-18 02:20:58 +0000273bool ARMSubtarget::isAPCS_ABI() const {
274 assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
275 return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_APCS;
276}
277bool ARMSubtarget::isAAPCS_ABI() const {
278 assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
279 return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS;
280}
281
Evan Cheng43b9ca62009-08-28 23:18:09 +0000282/// GVIsIndirectSymbol - true if the GV will be accessed via an indirect symbol.
Evan Cheng1b389522009-09-03 07:04:02 +0000283bool
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000284ARMSubtarget::GVIsIndirectSymbol(const GlobalValue *GV,
285 Reloc::Model RelocM) const {
Evan Cheng1b389522009-09-03 07:04:02 +0000286 if (RelocM == Reloc::Static)
Evan Cheng43b9ca62009-08-28 23:18:09 +0000287 return false;
Evan Cheng1b389522009-09-03 07:04:02 +0000288
Rafael Espindola246c4fb2014-11-01 16:46:18 +0000289 bool isDecl = GV->isDeclarationForLinker();
Evan Cheng1b389522009-09-03 07:04:02 +0000290
Tim Northoverd6a729b2014-01-06 14:28:05 +0000291 if (!isTargetMachO()) {
Evan Cheng1b389522009-09-03 07:04:02 +0000292 // Extra load is needed for all externally visible.
293 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
294 return false;
295 return true;
296 } else {
297 if (RelocM == Reloc::PIC_) {
298 // If this is a strong reference to a definition, it is definitely not
299 // through a stub.
300 if (!isDecl && !GV->isWeakForLinker())
301 return false;
302
303 // Unless we have a symbol with hidden visibility, we have to go through a
304 // normal $non_lazy_ptr stub because this symbol might be resolved late.
305 if (!GV->hasHiddenVisibility()) // Non-hidden $non_lazy_ptr reference.
306 return true;
307
308 // If symbol visibility is hidden, we have a stub for common symbol
309 // references and external declarations.
310 if (isDecl || GV->hasCommonLinkage())
311 // Hidden $non_lazy_ptr reference.
312 return true;
313
314 return false;
315 } else {
316 // If this is a strong reference to a definition, it is definitely not
317 // through a stub.
318 if (!isDecl && !GV->isWeakForLinker())
319 return false;
Andrew Trickc416ba62010-12-24 04:28:06 +0000320
Evan Cheng1b389522009-09-03 07:04:02 +0000321 // Unless we have a symbol with hidden visibility, we have to go through a
322 // normal $non_lazy_ptr stub because this symbol might be resolved late.
323 if (!GV->hasHiddenVisibility()) // Non-hidden $non_lazy_ptr reference.
324 return true;
325 }
326 }
327
328 return false;
Evan Cheng43b9ca62009-08-28 23:18:09 +0000329}
David Goodwin0d412c22009-11-10 00:48:55 +0000330
Owen Andersona3181e22010-09-28 21:57:50 +0000331unsigned ARMSubtarget::getMispredictionPenalty() const {
Pete Cooper11759452014-09-02 17:43:54 +0000332 return SchedModel.MispredictPenalty;
Owen Andersona3181e22010-09-28 21:57:50 +0000333}
334
Bob Wilsone7dde0c2013-11-03 06:14:38 +0000335bool ARMSubtarget::hasSinCos() const {
Bob Wilson9868d712014-10-09 05:43:30 +0000336 return getTargetTriple().isiOS() && !getTargetTriple().isOSVersionLT(7, 0);
Bob Wilsone7dde0c2013-11-03 06:14:38 +0000337}
338
Sanjay Patela2f658d2014-07-15 22:39:58 +0000339// This overrides the PostRAScheduler bit in the SchedModel for any CPU.
Andrew Trick8d2ee372014-06-04 07:06:27 +0000340bool ARMSubtarget::enablePostMachineScheduler() const {
Sanjay Patela2f658d2014-07-15 22:39:58 +0000341 return (!isThumb() || hasThumb2());
Andrew Trick8d2ee372014-06-04 07:06:27 +0000342}
343
Robin Morisset59c23cd2014-08-21 21:50:01 +0000344bool ARMSubtarget::enableAtomicExpand() const {
Eric Christopherc40e5ed2014-06-19 21:03:04 +0000345 return hasAnyDataBarrier() && !isThumb1Only();
346}
347
Eric Christopherc1058df2014-07-04 01:55:26 +0000348bool ARMSubtarget::useMovt(const MachineFunction &MF) const {
349 // NOTE Windows on ARM needs to use mov.w/mov.t pairs to materialise 32-bit
350 // immediates as it is inherently position independent, and may be out of
351 // range otherwise.
352 return UseMovt && (isTargetWindows() ||
Duncan P. N. Exon Smith2cff9e12015-02-14 02:24:44 +0000353 !MF.getFunction()->hasFnAttribute(Attribute::MinSize));
Eric Christopherc1058df2014-07-04 01:55:26 +0000354}