blob: 3a9f3c71d3f80d00c8c90e2946f87508e48b2d26 [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
Quentin Colombet51b7af32017-07-01 00:45:45 +000014#include "ARM.h"
15
Quentin Colombet51b7af32017-07-01 00:45:45 +000016#include "ARMCallLowering.h"
17#include "ARMLegalizerInfo.h"
18#include "ARMRegisterBankInfo.h"
Evan Cheng10043e22007-01-19 07:51:42 +000019#include "ARMSubtarget.h"
Eric Christopher80b24ef2014-06-26 19:30:02 +000020#include "ARMFrameLowering.h"
Eric Christopher80b24ef2014-06-26 19:30:02 +000021#include "ARMInstrInfo.h"
Eric Christopher80b24ef2014-06-26 19:30:02 +000022#include "ARMSubtarget.h"
Eric Christopher661f2d12014-12-18 02:20:58 +000023#include "ARMTargetMachine.h"
Eugene Zelenkoe79c0772017-01-27 23:58:02 +000024#include "MCTargetDesc/ARMMCTargetDesc.h"
Eric Christopher80b24ef2014-06-26 19:30:02 +000025#include "Thumb1FrameLowering.h"
26#include "Thumb1InstrInfo.h"
27#include "Thumb2InstrInfo.h"
Eugene Zelenkoe79c0772017-01-27 23:58:02 +000028#include "llvm/ADT/StringRef.h"
29#include "llvm/ADT/Triple.h"
30#include "llvm/ADT/Twine.h"
Quentin Colombet51b7af32017-07-01 00:45:45 +000031#include "llvm/CodeGen/GlobalISel/IRTranslator.h"
32#include "llvm/CodeGen/GlobalISel/InstructionSelect.h"
33#include "llvm/CodeGen/GlobalISel/Legalizer.h"
34#include "llvm/CodeGen/GlobalISel/RegBankSelect.h"
Eugene Zelenkoe79c0772017-01-27 23:58:02 +000035#include "llvm/CodeGen/MachineFunction.h"
Bill Wendling5a92eec2013-02-15 22:41:25 +000036#include "llvm/IR/Function.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000037#include "llvm/IR/GlobalValue.h"
Tim Northover747ae9a2015-11-18 21:10:39 +000038#include "llvm/MC/MCAsmInfo.h"
Eugene Zelenkoe79c0772017-01-27 23:58:02 +000039#include "llvm/MC/MCTargetOptions.h"
Eugene Zelenkoe79c0772017-01-27 23:58:02 +000040#include "llvm/Support/CodeGen.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000041#include "llvm/Support/CommandLine.h"
Zijiao Ma53d55f42016-08-17 02:08:28 +000042#include "llvm/Support/TargetParser.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000043#include "llvm/Target/TargetOptions.h"
Eugene Zelenkoe79c0772017-01-27 23:58:02 +000044#include <cassert>
45#include <string>
Evan Cheng54b68e32011-07-01 20:45:01 +000046
Chandler Carruthd174b722014-04-22 02:03:14 +000047using namespace llvm;
48
Chandler Carruthe96dd892014-04-21 22:55:11 +000049#define DEBUG_TYPE "arm-subtarget"
50
Evan Cheng54b68e32011-07-01 20:45:01 +000051#define GET_SUBTARGETINFO_TARGET_DESC
Evan Cheng4d1ca962011-07-08 01:53:10 +000052#define GET_SUBTARGETINFO_CTOR
Evan Chengc9c090d2011-07-01 22:36:09 +000053#include "ARMGenSubtargetInfo.inc"
Evan Cheng54b68e32011-07-01 20:45:01 +000054
Bob Wilson45825302009-06-22 21:01:46 +000055static cl::opt<bool>
Bob Wilsone8a549c2012-09-29 21:43:49 +000056UseFusedMulOps("arm-use-mulops",
57 cl::init(true), cl::Hidden);
58
Weiming Zhao0da5cc02013-11-13 18:29:49 +000059enum ITMode {
60 DefaultIT,
61 RestrictedIT,
62 NoRestrictedIT
63};
64
65static cl::opt<ITMode>
66IT(cl::desc("IT block support"), cl::Hidden, cl::init(DefaultIT),
67 cl::ZeroOrMore,
68 cl::values(clEnumValN(DefaultIT, "arm-default-it",
69 "Generate IT block based on arch"),
70 clEnumValN(RestrictedIT, "arm-restrict-it",
71 "Disallow deprecated IT based on ARMv8"),
72 clEnumValN(NoRestrictedIT, "arm-no-restrict-it",
Mehdi Amini732afdd2016-10-08 19:41:06 +000073 "Allow IT blocks based on ARMv7")));
Weiming Zhao0da5cc02013-11-13 18:29:49 +000074
Oliver Stannardf2ed5c62015-09-23 09:19:54 +000075/// ForceFastISel - Use the fast-isel, even for subtargets where it is not
76/// currently supported (for testing only).
77static cl::opt<bool>
78ForceFastISel("arm-force-fast-isel",
79 cl::init(false), cl::Hidden);
80
Eric Christophera47f6802014-06-13 00:20:35 +000081/// initializeSubtargetDependencies - Initializes using a CPU and feature string
82/// so that we can use initializer lists for subtarget initialization.
83ARMSubtarget &ARMSubtarget::initializeSubtargetDependencies(StringRef CPU,
84 StringRef FS) {
85 initializeEnvironment();
Eric Christopherb68e2532014-09-03 20:36:31 +000086 initSubtargetFeatures(CPU, FS);
Eric Christophera47f6802014-06-13 00:20:35 +000087 return *this;
88}
89
Eric Christopher8b770652015-01-26 19:03:15 +000090ARMFrameLowering *ARMSubtarget::initializeFrameLowering(StringRef CPU,
91 StringRef FS) {
92 ARMSubtarget &STI = initializeSubtargetDependencies(CPU, FS);
93 if (STI.isThumb1Only())
94 return (ARMFrameLowering *)new Thumb1FrameLowering(STI);
95
96 return new ARMFrameLowering(STI);
97}
98
Daniel Sandersa73f1fd2015-06-10 12:11:26 +000099ARMSubtarget::ARMSubtarget(const Triple &TT, const std::string &CPU,
Eric Christopher8b770652015-01-26 19:03:15 +0000100 const std::string &FS,
101 const ARMBaseTargetMachine &TM, bool IsLittle)
Diana Picuseb1068a2016-06-27 13:06:10 +0000102 : ARMGenSubtargetInfo(TT, CPU, FS), UseMulOps(UseFusedMulOps),
Eric Christopher015dc202017-07-01 02:55:22 +0000103 CPUString(CPU), IsLittle(IsLittle), TargetTriple(TT), Options(TM.Options),
104 TM(TM), FrameLowering(initializeFrameLowering(CPU, FS)),
Eric Christopher8b770652015-01-26 19:03:15 +0000105 // At this point initializeSubtargetDependencies has been called so
106 // we can query directly.
Eric Christopher80b24ef2014-06-26 19:30:02 +0000107 InstrInfo(isThumb1Only()
108 ? (ARMBaseInstrInfo *)new Thumb1InstrInfo(*this)
109 : !isThumb()
110 ? (ARMBaseInstrInfo *)new ARMInstrInfo(*this)
111 : (ARMBaseInstrInfo *)new Thumb2InstrInfo(*this)),
Quentin Colombet51b7af32017-07-01 00:45:45 +0000112 TLInfo(TM, *this) {
Eric Christopher3df231a2017-07-01 03:41:53 +0000113
Quentin Colombet61d71a12017-08-15 22:31:51 +0000114 CallLoweringInfo.reset(new ARMCallLowering(*getTargetLowering()));
115 Legalizer.reset(new ARMLegalizerInfo(*this));
Quentin Colombet51b7af32017-07-01 00:45:45 +0000116
117 auto *RBI = new ARMRegisterBankInfo(*getRegisterInfo());
118
119 // FIXME: At this point, we can't rely on Subtarget having RBI.
120 // It's awkward to mix passing RBI and the Subtarget; should we pass
121 // TII/TRI as well?
Quentin Colombet61d71a12017-08-15 22:31:51 +0000122 InstSelector.reset(createARMInstructionSelector(
Quentin Colombet51b7af32017-07-01 00:45:45 +0000123 *static_cast<const ARMBaseTargetMachine *>(&TM), *this, *RBI));
124
Quentin Colombet61d71a12017-08-15 22:31:51 +0000125 RegBankInfo.reset(RBI);
Quentin Colombet51b7af32017-07-01 00:45:45 +0000126}
Diana Picus22274932016-11-11 08:27:37 +0000127
128const CallLowering *ARMSubtarget::getCallLowering() const {
Quentin Colombet61d71a12017-08-15 22:31:51 +0000129 return CallLoweringInfo.get();
Diana Picus22274932016-11-11 08:27:37 +0000130}
131
132const InstructionSelector *ARMSubtarget::getInstructionSelector() const {
Quentin Colombet61d71a12017-08-15 22:31:51 +0000133 return InstSelector.get();
Diana Picus22274932016-11-11 08:27:37 +0000134}
135
136const LegalizerInfo *ARMSubtarget::getLegalizerInfo() const {
Quentin Colombet61d71a12017-08-15 22:31:51 +0000137 return Legalizer.get();
Diana Picus22274932016-11-11 08:27:37 +0000138}
139
140const RegisterBankInfo *ARMSubtarget::getRegBankInfo() const {
Quentin Colombet61d71a12017-08-15 22:31:51 +0000141 return RegBankInfo.get();
Diana Picus22274932016-11-11 08:27:37 +0000142}
Bill Wendling5a92eec2013-02-15 22:41:25 +0000143
Dean Michael Berris464015442016-09-19 00:54:35 +0000144bool ARMSubtarget::isXRaySupported() const {
145 // We don't currently suppport Thumb, but Windows requires Thumb.
146 return hasV6Ops() && hasARMOps() && !isTargetWindows();
147}
148
Bill Wendling61375d82013-02-16 01:36:26 +0000149void ARMSubtarget::initializeEnvironment() {
Tim Northover747ae9a2015-11-18 21:10:39 +0000150 // MCAsmInfo isn't always present (e.g. in opt) so we can't initialize this
151 // directly from it, but we can try to make sure they're consistent when both
152 // available.
Tim Northover042a6c12016-01-27 19:32:29 +0000153 UseSjLjEH = isTargetDarwin() && !isTargetWatchABI();
Tim Northover747ae9a2015-11-18 21:10:39 +0000154 assert((!TM.getMCAsmInfo() ||
155 (TM.getMCAsmInfo()->getExceptionHandlingType() ==
156 ExceptionHandling::SjLj) == UseSjLjEH) &&
157 "inconsistent sjlj choice between CodeGen and MC");
Bill Wendling61375d82013-02-16 01:36:26 +0000158}
159
Eric Christopherb68e2532014-09-03 20:36:31 +0000160void ARMSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) {
Tilmann Scheller63872ce2013-09-02 17:09:01 +0000161 if (CPUString.empty()) {
Tim Northovere0ccdc62015-10-28 22:46:43 +0000162 CPUString = "generic";
163
164 if (isTargetDarwin()) {
165 StringRef ArchName = TargetTriple.getArchName();
Florian Hahn67ddd1d2017-07-27 16:27:56 +0000166 ARM::ArchKind AK = ARM::parseArch(ArchName);
167 if (AK == ARM::ArchKind::ARMV7S)
Tim Northovere0ccdc62015-10-28 22:46:43 +0000168 // Default to the Swift CPU when targeting armv7s/thumbv7s.
169 CPUString = "swift";
Florian Hahn67ddd1d2017-07-27 16:27:56 +0000170 else if (AK == ARM::ArchKind::ARMV7K)
Tim Northovere0ccdc62015-10-28 22:46:43 +0000171 // Default to the Cortex-a7 CPU when targeting armv7k/thumbv7k.
172 // ARMv7k does not use SjLj exception handling.
173 CPUString = "cortex-a7";
174 }
Tilmann Scheller63872ce2013-09-02 17:09:01 +0000175 }
Evan Chengec415ef2009-03-08 04:02:49 +0000176
Evan Cheng0b33a322011-06-30 02:12:44 +0000177 // Insert the architecture feature derived from the target triple into the
178 // feature string. This is important for setting features that are implied
179 // based on the architecture version.
Daniel Sanders50f17232015-09-15 16:17:27 +0000180 std::string ArchFS = ARM_MC::ParseARMTriple(TargetTriple, CPUString);
Evan Cheng2bd65362011-07-07 00:08:19 +0000181 if (!FS.empty()) {
182 if (!ArchFS.empty())
Yaron Keren075759a2015-03-30 15:42:36 +0000183 ArchFS = (Twine(ArchFS) + "," + FS).str();
Evan Cheng2bd65362011-07-07 00:08:19 +0000184 else
185 ArchFS = FS;
186 }
Evan Cheng1a72add62011-07-07 07:07:08 +0000187 ParseSubtargetFeatures(CPUString, ArchFS);
Evan Cheng2bd65362011-07-07 00:08:19 +0000188
Joerg Sonnenberger002a1472013-12-13 11:16:00 +0000189 // FIXME: This used enable V6T2 support implicitly for Thumb2 mode.
190 // Assert this for now to make the change obvious.
191 assert(hasV6T2Ops() || !hasThumb2());
Bob Wilsond0046ca2010-11-09 22:50:47 +0000192
Prakhar Bahuguna52a7dd72016-12-15 07:59:08 +0000193 // Execute only support requires movt support
194 if (genExecuteOnly())
195 assert(hasV8MBaselineOps() && !NoMovt && "Cannot generate execute-only code for this target");
196
Andrew Trick352abc12012-08-08 02:44:16 +0000197 // Keep a pointer to static instruction cost data for the specified CPU.
198 SchedModel = getSchedModelForCPU(CPUString);
199
Evan Cheng54b68e32011-07-01 20:45:01 +0000200 // Initialize scheduling itinerary for the specified CPU.
201 InstrItins = getInstrItineraryForCPU(CPUString);
202
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000203 // FIXME: this is invalid for WindowsCE
Eric Christopher1971c352014-12-18 02:08:45 +0000204 if (isTargetWindows())
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000205 NoARM = true;
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000206
Lauro Ramos Venancio048e16ff2007-02-13 19:52:28 +0000207 if (isAAPCS_ABI())
208 stackAlignment = 8;
Tim Northovere0ccdc62015-10-28 22:46:43 +0000209 if (isTargetNaCl() || isAAPCS16_ABI())
Mark Seabornbe266aa2014-02-16 18:59:48 +0000210 stackAlignment = 16;
Lauro Ramos Venancio048e16ff2007-02-13 19:52:28 +0000211
Artyom Skrobovad8a0632015-09-28 09:44:11 +0000212 // FIXME: Completely disable sibcall for Thumb1 since ThumbRegisterInfo::
213 // emitEpilogue is not ready for them. Thumb tail calls also use t2B, as
214 // the Thumb1 16-bit unconditional branch doesn't have sufficient relocation
215 // support in the assembler and linker to be used. This would need to be
216 // fixed to fully support tail calls in Thumb1.
217 //
Sanne Woudaa9941852017-02-03 11:15:53 +0000218 // For ARMv8-M, we /do/ implement tail calls. Doing this is tricky for v8-M
219 // baseline, since the LDM/POP instruction on Thumb doesn't take LR. This
220 // means if we need to reload LR, it takes extra instructions, which outweighs
221 // the value of the tail call; but here we don't know yet whether LR is going
222 // to be used. We generate the tail call here and turn it back into CALL/RET
223 // in emitEpilogue if LR is used.
Artyom Skrobovad8a0632015-09-28 09:44:11 +0000224
225 // Thumb1 PIC calls to external symbols use BX, so they can be tail calls,
226 // but we need to make sure there are enough registers; the only valid
227 // registers are the 4 used for parameters. We don't currently do this
228 // case.
229
Bradley Smitha1189102016-01-15 10:26:17 +0000230 SupportsTailCall = !isThumb() || hasV8MBaselineOps();
Artyom Skrobovad8a0632015-09-28 09:44:11 +0000231
232 if (isTargetMachO() && isTargetIOS() && getTargetTriple().isOSVersionLT(5, 0))
233 SupportsTailCall = false;
David Goodwin9a051a52009-10-01 21:46:35 +0000234
Weiming Zhao0da5cc02013-11-13 18:29:49 +0000235 switch (IT) {
236 case DefaultIT:
Alexander Kornienkofb37cfa2015-04-14 15:32:58 +0000237 RestrictIT = hasV8Ops();
Weiming Zhao0da5cc02013-11-13 18:29:49 +0000238 break;
239 case RestrictedIT:
240 RestrictIT = true;
241 break;
242 case NoRestrictedIT:
243 RestrictIT = false;
244 break;
245 }
246
Renato Golinb4dd6c52013-03-21 18:47:47 +0000247 // NEON f32 ops are non-IEEE 754 compliant. Darwin is ok with it by default.
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000248 const FeatureBitset &Bits = getFeatureBits();
249 if ((Bits[ARM::ProcA5] || Bits[ARM::ProcA8]) && // Where this matters
Renato Golinb4dd6c52013-03-21 18:47:47 +0000250 (Options.UnsafeFPMath || isTargetDarwin()))
251 UseNEONForSinglePrecisionFP = true;
Diana Picus92423ce2016-06-27 09:08:23 +0000252
Oliver Stannard8331aae2016-08-08 15:28:31 +0000253 if (isRWPI())
254 ReserveR9 = true;
255
Diana Picus92423ce2016-06-27 09:08:23 +0000256 // FIXME: Teach TableGen to deal with these instead of doing it manually here.
257 switch (ARMProcFamily) {
258 case Others:
259 case CortexA5:
260 break;
261 case CortexA7:
262 LdStMultipleTiming = DoubleIssue;
263 break;
264 case CortexA8:
265 LdStMultipleTiming = DoubleIssue;
266 break;
267 case CortexA9:
268 LdStMultipleTiming = DoubleIssueCheckUnalignedAccess;
269 PreISelOperandLatencyAdjustment = 1;
270 break;
271 case CortexA12:
272 break;
273 case CortexA15:
274 MaxInterleaveFactor = 2;
275 PreISelOperandLatencyAdjustment = 1;
Diana Picusb772e402016-07-06 11:22:11 +0000276 PartialUpdateClearance = 12;
Diana Picus92423ce2016-06-27 09:08:23 +0000277 break;
278 case CortexA17:
279 case CortexA32:
280 case CortexA35:
281 case CortexA53:
Sam Parkerb252ffd2017-08-21 08:43:06 +0000282 case CortexA55:
Diana Picus92423ce2016-06-27 09:08:23 +0000283 case CortexA57:
284 case CortexA72:
285 case CortexA73:
Sam Parkerb252ffd2017-08-21 08:43:06 +0000286 case CortexA75:
Diana Picus92423ce2016-06-27 09:08:23 +0000287 case CortexR4:
288 case CortexR4F:
289 case CortexR5:
290 case CortexR7:
291 case CortexM3:
Javed Absar97979892016-10-07 13:41:55 +0000292 case CortexR52:
Evandro Menezesb3ed4bc2017-07-26 21:28:20 +0000293 case ExynosM1:
Yi Kong60b5a1c2017-04-06 22:47:47 +0000294 case Kryo:
Diana Picus92423ce2016-06-27 09:08:23 +0000295 break;
296 case Krait:
297 PreISelOperandLatencyAdjustment = 1;
298 break;
299 case Swift:
300 MaxInterleaveFactor = 2;
301 LdStMultipleTiming = SingleIssuePlusExtras;
302 PreISelOperandLatencyAdjustment = 1;
Diana Picusb772e402016-07-06 11:22:11 +0000303 PartialUpdateClearance = 12;
Diana Picus92423ce2016-06-27 09:08:23 +0000304 break;
305 }
Evan Cheng10043e22007-01-19 07:51:42 +0000306}
Evan Cheng43b9ca62009-08-28 23:18:09 +0000307
Eric Christopher661f2d12014-12-18 02:20:58 +0000308bool ARMSubtarget::isAPCS_ABI() const {
309 assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
310 return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_APCS;
311}
312bool ARMSubtarget::isAAPCS_ABI() const {
313 assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
Tim Northovere0ccdc62015-10-28 22:46:43 +0000314 return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS ||
315 TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS16;
Eric Christopher661f2d12014-12-18 02:20:58 +0000316}
Tim Northovere0ccdc62015-10-28 22:46:43 +0000317bool ARMSubtarget::isAAPCS16_ABI() const {
318 assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
319 return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS16;
320}
321
Oliver Stannard8331aae2016-08-08 15:28:31 +0000322bool ARMSubtarget::isROPI() const {
323 return TM.getRelocationModel() == Reloc::ROPI ||
324 TM.getRelocationModel() == Reloc::ROPI_RWPI;
325}
326bool ARMSubtarget::isRWPI() const {
327 return TM.getRelocationModel() == Reloc::RWPI ||
328 TM.getRelocationModel() == Reloc::ROPI_RWPI;
329}
330
Rafael Espindola5ac8f5c2016-06-28 15:38:13 +0000331bool ARMSubtarget::isGVIndirectSymbol(const GlobalValue *GV) const {
Rafael Espindola3beef8d2016-06-27 23:15:57 +0000332 if (!TM.shouldAssumeDSOLocal(*GV->getParent(), GV))
Evan Cheng1b389522009-09-03 07:04:02 +0000333 return true;
Peter Collingbourne6a9d1772015-07-05 20:52:35 +0000334
Rafael Espindolaeece1132016-05-27 22:41:51 +0000335 // 32 bit macho has no relocation for a-b if a is undefined, even if b is in
336 // the section that is being relocated. This means we have to use o load even
337 // for GVs that are known to be local to the dso.
Rafael Espindola70c6a392016-08-24 19:02:29 +0000338 if (isTargetMachO() && TM.isPositionIndependent() &&
Rafael Espindolaeece1132016-05-27 22:41:51 +0000339 (GV->isDeclarationForLinker() || GV->hasCommonLinkage()))
340 return true;
Evan Cheng1b389522009-09-03 07:04:02 +0000341
342 return false;
Evan Cheng43b9ca62009-08-28 23:18:09 +0000343}
David Goodwin0d412c22009-11-10 00:48:55 +0000344
Owen Andersona3181e22010-09-28 21:57:50 +0000345unsigned ARMSubtarget::getMispredictionPenalty() const {
Pete Cooper11759452014-09-02 17:43:54 +0000346 return SchedModel.MispredictPenalty;
Owen Andersona3181e22010-09-28 21:57:50 +0000347}
348
Bob Wilsone7dde0c2013-11-03 06:14:38 +0000349bool ARMSubtarget::hasSinCos() const {
Tim Northover8b403662015-10-28 22:51:16 +0000350 return isTargetWatchOS() ||
351 (isTargetIOS() && !getTargetTriple().isOSVersionLT(7, 0));
Bob Wilsone7dde0c2013-11-03 06:14:38 +0000352}
353
Matthias Braun9e859802015-07-17 23:18:30 +0000354bool ARMSubtarget::enableMachineScheduler() const {
Florian Hahne3583bd2017-07-27 19:56:44 +0000355 // Enable the MachineScheduler before register allocation for subtargets
356 // with the use-misched feature.
357 return useMachineScheduler();
Matthias Braun9e859802015-07-17 23:18:30 +0000358}
359
Sanjay Patela2f658d2014-07-15 22:39:58 +0000360// This overrides the PostRAScheduler bit in the SchedModel for any CPU.
Matthias Braun39a2afc2015-06-13 03:42:16 +0000361bool ARMSubtarget::enablePostRAScheduler() const {
Sam Parker04a7db52017-08-18 14:27:51 +0000362 if (usePostRAScheduler())
363 return true;
364 if (SchedModel.PostRAScheduler)
365 return true;
Florian Hahne3583bd2017-07-27 19:56:44 +0000366 // No need for PostRA scheduling on subtargets where we use the
367 // MachineScheduler.
368 if (useMachineScheduler())
Matthias Braun9e859802015-07-17 23:18:30 +0000369 return false;
Sanjay Patela2f658d2014-07-15 22:39:58 +0000370 return (!isThumb() || hasThumb2());
Andrew Trick8d2ee372014-06-04 07:06:27 +0000371}
372
Weiming Zhao962eaae2016-11-03 21:49:08 +0000373bool ARMSubtarget::enableAtomicExpand() const { return hasAnyDataBarrier(); }
Eric Christopherc40e5ed2014-06-19 21:03:04 +0000374
Tim Northover910dde72015-08-03 17:20:10 +0000375bool ARMSubtarget::useStride4VFPs(const MachineFunction &MF) const {
Tim Northoverf8e47e42015-10-28 22:56:36 +0000376 // For general targets, the prologue can grow when VFPs are allocated with
377 // stride 4 (more vpush instructions). But WatchOS uses a compact unwind
378 // format which it's more important to get right.
Tim Northover042a6c12016-01-27 19:32:29 +0000379 return isTargetWatchABI() || (isSwift() && !MF.getFunction()->optForMinSize());
Tim Northover910dde72015-08-03 17:20:10 +0000380}
381
Eric Christopherc1058df2014-07-04 01:55:26 +0000382bool ARMSubtarget::useMovt(const MachineFunction &MF) const {
383 // NOTE Windows on ARM needs to use mov.w/mov.t pairs to materialise 32-bit
384 // immediates as it is inherently position independent, and may be out of
385 // range otherwise.
Bradley Smithd9a99ce2016-01-15 10:25:14 +0000386 return !NoMovt && hasV8MBaselineOps() &&
Prakhar Bahuguna52a7dd72016-12-15 07:59:08 +0000387 (isTargetWindows() || !MF.getFunction()->optForMinSize() || genExecuteOnly());
Eric Christopherc1058df2014-07-04 01:55:26 +0000388}
Akira Hatanakaddf76aa2015-05-23 01:14:08 +0000389
390bool ARMSubtarget::useFastISel() const {
Oliver Stannardf2ed5c62015-09-23 09:19:54 +0000391 // Enable fast-isel for any target, for testing only.
392 if (ForceFastISel)
393 return true;
394
Eric Christophera8359562015-09-18 20:08:18 +0000395 // Limit fast-isel to the targets that are or have been tested.
396 if (!hasV6Ops())
397 return false;
398
Akira Hatanakaddf76aa2015-05-23 01:14:08 +0000399 // Thumb2 support on iOS; ARM support on iOS, Linux and NaCl.
400 return TM.Options.EnableFastISel &&
401 ((isTargetMachO() && !isThumb1Only()) ||
402 (isTargetLinux() && !isThumb()) || (isTargetNaCl() && !isThumb()));
403}