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> |
Bob Wilson | e8a549c | 2012-09-29 21:43:49 +0000 | [diff] [blame] | 43 | UseFusedMulOps("arm-use-mulops", |
| 44 | cl::init(true), cl::Hidden); |
| 45 | |
Weiming Zhao | 0da5cc0 | 2013-11-13 18:29:49 +0000 | [diff] [blame] | 46 | enum ITMode { |
| 47 | DefaultIT, |
| 48 | RestrictedIT, |
| 49 | NoRestrictedIT |
| 50 | }; |
| 51 | |
| 52 | static cl::opt<ITMode> |
| 53 | IT(cl::desc("IT block support"), cl::Hidden, cl::init(DefaultIT), |
| 54 | cl::ZeroOrMore, |
| 55 | cl::values(clEnumValN(DefaultIT, "arm-default-it", |
| 56 | "Generate IT block based on arch"), |
| 57 | clEnumValN(RestrictedIT, "arm-restrict-it", |
| 58 | "Disallow deprecated IT based on ARMv8"), |
| 59 | clEnumValN(NoRestrictedIT, "arm-no-restrict-it", |
| 60 | "Allow IT blocks based on ARMv7"), |
| 61 | clEnumValEnd)); |
| 62 | |
Eric Christopher | a47f680 | 2014-06-13 00:20:35 +0000 | [diff] [blame] | 63 | /// initializeSubtargetDependencies - Initializes using a CPU and feature string |
| 64 | /// so that we can use initializer lists for subtarget initialization. |
| 65 | ARMSubtarget &ARMSubtarget::initializeSubtargetDependencies(StringRef CPU, |
| 66 | StringRef FS) { |
| 67 | initializeEnvironment(); |
Eric Christopher | b68e253 | 2014-09-03 20:36:31 +0000 | [diff] [blame] | 68 | initSubtargetFeatures(CPU, FS); |
Eric Christopher | a47f680 | 2014-06-13 00:20:35 +0000 | [diff] [blame] | 69 | return *this; |
| 70 | } |
| 71 | |
Eric Christopher | 8b77065 | 2015-01-26 19:03:15 +0000 | [diff] [blame] | 72 | ARMFrameLowering *ARMSubtarget::initializeFrameLowering(StringRef CPU, |
| 73 | StringRef FS) { |
| 74 | ARMSubtarget &STI = initializeSubtargetDependencies(CPU, FS); |
| 75 | if (STI.isThumb1Only()) |
| 76 | return (ARMFrameLowering *)new Thumb1FrameLowering(STI); |
| 77 | |
| 78 | return new ARMFrameLowering(STI); |
| 79 | } |
| 80 | |
Daniel Sanders | a73f1fd | 2015-06-10 12:11:26 +0000 | [diff] [blame] | 81 | ARMSubtarget::ARMSubtarget(const Triple &TT, const std::string &CPU, |
Eric Christopher | 8b77065 | 2015-01-26 19:03:15 +0000 | [diff] [blame] | 82 | const std::string &FS, |
| 83 | const ARMBaseTargetMachine &TM, bool IsLittle) |
Daniel Sanders | 50f1723 | 2015-09-15 16:17:27 +0000 | [diff] [blame] | 84 | : ARMGenSubtargetInfo(TT, CPU, FS), ARMProcFamily(Others), |
Eric Christopher | a47f680 | 2014-06-13 00:20:35 +0000 | [diff] [blame] | 85 | ARMProcClass(None), stackAlignment(4), CPUString(CPU), IsLittle(IsLittle), |
Eric Christopher | 661f2d1 | 2014-12-18 02:20:58 +0000 | [diff] [blame] | 86 | TargetTriple(TT), Options(TM.Options), TM(TM), |
Eric Christopher | 8b77065 | 2015-01-26 19:03:15 +0000 | [diff] [blame] | 87 | FrameLowering(initializeFrameLowering(CPU, FS)), |
| 88 | // At this point initializeSubtargetDependencies has been called so |
| 89 | // we can query directly. |
Eric Christopher | 80b24ef | 2014-06-26 19:30:02 +0000 | [diff] [blame] | 90 | InstrInfo(isThumb1Only() |
| 91 | ? (ARMBaseInstrInfo *)new Thumb1InstrInfo(*this) |
| 92 | : !isThumb() |
| 93 | ? (ARMBaseInstrInfo *)new ARMInstrInfo(*this) |
| 94 | : (ARMBaseInstrInfo *)new Thumb2InstrInfo(*this)), |
Eric Christopher | 1889fdc | 2015-01-29 00:19:39 +0000 | [diff] [blame] | 95 | TLInfo(TM, *this) {} |
Bill Wendling | 5a92eec | 2013-02-15 22:41:25 +0000 | [diff] [blame] | 96 | |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 97 | void ARMSubtarget::initializeEnvironment() { |
| 98 | HasV4TOps = false; |
| 99 | HasV5TOps = false; |
| 100 | HasV5TEOps = false; |
| 101 | HasV6Ops = false; |
Amara Emerson | 5035ee0 | 2013-10-07 16:55:23 +0000 | [diff] [blame] | 102 | HasV6MOps = false; |
Renato Golin | 1235060 | 2015-03-17 11:55:28 +0000 | [diff] [blame] | 103 | HasV6KOps = false; |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 104 | HasV6T2Ops = false; |
| 105 | HasV7Ops = false; |
Joey Gouly | b3f550e | 2013-06-26 16:58:26 +0000 | [diff] [blame] | 106 | HasV8Ops = false; |
Vladimir Sukharev | 2afdb32 | 2015-04-01 14:54:56 +0000 | [diff] [blame] | 107 | HasV8_1aOps = false; |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 108 | HasVFPv2 = false; |
| 109 | HasVFPv3 = false; |
| 110 | HasVFPv4 = false; |
Joey Gouly | ccd0489 | 2013-09-13 13:46:57 +0000 | [diff] [blame] | 111 | HasFPARMv8 = false; |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 112 | HasNEON = false; |
| 113 | UseNEONForSinglePrecisionFP = false; |
| 114 | UseMulOps = UseFusedMulOps; |
| 115 | SlowFPVMLx = false; |
| 116 | HasVMLxForwarding = false; |
| 117 | SlowFPBrcc = false; |
| 118 | InThumbMode = false; |
Eric Christopher | 824f42f | 2015-05-12 01:26:05 +0000 | [diff] [blame] | 119 | UseSoftFloat = false; |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 120 | HasThumb2 = false; |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 121 | NoARM = false; |
Akira Hatanaka | 2858152 | 2015-07-21 01:42:02 +0000 | [diff] [blame] | 122 | ReserveR9 = false; |
Akira Hatanaka | 024d91a | 2015-07-16 00:58:23 +0000 | [diff] [blame] | 123 | NoMovt = false; |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 124 | SupportsTailCall = false; |
| 125 | HasFP16 = false; |
| 126 | HasD16 = false; |
| 127 | HasHardwareDivide = false; |
| 128 | HasHardwareDivideInARM = false; |
| 129 | HasT2ExtractPack = false; |
| 130 | HasDataBarrier = false; |
| 131 | Pref32BitThumb = false; |
| 132 | AvoidCPSRPartialUpdate = false; |
| 133 | AvoidMOVsShifterOperand = false; |
| 134 | HasRAS = false; |
| 135 | HasMPExtension = false; |
Bradley Smith | 2521975 | 2013-11-01 13:27:35 +0000 | [diff] [blame] | 136 | HasVirtualization = false; |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 137 | FPOnlySP = false; |
Tim Northover | cedd481 | 2013-05-23 19:11:14 +0000 | [diff] [blame] | 138 | HasPerfMon = false; |
Tim Northover | c604765 | 2013-04-10 12:08:35 +0000 | [diff] [blame] | 139 | HasTrustZone = false; |
Amara Emerson | 3308909 | 2013-09-19 11:59:01 +0000 | [diff] [blame] | 140 | HasCrypto = false; |
Amara Emerson | f9a67fc | 2013-10-29 16:54:52 +0000 | [diff] [blame] | 141 | HasCRC = false; |
Tim Northover | 1351030 | 2014-04-01 13:22:02 +0000 | [diff] [blame] | 142 | HasZeroCycleZeroing = false; |
Akira Hatanaka | 2670f4a | 2015-07-28 22:44:28 +0000 | [diff] [blame] | 143 | StrictAlign = false; |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 144 | Thumb2DSP = false; |
| 145 | UseNaClTrap = false; |
Akira Hatanaka | 1bc8af7 | 2015-07-07 06:54:42 +0000 | [diff] [blame] | 146 | GenLongCalls = false; |
Renato Golin | b4dd6c5 | 2013-03-21 18:47:47 +0000 | [diff] [blame] | 147 | UnsafeFPMath = false; |
Bill Wendling | 61375d8 | 2013-02-16 01:36:26 +0000 | [diff] [blame] | 148 | } |
| 149 | |
Eric Christopher | b68e253 | 2014-09-03 20:36:31 +0000 | [diff] [blame] | 150 | void ARMSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) { |
Tilmann Scheller | 63872ce | 2013-09-02 17:09:01 +0000 | [diff] [blame] | 151 | if (CPUString.empty()) { |
Tim Northover | e2c3371 | 2014-12-11 18:49:37 +0000 | [diff] [blame] | 152 | if (isTargetDarwin() && TargetTriple.getArchName().endswith("v7s")) |
Tilmann Scheller | 63872ce | 2013-09-02 17:09:01 +0000 | [diff] [blame] | 153 | // Default to the Swift CPU when targeting armv7s/thumbv7s. |
| 154 | CPUString = "swift"; |
| 155 | else |
| 156 | CPUString = "generic"; |
| 157 | } |
Evan Cheng | ec415ef | 2009-03-08 04:02:49 +0000 | [diff] [blame] | 158 | |
Evan Cheng | 0b33a32 | 2011-06-30 02:12:44 +0000 | [diff] [blame] | 159 | // Insert the architecture feature derived from the target triple into the |
| 160 | // feature string. This is important for setting features that are implied |
| 161 | // based on the architecture version. |
Daniel Sanders | 50f1723 | 2015-09-15 16:17:27 +0000 | [diff] [blame] | 162 | std::string ArchFS = ARM_MC::ParseARMTriple(TargetTriple, CPUString); |
Evan Cheng | 2bd6536 | 2011-07-07 00:08:19 +0000 | [diff] [blame] | 163 | if (!FS.empty()) { |
| 164 | if (!ArchFS.empty()) |
Yaron Keren | 075759a | 2015-03-30 15:42:36 +0000 | [diff] [blame] | 165 | ArchFS = (Twine(ArchFS) + "," + FS).str(); |
Evan Cheng | 2bd6536 | 2011-07-07 00:08:19 +0000 | [diff] [blame] | 166 | else |
| 167 | ArchFS = FS; |
| 168 | } |
Evan Cheng | 1a72add6 | 2011-07-07 07:07:08 +0000 | [diff] [blame] | 169 | ParseSubtargetFeatures(CPUString, ArchFS); |
Evan Cheng | 2bd6536 | 2011-07-07 00:08:19 +0000 | [diff] [blame] | 170 | |
Joerg Sonnenberger | 002a147 | 2013-12-13 11:16:00 +0000 | [diff] [blame] | 171 | // FIXME: This used enable V6T2 support implicitly for Thumb2 mode. |
| 172 | // Assert this for now to make the change obvious. |
| 173 | assert(hasV6T2Ops() || !hasThumb2()); |
Bob Wilson | d0046ca | 2010-11-09 22:50:47 +0000 | [diff] [blame] | 174 | |
Andrew Trick | 352abc1 | 2012-08-08 02:44:16 +0000 | [diff] [blame] | 175 | // Keep a pointer to static instruction cost data for the specified CPU. |
| 176 | SchedModel = getSchedModelForCPU(CPUString); |
| 177 | |
Evan Cheng | 54b68e3 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 178 | // Initialize scheduling itinerary for the specified CPU. |
| 179 | InstrItins = getInstrItineraryForCPU(CPUString); |
| 180 | |
Saleem Abdulrasool | cd13082 | 2014-04-02 20:32:05 +0000 | [diff] [blame] | 181 | // FIXME: this is invalid for WindowsCE |
Eric Christopher | 1971c35 | 2014-12-18 02:08:45 +0000 | [diff] [blame] | 182 | if (isTargetWindows()) |
Saleem Abdulrasool | cd13082 | 2014-04-02 20:32:05 +0000 | [diff] [blame] | 183 | NoARM = true; |
Saleem Abdulrasool | cd13082 | 2014-04-02 20:32:05 +0000 | [diff] [blame] | 184 | |
Lauro Ramos Venancio | 048e16ff | 2007-02-13 19:52:28 +0000 | [diff] [blame] | 185 | if (isAAPCS_ABI()) |
| 186 | stackAlignment = 8; |
Mark Seaborn | be266aa | 2014-02-16 18:59:48 +0000 | [diff] [blame] | 187 | if (isTargetNaCl()) |
| 188 | stackAlignment = 16; |
Lauro Ramos Venancio | 048e16ff | 2007-02-13 19:52:28 +0000 | [diff] [blame] | 189 | |
Akira Hatanaka | 2858152 | 2015-07-21 01:42:02 +0000 | [diff] [blame] | 190 | if (isTargetMachO()) |
Tim Northover | d6a729b | 2014-01-06 14:28:05 +0000 | [diff] [blame] | 191 | SupportsTailCall = !isTargetIOS() || !getTargetTriple().isOSVersionLT(5, 0); |
Akira Hatanaka | 2858152 | 2015-07-21 01:42:02 +0000 | [diff] [blame] | 192 | else |
Saleem Abdulrasool | ec1ec1b | 2014-03-11 15:09:44 +0000 | [diff] [blame] | 193 | SupportsTailCall = !isThumb1Only(); |
David Goodwin | 9a051a5 | 2009-10-01 21:46:35 +0000 | [diff] [blame] | 194 | |
Weiming Zhao | 0da5cc0 | 2013-11-13 18:29:49 +0000 | [diff] [blame] | 195 | switch (IT) { |
| 196 | case DefaultIT: |
Alexander Kornienko | fb37cfa | 2015-04-14 15:32:58 +0000 | [diff] [blame] | 197 | RestrictIT = hasV8Ops(); |
Weiming Zhao | 0da5cc0 | 2013-11-13 18:29:49 +0000 | [diff] [blame] | 198 | break; |
| 199 | case RestrictedIT: |
| 200 | RestrictIT = true; |
| 201 | break; |
| 202 | case NoRestrictedIT: |
| 203 | RestrictIT = false; |
| 204 | break; |
| 205 | } |
| 206 | |
Renato Golin | b4dd6c5 | 2013-03-21 18:47:47 +0000 | [diff] [blame] | 207 | // 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] | 208 | const FeatureBitset &Bits = getFeatureBits(); |
| 209 | if ((Bits[ARM::ProcA5] || Bits[ARM::ProcA8]) && // Where this matters |
Renato Golin | b4dd6c5 | 2013-03-21 18:47:47 +0000 | [diff] [blame] | 210 | (Options.UnsafeFPMath || isTargetDarwin())) |
| 211 | UseNEONForSinglePrecisionFP = true; |
Evan Cheng | 10043e2 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 212 | } |
Evan Cheng | 43b9ca6 | 2009-08-28 23:18:09 +0000 | [diff] [blame] | 213 | |
Eric Christopher | 661f2d1 | 2014-12-18 02:20:58 +0000 | [diff] [blame] | 214 | bool ARMSubtarget::isAPCS_ABI() const { |
| 215 | assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN); |
| 216 | return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_APCS; |
| 217 | } |
| 218 | bool ARMSubtarget::isAAPCS_ABI() const { |
| 219 | assert(TM.TargetABI != ARMBaseTargetMachine::ARM_ABI_UNKNOWN); |
| 220 | return TM.TargetABI == ARMBaseTargetMachine::ARM_ABI_AAPCS; |
| 221 | } |
| 222 | |
Evan Cheng | 43b9ca6 | 2009-08-28 23:18:09 +0000 | [diff] [blame] | 223 | /// GVIsIndirectSymbol - true if the GV will be accessed via an indirect symbol. |
Evan Cheng | 1b38952 | 2009-09-03 07:04:02 +0000 | [diff] [blame] | 224 | bool |
Dan Gohman | bcaf681 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 225 | ARMSubtarget::GVIsIndirectSymbol(const GlobalValue *GV, |
| 226 | Reloc::Model RelocM) const { |
Evan Cheng | 1b38952 | 2009-09-03 07:04:02 +0000 | [diff] [blame] | 227 | if (RelocM == Reloc::Static) |
Evan Cheng | 43b9ca6 | 2009-08-28 23:18:09 +0000 | [diff] [blame] | 228 | return false; |
Evan Cheng | 1b38952 | 2009-09-03 07:04:02 +0000 | [diff] [blame] | 229 | |
Peter Collingbourne | 6a9d177 | 2015-07-05 20:52:35 +0000 | [diff] [blame] | 230 | bool isDef = GV->isStrongDefinitionForLinker(); |
Evan Cheng | 1b38952 | 2009-09-03 07:04:02 +0000 | [diff] [blame] | 231 | |
Tim Northover | d6a729b | 2014-01-06 14:28:05 +0000 | [diff] [blame] | 232 | if (!isTargetMachO()) { |
Evan Cheng | 1b38952 | 2009-09-03 07:04:02 +0000 | [diff] [blame] | 233 | // Extra load is needed for all externally visible. |
| 234 | if (GV->hasLocalLinkage() || GV->hasHiddenVisibility()) |
| 235 | return false; |
| 236 | return true; |
| 237 | } else { |
Peter Collingbourne | 6a9d177 | 2015-07-05 20:52:35 +0000 | [diff] [blame] | 238 | // If this is a strong reference to a definition, it is definitely not |
| 239 | // through a stub. |
| 240 | if (isDef) |
| 241 | return false; |
| 242 | |
| 243 | // Unless we have a symbol with hidden visibility, we have to go through a |
| 244 | // normal $non_lazy_ptr stub because this symbol might be resolved late. |
| 245 | if (!GV->hasHiddenVisibility()) // Non-hidden $non_lazy_ptr reference. |
| 246 | return true; |
| 247 | |
Evan Cheng | 1b38952 | 2009-09-03 07:04:02 +0000 | [diff] [blame] | 248 | if (RelocM == Reloc::PIC_) { |
Evan Cheng | 1b38952 | 2009-09-03 07:04:02 +0000 | [diff] [blame] | 249 | // If symbol visibility is hidden, we have a stub for common symbol |
| 250 | // references and external declarations. |
Peter Collingbourne | 6a9d177 | 2015-07-05 20:52:35 +0000 | [diff] [blame] | 251 | if (GV->isDeclarationForLinker() || GV->hasCommonLinkage()) |
Evan Cheng | 1b38952 | 2009-09-03 07:04:02 +0000 | [diff] [blame] | 252 | // Hidden $non_lazy_ptr reference. |
| 253 | return true; |
Evan Cheng | 1b38952 | 2009-09-03 07:04:02 +0000 | [diff] [blame] | 254 | } |
| 255 | } |
| 256 | |
| 257 | return false; |
Evan Cheng | 43b9ca6 | 2009-08-28 23:18:09 +0000 | [diff] [blame] | 258 | } |
David Goodwin | 0d412c2 | 2009-11-10 00:48:55 +0000 | [diff] [blame] | 259 | |
Owen Anderson | a3181e2 | 2010-09-28 21:57:50 +0000 | [diff] [blame] | 260 | unsigned ARMSubtarget::getMispredictionPenalty() const { |
Pete Cooper | 1175945 | 2014-09-02 17:43:54 +0000 | [diff] [blame] | 261 | return SchedModel.MispredictPenalty; |
Owen Anderson | a3181e2 | 2010-09-28 21:57:50 +0000 | [diff] [blame] | 262 | } |
| 263 | |
Bob Wilson | e7dde0c | 2013-11-03 06:14:38 +0000 | [diff] [blame] | 264 | bool ARMSubtarget::hasSinCos() const { |
Bob Wilson | 9868d71 | 2014-10-09 05:43:30 +0000 | [diff] [blame] | 265 | return getTargetTriple().isiOS() && !getTargetTriple().isOSVersionLT(7, 0); |
Bob Wilson | e7dde0c | 2013-11-03 06:14:38 +0000 | [diff] [blame] | 266 | } |
| 267 | |
Matthias Braun | 9e85980 | 2015-07-17 23:18:30 +0000 | [diff] [blame] | 268 | bool ARMSubtarget::enableMachineScheduler() const { |
| 269 | // Enable the MachineScheduler before register allocation for out-of-order |
| 270 | // architectures where we do not use the PostRA scheduler anymore (for now |
| 271 | // restricted to swift). |
| 272 | return getSchedModel().isOutOfOrder() && isSwift(); |
| 273 | } |
| 274 | |
Sanjay Patel | a2f658d | 2014-07-15 22:39:58 +0000 | [diff] [blame] | 275 | // This overrides the PostRAScheduler bit in the SchedModel for any CPU. |
Matthias Braun | 39a2afc | 2015-06-13 03:42:16 +0000 | [diff] [blame] | 276 | bool ARMSubtarget::enablePostRAScheduler() const { |
Matthias Braun | 9e85980 | 2015-07-17 23:18:30 +0000 | [diff] [blame] | 277 | // No need for PostRA scheduling on out of order CPUs (for now restricted to |
| 278 | // swift). |
| 279 | if (getSchedModel().isOutOfOrder() && isSwift()) |
| 280 | return false; |
Sanjay Patel | a2f658d | 2014-07-15 22:39:58 +0000 | [diff] [blame] | 281 | return (!isThumb() || hasThumb2()); |
Andrew Trick | 8d2ee37 | 2014-06-04 07:06:27 +0000 | [diff] [blame] | 282 | } |
| 283 | |
Robin Morisset | 59c23cd | 2014-08-21 21:50:01 +0000 | [diff] [blame] | 284 | bool ARMSubtarget::enableAtomicExpand() const { |
Eric Christopher | c40e5ed | 2014-06-19 21:03:04 +0000 | [diff] [blame] | 285 | return hasAnyDataBarrier() && !isThumb1Only(); |
| 286 | } |
| 287 | |
Tim Northover | 910dde7 | 2015-08-03 17:20:10 +0000 | [diff] [blame] | 288 | bool ARMSubtarget::useStride4VFPs(const MachineFunction &MF) const { |
Sanjay Patel | 1cd6d88 | 2015-08-18 16:44:23 +0000 | [diff] [blame] | 289 | return isSwift() && !MF.getFunction()->optForMinSize(); |
Tim Northover | 910dde7 | 2015-08-03 17:20:10 +0000 | [diff] [blame] | 290 | } |
| 291 | |
Eric Christopher | c1058df | 2014-07-04 01:55:26 +0000 | [diff] [blame] | 292 | bool ARMSubtarget::useMovt(const MachineFunction &MF) const { |
| 293 | // NOTE Windows on ARM needs to use mov.w/mov.t pairs to materialise 32-bit |
| 294 | // immediates as it is inherently position independent, and may be out of |
| 295 | // range otherwise. |
Akira Hatanaka | 024d91a | 2015-07-16 00:58:23 +0000 | [diff] [blame] | 296 | return !NoMovt && hasV6T2Ops() && |
Sanjay Patel | 924879a | 2015-08-04 15:49:57 +0000 | [diff] [blame] | 297 | (isTargetWindows() || !MF.getFunction()->optForMinSize()); |
Eric Christopher | c1058df | 2014-07-04 01:55:26 +0000 | [diff] [blame] | 298 | } |
Akira Hatanaka | ddf76aa | 2015-05-23 01:14:08 +0000 | [diff] [blame] | 299 | |
| 300 | bool ARMSubtarget::useFastISel() const { |
Eric Christopher | a835956 | 2015-09-18 20:08:18 +0000 | [diff] [blame^] | 301 | // Limit fast-isel to the targets that are or have been tested. |
| 302 | if (!hasV6Ops()) |
| 303 | return false; |
| 304 | |
Akira Hatanaka | ddf76aa | 2015-05-23 01:14:08 +0000 | [diff] [blame] | 305 | // Thumb2 support on iOS; ARM support on iOS, Linux and NaCl. |
| 306 | return TM.Options.EnableFastISel && |
| 307 | ((isTargetMachO() && !isThumb1Only()) || |
| 308 | (isTargetLinux() && !isThumb()) || (isTargetNaCl() && !isThumb())); |
| 309 | } |