blob: c9d305a5bba8b77764d73efdd2f54decff644278 [file] [log] [blame]
Matt Arsenault0c90e952015-11-06 18:17:45 +00001//=====-- AMDGPUSubtarget.h - Define Subtarget for AMDGPU ------*- C++ -*-====//
Tom Stellard75aadc22012-12-11 21:25:42 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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 Stellard75aadc22012-12-11 21:25:42 +00006//
7//==-----------------------------------------------------------------------===//
8//
9/// \file
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000010/// AMDGPU specific subclass of TargetSubtarget.
Tom Stellard75aadc22012-12-11 21:25:42 +000011//
12//===----------------------------------------------------------------------===//
13
Matt Arsenault0c90e952015-11-06 18:17:45 +000014#ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUSUBTARGET_H
15#define LLVM_LIB_TARGET_AMDGPU_AMDGPUSUBTARGET_H
Matt Arsenaultf59e5382015-11-06 18:23:00 +000016
Tom Stellarda6c6e1b2013-06-07 20:37:48 +000017#include "AMDGPU.h"
Quentin Colombet61d71a12017-08-15 22:31:51 +000018#include "AMDGPUCallLowering.h"
Matt Arsenault43e92fe2016-06-24 06:30:11 +000019#include "R600FrameLowering.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000020#include "R600ISelLowering.h"
21#include "R600InstrInfo.h"
Matt Arsenault43e92fe2016-06-24 06:30:11 +000022#include "SIFrameLowering.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000023#include "SIISelLowering.h"
24#include "SIInstrInfo.h"
Tom Stellard347ac792015-06-26 21:15:07 +000025#include "Utils/AMDGPUBaseInfo.h"
Eugene Zelenko2bc2f332016-12-09 22:06:55 +000026#include "llvm/ADT/Triple.h"
Quentin Colombet61d71a12017-08-15 22:31:51 +000027#include "llvm/CodeGen/GlobalISel/InstructionSelector.h"
28#include "llvm/CodeGen/GlobalISel/LegalizerInfo.h"
29#include "llvm/CodeGen/GlobalISel/RegisterBankInfo.h"
Eugene Zelenko2bc2f332016-12-09 22:06:55 +000030#include "llvm/CodeGen/MachineFunction.h"
Matt Arsenault56684d42016-08-11 17:31:42 +000031#include "llvm/CodeGen/SelectionDAGTargetInfo.h"
Eugene Zelenko2bc2f332016-12-09 22:06:55 +000032#include "llvm/MC/MCInstrItineraries.h"
33#include "llvm/Support/MathExtras.h"
34#include <cassert>
35#include <cstdint>
36#include <memory>
37#include <utility>
Tom Stellard75aadc22012-12-11 21:25:42 +000038
39#define GET_SUBTARGETINFO_HEADER
40#include "AMDGPUGenSubtargetInfo.inc"
Tom Stellardc5a154d2018-06-28 23:47:12 +000041#define GET_SUBTARGETINFO_HEADER
42#include "R600GenSubtargetInfo.inc"
Tom Stellard75aadc22012-12-11 21:25:42 +000043
Tom Stellard75aadc22012-12-11 21:25:42 +000044namespace llvm {
45
Matt Arsenault43e92fe2016-06-24 06:30:11 +000046class StringRef;
Tom Stellarde99fb652015-01-20 19:33:04 +000047
Tom Stellard5bfbae52018-07-11 20:59:01 +000048class AMDGPUSubtarget {
49public:
50 enum Generation {
51 R600 = 0,
52 R700 = 1,
Matt Arsenault4bec7d42018-07-20 09:05:08 +000053 EVERGREEN = 2,
Tom Stellard5bfbae52018-07-11 20:59:01 +000054 NORTHERN_ISLANDS = 3,
55 SOUTHERN_ISLANDS = 4,
56 SEA_ISLANDS = 5,
57 VOLCANIC_ISLANDS = 6,
Stanislav Mekhanoshincee607e2019-04-24 17:03:15 +000058 GFX9 = 7,
59 GFX10 = 8
Tom Stellard5bfbae52018-07-11 20:59:01 +000060 };
61
Tom Stellardc5a154d2018-06-28 23:47:12 +000062private:
63 Triple TargetTriple;
64
65protected:
Tom Stellardc5a154d2018-06-28 23:47:12 +000066 bool Has16BitInsts;
67 bool HasMadMixInsts;
68 bool FP32Denormals;
69 bool FPExceptions;
70 bool HasSDWA;
71 bool HasVOP3PInsts;
72 bool HasMulI24;
73 bool HasMulU24;
Matt Arsenault6c7ba822018-08-15 21:03:55 +000074 bool HasInv2PiInlineImm;
Tom Stellardc5a154d2018-06-28 23:47:12 +000075 bool HasFminFmaxLegacy;
76 bool EnablePromoteAlloca;
David Stuttard20de3e92018-09-14 10:27:19 +000077 bool HasTrigReducedRange;
Stanislav Mekhanoshin2594fa82019-07-31 01:07:10 +000078 unsigned MaxWavesPerEU;
Tom Stellardc5a154d2018-06-28 23:47:12 +000079 int LocalMemorySize;
80 unsigned WavefrontSize;
81
82public:
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +000083 AMDGPUSubtarget(const Triple &TT);
Tom Stellardc5a154d2018-06-28 23:47:12 +000084
Tom Stellard5bfbae52018-07-11 20:59:01 +000085 static const AMDGPUSubtarget &get(const MachineFunction &MF);
86 static const AMDGPUSubtarget &get(const TargetMachine &TM,
Matt Arsenault4bec7d42018-07-20 09:05:08 +000087 const Function &F);
Tom Stellardc5a154d2018-06-28 23:47:12 +000088
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 Stellardec4feae2018-07-06 17:16:17 +0000131 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 Zhuravlyovaa067cb2018-10-04 21:02:16 +0000139 bool isAmdHsaOrMesa(const Function &F) const {
Tom Stellardec4feae2018-07-06 17:16:17 +0000140 return isAmdHsaOS() || isMesaKernel(F);
141 }
142
Tom Stellardc5a154d2018-06-28 23:47:12 +0000143 bool has16BitInsts() const {
144 return Has16BitInsts;
145 }
146
147 bool hasMadMixInsts() const {
148 return HasMadMixInsts;
149 }
150
151 bool hasFP32Denormals() const {
152 return FP32Denormals;
153 }
154
155 bool hasFPExceptions() const {
156 return FPExceptions;
157 }
158
159 bool hasSDWA() const {
160 return HasSDWA;
161 }
162
163 bool hasVOP3PInsts() const {
164 return HasVOP3PInsts;
165 }
166
167 bool hasMulI24() const {
168 return HasMulI24;
169 }
170
171 bool hasMulU24() const {
172 return HasMulU24;
173 }
174
Matt Arsenault6c7ba822018-08-15 21:03:55 +0000175 bool hasInv2PiInlineImm() const {
176 return HasInv2PiInlineImm;
177 }
178
Tom Stellardc5a154d2018-06-28 23:47:12 +0000179 bool hasFminFmaxLegacy() const {
180 return HasFminFmaxLegacy;
181 }
182
David Stuttard20de3e92018-09-14 10:27:19 +0000183 bool hasTrigReducedRange() const {
184 return HasTrigReducedRange;
185 }
186
Tom Stellardc5a154d2018-06-28 23:47:12 +0000187 bool isPromoteAllocaEnabled() const {
188 return EnablePromoteAlloca;
189 }
190
191 unsigned getWavefrontSize() const {
192 return WavefrontSize;
193 }
194
195 int getLocalMemorySize() const {
196 return LocalMemorySize;
197 }
198
199 unsigned getAlignmentForImplicitArgPtr() const {
200 return isAmdHsaOS() ? 8 : 4;
201 }
202
Tom Stellardec4feae2018-07-06 17:16:17 +0000203 /// Returns the offset in bytes from the start of the input buffer
204 /// of the first explicit kernel argument.
205 unsigned getExplicitKernelArgOffset(const Function &F) const {
Konstantin Zhuravlyovaa067cb2018-10-04 21:02:16 +0000206 return isAmdHsaOrMesa(F) ? 0 : 36;
Tom Stellardec4feae2018-07-06 17:16:17 +0000207 }
208
Tom Stellardc5a154d2018-06-28 23:47:12 +0000209 /// \returns Maximum number of work groups per compute unit supported by the
210 /// subtarget and limited by given \p FlatWorkGroupSize.
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +0000211 virtual unsigned getMaxWorkGroupsPerCU(unsigned FlatWorkGroupSize) const = 0;
Tom Stellardc5a154d2018-06-28 23:47:12 +0000212
213 /// \returns Minimum flat work group size supported by the subtarget.
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +0000214 virtual unsigned getMinFlatWorkGroupSize() const = 0;
Tom Stellardc5a154d2018-06-28 23:47:12 +0000215
216 /// \returns Maximum flat work group size supported by the subtarget.
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +0000217 virtual unsigned getMaxFlatWorkGroupSize() const = 0;
Tom Stellardc5a154d2018-06-28 23:47:12 +0000218
219 /// \returns Maximum number of waves per execution unit supported by the
220 /// subtarget and limited by given \p FlatWorkGroupSize.
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +0000221 virtual unsigned getMaxWavesPerEU(unsigned FlatWorkGroupSize) const = 0;
Tom Stellardc5a154d2018-06-28 23:47:12 +0000222
223 /// \returns Minimum number of waves per execution unit supported by the
224 /// subtarget.
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +0000225 virtual unsigned getMinWavesPerEU() const = 0;
Tom Stellardc5a154d2018-06-28 23:47:12 +0000226
Stanislav Mekhanoshin2594fa82019-07-31 01:07:10 +0000227 /// \returns Maximum number of waves per execution unit supported by the
228 /// subtarget without any kind of limitation.
229 unsigned getMaxWavesPerEU() const { return MaxWavesPerEU; }
Tom Stellardc5a154d2018-06-28 23:47:12 +0000230
231 /// Creates value range metadata on an workitemid.* inrinsic call or load.
232 bool makeLIDRangeMetadata(Instruction *I) const;
233
Matt Arsenault4bec7d42018-07-20 09:05:08 +0000234 /// \returns Number of bytes of arguments that are passed to a shader or
235 /// kernel in addition to the explicit ones declared for the function.
236 unsigned getImplicitArgNumBytes(const Function &F) const {
237 if (isMesaKernel(F))
238 return 16;
239 return AMDGPU::getIntegerAttribute(F, "amdgpu-implicitarg-num-bytes", 0);
240 }
241 uint64_t getExplicitKernArgSize(const Function &F,
242 unsigned &MaxAlign) const;
243 unsigned getKernArgSegmentSize(const Function &F,
244 unsigned &MaxAlign) const;
245
Tom Stellard5bfbae52018-07-11 20:59:01 +0000246 virtual ~AMDGPUSubtarget() {}
Tom Stellardc5a154d2018-06-28 23:47:12 +0000247};
248
Tom Stellard5bfbae52018-07-11 20:59:01 +0000249class GCNSubtarget : public AMDGPUGenSubtargetInfo,
250 public AMDGPUSubtarget {
Stanislav Mekhanoshin2594fa82019-07-31 01:07:10 +0000251
252 using AMDGPUSubtarget::getMaxWavesPerEU;
253
Tom Stellarda6c6e1b2013-06-07 20:37:48 +0000254public:
Wei Ding205bfdb2017-02-10 02:15:29 +0000255 enum TrapHandlerAbi {
256 TrapHandlerAbiNone = 0,
257 TrapHandlerAbiHsa = 1
258 };
259
Wei Dingf2cce022017-02-22 23:22:19 +0000260 enum TrapID {
261 TrapIDHardwareReserved = 0,
262 TrapIDHSADebugTrap = 1,
263 TrapIDLLVMTrap = 2,
264 TrapIDLLVMDebugTrap = 3,
265 TrapIDDebugBreakpoint = 7,
266 TrapIDDebugReserved8 = 8,
267 TrapIDDebugReservedFE = 0xfe,
268 TrapIDDebugReservedFF = 0xff
Wei Ding205bfdb2017-02-10 02:15:29 +0000269 };
270
271 enum TrapRegValues {
Wei Dingf2cce022017-02-22 23:22:19 +0000272 LLVMTrapHandlerRegValue = 1
Wei Ding205bfdb2017-02-10 02:15:29 +0000273 };
274
Tom Stellardc5a154d2018-06-28 23:47:12 +0000275private:
Tom Stellardc5a154d2018-06-28 23:47:12 +0000276 /// GlobalISel related APIs.
277 std::unique_ptr<AMDGPUCallLowering> CallLoweringInfo;
278 std::unique_ptr<InstructionSelector> InstSelector;
279 std::unique_ptr<LegalizerInfo> Legalizer;
280 std::unique_ptr<RegisterBankInfo> RegBankInfo;
281
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000282protected:
283 // Basic subtarget description.
284 Triple TargetTriple;
Tom Stellardc5a154d2018-06-28 23:47:12 +0000285 unsigned Gen;
Stanislav Mekhanoshin06d3b412018-09-17 16:04:32 +0000286 InstrItineraryData InstrItins;
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000287 int LDSBankCount;
288 unsigned MaxPrivateElementSize;
289
290 // Possibly statically set by tablegen, but may want to be overridden.
Matt Arsenaultb035a572015-01-29 19:34:25 +0000291 bool FastFMAF32;
Matt Arsenaulte83690c2016-01-18 21:13:50 +0000292 bool HalfRate64Ops;
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000293
294 // Dynamially set bits that enable features.
Matt Arsenaulta6867fd2017-01-23 22:31:03 +0000295 bool FP64FP16Denormals;
Changpeng Fangb41574a2015-12-22 20:55:23 +0000296 bool FlatForGlobal;
Konstantin Zhuravlyovbe6c0ca2017-06-02 17:40:26 +0000297 bool AutoWaitcntBeforeBarrier;
Konstantin Zhuravlyoveda425e2017-10-14 15:59:07 +0000298 bool CodeObjectV3;
Tom Stellard64a9d082016-10-14 18:10:39 +0000299 bool UnalignedScratchAccess;
Matt Arsenault7f681ac2016-07-01 23:03:44 +0000300 bool UnalignedBufferAccess;
Matt Arsenaulte823d922017-02-18 18:29:53 +0000301 bool HasApertureRegs;
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000302 bool EnableXNACK;
Matt Arsenaultdf24c922019-05-16 14:48:34 +0000303 bool DoesNotSupportXNACK;
Stanislav Mekhanoshincee607e2019-04-24 17:03:15 +0000304 bool EnableCuMode;
Wei Ding205bfdb2017-02-10 02:15:29 +0000305 bool TrapHandler;
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000306
307 // Used as options.
Matt Arsenault41033282014-10-10 22:01:59 +0000308 bool EnableLoadStoreOpt;
Matt Arsenault706f9302015-07-06 16:01:58 +0000309 bool EnableUnsafeDSOffsetFolding;
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000310 bool EnableSIScheduler;
Marek Olsaka9a58fa2018-04-10 22:48:23 +0000311 bool EnableDS128;
David Stuttardf77079f2019-01-14 11:55:24 +0000312 bool EnablePRTStrictNull;
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000313 bool DumpCode;
314
315 // Subtarget statically properties set by tablegen
316 bool FP64;
Jan Vesely39aeab42017-12-04 23:07:28 +0000317 bool FMA;
Dmitry Preobrazhenskye3271ae2018-02-05 12:45:43 +0000318 bool MIMG_R128;
Tom Stellardd7e6f132015-04-08 01:09:26 +0000319 bool IsGCN;
Tom Stellardd7e6f132015-04-08 01:09:26 +0000320 bool GCN3Encoding;
Tom Stellardd1f0f022015-04-23 19:33:54 +0000321 bool CIInsts;
Stanislav Mekhanoshin7895c032019-04-05 18:24:34 +0000322 bool GFX8Insts;
Matt Arsenault2021f082017-02-18 19:12:26 +0000323 bool GFX9Insts;
Stanislav Mekhanoshincee607e2019-04-24 17:03:15 +0000324 bool GFX10Insts;
Stanislav Mekhanoshin7895c032019-04-05 18:24:34 +0000325 bool GFX7GFX8GFX9Insts;
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000326 bool SGPRInitBug;
Matt Arsenault9d82ee72016-02-27 08:53:55 +0000327 bool HasSMemRealTime;
Dmitry Preobrazhenskyff64aa52017-08-16 13:51:56 +0000328 bool HasIntClamp;
Matt Arsenault0084adc2018-04-30 19:08:16 +0000329 bool HasFmaMixInsts;
Matt Arsenaultcc88ce32016-10-12 18:00:51 +0000330 bool HasMovrel;
331 bool HasVGPRIndexMode;
Matt Arsenault7b647552016-10-28 21:55:15 +0000332 bool HasScalarStores;
Dmitry Preobrazhensky6bad04e2018-04-02 16:10:25 +0000333 bool HasScalarAtomics;
Sam Kolton3c4933f2017-06-22 06:26:41 +0000334 bool HasSDWAOmod;
335 bool HasSDWAScalar;
336 bool HasSDWASdst;
337 bool HasSDWAMac;
Sam Koltona179d252017-06-27 15:02:23 +0000338 bool HasSDWAOutModsVOPC;
Sam Kolton07dbde22017-01-20 10:01:25 +0000339 bool HasDPP;
Stanislav Mekhanoshin245b5ba2019-06-12 18:02:41 +0000340 bool HasDPP8;
Ryan Taylor1f334d02018-08-28 15:07:30 +0000341 bool HasR128A16;
Stanislav Mekhanoshincee607e2019-04-24 17:03:15 +0000342 bool HasNSAEncoding;
Matt Arsenault0084adc2018-04-30 19:08:16 +0000343 bool HasDLInsts;
Stanislav Mekhanoshin0e858b02019-02-09 00:34:21 +0000344 bool HasDot1Insts;
345 bool HasDot2Insts;
Stanislav Mekhanoshin22b2c3d2019-07-09 18:10:06 +0000346 bool HasDot3Insts;
347 bool HasDot4Insts;
Stanislav Mekhanoshinc43e67b2019-06-14 00:33:31 +0000348 bool HasDot5Insts;
349 bool HasDot6Insts;
Stanislav Mekhanoshin22b2c3d2019-07-09 18:10:06 +0000350 bool HasMAIInsts;
351 bool HasPkFmacF16Inst;
352 bool HasAtomicFaddInsts;
Konstantin Zhuravlyov108927b2018-11-05 22:44:19 +0000353 bool EnableSRAMECC;
Matt Arsenaultf426ddb2019-04-03 01:58:57 +0000354 bool DoesNotSupportSRAMECC;
Stanislav Mekhanoshincee607e2019-04-24 17:03:15 +0000355 bool HasNoSdstCMPX;
356 bool HasVscnt;
357 bool HasRegisterBanking;
358 bool HasVOP3Literal;
359 bool HasNoDataDepHazard;
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000360 bool FlatAddressSpace;
Matt Arsenaultacdc7652017-05-10 21:19:05 +0000361 bool FlatInstOffsets;
362 bool FlatGlobalInsts;
363 bool FlatScratchInsts;
Stanislav Mekhanoshincee607e2019-04-24 17:03:15 +0000364 bool ScalarFlatScratchInsts;
Matt Arsenaultc37fe662017-07-20 17:42:47 +0000365 bool AddNoCarryInsts;
Changpeng Fang44dfa1d2018-01-12 21:12:19 +0000366 bool HasUnpackedD16VMem;
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000367 bool R600ALUInst;
368 bool CaymanISA;
369 bool CFALUBug;
Stanislav Mekhanoshincee607e2019-04-24 17:03:15 +0000370 bool LDSMisalignedBug;
Stanislav Mekhanoshin8fe12452019-08-23 22:09:58 +0000371 bool HasMFMAInlineLiteralBug;
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000372 bool HasVertexCache;
373 short TexVTXClauseSize;
Alexander Timofeev18009562016-12-08 17:28:47 +0000374 bool ScalarizeGlobal;
Tom Stellard75aadc22012-12-11 21:25:42 +0000375
Stanislav Mekhanoshincee607e2019-04-24 17:03:15 +0000376 bool HasVcmpxPermlaneHazard;
377 bool HasVMEMtoScalarWriteHazard;
378 bool HasSMEMtoVectorWriteHazard;
379 bool HasInstFwdPrefetchBug;
380 bool HasVcmpxExecWARHazard;
381 bool HasLdsBranchVmemWARHazard;
382 bool HasNSAtoVMEMBug;
Ryan Taylor9ab812d2019-06-26 17:34:57 +0000383 bool HasOffset3fBug;
Stanislav Mekhanoshincee607e2019-04-24 17:03:15 +0000384 bool HasFlatSegmentOffsetBug;
385
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000386 // Dummy feature to use for assembler in tablegen.
387 bool FeatureDisable;
388
Matt Arsenault56684d42016-08-11 17:31:42 +0000389 SelectionDAGTargetInfo TSInfo;
Tom Stellard5bfbae52018-07-11 20:59:01 +0000390private:
Tom Stellard5bfbae52018-07-11 20:59:01 +0000391 SIInstrInfo InstrInfo;
Tom Stellard752ddbd2018-07-11 22:15:15 +0000392 SITargetLowering TLInfo;
Tom Stellard5bfbae52018-07-11 20:59:01 +0000393 SIFrameLowering FrameLowering;
Tom Stellard75aadc22012-12-11 21:25:42 +0000394
Matt Arsenault5c714cb2019-05-23 19:38:14 +0000395 // See COMPUTE_TMPRING_SIZE.WAVESIZE, 13-bit field in units of 256-dword.
396 static const unsigned MaxWaveScratchSize = (256 * 4) * ((1 << 13) - 1);
397
Tom Stellard75aadc22012-12-11 21:25:42 +0000398public:
Tom Stellard5bfbae52018-07-11 20:59:01 +0000399 GCNSubtarget(const Triple &TT, StringRef GPU, StringRef FS,
400 const GCNTargetMachine &TM);
401 ~GCNSubtarget() override;
Eugene Zelenko2bc2f332016-12-09 22:06:55 +0000402
Tom Stellard5bfbae52018-07-11 20:59:01 +0000403 GCNSubtarget &initializeSubtargetDependencies(const Triple &TT,
Daniel Sandersa73f1fd2015-06-10 12:11:26 +0000404 StringRef GPU, StringRef FS);
Tom Stellard75aadc22012-12-11 21:25:42 +0000405
Tom Stellard5bfbae52018-07-11 20:59:01 +0000406 const SIInstrInfo *getInstrInfo() const override {
407 return &InstrInfo;
408 }
Tom Stellard000c5af2016-04-14 19:09:28 +0000409
Tom Stellardc5a154d2018-06-28 23:47:12 +0000410 const SIFrameLowering *getFrameLowering() const override {
411 return &FrameLowering;
412 }
413
Tom Stellard5bfbae52018-07-11 20:59:01 +0000414 const SITargetLowering *getTargetLowering() const override {
415 return &TLInfo;
416 }
Tom Stellardc5a154d2018-06-28 23:47:12 +0000417
Tom Stellard5bfbae52018-07-11 20:59:01 +0000418 const SIRegisterInfo *getRegisterInfo() const override {
419 return &InstrInfo.getRegisterInfo();
420 }
Tom Stellardc5a154d2018-06-28 23:47:12 +0000421
422 const CallLowering *getCallLowering() const override {
423 return CallLoweringInfo.get();
424 }
425
Amara Emersone14c91b2019-08-13 06:26:59 +0000426 InstructionSelector *getInstructionSelector() const override {
Tom Stellardc5a154d2018-06-28 23:47:12 +0000427 return InstSelector.get();
428 }
429
430 const LegalizerInfo *getLegalizerInfo() const override {
431 return Legalizer.get();
432 }
433
434 const RegisterBankInfo *getRegBankInfo() const override {
435 return RegBankInfo.get();
Eric Christopherd9134482014-08-04 21:25:23 +0000436 }
Matt Arsenaultd782d052014-06-27 17:57:00 +0000437
Matt Arsenault56684d42016-08-11 17:31:42 +0000438 // Nothing implemented, just prevent crashes on use.
439 const SelectionDAGTargetInfo *getSelectionDAGInfo() const override {
440 return &TSInfo;
441 }
442
Stanislav Mekhanoshin06d3b412018-09-17 16:04:32 +0000443 const InstrItineraryData *getInstrItineraryData() const override {
444 return &InstrItins;
445 }
446
Craig Topperee7b0f32014-04-30 05:53:27 +0000447 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
Tom Stellard75aadc22012-12-11 21:25:42 +0000448
Matt Arsenaultd782d052014-06-27 17:57:00 +0000449 Generation getGeneration() const {
Tom Stellardc5a154d2018-06-28 23:47:12 +0000450 return (Generation)Gen;
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000451 }
452
Matt Arsenault4eea3f32017-11-13 22:55:05 +0000453 unsigned getWavefrontSizeLog2() const {
454 return Log2_32(WavefrontSize);
455 }
456
Matt Arsenault5c714cb2019-05-23 19:38:14 +0000457 /// Return the number of high bits known to be zero fror a frame index.
458 unsigned getKnownHighZeroBitsForFrameIndex() const {
459 return countLeadingZeros(MaxWaveScratchSize) + getWavefrontSizeLog2();
460 }
461
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000462 int getLDSBankCount() const {
463 return LDSBankCount;
464 }
465
466 unsigned getMaxPrivateElementSize() const {
467 return MaxPrivateElementSize;
468 }
469
Stanislav Mekhanoshinf2baae02019-05-02 03:47:23 +0000470 unsigned getConstantBusLimit(unsigned Opcode) const;
471
Dmitry Preobrazhenskyff64aa52017-08-16 13:51:56 +0000472 bool hasIntClamp() const {
473 return HasIntClamp;
474 }
475
Jan Veselyd1c9b612017-12-04 22:57:29 +0000476 bool hasFP64() const {
Matt Arsenaultd782d052014-06-27 17:57:00 +0000477 return FP64;
478 }
479
Dmitry Preobrazhenskye3271ae2018-02-05 12:45:43 +0000480 bool hasMIMG_R128() const {
481 return MIMG_R128;
482 }
483
Tom Stellardc5a154d2018-06-28 23:47:12 +0000484 bool hasHWFP64() const {
485 return FP64;
486 }
487
Matt Arsenaultb035a572015-01-29 19:34:25 +0000488 bool hasFastFMAF32() const {
489 return FastFMAF32;
490 }
491
Matt Arsenaulte83690c2016-01-18 21:13:50 +0000492 bool hasHalfRate64Ops() const {
493 return HalfRate64Ops;
494 }
495
Matt Arsenault88701812016-06-09 23:42:48 +0000496 bool hasAddr64() const {
Tom Stellardc5a154d2018-06-28 23:47:12 +0000497 return (getGeneration() < AMDGPUSubtarget::VOLCANIC_ISLANDS);
Matt Arsenault88701812016-06-09 23:42:48 +0000498 }
499
Matt Arsenaulte4c2e9b2019-06-19 23:54:58 +0000500 // Return true if the target only has the reverse operand versions of VALU
501 // shift instructions (e.g. v_lshrrev_b32, and no v_lshr_b32).
502 bool hasOnlyRevVALUShifts() const {
503 return getGeneration() >= VOLCANIC_ISLANDS;
504 }
505
Matt Arsenaultfae02982014-03-17 18:58:11 +0000506 bool hasBFE() const {
Tom Stellardc5a154d2018-06-28 23:47:12 +0000507 return true;
Matt Arsenaultfae02982014-03-17 18:58:11 +0000508 }
509
Matt Arsenault6e439652014-06-10 19:00:20 +0000510 bool hasBFI() const {
Tom Stellardc5a154d2018-06-28 23:47:12 +0000511 return true;
Matt Arsenault6e439652014-06-10 19:00:20 +0000512 }
513
Matt Arsenaultfae02982014-03-17 18:58:11 +0000514 bool hasBFM() const {
515 return hasBFE();
516 }
517
Matt Arsenault60425062014-06-10 19:18:28 +0000518 bool hasBCNT(unsigned Size) const {
Tom Stellardc5a154d2018-06-28 23:47:12 +0000519 return true;
Tom Stellard50122a52014-04-07 19:45:41 +0000520 }
521
Jan Vesely6ddb8dd2014-07-15 15:51:09 +0000522 bool hasFFBL() const {
Tom Stellardc5a154d2018-06-28 23:47:12 +0000523 return true;
Jan Vesely6ddb8dd2014-07-15 15:51:09 +0000524 }
525
526 bool hasFFBH() const {
Tom Stellardc5a154d2018-06-28 23:47:12 +0000527 return true;
Jan Vesely6ddb8dd2014-07-15 15:51:09 +0000528 }
529
Matt Arsenault10268f92017-02-27 22:40:39 +0000530 bool hasMed3_16() const {
Tom Stellardc5a154d2018-06-28 23:47:12 +0000531 return getGeneration() >= AMDGPUSubtarget::GFX9;
Matt Arsenault10268f92017-02-27 22:40:39 +0000532 }
533
Matt Arsenaultee324ff2017-05-17 19:25:06 +0000534 bool hasMin3Max3_16() const {
Tom Stellardc5a154d2018-06-28 23:47:12 +0000535 return getGeneration() >= AMDGPUSubtarget::GFX9;
Matt Arsenaultd7e23032017-09-07 18:05:07 +0000536 }
537
Matt Arsenault0084adc2018-04-30 19:08:16 +0000538 bool hasFmaMixInsts() const {
539 return HasFmaMixInsts;
540 }
541
Jan Vesely808fff52015-04-30 17:15:56 +0000542 bool hasCARRY() const {
Tom Stellardc5a154d2018-06-28 23:47:12 +0000543 return true;
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000544 }
545
Jan Vesely39aeab42017-12-04 23:07:28 +0000546 bool hasFMA() const {
547 return FMA;
548 }
549
Stanislav Mekhanoshin79080ec2018-10-29 17:26:01 +0000550 bool hasSwap() const {
551 return GFX9Insts;
552 }
553
Matt Arsenault182f9242019-09-09 17:04:18 +0000554 bool hasScalarPackInsts() const {
555 return GFX9Insts;
556 }
557
Wei Ding205bfdb2017-02-10 02:15:29 +0000558 TrapHandlerAbi getTrapHandlerAbi() const {
559 return isAmdHsaOS() ? TrapHandlerAbiHsa : TrapHandlerAbiNone;
560 }
561
Matt Arsenaulte4c2e9b2019-06-19 23:54:58 +0000562 /// True if the offset field of DS instructions works as expected. On SI, the
563 /// offset uses a 16-bit adder and does not always wrap properly.
564 bool hasUsableDSOffset() const {
565 return getGeneration() >= SEA_ISLANDS;
566 }
567
Matt Arsenault706f9302015-07-06 16:01:58 +0000568 bool unsafeDSOffsetFoldingEnabled() const {
569 return EnableUnsafeDSOffsetFolding;
570 }
571
Matt Arsenaulte4c2e9b2019-06-19 23:54:58 +0000572 /// Condition output from div_scale is usable.
573 bool hasUsableDivScaleConditionOutput() const {
574 return getGeneration() != SOUTHERN_ISLANDS;
575 }
576
577 /// Extra wait hazard is needed in some cases before
578 /// s_cbranch_vccnz/s_cbranch_vccz.
579 bool hasReadVCCZBug() const {
580 return getGeneration() <= SEA_ISLANDS;
581 }
582
583 /// A read of an SGPR by SMRD instruction requires 4 wait states when the SGPR
584 /// was written by a VALU instruction.
585 bool hasSMRDReadVALUDefHazard() const {
586 return getGeneration() == SOUTHERN_ISLANDS;
587 }
588
589 /// A read of an SGPR by a VMEM instruction requires 5 wait states when the
590 /// SGPR was written by a VALU Instruction.
591 bool hasVMEMReadSGPRVALUDefHazard() const {
592 return getGeneration() >= VOLCANIC_ISLANDS;
593 }
594
595 bool hasRFEHazards() const {
596 return getGeneration() >= VOLCANIC_ISLANDS;
597 }
598
599 /// Number of hazard wait states for s_setreg_b32/s_setreg_imm32_b32.
600 unsigned getSetRegWaitStates() const {
601 return getGeneration() <= SEA_ISLANDS ? 1 : 2;
602 }
603
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000604 bool dumpCode() const {
605 return DumpCode;
Matt Arsenaultd782d052014-06-27 17:57:00 +0000606 }
607
Matt Arsenault8a028bf2016-05-16 21:19:59 +0000608 /// Return the amount of LDS that can be used that will not restrict the
609 /// occupancy lower than WaveCount.
Stanislav Mekhanoshin2b913b12017-02-01 22:59:50 +0000610 unsigned getMaxLocalMemSizeWithWaveCount(unsigned WaveCount,
611 const Function &) const;
Matt Arsenault8a028bf2016-05-16 21:19:59 +0000612
Konstantin Zhuravlyovf86e4b72016-11-13 07:01:11 +0000613 bool hasFP16Denormals() const {
Matt Arsenaulta6867fd2017-01-23 22:31:03 +0000614 return FP64FP16Denormals;
Konstantin Zhuravlyovf86e4b72016-11-13 07:01:11 +0000615 }
Matt Arsenault8a028bf2016-05-16 21:19:59 +0000616
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000617 bool hasFP64Denormals() const {
Matt Arsenaulta6867fd2017-01-23 22:31:03 +0000618 return FP64FP16Denormals;
Matt Arsenault24ee0782016-02-12 02:40:47 +0000619 }
620
Stanislav Mekhanoshindc2890a2017-07-13 23:59:15 +0000621 bool supportsMinMaxDenormModes() const {
622 return getGeneration() >= AMDGPUSubtarget::GFX9;
623 }
624
Austin Kerbowa05c3842019-08-06 02:16:11 +0000625 /// \returns If target supports S_DENORM_MODE.
626 bool hasDenormModeInst() const {
627 return getGeneration() >= AMDGPUSubtarget::GFX10;
628 }
629
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000630 bool useFlatForGlobal() const {
631 return FlatForGlobal;
Tom Stellardec87f842015-05-25 16:15:54 +0000632 }
633
Farhana Aleena7cb3112018-03-09 17:41:39 +0000634 /// \returns If target supports ds_read/write_b128 and user enables generation
635 /// of ds_read/write_b128.
Marek Olsaka9a58fa2018-04-10 22:48:23 +0000636 bool useDS128() const {
637 return CIInsts && EnableDS128;
Farhana Aleena7cb3112018-03-09 17:41:39 +0000638 }
639
Matt Arsenaulte4c2e9b2019-06-19 23:54:58 +0000640 /// Have v_trunc_f64, v_ceil_f64, v_rndne_f64
641 bool haveRoundOpsF64() const {
642 return CIInsts;
643 }
644
Matt Arsenaultcaf0ed42017-11-30 00:52:40 +0000645 /// \returns If MUBUF instructions always perform range checking, even for
646 /// buffer resources used for private memory access.
647 bool privateMemoryResourceIsRangeChecked() const {
648 return getGeneration() < AMDGPUSubtarget::GFX9;
649 }
650
David Stuttardf77079f2019-01-14 11:55:24 +0000651 /// \returns If target requires PRT Struct NULL support (zero result registers
652 /// for sparse texture support).
653 bool usePRTStrictNull() const {
654 return EnablePRTStrictNull;
655 }
656
Konstantin Zhuravlyovbe6c0ca2017-06-02 17:40:26 +0000657 bool hasAutoWaitcntBeforeBarrier() const {
658 return AutoWaitcntBeforeBarrier;
659 }
660
Konstantin Zhuravlyoveda425e2017-10-14 15:59:07 +0000661 bool hasCodeObjectV3() const {
Konstantin Zhuravlyova25e0522018-11-15 02:32:43 +0000662 // FIXME: Need to add code object v3 support for mesa and pal.
663 return isAmdHsaOS() ? CodeObjectV3 : false;
Konstantin Zhuravlyoveda425e2017-10-14 15:59:07 +0000664 }
665
Matt Arsenault7f681ac2016-07-01 23:03:44 +0000666 bool hasUnalignedBufferAccess() const {
667 return UnalignedBufferAccess;
668 }
669
Tom Stellard64a9d082016-10-14 18:10:39 +0000670 bool hasUnalignedScratchAccess() const {
671 return UnalignedScratchAccess;
672 }
673
Matt Arsenaulte823d922017-02-18 18:29:53 +0000674 bool hasApertureRegs() const {
Tom Stellardc5a154d2018-06-28 23:47:12 +0000675 return HasApertureRegs;
Matt Arsenaulte823d922017-02-18 18:29:53 +0000676 }
677
Wei Ding205bfdb2017-02-10 02:15:29 +0000678 bool isTrapHandlerEnabled() const {
679 return TrapHandler;
680 }
681
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000682 bool isXNACKEnabled() const {
683 return EnableXNACK;
684 }
Tom Stellardb8fd6ef2014-12-02 22:00:07 +0000685
Stanislav Mekhanoshincee607e2019-04-24 17:03:15 +0000686 bool isCuModeEnabled() const {
687 return EnableCuMode;
688 }
689
Matt Arsenaultb6491cc2017-01-31 01:20:54 +0000690 bool hasFlatAddressSpace() const {
691 return FlatAddressSpace;
692 }
693
Matt Arsenaulte4c2e9b2019-06-19 23:54:58 +0000694 bool hasFlatScrRegister() const {
695 return hasFlatAddressSpace();
696 }
697
Matt Arsenaultacdc7652017-05-10 21:19:05 +0000698 bool hasFlatInstOffsets() const {
699 return FlatInstOffsets;
700 }
701
702 bool hasFlatGlobalInsts() const {
703 return FlatGlobalInsts;
704 }
705
706 bool hasFlatScratchInsts() const {
707 return FlatScratchInsts;
708 }
709
Stanislav Mekhanoshincee607e2019-04-24 17:03:15 +0000710 bool hasScalarFlatScratchInsts() const {
711 return ScalarFlatScratchInsts;
712 }
713
714 bool hasFlatSegmentOffsetBug() const {
715 return HasFlatSegmentOffsetBug;
716 }
717
Mark Searlesf0b93f12018-06-04 16:51:59 +0000718 bool hasFlatLgkmVMemCountInOrder() const {
719 return getGeneration() > GFX9;
720 }
721
Matt Arsenaulted6e8f02017-09-01 18:36:06 +0000722 bool hasD16LoadStore() const {
723 return getGeneration() >= GFX9;
724 }
725
Matt Arsenaulte8c03a22019-03-08 20:58:11 +0000726 bool d16PreservesUnusedBits() const {
727 return hasD16LoadStore() && !isSRAMECCEnabled();
728 }
729
Matt Arsenaulte4c2e9b2019-06-19 23:54:58 +0000730 bool hasD16Images() const {
731 return getGeneration() >= VOLCANIC_ISLANDS;
732 }
733
Matt Arsenault3f71c0e2017-11-29 00:55:57 +0000734 /// Return if most LDS instructions have an m0 use that require m0 to be
735 /// iniitalized.
736 bool ldsRequiresM0Init() const {
737 return getGeneration() < GFX9;
738 }
739
Matt Arsenault8ad1dec2019-06-20 20:54:32 +0000740 // True if the hardware rewinds and replays GWS operations if a wave is
741 // preempted.
742 //
743 // If this is false, a GWS operation requires testing if a nack set the
744 // MEM_VIOL bit, and repeating if so.
745 bool hasGWSAutoReplay() const {
746 return getGeneration() >= GFX9;
747 }
748
Matt Arsenault740322f2019-06-20 21:11:42 +0000749 /// \returns if target has ds_gws_sema_release_all instruction.
750 bool hasGWSSemaReleaseAll() const {
751 return CIInsts;
752 }
753
Matt Arsenaultc37fe662017-07-20 17:42:47 +0000754 bool hasAddNoCarry() const {
755 return AddNoCarryInsts;
756 }
757
Changpeng Fang44dfa1d2018-01-12 21:12:19 +0000758 bool hasUnpackedD16VMem() const {
759 return HasUnpackedD16VMem;
760 }
761
Tom Stellard2f3f9852017-01-25 01:25:13 +0000762 // Covers VS/PS/CS graphics shaders
Matt Arsenaultceafc552018-05-29 17:42:50 +0000763 bool isMesaGfxShader(const Function &F) const {
764 return isMesa3DOS() && AMDGPU::isShader(F.getCallingConv());
Tom Stellard2f3f9852017-01-25 01:25:13 +0000765 }
766
Matt Arsenault4f6318f2017-11-06 17:04:37 +0000767 bool hasMad64_32() const {
768 return getGeneration() >= SEA_ISLANDS;
769 }
770
Sam Kolton3c4933f2017-06-22 06:26:41 +0000771 bool hasSDWAOmod() const {
772 return HasSDWAOmod;
773 }
774
775 bool hasSDWAScalar() const {
776 return HasSDWAScalar;
777 }
778
779 bool hasSDWASdst() const {
780 return HasSDWASdst;
781 }
782
783 bool hasSDWAMac() const {
784 return HasSDWAMac;
785 }
786
Sam Koltona179d252017-06-27 15:02:23 +0000787 bool hasSDWAOutModsVOPC() const {
788 return HasSDWAOutModsVOPC;
Sam Kolton3c4933f2017-06-22 06:26:41 +0000789 }
790
Matt Arsenault0084adc2018-04-30 19:08:16 +0000791 bool hasDLInsts() const {
792 return HasDLInsts;
793 }
794
Stanislav Mekhanoshin0e858b02019-02-09 00:34:21 +0000795 bool hasDot1Insts() const {
796 return HasDot1Insts;
797 }
798
799 bool hasDot2Insts() const {
800 return HasDot2Insts;
Stanislav Mekhanoshind3757d32019-01-10 03:25:20 +0000801 }
802
Stanislav Mekhanoshin22b2c3d2019-07-09 18:10:06 +0000803 bool hasDot3Insts() const {
804 return HasDot3Insts;
805 }
806
807 bool hasDot4Insts() const {
808 return HasDot4Insts;
809 }
810
Stanislav Mekhanoshinc43e67b2019-06-14 00:33:31 +0000811 bool hasDot5Insts() const {
812 return HasDot5Insts;
813 }
814
815 bool hasDot6Insts() const {
816 return HasDot6Insts;
817 }
818
Stanislav Mekhanoshin22b2c3d2019-07-09 18:10:06 +0000819 bool hasMAIInsts() const {
820 return HasMAIInsts;
821 }
822
823 bool hasPkFmacF16Inst() const {
824 return HasPkFmacF16Inst;
825 }
826
827 bool hasAtomicFaddInsts() const {
828 return HasAtomicFaddInsts;
829 }
830
Konstantin Zhuravlyov108927b2018-11-05 22:44:19 +0000831 bool isSRAMECCEnabled() const {
832 return EnableSRAMECC;
Konstantin Zhuravlyovc2c2eb72018-05-04 20:06:57 +0000833 }
834
Stanislav Mekhanoshincee607e2019-04-24 17:03:15 +0000835 bool hasNoSdstCMPX() const {
836 return HasNoSdstCMPX;
837 }
838
839 bool hasVscnt() const {
840 return HasVscnt;
841 }
842
843 bool hasRegisterBanking() const {
844 return HasRegisterBanking;
845 }
846
847 bool hasVOP3Literal() const {
848 return HasVOP3Literal;
849 }
850
851 bool hasNoDataDepHazard() const {
852 return HasNoDataDepHazard;
853 }
854
855 bool vmemWriteNeedsExpWaitcnt() const {
856 return getGeneration() < SEA_ISLANDS;
857 }
858
Matt Arsenault869fec22017-04-17 19:48:24 +0000859 // Scratch is allocated in 256 dword per wave blocks for the entire
860 // wavefront. When viewed from the perspecive of an arbitrary workitem, this
861 // is 4-byte aligned.
Matt Arsenaultffb132e2018-03-29 20:22:04 +0000862 //
863 // Only 4-byte alignment is really needed to access anything. Transformations
864 // on the pointer value itself may rely on the alignment / known low bits of
865 // the pointer. Set this to something above the minimum to avoid needing
866 // dynamic realignment in common cases.
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000867 unsigned getStackAlignment() const {
Matt Arsenaultffb132e2018-03-29 20:22:04 +0000868 return 16;
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000869 }
Tom Stellard347ac792015-06-26 21:15:07 +0000870
Craig Topper5656db42014-04-29 07:57:24 +0000871 bool enableMachineScheduler() const override {
Tom Stellard83f0bce2015-01-29 16:55:25 +0000872 return true;
Andrew Trick978674b2013-09-20 05:14:41 +0000873 }
874
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000875 bool enableSubRegLiveness() const override {
876 return true;
877 }
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000878
Tom Stellardc5a154d2018-06-28 23:47:12 +0000879 void setScalarizeGlobalBehavior(bool b) { ScalarizeGlobal = b; }
880 bool getScalarizeGlobalBehavior() const { return ScalarizeGlobal; }
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +0000881
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000882 /// \returns Number of execution units per compute unit supported by the
883 /// subtarget.
884 unsigned getEUsPerCU() const {
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +0000885 return AMDGPU::IsaInfo::getEUsPerCU(this);
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000886 }
887
888 /// \returns Maximum number of waves per compute unit supported by the
889 /// subtarget without any kind of limitation.
890 unsigned getMaxWavesPerCU() const {
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +0000891 return AMDGPU::IsaInfo::getMaxWavesPerCU(this);
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000892 }
893
894 /// \returns Maximum number of waves per compute unit supported by the
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +0000895 /// subtarget and limited by given \p FlatWorkGroupSize.
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000896 unsigned getMaxWavesPerCU(unsigned FlatWorkGroupSize) const {
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +0000897 return AMDGPU::IsaInfo::getMaxWavesPerCU(this, FlatWorkGroupSize);
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000898 }
899
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +0000900 /// \returns Number of waves per work group supported by the subtarget and
901 /// limited by given \p FlatWorkGroupSize.
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000902 unsigned getWavesPerWorkGroup(unsigned FlatWorkGroupSize) const {
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +0000903 return AMDGPU::IsaInfo::getWavesPerWorkGroup(this, FlatWorkGroupSize);
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000904 }
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000905
Tom Stellardc5a154d2018-06-28 23:47:12 +0000906 // static wrappers
907 static bool hasHalfRate64Ops(const TargetSubtargetInfo &STI);
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000908
Matt Arsenault9f5e0ef2017-01-25 04:25:02 +0000909 // XXX - Why is this here if it isn't in the default pass set?
910 bool enableEarlyIfConversion() const override {
911 return true;
912 }
913
Tom Stellard83f0bce2015-01-29 16:55:25 +0000914 void overrideSchedPolicy(MachineSchedPolicy &Policy,
Tom Stellard83f0bce2015-01-29 16:55:25 +0000915 unsigned NumRegionInstrs) const override;
916
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000917 unsigned getMaxNumUserSGPRs() const {
918 return 16;
919 }
920
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000921 bool hasSMemRealTime() const {
922 return HasSMemRealTime;
923 }
924
Matt Arsenaultcc88ce32016-10-12 18:00:51 +0000925 bool hasMovrel() const {
926 return HasMovrel;
927 }
928
929 bool hasVGPRIndexMode() const {
930 return HasVGPRIndexMode;
931 }
932
Marek Olsake22fdb92017-03-21 17:00:32 +0000933 bool useVGPRIndexMode(bool UserEnable) const {
934 return !hasMovrel() || (UserEnable && hasVGPRIndexMode());
935 }
936
Matt Arsenault7b1dc2c2016-09-17 02:02:19 +0000937 bool hasScalarCompareEq64() const {
938 return getGeneration() >= VOLCANIC_ISLANDS;
939 }
940
Matt Arsenault7b647552016-10-28 21:55:15 +0000941 bool hasScalarStores() const {
942 return HasScalarStores;
943 }
944
Dmitry Preobrazhensky6bad04e2018-04-02 16:10:25 +0000945 bool hasScalarAtomics() const {
946 return HasScalarAtomics;
947 }
948
Matt Arsenaulta5840c32019-01-22 18:36:06 +0000949 bool hasLDSFPAtomics() const {
Stanislav Mekhanoshin7895c032019-04-05 18:24:34 +0000950 return GFX8Insts;
Matt Arsenaulta5840c32019-01-22 18:36:06 +0000951 }
Matt Arsenaultc88ba362016-10-29 04:05:06 +0000952
Sam Kolton07dbde22017-01-20 10:01:25 +0000953 bool hasDPP() const {
954 return HasDPP;
955 }
956
Jay Foadeac23862019-08-23 10:07:43 +0000957 bool hasDPPBroadcasts() const {
958 return HasDPP && getGeneration() < GFX10;
959 }
960
961 bool hasDPPWavefrontShifts() const {
962 return HasDPP && getGeneration() < GFX10;
963 }
964
Stanislav Mekhanoshin245b5ba2019-06-12 18:02:41 +0000965 bool hasDPP8() const {
966 return HasDPP8;
967 }
968
Ryan Taylor1f334d02018-08-28 15:07:30 +0000969 bool hasR128A16() const {
970 return HasR128A16;
971 }
972
Ryan Taylor9ab812d2019-06-26 17:34:57 +0000973 bool hasOffset3fBug() const {
974 return HasOffset3fBug;
975 }
976
Stanislav Mekhanoshincee607e2019-04-24 17:03:15 +0000977 bool hasNSAEncoding() const {
978 return HasNSAEncoding;
979 }
980
981 bool hasMadF16() const;
982
Tom Stellardde008d32016-01-21 04:28:34 +0000983 bool enableSIScheduler() const {
984 return EnableSIScheduler;
985 }
986
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000987 bool loadStoreOptEnabled() const {
988 return EnableLoadStoreOpt;
Nicolai Haehnle5b504972016-01-04 23:35:53 +0000989 }
990
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000991 bool hasSGPRInitBug() const {
992 return SGPRInitBug;
Matt Arsenault41003af2015-11-30 21:16:07 +0000993 }
Tom Stellard0d23ebe2016-08-29 19:42:52 +0000994
Stanislav Mekhanoshin8fe12452019-08-23 22:09:58 +0000995 bool hasMFMAInlineLiteralBug() const {
996 return HasMFMAInlineLiteralBug;
997 }
998
Tom Stellardb133fbb2016-10-27 23:05:31 +0000999 bool has12DWordStoreHazard() const {
1000 return getGeneration() != AMDGPUSubtarget::SOUTHERN_ISLANDS;
1001 }
1002
Neil Henninge85d45a2019-01-10 16:21:08 +00001003 // \returns true if the subtarget supports DWORDX3 load/store instructions.
1004 bool hasDwordx3LoadStores() const {
1005 return CIInsts;
1006 }
1007
Matt Arsenaulte823d922017-02-18 18:29:53 +00001008 bool hasSMovFedHazard() const {
Stanislav Mekhanoshin7895c032019-04-05 18:24:34 +00001009 return getGeneration() == AMDGPUSubtarget::GFX9;
Matt Arsenaulte823d922017-02-18 18:29:53 +00001010 }
1011
Matt Arsenaulta41351e2017-11-17 21:35:32 +00001012 bool hasReadM0MovRelInterpHazard() const {
Stanislav Mekhanoshin7895c032019-04-05 18:24:34 +00001013 return getGeneration() == AMDGPUSubtarget::GFX9;
Matt Arsenaulte823d922017-02-18 18:29:53 +00001014 }
1015
Matt Arsenaulta41351e2017-11-17 21:35:32 +00001016 bool hasReadM0SendMsgHazard() const {
Stanislav Mekhanoshin7895c032019-04-05 18:24:34 +00001017 return getGeneration() >= AMDGPUSubtarget::VOLCANIC_ISLANDS &&
1018 getGeneration() <= AMDGPUSubtarget::GFX9;
Matt Arsenaulta41351e2017-11-17 21:35:32 +00001019 }
1020
Stanislav Mekhanoshincee607e2019-04-24 17:03:15 +00001021 bool hasVcmpxPermlaneHazard() const {
1022 return HasVcmpxPermlaneHazard;
1023 }
1024
1025 bool hasVMEMtoScalarWriteHazard() const {
1026 return HasVMEMtoScalarWriteHazard;
1027 }
1028
1029 bool hasSMEMtoVectorWriteHazard() const {
1030 return HasSMEMtoVectorWriteHazard;
1031 }
1032
1033 bool hasLDSMisalignedBug() const {
1034 return LDSMisalignedBug && !EnableCuMode;
1035 }
1036
1037 bool hasInstFwdPrefetchBug() const {
1038 return HasInstFwdPrefetchBug;
1039 }
1040
1041 bool hasVcmpxExecWARHazard() const {
1042 return HasVcmpxExecWARHazard;
1043 }
1044
1045 bool hasLdsBranchVmemWARHazard() const {
1046 return HasLdsBranchVmemWARHazard;
1047 }
1048
1049 bool hasNSAtoVMEMBug() const {
1050 return HasNSAtoVMEMBug;
1051 }
1052
Tom Stellardc5a154d2018-06-28 23:47:12 +00001053 /// Return the maximum number of waves per SIMD for kernels using \p SGPRs
1054 /// SGPRs
Tom Stellard0d23ebe2016-08-29 19:42:52 +00001055 unsigned getOccupancyWithNumSGPRs(unsigned SGPRs) const;
1056
Tom Stellardc5a154d2018-06-28 23:47:12 +00001057 /// Return the maximum number of waves per SIMD for kernels using \p VGPRs
1058 /// VGPRs
Tom Stellard0d23ebe2016-08-29 19:42:52 +00001059 unsigned getOccupancyWithNumVGPRs(unsigned VGPRs) const;
Konstantin Zhuravlyovd7bdf242016-09-30 16:50:36 +00001060
Stanislav Mekhanoshin2594fa82019-07-31 01:07:10 +00001061 /// Return occupancy for the given function. Used LDS and a number of
1062 /// registers if provided.
1063 /// Note, occupancy can be affected by the scratch allocation as well, but
1064 /// we do not have enough information to compute it.
1065 unsigned computeOccupancy(const MachineFunction &MF, unsigned LDSSize = 0,
1066 unsigned NumSGPRs = 0, unsigned NumVGPRs = 0) const;
1067
Matt Arsenaulte823d922017-02-18 18:29:53 +00001068 /// \returns true if the flat_scratch register should be initialized with the
1069 /// pointer to the wave's scratch memory rather than a size and offset.
1070 bool flatScratchIsPointer() const {
Tom Stellardc5a154d2018-06-28 23:47:12 +00001071 return getGeneration() >= AMDGPUSubtarget::GFX9;
Konstantin Zhuravlyovd7bdf242016-09-30 16:50:36 +00001072 }
Matt Arsenault4eae3012016-10-28 20:31:47 +00001073
Tim Renouf832f90f2018-02-26 14:46:43 +00001074 /// \returns true if the machine has merged shaders in which s0-s7 are
1075 /// reserved by the hardware and user SGPRs start at s8
1076 bool hasMergedShaders() const {
1077 return getGeneration() >= GFX9;
1078 }
1079
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +00001080 /// \returns SGPR allocation granularity supported by the subtarget.
1081 unsigned getSGPRAllocGranule() const {
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +00001082 return AMDGPU::IsaInfo::getSGPRAllocGranule(this);
Konstantin Zhuravlyove22fbcb2017-02-08 13:18:40 +00001083 }
1084
1085 /// \returns SGPR encoding granularity supported by the subtarget.
1086 unsigned getSGPREncodingGranule() const {
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +00001087 return AMDGPU::IsaInfo::getSGPREncodingGranule(this);
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +00001088 }
1089
1090 /// \returns Total number of SGPRs supported by the subtarget.
1091 unsigned getTotalNumSGPRs() const {
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +00001092 return AMDGPU::IsaInfo::getTotalNumSGPRs(this);
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +00001093 }
1094
1095 /// \returns Addressable number of SGPRs supported by the subtarget.
1096 unsigned getAddressableNumSGPRs() const {
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +00001097 return AMDGPU::IsaInfo::getAddressableNumSGPRs(this);
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +00001098 }
1099
1100 /// \returns Minimum number of SGPRs that meets the given number of waves per
1101 /// execution unit requirement supported by the subtarget.
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +00001102 unsigned getMinNumSGPRs(unsigned WavesPerEU) const {
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +00001103 return AMDGPU::IsaInfo::getMinNumSGPRs(this, WavesPerEU);
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +00001104 }
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +00001105
1106 /// \returns Maximum number of SGPRs that meets the given number of waves per
1107 /// execution unit requirement supported by the subtarget.
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +00001108 unsigned getMaxNumSGPRs(unsigned WavesPerEU, bool Addressable) const {
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +00001109 return AMDGPU::IsaInfo::getMaxNumSGPRs(this, WavesPerEU, Addressable);
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +00001110 }
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +00001111
1112 /// \returns Reserved number of SGPRs for given function \p MF.
1113 unsigned getReservedNumSGPRs(const MachineFunction &MF) const;
1114
1115 /// \returns Maximum number of SGPRs that meets number of waves per execution
1116 /// unit requirement for function \p MF, or number of SGPRs explicitly
1117 /// requested using "amdgpu-num-sgpr" attribute attached to function \p MF.
1118 ///
1119 /// \returns Value that meets number of waves per execution unit requirement
1120 /// if explicitly requested value cannot be converted to integer, violates
1121 /// subtarget's specifications, or does not meet number of waves per execution
1122 /// unit requirement.
1123 unsigned getMaxNumSGPRs(const MachineFunction &MF) const;
1124
1125 /// \returns VGPR allocation granularity supported by the subtarget.
1126 unsigned getVGPRAllocGranule() const {
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +00001127 return AMDGPU::IsaInfo::getVGPRAllocGranule(this);
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +00001128 }
1129
Konstantin Zhuravlyove22fbcb2017-02-08 13:18:40 +00001130 /// \returns VGPR encoding granularity supported by the subtarget.
1131 unsigned getVGPREncodingGranule() const {
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +00001132 return AMDGPU::IsaInfo::getVGPREncodingGranule(this);
Konstantin Zhuravlyove22fbcb2017-02-08 13:18:40 +00001133 }
1134
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +00001135 /// \returns Total number of VGPRs supported by the subtarget.
1136 unsigned getTotalNumVGPRs() const {
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +00001137 return AMDGPU::IsaInfo::getTotalNumVGPRs(this);
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +00001138 }
1139
1140 /// \returns Addressable number of VGPRs supported by the subtarget.
1141 unsigned getAddressableNumVGPRs() const {
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +00001142 return AMDGPU::IsaInfo::getAddressableNumVGPRs(this);
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +00001143 }
1144
1145 /// \returns Minimum number of VGPRs that meets given number of waves per
1146 /// execution unit requirement supported by the subtarget.
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +00001147 unsigned getMinNumVGPRs(unsigned WavesPerEU) const {
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +00001148 return AMDGPU::IsaInfo::getMinNumVGPRs(this, WavesPerEU);
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +00001149 }
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +00001150
1151 /// \returns Maximum number of VGPRs that meets given number of waves per
1152 /// execution unit requirement supported by the subtarget.
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +00001153 unsigned getMaxNumVGPRs(unsigned WavesPerEU) const {
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +00001154 return AMDGPU::IsaInfo::getMaxNumVGPRs(this, WavesPerEU);
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +00001155 }
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +00001156
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +00001157 /// \returns Maximum number of VGPRs that meets number of waves per execution
1158 /// unit requirement for function \p MF, or number of VGPRs explicitly
1159 /// requested using "amdgpu-num-vgpr" attribute attached to function \p MF.
1160 ///
1161 /// \returns Value that meets number of waves per execution unit requirement
1162 /// if explicitly requested value cannot be converted to integer, violates
1163 /// subtarget's specifications, or does not meet number of waves per execution
1164 /// unit requirement.
1165 unsigned getMaxNumVGPRs(const MachineFunction &MF) const;
Stanislav Mekhanoshind4ae4702017-09-19 20:54:38 +00001166
1167 void getPostRAMutations(
1168 std::vector<std::unique_ptr<ScheduleDAGMutation>> &Mutations)
1169 const override;
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +00001170
Stanislav Mekhanoshin68a2fef2019-06-13 23:47:36 +00001171 bool isWave32() const {
1172 return WavefrontSize == 32;
1173 }
1174
Stanislav Mekhanoshin52500212019-06-16 17:13:09 +00001175 const TargetRegisterClass *getBoolRC() const {
1176 return getRegisterInfo()->getBoolRC();
1177 }
1178
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +00001179 /// \returns Maximum number of work groups per compute unit supported by the
1180 /// subtarget and limited by given \p FlatWorkGroupSize.
1181 unsigned getMaxWorkGroupsPerCU(unsigned FlatWorkGroupSize) const override {
1182 return AMDGPU::IsaInfo::getMaxWorkGroupsPerCU(this, FlatWorkGroupSize);
1183 }
1184
1185 /// \returns Minimum flat work group size supported by the subtarget.
1186 unsigned getMinFlatWorkGroupSize() const override {
1187 return AMDGPU::IsaInfo::getMinFlatWorkGroupSize(this);
1188 }
1189
1190 /// \returns Maximum flat work group size supported by the subtarget.
1191 unsigned getMaxFlatWorkGroupSize() const override {
1192 return AMDGPU::IsaInfo::getMaxFlatWorkGroupSize(this);
1193 }
1194
1195 /// \returns Maximum number of waves per execution unit supported by the
1196 /// subtarget and limited by given \p FlatWorkGroupSize.
1197 unsigned getMaxWavesPerEU(unsigned FlatWorkGroupSize) const override {
1198 return AMDGPU::IsaInfo::getMaxWavesPerEU(this, FlatWorkGroupSize);
1199 }
1200
1201 /// \returns Minimum number of waves per execution unit supported by the
1202 /// subtarget.
1203 unsigned getMinWavesPerEU() const override {
1204 return AMDGPU::IsaInfo::getMinWavesPerEU(this);
1205 }
Tom Stellard75aadc22012-12-11 21:25:42 +00001206};
1207
Tom Stellardc5a154d2018-06-28 23:47:12 +00001208class R600Subtarget final : public R600GenSubtargetInfo,
Tom Stellard5bfbae52018-07-11 20:59:01 +00001209 public AMDGPUSubtarget {
Tom Stellardc5a154d2018-06-28 23:47:12 +00001210private:
1211 R600InstrInfo InstrInfo;
1212 R600FrameLowering FrameLowering;
1213 bool FMA;
1214 bool CaymanISA;
1215 bool CFALUBug;
Tom Stellardc5a154d2018-06-28 23:47:12 +00001216 bool HasVertexCache;
1217 bool R600ALUInst;
1218 bool FP64;
1219 short TexVTXClauseSize;
1220 Generation Gen;
1221 R600TargetLowering TLInfo;
1222 InstrItineraryData InstrItins;
1223 SelectionDAGTargetInfo TSInfo;
Tom Stellardc5a154d2018-06-28 23:47:12 +00001224
1225public:
1226 R600Subtarget(const Triple &TT, StringRef CPU, StringRef FS,
1227 const TargetMachine &TM);
1228
1229 const R600InstrInfo *getInstrInfo() const override { return &InstrInfo; }
1230
1231 const R600FrameLowering *getFrameLowering() const override {
1232 return &FrameLowering;
1233 }
1234
1235 const R600TargetLowering *getTargetLowering() const override {
1236 return &TLInfo;
1237 }
1238
1239 const R600RegisterInfo *getRegisterInfo() const override {
1240 return &InstrInfo.getRegisterInfo();
1241 }
1242
1243 const InstrItineraryData *getInstrItineraryData() const override {
1244 return &InstrItins;
1245 }
1246
1247 // Nothing implemented, just prevent crashes on use.
1248 const SelectionDAGTargetInfo *getSelectionDAGInfo() const override {
1249 return &TSInfo;
1250 }
1251
1252 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
1253
1254 Generation getGeneration() const {
1255 return Gen;
1256 }
1257
1258 unsigned getStackAlignment() const {
1259 return 4;
1260 }
1261
1262 R600Subtarget &initializeSubtargetDependencies(const Triple &TT,
1263 StringRef GPU, StringRef FS);
1264
1265 bool hasBFE() const {
1266 return (getGeneration() >= EVERGREEN);
1267 }
1268
1269 bool hasBFI() const {
1270 return (getGeneration() >= EVERGREEN);
1271 }
1272
1273 bool hasBCNT(unsigned Size) const {
1274 if (Size == 32)
1275 return (getGeneration() >= EVERGREEN);
1276
1277 return false;
1278 }
1279
1280 bool hasBORROW() const {
1281 return (getGeneration() >= EVERGREEN);
1282 }
1283
1284 bool hasCARRY() const {
1285 return (getGeneration() >= EVERGREEN);
1286 }
1287
1288 bool hasCaymanISA() const {
1289 return CaymanISA;
1290 }
1291
1292 bool hasFFBL() const {
1293 return (getGeneration() >= EVERGREEN);
1294 }
1295
1296 bool hasFFBH() const {
1297 return (getGeneration() >= EVERGREEN);
1298 }
1299
1300 bool hasFMA() const { return FMA; }
1301
Tom Stellardc5a154d2018-06-28 23:47:12 +00001302 bool hasCFAluBug() const { return CFALUBug; }
1303
1304 bool hasVertexCache() const { return HasVertexCache; }
1305
1306 short getTexVTXClauseSize() const { return TexVTXClauseSize; }
1307
Tom Stellardc5a154d2018-06-28 23:47:12 +00001308 bool enableMachineScheduler() const override {
1309 return true;
1310 }
1311
1312 bool enableSubRegLiveness() const override {
1313 return true;
1314 }
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +00001315
1316 /// \returns Maximum number of work groups per compute unit supported by the
1317 /// subtarget and limited by given \p FlatWorkGroupSize.
1318 unsigned getMaxWorkGroupsPerCU(unsigned FlatWorkGroupSize) const override {
1319 return AMDGPU::IsaInfo::getMaxWorkGroupsPerCU(this, FlatWorkGroupSize);
1320 }
1321
1322 /// \returns Minimum flat work group size supported by the subtarget.
1323 unsigned getMinFlatWorkGroupSize() const override {
1324 return AMDGPU::IsaInfo::getMinFlatWorkGroupSize(this);
1325 }
1326
1327 /// \returns Maximum flat work group size supported by the subtarget.
1328 unsigned getMaxFlatWorkGroupSize() const override {
1329 return AMDGPU::IsaInfo::getMaxFlatWorkGroupSize(this);
1330 }
1331
1332 /// \returns Maximum number of waves per execution unit supported by the
1333 /// subtarget and limited by given \p FlatWorkGroupSize.
1334 unsigned getMaxWavesPerEU(unsigned FlatWorkGroupSize) const override {
1335 return AMDGPU::IsaInfo::getMaxWavesPerEU(this, FlatWorkGroupSize);
1336 }
1337
1338 /// \returns Minimum number of waves per execution unit supported by the
1339 /// subtarget.
1340 unsigned getMinWavesPerEU() const override {
1341 return AMDGPU::IsaInfo::getMinWavesPerEU(this);
1342 }
Tom Stellardc5a154d2018-06-28 23:47:12 +00001343};
1344
Eugene Zelenko2bc2f332016-12-09 22:06:55 +00001345} // end namespace llvm
Tom Stellard75aadc22012-12-11 21:25:42 +00001346
Eugene Zelenko2bc2f332016-12-09 22:06:55 +00001347#endif // LLVM_LIB_TARGET_AMDGPU_AMDGPUSUBTARGET_H