blob: 5f0a489731824d828726ba724350887af53dfa21 [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"
Rafael Espindolaeece1132016-05-27 22:41:51 +000025#include "llvm/CodeGen/Analysis.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000026#include "llvm/CodeGen/MachineRegisterInfo.h"
Bill Wendling5a92eec2013-02-15 22:41:25 +000027#include "llvm/IR/Attributes.h"
Bill Wendling5a92eec2013-02-15 22:41:25 +000028#include "llvm/IR/Function.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000029#include "llvm/IR/GlobalValue.h"
Tim Northover747ae9a2015-11-18 21:10:39 +000030#include "llvm/MC/MCAsmInfo.h"
Bob Wilson45825302009-06-22 21:01:46 +000031#include "llvm/Support/CommandLine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000032#include "llvm/Target/TargetInstrInfo.h"
Renato Golinb4dd6c52013-03-21 18:47:47 +000033#include "llvm/Target/TargetOptions.h"
Chris Bieneman03695ab2014-07-15 17:18:41 +000034#include "llvm/Target/TargetRegisterInfo.h"
Evan Cheng54b68e32011-07-01 20:45:01 +000035
Chandler Carruthd174b722014-04-22 02:03:14 +000036using namespace llvm;
37
Chandler Carruthe96dd892014-04-21 22:55:11 +000038#define DEBUG_TYPE "arm-subtarget"
39
Evan Cheng54b68e32011-07-01 20:45:01 +000040#define GET_SUBTARGETINFO_TARGET_DESC
Evan Cheng4d1ca962011-07-08 01:53:10 +000041#define GET_SUBTARGETINFO_CTOR
Evan Chengc9c090d2011-07-01 22:36:09 +000042#include "ARMGenSubtargetInfo.inc"
Evan Cheng54b68e32011-07-01 20:45:01 +000043
Bob Wilson45825302009-06-22 21:01:46 +000044static cl::opt<bool>
Bob Wilsone8a549c2012-09-29 21:43:49 +000045UseFusedMulOps("arm-use-mulops",
46 cl::init(true), cl::Hidden);
47
Weiming Zhao0da5cc02013-11-13 18:29:49 +000048enum ITMode {
49 DefaultIT,
50 RestrictedIT,
51 NoRestrictedIT
52};
53
54static cl::opt<ITMode>
55IT(cl::desc("IT block support"), cl::Hidden, cl::init(DefaultIT),
56 cl::ZeroOrMore,
57 cl::values(clEnumValN(DefaultIT, "arm-default-it",
58 "Generate IT block based on arch"),
59 clEnumValN(RestrictedIT, "arm-restrict-it",
60 "Disallow deprecated IT based on ARMv8"),
61 clEnumValN(NoRestrictedIT, "arm-no-restrict-it",
62 "Allow IT blocks based on ARMv7"),
63 clEnumValEnd));
64
Oliver Stannardf2ed5c62015-09-23 09:19:54 +000065/// ForceFastISel - Use the fast-isel, even for subtargets where it is not
66/// currently supported (for testing only).
67static cl::opt<bool>
68ForceFastISel("arm-force-fast-isel",
69 cl::init(false), cl::Hidden);
70
Eric Christophera47f6802014-06-13 00:20:35 +000071/// initializeSubtargetDependencies - Initializes using a CPU and feature string
72/// so that we can use initializer lists for subtarget initialization.
73ARMSubtarget &ARMSubtarget::initializeSubtargetDependencies(StringRef CPU,
74 StringRef FS) {
75 initializeEnvironment();
Eric Christopherb68e2532014-09-03 20:36:31 +000076 initSubtargetFeatures(CPU, FS);
Eric Christophera47f6802014-06-13 00:20:35 +000077 return *this;
78}
79
Eric Christopher8b770652015-01-26 19:03:15 +000080ARMFrameLowering *ARMSubtarget::initializeFrameLowering(StringRef CPU,
81 StringRef FS) {
82 ARMSubtarget &STI = initializeSubtargetDependencies(CPU, FS);
83 if (STI.isThumb1Only())
84 return (ARMFrameLowering *)new Thumb1FrameLowering(STI);
85
86 return new ARMFrameLowering(STI);
87}
88
Daniel Sandersa73f1fd2015-06-10 12:11:26 +000089ARMSubtarget::ARMSubtarget(const Triple &TT, const std::string &CPU,
Eric Christopher8b770652015-01-26 19:03:15 +000090 const std::string &FS,
91 const ARMBaseTargetMachine &TM, bool IsLittle)
Daniel Sanders50f17232015-09-15 16:17:27 +000092 : ARMGenSubtargetInfo(TT, CPU, FS), ARMProcFamily(Others),
Bradley Smith982a8882015-11-17 13:38:29 +000093 ARMProcClass(None), ARMArch(ARMv4t), stackAlignment(4), CPUString(CPU),
Bradley Smith43202052015-11-17 11:57:33 +000094 IsLittle(IsLittle), TargetTriple(TT), Options(TM.Options), TM(TM),
Eric Christopher8b770652015-01-26 19:03:15 +000095 FrameLowering(initializeFrameLowering(CPU, FS)),
96 // At this point initializeSubtargetDependencies has been called so
97 // we can query directly.
Eric Christopher80b24ef2014-06-26 19:30:02 +000098 InstrInfo(isThumb1Only()
99 ? (ARMBaseInstrInfo *)new Thumb1InstrInfo(*this)
100 : !isThumb()
101 ? (ARMBaseInstrInfo *)new ARMInstrInfo(*this)
102 : (ARMBaseInstrInfo *)new Thumb2InstrInfo(*this)),
Eric Christopher1889fdc2015-01-29 00:19:39 +0000103 TLInfo(TM, *this) {}
Bill Wendling5a92eec2013-02-15 22:41:25 +0000104
Bill Wendling61375d82013-02-16 01:36:26 +0000105void ARMSubtarget::initializeEnvironment() {
106 HasV4TOps = false;
107 HasV5TOps = false;
108 HasV5TEOps = false;
109 HasV6Ops = false;
Amara Emerson5035ee02013-10-07 16:55:23 +0000110 HasV6MOps = false;
Renato Golin12350602015-03-17 11:55:28 +0000111 HasV6KOps = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000112 HasV6T2Ops = false;
113 HasV7Ops = false;
Joey Goulyb3f550e2013-06-26 16:58:26 +0000114 HasV8Ops = false;
Vladimir Sukharev2afdb322015-04-01 14:54:56 +0000115 HasV8_1aOps = false;
Oliver Stannard8addbf42015-12-01 10:23:06 +0000116 HasV8_2aOps = false;
Bradley Smithe26f7992016-01-15 10:24:39 +0000117 HasV8MBaselineOps = false;
118 HasV8MMainlineOps = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000119 HasVFPv2 = false;
120 HasVFPv3 = false;
121 HasVFPv4 = false;
Joey Goulyccd04892013-09-13 13:46:57 +0000122 HasFPARMv8 = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000123 HasNEON = false;
124 UseNEONForSinglePrecisionFP = false;
125 UseMulOps = UseFusedMulOps;
126 SlowFPVMLx = false;
127 HasVMLxForwarding = false;
128 SlowFPBrcc = false;
129 InThumbMode = false;
Eric Christopher824f42f2015-05-12 01:26:05 +0000130 UseSoftFloat = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000131 HasThumb2 = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000132 NoARM = false;
Akira Hatanaka28581522015-07-21 01:42:02 +0000133 ReserveR9 = false;
Akira Hatanaka024d91a2015-07-16 00:58:23 +0000134 NoMovt = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000135 SupportsTailCall = false;
136 HasFP16 = false;
Oliver Stannard8addbf42015-12-01 10:23:06 +0000137 HasFullFP16 = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000138 HasD16 = false;
139 HasHardwareDivide = false;
140 HasHardwareDivideInARM = false;
141 HasT2ExtractPack = false;
142 HasDataBarrier = false;
143 Pref32BitThumb = false;
144 AvoidCPSRPartialUpdate = false;
145 AvoidMOVsShifterOperand = false;
Sjoerd Meijerd906bf12016-06-03 14:03:27 +0000146 HasRetAddrStack = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000147 HasMPExtension = false;
Bradley Smith25219752013-11-01 13:27:35 +0000148 HasVirtualization = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000149 FPOnlySP = false;
Tim Northovercedd4812013-05-23 19:11:14 +0000150 HasPerfMon = false;
Tim Northoverc6047652013-04-10 12:08:35 +0000151 HasTrustZone = false;
Bradley Smithfed3e4a2016-01-25 11:24:47 +0000152 Has8MSecExt = false;
Amara Emerson33089092013-09-19 11:59:01 +0000153 HasCrypto = false;
Amara Emersonf9a67fc2013-10-29 16:54:52 +0000154 HasCRC = false;
Sjoerd Meijerd906bf12016-06-03 14:03:27 +0000155 HasRAS = false;
Tim Northover13510302014-04-01 13:22:02 +0000156 HasZeroCycleZeroing = false;
Akira Hatanaka2670f4a2015-07-28 22:44:28 +0000157 StrictAlign = false;
Artyom Skrobovcf296442015-09-24 17:31:16 +0000158 HasDSP = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000159 UseNaClTrap = false;
Akira Hatanaka1bc8af72015-07-07 06:54:42 +0000160 GenLongCalls = false;
Renato Golinb4dd6c52013-03-21 18:47:47 +0000161 UnsafeFPMath = false;
Bradley Smith4c21cba2016-01-15 10:23:46 +0000162 HasV7Clrex = false;
163 HasAcquireRelease = false;
Tim Northover747ae9a2015-11-18 21:10:39 +0000164
165 // MCAsmInfo isn't always present (e.g. in opt) so we can't initialize this
166 // directly from it, but we can try to make sure they're consistent when both
167 // available.
Tim Northover042a6c12016-01-27 19:32:29 +0000168 UseSjLjEH = isTargetDarwin() && !isTargetWatchABI();
Tim Northover747ae9a2015-11-18 21:10:39 +0000169 assert((!TM.getMCAsmInfo() ||
170 (TM.getMCAsmInfo()->getExceptionHandlingType() ==
171 ExceptionHandling::SjLj) == UseSjLjEH) &&
172 "inconsistent sjlj choice between CodeGen and MC");
Bill Wendling61375d82013-02-16 01:36:26 +0000173}
174
Eric Christopherb68e2532014-09-03 20:36:31 +0000175void ARMSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) {
Tilmann Scheller63872ce2013-09-02 17:09:01 +0000176 if (CPUString.empty()) {
Tim Northovere0ccdc62015-10-28 22:46:43 +0000177 CPUString = "generic";
178
179 if (isTargetDarwin()) {
180 StringRef ArchName = TargetTriple.getArchName();
181 if (ArchName.endswith("v7s"))
182 // Default to the Swift CPU when targeting armv7s/thumbv7s.
183 CPUString = "swift";
184 else if (ArchName.endswith("v7k"))
185 // Default to the Cortex-a7 CPU when targeting armv7k/thumbv7k.
186 // ARMv7k does not use SjLj exception handling.
187 CPUString = "cortex-a7";
188 }
Tilmann Scheller63872ce2013-09-02 17:09:01 +0000189 }
Evan Chengec415ef2009-03-08 04:02:49 +0000190
Evan Cheng0b33a322011-06-30 02:12:44 +0000191 // Insert the architecture feature derived from the target triple into the
192 // feature string. This is important for setting features that are implied
193 // based on the architecture version.
Daniel Sanders50f17232015-09-15 16:17:27 +0000194 std::string ArchFS = ARM_MC::ParseARMTriple(TargetTriple, CPUString);
Evan Cheng2bd65362011-07-07 00:08:19 +0000195 if (!FS.empty()) {
196 if (!ArchFS.empty())
Yaron Keren075759a2015-03-30 15:42:36 +0000197 ArchFS = (Twine(ArchFS) + "," + FS).str();
Evan Cheng2bd65362011-07-07 00:08:19 +0000198 else
199 ArchFS = FS;
200 }
Evan Cheng1a72add62011-07-07 07:07:08 +0000201 ParseSubtargetFeatures(CPUString, ArchFS);
Evan Cheng2bd65362011-07-07 00:08:19 +0000202
Joerg Sonnenberger002a1472013-12-13 11:16:00 +0000203 // FIXME: This used enable V6T2 support implicitly for Thumb2 mode.
204 // Assert this for now to make the change obvious.
205 assert(hasV6T2Ops() || !hasThumb2());
Bob Wilsond0046ca2010-11-09 22:50:47 +0000206
Andrew Trick352abc12012-08-08 02:44:16 +0000207 // Keep a pointer to static instruction cost data for the specified CPU.
208 SchedModel = getSchedModelForCPU(CPUString);
209
Evan Cheng54b68e32011-07-01 20:45:01 +0000210 // Initialize scheduling itinerary for the specified CPU.
211 InstrItins = getInstrItineraryForCPU(CPUString);
212
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000213 // FIXME: this is invalid for WindowsCE
Eric Christopher1971c352014-12-18 02:08:45 +0000214 if (isTargetWindows())
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000215 NoARM = true;
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000216
Lauro Ramos Venancio048e16ff2007-02-13 19:52:28 +0000217 if (isAAPCS_ABI())
218 stackAlignment = 8;
Tim Northovere0ccdc62015-10-28 22:46:43 +0000219 if (isTargetNaCl() || isAAPCS16_ABI())
Mark Seabornbe266aa2014-02-16 18:59:48 +0000220 stackAlignment = 16;
Lauro Ramos Venancio048e16ff2007-02-13 19:52:28 +0000221
Artyom Skrobovad8a0632015-09-28 09:44:11 +0000222 // FIXME: Completely disable sibcall for Thumb1 since ThumbRegisterInfo::
223 // emitEpilogue is not ready for them. Thumb tail calls also use t2B, as
224 // the Thumb1 16-bit unconditional branch doesn't have sufficient relocation
225 // support in the assembler and linker to be used. This would need to be
226 // fixed to fully support tail calls in Thumb1.
227 //
228 // Doing this is tricky, since the LDM/POP instruction on Thumb doesn't take
229 // LR. This means if we need to reload LR, it takes an extra instructions,
230 // which outweighs the value of the tail call; but here we don't know yet
231 // whether LR is going to be used. Probably the right approach is to
232 // generate the tail call here and turn it back into CALL/RET in
233 // emitEpilogue if LR is used.
234
235 // Thumb1 PIC calls to external symbols use BX, so they can be tail calls,
236 // but we need to make sure there are enough registers; the only valid
237 // registers are the 4 used for parameters. We don't currently do this
238 // case.
239
Bradley Smitha1189102016-01-15 10:26:17 +0000240 SupportsTailCall = !isThumb() || hasV8MBaselineOps();
Artyom Skrobovad8a0632015-09-28 09:44:11 +0000241
242 if (isTargetMachO() && isTargetIOS() && getTargetTriple().isOSVersionLT(5, 0))
243 SupportsTailCall = false;
David Goodwin9a051a52009-10-01 21:46:35 +0000244
Weiming Zhao0da5cc02013-11-13 18:29:49 +0000245 switch (IT) {
246 case DefaultIT:
Alexander Kornienkofb37cfa2015-04-14 15:32:58 +0000247 RestrictIT = hasV8Ops();
Weiming Zhao0da5cc02013-11-13 18:29:49 +0000248 break;
249 case RestrictedIT:
250 RestrictIT = true;
251 break;
252 case NoRestrictedIT:
253 RestrictIT = false;
254 break;
255 }
256
Renato Golinb4dd6c52013-03-21 18:47:47 +0000257 // NEON f32 ops are non-IEEE 754 compliant. Darwin is ok with it by default.
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000258 const FeatureBitset &Bits = getFeatureBits();
259 if ((Bits[ARM::ProcA5] || Bits[ARM::ProcA8]) && // Where this matters
Renato Golinb4dd6c52013-03-21 18:47:47 +0000260 (Options.UnsafeFPMath || isTargetDarwin()))
261 UseNEONForSinglePrecisionFP = true;
Evan Cheng10043e22007-01-19 07:51:42 +0000262}
Evan Cheng43b9ca62009-08-28 23:18:09 +0000263
Eric Christopher661f2d12014-12-18 02:20:58 +0000264bool ARMSubtarget::isAPCS_ABI() const {
265 assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
266 return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_APCS;
267}
268bool ARMSubtarget::isAAPCS_ABI() const {
269 assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
Tim Northovere0ccdc62015-10-28 22:46:43 +0000270 return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS ||
271 TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS16;
Eric Christopher661f2d12014-12-18 02:20:58 +0000272}
Tim Northovere0ccdc62015-10-28 22:46:43 +0000273bool ARMSubtarget::isAAPCS16_ABI() const {
274 assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN);
275 return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS16;
276}
277
Rafael Espindolaeece1132016-05-27 22:41:51 +0000278/// true if the GV will be accessed via an indirect symbol.
Evan Cheng1b389522009-09-03 07:04:02 +0000279bool
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000280ARMSubtarget::GVIsIndirectSymbol(const GlobalValue *GV,
281 Reloc::Model RelocM) const {
Rafael Espindolaeece1132016-05-27 22:41:51 +0000282 if (!shouldAssumeDSOLocal(RelocM, TargetTriple, *GV->getParent(), GV))
Evan Cheng1b389522009-09-03 07:04:02 +0000283 return true;
Peter Collingbourne6a9d1772015-07-05 20:52:35 +0000284
Rafael Espindolaeece1132016-05-27 22:41:51 +0000285 // 32 bit macho has no relocation for a-b if a is undefined, even if b is in
286 // the section that is being relocated. This means we have to use o load even
287 // for GVs that are known to be local to the dso.
288 if (isTargetDarwin() && RelocM == Reloc::PIC_ &&
289 (GV->isDeclarationForLinker() || GV->hasCommonLinkage()))
290 return true;
Evan Cheng1b389522009-09-03 07:04:02 +0000291
292 return false;
Evan Cheng43b9ca62009-08-28 23:18:09 +0000293}
David Goodwin0d412c22009-11-10 00:48:55 +0000294
Owen Andersona3181e22010-09-28 21:57:50 +0000295unsigned ARMSubtarget::getMispredictionPenalty() const {
Pete Cooper11759452014-09-02 17:43:54 +0000296 return SchedModel.MispredictPenalty;
Owen Andersona3181e22010-09-28 21:57:50 +0000297}
298
Bob Wilsone7dde0c2013-11-03 06:14:38 +0000299bool ARMSubtarget::hasSinCos() const {
Tim Northover8b403662015-10-28 22:51:16 +0000300 return isTargetWatchOS() ||
301 (isTargetIOS() && !getTargetTriple().isOSVersionLT(7, 0));
Bob Wilsone7dde0c2013-11-03 06:14:38 +0000302}
303
Matthias Braun9e859802015-07-17 23:18:30 +0000304bool ARMSubtarget::enableMachineScheduler() const {
305 // Enable the MachineScheduler before register allocation for out-of-order
306 // architectures where we do not use the PostRA scheduler anymore (for now
307 // restricted to swift).
308 return getSchedModel().isOutOfOrder() && isSwift();
309}
310
Sanjay Patela2f658d2014-07-15 22:39:58 +0000311// This overrides the PostRAScheduler bit in the SchedModel for any CPU.
Matthias Braun39a2afc2015-06-13 03:42:16 +0000312bool ARMSubtarget::enablePostRAScheduler() const {
Matthias Braun9e859802015-07-17 23:18:30 +0000313 // No need for PostRA scheduling on out of order CPUs (for now restricted to
314 // swift).
315 if (getSchedModel().isOutOfOrder() && isSwift())
316 return false;
Sanjay Patela2f658d2014-07-15 22:39:58 +0000317 return (!isThumb() || hasThumb2());
Andrew Trick8d2ee372014-06-04 07:06:27 +0000318}
319
Robin Morisset59c23cd2014-08-21 21:50:01 +0000320bool ARMSubtarget::enableAtomicExpand() const {
Bradley Smith433c22e2016-01-15 10:26:51 +0000321 return hasAnyDataBarrier() && (!isThumb() || hasV8MBaselineOps());
Eric Christopherc40e5ed2014-06-19 21:03:04 +0000322}
323
Tim Northover910dde72015-08-03 17:20:10 +0000324bool ARMSubtarget::useStride4VFPs(const MachineFunction &MF) const {
Tim Northoverf8e47e42015-10-28 22:56:36 +0000325 // For general targets, the prologue can grow when VFPs are allocated with
326 // stride 4 (more vpush instructions). But WatchOS uses a compact unwind
327 // format which it's more important to get right.
Tim Northover042a6c12016-01-27 19:32:29 +0000328 return isTargetWatchABI() || (isSwift() && !MF.getFunction()->optForMinSize());
Tim Northover910dde72015-08-03 17:20:10 +0000329}
330
Eric Christopherc1058df2014-07-04 01:55:26 +0000331bool ARMSubtarget::useMovt(const MachineFunction &MF) const {
332 // NOTE Windows on ARM needs to use mov.w/mov.t pairs to materialise 32-bit
333 // immediates as it is inherently position independent, and may be out of
334 // range otherwise.
Bradley Smithd9a99ce2016-01-15 10:25:14 +0000335 return !NoMovt && hasV8MBaselineOps() &&
Sanjay Patel924879a2015-08-04 15:49:57 +0000336 (isTargetWindows() || !MF.getFunction()->optForMinSize());
Eric Christopherc1058df2014-07-04 01:55:26 +0000337}
Akira Hatanakaddf76aa2015-05-23 01:14:08 +0000338
339bool ARMSubtarget::useFastISel() const {
Oliver Stannardf2ed5c62015-09-23 09:19:54 +0000340 // Enable fast-isel for any target, for testing only.
341 if (ForceFastISel)
342 return true;
343
Eric Christophera8359562015-09-18 20:08:18 +0000344 // Limit fast-isel to the targets that are or have been tested.
345 if (!hasV6Ops())
346 return false;
347
Akira Hatanakaddf76aa2015-05-23 01:14:08 +0000348 // Thumb2 support on iOS; ARM support on iOS, Linux and NaCl.
349 return TM.Options.EnableFastISel &&
350 ((isTargetMachO() && !isThumb1Only()) ||
351 (isTargetLinux() && !isThumb()) || (isTargetNaCl() && !isThumb()));
352}