blob: 50eb37890fd08c59f3b3f1f75a57cf9f251c515a [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>
Bob Wilsone8a549c2012-09-29 21:43:49 +000043UseFusedMulOps("arm-use-mulops",
44 cl::init(true), cl::Hidden);
45
Weiming Zhao0da5cc02013-11-13 18:29:49 +000046enum ITMode {
47 DefaultIT,
48 RestrictedIT,
49 NoRestrictedIT
50};
51
52static cl::opt<ITMode>
53IT(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
Oliver Stannardf2ed5c62015-09-23 09:19:54 +000063/// ForceFastISel - Use the fast-isel, even for subtargets where it is not
64/// currently supported (for testing only).
65static cl::opt<bool>
66ForceFastISel("arm-force-fast-isel",
67 cl::init(false), cl::Hidden);
68
Eric Christophera47f6802014-06-13 00:20:35 +000069/// initializeSubtargetDependencies - Initializes using a CPU and feature string
70/// so that we can use initializer lists for subtarget initialization.
71ARMSubtarget &ARMSubtarget::initializeSubtargetDependencies(StringRef CPU,
72 StringRef FS) {
73 initializeEnvironment();
Eric Christopherb68e2532014-09-03 20:36:31 +000074 initSubtargetFeatures(CPU, FS);
Eric Christophera47f6802014-06-13 00:20:35 +000075 return *this;
76}
77
Eric Christopher8b770652015-01-26 19:03:15 +000078ARMFrameLowering *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
Daniel Sandersa73f1fd2015-06-10 12:11:26 +000087ARMSubtarget::ARMSubtarget(const Triple &TT, const std::string &CPU,
Eric Christopher8b770652015-01-26 19:03:15 +000088 const std::string &FS,
89 const ARMBaseTargetMachine &TM, bool IsLittle)
Daniel Sanders50f17232015-09-15 16:17:27 +000090 : ARMGenSubtargetInfo(TT, CPU, FS), ARMProcFamily(Others),
Eric Christophera47f6802014-06-13 00:20:35 +000091 ARMProcClass(None), stackAlignment(4), CPUString(CPU), IsLittle(IsLittle),
Eric Christopher661f2d12014-12-18 02:20:58 +000092 TargetTriple(TT), Options(TM.Options), TM(TM),
Eric Christopher8b770652015-01-26 19:03:15 +000093 FrameLowering(initializeFrameLowering(CPU, FS)),
94 // At this point initializeSubtargetDependencies has been called so
95 // we can query directly.
Eric Christopher80b24ef2014-06-26 19:30:02 +000096 InstrInfo(isThumb1Only()
97 ? (ARMBaseInstrInfo *)new Thumb1InstrInfo(*this)
98 : !isThumb()
99 ? (ARMBaseInstrInfo *)new ARMInstrInfo(*this)
100 : (ARMBaseInstrInfo *)new Thumb2InstrInfo(*this)),
Eric Christopher1889fdc2015-01-29 00:19:39 +0000101 TLInfo(TM, *this) {}
Bill Wendling5a92eec2013-02-15 22:41:25 +0000102
Bill Wendling61375d82013-02-16 01:36:26 +0000103void ARMSubtarget::initializeEnvironment() {
104 HasV4TOps = false;
105 HasV5TOps = false;
106 HasV5TEOps = false;
107 HasV6Ops = false;
Amara Emerson5035ee02013-10-07 16:55:23 +0000108 HasV6MOps = false;
Renato Golin12350602015-03-17 11:55:28 +0000109 HasV6KOps = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000110 HasV6T2Ops = false;
111 HasV7Ops = false;
Joey Goulyb3f550e2013-06-26 16:58:26 +0000112 HasV8Ops = false;
Vladimir Sukharev2afdb322015-04-01 14:54:56 +0000113 HasV8_1aOps = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000114 HasVFPv2 = false;
115 HasVFPv3 = false;
116 HasVFPv4 = false;
Joey Goulyccd04892013-09-13 13:46:57 +0000117 HasFPARMv8 = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000118 HasNEON = false;
119 UseNEONForSinglePrecisionFP = false;
120 UseMulOps = UseFusedMulOps;
121 SlowFPVMLx = false;
122 HasVMLxForwarding = false;
123 SlowFPBrcc = false;
124 InThumbMode = false;
Eric Christopher824f42f2015-05-12 01:26:05 +0000125 UseSoftFloat = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000126 HasThumb2 = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000127 NoARM = false;
Akira Hatanaka28581522015-07-21 01:42:02 +0000128 ReserveR9 = false;
Akira Hatanaka024d91a2015-07-16 00:58:23 +0000129 NoMovt = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000130 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;
Bradley Smith25219752013-11-01 13:27:35 +0000142 HasVirtualization = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000143 FPOnlySP = false;
Tim Northovercedd4812013-05-23 19:11:14 +0000144 HasPerfMon = false;
Tim Northoverc6047652013-04-10 12:08:35 +0000145 HasTrustZone = false;
Amara Emerson33089092013-09-19 11:59:01 +0000146 HasCrypto = false;
Amara Emersonf9a67fc2013-10-29 16:54:52 +0000147 HasCRC = false;
Tim Northover13510302014-04-01 13:22:02 +0000148 HasZeroCycleZeroing = false;
Akira Hatanaka2670f4a2015-07-28 22:44:28 +0000149 StrictAlign = false;
Artyom Skrobovcf296442015-09-24 17:31:16 +0000150 HasDSP = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000151 UseNaClTrap = false;
Akira Hatanaka1bc8af72015-07-07 06:54:42 +0000152 GenLongCalls = false;
Renato Golinb4dd6c52013-03-21 18:47:47 +0000153 UnsafeFPMath = false;
Tim Northoverf8e47e42015-10-28 22:56:36 +0000154 UseSjLjEH = (isTargetDarwin() &&
155 TargetTriple.getSubArch() != Triple::ARMSubArch_v7k);
Bill Wendling61375d82013-02-16 01:36:26 +0000156}
157
Eric Christopherb68e2532014-09-03 20:36:31 +0000158void ARMSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) {
Tilmann Scheller63872ce2013-09-02 17:09:01 +0000159 if (CPUString.empty()) {
Tim Northovere0ccdc62015-10-28 22:46:43 +0000160 CPUString = "generic";
161
162 if (isTargetDarwin()) {
163 StringRef ArchName = TargetTriple.getArchName();
164 if (ArchName.endswith("v7s"))
165 // Default to the Swift CPU when targeting armv7s/thumbv7s.
166 CPUString = "swift";
167 else if (ArchName.endswith("v7k"))
168 // Default to the Cortex-a7 CPU when targeting armv7k/thumbv7k.
169 // ARMv7k does not use SjLj exception handling.
170 CPUString = "cortex-a7";
171 }
Tilmann Scheller63872ce2013-09-02 17:09:01 +0000172 }
Evan Chengec415ef2009-03-08 04:02:49 +0000173
Evan Cheng0b33a322011-06-30 02:12:44 +0000174 // Insert the architecture feature derived from the target triple into the
175 // feature string. This is important for setting features that are implied
176 // based on the architecture version.
Daniel Sanders50f17232015-09-15 16:17:27 +0000177 std::string ArchFS = ARM_MC::ParseARMTriple(TargetTriple, CPUString);
Evan Cheng2bd65362011-07-07 00:08:19 +0000178 if (!FS.empty()) {
179 if (!ArchFS.empty())
Yaron Keren075759a2015-03-30 15:42:36 +0000180 ArchFS = (Twine(ArchFS) + "," + FS).str();
Evan Cheng2bd65362011-07-07 00:08:19 +0000181 else
182 ArchFS = FS;
183 }
Evan Cheng1a72add62011-07-07 07:07:08 +0000184 ParseSubtargetFeatures(CPUString, ArchFS);
Evan Cheng2bd65362011-07-07 00:08:19 +0000185
Joerg Sonnenberger002a1472013-12-13 11:16:00 +0000186 // FIXME: This used enable V6T2 support implicitly for Thumb2 mode.
187 // Assert this for now to make the change obvious.
188 assert(hasV6T2Ops() || !hasThumb2());
Bob Wilsond0046ca2010-11-09 22:50:47 +0000189
Andrew Trick352abc12012-08-08 02:44:16 +0000190 // Keep a pointer to static instruction cost data for the specified CPU.
191 SchedModel = getSchedModelForCPU(CPUString);
192
Evan Cheng54b68e32011-07-01 20:45:01 +0000193 // Initialize scheduling itinerary for the specified CPU.
194 InstrItins = getInstrItineraryForCPU(CPUString);
195
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000196 // FIXME: this is invalid for WindowsCE
Eric Christopher1971c352014-12-18 02:08:45 +0000197 if (isTargetWindows())
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000198 NoARM = true;
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000199
Lauro Ramos Venancio048e16ff2007-02-13 19:52:28 +0000200 if (isAAPCS_ABI())
201 stackAlignment = 8;
Tim Northovere0ccdc62015-10-28 22:46:43 +0000202 if (isTargetNaCl() || isAAPCS16_ABI())
Mark Seabornbe266aa2014-02-16 18:59:48 +0000203 stackAlignment = 16;
Lauro Ramos Venancio048e16ff2007-02-13 19:52:28 +0000204
Artyom Skrobovad8a0632015-09-28 09:44:11 +0000205 // FIXME: Completely disable sibcall for Thumb1 since ThumbRegisterInfo::
206 // emitEpilogue is not ready for them. Thumb tail calls also use t2B, as
207 // the Thumb1 16-bit unconditional branch doesn't have sufficient relocation
208 // support in the assembler and linker to be used. This would need to be
209 // fixed to fully support tail calls in Thumb1.
210 //
211 // Doing this is tricky, since the LDM/POP instruction on Thumb doesn't take
212 // LR. This means if we need to reload LR, it takes an extra instructions,
213 // which outweighs the value of the tail call; but here we don't know yet
214 // whether LR is going to be used. Probably the right approach is to
215 // generate the tail call here and turn it back into CALL/RET in
216 // emitEpilogue if LR is used.
217
218 // Thumb1 PIC calls to external symbols use BX, so they can be tail calls,
219 // but we need to make sure there are enough registers; the only valid
220 // registers are the 4 used for parameters. We don't currently do this
221 // case.
222
223 SupportsTailCall = !isThumb1Only();
224
225 if (isTargetMachO() && isTargetIOS() && getTargetTriple().isOSVersionLT(5, 0))
226 SupportsTailCall = false;
David Goodwin9a051a52009-10-01 21:46:35 +0000227
Weiming Zhao0da5cc02013-11-13 18:29:49 +0000228 switch (IT) {
229 case DefaultIT:
Alexander Kornienkofb37cfa2015-04-14 15:32:58 +0000230 RestrictIT = hasV8Ops();
Weiming Zhao0da5cc02013-11-13 18:29:49 +0000231 break;
232 case RestrictedIT:
233 RestrictIT = true;
234 break;
235 case NoRestrictedIT:
236 RestrictIT = false;
237 break;
238 }
239
Renato Golinb4dd6c52013-03-21 18:47:47 +0000240 // NEON f32 ops are non-IEEE 754 compliant. Darwin is ok with it by default.
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000241 const FeatureBitset &Bits = getFeatureBits();
242 if ((Bits[ARM::ProcA5] || Bits[ARM::ProcA8]) && // Where this matters
Renato Golinb4dd6c52013-03-21 18:47:47 +0000243 (Options.UnsafeFPMath || isTargetDarwin()))
244 UseNEONForSinglePrecisionFP = true;
Evan Cheng10043e22007-01-19 07:51:42 +0000245}
Evan Cheng43b9ca62009-08-28 23:18:09 +0000246
Eric Christopher661f2d12014-12-18 02:20:58 +0000247bool ARMSubtarget::isAPCS_ABI() const {
248 assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
249 return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_APCS;
250}
251bool ARMSubtarget::isAAPCS_ABI() const {
252 assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
Tim Northovere0ccdc62015-10-28 22:46:43 +0000253 return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS ||
254 TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS16;
Eric Christopher661f2d12014-12-18 02:20:58 +0000255}
Tim Northovere0ccdc62015-10-28 22:46:43 +0000256bool ARMSubtarget::isAAPCS16_ABI() const {
257 assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
258 return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS16;
259}
260
Eric Christopher661f2d12014-12-18 02:20:58 +0000261
Evan Cheng43b9ca62009-08-28 23:18:09 +0000262/// GVIsIndirectSymbol - true if the GV will be accessed via an indirect symbol.
Evan Cheng1b389522009-09-03 07:04:02 +0000263bool
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000264ARMSubtarget::GVIsIndirectSymbol(const GlobalValue *GV,
265 Reloc::Model RelocM) const {
Evan Cheng1b389522009-09-03 07:04:02 +0000266 if (RelocM == Reloc::Static)
Evan Cheng43b9ca62009-08-28 23:18:09 +0000267 return false;
Evan Cheng1b389522009-09-03 07:04:02 +0000268
Peter Collingbourne6a9d1772015-07-05 20:52:35 +0000269 bool isDef = GV->isStrongDefinitionForLinker();
Evan Cheng1b389522009-09-03 07:04:02 +0000270
Tim Northoverd6a729b2014-01-06 14:28:05 +0000271 if (!isTargetMachO()) {
Evan Cheng1b389522009-09-03 07:04:02 +0000272 // Extra load is needed for all externally visible.
273 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
274 return false;
275 return true;
276 } else {
Peter Collingbourne6a9d1772015-07-05 20:52:35 +0000277 // If this is a strong reference to a definition, it is definitely not
278 // through a stub.
279 if (isDef)
280 return false;
281
282 // Unless we have a symbol with hidden visibility, we have to go through a
283 // normal $non_lazy_ptr stub because this symbol might be resolved late.
284 if (!GV->hasHiddenVisibility()) // Non-hidden $non_lazy_ptr reference.
285 return true;
286
Evan Cheng1b389522009-09-03 07:04:02 +0000287 if (RelocM == Reloc::PIC_) {
Evan Cheng1b389522009-09-03 07:04:02 +0000288 // If symbol visibility is hidden, we have a stub for common symbol
289 // references and external declarations.
Peter Collingbourne6a9d1772015-07-05 20:52:35 +0000290 if (GV->isDeclarationForLinker() || GV->hasCommonLinkage())
Evan Cheng1b389522009-09-03 07:04:02 +0000291 // Hidden $non_lazy_ptr reference.
292 return true;
Evan Cheng1b389522009-09-03 07:04:02 +0000293 }
294 }
295
296 return false;
Evan Cheng43b9ca62009-08-28 23:18:09 +0000297}
David Goodwin0d412c22009-11-10 00:48:55 +0000298
Owen Andersona3181e22010-09-28 21:57:50 +0000299unsigned ARMSubtarget::getMispredictionPenalty() const {
Pete Cooper11759452014-09-02 17:43:54 +0000300 return SchedModel.MispredictPenalty;
Owen Andersona3181e22010-09-28 21:57:50 +0000301}
302
Bob Wilsone7dde0c2013-11-03 06:14:38 +0000303bool ARMSubtarget::hasSinCos() const {
Tim Northover8b403662015-10-28 22:51:16 +0000304 return isTargetWatchOS() ||
305 (isTargetIOS() && !getTargetTriple().isOSVersionLT(7, 0));
Bob Wilsone7dde0c2013-11-03 06:14:38 +0000306}
307
Matthias Braun9e859802015-07-17 23:18:30 +0000308bool ARMSubtarget::enableMachineScheduler() const {
309 // Enable the MachineScheduler before register allocation for out-of-order
310 // architectures where we do not use the PostRA scheduler anymore (for now
311 // restricted to swift).
312 return getSchedModel().isOutOfOrder() && isSwift();
313}
314
Sanjay Patela2f658d2014-07-15 22:39:58 +0000315// This overrides the PostRAScheduler bit in the SchedModel for any CPU.
Matthias Braun39a2afc2015-06-13 03:42:16 +0000316bool ARMSubtarget::enablePostRAScheduler() const {
Matthias Braun9e859802015-07-17 23:18:30 +0000317 // No need for PostRA scheduling on out of order CPUs (for now restricted to
318 // swift).
319 if (getSchedModel().isOutOfOrder() && isSwift())
320 return false;
Sanjay Patela2f658d2014-07-15 22:39:58 +0000321 return (!isThumb() || hasThumb2());
Andrew Trick8d2ee372014-06-04 07:06:27 +0000322}
323
Robin Morisset59c23cd2014-08-21 21:50:01 +0000324bool ARMSubtarget::enableAtomicExpand() const {
Eric Christopherc40e5ed2014-06-19 21:03:04 +0000325 return hasAnyDataBarrier() && !isThumb1Only();
326}
327
Tim Northover910dde72015-08-03 17:20:10 +0000328bool ARMSubtarget::useStride4VFPs(const MachineFunction &MF) const {
Tim Northoverf8e47e42015-10-28 22:56:36 +0000329 // For general targets, the prologue can grow when VFPs are allocated with
330 // stride 4 (more vpush instructions). But WatchOS uses a compact unwind
331 // format which it's more important to get right.
332 return isTargetWatchOS() || (isSwift() && !MF.getFunction()->optForMinSize());
Tim Northover910dde72015-08-03 17:20:10 +0000333}
334
Eric Christopherc1058df2014-07-04 01:55:26 +0000335bool ARMSubtarget::useMovt(const MachineFunction &MF) const {
336 // NOTE Windows on ARM needs to use mov.w/mov.t pairs to materialise 32-bit
337 // immediates as it is inherently position independent, and may be out of
338 // range otherwise.
Akira Hatanaka024d91a2015-07-16 00:58:23 +0000339 return !NoMovt && hasV6T2Ops() &&
Sanjay Patel924879a2015-08-04 15:49:57 +0000340 (isTargetWindows() || !MF.getFunction()->optForMinSize());
Eric Christopherc1058df2014-07-04 01:55:26 +0000341}
Akira Hatanakaddf76aa2015-05-23 01:14:08 +0000342
343bool ARMSubtarget::useFastISel() const {
Oliver Stannardf2ed5c62015-09-23 09:19:54 +0000344 // Enable fast-isel for any target, for testing only.
345 if (ForceFastISel)
346 return true;
347
Eric Christophera8359562015-09-18 20:08:18 +0000348 // Limit fast-isel to the targets that are or have been tested.
349 if (!hasV6Ops())
350 return false;
351
Akira Hatanakaddf76aa2015-05-23 01:14:08 +0000352 // Thumb2 support on iOS; ARM support on iOS, Linux and NaCl.
353 return TM.Options.EnableFastISel &&
354 ((isTargetMachO() && !isThumb1Only()) ||
355 (isTargetLinux() && !isThumb()) || (isTargetNaCl() && !isThumb()));
356}