Jia Liu | b22310f | 2012-02-18 12:03:15 +0000 | [diff] [blame] | 1 | //===-- ARMSubtarget.cpp - ARM Subtarget Information ----------------------===// |
Evan Cheng | 10043e2 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Evan Cheng | 10043e2 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Evan Cheng | 0d639a2 | 2011-07-01 21:01:15 +0000 | [diff] [blame] | 10 | // This file implements the ARM specific subclass of TargetSubtargetInfo. |
Evan Cheng | 10043e2 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "ARMSubtarget.h" |
Eric Christopher | 80b24ef | 2014-06-26 19:30:02 +0000 | [diff] [blame] | 15 | #include "ARMFrameLowering.h" |
| 16 | #include "ARMISelLowering.h" |
| 17 | #include "ARMInstrInfo.h" |
Chandler Carruth | d990388 | 2015-01-14 11:23:27 +0000 | [diff] [blame] | 18 | #include "ARMMachineFunctionInfo.h" |
Eric Christopher | 80b24ef | 2014-06-26 19:30:02 +0000 | [diff] [blame] | 19 | #include "ARMSelectionDAGInfo.h" |
| 20 | #include "ARMSubtarget.h" |
Eric Christopher | 661f2d1 | 2014-12-18 02:20:58 +0000 | [diff] [blame] | 21 | #include "ARMTargetMachine.h" |
Eric Christopher | 80b24ef | 2014-06-26 19:30:02 +0000 | [diff] [blame] | 22 | #include "Thumb1FrameLowering.h" |
| 23 | #include "Thumb1InstrInfo.h" |
| 24 | #include "Thumb2InstrInfo.h" |
Chandler Carruth | d990388 | 2015-01-14 11:23:27 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Bill Wendling | 5a92eec | 2013-02-15 22:41:25 +0000 | [diff] [blame] | 26 | #include "llvm/IR/Attributes.h" |
Bill Wendling | 5a92eec | 2013-02-15 22:41:25 +0000 | [diff] [blame] | 27 | #include "llvm/IR/Function.h" |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 28 | #include "llvm/IR/GlobalValue.h" |
Bob Wilson | 4582530 | 2009-06-22 21:01:46 +0000 | [diff] [blame] | 29 | #include "llvm/Support/CommandLine.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 30 | #include "llvm/Target/TargetInstrInfo.h" |
Renato Golin | b4dd6c5 | 2013-03-21 18:47:47 +0000 | [diff] [blame] | 31 | #include "llvm/Target/TargetOptions.h" |
Chris Bieneman | 03695ab | 2014-07-15 17:18:41 +0000 | [diff] [blame] | 32 | #include "llvm/Target/TargetRegisterInfo.h" |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 33 | |
Chandler Carruth | d174b72 | 2014-04-22 02:03:14 +0000 | [diff] [blame] | 34 | using namespace llvm; |
| 35 | |
Chandler Carruth | e96dd89 | 2014-04-21 22:55:11 +0000 | [diff] [blame] | 36 | #define DEBUG_TYPE "arm-subtarget" |
| 37 | |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 38 | #define GET_SUBTARGETINFO_TARGET_DESC |
Evan Cheng | 4d1ca96 | 2011-07-08 01:53:10 +0000 | [diff] [blame] | 39 | #define GET_SUBTARGETINFO_CTOR |
Evan Cheng | c9c090d | 2011-07-01 22:36:09 +0000 | [diff] [blame] | 40 | #include "ARMGenSubtargetInfo.inc" |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 41 | |
Bob Wilson | 4582530 | 2009-06-22 21:01:46 +0000 | [diff] [blame] | 42 | static cl::opt<bool> |
| 43 | ReserveR9("arm-reserve-r9", cl::Hidden, |
| 44 | cl::desc("Reserve R9, making it unavailable as GPR")); |
| 45 | |
Anton Korobeynikov | 2522908 | 2009-11-24 00:44:37 +0000 | [diff] [blame] | 46 | static cl::opt<bool> |
Renato Golin | ca57063 | 2013-08-15 20:54:38 +0000 | [diff] [blame] | 47 | ArmUseMOVT("arm-use-movt", cl::init(true), cl::Hidden); |
Anton Korobeynikov | 2522908 | 2009-11-24 00:44:37 +0000 | [diff] [blame] | 48 | |
Bob Wilson | 3dc9732 | 2010-09-28 04:09:35 +0000 | [diff] [blame] | 49 | static cl::opt<bool> |
Bob Wilson | e8a549c | 2012-09-29 21:43:49 +0000 | [diff] [blame] | 50 | UseFusedMulOps("arm-use-mulops", |
| 51 | cl::init(true), cl::Hidden); |
| 52 | |
Alexey Samsonov | f17f03e | 2014-08-19 18:40:39 +0000 | [diff] [blame] | 53 | namespace { |
JF Bastien | 97b08c40 | 2013-05-17 23:49:01 +0000 | [diff] [blame] | 54 | enum AlignMode { |
| 55 | DefaultAlign, |
| 56 | StrictAlign, |
| 57 | NoStrictAlign |
| 58 | }; |
Alexey Samsonov | f17f03e | 2014-08-19 18:40:39 +0000 | [diff] [blame] | 59 | } |
JF Bastien | 97b08c40 | 2013-05-17 23:49:01 +0000 | [diff] [blame] | 60 | |
| 61 | static cl::opt<AlignMode> |
| 62 | Align(cl::desc("Load/store alignment support"), |
| 63 | cl::Hidden, cl::init(DefaultAlign), |
| 64 | cl::values( |
| 65 | clEnumValN(DefaultAlign, "arm-default-align", |
| 66 | "Generate unaligned accesses only on hardware/OS " |
| 67 | "combinations that are known to support them"), |
| 68 | clEnumValN(StrictAlign, "arm-strict-align", |
| 69 | "Disallow all unaligned memory accesses"), |
| 70 | clEnumValN(NoStrictAlign, "arm-no-strict-align", |
| 71 | "Allow unaligned memory accesses"), |
| 72 | clEnumValEnd)); |
Bob Wilson | 3dc9732 | 2010-09-28 04:09:35 +0000 | [diff] [blame] | 73 | |
Weiming Zhao | 0da5cc0 | 2013-11-13 18:29:49 +0000 | [diff] [blame] | 74 | enum ITMode { |
| 75 | DefaultIT, |
| 76 | RestrictedIT, |
| 77 | NoRestrictedIT |
| 78 | }; |
| 79 | |
| 80 | static cl::opt<ITMode> |
| 81 | IT(cl::desc("IT block support"), cl::Hidden, cl::init(DefaultIT), |
| 82 | cl::ZeroOrMore, |
| 83 | cl::values(clEnumValN(DefaultIT, "arm-default-it", |
| 84 | "Generate IT block based on arch"), |
| 85 | clEnumValN(RestrictedIT, "arm-restrict-it", |
| 86 | "Disallow deprecated IT based on ARMv8"), |
| 87 | clEnumValN(NoRestrictedIT, "arm-no-restrict-it", |
| 88 | "Allow IT blocks based on ARMv7"), |
| 89 | clEnumValEnd)); |
| 90 | |
Eric Christopher | a47f680 | 2014-06-13 00:20:35 +0000 | [diff] [blame] | 91 | /// initializeSubtargetDependencies - Initializes using a CPU and feature string |
| 92 | /// so that we can use initializer lists for subtarget initialization. |
| 93 | ARMSubtarget &ARMSubtarget::initializeSubtargetDependencies(StringRef CPU, |
| 94 | StringRef FS) { |
| 95 | initializeEnvironment(); |
Eric Christopher | b68e253 | 2014-09-03 20:36:31 +0000 | [diff] [blame] | 96 | initSubtargetFeatures(CPU, FS); |
Eric Christopher | a47f680 | 2014-06-13 00:20:35 +0000 | [diff] [blame] | 97 | return *this; |
| 98 | } |
| 99 | |
Eric Christopher | 8b77065 | 2015-01-26 19:03:15 +0000 | [diff] [blame] | 100 | ARMFrameLowering *ARMSubtarget::initializeFrameLowering(StringRef CPU, |
| 101 | StringRef FS) { |
| 102 | ARMSubtarget &STI = initializeSubtargetDependencies(CPU, FS); |
| 103 | if (STI.isThumb1Only()) |
| 104 | return (ARMFrameLowering *)new Thumb1FrameLowering(STI); |
| 105 | |
| 106 | return new ARMFrameLowering(STI); |
| 107 | } |
| 108 | |
Evan Cheng | fe6e405 | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 109 | ARMSubtarget::ARMSubtarget(const std::string &TT, const std::string &CPU, |
Eric Christopher | 8b77065 | 2015-01-26 19:03:15 +0000 | [diff] [blame] | 110 | const std::string &FS, |
| 111 | const ARMBaseTargetMachine &TM, bool IsLittle) |
Eric Christopher | a47f680 | 2014-06-13 00:20:35 +0000 | [diff] [blame] | 112 | : ARMGenSubtargetInfo(TT, CPU, FS), ARMProcFamily(Others), |
| 113 | ARMProcClass(None), stackAlignment(4), CPUString(CPU), IsLittle(IsLittle), |
Eric Christopher | 661f2d1 | 2014-12-18 02:20:58 +0000 | [diff] [blame] | 114 | TargetTriple(TT), Options(TM.Options), TM(TM), |
Eric Christopher | 8b77065 | 2015-01-26 19:03:15 +0000 | [diff] [blame] | 115 | TSInfo(*TM.getDataLayout()), |
| 116 | FrameLowering(initializeFrameLowering(CPU, FS)), |
| 117 | // At this point initializeSubtargetDependencies has been called so |
| 118 | // we can query directly. |
Eric Christopher | 80b24ef | 2014-06-26 19:30:02 +0000 | [diff] [blame] | 119 | InstrInfo(isThumb1Only() |
| 120 | ? (ARMBaseInstrInfo *)new Thumb1InstrInfo(*this) |
| 121 | : !isThumb() |
| 122 | ? (ARMBaseInstrInfo *)new ARMInstrInfo(*this) |
| 123 | : (ARMBaseInstrInfo *)new Thumb2InstrInfo(*this)), |
Eric Christopher | 1889fdc | 2015-01-29 00:19:39 +0000 | [diff] [blame] | 124 | TLInfo(TM, *this) {} |
Bill Wendling | 5a92eec | 2013-02-15 22:41:25 +0000 | [diff] [blame] | 125 | |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 126 | void ARMSubtarget::initializeEnvironment() { |
| 127 | HasV4TOps = false; |
| 128 | HasV5TOps = false; |
| 129 | HasV5TEOps = false; |
| 130 | HasV6Ops = false; |
Amara Emerson | 5035ee0 | 2013-10-07 16:55:23 +0000 | [diff] [blame] | 131 | HasV6MOps = false; |
Renato Golin | 1235060 | 2015-03-17 11:55:28 +0000 | [diff] [blame] | 132 | HasV6KOps = false; |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 133 | HasV6T2Ops = false; |
| 134 | HasV7Ops = false; |
Joey Gouly | b3f550e | 2013-06-26 16:58:26 +0000 | [diff] [blame] | 135 | HasV8Ops = false; |
Vladimir Sukharev | 2afdb32 | 2015-04-01 14:54:56 +0000 | [diff] [blame] | 136 | HasV8_1aOps = false; |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 137 | HasVFPv2 = false; |
| 138 | HasVFPv3 = false; |
| 139 | HasVFPv4 = false; |
Joey Gouly | ccd0489 | 2013-09-13 13:46:57 +0000 | [diff] [blame] | 140 | HasFPARMv8 = false; |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 141 | HasNEON = false; |
| 142 | UseNEONForSinglePrecisionFP = false; |
| 143 | UseMulOps = UseFusedMulOps; |
| 144 | SlowFPVMLx = false; |
| 145 | HasVMLxForwarding = false; |
| 146 | SlowFPBrcc = false; |
| 147 | InThumbMode = false; |
Eric Christopher | 824f42f | 2015-05-12 01:26:05 +0000 | [diff] [blame] | 148 | UseSoftFloat = false; |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 149 | HasThumb2 = false; |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 150 | NoARM = false; |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 151 | IsR9Reserved = ReserveR9; |
| 152 | UseMovt = false; |
| 153 | SupportsTailCall = false; |
| 154 | HasFP16 = false; |
| 155 | HasD16 = false; |
| 156 | HasHardwareDivide = false; |
| 157 | HasHardwareDivideInARM = false; |
| 158 | HasT2ExtractPack = false; |
| 159 | HasDataBarrier = false; |
| 160 | Pref32BitThumb = false; |
| 161 | AvoidCPSRPartialUpdate = false; |
| 162 | AvoidMOVsShifterOperand = false; |
| 163 | HasRAS = false; |
| 164 | HasMPExtension = false; |
Bradley Smith | 2521975 | 2013-11-01 13:27:35 +0000 | [diff] [blame] | 165 | HasVirtualization = false; |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 166 | FPOnlySP = false; |
Tim Northover | cedd481 | 2013-05-23 19:11:14 +0000 | [diff] [blame] | 167 | HasPerfMon = false; |
Tim Northover | c604765 | 2013-04-10 12:08:35 +0000 | [diff] [blame] | 168 | HasTrustZone = false; |
Amara Emerson | 3308909 | 2013-09-19 11:59:01 +0000 | [diff] [blame] | 169 | HasCrypto = false; |
Amara Emerson | f9a67fc | 2013-10-29 16:54:52 +0000 | [diff] [blame] | 170 | HasCRC = false; |
Tim Northover | 1351030 | 2014-04-01 13:22:02 +0000 | [diff] [blame] | 171 | HasZeroCycleZeroing = false; |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 172 | AllowsUnalignedMem = false; |
| 173 | Thumb2DSP = false; |
| 174 | UseNaClTrap = false; |
Renato Golin | b4dd6c5 | 2013-03-21 18:47:47 +0000 | [diff] [blame] | 175 | UnsafeFPMath = false; |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 176 | } |
| 177 | |
Eric Christopher | b68e253 | 2014-09-03 20:36:31 +0000 | [diff] [blame] | 178 | void ARMSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) { |
Tilmann Scheller | 63872ce | 2013-09-02 17:09:01 +0000 | [diff] [blame] | 179 | if (CPUString.empty()) { |
Tim Northover | e2c3371 | 2014-12-11 18:49:37 +0000 | [diff] [blame] | 180 | if (isTargetDarwin() && TargetTriple.getArchName().endswith("v7s")) |
Tilmann Scheller | 63872ce | 2013-09-02 17:09:01 +0000 | [diff] [blame] | 181 | // Default to the Swift CPU when targeting armv7s/thumbv7s. |
| 182 | CPUString = "swift"; |
| 183 | else |
| 184 | CPUString = "generic"; |
| 185 | } |
Evan Cheng | ec415ef | 2009-03-08 04:02:49 +0000 | [diff] [blame] | 186 | |
Evan Cheng | 0b33a32 | 2011-06-30 02:12:44 +0000 | [diff] [blame] | 187 | // Insert the architecture feature derived from the target triple into the |
| 188 | // feature string. This is important for setting features that are implied |
| 189 | // based on the architecture version. |
Eric Christopher | 1971c35 | 2014-12-18 02:08:45 +0000 | [diff] [blame] | 190 | std::string ArchFS = |
| 191 | ARM_MC::ParseARMTriple(TargetTriple.getTriple(), CPUString); |
Evan Cheng | 2bd6536 | 2011-07-07 00:08:19 +0000 | [diff] [blame] | 192 | if (!FS.empty()) { |
| 193 | if (!ArchFS.empty()) |
Yaron Keren | 075759a | 2015-03-30 15:42:36 +0000 | [diff] [blame] | 194 | ArchFS = (Twine(ArchFS) + "," + FS).str(); |
Evan Cheng | 2bd6536 | 2011-07-07 00:08:19 +0000 | [diff] [blame] | 195 | else |
| 196 | ArchFS = FS; |
| 197 | } |
Evan Cheng | 1a72add6 | 2011-07-07 07:07:08 +0000 | [diff] [blame] | 198 | ParseSubtargetFeatures(CPUString, ArchFS); |
Evan Cheng | 2bd6536 | 2011-07-07 00:08:19 +0000 | [diff] [blame] | 199 | |
Joerg Sonnenberger | 002a147 | 2013-12-13 11:16:00 +0000 | [diff] [blame] | 200 | // FIXME: This used enable V6T2 support implicitly for Thumb2 mode. |
| 201 | // Assert this for now to make the change obvious. |
| 202 | assert(hasV6T2Ops() || !hasThumb2()); |
Bob Wilson | d0046ca | 2010-11-09 22:50:47 +0000 | [diff] [blame] | 203 | |
Andrew Trick | 352abc1 | 2012-08-08 02:44:16 +0000 | [diff] [blame] | 204 | // Keep a pointer to static instruction cost data for the specified CPU. |
| 205 | SchedModel = getSchedModelForCPU(CPUString); |
| 206 | |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 207 | // Initialize scheduling itinerary for the specified CPU. |
| 208 | InstrItins = getInstrItineraryForCPU(CPUString); |
| 209 | |
Saleem Abdulrasool | cd13082 | 2014-04-02 20:32:05 +0000 | [diff] [blame] | 210 | // FIXME: this is invalid for WindowsCE |
Eric Christopher | 1971c35 | 2014-12-18 02:08:45 +0000 | [diff] [blame] | 211 | if (isTargetWindows()) |
Saleem Abdulrasool | cd13082 | 2014-04-02 20:32:05 +0000 | [diff] [blame] | 212 | NoARM = true; |
Saleem Abdulrasool | cd13082 | 2014-04-02 20:32:05 +0000 | [diff] [blame] | 213 | |
Lauro Ramos Venancio | 048e16ff | 2007-02-13 19:52:28 +0000 | [diff] [blame] | 214 | if (isAAPCS_ABI()) |
| 215 | stackAlignment = 8; |
Mark Seaborn | be266aa | 2014-02-16 18:59:48 +0000 | [diff] [blame] | 216 | if (isTargetNaCl()) |
| 217 | stackAlignment = 16; |
Lauro Ramos Venancio | 048e16ff | 2007-02-13 19:52:28 +0000 | [diff] [blame] | 218 | |
Renato Golin | ca57063 | 2013-08-15 20:54:38 +0000 | [diff] [blame] | 219 | UseMovt = hasV6T2Ops() && ArmUseMOVT; |
| 220 | |
Tim Northover | d6a729b | 2014-01-06 14:28:05 +0000 | [diff] [blame] | 221 | if (isTargetMachO()) { |
Richard Trieu | 1fbe1a8 | 2014-09-17 01:47:52 +0000 | [diff] [blame] | 222 | IsR9Reserved = ReserveR9 || !HasV6Ops; |
Tim Northover | d6a729b | 2014-01-06 14:28:05 +0000 | [diff] [blame] | 223 | SupportsTailCall = !isTargetIOS() || !getTargetTriple().isOSVersionLT(5, 0); |
Saleem Abdulrasool | ec1ec1b | 2014-03-11 15:09:44 +0000 | [diff] [blame] | 224 | } else { |
Tim Northover | d6a729b | 2014-01-06 14:28:05 +0000 | [diff] [blame] | 225 | IsR9Reserved = ReserveR9; |
Saleem Abdulrasool | ec1ec1b | 2014-03-11 15:09:44 +0000 | [diff] [blame] | 226 | SupportsTailCall = !isThumb1Only(); |
| 227 | } |
David Goodwin | 9a051a5 | 2009-10-01 21:46:35 +0000 | [diff] [blame] | 228 | |
Renato Golin | 51dc3f4 | 2014-10-08 12:26:13 +0000 | [diff] [blame] | 229 | if (Align == DefaultAlign) { |
| 230 | // Assume pre-ARMv6 doesn't support unaligned accesses. |
| 231 | // |
| 232 | // ARMv6 may or may not support unaligned accesses depending on the |
| 233 | // SCTLR.U bit, which is architecture-specific. We assume ARMv6 |
| 234 | // Darwin and NetBSD targets support unaligned accesses, and others don't. |
| 235 | // |
| 236 | // ARMv7 always has SCTLR.U set to 1, but it has a new SCTLR.A bit |
| 237 | // which raises an alignment fault on unaligned accesses. Linux |
| 238 | // defaults this bit to 0 and handles it as a system-wide (not |
| 239 | // per-process) setting. It is therefore safe to assume that ARMv7+ |
| 240 | // Linux targets support unaligned accesses. The same goes for NaCl. |
| 241 | // |
| 242 | // The above behavior is consistent with GCC. |
| 243 | AllowsUnalignedMem = |
| 244 | (hasV7Ops() && (isTargetLinux() || isTargetNaCl() || |
| 245 | isTargetNetBSD())) || |
| 246 | (hasV6Ops() && (isTargetMachO() || isTargetNetBSD())); |
Renato Golin | 51dc3f4 | 2014-10-08 12:26:13 +0000 | [diff] [blame] | 247 | } else { |
| 248 | AllowsUnalignedMem = !(Align == StrictAlign); |
JF Bastien | 97b08c40 | 2013-05-17 23:49:01 +0000 | [diff] [blame] | 249 | } |
Renato Golin | b4dd6c5 | 2013-03-21 18:47:47 +0000 | [diff] [blame] | 250 | |
Renato Golin | bab5ace | 2014-10-08 12:26:16 +0000 | [diff] [blame] | 251 | // No v6M core supports unaligned memory access (v6M ARM ARM A3.2) |
| 252 | if (isV6M()) |
| 253 | AllowsUnalignedMem = false; |
| 254 | |
Weiming Zhao | 0da5cc0 | 2013-11-13 18:29:49 +0000 | [diff] [blame] | 255 | switch (IT) { |
| 256 | case DefaultIT: |
Alexander Kornienko | fb37cfa | 2015-04-14 15:32:58 +0000 | [diff] [blame] | 257 | RestrictIT = hasV8Ops(); |
Weiming Zhao | 0da5cc0 | 2013-11-13 18:29:49 +0000 | [diff] [blame] | 258 | break; |
| 259 | case RestrictedIT: |
| 260 | RestrictIT = true; |
| 261 | break; |
| 262 | case NoRestrictedIT: |
| 263 | RestrictIT = false; |
| 264 | break; |
| 265 | } |
| 266 | |
Renato Golin | b4dd6c5 | 2013-03-21 18:47:47 +0000 | [diff] [blame] | 267 | // NEON f32 ops are non-IEEE 754 compliant. Darwin is ok with it by default. |
Michael Kuperstein | db0712f | 2015-05-26 10:47:10 +0000 | [diff] [blame^] | 268 | const FeatureBitset &Bits = getFeatureBits(); |
| 269 | if ((Bits[ARM::ProcA5] || Bits[ARM::ProcA8]) && // Where this matters |
Renato Golin | b4dd6c5 | 2013-03-21 18:47:47 +0000 | [diff] [blame] | 270 | (Options.UnsafeFPMath || isTargetDarwin())) |
| 271 | UseNEONForSinglePrecisionFP = true; |
Evan Cheng | 10043e2 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 272 | } |
Evan Cheng | 43b9ca6 | 2009-08-28 23:18:09 +0000 | [diff] [blame] | 273 | |
Eric Christopher | 661f2d1 | 2014-12-18 02:20:58 +0000 | [diff] [blame] | 274 | bool ARMSubtarget::isAPCS_ABI() const { |
| 275 | assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN); |
| 276 | return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_APCS; |
| 277 | } |
| 278 | bool ARMSubtarget::isAAPCS_ABI() const { |
| 279 | assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN); |
| 280 | return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS; |
| 281 | } |
| 282 | |
Evan Cheng | 43b9ca6 | 2009-08-28 23:18:09 +0000 | [diff] [blame] | 283 | /// GVIsIndirectSymbol - true if the GV will be accessed via an indirect symbol. |
Evan Cheng | 1b38952 | 2009-09-03 07:04:02 +0000 | [diff] [blame] | 284 | bool |
Dan Gohman | bcaf681 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 285 | ARMSubtarget::GVIsIndirectSymbol(const GlobalValue *GV, |
| 286 | Reloc::Model RelocM) const { |
Evan Cheng | 1b38952 | 2009-09-03 07:04:02 +0000 | [diff] [blame] | 287 | if (RelocM == Reloc::Static) |
Evan Cheng | 43b9ca6 | 2009-08-28 23:18:09 +0000 | [diff] [blame] | 288 | return false; |
Evan Cheng | 1b38952 | 2009-09-03 07:04:02 +0000 | [diff] [blame] | 289 | |
Rafael Espindola | 246c4fb | 2014-11-01 16:46:18 +0000 | [diff] [blame] | 290 | bool isDecl = GV->isDeclarationForLinker(); |
Evan Cheng | 1b38952 | 2009-09-03 07:04:02 +0000 | [diff] [blame] | 291 | |
Tim Northover | d6a729b | 2014-01-06 14:28:05 +0000 | [diff] [blame] | 292 | if (!isTargetMachO()) { |
Evan Cheng | 1b38952 | 2009-09-03 07:04:02 +0000 | [diff] [blame] | 293 | // Extra load is needed for all externally visible. |
| 294 | if (GV->hasLocalLinkage() || GV->hasHiddenVisibility()) |
| 295 | return false; |
| 296 | return true; |
| 297 | } else { |
| 298 | if (RelocM == Reloc::PIC_) { |
| 299 | // If this is a strong reference to a definition, it is definitely not |
| 300 | // through a stub. |
| 301 | if (!isDecl && !GV->isWeakForLinker()) |
| 302 | return false; |
| 303 | |
| 304 | // Unless we have a symbol with hidden visibility, we have to go through a |
| 305 | // normal $non_lazy_ptr stub because this symbol might be resolved late. |
| 306 | if (!GV->hasHiddenVisibility()) // Non-hidden $non_lazy_ptr reference. |
| 307 | return true; |
| 308 | |
| 309 | // If symbol visibility is hidden, we have a stub for common symbol |
| 310 | // references and external declarations. |
| 311 | if (isDecl || GV->hasCommonLinkage()) |
| 312 | // Hidden $non_lazy_ptr reference. |
| 313 | return true; |
| 314 | |
| 315 | return false; |
| 316 | } else { |
| 317 | // If this is a strong reference to a definition, it is definitely not |
| 318 | // through a stub. |
| 319 | if (!isDecl && !GV->isWeakForLinker()) |
| 320 | return false; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 321 | |
Evan Cheng | 1b38952 | 2009-09-03 07:04:02 +0000 | [diff] [blame] | 322 | // Unless we have a symbol with hidden visibility, we have to go through a |
| 323 | // normal $non_lazy_ptr stub because this symbol might be resolved late. |
| 324 | if (!GV->hasHiddenVisibility()) // Non-hidden $non_lazy_ptr reference. |
| 325 | return true; |
| 326 | } |
| 327 | } |
| 328 | |
| 329 | return false; |
Evan Cheng | 43b9ca6 | 2009-08-28 23:18:09 +0000 | [diff] [blame] | 330 | } |
David Goodwin | 0d412c2 | 2009-11-10 00:48:55 +0000 | [diff] [blame] | 331 | |
Owen Anderson | a3181e2 | 2010-09-28 21:57:50 +0000 | [diff] [blame] | 332 | unsigned ARMSubtarget::getMispredictionPenalty() const { |
Pete Cooper | 1175945 | 2014-09-02 17:43:54 +0000 | [diff] [blame] | 333 | return SchedModel.MispredictPenalty; |
Owen Anderson | a3181e2 | 2010-09-28 21:57:50 +0000 | [diff] [blame] | 334 | } |
| 335 | |
Bob Wilson | e7dde0c | 2013-11-03 06:14:38 +0000 | [diff] [blame] | 336 | bool ARMSubtarget::hasSinCos() const { |
Bob Wilson | 9868d71 | 2014-10-09 05:43:30 +0000 | [diff] [blame] | 337 | return getTargetTriple().isiOS() && !getTargetTriple().isOSVersionLT(7, 0); |
Bob Wilson | e7dde0c | 2013-11-03 06:14:38 +0000 | [diff] [blame] | 338 | } |
| 339 | |
Sanjay Patel | a2f658d | 2014-07-15 22:39:58 +0000 | [diff] [blame] | 340 | // This overrides the PostRAScheduler bit in the SchedModel for any CPU. |
Andrew Trick | 8d2ee37 | 2014-06-04 07:06:27 +0000 | [diff] [blame] | 341 | bool ARMSubtarget::enablePostMachineScheduler() const { |
Sanjay Patel | a2f658d | 2014-07-15 22:39:58 +0000 | [diff] [blame] | 342 | return (!isThumb() || hasThumb2()); |
Andrew Trick | 8d2ee37 | 2014-06-04 07:06:27 +0000 | [diff] [blame] | 343 | } |
| 344 | |
Robin Morisset | 59c23cd | 2014-08-21 21:50:01 +0000 | [diff] [blame] | 345 | bool ARMSubtarget::enableAtomicExpand() const { |
Eric Christopher | c40e5ed | 2014-06-19 21:03:04 +0000 | [diff] [blame] | 346 | return hasAnyDataBarrier() && !isThumb1Only(); |
| 347 | } |
| 348 | |
Eric Christopher | c1058df | 2014-07-04 01:55:26 +0000 | [diff] [blame] | 349 | bool ARMSubtarget::useMovt(const MachineFunction &MF) const { |
| 350 | // NOTE Windows on ARM needs to use mov.w/mov.t pairs to materialise 32-bit |
| 351 | // immediates as it is inherently position independent, and may be out of |
| 352 | // range otherwise. |
| 353 | return UseMovt && (isTargetWindows() || |
Duncan P. N. Exon Smith | 2cff9e1 | 2015-02-14 02:24:44 +0000 | [diff] [blame] | 354 | !MF.getFunction()->hasFnAttribute(Attribute::MinSize)); |
Eric Christopher | c1058df | 2014-07-04 01:55:26 +0000 | [diff] [blame] | 355 | } |
Akira Hatanaka | ddf76aa | 2015-05-23 01:14:08 +0000 | [diff] [blame] | 356 | |
| 357 | bool ARMSubtarget::useFastISel() const { |
| 358 | // Thumb2 support on iOS; ARM support on iOS, Linux and NaCl. |
| 359 | return TM.Options.EnableFastISel && |
| 360 | ((isTargetMachO() && !isThumb1Only()) || |
| 361 | (isTargetLinux() && !isThumb()) || (isTargetNaCl() && !isThumb())); |
| 362 | } |