blob: 561f80ad21f8fb206763b452bab9fc4cba077742 [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"
Tim Northover747ae9a2015-11-18 21:10:39 +000029#include "llvm/MC/MCAsmInfo.h"
Bob Wilson45825302009-06-22 21:01:46 +000030#include "llvm/Support/CommandLine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000031#include "llvm/Target/TargetInstrInfo.h"
Renato Golinb4dd6c52013-03-21 18:47:47 +000032#include "llvm/Target/TargetOptions.h"
Chris Bieneman03695ab2014-07-15 17:18:41 +000033#include "llvm/Target/TargetRegisterInfo.h"
Evan Cheng54b68e32011-07-01 20:45:01 +000034
Chandler Carruthd174b722014-04-22 02:03:14 +000035using namespace llvm;
36
Chandler Carruthe96dd892014-04-21 22:55:11 +000037#define DEBUG_TYPE "arm-subtarget"
38
Evan Cheng54b68e32011-07-01 20:45:01 +000039#define GET_SUBTARGETINFO_TARGET_DESC
Evan Cheng4d1ca962011-07-08 01:53:10 +000040#define GET_SUBTARGETINFO_CTOR
Evan Chengc9c090d2011-07-01 22:36:09 +000041#include "ARMGenSubtargetInfo.inc"
Evan Cheng54b68e32011-07-01 20:45:01 +000042
Bob Wilson45825302009-06-22 21:01:46 +000043static cl::opt<bool>
Bob Wilsone8a549c2012-09-29 21:43:49 +000044UseFusedMulOps("arm-use-mulops",
45 cl::init(true), cl::Hidden);
46
Weiming Zhao0da5cc02013-11-13 18:29:49 +000047enum ITMode {
48 DefaultIT,
49 RestrictedIT,
50 NoRestrictedIT
51};
52
53static cl::opt<ITMode>
54IT(cl::desc("IT block support"), cl::Hidden, cl::init(DefaultIT),
55 cl::ZeroOrMore,
56 cl::values(clEnumValN(DefaultIT, "arm-default-it",
57 "Generate IT block based on arch"),
58 clEnumValN(RestrictedIT, "arm-restrict-it",
59 "Disallow deprecated IT based on ARMv8"),
60 clEnumValN(NoRestrictedIT, "arm-no-restrict-it",
61 "Allow IT blocks based on ARMv7"),
62 clEnumValEnd));
63
Oliver Stannardf2ed5c62015-09-23 09:19:54 +000064/// ForceFastISel - Use the fast-isel, even for subtargets where it is not
65/// currently supported (for testing only).
66static cl::opt<bool>
67ForceFastISel("arm-force-fast-isel",
68 cl::init(false), cl::Hidden);
69
Eric Christophera47f6802014-06-13 00:20:35 +000070/// initializeSubtargetDependencies - Initializes using a CPU and feature string
71/// so that we can use initializer lists for subtarget initialization.
72ARMSubtarget &ARMSubtarget::initializeSubtargetDependencies(StringRef CPU,
73 StringRef FS) {
74 initializeEnvironment();
Eric Christopherb68e2532014-09-03 20:36:31 +000075 initSubtargetFeatures(CPU, FS);
Eric Christophera47f6802014-06-13 00:20:35 +000076 return *this;
77}
78
Eric Christopher8b770652015-01-26 19:03:15 +000079ARMFrameLowering *ARMSubtarget::initializeFrameLowering(StringRef CPU,
80 StringRef FS) {
81 ARMSubtarget &STI = initializeSubtargetDependencies(CPU, FS);
82 if (STI.isThumb1Only())
83 return (ARMFrameLowering *)new Thumb1FrameLowering(STI);
84
85 return new ARMFrameLowering(STI);
86}
87
Daniel Sandersa73f1fd2015-06-10 12:11:26 +000088ARMSubtarget::ARMSubtarget(const Triple &TT, const std::string &CPU,
Eric Christopher8b770652015-01-26 19:03:15 +000089 const std::string &FS,
90 const ARMBaseTargetMachine &TM, bool IsLittle)
Diana Picuseb1068a2016-06-27 13:06:10 +000091 : ARMGenSubtargetInfo(TT, CPU, FS), UseMulOps(UseFusedMulOps),
92 CPUString(CPU), IsLittle(IsLittle), TargetTriple(TT), Options(TM.Options),
93 TM(TM), FrameLowering(initializeFrameLowering(CPU, FS)),
Eric Christopher8b770652015-01-26 19:03:15 +000094 // 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() {
Tim Northover747ae9a2015-11-18 21:10:39 +0000104 // MCAsmInfo isn't always present (e.g. in opt) so we can't initialize this
105 // directly from it, but we can try to make sure they're consistent when both
106 // available.
Tim Northover042a6c12016-01-27 19:32:29 +0000107 UseSjLjEH = isTargetDarwin() && !isTargetWatchABI();
Tim Northover747ae9a2015-11-18 21:10:39 +0000108 assert((!TM.getMCAsmInfo() ||
109 (TM.getMCAsmInfo()->getExceptionHandlingType() ==
110 ExceptionHandling::SjLj) == UseSjLjEH) &&
111 "inconsistent sjlj choice between CodeGen and MC");
Bill Wendling61375d82013-02-16 01:36:26 +0000112}
113
Eric Christopherb68e2532014-09-03 20:36:31 +0000114void ARMSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) {
Tilmann Scheller63872ce2013-09-02 17:09:01 +0000115 if (CPUString.empty()) {
Tim Northovere0ccdc62015-10-28 22:46:43 +0000116 CPUString = "generic";
117
118 if (isTargetDarwin()) {
119 StringRef ArchName = TargetTriple.getArchName();
120 if (ArchName.endswith("v7s"))
121 // Default to the Swift CPU when targeting armv7s/thumbv7s.
122 CPUString = "swift";
123 else if (ArchName.endswith("v7k"))
124 // Default to the Cortex-a7 CPU when targeting armv7k/thumbv7k.
125 // ARMv7k does not use SjLj exception handling.
126 CPUString = "cortex-a7";
127 }
Tilmann Scheller63872ce2013-09-02 17:09:01 +0000128 }
Evan Chengec415ef2009-03-08 04:02:49 +0000129
Evan Cheng0b33a322011-06-30 02:12:44 +0000130 // Insert the architecture feature derived from the target triple into the
131 // feature string. This is important for setting features that are implied
132 // based on the architecture version.
Daniel Sanders50f17232015-09-15 16:17:27 +0000133 std::string ArchFS = ARM_MC::ParseARMTriple(TargetTriple, CPUString);
Evan Cheng2bd65362011-07-07 00:08:19 +0000134 if (!FS.empty()) {
135 if (!ArchFS.empty())
Yaron Keren075759a2015-03-30 15:42:36 +0000136 ArchFS = (Twine(ArchFS) + "," + FS).str();
Evan Cheng2bd65362011-07-07 00:08:19 +0000137 else
138 ArchFS = FS;
139 }
Evan Cheng1a72add62011-07-07 07:07:08 +0000140 ParseSubtargetFeatures(CPUString, ArchFS);
Evan Cheng2bd65362011-07-07 00:08:19 +0000141
Joerg Sonnenberger002a1472013-12-13 11:16:00 +0000142 // FIXME: This used enable V6T2 support implicitly for Thumb2 mode.
143 // Assert this for now to make the change obvious.
144 assert(hasV6T2Ops() || !hasThumb2());
Bob Wilsond0046ca2010-11-09 22:50:47 +0000145
Andrew Trick352abc12012-08-08 02:44:16 +0000146 // Keep a pointer to static instruction cost data for the specified CPU.
147 SchedModel = getSchedModelForCPU(CPUString);
148
Evan Cheng54b68e32011-07-01 20:45:01 +0000149 // Initialize scheduling itinerary for the specified CPU.
150 InstrItins = getInstrItineraryForCPU(CPUString);
151
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000152 // FIXME: this is invalid for WindowsCE
Eric Christopher1971c352014-12-18 02:08:45 +0000153 if (isTargetWindows())
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000154 NoARM = true;
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000155
Lauro Ramos Venancio048e16ff2007-02-13 19:52:28 +0000156 if (isAAPCS_ABI())
157 stackAlignment = 8;
Tim Northovere0ccdc62015-10-28 22:46:43 +0000158 if (isTargetNaCl() || isAAPCS16_ABI())
Mark Seabornbe266aa2014-02-16 18:59:48 +0000159 stackAlignment = 16;
Lauro Ramos Venancio048e16ff2007-02-13 19:52:28 +0000160
Artyom Skrobovad8a0632015-09-28 09:44:11 +0000161 // FIXME: Completely disable sibcall for Thumb1 since ThumbRegisterInfo::
162 // emitEpilogue is not ready for them. Thumb tail calls also use t2B, as
163 // the Thumb1 16-bit unconditional branch doesn't have sufficient relocation
164 // support in the assembler and linker to be used. This would need to be
165 // fixed to fully support tail calls in Thumb1.
166 //
167 // Doing this is tricky, since the LDM/POP instruction on Thumb doesn't take
168 // LR. This means if we need to reload LR, it takes an extra instructions,
169 // which outweighs the value of the tail call; but here we don't know yet
170 // whether LR is going to be used. Probably the right approach is to
171 // generate the tail call here and turn it back into CALL/RET in
172 // emitEpilogue if LR is used.
173
174 // Thumb1 PIC calls to external symbols use BX, so they can be tail calls,
175 // but we need to make sure there are enough registers; the only valid
176 // registers are the 4 used for parameters. We don't currently do this
177 // case.
178
Bradley Smitha1189102016-01-15 10:26:17 +0000179 SupportsTailCall = !isThumb() || hasV8MBaselineOps();
Artyom Skrobovad8a0632015-09-28 09:44:11 +0000180
181 if (isTargetMachO() && isTargetIOS() && getTargetTriple().isOSVersionLT(5, 0))
182 SupportsTailCall = false;
David Goodwin9a051a52009-10-01 21:46:35 +0000183
Weiming Zhao0da5cc02013-11-13 18:29:49 +0000184 switch (IT) {
185 case DefaultIT:
Alexander Kornienkofb37cfa2015-04-14 15:32:58 +0000186 RestrictIT = hasV8Ops();
Weiming Zhao0da5cc02013-11-13 18:29:49 +0000187 break;
188 case RestrictedIT:
189 RestrictIT = true;
190 break;
191 case NoRestrictedIT:
192 RestrictIT = false;
193 break;
194 }
195
Renato Golinb4dd6c52013-03-21 18:47:47 +0000196 // NEON f32 ops are non-IEEE 754 compliant. Darwin is ok with it by default.
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000197 const FeatureBitset &Bits = getFeatureBits();
198 if ((Bits[ARM::ProcA5] || Bits[ARM::ProcA8]) && // Where this matters
Renato Golinb4dd6c52013-03-21 18:47:47 +0000199 (Options.UnsafeFPMath || isTargetDarwin()))
200 UseNEONForSinglePrecisionFP = true;
Diana Picus92423ce2016-06-27 09:08:23 +0000201
Oliver Stannard8331aae2016-08-08 15:28:31 +0000202 if (isRWPI())
203 ReserveR9 = true;
204
Diana Picus92423ce2016-06-27 09:08:23 +0000205 // FIXME: Teach TableGen to deal with these instead of doing it manually here.
206 switch (ARMProcFamily) {
207 case Others:
208 case CortexA5:
209 break;
210 case CortexA7:
211 LdStMultipleTiming = DoubleIssue;
212 break;
213 case CortexA8:
214 LdStMultipleTiming = DoubleIssue;
215 break;
216 case CortexA9:
217 LdStMultipleTiming = DoubleIssueCheckUnalignedAccess;
218 PreISelOperandLatencyAdjustment = 1;
219 break;
220 case CortexA12:
221 break;
222 case CortexA15:
223 MaxInterleaveFactor = 2;
224 PreISelOperandLatencyAdjustment = 1;
Diana Picusb772e402016-07-06 11:22:11 +0000225 PartialUpdateClearance = 12;
Diana Picus92423ce2016-06-27 09:08:23 +0000226 break;
227 case CortexA17:
228 case CortexA32:
229 case CortexA35:
230 case CortexA53:
231 case CortexA57:
232 case CortexA72:
233 case CortexA73:
234 case CortexR4:
235 case CortexR4F:
236 case CortexR5:
237 case CortexR7:
238 case CortexM3:
239 case ExynosM1:
240 break;
241 case Krait:
242 PreISelOperandLatencyAdjustment = 1;
243 break;
244 case Swift:
245 MaxInterleaveFactor = 2;
246 LdStMultipleTiming = SingleIssuePlusExtras;
247 PreISelOperandLatencyAdjustment = 1;
Diana Picusb772e402016-07-06 11:22:11 +0000248 PartialUpdateClearance = 12;
Diana Picus92423ce2016-06-27 09:08:23 +0000249 break;
250 }
Evan Cheng10043e22007-01-19 07:51:42 +0000251}
Evan Cheng43b9ca62009-08-28 23:18:09 +0000252
Eric Christopher661f2d12014-12-18 02:20:58 +0000253bool ARMSubtarget::isAPCS_ABI() const {
254 assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
255 return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_APCS;
256}
257bool ARMSubtarget::isAAPCS_ABI() const {
258 assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
Tim Northovere0ccdc62015-10-28 22:46:43 +0000259 return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS ||
260 TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS16;
Eric Christopher661f2d12014-12-18 02:20:58 +0000261}
Tim Northovere0ccdc62015-10-28 22:46:43 +0000262bool ARMSubtarget::isAAPCS16_ABI() const {
263 assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
264 return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS16;
265}
266
Oliver Stannard8331aae2016-08-08 15:28:31 +0000267bool ARMSubtarget::isROPI() const {
268 return TM.getRelocationModel() == Reloc::ROPI ||
269 TM.getRelocationModel() == Reloc::ROPI_RWPI;
270}
271bool ARMSubtarget::isRWPI() const {
272 return TM.getRelocationModel() == Reloc::RWPI ||
273 TM.getRelocationModel() == Reloc::ROPI_RWPI;
274}
275
Rafael Espindola5ac8f5c2016-06-28 15:38:13 +0000276bool ARMSubtarget::isGVIndirectSymbol(const GlobalValue *GV) const {
Rafael Espindola3beef8d2016-06-27 23:15:57 +0000277 if (!TM.shouldAssumeDSOLocal(*GV->getParent(), GV))
Evan Cheng1b389522009-09-03 07:04:02 +0000278 return true;
Peter Collingbourne6a9d1772015-07-05 20:52:35 +0000279
Rafael Espindolaeece1132016-05-27 22:41:51 +0000280 // 32 bit macho has no relocation for a-b if a is undefined, even if b is in
281 // the section that is being relocated. This means we have to use o load even
282 // for GVs that are known to be local to the dso.
Rafael Espindola5ac8f5c2016-06-28 15:38:13 +0000283 if (isTargetDarwin() && TM.isPositionIndependent() &&
Rafael Espindolaeece1132016-05-27 22:41:51 +0000284 (GV->isDeclarationForLinker() || GV->hasCommonLinkage()))
285 return true;
Evan Cheng1b389522009-09-03 07:04:02 +0000286
287 return false;
Evan Cheng43b9ca62009-08-28 23:18:09 +0000288}
David Goodwin0d412c22009-11-10 00:48:55 +0000289
Owen Andersona3181e22010-09-28 21:57:50 +0000290unsigned ARMSubtarget::getMispredictionPenalty() const {
Pete Cooper11759452014-09-02 17:43:54 +0000291 return SchedModel.MispredictPenalty;
Owen Andersona3181e22010-09-28 21:57:50 +0000292}
293
Bob Wilsone7dde0c2013-11-03 06:14:38 +0000294bool ARMSubtarget::hasSinCos() const {
Tim Northover8b403662015-10-28 22:51:16 +0000295 return isTargetWatchOS() ||
296 (isTargetIOS() && !getTargetTriple().isOSVersionLT(7, 0));
Bob Wilsone7dde0c2013-11-03 06:14:38 +0000297}
298
Matthias Braun9e859802015-07-17 23:18:30 +0000299bool ARMSubtarget::enableMachineScheduler() const {
300 // Enable the MachineScheduler before register allocation for out-of-order
301 // architectures where we do not use the PostRA scheduler anymore (for now
302 // restricted to swift).
303 return getSchedModel().isOutOfOrder() && isSwift();
304}
305
Sanjay Patela2f658d2014-07-15 22:39:58 +0000306// This overrides the PostRAScheduler bit in the SchedModel for any CPU.
Matthias Braun39a2afc2015-06-13 03:42:16 +0000307bool ARMSubtarget::enablePostRAScheduler() const {
Matthias Braun9e859802015-07-17 23:18:30 +0000308 // No need for PostRA scheduling on out of order CPUs (for now restricted to
309 // swift).
310 if (getSchedModel().isOutOfOrder() && isSwift())
311 return false;
Sanjay Patela2f658d2014-07-15 22:39:58 +0000312 return (!isThumb() || hasThumb2());
Andrew Trick8d2ee372014-06-04 07:06:27 +0000313}
314
Robin Morisset59c23cd2014-08-21 21:50:01 +0000315bool ARMSubtarget::enableAtomicExpand() const {
Bradley Smith433c22e2016-01-15 10:26:51 +0000316 return hasAnyDataBarrier() && (!isThumb() || hasV8MBaselineOps());
Eric Christopherc40e5ed2014-06-19 21:03:04 +0000317}
318
Tim Northover910dde72015-08-03 17:20:10 +0000319bool ARMSubtarget::useStride4VFPs(const MachineFunction &MF) const {
Tim Northoverf8e47e42015-10-28 22:56:36 +0000320 // For general targets, the prologue can grow when VFPs are allocated with
321 // stride 4 (more vpush instructions). But WatchOS uses a compact unwind
322 // format which it's more important to get right.
Tim Northover042a6c12016-01-27 19:32:29 +0000323 return isTargetWatchABI() || (isSwift() && !MF.getFunction()->optForMinSize());
Tim Northover910dde72015-08-03 17:20:10 +0000324}
325
Eric Christopherc1058df2014-07-04 01:55:26 +0000326bool ARMSubtarget::useMovt(const MachineFunction &MF) const {
327 // NOTE Windows on ARM needs to use mov.w/mov.t pairs to materialise 32-bit
328 // immediates as it is inherently position independent, and may be out of
329 // range otherwise.
Bradley Smithd9a99ce2016-01-15 10:25:14 +0000330 return !NoMovt && hasV8MBaselineOps() &&
Sanjay Patel924879a2015-08-04 15:49:57 +0000331 (isTargetWindows() || !MF.getFunction()->optForMinSize());
Eric Christopherc1058df2014-07-04 01:55:26 +0000332}
Akira Hatanakaddf76aa2015-05-23 01:14:08 +0000333
334bool ARMSubtarget::useFastISel() const {
Oliver Stannardf2ed5c62015-09-23 09:19:54 +0000335 // Enable fast-isel for any target, for testing only.
336 if (ForceFastISel)
337 return true;
338
Eric Christophera8359562015-09-18 20:08:18 +0000339 // Limit fast-isel to the targets that are or have been tested.
340 if (!hasV6Ops())
341 return false;
342
Akira Hatanakaddf76aa2015-05-23 01:14:08 +0000343 // Thumb2 support on iOS; ARM support on iOS, Linux and NaCl.
344 return TM.Options.EnableFastISel &&
345 ((isTargetMachO() && !isThumb1Only()) ||
346 (isTargetLinux() && !isThumb()) || (isTargetNaCl() && !isThumb()));
347}