blob: 5511d7c6f8fffd636516da30a342bf921f059b15 [file] [log] [blame]
Tom Stellard75aadc22012-12-11 21:25:42 +00001//===-- AMDGPUAsmPrinter.cpp - AMDGPU Assebly printer --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10/// \file
11///
12/// The AMDGPUAsmPrinter is used to print both assembly string and also binary
13/// code. When passed an MCAsmStreamer it prints assembly and when passed
14/// an MCObjectStreamer it outputs binary code.
15//
16//===----------------------------------------------------------------------===//
17//
18
Tom Stellard75aadc22012-12-11 21:25:42 +000019#include "AMDGPUAsmPrinter.h"
20#include "AMDGPU.h"
Tom Stellard2e59a452014-06-13 01:32:00 +000021#include "AMDGPUSubtarget.h"
Tom Stellard043de4c2013-05-06 17:50:51 +000022#include "R600Defines.h"
Vincent Lejeune117f0752013-04-23 17:34:12 +000023#include "R600MachineFunctionInfo.h"
Vincent Lejeune98a73802013-04-17 15:17:25 +000024#include "R600RegisterInfo.h"
Benjamin Kramerd78bb462013-05-23 17:10:37 +000025#include "SIDefines.h"
26#include "SIMachineFunctionInfo.h"
27#include "SIRegisterInfo.h"
Tom Stellardb02094e2014-07-21 15:45:01 +000028#include "llvm/CodeGen/MachineFrameInfo.h"
Tom Stellard3a7beafb32013-04-15 17:51:30 +000029#include "llvm/MC/MCContext.h"
30#include "llvm/MC/MCSectionELF.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000031#include "llvm/MC/MCStreamer.h"
Tom Stellard3a7beafb32013-04-15 17:51:30 +000032#include "llvm/Support/ELF.h"
Tom Stellardc026e8b2013-06-28 15:47:08 +000033#include "llvm/Support/MathExtras.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000034#include "llvm/Support/TargetRegistry.h"
Chandler Carruthbe810232013-01-02 10:22:59 +000035#include "llvm/Target/TargetLoweringObjectFile.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000036
37using namespace llvm;
38
Matt Arsenault0989d512014-06-26 17:22:30 +000039// TODO: This should get the default rounding mode from the kernel. We just set
40// the default here, but this could change if the OpenCL rounding mode pragmas
41// are used.
42//
43// The denormal mode here should match what is reported by the OpenCL runtime
44// for the CL_FP_DENORM bit from CL_DEVICE_{HALF|SINGLE|DOUBLE}_FP_CONFIG, but
45// can also be override to flush with the -cl-denorms-are-zero compiler flag.
46//
47// AMD OpenCL only sets flush none and reports CL_FP_DENORM for double
48// precision, and leaves single precision to flush all and does not report
49// CL_FP_DENORM for CL_DEVICE_SINGLE_FP_CONFIG. Mesa's OpenCL currently reports
50// CL_FP_DENORM for both.
Matt Arsenaultc6ae7b42014-07-14 23:40:43 +000051//
52// FIXME: It seems some instructions do not support single precision denormals
53// regardless of the mode (exp_*_f32, rcp_*_f32, rsq_*_f32, rsq_*f32, sqrt_f32,
54// and sin_f32, cos_f32 on most parts).
55
56// We want to use these instructions, and using fp32 denormals also causes
57// instructions to run at the double precision rate for the device so it's
58// probably best to just report no single precision denormals.
Matt Arsenaultf171cf22014-07-14 23:40:49 +000059static uint32_t getFPMode(const MachineFunction &F) {
60 const AMDGPUSubtarget& ST = F.getTarget().getSubtarget<AMDGPUSubtarget>();
61 // TODO: Is there any real use for the flush in only / flush out only modes?
62
63 uint32_t FP32Denormals =
64 ST.hasFP32Denormals() ? FP_DENORM_FLUSH_NONE : FP_DENORM_FLUSH_IN_FLUSH_OUT;
65
66 uint32_t FP64Denormals =
67 ST.hasFP64Denormals() ? FP_DENORM_FLUSH_NONE : FP_DENORM_FLUSH_IN_FLUSH_OUT;
68
Matt Arsenault0989d512014-06-26 17:22:30 +000069 return FP_ROUND_MODE_SP(FP_ROUND_ROUND_TO_NEAREST) |
70 FP_ROUND_MODE_DP(FP_ROUND_ROUND_TO_NEAREST) |
Matt Arsenaultf171cf22014-07-14 23:40:49 +000071 FP_DENORM_MODE_SP(FP32Denormals) |
72 FP_DENORM_MODE_DP(FP64Denormals);
Matt Arsenault0989d512014-06-26 17:22:30 +000073}
Tom Stellard75aadc22012-12-11 21:25:42 +000074
75static AsmPrinter *createAMDGPUAsmPrinterPass(TargetMachine &tm,
76 MCStreamer &Streamer) {
77 return new AMDGPUAsmPrinter(tm, Streamer);
78}
79
80extern "C" void LLVMInitializeR600AsmPrinter() {
81 TargetRegistry::RegisterAsmPrinter(TheAMDGPUTarget, createAMDGPUAsmPrinterPass);
82}
83
Tom Stellarded699252013-10-12 05:02:51 +000084AMDGPUAsmPrinter::AMDGPUAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
Matt Arsenault89cc49f2013-12-05 05:15:35 +000085 : AsmPrinter(TM, Streamer) {
Rafael Espindola277f9062014-01-31 22:14:06 +000086 DisasmEnabled = TM.getSubtarget<AMDGPUSubtarget>().dumpCode();
Tom Stellarded699252013-10-12 05:02:51 +000087}
88
Tom Stellard067c8152014-07-21 14:01:14 +000089void AMDGPUAsmPrinter::EmitEndOfAsmFile(Module &M) {
90
91 // This label is used to mark the end of the .text section.
92 const TargetLoweringObjectFile &TLOF = getObjFileLowering();
93 OutStreamer.SwitchSection(TLOF.getTextSection());
94 MCSymbol *EndOfTextLabel =
95 OutContext.GetOrCreateSymbol(StringRef(END_OF_TEXT_LABEL_NAME));
96 OutStreamer.EmitLabel(EndOfTextLabel);
97}
98
Tom Stellard75aadc22012-12-11 21:25:42 +000099bool AMDGPUAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Tom Stellardfae1dc82014-10-03 19:02:02 +0000100
101 // The starting address of all shader programs must be 256 bytes aligned.
102 MF.setAlignment(8);
103
Tom Stellard75aadc22012-12-11 21:25:42 +0000104 SetupMachineFunction(MF);
Matt Arsenault89cc49f2013-12-05 05:15:35 +0000105
Tom Stellard79243d92014-10-01 17:15:17 +0000106 EmitFunctionHeader();
Vincent Lejeune98a73802013-04-17 15:17:25 +0000107
Tom Stellarded699252013-10-12 05:02:51 +0000108 MCContext &Context = getObjFileLowering().getContext();
109 const MCSectionELF *ConfigSection = Context.getELFSection(".AMDGPU.config",
Tom Stellard34e40682013-04-24 23:56:14 +0000110 ELF::SHT_PROGBITS, 0,
Vincent Lejeune98a73802013-04-17 15:17:25 +0000111 SectionKind::getReadOnly());
112 OutStreamer.SwitchSection(ConfigSection);
Matt Arsenault89cc49f2013-12-05 05:15:35 +0000113
Tom Stellarded699252013-10-12 05:02:51 +0000114 const AMDGPUSubtarget &STM = TM.getSubtarget<AMDGPUSubtarget>();
Matt Arsenault89cc49f2013-12-05 05:15:35 +0000115 SIProgramInfo KernelInfo;
Tom Stellarda6c6e1b2013-06-07 20:37:48 +0000116 if (STM.getGeneration() > AMDGPUSubtarget::NORTHERN_ISLANDS) {
Matt Arsenaulte500e322014-04-15 22:40:47 +0000117 getSIProgramInfo(KernelInfo, MF);
Matt Arsenault89cc49f2013-12-05 05:15:35 +0000118 EmitProgramInfoSI(MF, KernelInfo);
Vincent Lejeune98a73802013-04-17 15:17:25 +0000119 } else {
120 EmitProgramInfoR600(MF);
Tom Stellard75aadc22012-12-11 21:25:42 +0000121 }
Tom Stellarded699252013-10-12 05:02:51 +0000122
123 DisasmLines.clear();
124 HexLines.clear();
125 DisasmLineMaxLen = 0;
126
Tom Stellard3a7beafb32013-04-15 17:51:30 +0000127 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Tom Stellard75aadc22012-12-11 21:25:42 +0000128 EmitFunctionBody();
Tom Stellarded699252013-10-12 05:02:51 +0000129
Rafael Espindola887541f2014-01-31 22:08:19 +0000130 if (isVerbose()) {
Matt Arsenault89cc49f2013-12-05 05:15:35 +0000131 const MCSectionELF *CommentSection
132 = Context.getELFSection(".AMDGPU.csdata",
133 ELF::SHT_PROGBITS, 0,
134 SectionKind::getReadOnly());
135 OutStreamer.SwitchSection(CommentSection);
136
Matt Arsenaulte500e322014-04-15 22:40:47 +0000137 if (STM.getGeneration() >= AMDGPUSubtarget::SOUTHERN_ISLANDS) {
Rafael Espindola98f5b542014-01-27 00:19:41 +0000138 OutStreamer.emitRawComment(" Kernel info:", false);
Matt Arsenaulte500e322014-04-15 22:40:47 +0000139 OutStreamer.emitRawComment(" codeLenInByte = " + Twine(KernelInfo.CodeLen),
140 false);
Rafael Espindola98f5b542014-01-27 00:19:41 +0000141 OutStreamer.emitRawComment(" NumSgprs: " + Twine(KernelInfo.NumSGPR),
Rafael Espindolabcf890b2014-01-27 00:16:00 +0000142 false);
Rafael Espindola98f5b542014-01-27 00:19:41 +0000143 OutStreamer.emitRawComment(" NumVgprs: " + Twine(KernelInfo.NumVGPR),
Rafael Espindolabcf890b2014-01-27 00:16:00 +0000144 false);
Matt Arsenault0989d512014-06-26 17:22:30 +0000145 OutStreamer.emitRawComment(" FloatMode: " + Twine(KernelInfo.FloatMode),
146 false);
147 OutStreamer.emitRawComment(" IeeeMode: " + Twine(KernelInfo.IEEEMode),
148 false);
Tom Stellardb02094e2014-07-21 15:45:01 +0000149 OutStreamer.emitRawComment(" ScratchSize: " + Twine(KernelInfo.ScratchSize),
150 false);
Tom Stellard08b6af92014-01-22 21:55:35 +0000151 } else {
152 R600MachineFunctionInfo *MFI = MF.getInfo<R600MachineFunctionInfo>();
Rafael Espindola887541f2014-01-31 22:08:19 +0000153 OutStreamer.emitRawComment(
Tom Stellard08b6af92014-01-22 21:55:35 +0000154 Twine("SQ_PGM_RESOURCES:STACK_SIZE = " + Twine(MFI->StackSize)));
155 }
Matt Arsenault89cc49f2013-12-05 05:15:35 +0000156 }
157
Tom Stellarded699252013-10-12 05:02:51 +0000158 if (STM.dumpCode()) {
159#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
160 MF.dump();
161#endif
162
163 if (DisasmEnabled) {
164 OutStreamer.SwitchSection(Context.getELFSection(".AMDGPU.disasm",
165 ELF::SHT_NOTE, 0,
166 SectionKind::getReadOnly()));
167
168 for (size_t i = 0; i < DisasmLines.size(); ++i) {
169 std::string Comment(DisasmLineMaxLen - DisasmLines[i].size(), ' ');
170 Comment += " ; " + HexLines[i] + "\n";
171
172 OutStreamer.EmitBytes(StringRef(DisasmLines[i]));
173 OutStreamer.EmitBytes(StringRef(Comment));
174 }
175 }
176 }
177
Tom Stellard75aadc22012-12-11 21:25:42 +0000178 return false;
179}
180
Matt Arsenaultd32dbb62014-07-13 03:06:43 +0000181void AMDGPUAsmPrinter::EmitProgramInfoR600(const MachineFunction &MF) {
Vincent Lejeune98a73802013-04-17 15:17:25 +0000182 unsigned MaxGPR = 0;
Vincent Lejeune4a0beb52013-04-30 00:13:13 +0000183 bool killPixel = false;
Eric Christopherd9134482014-08-04 21:25:23 +0000184 const R600RegisterInfo *RI = static_cast<const R600RegisterInfo *>(
185 TM.getSubtargetImpl()->getRegisterInfo());
Matt Arsenaultd32dbb62014-07-13 03:06:43 +0000186 const R600MachineFunctionInfo *MFI = MF.getInfo<R600MachineFunctionInfo>();
Tom Stellard043de4c2013-05-06 17:50:51 +0000187 const AMDGPUSubtarget &STM = TM.getSubtarget<AMDGPUSubtarget>();
Vincent Lejeune98a73802013-04-17 15:17:25 +0000188
Matt Arsenaultd32dbb62014-07-13 03:06:43 +0000189 for (const MachineBasicBlock &MBB : MF) {
190 for (const MachineInstr &MI : MBB) {
Vincent Lejeune4a0beb52013-04-30 00:13:13 +0000191 if (MI.getOpcode() == AMDGPU::KILLGT)
192 killPixel = true;
Vincent Lejeune98a73802013-04-17 15:17:25 +0000193 unsigned numOperands = MI.getNumOperands();
194 for (unsigned op_idx = 0; op_idx < numOperands; op_idx++) {
Matt Arsenaultd32dbb62014-07-13 03:06:43 +0000195 const MachineOperand &MO = MI.getOperand(op_idx);
Vincent Lejeune98a73802013-04-17 15:17:25 +0000196 if (!MO.isReg())
197 continue;
198 unsigned HWReg = RI->getEncodingValue(MO.getReg()) & 0xff;
199
200 // Register with value > 127 aren't GPR
201 if (HWReg > 127)
202 continue;
203 MaxGPR = std::max(MaxGPR, HWReg);
204 }
205 }
206 }
Tom Stellard043de4c2013-05-06 17:50:51 +0000207
208 unsigned RsrcReg;
Tom Stellarda6c6e1b2013-06-07 20:37:48 +0000209 if (STM.getGeneration() >= AMDGPUSubtarget::EVERGREEN) {
Tom Stellard043de4c2013-05-06 17:50:51 +0000210 // Evergreen / Northern Islands
Matt Arsenault762af962014-07-13 03:06:39 +0000211 switch (MFI->getShaderType()) {
Tom Stellard043de4c2013-05-06 17:50:51 +0000212 default: // Fall through
213 case ShaderType::COMPUTE: RsrcReg = R_0288D4_SQ_PGM_RESOURCES_LS; break;
214 case ShaderType::GEOMETRY: RsrcReg = R_028878_SQ_PGM_RESOURCES_GS; break;
215 case ShaderType::PIXEL: RsrcReg = R_028844_SQ_PGM_RESOURCES_PS; break;
216 case ShaderType::VERTEX: RsrcReg = R_028860_SQ_PGM_RESOURCES_VS; break;
217 }
218 } else {
219 // R600 / R700
Matt Arsenault762af962014-07-13 03:06:39 +0000220 switch (MFI->getShaderType()) {
Tom Stellard043de4c2013-05-06 17:50:51 +0000221 default: // Fall through
222 case ShaderType::GEOMETRY: // Fall through
223 case ShaderType::COMPUTE: // Fall through
224 case ShaderType::VERTEX: RsrcReg = R_028868_SQ_PGM_RESOURCES_VS; break;
225 case ShaderType::PIXEL: RsrcReg = R_028850_SQ_PGM_RESOURCES_PS; break;
226 }
227 }
228
229 OutStreamer.EmitIntValue(RsrcReg, 4);
230 OutStreamer.EmitIntValue(S_NUM_GPRS(MaxGPR + 1) |
231 S_STACK_SIZE(MFI->StackSize), 4);
232 OutStreamer.EmitIntValue(R_02880C_DB_SHADER_CONTROL, 4);
233 OutStreamer.EmitIntValue(S_02880C_KILL_ENABLE(killPixel), 4);
Tom Stellardc026e8b2013-06-28 15:47:08 +0000234
Matt Arsenault762af962014-07-13 03:06:39 +0000235 if (MFI->getShaderType() == ShaderType::COMPUTE) {
Tom Stellardc026e8b2013-06-28 15:47:08 +0000236 OutStreamer.EmitIntValue(R_0288E8_SQ_LDS_ALLOC, 4);
237 OutStreamer.EmitIntValue(RoundUpToAlignment(MFI->LDSSize, 4) >> 2, 4);
238 }
Vincent Lejeune98a73802013-04-17 15:17:25 +0000239}
240
Matt Arsenaulte500e322014-04-15 22:40:47 +0000241void AMDGPUAsmPrinter::getSIProgramInfo(SIProgramInfo &ProgInfo,
Matt Arsenaultd32dbb62014-07-13 03:06:43 +0000242 const MachineFunction &MF) const {
Matt Arsenaulte500e322014-04-15 22:40:47 +0000243 uint64_t CodeSize = 0;
Tom Stellard75aadc22012-12-11 21:25:42 +0000244 unsigned MaxSGPR = 0;
245 unsigned MaxVGPR = 0;
246 bool VCCUsed = false;
Matt Arsenault3f981402014-09-15 15:41:53 +0000247 bool FlatUsed = false;
Eric Christopherd9134482014-08-04 21:25:23 +0000248 const SIRegisterInfo *RI = static_cast<const SIRegisterInfo *>(
249 TM.getSubtargetImpl()->getRegisterInfo());
Tom Stellard75aadc22012-12-11 21:25:42 +0000250
Matt Arsenaultd32dbb62014-07-13 03:06:43 +0000251 for (const MachineBasicBlock &MBB : MF) {
252 for (const MachineInstr &MI : MBB) {
Matt Arsenaulte500e322014-04-15 22:40:47 +0000253 // TODO: CodeSize should account for multiple functions.
254 CodeSize += MI.getDesc().Size;
255
Tom Stellard75aadc22012-12-11 21:25:42 +0000256 unsigned numOperands = MI.getNumOperands();
257 for (unsigned op_idx = 0; op_idx < numOperands; op_idx++) {
Matt Arsenaultd32dbb62014-07-13 03:06:43 +0000258 const MachineOperand &MO = MI.getOperand(op_idx);
Tom Stellard75aadc22012-12-11 21:25:42 +0000259 unsigned width = 0;
260 bool isSGPR = false;
Matt Arsenaulta64ee172014-01-08 21:47:14 +0000261
Tom Stellard75aadc22012-12-11 21:25:42 +0000262 if (!MO.isReg()) {
263 continue;
264 }
Matt Arsenaulta64ee172014-01-08 21:47:14 +0000265 unsigned reg = MO.getReg();
Tom Stellardfbe435d2014-03-17 17:03:51 +0000266 if (reg == AMDGPU::VCC || reg == AMDGPU::VCC_LO ||
267 reg == AMDGPU::VCC_HI) {
Tom Stellard75aadc22012-12-11 21:25:42 +0000268 VCCUsed = true;
269 continue;
Matt Arsenault3f981402014-09-15 15:41:53 +0000270 } else if (reg == AMDGPU::FLAT_SCR ||
271 reg == AMDGPU::FLAT_SCR_LO ||
272 reg == AMDGPU::FLAT_SCR_HI) {
273 FlatUsed = true;
274 continue;
Tom Stellard75aadc22012-12-11 21:25:42 +0000275 }
Matt Arsenault65864e32013-10-22 21:11:31 +0000276
Tom Stellard75aadc22012-12-11 21:25:42 +0000277 switch (reg) {
278 default: break;
Matt Arsenault65864e32013-10-22 21:11:31 +0000279 case AMDGPU::SCC:
Tom Stellard75aadc22012-12-11 21:25:42 +0000280 case AMDGPU::EXEC:
Tom Stellard75aadc22012-12-11 21:25:42 +0000281 case AMDGPU::M0:
282 continue;
283 }
284
285 if (AMDGPU::SReg_32RegClass.contains(reg)) {
286 isSGPR = true;
287 width = 1;
288 } else if (AMDGPU::VReg_32RegClass.contains(reg)) {
289 isSGPR = false;
290 width = 1;
291 } else if (AMDGPU::SReg_64RegClass.contains(reg)) {
292 isSGPR = true;
293 width = 2;
294 } else if (AMDGPU::VReg_64RegClass.contains(reg)) {
295 isSGPR = false;
296 width = 2;
Christian Konig8b1ed282013-04-10 08:39:16 +0000297 } else if (AMDGPU::VReg_96RegClass.contains(reg)) {
298 isSGPR = false;
299 width = 3;
Tom Stellard75aadc22012-12-11 21:25:42 +0000300 } else if (AMDGPU::SReg_128RegClass.contains(reg)) {
301 isSGPR = true;
302 width = 4;
303 } else if (AMDGPU::VReg_128RegClass.contains(reg)) {
304 isSGPR = false;
305 width = 4;
306 } else if (AMDGPU::SReg_256RegClass.contains(reg)) {
307 isSGPR = true;
308 width = 8;
Tom Stellard538ceeb2013-02-07 17:02:09 +0000309 } else if (AMDGPU::VReg_256RegClass.contains(reg)) {
310 isSGPR = false;
311 width = 8;
Tom Stellarda66cafa2013-10-23 00:44:12 +0000312 } else if (AMDGPU::SReg_512RegClass.contains(reg)) {
313 isSGPR = true;
314 width = 16;
Tom Stellard538ceeb2013-02-07 17:02:09 +0000315 } else if (AMDGPU::VReg_512RegClass.contains(reg)) {
316 isSGPR = false;
317 width = 16;
Tom Stellard75aadc22012-12-11 21:25:42 +0000318 } else {
Matt Arsenaulteaa3a7e2013-12-10 21:37:42 +0000319 llvm_unreachable("Unknown register class");
Tom Stellard75aadc22012-12-11 21:25:42 +0000320 }
Matt Arsenaulta64ee172014-01-08 21:47:14 +0000321 unsigned hwReg = RI->getEncodingValue(reg) & 0xff;
322 unsigned maxUsed = hwReg + width - 1;
Tom Stellard75aadc22012-12-11 21:25:42 +0000323 if (isSGPR) {
324 MaxSGPR = maxUsed > MaxSGPR ? maxUsed : MaxSGPR;
325 } else {
326 MaxVGPR = maxUsed > MaxVGPR ? maxUsed : MaxVGPR;
327 }
328 }
329 }
330 }
Matt Arsenault89cc49f2013-12-05 05:15:35 +0000331
332 if (VCCUsed)
Tom Stellard75aadc22012-12-11 21:25:42 +0000333 MaxSGPR += 2;
Matt Arsenault89cc49f2013-12-05 05:15:35 +0000334
Matt Arsenault3f981402014-09-15 15:41:53 +0000335 if (FlatUsed)
336 MaxSGPR += 2;
337
Matt Arsenault362f3452014-09-11 22:51:37 +0000338 // We found the maximum register index. They start at 0, so add one to get the
339 // number of registers.
340 ProgInfo.NumVGPR = MaxVGPR + 1;
341 ProgInfo.NumSGPR = MaxSGPR + 1;
Matt Arsenault0989d512014-06-26 17:22:30 +0000342
343 // Set the value to initialize FP_ROUND and FP_DENORM parts of the mode
344 // register.
345 ProgInfo.FloatMode = getFPMode(MF);
346
347 // XXX: Not quite sure what this does, but sc seems to unset this.
348 ProgInfo.IEEEMode = 0;
349
350 // Do not clamp NAN to 0.
351 ProgInfo.DX10Clamp = 0;
352
Tom Stellardb02094e2014-07-21 15:45:01 +0000353 const MachineFrameInfo *FrameInfo = MF.getFrameInfo();
354 ProgInfo.ScratchSize = FrameInfo->estimateStackSize(MF);
355
Matt Arsenault3f981402014-09-15 15:41:53 +0000356 ProgInfo.FlatUsed = FlatUsed;
357 ProgInfo.VCCUsed = VCCUsed;
Matt Arsenault0989d512014-06-26 17:22:30 +0000358 ProgInfo.CodeLen = CodeSize;
Matt Arsenault89cc49f2013-12-05 05:15:35 +0000359}
360
Matt Arsenaultd32dbb62014-07-13 03:06:43 +0000361void AMDGPUAsmPrinter::EmitProgramInfoSI(const MachineFunction &MF,
Matt Arsenault89cc49f2013-12-05 05:15:35 +0000362 const SIProgramInfo &KernelInfo) {
363 const AMDGPUSubtarget &STM = TM.getSubtarget<AMDGPUSubtarget>();
Matt Arsenaultd32dbb62014-07-13 03:06:43 +0000364 const SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>();
Matt Arsenault0989d512014-06-26 17:22:30 +0000365
Tom Stellardcb97e3a2013-04-15 17:51:35 +0000366 unsigned RsrcReg;
Matt Arsenault762af962014-07-13 03:06:39 +0000367 switch (MFI->getShaderType()) {
Tom Stellardcb97e3a2013-04-15 17:51:35 +0000368 default: // Fall through
369 case ShaderType::COMPUTE: RsrcReg = R_00B848_COMPUTE_PGM_RSRC1; break;
370 case ShaderType::GEOMETRY: RsrcReg = R_00B228_SPI_SHADER_PGM_RSRC1_GS; break;
371 case ShaderType::PIXEL: RsrcReg = R_00B028_SPI_SHADER_PGM_RSRC1_PS; break;
372 case ShaderType::VERTEX: RsrcReg = R_00B128_SPI_SHADER_PGM_RSRC1_VS; break;
373 }
374
Tom Stellard6e1ee472013-10-29 16:37:28 +0000375 unsigned LDSAlignShift;
376 if (STM.getGeneration() < AMDGPUSubtarget::SEA_ISLANDS) {
Matt Arsenault0989d512014-06-26 17:22:30 +0000377 // LDS is allocated in 64 dword blocks.
Tom Stellard6e1ee472013-10-29 16:37:28 +0000378 LDSAlignShift = 8;
379 } else {
Matt Arsenault0989d512014-06-26 17:22:30 +0000380 // LDS is allocated in 128 dword blocks.
Tom Stellard6e1ee472013-10-29 16:37:28 +0000381 LDSAlignShift = 9;
382 }
Matt Arsenault0989d512014-06-26 17:22:30 +0000383
Tom Stellard96468902014-09-24 01:33:17 +0000384 unsigned LDSSpillSize = MFI->LDSWaveSpillSize *
385 MFI->getMaximumWorkGroupSize(MF);
386
Tom Stellard6e1ee472013-10-29 16:37:28 +0000387 unsigned LDSBlocks =
Tom Stellard96468902014-09-24 01:33:17 +0000388 RoundUpToAlignment(MFI->LDSSize + LDSSpillSize,
389 1 << LDSAlignShift) >> LDSAlignShift;
Tom Stellard6e1ee472013-10-29 16:37:28 +0000390
Tom Stellardb02094e2014-07-21 15:45:01 +0000391 // Scratch is allocated in 256 dword blocks.
392 unsigned ScratchAlignShift = 10;
393 // We need to program the hardware with the amount of scratch memory that
394 // is used by the entire wave. KernelInfo.ScratchSize is the amount of
395 // scratch memory used per thread.
396 unsigned ScratchBlocks =
397 RoundUpToAlignment(KernelInfo.ScratchSize * STM.getWavefrontSize(),
398 1 << ScratchAlignShift) >> ScratchAlignShift;
399
Tom Stellardff795902014-09-19 20:42:37 +0000400 unsigned VGPRBlocks = (KernelInfo.NumVGPR - 1) / 4;
401 unsigned SGPRBlocks = (KernelInfo.NumSGPR - 1) / 8;
402
Matt Arsenault762af962014-07-13 03:06:39 +0000403 if (MFI->getShaderType() == ShaderType::COMPUTE) {
Matt Arsenault0989d512014-06-26 17:22:30 +0000404 OutStreamer.EmitIntValue(R_00B848_COMPUTE_PGM_RSRC1, 4);
405
406 const uint32_t ComputePGMRSrc1 =
Tom Stellardff795902014-09-19 20:42:37 +0000407 S_00B848_VGPRS(VGPRBlocks) |
408 S_00B848_SGPRS(SGPRBlocks) |
Matt Arsenault0989d512014-06-26 17:22:30 +0000409 S_00B848_PRIORITY(KernelInfo.Priority) |
410 S_00B848_FLOAT_MODE(KernelInfo.FloatMode) |
411 S_00B848_PRIV(KernelInfo.Priv) |
412 S_00B848_DX10_CLAMP(KernelInfo.DX10Clamp) |
413 S_00B848_IEEE_MODE(KernelInfo.DebugMode) |
414 S_00B848_IEEE_MODE(KernelInfo.IEEEMode);
415
416 OutStreamer.EmitIntValue(ComputePGMRSrc1, 4);
417
Michel Danzer49812b52013-07-10 16:37:07 +0000418 OutStreamer.EmitIntValue(R_00B84C_COMPUTE_PGM_RSRC2, 4);
Tom Stellardb02094e2014-07-21 15:45:01 +0000419 const uint32_t ComputePGMRSrc2 =
420 S_00B84C_LDS_SIZE(LDSBlocks) |
421 S_00B02C_SCRATCH_EN(ScratchBlocks > 0);
422
423 OutStreamer.EmitIntValue(ComputePGMRSrc2, 4);
424
425 OutStreamer.EmitIntValue(R_00B860_COMPUTE_TMPRING_SIZE, 4);
426 OutStreamer.EmitIntValue(S_00B860_WAVESIZE(ScratchBlocks), 4);
Matt Arsenault3f981402014-09-15 15:41:53 +0000427
428 // TODO: Should probably note flat usage somewhere. SC emits a "FlatPtr32 =
429 // 0" comment but I don't see a corresponding field in the register spec.
Matt Arsenault0989d512014-06-26 17:22:30 +0000430 } else {
431 OutStreamer.EmitIntValue(RsrcReg, 4);
Tom Stellardff795902014-09-19 20:42:37 +0000432 OutStreamer.EmitIntValue(S_00B028_VGPRS(VGPRBlocks) |
433 S_00B028_SGPRS(SGPRBlocks), 4);
Michel Danzer49812b52013-07-10 16:37:07 +0000434 }
Matt Arsenault0989d512014-06-26 17:22:30 +0000435
Matt Arsenault762af962014-07-13 03:06:39 +0000436 if (MFI->getShaderType() == ShaderType::PIXEL) {
Michel Danzer49812b52013-07-10 16:37:07 +0000437 OutStreamer.EmitIntValue(R_00B02C_SPI_SHADER_PGM_RSRC2_PS, 4);
Tom Stellard6e1ee472013-10-29 16:37:28 +0000438 OutStreamer.EmitIntValue(S_00B02C_EXTRA_LDS_SIZE(LDSBlocks), 4);
Tom Stellardcb97e3a2013-04-15 17:51:35 +0000439 OutStreamer.EmitIntValue(R_0286CC_SPI_PS_INPUT_ENA, 4);
440 OutStreamer.EmitIntValue(MFI->PSInputAddr, 4);
441 }
Tom Stellard75aadc22012-12-11 21:25:42 +0000442}