Matt Arsenault | 0c90e95 | 2015-11-06 18:17:45 +0000 | [diff] [blame] | 1 | //=====-- AMDGPUSubtarget.h - Define Subtarget for AMDGPU ------*- C++ -*-====// |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 6 | // |
| 7 | //==-----------------------------------------------------------------------===// |
| 8 | // |
| 9 | /// \file |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 10 | /// AMDGPU specific subclass of TargetSubtarget. |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Matt Arsenault | 0c90e95 | 2015-11-06 18:17:45 +0000 | [diff] [blame] | 14 | #ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUSUBTARGET_H |
| 15 | #define LLVM_LIB_TARGET_AMDGPU_AMDGPUSUBTARGET_H |
Matt Arsenault | f59e538 | 2015-11-06 18:23:00 +0000 | [diff] [blame] | 16 | |
Tom Stellard | a6c6e1b | 2013-06-07 20:37:48 +0000 | [diff] [blame] | 17 | #include "AMDGPU.h" |
Quentin Colombet | 61d71a1 | 2017-08-15 22:31:51 +0000 | [diff] [blame] | 18 | #include "AMDGPUCallLowering.h" |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 19 | #include "R600FrameLowering.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 20 | #include "R600ISelLowering.h" |
| 21 | #include "R600InstrInfo.h" |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 22 | #include "SIFrameLowering.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 23 | #include "SIISelLowering.h" |
| 24 | #include "SIInstrInfo.h" |
Tom Stellard | 347ac79 | 2015-06-26 21:15:07 +0000 | [diff] [blame] | 25 | #include "Utils/AMDGPUBaseInfo.h" |
Eugene Zelenko | 2bc2f33 | 2016-12-09 22:06:55 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/Triple.h" |
Quentin Colombet | 61d71a1 | 2017-08-15 22:31:51 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/GlobalISel/InstructionSelector.h" |
| 28 | #include "llvm/CodeGen/GlobalISel/LegalizerInfo.h" |
| 29 | #include "llvm/CodeGen/GlobalISel/RegisterBankInfo.h" |
Eugene Zelenko | 2bc2f33 | 2016-12-09 22:06:55 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/MachineFunction.h" |
Matt Arsenault | 56684d4 | 2016-08-11 17:31:42 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/SelectionDAGTargetInfo.h" |
Eugene Zelenko | 2bc2f33 | 2016-12-09 22:06:55 +0000 | [diff] [blame] | 32 | #include "llvm/MC/MCInstrItineraries.h" |
| 33 | #include "llvm/Support/MathExtras.h" |
| 34 | #include <cassert> |
| 35 | #include <cstdint> |
| 36 | #include <memory> |
| 37 | #include <utility> |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 38 | |
| 39 | #define GET_SUBTARGETINFO_HEADER |
| 40 | #include "AMDGPUGenSubtargetInfo.inc" |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 41 | #define GET_SUBTARGETINFO_HEADER |
| 42 | #include "R600GenSubtargetInfo.inc" |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 43 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 44 | namespace llvm { |
| 45 | |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 46 | class StringRef; |
Tom Stellard | e99fb65 | 2015-01-20 19:33:04 +0000 | [diff] [blame] | 47 | |
Tom Stellard | 5bfbae5 | 2018-07-11 20:59:01 +0000 | [diff] [blame] | 48 | class AMDGPUSubtarget { |
| 49 | public: |
| 50 | enum Generation { |
| 51 | R600 = 0, |
| 52 | R700 = 1, |
Matt Arsenault | 4bec7d4 | 2018-07-20 09:05:08 +0000 | [diff] [blame] | 53 | EVERGREEN = 2, |
Tom Stellard | 5bfbae5 | 2018-07-11 20:59:01 +0000 | [diff] [blame] | 54 | NORTHERN_ISLANDS = 3, |
| 55 | SOUTHERN_ISLANDS = 4, |
| 56 | SEA_ISLANDS = 5, |
| 57 | VOLCANIC_ISLANDS = 6, |
Stanislav Mekhanoshin | cee607e | 2019-04-24 17:03:15 +0000 | [diff] [blame] | 58 | GFX9 = 7, |
| 59 | GFX10 = 8 |
Tom Stellard | 5bfbae5 | 2018-07-11 20:59:01 +0000 | [diff] [blame] | 60 | }; |
| 61 | |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 62 | private: |
| 63 | Triple TargetTriple; |
| 64 | |
| 65 | protected: |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 66 | bool Has16BitInsts; |
| 67 | bool HasMadMixInsts; |
| 68 | bool FP32Denormals; |
| 69 | bool FPExceptions; |
| 70 | bool HasSDWA; |
| 71 | bool HasVOP3PInsts; |
| 72 | bool HasMulI24; |
| 73 | bool HasMulU24; |
Matt Arsenault | 6c7ba82 | 2018-08-15 21:03:55 +0000 | [diff] [blame] | 74 | bool HasInv2PiInlineImm; |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 75 | bool HasFminFmaxLegacy; |
| 76 | bool EnablePromoteAlloca; |
David Stuttard | 20de3e9 | 2018-09-14 10:27:19 +0000 | [diff] [blame] | 77 | bool HasTrigReducedRange; |
Stanislav Mekhanoshin | 2594fa8 | 2019-07-31 01:07:10 +0000 | [diff] [blame] | 78 | unsigned MaxWavesPerEU; |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 79 | int LocalMemorySize; |
| 80 | unsigned WavefrontSize; |
| 81 | |
| 82 | public: |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 83 | AMDGPUSubtarget(const Triple &TT); |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 84 | |
Tom Stellard | 5bfbae5 | 2018-07-11 20:59:01 +0000 | [diff] [blame] | 85 | static const AMDGPUSubtarget &get(const MachineFunction &MF); |
| 86 | static const AMDGPUSubtarget &get(const TargetMachine &TM, |
Matt Arsenault | 4bec7d4 | 2018-07-20 09:05:08 +0000 | [diff] [blame] | 87 | const Function &F); |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 88 | |
| 89 | /// \returns Default range flat work group size for a calling convention. |
| 90 | std::pair<unsigned, unsigned> getDefaultFlatWorkGroupSize(CallingConv::ID CC) const; |
| 91 | |
| 92 | /// \returns Subtarget's default pair of minimum/maximum flat work group sizes |
| 93 | /// for function \p F, or minimum/maximum flat work group sizes explicitly |
| 94 | /// requested using "amdgpu-flat-work-group-size" attribute attached to |
| 95 | /// function \p F. |
| 96 | /// |
| 97 | /// \returns Subtarget's default values if explicitly requested values cannot |
| 98 | /// be converted to integer, or violate subtarget's specifications. |
| 99 | std::pair<unsigned, unsigned> getFlatWorkGroupSizes(const Function &F) const; |
| 100 | |
| 101 | /// \returns Subtarget's default pair of minimum/maximum number of waves per |
| 102 | /// execution unit for function \p F, or minimum/maximum number of waves per |
| 103 | /// execution unit explicitly requested using "amdgpu-waves-per-eu" attribute |
| 104 | /// attached to function \p F. |
| 105 | /// |
| 106 | /// \returns Subtarget's default values if explicitly requested values cannot |
| 107 | /// be converted to integer, violate subtarget's specifications, or are not |
| 108 | /// compatible with minimum/maximum number of waves limited by flat work group |
| 109 | /// size, register usage, and/or lds usage. |
| 110 | std::pair<unsigned, unsigned> getWavesPerEU(const Function &F) const; |
| 111 | |
| 112 | /// Return the amount of LDS that can be used that will not restrict the |
| 113 | /// occupancy lower than WaveCount. |
| 114 | unsigned getMaxLocalMemSizeWithWaveCount(unsigned WaveCount, |
| 115 | const Function &) const; |
| 116 | |
| 117 | /// Inverse of getMaxLocalMemWithWaveCount. Return the maximum wavecount if |
| 118 | /// the given LDS memory size is the only constraint. |
| 119 | unsigned getOccupancyWithLocalMemSize(uint32_t Bytes, const Function &) const; |
| 120 | |
| 121 | unsigned getOccupancyWithLocalMemSize(const MachineFunction &MF) const; |
| 122 | |
| 123 | bool isAmdHsaOS() const { |
| 124 | return TargetTriple.getOS() == Triple::AMDHSA; |
| 125 | } |
| 126 | |
| 127 | bool isAmdPalOS() const { |
| 128 | return TargetTriple.getOS() == Triple::AMDPAL; |
| 129 | } |
| 130 | |
Tom Stellard | ec4feae | 2018-07-06 17:16:17 +0000 | [diff] [blame] | 131 | bool isMesa3DOS() const { |
| 132 | return TargetTriple.getOS() == Triple::Mesa3D; |
| 133 | } |
| 134 | |
| 135 | bool isMesaKernel(const Function &F) const { |
| 136 | return isMesa3DOS() && !AMDGPU::isShader(F.getCallingConv()); |
| 137 | } |
| 138 | |
Konstantin Zhuravlyov | aa067cb | 2018-10-04 21:02:16 +0000 | [diff] [blame] | 139 | bool isAmdHsaOrMesa(const Function &F) const { |
Tom Stellard | ec4feae | 2018-07-06 17:16:17 +0000 | [diff] [blame] | 140 | return isAmdHsaOS() || isMesaKernel(F); |
| 141 | } |
| 142 | |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 143 | bool has16BitInsts() const { |
| 144 | return Has16BitInsts; |
| 145 | } |
| 146 | |
| 147 | bool hasMadMixInsts() const { |
| 148 | return HasMadMixInsts; |
| 149 | } |
| 150 | |
Matt Arsenault | db0ed3e | 2019-10-31 18:50:30 -0700 | [diff] [blame] | 151 | bool hasFP32Denormals(const Function &F) const { |
| 152 | // FIXME: This should not be a property of the subtarget. This should be a |
| 153 | // property with a default set by the calling convention which can be |
| 154 | // overridden by attributes. For now, use the subtarget feature as a |
| 155 | // placeholder attribute. The function arguments only purpose is to |
| 156 | // discourage use without a function context until this is removed. |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 157 | return FP32Denormals; |
| 158 | } |
| 159 | |
| 160 | bool hasFPExceptions() const { |
| 161 | return FPExceptions; |
| 162 | } |
| 163 | |
| 164 | bool hasSDWA() const { |
| 165 | return HasSDWA; |
| 166 | } |
| 167 | |
| 168 | bool hasVOP3PInsts() const { |
| 169 | return HasVOP3PInsts; |
| 170 | } |
| 171 | |
| 172 | bool hasMulI24() const { |
| 173 | return HasMulI24; |
| 174 | } |
| 175 | |
| 176 | bool hasMulU24() const { |
| 177 | return HasMulU24; |
| 178 | } |
| 179 | |
Matt Arsenault | 6c7ba82 | 2018-08-15 21:03:55 +0000 | [diff] [blame] | 180 | bool hasInv2PiInlineImm() const { |
| 181 | return HasInv2PiInlineImm; |
| 182 | } |
| 183 | |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 184 | bool hasFminFmaxLegacy() const { |
| 185 | return HasFminFmaxLegacy; |
| 186 | } |
| 187 | |
David Stuttard | 20de3e9 | 2018-09-14 10:27:19 +0000 | [diff] [blame] | 188 | bool hasTrigReducedRange() const { |
| 189 | return HasTrigReducedRange; |
| 190 | } |
| 191 | |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 192 | bool isPromoteAllocaEnabled() const { |
| 193 | return EnablePromoteAlloca; |
| 194 | } |
| 195 | |
| 196 | unsigned getWavefrontSize() const { |
| 197 | return WavefrontSize; |
| 198 | } |
| 199 | |
| 200 | int getLocalMemorySize() const { |
| 201 | return LocalMemorySize; |
| 202 | } |
| 203 | |
Guillaume Chatelet | b65fa48 | 2019-10-15 12:56:24 +0000 | [diff] [blame] | 204 | Align getAlignmentForImplicitArgPtr() const { |
| 205 | return isAmdHsaOS() ? Align(8) : Align(4); |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 206 | } |
| 207 | |
Tom Stellard | ec4feae | 2018-07-06 17:16:17 +0000 | [diff] [blame] | 208 | /// Returns the offset in bytes from the start of the input buffer |
| 209 | /// of the first explicit kernel argument. |
| 210 | unsigned getExplicitKernelArgOffset(const Function &F) const { |
Konstantin Zhuravlyov | aa067cb | 2018-10-04 21:02:16 +0000 | [diff] [blame] | 211 | return isAmdHsaOrMesa(F) ? 0 : 36; |
Tom Stellard | ec4feae | 2018-07-06 17:16:17 +0000 | [diff] [blame] | 212 | } |
| 213 | |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 214 | /// \returns Maximum number of work groups per compute unit supported by the |
| 215 | /// subtarget and limited by given \p FlatWorkGroupSize. |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 216 | virtual unsigned getMaxWorkGroupsPerCU(unsigned FlatWorkGroupSize) const = 0; |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 217 | |
| 218 | /// \returns Minimum flat work group size supported by the subtarget. |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 219 | virtual unsigned getMinFlatWorkGroupSize() const = 0; |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 220 | |
| 221 | /// \returns Maximum flat work group size supported by the subtarget. |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 222 | virtual unsigned getMaxFlatWorkGroupSize() const = 0; |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 223 | |
| 224 | /// \returns Maximum number of waves per execution unit supported by the |
| 225 | /// subtarget and limited by given \p FlatWorkGroupSize. |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 226 | virtual unsigned getMaxWavesPerEU(unsigned FlatWorkGroupSize) const = 0; |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 227 | |
| 228 | /// \returns Minimum number of waves per execution unit supported by the |
| 229 | /// subtarget. |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 230 | virtual unsigned getMinWavesPerEU() const = 0; |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 231 | |
Stanislav Mekhanoshin | 2594fa8 | 2019-07-31 01:07:10 +0000 | [diff] [blame] | 232 | /// \returns Maximum number of waves per execution unit supported by the |
| 233 | /// subtarget without any kind of limitation. |
| 234 | unsigned getMaxWavesPerEU() const { return MaxWavesPerEU; } |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 235 | |
| 236 | /// Creates value range metadata on an workitemid.* inrinsic call or load. |
| 237 | bool makeLIDRangeMetadata(Instruction *I) const; |
| 238 | |
Matt Arsenault | 4bec7d4 | 2018-07-20 09:05:08 +0000 | [diff] [blame] | 239 | /// \returns Number of bytes of arguments that are passed to a shader or |
| 240 | /// kernel in addition to the explicit ones declared for the function. |
| 241 | unsigned getImplicitArgNumBytes(const Function &F) const { |
| 242 | if (isMesaKernel(F)) |
| 243 | return 16; |
| 244 | return AMDGPU::getIntegerAttribute(F, "amdgpu-implicitarg-num-bytes", 0); |
| 245 | } |
Guillaume Chatelet | b65fa48 | 2019-10-15 12:56:24 +0000 | [diff] [blame] | 246 | uint64_t getExplicitKernArgSize(const Function &F, Align &MaxAlign) const; |
| 247 | unsigned getKernArgSegmentSize(const Function &F, Align &MaxAlign) const; |
Matt Arsenault | 4bec7d4 | 2018-07-20 09:05:08 +0000 | [diff] [blame] | 248 | |
Tom Stellard | 5bfbae5 | 2018-07-11 20:59:01 +0000 | [diff] [blame] | 249 | virtual ~AMDGPUSubtarget() {} |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 250 | }; |
| 251 | |
Tom Stellard | 5bfbae5 | 2018-07-11 20:59:01 +0000 | [diff] [blame] | 252 | class GCNSubtarget : public AMDGPUGenSubtargetInfo, |
| 253 | public AMDGPUSubtarget { |
Stanislav Mekhanoshin | 2594fa8 | 2019-07-31 01:07:10 +0000 | [diff] [blame] | 254 | |
| 255 | using AMDGPUSubtarget::getMaxWavesPerEU; |
| 256 | |
Tom Stellard | a6c6e1b | 2013-06-07 20:37:48 +0000 | [diff] [blame] | 257 | public: |
Wei Ding | 205bfdb | 2017-02-10 02:15:29 +0000 | [diff] [blame] | 258 | enum TrapHandlerAbi { |
| 259 | TrapHandlerAbiNone = 0, |
| 260 | TrapHandlerAbiHsa = 1 |
| 261 | }; |
| 262 | |
Wei Ding | f2cce02 | 2017-02-22 23:22:19 +0000 | [diff] [blame] | 263 | enum TrapID { |
| 264 | TrapIDHardwareReserved = 0, |
| 265 | TrapIDHSADebugTrap = 1, |
| 266 | TrapIDLLVMTrap = 2, |
| 267 | TrapIDLLVMDebugTrap = 3, |
| 268 | TrapIDDebugBreakpoint = 7, |
| 269 | TrapIDDebugReserved8 = 8, |
| 270 | TrapIDDebugReservedFE = 0xfe, |
| 271 | TrapIDDebugReservedFF = 0xff |
Wei Ding | 205bfdb | 2017-02-10 02:15:29 +0000 | [diff] [blame] | 272 | }; |
| 273 | |
| 274 | enum TrapRegValues { |
Wei Ding | f2cce02 | 2017-02-22 23:22:19 +0000 | [diff] [blame] | 275 | LLVMTrapHandlerRegValue = 1 |
Wei Ding | 205bfdb | 2017-02-10 02:15:29 +0000 | [diff] [blame] | 276 | }; |
| 277 | |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 278 | private: |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 279 | /// GlobalISel related APIs. |
| 280 | std::unique_ptr<AMDGPUCallLowering> CallLoweringInfo; |
| 281 | std::unique_ptr<InstructionSelector> InstSelector; |
| 282 | std::unique_ptr<LegalizerInfo> Legalizer; |
| 283 | std::unique_ptr<RegisterBankInfo> RegBankInfo; |
| 284 | |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 285 | protected: |
| 286 | // Basic subtarget description. |
| 287 | Triple TargetTriple; |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 288 | unsigned Gen; |
Stanislav Mekhanoshin | 06d3b41 | 2018-09-17 16:04:32 +0000 | [diff] [blame] | 289 | InstrItineraryData InstrItins; |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 290 | int LDSBankCount; |
| 291 | unsigned MaxPrivateElementSize; |
| 292 | |
| 293 | // Possibly statically set by tablegen, but may want to be overridden. |
Matt Arsenault | b035a57 | 2015-01-29 19:34:25 +0000 | [diff] [blame] | 294 | bool FastFMAF32; |
Matt Arsenault | e83690c | 2016-01-18 21:13:50 +0000 | [diff] [blame] | 295 | bool HalfRate64Ops; |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 296 | |
| 297 | // Dynamially set bits that enable features. |
Matt Arsenault | a6867fd | 2017-01-23 22:31:03 +0000 | [diff] [blame] | 298 | bool FP64FP16Denormals; |
Changpeng Fang | b41574a | 2015-12-22 20:55:23 +0000 | [diff] [blame] | 299 | bool FlatForGlobal; |
Konstantin Zhuravlyov | be6c0ca | 2017-06-02 17:40:26 +0000 | [diff] [blame] | 300 | bool AutoWaitcntBeforeBarrier; |
Konstantin Zhuravlyov | eda425e | 2017-10-14 15:59:07 +0000 | [diff] [blame] | 301 | bool CodeObjectV3; |
Tom Stellard | 64a9d08 | 2016-10-14 18:10:39 +0000 | [diff] [blame] | 302 | bool UnalignedScratchAccess; |
Matt Arsenault | 7f681ac | 2016-07-01 23:03:44 +0000 | [diff] [blame] | 303 | bool UnalignedBufferAccess; |
Matt Arsenault | e823d92 | 2017-02-18 18:29:53 +0000 | [diff] [blame] | 304 | bool HasApertureRegs; |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 305 | bool EnableXNACK; |
Matt Arsenault | df24c92 | 2019-05-16 14:48:34 +0000 | [diff] [blame] | 306 | bool DoesNotSupportXNACK; |
Stanislav Mekhanoshin | cee607e | 2019-04-24 17:03:15 +0000 | [diff] [blame] | 307 | bool EnableCuMode; |
Wei Ding | 205bfdb | 2017-02-10 02:15:29 +0000 | [diff] [blame] | 308 | bool TrapHandler; |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 309 | |
| 310 | // Used as options. |
Matt Arsenault | 4103328 | 2014-10-10 22:01:59 +0000 | [diff] [blame] | 311 | bool EnableLoadStoreOpt; |
Matt Arsenault | 706f930 | 2015-07-06 16:01:58 +0000 | [diff] [blame] | 312 | bool EnableUnsafeDSOffsetFolding; |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 313 | bool EnableSIScheduler; |
Marek Olsak | a9a58fa | 2018-04-10 22:48:23 +0000 | [diff] [blame] | 314 | bool EnableDS128; |
David Stuttard | f77079f | 2019-01-14 11:55:24 +0000 | [diff] [blame] | 315 | bool EnablePRTStrictNull; |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 316 | bool DumpCode; |
| 317 | |
| 318 | // Subtarget statically properties set by tablegen |
| 319 | bool FP64; |
Jan Vesely | 39aeab4 | 2017-12-04 23:07:28 +0000 | [diff] [blame] | 320 | bool FMA; |
Dmitry Preobrazhensky | e3271ae | 2018-02-05 12:45:43 +0000 | [diff] [blame] | 321 | bool MIMG_R128; |
Tom Stellard | d7e6f13 | 2015-04-08 01:09:26 +0000 | [diff] [blame] | 322 | bool IsGCN; |
Tom Stellard | d7e6f13 | 2015-04-08 01:09:26 +0000 | [diff] [blame] | 323 | bool GCN3Encoding; |
Tom Stellard | d1f0f02 | 2015-04-23 19:33:54 +0000 | [diff] [blame] | 324 | bool CIInsts; |
Stanislav Mekhanoshin | 7895c03 | 2019-04-05 18:24:34 +0000 | [diff] [blame] | 325 | bool GFX8Insts; |
Matt Arsenault | 2021f08 | 2017-02-18 19:12:26 +0000 | [diff] [blame] | 326 | bool GFX9Insts; |
Stanislav Mekhanoshin | cee607e | 2019-04-24 17:03:15 +0000 | [diff] [blame] | 327 | bool GFX10Insts; |
Stanislav Mekhanoshin | 7895c03 | 2019-04-05 18:24:34 +0000 | [diff] [blame] | 328 | bool GFX7GFX8GFX9Insts; |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 329 | bool SGPRInitBug; |
Matt Arsenault | 9d82ee7 | 2016-02-27 08:53:55 +0000 | [diff] [blame] | 330 | bool HasSMemRealTime; |
Dmitry Preobrazhensky | ff64aa5 | 2017-08-16 13:51:56 +0000 | [diff] [blame] | 331 | bool HasIntClamp; |
Matt Arsenault | 0084adc | 2018-04-30 19:08:16 +0000 | [diff] [blame] | 332 | bool HasFmaMixInsts; |
Matt Arsenault | cc88ce3 | 2016-10-12 18:00:51 +0000 | [diff] [blame] | 333 | bool HasMovrel; |
| 334 | bool HasVGPRIndexMode; |
Matt Arsenault | 7b64755 | 2016-10-28 21:55:15 +0000 | [diff] [blame] | 335 | bool HasScalarStores; |
Dmitry Preobrazhensky | 6bad04e | 2018-04-02 16:10:25 +0000 | [diff] [blame] | 336 | bool HasScalarAtomics; |
Sam Kolton | 3c4933f | 2017-06-22 06:26:41 +0000 | [diff] [blame] | 337 | bool HasSDWAOmod; |
| 338 | bool HasSDWAScalar; |
| 339 | bool HasSDWASdst; |
| 340 | bool HasSDWAMac; |
Sam Kolton | a179d25 | 2017-06-27 15:02:23 +0000 | [diff] [blame] | 341 | bool HasSDWAOutModsVOPC; |
Sam Kolton | 07dbde2 | 2017-01-20 10:01:25 +0000 | [diff] [blame] | 342 | bool HasDPP; |
Stanislav Mekhanoshin | 245b5ba | 2019-06-12 18:02:41 +0000 | [diff] [blame] | 343 | bool HasDPP8; |
Ryan Taylor | 1f334d0 | 2018-08-28 15:07:30 +0000 | [diff] [blame] | 344 | bool HasR128A16; |
Stanislav Mekhanoshin | cee607e | 2019-04-24 17:03:15 +0000 | [diff] [blame] | 345 | bool HasNSAEncoding; |
Matt Arsenault | 0084adc | 2018-04-30 19:08:16 +0000 | [diff] [blame] | 346 | bool HasDLInsts; |
Stanislav Mekhanoshin | 0e858b0 | 2019-02-09 00:34:21 +0000 | [diff] [blame] | 347 | bool HasDot1Insts; |
| 348 | bool HasDot2Insts; |
Stanislav Mekhanoshin | 22b2c3d | 2019-07-09 18:10:06 +0000 | [diff] [blame] | 349 | bool HasDot3Insts; |
| 350 | bool HasDot4Insts; |
Stanislav Mekhanoshin | c43e67b | 2019-06-14 00:33:31 +0000 | [diff] [blame] | 351 | bool HasDot5Insts; |
| 352 | bool HasDot6Insts; |
Stanislav Mekhanoshin | 22b2c3d | 2019-07-09 18:10:06 +0000 | [diff] [blame] | 353 | bool HasMAIInsts; |
| 354 | bool HasPkFmacF16Inst; |
| 355 | bool HasAtomicFaddInsts; |
Konstantin Zhuravlyov | 108927b | 2018-11-05 22:44:19 +0000 | [diff] [blame] | 356 | bool EnableSRAMECC; |
Matt Arsenault | f426ddb | 2019-04-03 01:58:57 +0000 | [diff] [blame] | 357 | bool DoesNotSupportSRAMECC; |
Stanislav Mekhanoshin | cee607e | 2019-04-24 17:03:15 +0000 | [diff] [blame] | 358 | bool HasNoSdstCMPX; |
| 359 | bool HasVscnt; |
| 360 | bool HasRegisterBanking; |
| 361 | bool HasVOP3Literal; |
| 362 | bool HasNoDataDepHazard; |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 363 | bool FlatAddressSpace; |
Matt Arsenault | acdc765 | 2017-05-10 21:19:05 +0000 | [diff] [blame] | 364 | bool FlatInstOffsets; |
| 365 | bool FlatGlobalInsts; |
| 366 | bool FlatScratchInsts; |
Stanislav Mekhanoshin | cee607e | 2019-04-24 17:03:15 +0000 | [diff] [blame] | 367 | bool ScalarFlatScratchInsts; |
Matt Arsenault | c37fe66 | 2017-07-20 17:42:47 +0000 | [diff] [blame] | 368 | bool AddNoCarryInsts; |
Changpeng Fang | 44dfa1d | 2018-01-12 21:12:19 +0000 | [diff] [blame] | 369 | bool HasUnpackedD16VMem; |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 370 | bool R600ALUInst; |
| 371 | bool CaymanISA; |
| 372 | bool CFALUBug; |
Stanislav Mekhanoshin | cee607e | 2019-04-24 17:03:15 +0000 | [diff] [blame] | 373 | bool LDSMisalignedBug; |
Stanislav Mekhanoshin | 8fe1245 | 2019-08-23 22:09:58 +0000 | [diff] [blame] | 374 | bool HasMFMAInlineLiteralBug; |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 375 | bool HasVertexCache; |
| 376 | short TexVTXClauseSize; |
Alexander Timofeev | 1800956 | 2016-12-08 17:28:47 +0000 | [diff] [blame] | 377 | bool ScalarizeGlobal; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 378 | |
Stanislav Mekhanoshin | cee607e | 2019-04-24 17:03:15 +0000 | [diff] [blame] | 379 | bool HasVcmpxPermlaneHazard; |
| 380 | bool HasVMEMtoScalarWriteHazard; |
| 381 | bool HasSMEMtoVectorWriteHazard; |
| 382 | bool HasInstFwdPrefetchBug; |
| 383 | bool HasVcmpxExecWARHazard; |
| 384 | bool HasLdsBranchVmemWARHazard; |
| 385 | bool HasNSAtoVMEMBug; |
Ryan Taylor | 9ab812d | 2019-06-26 17:34:57 +0000 | [diff] [blame] | 386 | bool HasOffset3fBug; |
Stanislav Mekhanoshin | cee607e | 2019-04-24 17:03:15 +0000 | [diff] [blame] | 387 | bool HasFlatSegmentOffsetBug; |
| 388 | |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 389 | // Dummy feature to use for assembler in tablegen. |
| 390 | bool FeatureDisable; |
| 391 | |
Matt Arsenault | 56684d4 | 2016-08-11 17:31:42 +0000 | [diff] [blame] | 392 | SelectionDAGTargetInfo TSInfo; |
Tom Stellard | 5bfbae5 | 2018-07-11 20:59:01 +0000 | [diff] [blame] | 393 | private: |
Tom Stellard | 5bfbae5 | 2018-07-11 20:59:01 +0000 | [diff] [blame] | 394 | SIInstrInfo InstrInfo; |
Tom Stellard | 752ddbd | 2018-07-11 22:15:15 +0000 | [diff] [blame] | 395 | SITargetLowering TLInfo; |
Tom Stellard | 5bfbae5 | 2018-07-11 20:59:01 +0000 | [diff] [blame] | 396 | SIFrameLowering FrameLowering; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 397 | |
Matt Arsenault | 5c714cb | 2019-05-23 19:38:14 +0000 | [diff] [blame] | 398 | // See COMPUTE_TMPRING_SIZE.WAVESIZE, 13-bit field in units of 256-dword. |
| 399 | static const unsigned MaxWaveScratchSize = (256 * 4) * ((1 << 13) - 1); |
| 400 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 401 | public: |
Tom Stellard | 5bfbae5 | 2018-07-11 20:59:01 +0000 | [diff] [blame] | 402 | GCNSubtarget(const Triple &TT, StringRef GPU, StringRef FS, |
| 403 | const GCNTargetMachine &TM); |
| 404 | ~GCNSubtarget() override; |
Eugene Zelenko | 2bc2f33 | 2016-12-09 22:06:55 +0000 | [diff] [blame] | 405 | |
Tom Stellard | 5bfbae5 | 2018-07-11 20:59:01 +0000 | [diff] [blame] | 406 | GCNSubtarget &initializeSubtargetDependencies(const Triple &TT, |
Daniel Sanders | a73f1fd | 2015-06-10 12:11:26 +0000 | [diff] [blame] | 407 | StringRef GPU, StringRef FS); |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 408 | |
Tom Stellard | 5bfbae5 | 2018-07-11 20:59:01 +0000 | [diff] [blame] | 409 | const SIInstrInfo *getInstrInfo() const override { |
| 410 | return &InstrInfo; |
| 411 | } |
Tom Stellard | 000c5af | 2016-04-14 19:09:28 +0000 | [diff] [blame] | 412 | |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 413 | const SIFrameLowering *getFrameLowering() const override { |
| 414 | return &FrameLowering; |
| 415 | } |
| 416 | |
Tom Stellard | 5bfbae5 | 2018-07-11 20:59:01 +0000 | [diff] [blame] | 417 | const SITargetLowering *getTargetLowering() const override { |
| 418 | return &TLInfo; |
| 419 | } |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 420 | |
Tom Stellard | 5bfbae5 | 2018-07-11 20:59:01 +0000 | [diff] [blame] | 421 | const SIRegisterInfo *getRegisterInfo() const override { |
| 422 | return &InstrInfo.getRegisterInfo(); |
| 423 | } |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 424 | |
| 425 | const CallLowering *getCallLowering() const override { |
| 426 | return CallLoweringInfo.get(); |
| 427 | } |
| 428 | |
Amara Emerson | e14c91b | 2019-08-13 06:26:59 +0000 | [diff] [blame] | 429 | InstructionSelector *getInstructionSelector() const override { |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 430 | return InstSelector.get(); |
| 431 | } |
| 432 | |
| 433 | const LegalizerInfo *getLegalizerInfo() const override { |
| 434 | return Legalizer.get(); |
| 435 | } |
| 436 | |
| 437 | const RegisterBankInfo *getRegBankInfo() const override { |
| 438 | return RegBankInfo.get(); |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 439 | } |
Matt Arsenault | d782d05 | 2014-06-27 17:57:00 +0000 | [diff] [blame] | 440 | |
Matt Arsenault | 56684d4 | 2016-08-11 17:31:42 +0000 | [diff] [blame] | 441 | // Nothing implemented, just prevent crashes on use. |
| 442 | const SelectionDAGTargetInfo *getSelectionDAGInfo() const override { |
| 443 | return &TSInfo; |
| 444 | } |
| 445 | |
Stanislav Mekhanoshin | 06d3b41 | 2018-09-17 16:04:32 +0000 | [diff] [blame] | 446 | const InstrItineraryData *getInstrItineraryData() const override { |
| 447 | return &InstrItins; |
| 448 | } |
| 449 | |
Craig Topper | ee7b0f3 | 2014-04-30 05:53:27 +0000 | [diff] [blame] | 450 | void ParseSubtargetFeatures(StringRef CPU, StringRef FS); |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 451 | |
Matt Arsenault | d782d05 | 2014-06-27 17:57:00 +0000 | [diff] [blame] | 452 | Generation getGeneration() const { |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 453 | return (Generation)Gen; |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 454 | } |
| 455 | |
Matt Arsenault | 4eea3f3 | 2017-11-13 22:55:05 +0000 | [diff] [blame] | 456 | unsigned getWavefrontSizeLog2() const { |
| 457 | return Log2_32(WavefrontSize); |
| 458 | } |
| 459 | |
Matt Arsenault | 5c714cb | 2019-05-23 19:38:14 +0000 | [diff] [blame] | 460 | /// Return the number of high bits known to be zero fror a frame index. |
| 461 | unsigned getKnownHighZeroBitsForFrameIndex() const { |
| 462 | return countLeadingZeros(MaxWaveScratchSize) + getWavefrontSizeLog2(); |
| 463 | } |
| 464 | |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 465 | int getLDSBankCount() const { |
| 466 | return LDSBankCount; |
| 467 | } |
| 468 | |
| 469 | unsigned getMaxPrivateElementSize() const { |
| 470 | return MaxPrivateElementSize; |
| 471 | } |
| 472 | |
Stanislav Mekhanoshin | f2baae0 | 2019-05-02 03:47:23 +0000 | [diff] [blame] | 473 | unsigned getConstantBusLimit(unsigned Opcode) const; |
| 474 | |
Dmitry Preobrazhensky | ff64aa5 | 2017-08-16 13:51:56 +0000 | [diff] [blame] | 475 | bool hasIntClamp() const { |
| 476 | return HasIntClamp; |
| 477 | } |
| 478 | |
Jan Vesely | d1c9b61 | 2017-12-04 22:57:29 +0000 | [diff] [blame] | 479 | bool hasFP64() const { |
Matt Arsenault | d782d05 | 2014-06-27 17:57:00 +0000 | [diff] [blame] | 480 | return FP64; |
| 481 | } |
| 482 | |
Dmitry Preobrazhensky | e3271ae | 2018-02-05 12:45:43 +0000 | [diff] [blame] | 483 | bool hasMIMG_R128() const { |
| 484 | return MIMG_R128; |
| 485 | } |
| 486 | |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 487 | bool hasHWFP64() const { |
| 488 | return FP64; |
| 489 | } |
| 490 | |
Matt Arsenault | b035a57 | 2015-01-29 19:34:25 +0000 | [diff] [blame] | 491 | bool hasFastFMAF32() const { |
| 492 | return FastFMAF32; |
| 493 | } |
| 494 | |
Matt Arsenault | e83690c | 2016-01-18 21:13:50 +0000 | [diff] [blame] | 495 | bool hasHalfRate64Ops() const { |
| 496 | return HalfRate64Ops; |
| 497 | } |
| 498 | |
Matt Arsenault | 8870181 | 2016-06-09 23:42:48 +0000 | [diff] [blame] | 499 | bool hasAddr64() const { |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 500 | return (getGeneration() < AMDGPUSubtarget::VOLCANIC_ISLANDS); |
Matt Arsenault | 8870181 | 2016-06-09 23:42:48 +0000 | [diff] [blame] | 501 | } |
| 502 | |
Matt Arsenault | e4c2e9b | 2019-06-19 23:54:58 +0000 | [diff] [blame] | 503 | // Return true if the target only has the reverse operand versions of VALU |
| 504 | // shift instructions (e.g. v_lshrrev_b32, and no v_lshr_b32). |
| 505 | bool hasOnlyRevVALUShifts() const { |
| 506 | return getGeneration() >= VOLCANIC_ISLANDS; |
| 507 | } |
| 508 | |
Matt Arsenault | fae0298 | 2014-03-17 18:58:11 +0000 | [diff] [blame] | 509 | bool hasBFE() const { |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 510 | return true; |
Matt Arsenault | fae0298 | 2014-03-17 18:58:11 +0000 | [diff] [blame] | 511 | } |
| 512 | |
Matt Arsenault | 6e43965 | 2014-06-10 19:00:20 +0000 | [diff] [blame] | 513 | bool hasBFI() const { |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 514 | return true; |
Matt Arsenault | 6e43965 | 2014-06-10 19:00:20 +0000 | [diff] [blame] | 515 | } |
| 516 | |
Matt Arsenault | fae0298 | 2014-03-17 18:58:11 +0000 | [diff] [blame] | 517 | bool hasBFM() const { |
| 518 | return hasBFE(); |
| 519 | } |
| 520 | |
Matt Arsenault | 6042506 | 2014-06-10 19:18:28 +0000 | [diff] [blame] | 521 | bool hasBCNT(unsigned Size) const { |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 522 | return true; |
Tom Stellard | 50122a5 | 2014-04-07 19:45:41 +0000 | [diff] [blame] | 523 | } |
| 524 | |
Jan Vesely | 6ddb8dd | 2014-07-15 15:51:09 +0000 | [diff] [blame] | 525 | bool hasFFBL() const { |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 526 | return true; |
Jan Vesely | 6ddb8dd | 2014-07-15 15:51:09 +0000 | [diff] [blame] | 527 | } |
| 528 | |
| 529 | bool hasFFBH() const { |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 530 | return true; |
Jan Vesely | 6ddb8dd | 2014-07-15 15:51:09 +0000 | [diff] [blame] | 531 | } |
| 532 | |
Matt Arsenault | 10268f9 | 2017-02-27 22:40:39 +0000 | [diff] [blame] | 533 | bool hasMed3_16() const { |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 534 | return getGeneration() >= AMDGPUSubtarget::GFX9; |
Matt Arsenault | 10268f9 | 2017-02-27 22:40:39 +0000 | [diff] [blame] | 535 | } |
| 536 | |
Matt Arsenault | ee324ff | 2017-05-17 19:25:06 +0000 | [diff] [blame] | 537 | bool hasMin3Max3_16() const { |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 538 | return getGeneration() >= AMDGPUSubtarget::GFX9; |
Matt Arsenault | d7e2303 | 2017-09-07 18:05:07 +0000 | [diff] [blame] | 539 | } |
| 540 | |
Matt Arsenault | 0084adc | 2018-04-30 19:08:16 +0000 | [diff] [blame] | 541 | bool hasFmaMixInsts() const { |
| 542 | return HasFmaMixInsts; |
| 543 | } |
| 544 | |
Jan Vesely | 808fff5 | 2015-04-30 17:15:56 +0000 | [diff] [blame] | 545 | bool hasCARRY() const { |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 546 | return true; |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 547 | } |
| 548 | |
Jan Vesely | 39aeab4 | 2017-12-04 23:07:28 +0000 | [diff] [blame] | 549 | bool hasFMA() const { |
| 550 | return FMA; |
| 551 | } |
| 552 | |
Stanislav Mekhanoshin | 79080ec | 2018-10-29 17:26:01 +0000 | [diff] [blame] | 553 | bool hasSwap() const { |
| 554 | return GFX9Insts; |
| 555 | } |
| 556 | |
Matt Arsenault | 182f924 | 2019-09-09 17:04:18 +0000 | [diff] [blame] | 557 | bool hasScalarPackInsts() const { |
| 558 | return GFX9Insts; |
| 559 | } |
| 560 | |
Matt Arsenault | 3ecab8e | 2019-09-19 16:26:14 +0000 | [diff] [blame] | 561 | bool hasScalarMulHiInsts() const { |
| 562 | return GFX9Insts; |
| 563 | } |
| 564 | |
Wei Ding | 205bfdb | 2017-02-10 02:15:29 +0000 | [diff] [blame] | 565 | TrapHandlerAbi getTrapHandlerAbi() const { |
| 566 | return isAmdHsaOS() ? TrapHandlerAbiHsa : TrapHandlerAbiNone; |
| 567 | } |
| 568 | |
Matt Arsenault | e4c2e9b | 2019-06-19 23:54:58 +0000 | [diff] [blame] | 569 | /// True if the offset field of DS instructions works as expected. On SI, the |
| 570 | /// offset uses a 16-bit adder and does not always wrap properly. |
| 571 | bool hasUsableDSOffset() const { |
| 572 | return getGeneration() >= SEA_ISLANDS; |
| 573 | } |
| 574 | |
Matt Arsenault | 706f930 | 2015-07-06 16:01:58 +0000 | [diff] [blame] | 575 | bool unsafeDSOffsetFoldingEnabled() const { |
| 576 | return EnableUnsafeDSOffsetFolding; |
| 577 | } |
| 578 | |
Matt Arsenault | e4c2e9b | 2019-06-19 23:54:58 +0000 | [diff] [blame] | 579 | /// Condition output from div_scale is usable. |
| 580 | bool hasUsableDivScaleConditionOutput() const { |
| 581 | return getGeneration() != SOUTHERN_ISLANDS; |
| 582 | } |
| 583 | |
| 584 | /// Extra wait hazard is needed in some cases before |
| 585 | /// s_cbranch_vccnz/s_cbranch_vccz. |
| 586 | bool hasReadVCCZBug() const { |
| 587 | return getGeneration() <= SEA_ISLANDS; |
| 588 | } |
| 589 | |
| 590 | /// A read of an SGPR by SMRD instruction requires 4 wait states when the SGPR |
| 591 | /// was written by a VALU instruction. |
| 592 | bool hasSMRDReadVALUDefHazard() const { |
| 593 | return getGeneration() == SOUTHERN_ISLANDS; |
| 594 | } |
| 595 | |
| 596 | /// A read of an SGPR by a VMEM instruction requires 5 wait states when the |
| 597 | /// SGPR was written by a VALU Instruction. |
| 598 | bool hasVMEMReadSGPRVALUDefHazard() const { |
| 599 | return getGeneration() >= VOLCANIC_ISLANDS; |
| 600 | } |
| 601 | |
| 602 | bool hasRFEHazards() const { |
| 603 | return getGeneration() >= VOLCANIC_ISLANDS; |
| 604 | } |
| 605 | |
| 606 | /// Number of hazard wait states for s_setreg_b32/s_setreg_imm32_b32. |
| 607 | unsigned getSetRegWaitStates() const { |
| 608 | return getGeneration() <= SEA_ISLANDS ? 1 : 2; |
| 609 | } |
| 610 | |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 611 | bool dumpCode() const { |
| 612 | return DumpCode; |
Matt Arsenault | d782d05 | 2014-06-27 17:57:00 +0000 | [diff] [blame] | 613 | } |
| 614 | |
Matt Arsenault | 8a028bf | 2016-05-16 21:19:59 +0000 | [diff] [blame] | 615 | /// Return the amount of LDS that can be used that will not restrict the |
| 616 | /// occupancy lower than WaveCount. |
Stanislav Mekhanoshin | 2b913b1 | 2017-02-01 22:59:50 +0000 | [diff] [blame] | 617 | unsigned getMaxLocalMemSizeWithWaveCount(unsigned WaveCount, |
| 618 | const Function &) const; |
Matt Arsenault | 8a028bf | 2016-05-16 21:19:59 +0000 | [diff] [blame] | 619 | |
Matt Arsenault | db0ed3e | 2019-10-31 18:50:30 -0700 | [diff] [blame] | 620 | /// Alias for hasFP64FP16Denormals |
| 621 | bool hasFP16Denormals(const Function &F) const { |
Matt Arsenault | a6867fd | 2017-01-23 22:31:03 +0000 | [diff] [blame] | 622 | return FP64FP16Denormals; |
Konstantin Zhuravlyov | f86e4b7 | 2016-11-13 07:01:11 +0000 | [diff] [blame] | 623 | } |
Matt Arsenault | 8a028bf | 2016-05-16 21:19:59 +0000 | [diff] [blame] | 624 | |
Matt Arsenault | db0ed3e | 2019-10-31 18:50:30 -0700 | [diff] [blame] | 625 | /// Alias for hasFP64FP16Denormals |
| 626 | bool hasFP64Denormals(const Function &F) const { |
| 627 | return FP64FP16Denormals; |
| 628 | } |
| 629 | |
| 630 | bool hasFP64FP16Denormals(const Function &F) const { |
Matt Arsenault | a6867fd | 2017-01-23 22:31:03 +0000 | [diff] [blame] | 631 | return FP64FP16Denormals; |
Matt Arsenault | 24ee078 | 2016-02-12 02:40:47 +0000 | [diff] [blame] | 632 | } |
| 633 | |
Stanislav Mekhanoshin | dc2890a | 2017-07-13 23:59:15 +0000 | [diff] [blame] | 634 | bool supportsMinMaxDenormModes() const { |
| 635 | return getGeneration() >= AMDGPUSubtarget::GFX9; |
| 636 | } |
| 637 | |
Austin Kerbow | a05c384 | 2019-08-06 02:16:11 +0000 | [diff] [blame] | 638 | /// \returns If target supports S_DENORM_MODE. |
| 639 | bool hasDenormModeInst() const { |
| 640 | return getGeneration() >= AMDGPUSubtarget::GFX10; |
| 641 | } |
| 642 | |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 643 | bool useFlatForGlobal() const { |
| 644 | return FlatForGlobal; |
Tom Stellard | ec87f84 | 2015-05-25 16:15:54 +0000 | [diff] [blame] | 645 | } |
| 646 | |
Farhana Aleen | a7cb311 | 2018-03-09 17:41:39 +0000 | [diff] [blame] | 647 | /// \returns If target supports ds_read/write_b128 and user enables generation |
| 648 | /// of ds_read/write_b128. |
Marek Olsak | a9a58fa | 2018-04-10 22:48:23 +0000 | [diff] [blame] | 649 | bool useDS128() const { |
| 650 | return CIInsts && EnableDS128; |
Farhana Aleen | a7cb311 | 2018-03-09 17:41:39 +0000 | [diff] [blame] | 651 | } |
| 652 | |
Matt Arsenault | e4c2e9b | 2019-06-19 23:54:58 +0000 | [diff] [blame] | 653 | /// Have v_trunc_f64, v_ceil_f64, v_rndne_f64 |
| 654 | bool haveRoundOpsF64() const { |
| 655 | return CIInsts; |
| 656 | } |
| 657 | |
Matt Arsenault | caf0ed4 | 2017-11-30 00:52:40 +0000 | [diff] [blame] | 658 | /// \returns If MUBUF instructions always perform range checking, even for |
| 659 | /// buffer resources used for private memory access. |
| 660 | bool privateMemoryResourceIsRangeChecked() const { |
| 661 | return getGeneration() < AMDGPUSubtarget::GFX9; |
| 662 | } |
| 663 | |
David Stuttard | f77079f | 2019-01-14 11:55:24 +0000 | [diff] [blame] | 664 | /// \returns If target requires PRT Struct NULL support (zero result registers |
| 665 | /// for sparse texture support). |
| 666 | bool usePRTStrictNull() const { |
| 667 | return EnablePRTStrictNull; |
| 668 | } |
| 669 | |
Konstantin Zhuravlyov | be6c0ca | 2017-06-02 17:40:26 +0000 | [diff] [blame] | 670 | bool hasAutoWaitcntBeforeBarrier() const { |
| 671 | return AutoWaitcntBeforeBarrier; |
| 672 | } |
| 673 | |
Konstantin Zhuravlyov | eda425e | 2017-10-14 15:59:07 +0000 | [diff] [blame] | 674 | bool hasCodeObjectV3() const { |
Konstantin Zhuravlyov | a25e052 | 2018-11-15 02:32:43 +0000 | [diff] [blame] | 675 | // FIXME: Need to add code object v3 support for mesa and pal. |
| 676 | return isAmdHsaOS() ? CodeObjectV3 : false; |
Konstantin Zhuravlyov | eda425e | 2017-10-14 15:59:07 +0000 | [diff] [blame] | 677 | } |
| 678 | |
Matt Arsenault | 7f681ac | 2016-07-01 23:03:44 +0000 | [diff] [blame] | 679 | bool hasUnalignedBufferAccess() const { |
| 680 | return UnalignedBufferAccess; |
| 681 | } |
| 682 | |
Tom Stellard | 64a9d08 | 2016-10-14 18:10:39 +0000 | [diff] [blame] | 683 | bool hasUnalignedScratchAccess() const { |
| 684 | return UnalignedScratchAccess; |
| 685 | } |
| 686 | |
Matt Arsenault | e823d92 | 2017-02-18 18:29:53 +0000 | [diff] [blame] | 687 | bool hasApertureRegs() const { |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 688 | return HasApertureRegs; |
Matt Arsenault | e823d92 | 2017-02-18 18:29:53 +0000 | [diff] [blame] | 689 | } |
| 690 | |
Wei Ding | 205bfdb | 2017-02-10 02:15:29 +0000 | [diff] [blame] | 691 | bool isTrapHandlerEnabled() const { |
| 692 | return TrapHandler; |
| 693 | } |
| 694 | |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 695 | bool isXNACKEnabled() const { |
| 696 | return EnableXNACK; |
| 697 | } |
Tom Stellard | b8fd6ef | 2014-12-02 22:00:07 +0000 | [diff] [blame] | 698 | |
Stanislav Mekhanoshin | cee607e | 2019-04-24 17:03:15 +0000 | [diff] [blame] | 699 | bool isCuModeEnabled() const { |
| 700 | return EnableCuMode; |
| 701 | } |
| 702 | |
Matt Arsenault | b6491cc | 2017-01-31 01:20:54 +0000 | [diff] [blame] | 703 | bool hasFlatAddressSpace() const { |
| 704 | return FlatAddressSpace; |
| 705 | } |
| 706 | |
Matt Arsenault | e4c2e9b | 2019-06-19 23:54:58 +0000 | [diff] [blame] | 707 | bool hasFlatScrRegister() const { |
| 708 | return hasFlatAddressSpace(); |
| 709 | } |
| 710 | |
Matt Arsenault | acdc765 | 2017-05-10 21:19:05 +0000 | [diff] [blame] | 711 | bool hasFlatInstOffsets() const { |
| 712 | return FlatInstOffsets; |
| 713 | } |
| 714 | |
| 715 | bool hasFlatGlobalInsts() const { |
| 716 | return FlatGlobalInsts; |
| 717 | } |
| 718 | |
| 719 | bool hasFlatScratchInsts() const { |
| 720 | return FlatScratchInsts; |
| 721 | } |
| 722 | |
Stanislav Mekhanoshin | cee607e | 2019-04-24 17:03:15 +0000 | [diff] [blame] | 723 | bool hasScalarFlatScratchInsts() const { |
| 724 | return ScalarFlatScratchInsts; |
| 725 | } |
| 726 | |
| 727 | bool hasFlatSegmentOffsetBug() const { |
| 728 | return HasFlatSegmentOffsetBug; |
| 729 | } |
| 730 | |
Mark Searles | f0b93f1 | 2018-06-04 16:51:59 +0000 | [diff] [blame] | 731 | bool hasFlatLgkmVMemCountInOrder() const { |
| 732 | return getGeneration() > GFX9; |
| 733 | } |
| 734 | |
Matt Arsenault | ed6e8f0 | 2017-09-01 18:36:06 +0000 | [diff] [blame] | 735 | bool hasD16LoadStore() const { |
| 736 | return getGeneration() >= GFX9; |
| 737 | } |
| 738 | |
Matt Arsenault | e8c03a2 | 2019-03-08 20:58:11 +0000 | [diff] [blame] | 739 | bool d16PreservesUnusedBits() const { |
| 740 | return hasD16LoadStore() && !isSRAMECCEnabled(); |
| 741 | } |
| 742 | |
Matt Arsenault | e4c2e9b | 2019-06-19 23:54:58 +0000 | [diff] [blame] | 743 | bool hasD16Images() const { |
| 744 | return getGeneration() >= VOLCANIC_ISLANDS; |
| 745 | } |
| 746 | |
Matt Arsenault | 3f71c0e | 2017-11-29 00:55:57 +0000 | [diff] [blame] | 747 | /// Return if most LDS instructions have an m0 use that require m0 to be |
| 748 | /// iniitalized. |
| 749 | bool ldsRequiresM0Init() const { |
| 750 | return getGeneration() < GFX9; |
| 751 | } |
| 752 | |
Matt Arsenault | 8ad1dec | 2019-06-20 20:54:32 +0000 | [diff] [blame] | 753 | // True if the hardware rewinds and replays GWS operations if a wave is |
| 754 | // preempted. |
| 755 | // |
| 756 | // If this is false, a GWS operation requires testing if a nack set the |
| 757 | // MEM_VIOL bit, and repeating if so. |
| 758 | bool hasGWSAutoReplay() const { |
| 759 | return getGeneration() >= GFX9; |
| 760 | } |
| 761 | |
Matt Arsenault | 740322f | 2019-06-20 21:11:42 +0000 | [diff] [blame] | 762 | /// \returns if target has ds_gws_sema_release_all instruction. |
| 763 | bool hasGWSSemaReleaseAll() const { |
| 764 | return CIInsts; |
| 765 | } |
| 766 | |
Matt Arsenault | c37fe66 | 2017-07-20 17:42:47 +0000 | [diff] [blame] | 767 | bool hasAddNoCarry() const { |
| 768 | return AddNoCarryInsts; |
| 769 | } |
| 770 | |
Changpeng Fang | 44dfa1d | 2018-01-12 21:12:19 +0000 | [diff] [blame] | 771 | bool hasUnpackedD16VMem() const { |
| 772 | return HasUnpackedD16VMem; |
| 773 | } |
| 774 | |
Tom Stellard | 2f3f985 | 2017-01-25 01:25:13 +0000 | [diff] [blame] | 775 | // Covers VS/PS/CS graphics shaders |
Matt Arsenault | ceafc55 | 2018-05-29 17:42:50 +0000 | [diff] [blame] | 776 | bool isMesaGfxShader(const Function &F) const { |
| 777 | return isMesa3DOS() && AMDGPU::isShader(F.getCallingConv()); |
Tom Stellard | 2f3f985 | 2017-01-25 01:25:13 +0000 | [diff] [blame] | 778 | } |
| 779 | |
Matt Arsenault | 4f6318f | 2017-11-06 17:04:37 +0000 | [diff] [blame] | 780 | bool hasMad64_32() const { |
| 781 | return getGeneration() >= SEA_ISLANDS; |
| 782 | } |
| 783 | |
Sam Kolton | 3c4933f | 2017-06-22 06:26:41 +0000 | [diff] [blame] | 784 | bool hasSDWAOmod() const { |
| 785 | return HasSDWAOmod; |
| 786 | } |
| 787 | |
| 788 | bool hasSDWAScalar() const { |
| 789 | return HasSDWAScalar; |
| 790 | } |
| 791 | |
| 792 | bool hasSDWASdst() const { |
| 793 | return HasSDWASdst; |
| 794 | } |
| 795 | |
| 796 | bool hasSDWAMac() const { |
| 797 | return HasSDWAMac; |
| 798 | } |
| 799 | |
Sam Kolton | a179d25 | 2017-06-27 15:02:23 +0000 | [diff] [blame] | 800 | bool hasSDWAOutModsVOPC() const { |
| 801 | return HasSDWAOutModsVOPC; |
Sam Kolton | 3c4933f | 2017-06-22 06:26:41 +0000 | [diff] [blame] | 802 | } |
| 803 | |
Matt Arsenault | 0084adc | 2018-04-30 19:08:16 +0000 | [diff] [blame] | 804 | bool hasDLInsts() const { |
| 805 | return HasDLInsts; |
| 806 | } |
| 807 | |
Stanislav Mekhanoshin | 0e858b0 | 2019-02-09 00:34:21 +0000 | [diff] [blame] | 808 | bool hasDot1Insts() const { |
| 809 | return HasDot1Insts; |
| 810 | } |
| 811 | |
| 812 | bool hasDot2Insts() const { |
| 813 | return HasDot2Insts; |
Stanislav Mekhanoshin | d3757d3 | 2019-01-10 03:25:20 +0000 | [diff] [blame] | 814 | } |
| 815 | |
Stanislav Mekhanoshin | 22b2c3d | 2019-07-09 18:10:06 +0000 | [diff] [blame] | 816 | bool hasDot3Insts() const { |
| 817 | return HasDot3Insts; |
| 818 | } |
| 819 | |
| 820 | bool hasDot4Insts() const { |
| 821 | return HasDot4Insts; |
| 822 | } |
| 823 | |
Stanislav Mekhanoshin | c43e67b | 2019-06-14 00:33:31 +0000 | [diff] [blame] | 824 | bool hasDot5Insts() const { |
| 825 | return HasDot5Insts; |
| 826 | } |
| 827 | |
| 828 | bool hasDot6Insts() const { |
| 829 | return HasDot6Insts; |
| 830 | } |
| 831 | |
Stanislav Mekhanoshin | 22b2c3d | 2019-07-09 18:10:06 +0000 | [diff] [blame] | 832 | bool hasMAIInsts() const { |
| 833 | return HasMAIInsts; |
| 834 | } |
| 835 | |
| 836 | bool hasPkFmacF16Inst() const { |
| 837 | return HasPkFmacF16Inst; |
| 838 | } |
| 839 | |
| 840 | bool hasAtomicFaddInsts() const { |
| 841 | return HasAtomicFaddInsts; |
| 842 | } |
| 843 | |
Konstantin Zhuravlyov | 108927b | 2018-11-05 22:44:19 +0000 | [diff] [blame] | 844 | bool isSRAMECCEnabled() const { |
| 845 | return EnableSRAMECC; |
Konstantin Zhuravlyov | c2c2eb7 | 2018-05-04 20:06:57 +0000 | [diff] [blame] | 846 | } |
| 847 | |
Stanislav Mekhanoshin | cee607e | 2019-04-24 17:03:15 +0000 | [diff] [blame] | 848 | bool hasNoSdstCMPX() const { |
| 849 | return HasNoSdstCMPX; |
| 850 | } |
| 851 | |
| 852 | bool hasVscnt() const { |
| 853 | return HasVscnt; |
| 854 | } |
| 855 | |
| 856 | bool hasRegisterBanking() const { |
| 857 | return HasRegisterBanking; |
| 858 | } |
| 859 | |
| 860 | bool hasVOP3Literal() const { |
| 861 | return HasVOP3Literal; |
| 862 | } |
| 863 | |
| 864 | bool hasNoDataDepHazard() const { |
| 865 | return HasNoDataDepHazard; |
| 866 | } |
| 867 | |
| 868 | bool vmemWriteNeedsExpWaitcnt() const { |
| 869 | return getGeneration() < SEA_ISLANDS; |
| 870 | } |
| 871 | |
Matt Arsenault | 869fec2 | 2017-04-17 19:48:24 +0000 | [diff] [blame] | 872 | // Scratch is allocated in 256 dword per wave blocks for the entire |
| 873 | // wavefront. When viewed from the perspecive of an arbitrary workitem, this |
| 874 | // is 4-byte aligned. |
Matt Arsenault | ffb132e | 2018-03-29 20:22:04 +0000 | [diff] [blame] | 875 | // |
| 876 | // Only 4-byte alignment is really needed to access anything. Transformations |
| 877 | // on the pointer value itself may rely on the alignment / known low bits of |
| 878 | // the pointer. Set this to something above the minimum to avoid needing |
| 879 | // dynamic realignment in common cases. |
Guillaume Chatelet | 882c43d | 2019-10-17 07:49:39 +0000 | [diff] [blame] | 880 | Align getStackAlignment() const { return Align(16); } |
Tom Stellard | 347ac79 | 2015-06-26 21:15:07 +0000 | [diff] [blame] | 881 | |
Craig Topper | 5656db4 | 2014-04-29 07:57:24 +0000 | [diff] [blame] | 882 | bool enableMachineScheduler() const override { |
Tom Stellard | 83f0bce | 2015-01-29 16:55:25 +0000 | [diff] [blame] | 883 | return true; |
Andrew Trick | 978674b | 2013-09-20 05:14:41 +0000 | [diff] [blame] | 884 | } |
| 885 | |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 886 | bool enableSubRegLiveness() const override { |
| 887 | return true; |
| 888 | } |
Konstantin Zhuravlyov | 1d65026 | 2016-09-06 20:22:28 +0000 | [diff] [blame] | 889 | |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 890 | void setScalarizeGlobalBehavior(bool b) { ScalarizeGlobal = b; } |
| 891 | bool getScalarizeGlobalBehavior() const { return ScalarizeGlobal; } |
Konstantin Zhuravlyov | 9f89ede | 2017-02-08 14:05:23 +0000 | [diff] [blame] | 892 | |
Konstantin Zhuravlyov | 1d65026 | 2016-09-06 20:22:28 +0000 | [diff] [blame] | 893 | /// \returns Number of execution units per compute unit supported by the |
| 894 | /// subtarget. |
| 895 | unsigned getEUsPerCU() const { |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 896 | return AMDGPU::IsaInfo::getEUsPerCU(this); |
Konstantin Zhuravlyov | 1d65026 | 2016-09-06 20:22:28 +0000 | [diff] [blame] | 897 | } |
| 898 | |
| 899 | /// \returns Maximum number of waves per compute unit supported by the |
| 900 | /// subtarget without any kind of limitation. |
| 901 | unsigned getMaxWavesPerCU() const { |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 902 | return AMDGPU::IsaInfo::getMaxWavesPerCU(this); |
Konstantin Zhuravlyov | 1d65026 | 2016-09-06 20:22:28 +0000 | [diff] [blame] | 903 | } |
| 904 | |
| 905 | /// \returns Maximum number of waves per compute unit supported by the |
Konstantin Zhuravlyov | 9f89ede | 2017-02-08 14:05:23 +0000 | [diff] [blame] | 906 | /// subtarget and limited by given \p FlatWorkGroupSize. |
Konstantin Zhuravlyov | 1d65026 | 2016-09-06 20:22:28 +0000 | [diff] [blame] | 907 | unsigned getMaxWavesPerCU(unsigned FlatWorkGroupSize) const { |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 908 | return AMDGPU::IsaInfo::getMaxWavesPerCU(this, FlatWorkGroupSize); |
Konstantin Zhuravlyov | 1d65026 | 2016-09-06 20:22:28 +0000 | [diff] [blame] | 909 | } |
| 910 | |
Konstantin Zhuravlyov | 9f89ede | 2017-02-08 14:05:23 +0000 | [diff] [blame] | 911 | /// \returns Number of waves per work group supported by the subtarget and |
| 912 | /// limited by given \p FlatWorkGroupSize. |
Konstantin Zhuravlyov | 1d65026 | 2016-09-06 20:22:28 +0000 | [diff] [blame] | 913 | unsigned getWavesPerWorkGroup(unsigned FlatWorkGroupSize) const { |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 914 | return AMDGPU::IsaInfo::getWavesPerWorkGroup(this, FlatWorkGroupSize); |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 915 | } |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 916 | |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 917 | // static wrappers |
| 918 | static bool hasHalfRate64Ops(const TargetSubtargetInfo &STI); |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 919 | |
Matt Arsenault | 9f5e0ef | 2017-01-25 04:25:02 +0000 | [diff] [blame] | 920 | // XXX - Why is this here if it isn't in the default pass set? |
| 921 | bool enableEarlyIfConversion() const override { |
| 922 | return true; |
| 923 | } |
| 924 | |
Tom Stellard | 83f0bce | 2015-01-29 16:55:25 +0000 | [diff] [blame] | 925 | void overrideSchedPolicy(MachineSchedPolicy &Policy, |
Tom Stellard | 83f0bce | 2015-01-29 16:55:25 +0000 | [diff] [blame] | 926 | unsigned NumRegionInstrs) const override; |
| 927 | |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 928 | unsigned getMaxNumUserSGPRs() const { |
| 929 | return 16; |
| 930 | } |
| 931 | |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 932 | bool hasSMemRealTime() const { |
| 933 | return HasSMemRealTime; |
| 934 | } |
| 935 | |
Matt Arsenault | cc88ce3 | 2016-10-12 18:00:51 +0000 | [diff] [blame] | 936 | bool hasMovrel() const { |
| 937 | return HasMovrel; |
| 938 | } |
| 939 | |
| 940 | bool hasVGPRIndexMode() const { |
| 941 | return HasVGPRIndexMode; |
| 942 | } |
| 943 | |
Marek Olsak | e22fdb9 | 2017-03-21 17:00:32 +0000 | [diff] [blame] | 944 | bool useVGPRIndexMode(bool UserEnable) const { |
| 945 | return !hasMovrel() || (UserEnable && hasVGPRIndexMode()); |
| 946 | } |
| 947 | |
Matt Arsenault | 7b1dc2c | 2016-09-17 02:02:19 +0000 | [diff] [blame] | 948 | bool hasScalarCompareEq64() const { |
| 949 | return getGeneration() >= VOLCANIC_ISLANDS; |
| 950 | } |
| 951 | |
Matt Arsenault | 7b64755 | 2016-10-28 21:55:15 +0000 | [diff] [blame] | 952 | bool hasScalarStores() const { |
| 953 | return HasScalarStores; |
| 954 | } |
| 955 | |
Dmitry Preobrazhensky | 6bad04e | 2018-04-02 16:10:25 +0000 | [diff] [blame] | 956 | bool hasScalarAtomics() const { |
| 957 | return HasScalarAtomics; |
| 958 | } |
| 959 | |
Matt Arsenault | a5840c3 | 2019-01-22 18:36:06 +0000 | [diff] [blame] | 960 | bool hasLDSFPAtomics() const { |
Stanislav Mekhanoshin | 7895c03 | 2019-04-05 18:24:34 +0000 | [diff] [blame] | 961 | return GFX8Insts; |
Matt Arsenault | a5840c3 | 2019-01-22 18:36:06 +0000 | [diff] [blame] | 962 | } |
Matt Arsenault | c88ba36 | 2016-10-29 04:05:06 +0000 | [diff] [blame] | 963 | |
Sam Kolton | 07dbde2 | 2017-01-20 10:01:25 +0000 | [diff] [blame] | 964 | bool hasDPP() const { |
| 965 | return HasDPP; |
| 966 | } |
| 967 | |
Jay Foad | eac2386 | 2019-08-23 10:07:43 +0000 | [diff] [blame] | 968 | bool hasDPPBroadcasts() const { |
| 969 | return HasDPP && getGeneration() < GFX10; |
| 970 | } |
| 971 | |
| 972 | bool hasDPPWavefrontShifts() const { |
| 973 | return HasDPP && getGeneration() < GFX10; |
| 974 | } |
| 975 | |
Stanislav Mekhanoshin | 245b5ba | 2019-06-12 18:02:41 +0000 | [diff] [blame] | 976 | bool hasDPP8() const { |
| 977 | return HasDPP8; |
| 978 | } |
| 979 | |
Ryan Taylor | 1f334d0 | 2018-08-28 15:07:30 +0000 | [diff] [blame] | 980 | bool hasR128A16() const { |
| 981 | return HasR128A16; |
| 982 | } |
| 983 | |
Ryan Taylor | 9ab812d | 2019-06-26 17:34:57 +0000 | [diff] [blame] | 984 | bool hasOffset3fBug() const { |
| 985 | return HasOffset3fBug; |
| 986 | } |
| 987 | |
Stanislav Mekhanoshin | cee607e | 2019-04-24 17:03:15 +0000 | [diff] [blame] | 988 | bool hasNSAEncoding() const { |
| 989 | return HasNSAEncoding; |
| 990 | } |
| 991 | |
| 992 | bool hasMadF16() const; |
| 993 | |
Tom Stellard | de008d3 | 2016-01-21 04:28:34 +0000 | [diff] [blame] | 994 | bool enableSIScheduler() const { |
| 995 | return EnableSIScheduler; |
| 996 | } |
| 997 | |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 998 | bool loadStoreOptEnabled() const { |
| 999 | return EnableLoadStoreOpt; |
Nicolai Haehnle | 5b50497 | 2016-01-04 23:35:53 +0000 | [diff] [blame] | 1000 | } |
| 1001 | |
Matt Arsenault | 43e92fe | 2016-06-24 06:30:11 +0000 | [diff] [blame] | 1002 | bool hasSGPRInitBug() const { |
| 1003 | return SGPRInitBug; |
Matt Arsenault | 41003af | 2015-11-30 21:16:07 +0000 | [diff] [blame] | 1004 | } |
Tom Stellard | 0d23ebe | 2016-08-29 19:42:52 +0000 | [diff] [blame] | 1005 | |
Stanislav Mekhanoshin | 8fe1245 | 2019-08-23 22:09:58 +0000 | [diff] [blame] | 1006 | bool hasMFMAInlineLiteralBug() const { |
| 1007 | return HasMFMAInlineLiteralBug; |
| 1008 | } |
| 1009 | |
Tom Stellard | b133fbb | 2016-10-27 23:05:31 +0000 | [diff] [blame] | 1010 | bool has12DWordStoreHazard() const { |
| 1011 | return getGeneration() != AMDGPUSubtarget::SOUTHERN_ISLANDS; |
| 1012 | } |
| 1013 | |
Neil Henning | e85d45a | 2019-01-10 16:21:08 +0000 | [diff] [blame] | 1014 | // \returns true if the subtarget supports DWORDX3 load/store instructions. |
| 1015 | bool hasDwordx3LoadStores() const { |
| 1016 | return CIInsts; |
| 1017 | } |
| 1018 | |
Matt Arsenault | e823d92 | 2017-02-18 18:29:53 +0000 | [diff] [blame] | 1019 | bool hasSMovFedHazard() const { |
Stanislav Mekhanoshin | 7895c03 | 2019-04-05 18:24:34 +0000 | [diff] [blame] | 1020 | return getGeneration() == AMDGPUSubtarget::GFX9; |
Matt Arsenault | e823d92 | 2017-02-18 18:29:53 +0000 | [diff] [blame] | 1021 | } |
| 1022 | |
Matt Arsenault | a41351e | 2017-11-17 21:35:32 +0000 | [diff] [blame] | 1023 | bool hasReadM0MovRelInterpHazard() const { |
Stanislav Mekhanoshin | 7895c03 | 2019-04-05 18:24:34 +0000 | [diff] [blame] | 1024 | return getGeneration() == AMDGPUSubtarget::GFX9; |
Matt Arsenault | e823d92 | 2017-02-18 18:29:53 +0000 | [diff] [blame] | 1025 | } |
| 1026 | |
Matt Arsenault | a41351e | 2017-11-17 21:35:32 +0000 | [diff] [blame] | 1027 | bool hasReadM0SendMsgHazard() const { |
Stanislav Mekhanoshin | 7895c03 | 2019-04-05 18:24:34 +0000 | [diff] [blame] | 1028 | return getGeneration() >= AMDGPUSubtarget::VOLCANIC_ISLANDS && |
| 1029 | getGeneration() <= AMDGPUSubtarget::GFX9; |
Matt Arsenault | a41351e | 2017-11-17 21:35:32 +0000 | [diff] [blame] | 1030 | } |
| 1031 | |
Stanislav Mekhanoshin | cee607e | 2019-04-24 17:03:15 +0000 | [diff] [blame] | 1032 | bool hasVcmpxPermlaneHazard() const { |
| 1033 | return HasVcmpxPermlaneHazard; |
| 1034 | } |
| 1035 | |
| 1036 | bool hasVMEMtoScalarWriteHazard() const { |
| 1037 | return HasVMEMtoScalarWriteHazard; |
| 1038 | } |
| 1039 | |
| 1040 | bool hasSMEMtoVectorWriteHazard() const { |
| 1041 | return HasSMEMtoVectorWriteHazard; |
| 1042 | } |
| 1043 | |
| 1044 | bool hasLDSMisalignedBug() const { |
| 1045 | return LDSMisalignedBug && !EnableCuMode; |
| 1046 | } |
| 1047 | |
| 1048 | bool hasInstFwdPrefetchBug() const { |
| 1049 | return HasInstFwdPrefetchBug; |
| 1050 | } |
| 1051 | |
| 1052 | bool hasVcmpxExecWARHazard() const { |
| 1053 | return HasVcmpxExecWARHazard; |
| 1054 | } |
| 1055 | |
| 1056 | bool hasLdsBranchVmemWARHazard() const { |
| 1057 | return HasLdsBranchVmemWARHazard; |
| 1058 | } |
| 1059 | |
| 1060 | bool hasNSAtoVMEMBug() const { |
| 1061 | return HasNSAtoVMEMBug; |
| 1062 | } |
| 1063 | |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 1064 | /// Return the maximum number of waves per SIMD for kernels using \p SGPRs |
| 1065 | /// SGPRs |
Tom Stellard | 0d23ebe | 2016-08-29 19:42:52 +0000 | [diff] [blame] | 1066 | unsigned getOccupancyWithNumSGPRs(unsigned SGPRs) const; |
| 1067 | |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 1068 | /// Return the maximum number of waves per SIMD for kernels using \p VGPRs |
| 1069 | /// VGPRs |
Tom Stellard | 0d23ebe | 2016-08-29 19:42:52 +0000 | [diff] [blame] | 1070 | unsigned getOccupancyWithNumVGPRs(unsigned VGPRs) const; |
Konstantin Zhuravlyov | d7bdf24 | 2016-09-30 16:50:36 +0000 | [diff] [blame] | 1071 | |
Stanislav Mekhanoshin | 2594fa8 | 2019-07-31 01:07:10 +0000 | [diff] [blame] | 1072 | /// Return occupancy for the given function. Used LDS and a number of |
| 1073 | /// registers if provided. |
| 1074 | /// Note, occupancy can be affected by the scratch allocation as well, but |
| 1075 | /// we do not have enough information to compute it. |
| 1076 | unsigned computeOccupancy(const MachineFunction &MF, unsigned LDSSize = 0, |
| 1077 | unsigned NumSGPRs = 0, unsigned NumVGPRs = 0) const; |
| 1078 | |
Matt Arsenault | e823d92 | 2017-02-18 18:29:53 +0000 | [diff] [blame] | 1079 | /// \returns true if the flat_scratch register should be initialized with the |
| 1080 | /// pointer to the wave's scratch memory rather than a size and offset. |
| 1081 | bool flatScratchIsPointer() const { |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 1082 | return getGeneration() >= AMDGPUSubtarget::GFX9; |
Konstantin Zhuravlyov | d7bdf24 | 2016-09-30 16:50:36 +0000 | [diff] [blame] | 1083 | } |
Matt Arsenault | 4eae301 | 2016-10-28 20:31:47 +0000 | [diff] [blame] | 1084 | |
Tim Renouf | 832f90f | 2018-02-26 14:46:43 +0000 | [diff] [blame] | 1085 | /// \returns true if the machine has merged shaders in which s0-s7 are |
| 1086 | /// reserved by the hardware and user SGPRs start at s8 |
| 1087 | bool hasMergedShaders() const { |
| 1088 | return getGeneration() >= GFX9; |
| 1089 | } |
| 1090 | |
Konstantin Zhuravlyov | e03b1d7 | 2017-02-08 13:02:33 +0000 | [diff] [blame] | 1091 | /// \returns SGPR allocation granularity supported by the subtarget. |
| 1092 | unsigned getSGPRAllocGranule() const { |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 1093 | return AMDGPU::IsaInfo::getSGPRAllocGranule(this); |
Konstantin Zhuravlyov | e22fbcb | 2017-02-08 13:18:40 +0000 | [diff] [blame] | 1094 | } |
| 1095 | |
| 1096 | /// \returns SGPR encoding granularity supported by the subtarget. |
| 1097 | unsigned getSGPREncodingGranule() const { |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 1098 | return AMDGPU::IsaInfo::getSGPREncodingGranule(this); |
Konstantin Zhuravlyov | e03b1d7 | 2017-02-08 13:02:33 +0000 | [diff] [blame] | 1099 | } |
| 1100 | |
| 1101 | /// \returns Total number of SGPRs supported by the subtarget. |
| 1102 | unsigned getTotalNumSGPRs() const { |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 1103 | return AMDGPU::IsaInfo::getTotalNumSGPRs(this); |
Konstantin Zhuravlyov | e03b1d7 | 2017-02-08 13:02:33 +0000 | [diff] [blame] | 1104 | } |
| 1105 | |
| 1106 | /// \returns Addressable number of SGPRs supported by the subtarget. |
| 1107 | unsigned getAddressableNumSGPRs() const { |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 1108 | return AMDGPU::IsaInfo::getAddressableNumSGPRs(this); |
Konstantin Zhuravlyov | e03b1d7 | 2017-02-08 13:02:33 +0000 | [diff] [blame] | 1109 | } |
| 1110 | |
| 1111 | /// \returns Minimum number of SGPRs that meets the given number of waves per |
| 1112 | /// execution unit requirement supported by the subtarget. |
Konstantin Zhuravlyov | 9f89ede | 2017-02-08 14:05:23 +0000 | [diff] [blame] | 1113 | unsigned getMinNumSGPRs(unsigned WavesPerEU) const { |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 1114 | return AMDGPU::IsaInfo::getMinNumSGPRs(this, WavesPerEU); |
Konstantin Zhuravlyov | 9f89ede | 2017-02-08 14:05:23 +0000 | [diff] [blame] | 1115 | } |
Konstantin Zhuravlyov | e03b1d7 | 2017-02-08 13:02:33 +0000 | [diff] [blame] | 1116 | |
| 1117 | /// \returns Maximum number of SGPRs that meets the given number of waves per |
| 1118 | /// execution unit requirement supported by the subtarget. |
Konstantin Zhuravlyov | 9f89ede | 2017-02-08 14:05:23 +0000 | [diff] [blame] | 1119 | unsigned getMaxNumSGPRs(unsigned WavesPerEU, bool Addressable) const { |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 1120 | return AMDGPU::IsaInfo::getMaxNumSGPRs(this, WavesPerEU, Addressable); |
Konstantin Zhuravlyov | 9f89ede | 2017-02-08 14:05:23 +0000 | [diff] [blame] | 1121 | } |
Konstantin Zhuravlyov | e03b1d7 | 2017-02-08 13:02:33 +0000 | [diff] [blame] | 1122 | |
| 1123 | /// \returns Reserved number of SGPRs for given function \p MF. |
| 1124 | unsigned getReservedNumSGPRs(const MachineFunction &MF) const; |
| 1125 | |
| 1126 | /// \returns Maximum number of SGPRs that meets number of waves per execution |
| 1127 | /// unit requirement for function \p MF, or number of SGPRs explicitly |
| 1128 | /// requested using "amdgpu-num-sgpr" attribute attached to function \p MF. |
| 1129 | /// |
| 1130 | /// \returns Value that meets number of waves per execution unit requirement |
| 1131 | /// if explicitly requested value cannot be converted to integer, violates |
| 1132 | /// subtarget's specifications, or does not meet number of waves per execution |
| 1133 | /// unit requirement. |
| 1134 | unsigned getMaxNumSGPRs(const MachineFunction &MF) const; |
| 1135 | |
| 1136 | /// \returns VGPR allocation granularity supported by the subtarget. |
| 1137 | unsigned getVGPRAllocGranule() const { |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 1138 | return AMDGPU::IsaInfo::getVGPRAllocGranule(this); |
Konstantin Zhuravlyov | e03b1d7 | 2017-02-08 13:02:33 +0000 | [diff] [blame] | 1139 | } |
| 1140 | |
Konstantin Zhuravlyov | e22fbcb | 2017-02-08 13:18:40 +0000 | [diff] [blame] | 1141 | /// \returns VGPR encoding granularity supported by the subtarget. |
| 1142 | unsigned getVGPREncodingGranule() const { |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 1143 | return AMDGPU::IsaInfo::getVGPREncodingGranule(this); |
Konstantin Zhuravlyov | e22fbcb | 2017-02-08 13:18:40 +0000 | [diff] [blame] | 1144 | } |
| 1145 | |
Konstantin Zhuravlyov | e03b1d7 | 2017-02-08 13:02:33 +0000 | [diff] [blame] | 1146 | /// \returns Total number of VGPRs supported by the subtarget. |
| 1147 | unsigned getTotalNumVGPRs() const { |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 1148 | return AMDGPU::IsaInfo::getTotalNumVGPRs(this); |
Konstantin Zhuravlyov | e03b1d7 | 2017-02-08 13:02:33 +0000 | [diff] [blame] | 1149 | } |
| 1150 | |
| 1151 | /// \returns Addressable number of VGPRs supported by the subtarget. |
| 1152 | unsigned getAddressableNumVGPRs() const { |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 1153 | return AMDGPU::IsaInfo::getAddressableNumVGPRs(this); |
Konstantin Zhuravlyov | e03b1d7 | 2017-02-08 13:02:33 +0000 | [diff] [blame] | 1154 | } |
| 1155 | |
| 1156 | /// \returns Minimum number of VGPRs that meets given number of waves per |
| 1157 | /// execution unit requirement supported by the subtarget. |
Konstantin Zhuravlyov | 9f89ede | 2017-02-08 14:05:23 +0000 | [diff] [blame] | 1158 | unsigned getMinNumVGPRs(unsigned WavesPerEU) const { |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 1159 | return AMDGPU::IsaInfo::getMinNumVGPRs(this, WavesPerEU); |
Konstantin Zhuravlyov | 9f89ede | 2017-02-08 14:05:23 +0000 | [diff] [blame] | 1160 | } |
Konstantin Zhuravlyov | e03b1d7 | 2017-02-08 13:02:33 +0000 | [diff] [blame] | 1161 | |
| 1162 | /// \returns Maximum number of VGPRs that meets given number of waves per |
| 1163 | /// execution unit requirement supported by the subtarget. |
Konstantin Zhuravlyov | 9f89ede | 2017-02-08 14:05:23 +0000 | [diff] [blame] | 1164 | unsigned getMaxNumVGPRs(unsigned WavesPerEU) const { |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 1165 | return AMDGPU::IsaInfo::getMaxNumVGPRs(this, WavesPerEU); |
Konstantin Zhuravlyov | 9f89ede | 2017-02-08 14:05:23 +0000 | [diff] [blame] | 1166 | } |
Konstantin Zhuravlyov | e03b1d7 | 2017-02-08 13:02:33 +0000 | [diff] [blame] | 1167 | |
Konstantin Zhuravlyov | e03b1d7 | 2017-02-08 13:02:33 +0000 | [diff] [blame] | 1168 | /// \returns Maximum number of VGPRs that meets number of waves per execution |
| 1169 | /// unit requirement for function \p MF, or number of VGPRs explicitly |
| 1170 | /// requested using "amdgpu-num-vgpr" attribute attached to function \p MF. |
| 1171 | /// |
| 1172 | /// \returns Value that meets number of waves per execution unit requirement |
| 1173 | /// if explicitly requested value cannot be converted to integer, violates |
| 1174 | /// subtarget's specifications, or does not meet number of waves per execution |
| 1175 | /// unit requirement. |
| 1176 | unsigned getMaxNumVGPRs(const MachineFunction &MF) const; |
Stanislav Mekhanoshin | d4ae470 | 2017-09-19 20:54:38 +0000 | [diff] [blame] | 1177 | |
| 1178 | void getPostRAMutations( |
| 1179 | std::vector<std::unique_ptr<ScheduleDAGMutation>> &Mutations) |
| 1180 | const override; |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 1181 | |
Stanislav Mekhanoshin | 68a2fef | 2019-06-13 23:47:36 +0000 | [diff] [blame] | 1182 | bool isWave32() const { |
| 1183 | return WavefrontSize == 32; |
| 1184 | } |
| 1185 | |
Stanislav Mekhanoshin | 5250021 | 2019-06-16 17:13:09 +0000 | [diff] [blame] | 1186 | const TargetRegisterClass *getBoolRC() const { |
| 1187 | return getRegisterInfo()->getBoolRC(); |
| 1188 | } |
| 1189 | |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 1190 | /// \returns Maximum number of work groups per compute unit supported by the |
| 1191 | /// subtarget and limited by given \p FlatWorkGroupSize. |
| 1192 | unsigned getMaxWorkGroupsPerCU(unsigned FlatWorkGroupSize) const override { |
| 1193 | return AMDGPU::IsaInfo::getMaxWorkGroupsPerCU(this, FlatWorkGroupSize); |
| 1194 | } |
| 1195 | |
| 1196 | /// \returns Minimum flat work group size supported by the subtarget. |
| 1197 | unsigned getMinFlatWorkGroupSize() const override { |
| 1198 | return AMDGPU::IsaInfo::getMinFlatWorkGroupSize(this); |
| 1199 | } |
| 1200 | |
| 1201 | /// \returns Maximum flat work group size supported by the subtarget. |
| 1202 | unsigned getMaxFlatWorkGroupSize() const override { |
| 1203 | return AMDGPU::IsaInfo::getMaxFlatWorkGroupSize(this); |
| 1204 | } |
| 1205 | |
| 1206 | /// \returns Maximum number of waves per execution unit supported by the |
| 1207 | /// subtarget and limited by given \p FlatWorkGroupSize. |
| 1208 | unsigned getMaxWavesPerEU(unsigned FlatWorkGroupSize) const override { |
| 1209 | return AMDGPU::IsaInfo::getMaxWavesPerEU(this, FlatWorkGroupSize); |
| 1210 | } |
| 1211 | |
| 1212 | /// \returns Minimum number of waves per execution unit supported by the |
| 1213 | /// subtarget. |
| 1214 | unsigned getMinWavesPerEU() const override { |
| 1215 | return AMDGPU::IsaInfo::getMinWavesPerEU(this); |
| 1216 | } |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 1217 | }; |
| 1218 | |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 1219 | class R600Subtarget final : public R600GenSubtargetInfo, |
Tom Stellard | 5bfbae5 | 2018-07-11 20:59:01 +0000 | [diff] [blame] | 1220 | public AMDGPUSubtarget { |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 1221 | private: |
| 1222 | R600InstrInfo InstrInfo; |
| 1223 | R600FrameLowering FrameLowering; |
| 1224 | bool FMA; |
| 1225 | bool CaymanISA; |
| 1226 | bool CFALUBug; |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 1227 | bool HasVertexCache; |
| 1228 | bool R600ALUInst; |
| 1229 | bool FP64; |
| 1230 | short TexVTXClauseSize; |
| 1231 | Generation Gen; |
| 1232 | R600TargetLowering TLInfo; |
| 1233 | InstrItineraryData InstrItins; |
| 1234 | SelectionDAGTargetInfo TSInfo; |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 1235 | |
| 1236 | public: |
| 1237 | R600Subtarget(const Triple &TT, StringRef CPU, StringRef FS, |
| 1238 | const TargetMachine &TM); |
| 1239 | |
| 1240 | const R600InstrInfo *getInstrInfo() const override { return &InstrInfo; } |
| 1241 | |
| 1242 | const R600FrameLowering *getFrameLowering() const override { |
| 1243 | return &FrameLowering; |
| 1244 | } |
| 1245 | |
| 1246 | const R600TargetLowering *getTargetLowering() const override { |
| 1247 | return &TLInfo; |
| 1248 | } |
| 1249 | |
| 1250 | const R600RegisterInfo *getRegisterInfo() const override { |
| 1251 | return &InstrInfo.getRegisterInfo(); |
| 1252 | } |
| 1253 | |
| 1254 | const InstrItineraryData *getInstrItineraryData() const override { |
| 1255 | return &InstrItins; |
| 1256 | } |
| 1257 | |
| 1258 | // Nothing implemented, just prevent crashes on use. |
| 1259 | const SelectionDAGTargetInfo *getSelectionDAGInfo() const override { |
| 1260 | return &TSInfo; |
| 1261 | } |
| 1262 | |
| 1263 | void ParseSubtargetFeatures(StringRef CPU, StringRef FS); |
| 1264 | |
| 1265 | Generation getGeneration() const { |
| 1266 | return Gen; |
| 1267 | } |
| 1268 | |
Guillaume Chatelet | 882c43d | 2019-10-17 07:49:39 +0000 | [diff] [blame] | 1269 | Align getStackAlignment() const { return Align(4); } |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 1270 | |
| 1271 | R600Subtarget &initializeSubtargetDependencies(const Triple &TT, |
| 1272 | StringRef GPU, StringRef FS); |
| 1273 | |
| 1274 | bool hasBFE() const { |
| 1275 | return (getGeneration() >= EVERGREEN); |
| 1276 | } |
| 1277 | |
| 1278 | bool hasBFI() const { |
| 1279 | return (getGeneration() >= EVERGREEN); |
| 1280 | } |
| 1281 | |
| 1282 | bool hasBCNT(unsigned Size) const { |
| 1283 | if (Size == 32) |
| 1284 | return (getGeneration() >= EVERGREEN); |
| 1285 | |
| 1286 | return false; |
| 1287 | } |
| 1288 | |
| 1289 | bool hasBORROW() const { |
| 1290 | return (getGeneration() >= EVERGREEN); |
| 1291 | } |
| 1292 | |
| 1293 | bool hasCARRY() const { |
| 1294 | return (getGeneration() >= EVERGREEN); |
| 1295 | } |
| 1296 | |
| 1297 | bool hasCaymanISA() const { |
| 1298 | return CaymanISA; |
| 1299 | } |
| 1300 | |
| 1301 | bool hasFFBL() const { |
| 1302 | return (getGeneration() >= EVERGREEN); |
| 1303 | } |
| 1304 | |
| 1305 | bool hasFFBH() const { |
| 1306 | return (getGeneration() >= EVERGREEN); |
| 1307 | } |
| 1308 | |
| 1309 | bool hasFMA() const { return FMA; } |
| 1310 | |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 1311 | bool hasCFAluBug() const { return CFALUBug; } |
| 1312 | |
| 1313 | bool hasVertexCache() const { return HasVertexCache; } |
| 1314 | |
| 1315 | short getTexVTXClauseSize() const { return TexVTXClauseSize; } |
| 1316 | |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 1317 | bool enableMachineScheduler() const override { |
| 1318 | return true; |
| 1319 | } |
| 1320 | |
| 1321 | bool enableSubRegLiveness() const override { |
| 1322 | return true; |
| 1323 | } |
Konstantin Zhuravlyov | 71e43ee | 2018-09-12 18:50:47 +0000 | [diff] [blame] | 1324 | |
| 1325 | /// \returns Maximum number of work groups per compute unit supported by the |
| 1326 | /// subtarget and limited by given \p FlatWorkGroupSize. |
| 1327 | unsigned getMaxWorkGroupsPerCU(unsigned FlatWorkGroupSize) const override { |
| 1328 | return AMDGPU::IsaInfo::getMaxWorkGroupsPerCU(this, FlatWorkGroupSize); |
| 1329 | } |
| 1330 | |
| 1331 | /// \returns Minimum flat work group size supported by the subtarget. |
| 1332 | unsigned getMinFlatWorkGroupSize() const override { |
| 1333 | return AMDGPU::IsaInfo::getMinFlatWorkGroupSize(this); |
| 1334 | } |
| 1335 | |
| 1336 | /// \returns Maximum flat work group size supported by the subtarget. |
| 1337 | unsigned getMaxFlatWorkGroupSize() const override { |
| 1338 | return AMDGPU::IsaInfo::getMaxFlatWorkGroupSize(this); |
| 1339 | } |
| 1340 | |
| 1341 | /// \returns Maximum number of waves per execution unit supported by the |
| 1342 | /// subtarget and limited by given \p FlatWorkGroupSize. |
| 1343 | unsigned getMaxWavesPerEU(unsigned FlatWorkGroupSize) const override { |
| 1344 | return AMDGPU::IsaInfo::getMaxWavesPerEU(this, FlatWorkGroupSize); |
| 1345 | } |
| 1346 | |
| 1347 | /// \returns Minimum number of waves per execution unit supported by the |
| 1348 | /// subtarget. |
| 1349 | unsigned getMinWavesPerEU() const override { |
| 1350 | return AMDGPU::IsaInfo::getMinWavesPerEU(this); |
| 1351 | } |
Tom Stellard | c5a154d | 2018-06-28 23:47:12 +0000 | [diff] [blame] | 1352 | }; |
| 1353 | |
Eugene Zelenko | 2bc2f33 | 2016-12-09 22:06:55 +0000 | [diff] [blame] | 1354 | } // end namespace llvm |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 1355 | |
Eugene Zelenko | 2bc2f33 | 2016-12-09 22:06:55 +0000 | [diff] [blame] | 1356 | #endif // LLVM_LIB_TARGET_AMDGPU_AMDGPUSUBTARGET_H |