blob: df17e7590d9ea2d6e761b67ef3ad30b93dad978f [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"
Eric Christopher80b24ef2014-06-26 19:30:02 +000018#include "ARMSelectionDAGInfo.h"
19#include "ARMSubtarget.h"
Chris Bieneman03695ab2014-07-15 17:18:41 +000020#include "ARMMachineFunctionInfo.h"
Eric Christopher80b24ef2014-06-26 19:30:02 +000021#include "Thumb1FrameLowering.h"
22#include "Thumb1InstrInfo.h"
23#include "Thumb2InstrInfo.h"
Bill Wendling5a92eec2013-02-15 22:41:25 +000024#include "llvm/IR/Attributes.h"
Bill Wendling5a92eec2013-02-15 22:41:25 +000025#include "llvm/IR/Function.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000026#include "llvm/IR/GlobalValue.h"
Bob Wilson45825302009-06-22 21:01:46 +000027#include "llvm/Support/CommandLine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000028#include "llvm/Target/TargetInstrInfo.h"
Renato Golinb4dd6c52013-03-21 18:47:47 +000029#include "llvm/Target/TargetOptions.h"
Chris Bieneman03695ab2014-07-15 17:18:41 +000030#include "llvm/Target/TargetRegisterInfo.h"
31#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Cheng54b68e32011-07-01 20:45:01 +000032
Chandler Carruthd174b722014-04-22 02:03:14 +000033using namespace llvm;
34
Chandler Carruthe96dd892014-04-21 22:55:11 +000035#define DEBUG_TYPE "arm-subtarget"
36
Evan Cheng54b68e32011-07-01 20:45:01 +000037#define GET_SUBTARGETINFO_TARGET_DESC
Evan Cheng4d1ca962011-07-08 01:53:10 +000038#define GET_SUBTARGETINFO_CTOR
Evan Chengc9c090d2011-07-01 22:36:09 +000039#include "ARMGenSubtargetInfo.inc"
Evan Cheng54b68e32011-07-01 20:45:01 +000040
Bob Wilson45825302009-06-22 21:01:46 +000041static cl::opt<bool>
42ReserveR9("arm-reserve-r9", cl::Hidden,
43 cl::desc("Reserve R9, making it unavailable as GPR"));
44
Anton Korobeynikov25229082009-11-24 00:44:37 +000045static cl::opt<bool>
Renato Golinca570632013-08-15 20:54:38 +000046ArmUseMOVT("arm-use-movt", cl::init(true), cl::Hidden);
Anton Korobeynikov25229082009-11-24 00:44:37 +000047
Bob Wilson3dc97322010-09-28 04:09:35 +000048static cl::opt<bool>
Bob Wilsone8a549c2012-09-29 21:43:49 +000049UseFusedMulOps("arm-use-mulops",
50 cl::init(true), cl::Hidden);
51
Alexey Samsonovf17f03e2014-08-19 18:40:39 +000052namespace {
JF Bastien97b08c402013-05-17 23:49:01 +000053enum AlignMode {
54 DefaultAlign,
55 StrictAlign,
56 NoStrictAlign
57};
Alexey Samsonovf17f03e2014-08-19 18:40:39 +000058}
JF Bastien97b08c402013-05-17 23:49:01 +000059
60static cl::opt<AlignMode>
61Align(cl::desc("Load/store alignment support"),
62 cl::Hidden, cl::init(DefaultAlign),
63 cl::values(
64 clEnumValN(DefaultAlign, "arm-default-align",
65 "Generate unaligned accesses only on hardware/OS "
66 "combinations that are known to support them"),
67 clEnumValN(StrictAlign, "arm-strict-align",
68 "Disallow all unaligned memory accesses"),
69 clEnumValN(NoStrictAlign, "arm-no-strict-align",
70 "Allow unaligned memory accesses"),
71 clEnumValEnd));
Bob Wilson3dc97322010-09-28 04:09:35 +000072
Weiming Zhao0da5cc02013-11-13 18:29:49 +000073enum ITMode {
74 DefaultIT,
75 RestrictedIT,
76 NoRestrictedIT
77};
78
79static cl::opt<ITMode>
80IT(cl::desc("IT block support"), cl::Hidden, cl::init(DefaultIT),
81 cl::ZeroOrMore,
82 cl::values(clEnumValN(DefaultIT, "arm-default-it",
83 "Generate IT block based on arch"),
84 clEnumValN(RestrictedIT, "arm-restrict-it",
85 "Disallow deprecated IT based on ARMv8"),
86 clEnumValN(NoRestrictedIT, "arm-no-restrict-it",
87 "Allow IT blocks based on ARMv7"),
88 clEnumValEnd));
89
Eric Christophera47f6802014-06-13 00:20:35 +000090static std::string computeDataLayout(ARMSubtarget &ST) {
91 std::string Ret = "";
92
93 if (ST.isLittle())
94 // Little endian.
95 Ret += "e";
96 else
97 // Big endian.
98 Ret += "E";
99
100 Ret += DataLayout::getManglingComponent(ST.getTargetTriple());
101
102 // Pointers are 32 bits and aligned to 32 bits.
103 Ret += "-p:32:32";
104
Eric Christophera47f6802014-06-13 00:20:35 +0000105 // ABIs other than APCS have 64 bit integers with natural alignment.
106 if (!ST.isAPCS_ABI())
107 Ret += "-i64:64";
108
109 // We have 64 bits floats. The APCS ABI requires them to be aligned to 32
110 // bits, others to 64 bits. We always try to align to 64 bits.
111 if (ST.isAPCS_ABI())
112 Ret += "-f64:32:64";
113
114 // We have 128 and 64 bit vectors. The APCS ABI aligns them to 32 bits, others
115 // to 64. We always ty to give them natural alignment.
116 if (ST.isAPCS_ABI())
117 Ret += "-v64:32:64-v128:32:128";
118 else
119 Ret += "-v128:64:128";
120
Tim Northoveraa09ac62014-10-14 20:57:26 +0000121 // Try to align aggregates to 32 bits (the default is 64 bits, which has no
122 // particular hardware support on 32-bit ARM).
123 Ret += "-a:0:32";
Eric Christophera47f6802014-06-13 00:20:35 +0000124
125 // Integer registers are 32 bits.
126 Ret += "-n32";
127
128 // The stack is 128 bit aligned on NaCl, 64 bit aligned on AAPCS and 32 bit
129 // aligned everywhere else.
130 if (ST.isTargetNaCl())
131 Ret += "-S128";
132 else if (ST.isAAPCS_ABI())
133 Ret += "-S64";
134 else
135 Ret += "-S32";
136
137 return Ret;
138}
139
140/// initializeSubtargetDependencies - Initializes using a CPU and feature string
141/// so that we can use initializer lists for subtarget initialization.
142ARMSubtarget &ARMSubtarget::initializeSubtargetDependencies(StringRef CPU,
143 StringRef FS) {
144 initializeEnvironment();
Eric Christopherb68e2532014-09-03 20:36:31 +0000145 initSubtargetFeatures(CPU, FS);
Eric Christophera47f6802014-06-13 00:20:35 +0000146 return *this;
147}
148
Evan Chengfe6e4052011-06-30 01:53:36 +0000149ARMSubtarget::ARMSubtarget(const std::string &TT, const std::string &CPU,
Eric Christopher5312afe2014-10-03 00:17:59 +0000150 const std::string &FS, const TargetMachine &TM,
Eric Christophera94e5922014-10-03 00:10:03 +0000151 bool IsLittle)
Eric Christophera47f6802014-06-13 00:20:35 +0000152 : ARMGenSubtargetInfo(TT, CPU, FS), ARMProcFamily(Others),
153 ARMProcClass(None), stackAlignment(4), CPUString(CPU), IsLittle(IsLittle),
Eric Christophera94e5922014-10-03 00:10:03 +0000154 TargetTriple(TT), Options(TM.Options), TargetABI(ARM_ABI_UNKNOWN),
Eric Christopher030294e2014-06-13 00:20:39 +0000155 DL(computeDataLayout(initializeSubtargetDependencies(CPU, FS))),
Eric Christopher79cc1e32014-09-02 22:28:02 +0000156 TSInfo(DL),
Eric Christopher80b24ef2014-06-26 19:30:02 +0000157 InstrInfo(isThumb1Only()
158 ? (ARMBaseInstrInfo *)new Thumb1InstrInfo(*this)
159 : !isThumb()
160 ? (ARMBaseInstrInfo *)new ARMInstrInfo(*this)
161 : (ARMBaseInstrInfo *)new Thumb2InstrInfo(*this)),
162 TLInfo(TM),
163 FrameLowering(!isThumb1Only()
164 ? new ARMFrameLowering(*this)
165 : (ARMFrameLowering *)new Thumb1FrameLowering(*this)) {}
Bill Wendling5a92eec2013-02-15 22:41:25 +0000166
Bill Wendling61375d82013-02-16 01:36:26 +0000167void ARMSubtarget::initializeEnvironment() {
168 HasV4TOps = false;
169 HasV5TOps = false;
170 HasV5TEOps = false;
171 HasV6Ops = false;
Amara Emerson5035ee02013-10-07 16:55:23 +0000172 HasV6MOps = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000173 HasV6T2Ops = false;
174 HasV7Ops = false;
Joey Goulyb3f550e2013-06-26 16:58:26 +0000175 HasV8Ops = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000176 HasVFPv2 = false;
177 HasVFPv3 = false;
178 HasVFPv4 = false;
Joey Goulyccd04892013-09-13 13:46:57 +0000179 HasFPARMv8 = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000180 HasNEON = false;
181 UseNEONForSinglePrecisionFP = false;
182 UseMulOps = UseFusedMulOps;
183 SlowFPVMLx = false;
184 HasVMLxForwarding = false;
185 SlowFPBrcc = false;
186 InThumbMode = false;
187 HasThumb2 = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000188 NoARM = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000189 IsR9Reserved = ReserveR9;
190 UseMovt = false;
191 SupportsTailCall = false;
192 HasFP16 = false;
193 HasD16 = false;
194 HasHardwareDivide = false;
195 HasHardwareDivideInARM = false;
196 HasT2ExtractPack = false;
197 HasDataBarrier = false;
198 Pref32BitThumb = false;
199 AvoidCPSRPartialUpdate = false;
200 AvoidMOVsShifterOperand = false;
201 HasRAS = false;
202 HasMPExtension = false;
Bradley Smith25219752013-11-01 13:27:35 +0000203 HasVirtualization = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000204 FPOnlySP = false;
Tim Northovercedd4812013-05-23 19:11:14 +0000205 HasPerfMon = false;
Tim Northoverc6047652013-04-10 12:08:35 +0000206 HasTrustZone = false;
Amara Emerson33089092013-09-19 11:59:01 +0000207 HasCrypto = false;
Amara Emersonf9a67fc2013-10-29 16:54:52 +0000208 HasCRC = false;
Tim Northover13510302014-04-01 13:22:02 +0000209 HasZeroCycleZeroing = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000210 AllowsUnalignedMem = false;
211 Thumb2DSP = false;
212 UseNaClTrap = false;
Renato Golinb4dd6c52013-03-21 18:47:47 +0000213 UnsafeFPMath = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000214}
215
Eric Christopherb68e2532014-09-03 20:36:31 +0000216void ARMSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) {
Tilmann Scheller63872ce2013-09-02 17:09:01 +0000217 if (CPUString.empty()) {
218 if (isTargetIOS() && TargetTriple.getArchName().endswith("v7s"))
219 // Default to the Swift CPU when targeting armv7s/thumbv7s.
220 CPUString = "swift";
221 else
222 CPUString = "generic";
223 }
Evan Chengec415ef2009-03-08 04:02:49 +0000224
Evan Cheng0b33a322011-06-30 02:12:44 +0000225 // Insert the architecture feature derived from the target triple into the
226 // feature string. This is important for setting features that are implied
227 // based on the architecture version.
Bill Wendling5a92eec2013-02-15 22:41:25 +0000228 std::string ArchFS = ARM_MC::ParseARMTriple(TargetTriple.getTriple(),
229 CPUString);
Evan Cheng2bd65362011-07-07 00:08:19 +0000230 if (!FS.empty()) {
231 if (!ArchFS.empty())
Bill Wendling5a92eec2013-02-15 22:41:25 +0000232 ArchFS = ArchFS + "," + FS.str();
Evan Cheng2bd65362011-07-07 00:08:19 +0000233 else
234 ArchFS = FS;
235 }
Evan Cheng1a72add62011-07-07 07:07:08 +0000236 ParseSubtargetFeatures(CPUString, ArchFS);
Evan Cheng2bd65362011-07-07 00:08:19 +0000237
Joerg Sonnenberger002a1472013-12-13 11:16:00 +0000238 // FIXME: This used enable V6T2 support implicitly for Thumb2 mode.
239 // Assert this for now to make the change obvious.
240 assert(hasV6T2Ops() || !hasThumb2());
Bob Wilsond0046ca2010-11-09 22:50:47 +0000241
Andrew Trick352abc12012-08-08 02:44:16 +0000242 // Keep a pointer to static instruction cost data for the specified CPU.
243 SchedModel = getSchedModelForCPU(CPUString);
244
Evan Cheng54b68e32011-07-01 20:45:01 +0000245 // Initialize scheduling itinerary for the specified CPU.
246 InstrItins = getInstrItineraryForCPU(CPUString);
247
Rafael Espindolad89b16d2014-01-02 13:40:08 +0000248 if (TargetABI == ARM_ABI_UNKNOWN) {
249 switch (TargetTriple.getEnvironment()) {
250 case Triple::Android:
251 case Triple::EABI:
252 case Triple::EABIHF:
253 case Triple::GNUEABI:
254 case Triple::GNUEABIHF:
Joerg Sonnenberger74669792013-12-15 00:12:52 +0000255 TargetABI = ARM_ABI_AAPCS;
Rafael Espindolad89b16d2014-01-02 13:40:08 +0000256 break;
257 default:
Tim Northovere9ff4c22014-10-15 01:05:01 +0000258 if (TargetTriple.isOSBinFormatMachO() &&
259 TargetTriple.getOS() == Triple::UnknownOS)
Rafael Espindolad89b16d2014-01-02 13:40:08 +0000260 TargetABI = ARM_ABI_AAPCS;
261 else
262 TargetABI = ARM_ABI_APCS;
263 break;
264 }
Joerg Sonnenberger74669792013-12-15 00:12:52 +0000265 }
Evan Cheng1a72add62011-07-07 07:07:08 +0000266
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000267 // FIXME: this is invalid for WindowsCE
268 if (isTargetWindows()) {
269 TargetABI = ARM_ABI_AAPCS;
270 NoARM = true;
271 }
272
Lauro Ramos Venancio048e16ff2007-02-13 19:52:28 +0000273 if (isAAPCS_ABI())
274 stackAlignment = 8;
Mark Seabornbe266aa2014-02-16 18:59:48 +0000275 if (isTargetNaCl())
276 stackAlignment = 16;
Lauro Ramos Venancio048e16ff2007-02-13 19:52:28 +0000277
Renato Golinca570632013-08-15 20:54:38 +0000278 UseMovt = hasV6T2Ops() && ArmUseMOVT;
279
Tim Northoverd6a729b2014-01-06 14:28:05 +0000280 if (isTargetMachO()) {
Richard Trieu1fbe1a82014-09-17 01:47:52 +0000281 IsR9Reserved = ReserveR9 || !HasV6Ops;
Tim Northoverd6a729b2014-01-06 14:28:05 +0000282 SupportsTailCall = !isTargetIOS() || !getTargetTriple().isOSVersionLT(5, 0);
Saleem Abdulrasoolec1ec1b2014-03-11 15:09:44 +0000283 } else {
Tim Northoverd6a729b2014-01-06 14:28:05 +0000284 IsR9Reserved = ReserveR9;
Saleem Abdulrasoolec1ec1b2014-03-11 15:09:44 +0000285 SupportsTailCall = !isThumb1Only();
286 }
David Goodwin9a051a52009-10-01 21:46:35 +0000287
Renato Golin51dc3f42014-10-08 12:26:13 +0000288 if (Align == DefaultAlign) {
289 // Assume pre-ARMv6 doesn't support unaligned accesses.
290 //
291 // ARMv6 may or may not support unaligned accesses depending on the
292 // SCTLR.U bit, which is architecture-specific. We assume ARMv6
293 // Darwin and NetBSD targets support unaligned accesses, and others don't.
294 //
295 // ARMv7 always has SCTLR.U set to 1, but it has a new SCTLR.A bit
296 // which raises an alignment fault on unaligned accesses. Linux
297 // defaults this bit to 0 and handles it as a system-wide (not
298 // per-process) setting. It is therefore safe to assume that ARMv7+
299 // Linux targets support unaligned accesses. The same goes for NaCl.
300 //
301 // The above behavior is consistent with GCC.
302 AllowsUnalignedMem =
303 (hasV7Ops() && (isTargetLinux() || isTargetNaCl() ||
304 isTargetNetBSD())) ||
305 (hasV6Ops() && (isTargetMachO() || isTargetNetBSD()));
Renato Golin51dc3f42014-10-08 12:26:13 +0000306 } else {
307 AllowsUnalignedMem = !(Align == StrictAlign);
JF Bastien97b08c402013-05-17 23:49:01 +0000308 }
Renato Golinb4dd6c52013-03-21 18:47:47 +0000309
Renato Golinbab5ace2014-10-08 12:26:16 +0000310 // No v6M core supports unaligned memory access (v6M ARM ARM A3.2)
311 if (isV6M())
312 AllowsUnalignedMem = false;
313
Weiming Zhao0da5cc02013-11-13 18:29:49 +0000314 switch (IT) {
315 case DefaultIT:
316 RestrictIT = hasV8Ops() ? true : false;
317 break;
318 case RestrictedIT:
319 RestrictIT = true;
320 break;
321 case NoRestrictedIT:
322 RestrictIT = false;
323 break;
324 }
325
Renato Golinb4dd6c52013-03-21 18:47:47 +0000326 // NEON f32 ops are non-IEEE 754 compliant. Darwin is ok with it by default.
327 uint64_t Bits = getFeatureBits();
328 if ((Bits & ARM::ProcA5 || Bits & ARM::ProcA8) && // Where this matters
329 (Options.UnsafeFPMath || isTargetDarwin()))
330 UseNEONForSinglePrecisionFP = true;
Evan Cheng10043e22007-01-19 07:51:42 +0000331}
Evan Cheng43b9ca62009-08-28 23:18:09 +0000332
333/// GVIsIndirectSymbol - true if the GV will be accessed via an indirect symbol.
Evan Cheng1b389522009-09-03 07:04:02 +0000334bool
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000335ARMSubtarget::GVIsIndirectSymbol(const GlobalValue *GV,
336 Reloc::Model RelocM) const {
Evan Cheng1b389522009-09-03 07:04:02 +0000337 if (RelocM == Reloc::Static)
Evan Cheng43b9ca62009-08-28 23:18:09 +0000338 return false;
Evan Cheng1b389522009-09-03 07:04:02 +0000339
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000340 // Materializable GVs (in JIT lazy compilation mode) do not require an extra
341 // load from stub.
Evan Cheng2ce66302011-02-22 06:58:34 +0000342 bool isDecl = GV->hasAvailableExternallyLinkage();
343 if (GV->isDeclaration() && !GV->isMaterializable())
344 isDecl = true;
Evan Cheng1b389522009-09-03 07:04:02 +0000345
Tim Northoverd6a729b2014-01-06 14:28:05 +0000346 if (!isTargetMachO()) {
Evan Cheng1b389522009-09-03 07:04:02 +0000347 // Extra load is needed for all externally visible.
348 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
349 return false;
350 return true;
351 } else {
352 if (RelocM == Reloc::PIC_) {
353 // If this is a strong reference to a definition, it is definitely not
354 // through a stub.
355 if (!isDecl && !GV->isWeakForLinker())
356 return false;
357
358 // Unless we have a symbol with hidden visibility, we have to go through a
359 // normal $non_lazy_ptr stub because this symbol might be resolved late.
360 if (!GV->hasHiddenVisibility()) // Non-hidden $non_lazy_ptr reference.
361 return true;
362
363 // If symbol visibility is hidden, we have a stub for common symbol
364 // references and external declarations.
365 if (isDecl || GV->hasCommonLinkage())
366 // Hidden $non_lazy_ptr reference.
367 return true;
368
369 return false;
370 } else {
371 // If this is a strong reference to a definition, it is definitely not
372 // through a stub.
373 if (!isDecl && !GV->isWeakForLinker())
374 return false;
Andrew Trickc416ba62010-12-24 04:28:06 +0000375
Evan Cheng1b389522009-09-03 07:04:02 +0000376 // Unless we have a symbol with hidden visibility, we have to go through a
377 // normal $non_lazy_ptr stub because this symbol might be resolved late.
378 if (!GV->hasHiddenVisibility()) // Non-hidden $non_lazy_ptr reference.
379 return true;
380 }
381 }
382
383 return false;
Evan Cheng43b9ca62009-08-28 23:18:09 +0000384}
David Goodwin0d412c22009-11-10 00:48:55 +0000385
Owen Andersona3181e22010-09-28 21:57:50 +0000386unsigned ARMSubtarget::getMispredictionPenalty() const {
Pete Cooper11759452014-09-02 17:43:54 +0000387 return SchedModel.MispredictPenalty;
Owen Andersona3181e22010-09-28 21:57:50 +0000388}
389
Bob Wilsone7dde0c2013-11-03 06:14:38 +0000390bool ARMSubtarget::hasSinCos() const {
Bob Wilson9868d712014-10-09 05:43:30 +0000391 return getTargetTriple().isiOS() && !getTargetTriple().isOSVersionLT(7, 0);
Bob Wilsone7dde0c2013-11-03 06:14:38 +0000392}
393
Sanjay Patela2f658d2014-07-15 22:39:58 +0000394// This overrides the PostRAScheduler bit in the SchedModel for any CPU.
Andrew Trick8d2ee372014-06-04 07:06:27 +0000395bool ARMSubtarget::enablePostMachineScheduler() const {
Sanjay Patela2f658d2014-07-15 22:39:58 +0000396 return (!isThumb() || hasThumb2());
Andrew Trick8d2ee372014-06-04 07:06:27 +0000397}
398
Robin Morisset59c23cd2014-08-21 21:50:01 +0000399bool ARMSubtarget::enableAtomicExpand() const {
Eric Christopherc40e5ed2014-06-19 21:03:04 +0000400 return hasAnyDataBarrier() && !isThumb1Only();
401}
402
Eric Christopherc1058df2014-07-04 01:55:26 +0000403bool ARMSubtarget::useMovt(const MachineFunction &MF) const {
404 // NOTE Windows on ARM needs to use mov.w/mov.t pairs to materialise 32-bit
405 // immediates as it is inherently position independent, and may be out of
406 // range otherwise.
407 return UseMovt && (isTargetWindows() ||
408 !MF.getFunction()->getAttributes().hasAttribute(
409 AttributeSet::FunctionIndex, Attribute::MinSize));
410}