blob: 5596478a3b2be287765e6ed1067d9a20270deec6 [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"
Eric Christopher80b24ef2014-06-26 19:30:02 +000016#include "ARMInstrInfo.h"
Eric Christopher80b24ef2014-06-26 19:30:02 +000017#include "ARMSubtarget.h"
Eric Christopher661f2d12014-12-18 02:20:58 +000018#include "ARMTargetMachine.h"
Eugene Zelenkoe79c0772017-01-27 23:58:02 +000019#include "MCTargetDesc/ARMMCTargetDesc.h"
Eric Christopher80b24ef2014-06-26 19:30:02 +000020#include "Thumb1FrameLowering.h"
21#include "Thumb1InstrInfo.h"
22#include "Thumb2InstrInfo.h"
Eugene Zelenkoe79c0772017-01-27 23:58:02 +000023#include "llvm/ADT/StringRef.h"
24#include "llvm/ADT/Triple.h"
25#include "llvm/ADT/Twine.h"
26#include "llvm/CodeGen/MachineFunction.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"
Eugene Zelenkoe79c0772017-01-27 23:58:02 +000030#include "llvm/MC/MCTargetOptions.h"
Bob Wilson45825302009-06-22 21:01:46 +000031#include "llvm/Support/CommandLine.h"
Renato Golinb4dd6c52013-03-21 18:47:47 +000032#include "llvm/Target/TargetOptions.h"
Eugene Zelenkoe79c0772017-01-27 23:58:02 +000033#include "llvm/Support/CodeGen.h"
Zijiao Ma53d55f42016-08-17 02:08:28 +000034#include "llvm/Support/TargetParser.h"
Eugene Zelenkoe79c0772017-01-27 23:58:02 +000035#include <cassert>
36#include <string>
Evan Cheng54b68e32011-07-01 20:45:01 +000037
Chandler Carruthd174b722014-04-22 02:03:14 +000038using namespace llvm;
39
Chandler Carruthe96dd892014-04-21 22:55:11 +000040#define DEBUG_TYPE "arm-subtarget"
41
Evan Cheng54b68e32011-07-01 20:45:01 +000042#define GET_SUBTARGETINFO_TARGET_DESC
Evan Cheng4d1ca962011-07-08 01:53:10 +000043#define GET_SUBTARGETINFO_CTOR
Evan Chengc9c090d2011-07-01 22:36:09 +000044#include "ARMGenSubtargetInfo.inc"
Evan Cheng54b68e32011-07-01 20:45:01 +000045
Bob Wilson45825302009-06-22 21:01:46 +000046static cl::opt<bool>
Bob Wilsone8a549c2012-09-29 21:43:49 +000047UseFusedMulOps("arm-use-mulops",
48 cl::init(true), cl::Hidden);
49
Weiming Zhao0da5cc02013-11-13 18:29:49 +000050enum ITMode {
51 DefaultIT,
52 RestrictedIT,
53 NoRestrictedIT
54};
55
56static cl::opt<ITMode>
57IT(cl::desc("IT block support"), cl::Hidden, cl::init(DefaultIT),
58 cl::ZeroOrMore,
59 cl::values(clEnumValN(DefaultIT, "arm-default-it",
60 "Generate IT block based on arch"),
61 clEnumValN(RestrictedIT, "arm-restrict-it",
62 "Disallow deprecated IT based on ARMv8"),
63 clEnumValN(NoRestrictedIT, "arm-no-restrict-it",
Mehdi Amini732afdd2016-10-08 19:41:06 +000064 "Allow IT blocks based on ARMv7")));
Weiming Zhao0da5cc02013-11-13 18:29:49 +000065
Oliver Stannardf2ed5c62015-09-23 09:19:54 +000066/// ForceFastISel - Use the fast-isel, even for subtargets where it is not
67/// currently supported (for testing only).
68static cl::opt<bool>
69ForceFastISel("arm-force-fast-isel",
70 cl::init(false), cl::Hidden);
71
Eric Christophera47f6802014-06-13 00:20:35 +000072/// initializeSubtargetDependencies - Initializes using a CPU and feature string
73/// so that we can use initializer lists for subtarget initialization.
74ARMSubtarget &ARMSubtarget::initializeSubtargetDependencies(StringRef CPU,
75 StringRef FS) {
76 initializeEnvironment();
Eric Christopherb68e2532014-09-03 20:36:31 +000077 initSubtargetFeatures(CPU, FS);
Eric Christophera47f6802014-06-13 00:20:35 +000078 return *this;
79}
80
Prakhar Bahuguna52a7dd72016-12-15 07:59:08 +000081/// EnableExecuteOnly - Enables the generation of execute-only code on supported
82/// targets
83static cl::opt<bool>
84EnableExecuteOnly("arm-execute-only");
85
Eric Christopher8b770652015-01-26 19:03:15 +000086ARMFrameLowering *ARMSubtarget::initializeFrameLowering(StringRef CPU,
87 StringRef FS) {
88 ARMSubtarget &STI = initializeSubtargetDependencies(CPU, FS);
89 if (STI.isThumb1Only())
90 return (ARMFrameLowering *)new Thumb1FrameLowering(STI);
91
92 return new ARMFrameLowering(STI);
93}
94
Daniel Sandersa73f1fd2015-06-10 12:11:26 +000095ARMSubtarget::ARMSubtarget(const Triple &TT, const std::string &CPU,
Eric Christopher8b770652015-01-26 19:03:15 +000096 const std::string &FS,
97 const ARMBaseTargetMachine &TM, bool IsLittle)
Diana Picuseb1068a2016-06-27 13:06:10 +000098 : ARMGenSubtargetInfo(TT, CPU, FS), UseMulOps(UseFusedMulOps),
Prakhar Bahuguna13e99212016-12-15 08:42:04 +000099 GenExecuteOnly(EnableExecuteOnly), CPUString(CPU), IsLittle(IsLittle),
100 TargetTriple(TT), Options(TM.Options), TM(TM),
Prakhar Bahuguna52a7dd72016-12-15 07:59:08 +0000101 FrameLowering(initializeFrameLowering(CPU, FS)),
Eric Christopher8b770652015-01-26 19:03:15 +0000102 // At this point initializeSubtargetDependencies has been called so
103 // we can query directly.
Eric Christopher80b24ef2014-06-26 19:30:02 +0000104 InstrInfo(isThumb1Only()
105 ? (ARMBaseInstrInfo *)new Thumb1InstrInfo(*this)
106 : !isThumb()
107 ? (ARMBaseInstrInfo *)new ARMInstrInfo(*this)
108 : (ARMBaseInstrInfo *)new Thumb2InstrInfo(*this)),
Eugene Zelenkoe79c0772017-01-27 23:58:02 +0000109 TLInfo(TM, *this) {}
Diana Picus22274932016-11-11 08:27:37 +0000110
111const CallLowering *ARMSubtarget::getCallLowering() const {
112 assert(GISel && "Access to GlobalISel APIs not set");
113 return GISel->getCallLowering();
114}
115
116const InstructionSelector *ARMSubtarget::getInstructionSelector() const {
117 assert(GISel && "Access to GlobalISel APIs not set");
118 return GISel->getInstructionSelector();
119}
120
121const LegalizerInfo *ARMSubtarget::getLegalizerInfo() const {
122 assert(GISel && "Access to GlobalISel APIs not set");
123 return GISel->getLegalizerInfo();
124}
125
126const RegisterBankInfo *ARMSubtarget::getRegBankInfo() const {
127 assert(GISel && "Access to GlobalISel APIs not set");
128 return GISel->getRegBankInfo();
129}
Bill Wendling5a92eec2013-02-15 22:41:25 +0000130
Dean Michael Berris464015442016-09-19 00:54:35 +0000131bool ARMSubtarget::isXRaySupported() const {
132 // We don't currently suppport Thumb, but Windows requires Thumb.
133 return hasV6Ops() && hasARMOps() && !isTargetWindows();
134}
135
Bill Wendling61375d82013-02-16 01:36:26 +0000136void ARMSubtarget::initializeEnvironment() {
Tim Northover747ae9a2015-11-18 21:10:39 +0000137 // MCAsmInfo isn't always present (e.g. in opt) so we can't initialize this
138 // directly from it, but we can try to make sure they're consistent when both
139 // available.
Tim Northover042a6c12016-01-27 19:32:29 +0000140 UseSjLjEH = isTargetDarwin() && !isTargetWatchABI();
Tim Northover747ae9a2015-11-18 21:10:39 +0000141 assert((!TM.getMCAsmInfo() ||
142 (TM.getMCAsmInfo()->getExceptionHandlingType() ==
143 ExceptionHandling::SjLj) == UseSjLjEH) &&
144 "inconsistent sjlj choice between CodeGen and MC");
Bill Wendling61375d82013-02-16 01:36:26 +0000145}
146
Eric Christopherb68e2532014-09-03 20:36:31 +0000147void ARMSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) {
Tilmann Scheller63872ce2013-09-02 17:09:01 +0000148 if (CPUString.empty()) {
Tim Northovere0ccdc62015-10-28 22:46:43 +0000149 CPUString = "generic";
150
151 if (isTargetDarwin()) {
152 StringRef ArchName = TargetTriple.getArchName();
Eugene Zelenkoe79c0772017-01-27 23:58:02 +0000153 unsigned ArchKind = ARM::parseArch(ArchName);
154 if (ArchKind == ARM::AK_ARMV7S)
Tim Northovere0ccdc62015-10-28 22:46:43 +0000155 // Default to the Swift CPU when targeting armv7s/thumbv7s.
156 CPUString = "swift";
Eugene Zelenkoe79c0772017-01-27 23:58:02 +0000157 else if (ArchKind == ARM::AK_ARMV7K)
Tim Northovere0ccdc62015-10-28 22:46:43 +0000158 // Default to the Cortex-a7 CPU when targeting armv7k/thumbv7k.
159 // ARMv7k does not use SjLj exception handling.
160 CPUString = "cortex-a7";
161 }
Tilmann Scheller63872ce2013-09-02 17:09:01 +0000162 }
Evan Chengec415ef2009-03-08 04:02:49 +0000163
Evan Cheng0b33a322011-06-30 02:12:44 +0000164 // Insert the architecture feature derived from the target triple into the
165 // feature string. This is important for setting features that are implied
166 // based on the architecture version.
Daniel Sanders50f17232015-09-15 16:17:27 +0000167 std::string ArchFS = ARM_MC::ParseARMTriple(TargetTriple, CPUString);
Evan Cheng2bd65362011-07-07 00:08:19 +0000168 if (!FS.empty()) {
169 if (!ArchFS.empty())
Yaron Keren075759a2015-03-30 15:42:36 +0000170 ArchFS = (Twine(ArchFS) + "," + FS).str();
Evan Cheng2bd65362011-07-07 00:08:19 +0000171 else
172 ArchFS = FS;
173 }
Evan Cheng1a72add62011-07-07 07:07:08 +0000174 ParseSubtargetFeatures(CPUString, ArchFS);
Evan Cheng2bd65362011-07-07 00:08:19 +0000175
Joerg Sonnenberger002a1472013-12-13 11:16:00 +0000176 // FIXME: This used enable V6T2 support implicitly for Thumb2 mode.
177 // Assert this for now to make the change obvious.
178 assert(hasV6T2Ops() || !hasThumb2());
Bob Wilsond0046ca2010-11-09 22:50:47 +0000179
Prakhar Bahuguna52a7dd72016-12-15 07:59:08 +0000180 // Execute only support requires movt support
181 if (genExecuteOnly())
182 assert(hasV8MBaselineOps() && !NoMovt && "Cannot generate execute-only code for this target");
183
Andrew Trick352abc12012-08-08 02:44:16 +0000184 // Keep a pointer to static instruction cost data for the specified CPU.
185 SchedModel = getSchedModelForCPU(CPUString);
186
Evan Cheng54b68e32011-07-01 20:45:01 +0000187 // Initialize scheduling itinerary for the specified CPU.
188 InstrItins = getInstrItineraryForCPU(CPUString);
189
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000190 // FIXME: this is invalid for WindowsCE
Eric Christopher1971c352014-12-18 02:08:45 +0000191 if (isTargetWindows())
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000192 NoARM = true;
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000193
Lauro Ramos Venancio048e16ff2007-02-13 19:52:28 +0000194 if (isAAPCS_ABI())
195 stackAlignment = 8;
Tim Northovere0ccdc62015-10-28 22:46:43 +0000196 if (isTargetNaCl() || isAAPCS16_ABI())
Mark Seabornbe266aa2014-02-16 18:59:48 +0000197 stackAlignment = 16;
Lauro Ramos Venancio048e16ff2007-02-13 19:52:28 +0000198
Artyom Skrobovad8a0632015-09-28 09:44:11 +0000199 // FIXME: Completely disable sibcall for Thumb1 since ThumbRegisterInfo::
200 // emitEpilogue is not ready for them. Thumb tail calls also use t2B, as
201 // the Thumb1 16-bit unconditional branch doesn't have sufficient relocation
202 // support in the assembler and linker to be used. This would need to be
203 // fixed to fully support tail calls in Thumb1.
204 //
205 // Doing this is tricky, since the LDM/POP instruction on Thumb doesn't take
206 // LR. This means if we need to reload LR, it takes an extra instructions,
207 // which outweighs the value of the tail call; but here we don't know yet
208 // whether LR is going to be used. Probably the right approach is to
209 // generate the tail call here and turn it back into CALL/RET in
210 // emitEpilogue if LR is used.
211
212 // Thumb1 PIC calls to external symbols use BX, so they can be tail calls,
213 // but we need to make sure there are enough registers; the only valid
214 // registers are the 4 used for parameters. We don't currently do this
215 // case.
216
Bradley Smitha1189102016-01-15 10:26:17 +0000217 SupportsTailCall = !isThumb() || hasV8MBaselineOps();
Artyom Skrobovad8a0632015-09-28 09:44:11 +0000218
219 if (isTargetMachO() && isTargetIOS() && getTargetTriple().isOSVersionLT(5, 0))
220 SupportsTailCall = false;
David Goodwin9a051a52009-10-01 21:46:35 +0000221
Weiming Zhao0da5cc02013-11-13 18:29:49 +0000222 switch (IT) {
223 case DefaultIT:
Alexander Kornienkofb37cfa2015-04-14 15:32:58 +0000224 RestrictIT = hasV8Ops();
Weiming Zhao0da5cc02013-11-13 18:29:49 +0000225 break;
226 case RestrictedIT:
227 RestrictIT = true;
228 break;
229 case NoRestrictedIT:
230 RestrictIT = false;
231 break;
232 }
233
Renato Golinb4dd6c52013-03-21 18:47:47 +0000234 // NEON f32 ops are non-IEEE 754 compliant. Darwin is ok with it by default.
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000235 const FeatureBitset &Bits = getFeatureBits();
236 if ((Bits[ARM::ProcA5] || Bits[ARM::ProcA8]) && // Where this matters
Renato Golinb4dd6c52013-03-21 18:47:47 +0000237 (Options.UnsafeFPMath || isTargetDarwin()))
238 UseNEONForSinglePrecisionFP = true;
Diana Picus92423ce2016-06-27 09:08:23 +0000239
Oliver Stannard8331aae2016-08-08 15:28:31 +0000240 if (isRWPI())
241 ReserveR9 = true;
242
Diana Picus92423ce2016-06-27 09:08:23 +0000243 // FIXME: Teach TableGen to deal with these instead of doing it manually here.
244 switch (ARMProcFamily) {
245 case Others:
246 case CortexA5:
247 break;
248 case CortexA7:
249 LdStMultipleTiming = DoubleIssue;
250 break;
251 case CortexA8:
252 LdStMultipleTiming = DoubleIssue;
253 break;
254 case CortexA9:
255 LdStMultipleTiming = DoubleIssueCheckUnalignedAccess;
256 PreISelOperandLatencyAdjustment = 1;
257 break;
258 case CortexA12:
259 break;
260 case CortexA15:
261 MaxInterleaveFactor = 2;
262 PreISelOperandLatencyAdjustment = 1;
Diana Picusb772e402016-07-06 11:22:11 +0000263 PartialUpdateClearance = 12;
Diana Picus92423ce2016-06-27 09:08:23 +0000264 break;
265 case CortexA17:
266 case CortexA32:
267 case CortexA35:
268 case CortexA53:
269 case CortexA57:
270 case CortexA72:
271 case CortexA73:
272 case CortexR4:
273 case CortexR4F:
274 case CortexR5:
275 case CortexR7:
276 case CortexM3:
277 case ExynosM1:
Javed Absar97979892016-10-07 13:41:55 +0000278 case CortexR52:
Diana Picus92423ce2016-06-27 09:08:23 +0000279 break;
280 case Krait:
281 PreISelOperandLatencyAdjustment = 1;
282 break;
283 case Swift:
284 MaxInterleaveFactor = 2;
285 LdStMultipleTiming = SingleIssuePlusExtras;
286 PreISelOperandLatencyAdjustment = 1;
Diana Picusb772e402016-07-06 11:22:11 +0000287 PartialUpdateClearance = 12;
Diana Picus92423ce2016-06-27 09:08:23 +0000288 break;
289 }
Evan Cheng10043e22007-01-19 07:51:42 +0000290}
Evan Cheng43b9ca62009-08-28 23:18:09 +0000291
Eric Christopher661f2d12014-12-18 02:20:58 +0000292bool ARMSubtarget::isAPCS_ABI() const {
293 assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
294 return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_APCS;
295}
296bool ARMSubtarget::isAAPCS_ABI() const {
297 assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
Tim Northovere0ccdc62015-10-28 22:46:43 +0000298 return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS ||
299 TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS16;
Eric Christopher661f2d12014-12-18 02:20:58 +0000300}
Tim Northovere0ccdc62015-10-28 22:46:43 +0000301bool ARMSubtarget::isAAPCS16_ABI() const {
302 assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
303 return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS16;
304}
305
Oliver Stannard8331aae2016-08-08 15:28:31 +0000306bool ARMSubtarget::isROPI() const {
307 return TM.getRelocationModel() == Reloc::ROPI ||
308 TM.getRelocationModel() == Reloc::ROPI_RWPI;
309}
310bool ARMSubtarget::isRWPI() const {
311 return TM.getRelocationModel() == Reloc::RWPI ||
312 TM.getRelocationModel() == Reloc::ROPI_RWPI;
313}
314
Rafael Espindola5ac8f5c2016-06-28 15:38:13 +0000315bool ARMSubtarget::isGVIndirectSymbol(const GlobalValue *GV) const {
Rafael Espindola3beef8d2016-06-27 23:15:57 +0000316 if (!TM.shouldAssumeDSOLocal(*GV->getParent(), GV))
Evan Cheng1b389522009-09-03 07:04:02 +0000317 return true;
Peter Collingbourne6a9d1772015-07-05 20:52:35 +0000318
Rafael Espindolaeece1132016-05-27 22:41:51 +0000319 // 32 bit macho has no relocation for a-b if a is undefined, even if b is in
320 // the section that is being relocated. This means we have to use o load even
321 // for GVs that are known to be local to the dso.
Rafael Espindola70c6a392016-08-24 19:02:29 +0000322 if (isTargetMachO() && TM.isPositionIndependent() &&
Rafael Espindolaeece1132016-05-27 22:41:51 +0000323 (GV->isDeclarationForLinker() || GV->hasCommonLinkage()))
324 return true;
Evan Cheng1b389522009-09-03 07:04:02 +0000325
326 return false;
Evan Cheng43b9ca62009-08-28 23:18:09 +0000327}
David Goodwin0d412c22009-11-10 00:48:55 +0000328
Owen Andersona3181e22010-09-28 21:57:50 +0000329unsigned ARMSubtarget::getMispredictionPenalty() const {
Pete Cooper11759452014-09-02 17:43:54 +0000330 return SchedModel.MispredictPenalty;
Owen Andersona3181e22010-09-28 21:57:50 +0000331}
332
Bob Wilsone7dde0c2013-11-03 06:14:38 +0000333bool ARMSubtarget::hasSinCos() const {
Tim Northover8b403662015-10-28 22:51:16 +0000334 return isTargetWatchOS() ||
335 (isTargetIOS() && !getTargetTriple().isOSVersionLT(7, 0));
Bob Wilsone7dde0c2013-11-03 06:14:38 +0000336}
337
Matthias Braun9e859802015-07-17 23:18:30 +0000338bool ARMSubtarget::enableMachineScheduler() const {
339 // Enable the MachineScheduler before register allocation for out-of-order
340 // architectures where we do not use the PostRA scheduler anymore (for now
341 // restricted to swift).
342 return getSchedModel().isOutOfOrder() && isSwift();
343}
344
Sanjay Patela2f658d2014-07-15 22:39:58 +0000345// This overrides the PostRAScheduler bit in the SchedModel for any CPU.
Matthias Braun39a2afc2015-06-13 03:42:16 +0000346bool ARMSubtarget::enablePostRAScheduler() const {
Matthias Braun9e859802015-07-17 23:18:30 +0000347 // No need for PostRA scheduling on out of order CPUs (for now restricted to
348 // swift).
349 if (getSchedModel().isOutOfOrder() && isSwift())
350 return false;
Sanjay Patela2f658d2014-07-15 22:39:58 +0000351 return (!isThumb() || hasThumb2());
Andrew Trick8d2ee372014-06-04 07:06:27 +0000352}
353
Weiming Zhao962eaae2016-11-03 21:49:08 +0000354bool ARMSubtarget::enableAtomicExpand() const { return hasAnyDataBarrier(); }
Eric Christopherc40e5ed2014-06-19 21:03:04 +0000355
Tim Northover910dde72015-08-03 17:20:10 +0000356bool ARMSubtarget::useStride4VFPs(const MachineFunction &MF) const {
Tim Northoverf8e47e42015-10-28 22:56:36 +0000357 // For general targets, the prologue can grow when VFPs are allocated with
358 // stride 4 (more vpush instructions). But WatchOS uses a compact unwind
359 // format which it's more important to get right.
Tim Northover042a6c12016-01-27 19:32:29 +0000360 return isTargetWatchABI() || (isSwift() && !MF.getFunction()->optForMinSize());
Tim Northover910dde72015-08-03 17:20:10 +0000361}
362
Eric Christopherc1058df2014-07-04 01:55:26 +0000363bool ARMSubtarget::useMovt(const MachineFunction &MF) const {
364 // NOTE Windows on ARM needs to use mov.w/mov.t pairs to materialise 32-bit
365 // immediates as it is inherently position independent, and may be out of
366 // range otherwise.
Bradley Smithd9a99ce2016-01-15 10:25:14 +0000367 return !NoMovt && hasV8MBaselineOps() &&
Prakhar Bahuguna52a7dd72016-12-15 07:59:08 +0000368 (isTargetWindows() || !MF.getFunction()->optForMinSize() || genExecuteOnly());
Eric Christopherc1058df2014-07-04 01:55:26 +0000369}
Akira Hatanakaddf76aa2015-05-23 01:14:08 +0000370
371bool ARMSubtarget::useFastISel() const {
Oliver Stannardf2ed5c62015-09-23 09:19:54 +0000372 // Enable fast-isel for any target, for testing only.
373 if (ForceFastISel)
374 return true;
375
Eric Christophera8359562015-09-18 20:08:18 +0000376 // Limit fast-isel to the targets that are or have been tested.
377 if (!hasV6Ops())
378 return false;
379
Akira Hatanakaddf76aa2015-05-23 01:14:08 +0000380 // Thumb2 support on iOS; ARM support on iOS, Linux and NaCl.
381 return TM.Options.EnableFastISel &&
382 ((isTargetMachO() && !isThumb1Only()) ||
383 (isTargetLinux() && !isThumb()) || (isTargetNaCl() && !isThumb()));
384}