blob: fc842512ef00f1bd11028a555308735974b78bb0 [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"
Andrew Trickab722bd2012-09-18 03:18:56 +000015#include "ARMBaseInstrInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "ARMBaseRegisterInfo.h"
Bill Wendling5a92eec2013-02-15 22:41:25 +000017#include "llvm/IR/Attributes.h"
Bill Wendling5a92eec2013-02-15 22:41:25 +000018#include "llvm/IR/Function.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000019#include "llvm/IR/GlobalValue.h"
Bob Wilson45825302009-06-22 21:01:46 +000020#include "llvm/Support/CommandLine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/Target/TargetInstrInfo.h"
Renato Golinb4dd6c52013-03-21 18:47:47 +000022#include "llvm/Target/TargetOptions.h"
Evan Cheng54b68e32011-07-01 20:45:01 +000023
Chandler Carruthd174b722014-04-22 02:03:14 +000024using namespace llvm;
25
Chandler Carruthe96dd892014-04-21 22:55:11 +000026#define DEBUG_TYPE "arm-subtarget"
27
Evan Cheng54b68e32011-07-01 20:45:01 +000028#define GET_SUBTARGETINFO_TARGET_DESC
Evan Cheng4d1ca962011-07-08 01:53:10 +000029#define GET_SUBTARGETINFO_CTOR
Evan Chengc9c090d2011-07-01 22:36:09 +000030#include "ARMGenSubtargetInfo.inc"
Evan Cheng54b68e32011-07-01 20:45:01 +000031
Bob Wilson45825302009-06-22 21:01:46 +000032static cl::opt<bool>
33ReserveR9("arm-reserve-r9", cl::Hidden,
34 cl::desc("Reserve R9, making it unavailable as GPR"));
35
Anton Korobeynikov25229082009-11-24 00:44:37 +000036static cl::opt<bool>
Renato Golinca570632013-08-15 20:54:38 +000037ArmUseMOVT("arm-use-movt", cl::init(true), cl::Hidden);
Anton Korobeynikov25229082009-11-24 00:44:37 +000038
Bob Wilson3dc97322010-09-28 04:09:35 +000039static cl::opt<bool>
Bob Wilsone8a549c2012-09-29 21:43:49 +000040UseFusedMulOps("arm-use-mulops",
41 cl::init(true), cl::Hidden);
42
JF Bastien97b08c402013-05-17 23:49:01 +000043enum AlignMode {
44 DefaultAlign,
45 StrictAlign,
46 NoStrictAlign
47};
48
49static cl::opt<AlignMode>
50Align(cl::desc("Load/store alignment support"),
51 cl::Hidden, cl::init(DefaultAlign),
52 cl::values(
53 clEnumValN(DefaultAlign, "arm-default-align",
54 "Generate unaligned accesses only on hardware/OS "
55 "combinations that are known to support them"),
56 clEnumValN(StrictAlign, "arm-strict-align",
57 "Disallow all unaligned memory accesses"),
58 clEnumValN(NoStrictAlign, "arm-no-strict-align",
59 "Allow unaligned memory accesses"),
60 clEnumValEnd));
Bob Wilson3dc97322010-09-28 04:09:35 +000061
Weiming Zhao0da5cc02013-11-13 18:29:49 +000062enum ITMode {
63 DefaultIT,
64 RestrictedIT,
65 NoRestrictedIT
66};
67
68static cl::opt<ITMode>
69IT(cl::desc("IT block support"), cl::Hidden, cl::init(DefaultIT),
70 cl::ZeroOrMore,
71 cl::values(clEnumValN(DefaultIT, "arm-default-it",
72 "Generate IT block based on arch"),
73 clEnumValN(RestrictedIT, "arm-restrict-it",
74 "Disallow deprecated IT based on ARMv8"),
75 clEnumValN(NoRestrictedIT, "arm-no-restrict-it",
76 "Allow IT blocks based on ARMv7"),
77 clEnumValEnd));
78
Eric Christophera47f6802014-06-13 00:20:35 +000079static std::string computeDataLayout(ARMSubtarget &ST) {
80 std::string Ret = "";
81
82 if (ST.isLittle())
83 // Little endian.
84 Ret += "e";
85 else
86 // Big endian.
87 Ret += "E";
88
89 Ret += DataLayout::getManglingComponent(ST.getTargetTriple());
90
91 // Pointers are 32 bits and aligned to 32 bits.
92 Ret += "-p:32:32";
93
94 // On thumb, i16,i18 and i1 have natural aligment requirements, but we try to
95 // align to 32.
96 if (ST.isThumb())
97 Ret += "-i1:8:32-i8:8:32-i16:16:32";
98
99 // ABIs other than APCS have 64 bit integers with natural alignment.
100 if (!ST.isAPCS_ABI())
101 Ret += "-i64:64";
102
103 // We have 64 bits floats. The APCS ABI requires them to be aligned to 32
104 // bits, others to 64 bits. We always try to align to 64 bits.
105 if (ST.isAPCS_ABI())
106 Ret += "-f64:32:64";
107
108 // We have 128 and 64 bit vectors. The APCS ABI aligns them to 32 bits, others
109 // to 64. We always ty to give them natural alignment.
110 if (ST.isAPCS_ABI())
111 Ret += "-v64:32:64-v128:32:128";
112 else
113 Ret += "-v128:64:128";
114
115 // On thumb and APCS, only try to align aggregates to 32 bits (the default is
116 // 64 bits).
117 if (ST.isThumb() || ST.isAPCS_ABI())
118 Ret += "-a:0:32";
119
120 // Integer registers are 32 bits.
121 Ret += "-n32";
122
123 // The stack is 128 bit aligned on NaCl, 64 bit aligned on AAPCS and 32 bit
124 // aligned everywhere else.
125 if (ST.isTargetNaCl())
126 Ret += "-S128";
127 else if (ST.isAAPCS_ABI())
128 Ret += "-S64";
129 else
130 Ret += "-S32";
131
132 return Ret;
133}
134
135/// initializeSubtargetDependencies - Initializes using a CPU and feature string
136/// so that we can use initializer lists for subtarget initialization.
137ARMSubtarget &ARMSubtarget::initializeSubtargetDependencies(StringRef CPU,
138 StringRef FS) {
139 initializeEnvironment();
140 resetSubtargetFeatures(CPU, FS);
141 return *this;
142}
143
Evan Chengfe6e4052011-06-30 01:53:36 +0000144ARMSubtarget::ARMSubtarget(const std::string &TT, const std::string &CPU,
Christian Pirker2a111602014-03-28 14:35:30 +0000145 const std::string &FS, bool IsLittle,
146 const TargetOptions &Options)
Eric Christophera47f6802014-06-13 00:20:35 +0000147 : ARMGenSubtargetInfo(TT, CPU, FS), ARMProcFamily(Others),
148 ARMProcClass(None), stackAlignment(4), CPUString(CPU), IsLittle(IsLittle),
149 TargetTriple(TT), Options(Options), TargetABI(ARM_ABI_UNKNOWN),
Eric Christopher030294e2014-06-13 00:20:39 +0000150 DL(computeDataLayout(initializeSubtargetDependencies(CPU, FS))),
151 TSInfo(DL) {}
Bill Wendling5a92eec2013-02-15 22:41:25 +0000152
Bill Wendling61375d82013-02-16 01:36:26 +0000153void ARMSubtarget::initializeEnvironment() {
154 HasV4TOps = false;
155 HasV5TOps = false;
156 HasV5TEOps = false;
157 HasV6Ops = false;
Amara Emerson5035ee02013-10-07 16:55:23 +0000158 HasV6MOps = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000159 HasV6T2Ops = false;
160 HasV7Ops = false;
Joey Goulyb3f550e2013-06-26 16:58:26 +0000161 HasV8Ops = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000162 HasVFPv2 = false;
163 HasVFPv3 = false;
164 HasVFPv4 = false;
Joey Goulyccd04892013-09-13 13:46:57 +0000165 HasFPARMv8 = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000166 HasNEON = false;
Tim Northoverdee86042013-12-02 14:46:26 +0000167 MinSize = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000168 UseNEONForSinglePrecisionFP = false;
169 UseMulOps = UseFusedMulOps;
170 SlowFPVMLx = false;
171 HasVMLxForwarding = false;
172 SlowFPBrcc = false;
173 InThumbMode = false;
174 HasThumb2 = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000175 NoARM = false;
176 PostRAScheduler = false;
177 IsR9Reserved = ReserveR9;
178 UseMovt = false;
179 SupportsTailCall = false;
180 HasFP16 = false;
181 HasD16 = false;
182 HasHardwareDivide = false;
183 HasHardwareDivideInARM = false;
184 HasT2ExtractPack = false;
185 HasDataBarrier = false;
186 Pref32BitThumb = false;
187 AvoidCPSRPartialUpdate = false;
188 AvoidMOVsShifterOperand = false;
189 HasRAS = false;
190 HasMPExtension = false;
Bradley Smith25219752013-11-01 13:27:35 +0000191 HasVirtualization = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000192 FPOnlySP = false;
Tim Northovercedd4812013-05-23 19:11:14 +0000193 HasPerfMon = false;
Tim Northoverc6047652013-04-10 12:08:35 +0000194 HasTrustZone = false;
Amara Emerson33089092013-09-19 11:59:01 +0000195 HasCrypto = false;
Amara Emersonf9a67fc2013-10-29 16:54:52 +0000196 HasCRC = false;
Tim Northover13510302014-04-01 13:22:02 +0000197 HasZeroCycleZeroing = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000198 AllowsUnalignedMem = false;
199 Thumb2DSP = false;
200 UseNaClTrap = false;
Renato Golinb4dd6c52013-03-21 18:47:47 +0000201 UnsafeFPMath = false;
Bill Wendling61375d82013-02-16 01:36:26 +0000202}
203
Bill Wendling5a92eec2013-02-15 22:41:25 +0000204void ARMSubtarget::resetSubtargetFeatures(const MachineFunction *MF) {
205 AttributeSet FnAttrs = MF->getFunction()->getAttributes();
206 Attribute CPUAttr = FnAttrs.getAttribute(AttributeSet::FunctionIndex,
207 "target-cpu");
208 Attribute FSAttr = FnAttrs.getAttribute(AttributeSet::FunctionIndex,
209 "target-features");
210 std::string CPU =
211 !CPUAttr.hasAttribute(Attribute::None) ?CPUAttr.getValueAsString() : "";
212 std::string FS =
213 !FSAttr.hasAttribute(Attribute::None) ? FSAttr.getValueAsString() : "";
Bill Wendling61375d82013-02-16 01:36:26 +0000214 if (!FS.empty()) {
215 initializeEnvironment();
Bill Wendling5a92eec2013-02-15 22:41:25 +0000216 resetSubtargetFeatures(CPU, FS);
Bill Wendling61375d82013-02-16 01:36:26 +0000217 }
Tim Northoverdee86042013-12-02 14:46:26 +0000218
219 MinSize =
220 FnAttrs.hasAttribute(AttributeSet::FunctionIndex, Attribute::MinSize);
Bill Wendling5a92eec2013-02-15 22:41:25 +0000221}
222
223void ARMSubtarget::resetSubtargetFeatures(StringRef CPU, StringRef FS) {
Tilmann Scheller63872ce2013-09-02 17:09:01 +0000224 if (CPUString.empty()) {
225 if (isTargetIOS() && TargetTriple.getArchName().endswith("v7s"))
226 // Default to the Swift CPU when targeting armv7s/thumbv7s.
227 CPUString = "swift";
228 else
229 CPUString = "generic";
230 }
Evan Chengec415ef2009-03-08 04:02:49 +0000231
Evan Cheng0b33a322011-06-30 02:12:44 +0000232 // Insert the architecture feature derived from the target triple into the
233 // feature string. This is important for setting features that are implied
234 // based on the architecture version.
Bill Wendling5a92eec2013-02-15 22:41:25 +0000235 std::string ArchFS = ARM_MC::ParseARMTriple(TargetTriple.getTriple(),
236 CPUString);
Evan Cheng2bd65362011-07-07 00:08:19 +0000237 if (!FS.empty()) {
238 if (!ArchFS.empty())
Bill Wendling5a92eec2013-02-15 22:41:25 +0000239 ArchFS = ArchFS + "," + FS.str();
Evan Cheng2bd65362011-07-07 00:08:19 +0000240 else
241 ArchFS = FS;
242 }
Evan Cheng1a72add62011-07-07 07:07:08 +0000243 ParseSubtargetFeatures(CPUString, ArchFS);
Evan Cheng2bd65362011-07-07 00:08:19 +0000244
Joerg Sonnenberger002a1472013-12-13 11:16:00 +0000245 // FIXME: This used enable V6T2 support implicitly for Thumb2 mode.
246 // Assert this for now to make the change obvious.
247 assert(hasV6T2Ops() || !hasThumb2());
Bob Wilsond0046ca2010-11-09 22:50:47 +0000248
Andrew Trick352abc12012-08-08 02:44:16 +0000249 // Keep a pointer to static instruction cost data for the specified CPU.
250 SchedModel = getSchedModelForCPU(CPUString);
251
Evan Cheng54b68e32011-07-01 20:45:01 +0000252 // Initialize scheduling itinerary for the specified CPU.
253 InstrItins = getInstrItineraryForCPU(CPUString);
254
Rafael Espindolad89b16d2014-01-02 13:40:08 +0000255 if (TargetABI == ARM_ABI_UNKNOWN) {
256 switch (TargetTriple.getEnvironment()) {
257 case Triple::Android:
258 case Triple::EABI:
259 case Triple::EABIHF:
260 case Triple::GNUEABI:
261 case Triple::GNUEABIHF:
Joerg Sonnenberger74669792013-12-15 00:12:52 +0000262 TargetABI = ARM_ABI_AAPCS;
Rafael Espindolad89b16d2014-01-02 13:40:08 +0000263 break;
264 default:
Saleem Abdulrasool35476332014-03-06 20:47:11 +0000265 if ((isTargetIOS() && isMClass()) ||
266 (TargetTriple.isOSBinFormatMachO() &&
267 TargetTriple.getOS() == Triple::UnknownOS))
Rafael Espindolad89b16d2014-01-02 13:40:08 +0000268 TargetABI = ARM_ABI_AAPCS;
269 else
270 TargetABI = ARM_ABI_APCS;
271 break;
272 }
Joerg Sonnenberger74669792013-12-15 00:12:52 +0000273 }
Evan Cheng1a72add62011-07-07 07:07:08 +0000274
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000275 // FIXME: this is invalid for WindowsCE
276 if (isTargetWindows()) {
277 TargetABI = ARM_ABI_AAPCS;
278 NoARM = true;
279 }
280
Lauro Ramos Venancio048e16ff2007-02-13 19:52:28 +0000281 if (isAAPCS_ABI())
282 stackAlignment = 8;
Mark Seabornbe266aa2014-02-16 18:59:48 +0000283 if (isTargetNaCl())
284 stackAlignment = 16;
Lauro Ramos Venancio048e16ff2007-02-13 19:52:28 +0000285
Renato Golinca570632013-08-15 20:54:38 +0000286 UseMovt = hasV6T2Ops() && ArmUseMOVT;
287
Tim Northoverd6a729b2014-01-06 14:28:05 +0000288 if (isTargetMachO()) {
Evan Cheng8b2bda02011-07-07 03:55:05 +0000289 IsR9Reserved = ReserveR9 | !HasV6Ops;
Tim Northoverd6a729b2014-01-06 14:28:05 +0000290 SupportsTailCall = !isTargetIOS() || !getTargetTriple().isOSVersionLT(5, 0);
Saleem Abdulrasoolec1ec1b2014-03-11 15:09:44 +0000291 } else {
Tim Northoverd6a729b2014-01-06 14:28:05 +0000292 IsR9Reserved = ReserveR9;
Saleem Abdulrasoolec1ec1b2014-03-11 15:09:44 +0000293 SupportsTailCall = !isThumb1Only();
294 }
David Goodwin9a051a52009-10-01 21:46:35 +0000295
Evan Cheng03da4db2009-10-16 06:11:08 +0000296 if (!isThumb() || hasThumb2())
297 PostRAScheduler = true;
Bob Wilson3dc97322010-09-28 04:09:35 +0000298
JF Bastien97b08c402013-05-17 23:49:01 +0000299 switch (Align) {
300 case DefaultAlign:
301 // Assume pre-ARMv6 doesn't support unaligned accesses.
302 //
303 // ARMv6 may or may not support unaligned accesses depending on the
304 // SCTLR.U bit, which is architecture-specific. We assume ARMv6
Jim Grosbach4a1a9ce2014-04-02 19:28:13 +0000305 // Darwin and NetBSD targets support unaligned accesses, and others don't.
JF Bastien97b08c402013-05-17 23:49:01 +0000306 //
307 // ARMv7 always has SCTLR.U set to 1, but it has a new SCTLR.A bit
308 // which raises an alignment fault on unaligned accesses. Linux
309 // defaults this bit to 0 and handles it as a system-wide (not
310 // per-process) setting. It is therefore safe to assume that ARMv7+
311 // Linux targets support unaligned accesses. The same goes for NaCl.
312 //
313 // The above behavior is consistent with GCC.
Joerg Sonnenberger4455ffc2014-02-02 21:18:36 +0000314 AllowsUnalignedMem =
315 (hasV7Ops() && (isTargetLinux() || isTargetNaCl() ||
316 isTargetNetBSD())) ||
317 (hasV6Ops() && (isTargetMachO() || isTargetNetBSD()));
Jim Grosbach4a1a9ce2014-04-02 19:28:13 +0000318 // The one exception is cortex-m0, which despite being v6, does not
319 // support unaligned accesses. Rather than make the above boolean
320 // expression even more obtuse, just override the value here.
321 if (isThumb1Only() && isMClass())
322 AllowsUnalignedMem = false;
JF Bastien97b08c402013-05-17 23:49:01 +0000323 break;
324 case StrictAlign:
325 AllowsUnalignedMem = false;
326 break;
327 case NoStrictAlign:
328 AllowsUnalignedMem = true;
329 break;
330 }
Renato Golinb4dd6c52013-03-21 18:47:47 +0000331
Weiming Zhao0da5cc02013-11-13 18:29:49 +0000332 switch (IT) {
333 case DefaultIT:
334 RestrictIT = hasV8Ops() ? true : false;
335 break;
336 case RestrictedIT:
337 RestrictIT = true;
338 break;
339 case NoRestrictedIT:
340 RestrictIT = false;
341 break;
342 }
343
Renato Golinb4dd6c52013-03-21 18:47:47 +0000344 // NEON f32 ops are non-IEEE 754 compliant. Darwin is ok with it by default.
345 uint64_t Bits = getFeatureBits();
346 if ((Bits & ARM::ProcA5 || Bits & ARM::ProcA8) && // Where this matters
347 (Options.UnsafeFPMath || isTargetDarwin()))
348 UseNEONForSinglePrecisionFP = true;
Evan Cheng10043e22007-01-19 07:51:42 +0000349}
Evan Cheng43b9ca62009-08-28 23:18:09 +0000350
351/// GVIsIndirectSymbol - true if the GV will be accessed via an indirect symbol.
Evan Cheng1b389522009-09-03 07:04:02 +0000352bool
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000353ARMSubtarget::GVIsIndirectSymbol(const GlobalValue *GV,
354 Reloc::Model RelocM) const {
Evan Cheng1b389522009-09-03 07:04:02 +0000355 if (RelocM == Reloc::Static)
Evan Cheng43b9ca62009-08-28 23:18:09 +0000356 return false;
Evan Cheng1b389522009-09-03 07:04:02 +0000357
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000358 // Materializable GVs (in JIT lazy compilation mode) do not require an extra
359 // load from stub.
Evan Cheng2ce66302011-02-22 06:58:34 +0000360 bool isDecl = GV->hasAvailableExternallyLinkage();
361 if (GV->isDeclaration() && !GV->isMaterializable())
362 isDecl = true;
Evan Cheng1b389522009-09-03 07:04:02 +0000363
Tim Northoverd6a729b2014-01-06 14:28:05 +0000364 if (!isTargetMachO()) {
Evan Cheng1b389522009-09-03 07:04:02 +0000365 // Extra load is needed for all externally visible.
366 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
367 return false;
368 return true;
369 } else {
370 if (RelocM == Reloc::PIC_) {
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;
375
376 // 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 // If symbol visibility is hidden, we have a stub for common symbol
382 // references and external declarations.
383 if (isDecl || GV->hasCommonLinkage())
384 // Hidden $non_lazy_ptr reference.
385 return true;
386
387 return false;
388 } else {
389 // If this is a strong reference to a definition, it is definitely not
390 // through a stub.
391 if (!isDecl && !GV->isWeakForLinker())
392 return false;
Andrew Trickc416ba62010-12-24 04:28:06 +0000393
Evan Cheng1b389522009-09-03 07:04:02 +0000394 // Unless we have a symbol with hidden visibility, we have to go through a
395 // normal $non_lazy_ptr stub because this symbol might be resolved late.
396 if (!GV->hasHiddenVisibility()) // Non-hidden $non_lazy_ptr reference.
397 return true;
398 }
399 }
400
401 return false;
Evan Cheng43b9ca62009-08-28 23:18:09 +0000402}
David Goodwin0d412c22009-11-10 00:48:55 +0000403
Owen Andersona3181e22010-09-28 21:57:50 +0000404unsigned ARMSubtarget::getMispredictionPenalty() const {
Andrew Trick352abc12012-08-08 02:44:16 +0000405 return SchedModel->MispredictPenalty;
Owen Andersona3181e22010-09-28 21:57:50 +0000406}
407
Bob Wilsone7dde0c2013-11-03 06:14:38 +0000408bool ARMSubtarget::hasSinCos() const {
409 return getTargetTriple().getOS() == Triple::IOS &&
410 !getTargetTriple().isOSVersionLT(7, 0);
411}
412
Andrew Trick8d2ee372014-06-04 07:06:27 +0000413// Enable the PostMachineScheduler if the target selects it instead of
414// PostRAScheduler. Currently only available on the command line via
415// -misched-postra.
416bool ARMSubtarget::enablePostMachineScheduler() const {
417 return PostRAScheduler;
418}
419
David Goodwin0d412c22009-11-10 00:48:55 +0000420bool ARMSubtarget::enablePostRAScheduler(
421 CodeGenOpt::Level OptLevel,
Evan Cheng0d639a22011-07-01 21:01:15 +0000422 TargetSubtargetInfo::AntiDepBreakMode& Mode,
David Goodwinb9fe5d52009-11-13 19:52:48 +0000423 RegClassVector& CriticalPathRCs) const {
Andrew Trickd24698c2013-09-25 00:26:16 +0000424 Mode = TargetSubtargetInfo::ANTIDEP_NONE;
David Goodwin0d412c22009-11-10 00:48:55 +0000425 return PostRAScheduler && OptLevel >= CodeGenOpt::Default;
426}