blob: cc37d152750072765207064e295925e8d8910d8b [file] [log] [blame]
Konstantin Zhuravlyov30f03b32018-06-27 05:36:03 +00001//===-- AMDGPUAsmPrinter.cpp - AMDGPU assembly printer -------------------===//
Tom Stellard45bb48e2015-06-13 03:28:10 +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 Stellard45bb48e2015-06-13 03:28:10 +00006//
7//===----------------------------------------------------------------------===//
8//
9/// \file
10///
11/// The AMDGPUAsmPrinter is used to print both assembly string and also binary
12/// code. When passed an MCAsmStreamer it prints assembly and when passed
13/// an MCObjectStreamer it outputs binary code.
14//
15//===----------------------------------------------------------------------===//
16//
17
18#include "AMDGPUAsmPrinter.h"
Tom Stellard45bb48e2015-06-13 03:28:10 +000019#include "AMDGPU.h"
Tom Stellard45bb48e2015-06-13 03:28:10 +000020#include "AMDGPUSubtarget.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000021#include "AMDGPUTargetMachine.h"
22#include "InstPrinter/AMDGPUInstPrinter.h"
Tom Stellard44b30b42018-05-22 02:03:23 +000023#include "MCTargetDesc/AMDGPUMCTargetDesc.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000024#include "MCTargetDesc/AMDGPUTargetStreamer.h"
Tom Stellardc5015012018-05-24 20:02:01 +000025#include "R600AsmPrinter.h"
Tom Stellard45bb48e2015-06-13 03:28:10 +000026#include "R600Defines.h"
27#include "R600MachineFunctionInfo.h"
28#include "R600RegisterInfo.h"
29#include "SIDefines.h"
Matt Arsenaulta9720c62016-06-20 17:51:32 +000030#include "SIInstrInfo.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000031#include "SIMachineFunctionInfo.h"
Tom Stellard45bb48e2015-06-13 03:28:10 +000032#include "SIRegisterInfo.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000033#include "Utils/AMDGPUBaseInfo.h"
Zachary Turner264b5d92017-06-07 03:48:56 +000034#include "llvm/BinaryFormat/ELF.h"
Tom Stellard45bb48e2015-06-13 03:28:10 +000035#include "llvm/CodeGen/MachineFrameInfo.h"
Matt Arsenaultff982412016-06-20 18:13:04 +000036#include "llvm/IR/DiagnosticInfo.h"
Tom Stellard45bb48e2015-06-13 03:28:10 +000037#include "llvm/MC/MCContext.h"
38#include "llvm/MC/MCSectionELF.h"
39#include "llvm/MC/MCStreamer.h"
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +000040#include "llvm/Support/AMDGPUMetadata.h"
Tom Stellard45bb48e2015-06-13 03:28:10 +000041#include "llvm/Support/MathExtras.h"
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +000042#include "llvm/Support/TargetParser.h"
Tom Stellard45bb48e2015-06-13 03:28:10 +000043#include "llvm/Support/TargetRegistry.h"
David Blaikie6054e652018-03-23 23:58:19 +000044#include "llvm/Target/TargetLoweringObjectFile.h"
Tom Stellard45bb48e2015-06-13 03:28:10 +000045
46using namespace llvm;
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +000047using namespace llvm::AMDGPU;
Scott Linderf5b36e52018-12-12 19:39:27 +000048using namespace llvm::AMDGPU::HSAMD;
Tom Stellard45bb48e2015-06-13 03:28:10 +000049
50// TODO: This should get the default rounding mode from the kernel. We just set
51// the default here, but this could change if the OpenCL rounding mode pragmas
52// are used.
53//
54// The denormal mode here should match what is reported by the OpenCL runtime
55// for the CL_FP_DENORM bit from CL_DEVICE_{HALF|SINGLE|DOUBLE}_FP_CONFIG, but
56// can also be override to flush with the -cl-denorms-are-zero compiler flag.
57//
58// AMD OpenCL only sets flush none and reports CL_FP_DENORM for double
59// precision, and leaves single precision to flush all and does not report
60// CL_FP_DENORM for CL_DEVICE_SINGLE_FP_CONFIG. Mesa's OpenCL currently reports
61// CL_FP_DENORM for both.
62//
63// FIXME: It seems some instructions do not support single precision denormals
64// regardless of the mode (exp_*_f32, rcp_*_f32, rsq_*_f32, rsq_*f32, sqrt_f32,
65// and sin_f32, cos_f32 on most parts).
66
67// We want to use these instructions, and using fp32 denormals also causes
68// instructions to run at the double precision rate for the device so it's
69// probably best to just report no single precision denormals.
70static uint32_t getFPMode(const MachineFunction &F) {
Tom Stellard5bfbae52018-07-11 20:59:01 +000071 const GCNSubtarget& ST = F.getSubtarget<GCNSubtarget>();
Tom Stellard45bb48e2015-06-13 03:28:10 +000072 // TODO: Is there any real use for the flush in only / flush out only modes?
73
74 uint32_t FP32Denormals =
75 ST.hasFP32Denormals() ? FP_DENORM_FLUSH_NONE : FP_DENORM_FLUSH_IN_FLUSH_OUT;
76
77 uint32_t FP64Denormals =
78 ST.hasFP64Denormals() ? FP_DENORM_FLUSH_NONE : FP_DENORM_FLUSH_IN_FLUSH_OUT;
79
80 return FP_ROUND_MODE_SP(FP_ROUND_ROUND_TO_NEAREST) |
81 FP_ROUND_MODE_DP(FP_ROUND_ROUND_TO_NEAREST) |
82 FP_DENORM_MODE_SP(FP32Denormals) |
83 FP_DENORM_MODE_DP(FP64Denormals);
84}
85
86static AsmPrinter *
87createAMDGPUAsmPrinterPass(TargetMachine &tm,
88 std::unique_ptr<MCStreamer> &&Streamer) {
89 return new AMDGPUAsmPrinter(tm, std::move(Streamer));
90}
91
92extern "C" void LLVMInitializeAMDGPUAsmPrinter() {
Mehdi Aminif42454b2016-10-09 23:00:34 +000093 TargetRegistry::RegisterAsmPrinter(getTheAMDGPUTarget(),
Tom Stellardc5015012018-05-24 20:02:01 +000094 llvm::createR600AsmPrinterPass);
Mehdi Aminif42454b2016-10-09 23:00:34 +000095 TargetRegistry::RegisterAsmPrinter(getTheGCNTarget(),
96 createAMDGPUAsmPrinterPass);
Tom Stellard45bb48e2015-06-13 03:28:10 +000097}
98
99AMDGPUAsmPrinter::AMDGPUAsmPrinter(TargetMachine &TM,
100 std::unique_ptr<MCStreamer> Streamer)
Yaxun Liu1a14bfa2017-03-27 14:04:01 +0000101 : AsmPrinter(TM, std::move(Streamer)) {
Matt Arsenault4cd95092019-02-12 23:44:13 +0000102 if (IsaInfo::hasCodeObjectV3(getGlobalSTI()))
Scott Linderf5b36e52018-12-12 19:39:27 +0000103 HSAMetadataStream.reset(new MetadataStreamerV3());
104 else
105 HSAMetadataStream.reset(new MetadataStreamerV2());
Matt Arsenault0da63502018-08-31 05:49:54 +0000106}
Tom Stellard45bb48e2015-06-13 03:28:10 +0000107
Mehdi Amini117296c2016-10-01 02:56:57 +0000108StringRef AMDGPUAsmPrinter::getPassName() const {
Matt Arsenaultf9245b72016-07-22 17:01:25 +0000109 return "AMDGPU Assembly Printer";
110}
111
Matt Arsenault4cd95092019-02-12 23:44:13 +0000112const MCSubtargetInfo *AMDGPUAsmPrinter::getGlobalSTI() const {
Konstantin Zhuravlyov7498cd62017-03-22 22:32:22 +0000113 return TM.getMCSubtargetInfo();
114}
115
Konstantin Zhuravlyov8c18f5b2017-10-14 22:16:26 +0000116AMDGPUTargetStreamer* AMDGPUAsmPrinter::getTargetStreamer() const {
117 if (!OutStreamer)
118 return nullptr;
119 return static_cast<AMDGPUTargetStreamer*>(OutStreamer->getTargetStreamer());
Konstantin Zhuravlyov7498cd62017-03-22 22:32:22 +0000120}
121
Tom Stellardf4218372016-01-12 17:18:17 +0000122void AMDGPUAsmPrinter::EmitStartOfAsmFile(Module &M) {
Matt Arsenault4cd95092019-02-12 23:44:13 +0000123 if (IsaInfo::hasCodeObjectV3(getGlobalSTI())) {
Konstantin Zhuravlyov94dfcc2e2018-10-15 20:37:47 +0000124 std::string ExpectedTarget;
125 raw_string_ostream ExpectedTargetOS(ExpectedTarget);
Matt Arsenault4cd95092019-02-12 23:44:13 +0000126 IsaInfo::streamIsaVersion(getGlobalSTI(), ExpectedTargetOS);
Konstantin Zhuravlyov94dfcc2e2018-10-15 20:37:47 +0000127
128 getTargetStreamer()->EmitDirectiveAMDGCNTarget(ExpectedTarget);
Konstantin Zhuravlyov94dfcc2e2018-10-15 20:37:47 +0000129 }
Konstantin Zhuravlyov00f2cb12018-06-12 18:02:46 +0000130
Konstantin Zhuravlyoveda425e2017-10-14 15:59:07 +0000131 if (TM.getTargetTriple().getOS() != Triple::AMDHSA &&
132 TM.getTargetTriple().getOS() != Triple::AMDPAL)
133 return;
134
135 if (TM.getTargetTriple().getOS() == Triple::AMDHSA)
Scott Linderf5b36e52018-12-12 19:39:27 +0000136 HSAMetadataStream->begin(M);
Konstantin Zhuravlyoveda425e2017-10-14 15:59:07 +0000137
138 if (TM.getTargetTriple().getOS() == Triple::AMDPAL)
Tim Renoufd737b552019-03-20 17:42:00 +0000139 getTargetStreamer()->getPALMetadata()->readFromIR(M);
Konstantin Zhuravlyoveda425e2017-10-14 15:59:07 +0000140
Matt Arsenault4cd95092019-02-12 23:44:13 +0000141 if (IsaInfo::hasCodeObjectV3(getGlobalSTI()))
Scott Linderf5b36e52018-12-12 19:39:27 +0000142 return;
143
Konstantin Zhuravlyoveda425e2017-10-14 15:59:07 +0000144 // HSA emits NT_AMDGPU_HSA_CODE_OBJECT_VERSION for code objects v2.
145 if (TM.getTargetTriple().getOS() == Triple::AMDHSA)
Konstantin Zhuravlyov8c18f5b2017-10-14 22:16:26 +0000146 getTargetStreamer()->EmitDirectiveHSACodeObjectVersion(2, 1);
Konstantin Zhuravlyoveda425e2017-10-14 15:59:07 +0000147
148 // HSA and PAL emit NT_AMDGPU_HSA_ISA for code objects v2.
Matt Arsenault4cd95092019-02-12 23:44:13 +0000149 IsaVersion Version = getIsaVersion(getGlobalSTI()->getCPU());
Konstantin Zhuravlyov8c18f5b2017-10-14 22:16:26 +0000150 getTargetStreamer()->EmitDirectiveHSACodeObjectISA(
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +0000151 Version.Major, Version.Minor, Version.Stepping, "AMD", "AMDGPU");
Konstantin Zhuravlyov7498cd62017-03-22 22:32:22 +0000152}
153
154void AMDGPUAsmPrinter::EmitEndOfAsmFile(Module &M) {
Konstantin Zhuravlyov8c18f5b2017-10-14 22:16:26 +0000155 // Following code requires TargetStreamer to be present.
156 if (!getTargetStreamer())
157 return;
158
Matt Arsenault4cd95092019-02-12 23:44:13 +0000159 if (!IsaInfo::hasCodeObjectV3(getGlobalSTI())) {
Scott Linderf5b36e52018-12-12 19:39:27 +0000160 // Emit ISA Version (NT_AMD_AMDGPU_ISA).
161 std::string ISAVersionString;
162 raw_string_ostream ISAVersionStream(ISAVersionString);
Matt Arsenault4cd95092019-02-12 23:44:13 +0000163 IsaInfo::streamIsaVersion(getGlobalSTI(), ISAVersionStream);
Scott Linderf5b36e52018-12-12 19:39:27 +0000164 getTargetStreamer()->EmitISAVersion(ISAVersionStream.str());
165 }
Konstantin Zhuravlyov9c05b2b2017-10-14 15:40:33 +0000166
167 // Emit HSA Metadata (NT_AMD_AMDGPU_HSA_METADATA).
168 if (TM.getTargetTriple().getOS() == Triple::AMDHSA) {
Scott Linderf5b36e52018-12-12 19:39:27 +0000169 HSAMetadataStream->end();
170 bool Success = HSAMetadataStream->emitTo(*getTargetStreamer());
171 (void)Success;
172 assert(Success && "Malformed HSA Metadata");
Konstantin Zhuravlyov9c05b2b2017-10-14 15:40:33 +0000173 }
Tom Stellardf4218372016-01-12 17:18:17 +0000174}
175
Matt Arsenault6bc43d82016-10-06 16:20:41 +0000176bool AMDGPUAsmPrinter::isBlockOnlyReachableByFallthrough(
177 const MachineBasicBlock *MBB) const {
178 if (!AsmPrinter::isBlockOnlyReachableByFallthrough(MBB))
179 return false;
180
181 if (MBB->empty())
182 return true;
183
184 // If this is a block implementing a long branch, an expression relative to
185 // the start of the block is needed. to the start of the block.
186 // XXX - Is there a smarter way to check this?
187 return (MBB->back().getOpcode() != AMDGPU::S_SETPC_B64);
188}
189
Tom Stellardf151a452015-06-26 21:14:58 +0000190void AMDGPUAsmPrinter::EmitFunctionBodyStart() {
Konstantin Zhuravlyov00f2cb12018-06-12 18:02:46 +0000191 const SIMachineFunctionInfo &MFI = *MF->getInfo<SIMachineFunctionInfo>();
192 if (!MFI.isEntryFunction())
193 return;
Matt Arsenault021a2182017-04-19 19:38:10 +0000194
Tom Stellard5bfbae52018-07-11 20:59:01 +0000195 const GCNSubtarget &STM = MF->getSubtarget<GCNSubtarget>();
Matt Arsenault4bec7d42018-07-20 09:05:08 +0000196 const Function &F = MF->getFunction();
Konstantin Zhuravlyovaa067cb2018-10-04 21:02:16 +0000197 if (!STM.hasCodeObjectV3() && STM.isAmdHsaOrMesa(F) &&
Matt Arsenault4bec7d42018-07-20 09:05:08 +0000198 (F.getCallingConv() == CallingConv::AMDGPU_KERNEL ||
199 F.getCallingConv() == CallingConv::SPIR_KERNEL)) {
200 amd_kernel_code_t KernelCode;
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000201 getAmdKernelCode(KernelCode, CurrentProgramInfo, *MF);
Konstantin Zhuravlyov8c18f5b2017-10-14 22:16:26 +0000202 getTargetStreamer()->EmitAMDKernelCodeT(KernelCode);
Tom Stellardf151a452015-06-26 21:14:58 +0000203 }
Konstantin Zhuravlyov7498cd62017-03-22 22:32:22 +0000204
Scott Linderf5b36e52018-12-12 19:39:27 +0000205 if (STM.isAmdHsaOS())
206 HSAMetadataStream->emitKernel(*MF, CurrentProgramInfo);
Tom Stellardf151a452015-06-26 21:14:58 +0000207}
208
Konstantin Zhuravlyov00f2cb12018-06-12 18:02:46 +0000209void AMDGPUAsmPrinter::EmitFunctionBodyEnd() {
210 const SIMachineFunctionInfo &MFI = *MF->getInfo<SIMachineFunctionInfo>();
211 if (!MFI.isEntryFunction())
212 return;
Matt Arsenault4cd95092019-02-12 23:44:13 +0000213
214 if (!IsaInfo::hasCodeObjectV3(getGlobalSTI()) ||
Konstantin Zhuravlyov00f2cb12018-06-12 18:02:46 +0000215 TM.getTargetTriple().getOS() != Triple::AMDHSA)
216 return;
217
Konstantin Zhuravlyovce25bc32018-06-12 18:33:51 +0000218 auto &Streamer = getTargetStreamer()->getStreamer();
219 auto &Context = Streamer.getContext();
220 auto &ObjectFileInfo = *Context.getObjectFileInfo();
221 auto &ReadOnlySection = *ObjectFileInfo.getReadOnlySection();
222
223 Streamer.PushSection();
224 Streamer.SwitchSection(&ReadOnlySection);
225
226 // CP microcode requires the kernel descriptor to be allocated on 64 byte
227 // alignment.
228 Streamer.EmitValueToAlignment(64, 0, 1, 0);
229 if (ReadOnlySection.getAlignment() < 64)
230 ReadOnlySection.setAlignment(64);
231
Matt Arsenault4cd95092019-02-12 23:44:13 +0000232 const MCSubtargetInfo &STI = MF->getSubtarget();
233
Konstantin Zhuravlyov00f2cb12018-06-12 18:02:46 +0000234 SmallString<128> KernelName;
235 getNameWithPrefix(KernelName, &MF->getFunction());
236 getTargetStreamer()->EmitAmdhsaKernelDescriptor(
Matt Arsenault4cd95092019-02-12 23:44:13 +0000237 STI, KernelName, getAmdhsaKernelDescriptor(*MF, CurrentProgramInfo),
Scott Linder1e8c2c72018-06-21 19:38:56 +0000238 CurrentProgramInfo.NumVGPRsForWavesPerEU,
239 CurrentProgramInfo.NumSGPRsForWavesPerEU -
Matt Arsenault4cd95092019-02-12 23:44:13 +0000240 IsaInfo::getNumExtraSGPRs(&STI,
Scott Linder1e8c2c72018-06-21 19:38:56 +0000241 CurrentProgramInfo.VCCUsed,
242 CurrentProgramInfo.FlatUsed),
243 CurrentProgramInfo.VCCUsed, CurrentProgramInfo.FlatUsed,
Matt Arsenault4cd95092019-02-12 23:44:13 +0000244 hasXNACK(STI));
Konstantin Zhuravlyovce25bc32018-06-12 18:33:51 +0000245
246 Streamer.PopSection();
Konstantin Zhuravlyov00f2cb12018-06-12 18:02:46 +0000247}
248
Tom Stellard1e1b05d2015-11-06 11:45:14 +0000249void AMDGPUAsmPrinter::EmitFunctionEntryLabel() {
Matt Arsenault4cd95092019-02-12 23:44:13 +0000250 if (IsaInfo::hasCodeObjectV3(getGlobalSTI()) &&
Konstantin Zhuravlyov00f2cb12018-06-12 18:02:46 +0000251 TM.getTargetTriple().getOS() == Triple::AMDHSA) {
252 AsmPrinter::EmitFunctionEntryLabel();
253 return;
254 }
255
Tom Stellard1e1b05d2015-11-06 11:45:14 +0000256 const SIMachineFunctionInfo *MFI = MF->getInfo<SIMachineFunctionInfo>();
Tom Stellard5bfbae52018-07-11 20:59:01 +0000257 const GCNSubtarget &STM = MF->getSubtarget<GCNSubtarget>();
Konstantin Zhuravlyovaa067cb2018-10-04 21:02:16 +0000258 if (MFI->isEntryFunction() && STM.isAmdHsaOrMesa(MF->getFunction())) {
Tom Stellard1b9748c2016-09-26 17:29:25 +0000259 SmallString<128> SymbolName;
Matthias Braunf1caa282017-12-15 22:22:58 +0000260 getNameWithPrefix(SymbolName, &MF->getFunction()),
Konstantin Zhuravlyov8c18f5b2017-10-14 22:16:26 +0000261 getTargetStreamer()->EmitAMDGPUSymbolType(
Konstantin Zhuravlyov7498cd62017-03-22 22:32:22 +0000262 SymbolName, ELF::STT_AMDGPU_HSA_KERNEL);
Tom Stellard1e1b05d2015-11-06 11:45:14 +0000263 }
Matt Arsenault4cd95092019-02-12 23:44:13 +0000264 if (STM.dumpCode()) {
Tim Renoufcead41d2017-12-08 14:09:34 +0000265 // Disassemble function name label to text.
Matthias Braunf1caa282017-12-15 22:22:58 +0000266 DisasmLines.push_back(MF->getName().str() + ":");
Tim Renoufcead41d2017-12-08 14:09:34 +0000267 DisasmLineMaxLen = std::max(DisasmLineMaxLen, DisasmLines.back().size());
268 HexLines.push_back("");
269 }
Tom Stellard1e1b05d2015-11-06 11:45:14 +0000270
271 AsmPrinter::EmitFunctionEntryLabel();
272}
273
Tim Renoufcead41d2017-12-08 14:09:34 +0000274void AMDGPUAsmPrinter::EmitBasicBlockStart(const MachineBasicBlock &MBB) const {
Tom Stellard5bfbae52018-07-11 20:59:01 +0000275 const GCNSubtarget &STI = MBB.getParent()->getSubtarget<GCNSubtarget>();
Tim Renoufcead41d2017-12-08 14:09:34 +0000276 if (STI.dumpCode() && !isBlockOnlyReachableByFallthrough(&MBB)) {
277 // Write a line for the basic block label if it is not only fallthrough.
278 DisasmLines.push_back(
279 (Twine("BB") + Twine(getFunctionNumber())
280 + "_" + Twine(MBB.getNumber()) + ":").str());
281 DisasmLineMaxLen = std::max(DisasmLineMaxLen, DisasmLines.back().size());
282 HexLines.push_back("");
283 }
284 AsmPrinter::EmitBasicBlockStart(MBB);
285}
286
Tom Stellarde3b5aea2015-12-02 17:00:42 +0000287void AMDGPUAsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
288
Tom Stellard00f2f912015-12-02 19:47:57 +0000289 // Group segment variables aren't emitted in HSA.
Konstantin Zhuravlyov435151a2017-11-01 19:12:38 +0000290 if (AMDGPU::isGroupSegment(GV))
Tom Stellard00f2f912015-12-02 19:47:57 +0000291 return;
292
Tom Stellardfcfaea42016-05-05 17:03:33 +0000293 AsmPrinter::EmitGlobalVariable(GV);
Tom Stellarde3b5aea2015-12-02 17:00:42 +0000294}
295
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000296bool AMDGPUAsmPrinter::doFinalization(Module &M) {
297 CallGraphResourceInfo.clear();
298 return AsmPrinter::doFinalization(M);
299}
300
301// Print comments that apply to both callable functions and entry points.
302void AMDGPUAsmPrinter::emitCommonFunctionComments(
303 uint32_t NumVGPR,
304 uint32_t NumSGPR,
Matt Arsenault9ba465a2017-11-14 20:33:14 +0000305 uint64_t ScratchSize,
Stanislav Mekhanoshin1c538422018-05-25 17:25:12 +0000306 uint64_t CodeSize,
307 const AMDGPUMachineFunction *MFI) {
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000308 OutStreamer->emitRawComment(" codeLenInByte = " + Twine(CodeSize), false);
309 OutStreamer->emitRawComment(" NumSgprs: " + Twine(NumSGPR), false);
310 OutStreamer->emitRawComment(" NumVgprs: " + Twine(NumVGPR), false);
311 OutStreamer->emitRawComment(" ScratchSize: " + Twine(ScratchSize), false);
Stanislav Mekhanoshin1c538422018-05-25 17:25:12 +0000312 OutStreamer->emitRawComment(" MemoryBound: " + Twine(MFI->isMemoryBound()),
313 false);
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000314}
315
Konstantin Zhuravlyov00f2cb12018-06-12 18:02:46 +0000316uint16_t AMDGPUAsmPrinter::getAmdhsaKernelCodeProperties(
317 const MachineFunction &MF) const {
318 const SIMachineFunctionInfo &MFI = *MF.getInfo<SIMachineFunctionInfo>();
319 uint16_t KernelCodeProperties = 0;
320
321 if (MFI.hasPrivateSegmentBuffer()) {
322 KernelCodeProperties |=
323 amdhsa::KERNEL_CODE_PROPERTY_ENABLE_SGPR_PRIVATE_SEGMENT_BUFFER;
324 }
325 if (MFI.hasDispatchPtr()) {
326 KernelCodeProperties |=
327 amdhsa::KERNEL_CODE_PROPERTY_ENABLE_SGPR_DISPATCH_PTR;
328 }
329 if (MFI.hasQueuePtr()) {
330 KernelCodeProperties |=
331 amdhsa::KERNEL_CODE_PROPERTY_ENABLE_SGPR_QUEUE_PTR;
332 }
333 if (MFI.hasKernargSegmentPtr()) {
334 KernelCodeProperties |=
335 amdhsa::KERNEL_CODE_PROPERTY_ENABLE_SGPR_KERNARG_SEGMENT_PTR;
336 }
337 if (MFI.hasDispatchID()) {
338 KernelCodeProperties |=
339 amdhsa::KERNEL_CODE_PROPERTY_ENABLE_SGPR_DISPATCH_ID;
340 }
341 if (MFI.hasFlatScratchInit()) {
342 KernelCodeProperties |=
343 amdhsa::KERNEL_CODE_PROPERTY_ENABLE_SGPR_FLAT_SCRATCH_INIT;
344 }
Konstantin Zhuravlyov00f2cb12018-06-12 18:02:46 +0000345
346 return KernelCodeProperties;
347}
348
349amdhsa::kernel_descriptor_t AMDGPUAsmPrinter::getAmdhsaKernelDescriptor(
350 const MachineFunction &MF,
351 const SIProgramInfo &PI) const {
352 amdhsa::kernel_descriptor_t KernelDescriptor;
353 memset(&KernelDescriptor, 0x0, sizeof(KernelDescriptor));
354
355 assert(isUInt<32>(PI.ScratchSize));
356 assert(isUInt<32>(PI.ComputePGMRSrc1));
357 assert(isUInt<32>(PI.ComputePGMRSrc2));
358
359 KernelDescriptor.group_segment_fixed_size = PI.LDSSize;
360 KernelDescriptor.private_segment_fixed_size = PI.ScratchSize;
361 KernelDescriptor.compute_pgm_rsrc1 = PI.ComputePGMRSrc1;
362 KernelDescriptor.compute_pgm_rsrc2 = PI.ComputePGMRSrc2;
363 KernelDescriptor.kernel_code_properties = getAmdhsaKernelCodeProperties(MF);
364
365 return KernelDescriptor;
366}
367
Tom Stellard45bb48e2015-06-13 03:28:10 +0000368bool AMDGPUAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000369 CurrentProgramInfo = SIProgramInfo();
370
Matt Arsenault6cb7b8a2017-04-19 17:42:39 +0000371 const AMDGPUMachineFunction *MFI = MF.getInfo<AMDGPUMachineFunction>();
Tom Stellard45bb48e2015-06-13 03:28:10 +0000372
373 // The starting address of all shader programs must be 256 bytes aligned.
Matt Arsenault6cb7b8a2017-04-19 17:42:39 +0000374 // Regular functions just need the basic required instruction alignment.
375 MF.setAlignment(MFI->isEntryFunction() ? 8 : 2);
Tom Stellard45bb48e2015-06-13 03:28:10 +0000376
377 SetupMachineFunction(MF);
378
Tom Stellard5bfbae52018-07-11 20:59:01 +0000379 const GCNSubtarget &STM = MF.getSubtarget<GCNSubtarget>();
Konstantin Zhuravlyov67a6d542017-01-06 17:02:10 +0000380 MCContext &Context = getObjFileLowering().getContext();
Tim Renouf807ecc32018-02-06 13:39:38 +0000381 // FIXME: This should be an explicit check for Mesa.
382 if (!STM.isAmdHsaOS() && !STM.isAmdPalOS()) {
Konstantin Zhuravlyov67a6d542017-01-06 17:02:10 +0000383 MCSectionELF *ConfigSection =
384 Context.getELFSection(".AMDGPU.config", ELF::SHT_PROGBITS, 0);
385 OutStreamer->SwitchSection(ConfigSection);
386 }
387
Tom Stellardc5015012018-05-24 20:02:01 +0000388 if (MFI->isEntryFunction()) {
389 getSIProgramInfo(CurrentProgramInfo, MF);
Tom Stellard45bb48e2015-06-13 03:28:10 +0000390 } else {
Tom Stellardc5015012018-05-24 20:02:01 +0000391 auto I = CallGraphResourceInfo.insert(
392 std::make_pair(&MF.getFunction(), SIFunctionResourceInfo()));
393 SIFunctionResourceInfo &Info = I.first->second;
394 assert(I.second && "should only be called once per function");
395 Info = analyzeResourceUsage(MF);
396 }
397
398 if (STM.isAmdPalOS())
399 EmitPALMetadata(MF, CurrentProgramInfo);
400 else if (!STM.isAmdHsaOS()) {
401 EmitProgramInfoSI(MF, CurrentProgramInfo);
Tom Stellard45bb48e2015-06-13 03:28:10 +0000402 }
403
404 DisasmLines.clear();
405 HexLines.clear();
406 DisasmLineMaxLen = 0;
407
408 EmitFunctionBody();
409
410 if (isVerbose()) {
411 MCSectionELF *CommentSection =
412 Context.getELFSection(".AMDGPU.csdata", ELF::SHT_PROGBITS, 0);
413 OutStreamer->SwitchSection(CommentSection);
414
Tom Stellardc5015012018-05-24 20:02:01 +0000415 if (!MFI->isEntryFunction()) {
416 OutStreamer->emitRawComment(" Function info:", false);
417 SIFunctionResourceInfo &Info = CallGraphResourceInfo[&MF.getFunction()];
418 emitCommonFunctionComments(
419 Info.NumVGPR,
Tom Stellard5bfbae52018-07-11 20:59:01 +0000420 Info.getTotalNumSGPRs(MF.getSubtarget<GCNSubtarget>()),
Tom Stellardc5015012018-05-24 20:02:01 +0000421 Info.PrivateSegmentSize,
Stanislav Mekhanoshin1c538422018-05-25 17:25:12 +0000422 getFunctionCodeSize(MF), MFI);
Tom Stellardc5015012018-05-24 20:02:01 +0000423 return false;
Tom Stellard45bb48e2015-06-13 03:28:10 +0000424 }
Tom Stellardc5015012018-05-24 20:02:01 +0000425
426 OutStreamer->emitRawComment(" Kernel info:", false);
427 emitCommonFunctionComments(CurrentProgramInfo.NumVGPR,
428 CurrentProgramInfo.NumSGPR,
429 CurrentProgramInfo.ScratchSize,
Stanislav Mekhanoshin1c538422018-05-25 17:25:12 +0000430 getFunctionCodeSize(MF), MFI);
Tom Stellardc5015012018-05-24 20:02:01 +0000431
432 OutStreamer->emitRawComment(
433 " FloatMode: " + Twine(CurrentProgramInfo.FloatMode), false);
434 OutStreamer->emitRawComment(
435 " IeeeMode: " + Twine(CurrentProgramInfo.IEEEMode), false);
436 OutStreamer->emitRawComment(
437 " LDSByteSize: " + Twine(CurrentProgramInfo.LDSSize) +
438 " bytes/workgroup (compile time only)", false);
439
440 OutStreamer->emitRawComment(
441 " SGPRBlocks: " + Twine(CurrentProgramInfo.SGPRBlocks), false);
442 OutStreamer->emitRawComment(
443 " VGPRBlocks: " + Twine(CurrentProgramInfo.VGPRBlocks), false);
444
445 OutStreamer->emitRawComment(
446 " NumSGPRsForWavesPerEU: " +
447 Twine(CurrentProgramInfo.NumSGPRsForWavesPerEU), false);
448 OutStreamer->emitRawComment(
449 " NumVGPRsForWavesPerEU: " +
450 Twine(CurrentProgramInfo.NumVGPRsForWavesPerEU), false);
451
452 OutStreamer->emitRawComment(
Stanislav Mekhanoshin1c538422018-05-25 17:25:12 +0000453 " WaveLimiterHint : " + Twine(MFI->needsWaveLimiter()), false);
454
Tom Stellardc5015012018-05-24 20:02:01 +0000455 OutStreamer->emitRawComment(
456 " COMPUTE_PGM_RSRC2:USER_SGPR: " +
457 Twine(G_00B84C_USER_SGPR(CurrentProgramInfo.ComputePGMRSrc2)), false);
458 OutStreamer->emitRawComment(
459 " COMPUTE_PGM_RSRC2:TRAP_HANDLER: " +
460 Twine(G_00B84C_TRAP_HANDLER(CurrentProgramInfo.ComputePGMRSrc2)), false);
461 OutStreamer->emitRawComment(
462 " COMPUTE_PGM_RSRC2:TGID_X_EN: " +
463 Twine(G_00B84C_TGID_X_EN(CurrentProgramInfo.ComputePGMRSrc2)), false);
464 OutStreamer->emitRawComment(
465 " COMPUTE_PGM_RSRC2:TGID_Y_EN: " +
466 Twine(G_00B84C_TGID_Y_EN(CurrentProgramInfo.ComputePGMRSrc2)), false);
467 OutStreamer->emitRawComment(
468 " COMPUTE_PGM_RSRC2:TGID_Z_EN: " +
469 Twine(G_00B84C_TGID_Z_EN(CurrentProgramInfo.ComputePGMRSrc2)), false);
470 OutStreamer->emitRawComment(
471 " COMPUTE_PGM_RSRC2:TIDIG_COMP_CNT: " +
472 Twine(G_00B84C_TIDIG_COMP_CNT(CurrentProgramInfo.ComputePGMRSrc2)),
473 false);
Tom Stellard45bb48e2015-06-13 03:28:10 +0000474 }
475
476 if (STM.dumpCode()) {
477
478 OutStreamer->SwitchSection(
479 Context.getELFSection(".AMDGPU.disasm", ELF::SHT_NOTE, 0));
480
481 for (size_t i = 0; i < DisasmLines.size(); ++i) {
Tim Renoufcead41d2017-12-08 14:09:34 +0000482 std::string Comment = "\n";
483 if (!HexLines[i].empty()) {
484 Comment = std::string(DisasmLineMaxLen - DisasmLines[i].size(), ' ');
485 Comment += " ; " + HexLines[i] + "\n";
486 }
Tom Stellard45bb48e2015-06-13 03:28:10 +0000487
488 OutStreamer->EmitBytes(StringRef(DisasmLines[i]));
489 OutStreamer->EmitBytes(StringRef(Comment));
490 }
491 }
492
493 return false;
494}
495
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000496uint64_t AMDGPUAsmPrinter::getFunctionCodeSize(const MachineFunction &MF) const {
Tom Stellard5bfbae52018-07-11 20:59:01 +0000497 const GCNSubtarget &STM = MF.getSubtarget<GCNSubtarget>();
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000498 const SIInstrInfo *TII = STM.getInstrInfo();
Tom Stellard45bb48e2015-06-13 03:28:10 +0000499
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000500 uint64_t CodeSize = 0;
501
Tom Stellard45bb48e2015-06-13 03:28:10 +0000502 for (const MachineBasicBlock &MBB : MF) {
503 for (const MachineInstr &MI : MBB) {
504 // TODO: CodeSize should account for multiple functions.
Matt Arsenaultc5746862015-08-12 09:04:44 +0000505
506 // TODO: Should we count size of debug info?
Shiva Chen801bf7e2018-05-09 02:42:00 +0000507 if (MI.isDebugInstr())
Matt Arsenaultc5746862015-08-12 09:04:44 +0000508 continue;
509
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000510 CodeSize += TII->getInstSizeInBytes(MI);
Tom Stellard45bb48e2015-06-13 03:28:10 +0000511 }
512 }
513
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000514 return CodeSize;
515}
516
517static bool hasAnyNonFlatUseOfReg(const MachineRegisterInfo &MRI,
518 const SIInstrInfo &TII,
519 unsigned Reg) {
520 for (const MachineOperand &UseOp : MRI.reg_operands(Reg)) {
521 if (!UseOp.isImplicit() || !TII.isFLAT(*UseOp.getParent()))
522 return true;
523 }
524
525 return false;
526}
527
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000528int32_t AMDGPUAsmPrinter::SIFunctionResourceInfo::getTotalNumSGPRs(
Tom Stellard5bfbae52018-07-11 20:59:01 +0000529 const GCNSubtarget &ST) const {
Konstantin Zhuravlyov71e43ee2018-09-12 18:50:47 +0000530 return NumExplicitSGPR + IsaInfo::getNumExtraSGPRs(&ST,
Scott Linder1e8c2c72018-06-21 19:38:56 +0000531 UsesVCC, UsesFlatScratch);
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000532}
533
534AMDGPUAsmPrinter::SIFunctionResourceInfo AMDGPUAsmPrinter::analyzeResourceUsage(
535 const MachineFunction &MF) const {
536 SIFunctionResourceInfo Info;
537
538 const SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>();
Tom Stellard5bfbae52018-07-11 20:59:01 +0000539 const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>();
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000540 const MachineFrameInfo &FrameInfo = MF.getFrameInfo();
541 const MachineRegisterInfo &MRI = MF.getRegInfo();
542 const SIInstrInfo *TII = ST.getInstrInfo();
543 const SIRegisterInfo &TRI = TII->getRegisterInfo();
544
545 Info.UsesFlatScratch = MRI.isPhysRegUsed(AMDGPU::FLAT_SCR_LO) ||
546 MRI.isPhysRegUsed(AMDGPU::FLAT_SCR_HI);
547
548 // Even if FLAT_SCRATCH is implicitly used, it has no effect if flat
549 // instructions aren't used to access the scratch buffer. Inline assembly may
550 // need it though.
551 //
552 // If we only have implicit uses of flat_scr on flat instructions, it is not
553 // really needed.
554 if (Info.UsesFlatScratch && !MFI->hasFlatScratchInit() &&
555 (!hasAnyNonFlatUseOfReg(MRI, *TII, AMDGPU::FLAT_SCR) &&
556 !hasAnyNonFlatUseOfReg(MRI, *TII, AMDGPU::FLAT_SCR_LO) &&
557 !hasAnyNonFlatUseOfReg(MRI, *TII, AMDGPU::FLAT_SCR_HI))) {
558 Info.UsesFlatScratch = false;
559 }
560
561 Info.HasDynamicallySizedStack = FrameInfo.hasVarSizedObjects();
562 Info.PrivateSegmentSize = FrameInfo.getStackSize();
Matt Arsenault03ae3992018-03-29 21:30:06 +0000563 if (MFI->isStackRealigned())
564 Info.PrivateSegmentSize += FrameInfo.getMaxAlignment();
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000565
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000566
Matt Arsenault3416b8c2017-06-01 15:05:15 +0000567 Info.UsesVCC = MRI.isPhysRegUsed(AMDGPU::VCC_LO) ||
568 MRI.isPhysRegUsed(AMDGPU::VCC_HI);
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000569
Matt Arsenault3416b8c2017-06-01 15:05:15 +0000570 // If there are no calls, MachineRegisterInfo can tell us the used register
571 // count easily.
Matt Arsenault22cdb612017-09-05 18:36:36 +0000572 // A tail call isn't considered a call for MachineFrameInfo's purposes.
573 if (!FrameInfo.hasCalls() && !FrameInfo.hasTailCall()) {
Matt Arsenault2738ede2017-08-02 17:15:01 +0000574 MCPhysReg HighestVGPRReg = AMDGPU::NoRegister;
575 for (MCPhysReg Reg : reverse(AMDGPU::VGPR_32RegClass.getRegisters())) {
576 if (MRI.isPhysRegUsed(Reg)) {
577 HighestVGPRReg = Reg;
578 break;
579 }
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000580 }
Matt Arsenault2738ede2017-08-02 17:15:01 +0000581
582 MCPhysReg HighestSGPRReg = AMDGPU::NoRegister;
583 for (MCPhysReg Reg : reverse(AMDGPU::SGPR_32RegClass.getRegisters())) {
584 if (MRI.isPhysRegUsed(Reg)) {
585 HighestSGPRReg = Reg;
586 break;
587 }
588 }
589
590 // We found the maximum register index. They start at 0, so add one to get the
591 // number of registers.
592 Info.NumVGPR = HighestVGPRReg == AMDGPU::NoRegister ? 0 :
593 TRI.getHWRegIndex(HighestVGPRReg) + 1;
594 Info.NumExplicitSGPR = HighestSGPRReg == AMDGPU::NoRegister ? 0 :
595 TRI.getHWRegIndex(HighestSGPRReg) + 1;
596
597 return Info;
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000598 }
599
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000600 int32_t MaxVGPR = -1;
601 int32_t MaxSGPR = -1;
Matt Arsenault9ba465a2017-11-14 20:33:14 +0000602 uint64_t CalleeFrameSize = 0;
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000603
604 for (const MachineBasicBlock &MBB : MF) {
605 for (const MachineInstr &MI : MBB) {
606 // TODO: Check regmasks? Do they occur anywhere except calls?
607 for (const MachineOperand &MO : MI.operands()) {
608 unsigned Width = 0;
609 bool IsSGPR = false;
610
611 if (!MO.isReg())
612 continue;
613
614 unsigned Reg = MO.getReg();
615 switch (Reg) {
616 case AMDGPU::EXEC:
617 case AMDGPU::EXEC_LO:
618 case AMDGPU::EXEC_HI:
619 case AMDGPU::SCC:
620 case AMDGPU::M0:
621 case AMDGPU::SRC_SHARED_BASE:
622 case AMDGPU::SRC_SHARED_LIMIT:
623 case AMDGPU::SRC_PRIVATE_BASE:
624 case AMDGPU::SRC_PRIVATE_LIMIT:
625 continue;
626
Dmitry Preobrazhensky137976f2019-03-20 15:40:52 +0000627 case AMDGPU::SRC_POPS_EXITING_WAVE_ID:
628 llvm_unreachable("src_pops_exiting_wave_id should not be used");
629
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000630 case AMDGPU::NoRegister:
Shiva Chen801bf7e2018-05-09 02:42:00 +0000631 assert(MI.isDebugInstr());
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000632 continue;
633
634 case AMDGPU::VCC:
635 case AMDGPU::VCC_LO:
636 case AMDGPU::VCC_HI:
637 Info.UsesVCC = true;
638 continue;
639
640 case AMDGPU::FLAT_SCR:
641 case AMDGPU::FLAT_SCR_LO:
642 case AMDGPU::FLAT_SCR_HI:
643 continue;
644
Dmitry Preobrazhensky3afbd822018-01-10 14:22:19 +0000645 case AMDGPU::XNACK_MASK:
646 case AMDGPU::XNACK_MASK_LO:
647 case AMDGPU::XNACK_MASK_HI:
648 llvm_unreachable("xnack_mask registers should not be used");
649
Dmitry Preobrazhensky942c2732019-02-08 14:57:37 +0000650 case AMDGPU::LDS_DIRECT:
651 llvm_unreachable("lds_direct register should not be used");
652
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000653 case AMDGPU::TBA:
654 case AMDGPU::TBA_LO:
655 case AMDGPU::TBA_HI:
656 case AMDGPU::TMA:
657 case AMDGPU::TMA_LO:
658 case AMDGPU::TMA_HI:
659 llvm_unreachable("trap handler registers should not be used");
660
661 default:
662 break;
663 }
664
665 if (AMDGPU::SReg_32RegClass.contains(Reg)) {
666 assert(!AMDGPU::TTMP_32RegClass.contains(Reg) &&
667 "trap handler registers should not be used");
668 IsSGPR = true;
669 Width = 1;
670 } else if (AMDGPU::VGPR_32RegClass.contains(Reg)) {
671 IsSGPR = false;
672 Width = 1;
673 } else if (AMDGPU::SReg_64RegClass.contains(Reg)) {
674 assert(!AMDGPU::TTMP_64RegClass.contains(Reg) &&
675 "trap handler registers should not be used");
676 IsSGPR = true;
677 Width = 2;
678 } else if (AMDGPU::VReg_64RegClass.contains(Reg)) {
679 IsSGPR = false;
680 Width = 2;
681 } else if (AMDGPU::VReg_96RegClass.contains(Reg)) {
682 IsSGPR = false;
683 Width = 3;
684 } else if (AMDGPU::SReg_128RegClass.contains(Reg)) {
Dmitry Preobrazhensky27134952017-12-22 15:18:06 +0000685 assert(!AMDGPU::TTMP_128RegClass.contains(Reg) &&
686 "trap handler registers should not be used");
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000687 IsSGPR = true;
688 Width = 4;
689 } else if (AMDGPU::VReg_128RegClass.contains(Reg)) {
690 IsSGPR = false;
691 Width = 4;
692 } else if (AMDGPU::SReg_256RegClass.contains(Reg)) {
Dmitry Preobrazhensky27134952017-12-22 15:18:06 +0000693 assert(!AMDGPU::TTMP_256RegClass.contains(Reg) &&
694 "trap handler registers should not be used");
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000695 IsSGPR = true;
696 Width = 8;
697 } else if (AMDGPU::VReg_256RegClass.contains(Reg)) {
698 IsSGPR = false;
699 Width = 8;
700 } else if (AMDGPU::SReg_512RegClass.contains(Reg)) {
Dmitry Preobrazhensky27134952017-12-22 15:18:06 +0000701 assert(!AMDGPU::TTMP_512RegClass.contains(Reg) &&
702 "trap handler registers should not be used");
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000703 IsSGPR = true;
704 Width = 16;
705 } else if (AMDGPU::VReg_512RegClass.contains(Reg)) {
706 IsSGPR = false;
707 Width = 16;
Matt Arsenault101abd22019-04-15 20:51:12 +0000708 } else if (AMDGPU::SReg_96RegClass.contains(Reg)) {
709 IsSGPR = true;
710 Width = 3;
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000711 } else {
712 llvm_unreachable("Unknown register class");
713 }
714 unsigned HWReg = TRI.getHWRegIndex(Reg);
715 int MaxUsed = HWReg + Width - 1;
716 if (IsSGPR) {
717 MaxSGPR = MaxUsed > MaxSGPR ? MaxUsed : MaxSGPR;
718 } else {
719 MaxVGPR = MaxUsed > MaxVGPR ? MaxUsed : MaxVGPR;
720 }
721 }
722
723 if (MI.isCall()) {
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000724 // Pseudo used just to encode the underlying global. Is there a better
725 // way to track this?
Matt Arsenault71bcbd42017-08-11 20:42:08 +0000726
727 const MachineOperand *CalleeOp
728 = TII->getNamedOperand(MI, AMDGPU::OpName::callee);
729 const Function *Callee = cast<Function>(CalleeOp->getGlobal());
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000730 if (Callee->isDeclaration()) {
731 // If this is a call to an external function, we can't do much. Make
732 // conservative guesses.
733
734 // 48 SGPRs - vcc, - flat_scr, -xnack
Scott Linder1e8c2c72018-06-21 19:38:56 +0000735 int MaxSGPRGuess =
Matt Arsenault4cd95092019-02-12 23:44:13 +0000736 47 - IsaInfo::getNumExtraSGPRs(&ST, true, ST.hasFlatAddressSpace());
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000737 MaxSGPR = std::max(MaxSGPR, MaxSGPRGuess);
738 MaxVGPR = std::max(MaxVGPR, 23);
739
Matt Arsenault9ba465a2017-11-14 20:33:14 +0000740 CalleeFrameSize = std::max(CalleeFrameSize, UINT64_C(16384));
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000741 Info.UsesVCC = true;
742 Info.UsesFlatScratch = ST.hasFlatAddressSpace();
743 Info.HasDynamicallySizedStack = true;
744 } else {
745 // We force CodeGen to run in SCC order, so the callee's register
746 // usage etc. should be the cumulative usage of all callees.
Matt Arsenaultaa03bcd2019-02-28 00:28:44 +0000747
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000748 auto I = CallGraphResourceInfo.find(Callee);
Matt Arsenaultaa03bcd2019-02-28 00:28:44 +0000749 if (I == CallGraphResourceInfo.end()) {
750 // Avoid crashing on undefined behavior with an illegal call to a
751 // kernel. If a callsite's calling convention doesn't match the
752 // function's, it's undefined behavior. If the callsite calling
753 // convention does match, that would have errored earlier.
754 // FIXME: The verifier shouldn't allow this.
755 if (AMDGPU::isEntryFunctionCC(Callee->getCallingConv()))
756 report_fatal_error("invalid call to entry function");
757
758 llvm_unreachable("callee should have been handled before caller");
759 }
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000760
761 MaxSGPR = std::max(I->second.NumExplicitSGPR - 1, MaxSGPR);
762 MaxVGPR = std::max(I->second.NumVGPR - 1, MaxVGPR);
763 CalleeFrameSize
764 = std::max(I->second.PrivateSegmentSize, CalleeFrameSize);
765 Info.UsesVCC |= I->second.UsesVCC;
766 Info.UsesFlatScratch |= I->second.UsesFlatScratch;
767 Info.HasDynamicallySizedStack |= I->second.HasDynamicallySizedStack;
768 Info.HasRecursion |= I->second.HasRecursion;
769 }
770
771 if (!Callee->doesNotRecurse())
772 Info.HasRecursion = true;
773 }
Matt Arsenault3416b8c2017-06-01 15:05:15 +0000774 }
775 }
776
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000777 Info.NumExplicitSGPR = MaxSGPR + 1;
778 Info.NumVGPR = MaxVGPR + 1;
779 Info.PrivateSegmentSize += CalleeFrameSize;
Matt Arsenault3416b8c2017-06-01 15:05:15 +0000780
781 return Info;
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000782}
783
784void AMDGPUAsmPrinter::getSIProgramInfo(SIProgramInfo &ProgInfo,
785 const MachineFunction &MF) {
786 SIFunctionResourceInfo Info = analyzeResourceUsage(MF);
787
788 ProgInfo.NumVGPR = Info.NumVGPR;
789 ProgInfo.NumSGPR = Info.NumExplicitSGPR;
790 ProgInfo.ScratchSize = Info.PrivateSegmentSize;
791 ProgInfo.VCCUsed = Info.UsesVCC;
792 ProgInfo.FlatUsed = Info.UsesFlatScratch;
793 ProgInfo.DynamicCallStack = Info.HasDynamicallySizedStack || Info.HasRecursion;
794
Matt Arsenault9ba465a2017-11-14 20:33:14 +0000795 if (!isUInt<32>(ProgInfo.ScratchSize)) {
Matthias Braunf1caa282017-12-15 22:22:58 +0000796 DiagnosticInfoStackSize DiagStackSize(MF.getFunction(),
Matt Arsenault9ba465a2017-11-14 20:33:14 +0000797 ProgInfo.ScratchSize, DS_Error);
Matthias Braunf1caa282017-12-15 22:22:58 +0000798 MF.getFunction().getContext().diagnose(DiagStackSize);
Matt Arsenault9ba465a2017-11-14 20:33:14 +0000799 }
800
Tom Stellard5bfbae52018-07-11 20:59:01 +0000801 const GCNSubtarget &STM = MF.getSubtarget<GCNSubtarget>();
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000802 const SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>();
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000803
Scott Linder1e8c2c72018-06-21 19:38:56 +0000804 // TODO(scott.linder): The calculations related to SGPR/VGPR blocks are
805 // duplicated in part in AMDGPUAsmParser::calculateGPRBlocks, and could be
806 // unified.
807 unsigned ExtraSGPRs = IsaInfo::getNumExtraSGPRs(
Matt Arsenault4cd95092019-02-12 23:44:13 +0000808 &STM, ProgInfo.VCCUsed, ProgInfo.FlatUsed);
Konstantin Zhuravlyovf2f3d142016-06-25 03:11:28 +0000809
Marek Olsak91f22fb2016-12-09 19:49:40 +0000810 // Check the addressable register limit before we add ExtraSGPRs.
811 if (STM.getGeneration() >= AMDGPUSubtarget::VOLCANIC_ISLANDS &&
812 !STM.hasSGPRInitBug()) {
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +0000813 unsigned MaxAddressableNumSGPRs = STM.getAddressableNumSGPRs();
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000814 if (ProgInfo.NumSGPR > MaxAddressableNumSGPRs) {
Marek Olsak91f22fb2016-12-09 19:49:40 +0000815 // This can happen due to a compiler bug or when using inline asm.
Matthias Braunf1caa282017-12-15 22:22:58 +0000816 LLVMContext &Ctx = MF.getFunction().getContext();
817 DiagnosticInfoResourceLimit Diag(MF.getFunction(),
Marek Olsak91f22fb2016-12-09 19:49:40 +0000818 "addressable scalar registers",
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000819 ProgInfo.NumSGPR, DS_Error,
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +0000820 DK_ResourceLimit,
821 MaxAddressableNumSGPRs);
Marek Olsak91f22fb2016-12-09 19:49:40 +0000822 Ctx.diagnose(Diag);
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000823 ProgInfo.NumSGPR = MaxAddressableNumSGPRs - 1;
Marek Olsak91f22fb2016-12-09 19:49:40 +0000824 }
825 }
826
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000827 // Account for extra SGPRs and VGPRs reserved for debugger use.
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000828 ProgInfo.NumSGPR += ExtraSGPRs;
Tom Stellard45bb48e2015-06-13 03:28:10 +0000829
Tim Renouffd8d4af2018-04-11 17:18:36 +0000830 // Ensure there are enough SGPRs and VGPRs for wave dispatch, where wave
831 // dispatch registers are function args.
832 unsigned WaveDispatchNumSGPR = 0, WaveDispatchNumVGPR = 0;
833 for (auto &Arg : MF.getFunction().args()) {
834 unsigned NumRegs = (Arg.getType()->getPrimitiveSizeInBits() + 31) / 32;
835 if (Arg.hasAttribute(Attribute::InReg))
836 WaveDispatchNumSGPR += NumRegs;
837 else
838 WaveDispatchNumVGPR += NumRegs;
839 }
840 ProgInfo.NumSGPR = std::max(ProgInfo.NumSGPR, WaveDispatchNumSGPR);
841 ProgInfo.NumVGPR = std::max(ProgInfo.NumVGPR, WaveDispatchNumVGPR);
842
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000843 // Adjust number of registers used to meet default/requested minimum/maximum
844 // number of waves per execution unit request.
845 ProgInfo.NumSGPRsForWavesPerEU = std::max(
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000846 std::max(ProgInfo.NumSGPR, 1u), STM.getMinNumSGPRs(MFI->getMaxWavesPerEU()));
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000847 ProgInfo.NumVGPRsForWavesPerEU = std::max(
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000848 std::max(ProgInfo.NumVGPR, 1u), STM.getMinNumVGPRs(MFI->getMaxWavesPerEU()));
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000849
Marek Olsak91f22fb2016-12-09 19:49:40 +0000850 if (STM.getGeneration() <= AMDGPUSubtarget::SEA_ISLANDS ||
851 STM.hasSGPRInitBug()) {
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +0000852 unsigned MaxAddressableNumSGPRs = STM.getAddressableNumSGPRs();
853 if (ProgInfo.NumSGPR > MaxAddressableNumSGPRs) {
854 // This can happen due to a compiler bug or when using inline asm to use
855 // the registers which are usually reserved for vcc etc.
Matthias Braunf1caa282017-12-15 22:22:58 +0000856 LLVMContext &Ctx = MF.getFunction().getContext();
857 DiagnosticInfoResourceLimit Diag(MF.getFunction(),
Marek Olsak91f22fb2016-12-09 19:49:40 +0000858 "scalar registers",
859 ProgInfo.NumSGPR, DS_Error,
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +0000860 DK_ResourceLimit,
861 MaxAddressableNumSGPRs);
Marek Olsak91f22fb2016-12-09 19:49:40 +0000862 Ctx.diagnose(Diag);
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +0000863 ProgInfo.NumSGPR = MaxAddressableNumSGPRs;
864 ProgInfo.NumSGPRsForWavesPerEU = MaxAddressableNumSGPRs;
Marek Olsak91f22fb2016-12-09 19:49:40 +0000865 }
Matt Arsenault4eae3012016-10-28 20:31:47 +0000866 }
867
868 if (STM.hasSGPRInitBug()) {
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +0000869 ProgInfo.NumSGPR =
870 AMDGPU::IsaInfo::FIXED_NUM_SGPRS_FOR_INIT_BUG;
871 ProgInfo.NumSGPRsForWavesPerEU =
872 AMDGPU::IsaInfo::FIXED_NUM_SGPRS_FOR_INIT_BUG;
Tom Stellard45bb48e2015-06-13 03:28:10 +0000873 }
874
Matt Arsenault161e2b42017-04-18 20:59:40 +0000875 if (MFI->getNumUserSGPRs() > STM.getMaxNumUserSGPRs()) {
Matthias Braunf1caa282017-12-15 22:22:58 +0000876 LLVMContext &Ctx = MF.getFunction().getContext();
877 DiagnosticInfoResourceLimit Diag(MF.getFunction(), "user SGPRs",
Matt Arsenault161e2b42017-04-18 20:59:40 +0000878 MFI->getNumUserSGPRs(), DS_Error);
Matt Arsenaultff982412016-06-20 18:13:04 +0000879 Ctx.diagnose(Diag);
Matt Arsenault41003af2015-11-30 21:16:07 +0000880 }
881
Matt Arsenault52ef4012016-07-26 16:45:58 +0000882 if (MFI->getLDSSize() > static_cast<unsigned>(STM.getLocalMemorySize())) {
Matthias Braunf1caa282017-12-15 22:22:58 +0000883 LLVMContext &Ctx = MF.getFunction().getContext();
884 DiagnosticInfoResourceLimit Diag(MF.getFunction(), "local memory",
Matt Arsenault52ef4012016-07-26 16:45:58 +0000885 MFI->getLDSSize(), DS_Error);
Matt Arsenaultff982412016-06-20 18:13:04 +0000886 Ctx.diagnose(Diag);
Matt Arsenault1c4d0ef2016-04-28 19:37:35 +0000887 }
888
Scott Linder1e8c2c72018-06-21 19:38:56 +0000889 ProgInfo.SGPRBlocks = IsaInfo::getNumSGPRBlocks(
David Stuttardbe3d7ba2018-11-19 15:44:20 +0000890 &STM, ProgInfo.NumSGPRsForWavesPerEU);
Scott Linder1e8c2c72018-06-21 19:38:56 +0000891 ProgInfo.VGPRBlocks = IsaInfo::getNumVGPRBlocks(
David Stuttardbe3d7ba2018-11-19 15:44:20 +0000892 &STM, ProgInfo.NumVGPRsForWavesPerEU);
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +0000893
Tom Stellard45bb48e2015-06-13 03:28:10 +0000894 // Set the value to initialize FP_ROUND and FP_DENORM parts of the mode
895 // register.
896 ProgInfo.FloatMode = getFPMode(MF);
897
Matt Arsenault055e4dc2019-03-29 19:14:54 +0000898 const SIModeRegisterDefaults Mode = MFI->getMode();
899 ProgInfo.IEEEMode = Mode.IEEE;
Tom Stellard45bb48e2015-06-13 03:28:10 +0000900
Matt Arsenault7293f982016-01-28 20:53:35 +0000901 // Make clamp modifier on NaN input returns 0.
Matt Arsenault055e4dc2019-03-29 19:14:54 +0000902 ProgInfo.DX10Clamp = Mode.DX10Clamp;
Tom Stellard45bb48e2015-06-13 03:28:10 +0000903
Tom Stellard45bb48e2015-06-13 03:28:10 +0000904 unsigned LDSAlignShift;
Tom Stellard5bfbae52018-07-11 20:59:01 +0000905 if (STM.getGeneration() < AMDGPUSubtarget::SEA_ISLANDS) {
Tom Stellard45bb48e2015-06-13 03:28:10 +0000906 // LDS is allocated in 64 dword blocks.
907 LDSAlignShift = 8;
908 } else {
909 // LDS is allocated in 128 dword blocks.
910 LDSAlignShift = 9;
911 }
912
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000913 unsigned LDSSpillSize =
Matt Arsenault161e2b42017-04-18 20:59:40 +0000914 MFI->getLDSWaveSpillSize() * MFI->getMaxFlatWorkGroupSize();
Tom Stellard45bb48e2015-06-13 03:28:10 +0000915
Matt Arsenault52ef4012016-07-26 16:45:58 +0000916 ProgInfo.LDSSize = MFI->getLDSSize() + LDSSpillSize;
Tom Stellard45bb48e2015-06-13 03:28:10 +0000917 ProgInfo.LDSBlocks =
Aaron Ballmanef0fe1e2016-03-30 21:30:00 +0000918 alignTo(ProgInfo.LDSSize, 1ULL << LDSAlignShift) >> LDSAlignShift;
Tom Stellard45bb48e2015-06-13 03:28:10 +0000919
920 // Scratch is allocated in 256 dword blocks.
921 unsigned ScratchAlignShift = 10;
922 // We need to program the hardware with the amount of scratch memory that
923 // is used by the entire wave. ProgInfo.ScratchSize is the amount of
924 // scratch memory used per thread.
925 ProgInfo.ScratchBlocks =
Rui Ueyamada00f2f2016-01-14 21:06:47 +0000926 alignTo(ProgInfo.ScratchSize * STM.getWavefrontSize(),
Aaron Ballmanef0fe1e2016-03-30 21:30:00 +0000927 1ULL << ScratchAlignShift) >>
Rui Ueyamada00f2f2016-01-14 21:06:47 +0000928 ScratchAlignShift;
Tom Stellard45bb48e2015-06-13 03:28:10 +0000929
930 ProgInfo.ComputePGMRSrc1 =
931 S_00B848_VGPRS(ProgInfo.VGPRBlocks) |
932 S_00B848_SGPRS(ProgInfo.SGPRBlocks) |
933 S_00B848_PRIORITY(ProgInfo.Priority) |
934 S_00B848_FLOAT_MODE(ProgInfo.FloatMode) |
935 S_00B848_PRIV(ProgInfo.Priv) |
936 S_00B848_DX10_CLAMP(ProgInfo.DX10Clamp) |
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000937 S_00B848_DEBUG_MODE(ProgInfo.DebugMode) |
Tom Stellard45bb48e2015-06-13 03:28:10 +0000938 S_00B848_IEEE_MODE(ProgInfo.IEEEMode);
939
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000940 // 0 = X, 1 = XY, 2 = XYZ
941 unsigned TIDIGCompCnt = 0;
942 if (MFI->hasWorkItemIDZ())
943 TIDIGCompCnt = 2;
944 else if (MFI->hasWorkItemIDY())
945 TIDIGCompCnt = 1;
946
Tom Stellard45bb48e2015-06-13 03:28:10 +0000947 ProgInfo.ComputePGMRSrc2 =
948 S_00B84C_SCRATCH_EN(ProgInfo.ScratchBlocks > 0) |
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000949 S_00B84C_USER_SGPR(MFI->getNumUserSGPRs()) |
Konstantin Zhuravlyov2ca6b1f2018-05-29 19:09:13 +0000950 // For AMDHSA, TRAP_HANDLER must be zero, as it is populated by the CP.
951 S_00B84C_TRAP_HANDLER(STM.isAmdHsaOS() ? 0 : STM.isTrapHandlerEnabled()) |
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000952 S_00B84C_TGID_X_EN(MFI->hasWorkGroupIDX()) |
953 S_00B84C_TGID_Y_EN(MFI->hasWorkGroupIDY()) |
954 S_00B84C_TGID_Z_EN(MFI->hasWorkGroupIDZ()) |
955 S_00B84C_TG_SIZE_EN(MFI->hasWorkGroupInfo()) |
956 S_00B84C_TIDIG_COMP_CNT(TIDIGCompCnt) |
957 S_00B84C_EXCP_EN_MSB(0) |
Konstantin Zhuravlyov6ccb0762017-05-05 20:13:55 +0000958 // For AMDHSA, LDS_SIZE must be zero, as it is populated by the CP.
959 S_00B84C_LDS_SIZE(STM.isAmdHsaOS() ? 0 : ProgInfo.LDSBlocks) |
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000960 S_00B84C_EXCP_EN(0);
Tom Stellard45bb48e2015-06-13 03:28:10 +0000961}
962
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +0000963static unsigned getRsrcReg(CallingConv::ID CallConv) {
964 switch (CallConv) {
Justin Bognercd1d5aa2016-08-17 20:30:52 +0000965 default: LLVM_FALLTHROUGH;
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +0000966 case CallingConv::AMDGPU_CS: return R_00B848_COMPUTE_PGM_RSRC1;
Tim Renoufef1ae8f2017-09-29 09:51:22 +0000967 case CallingConv::AMDGPU_LS: return R_00B528_SPI_SHADER_PGM_RSRC1_LS;
Marek Olsaka302a7362017-05-02 15:41:10 +0000968 case CallingConv::AMDGPU_HS: return R_00B428_SPI_SHADER_PGM_RSRC1_HS;
Tim Renoufef1ae8f2017-09-29 09:51:22 +0000969 case CallingConv::AMDGPU_ES: return R_00B328_SPI_SHADER_PGM_RSRC1_ES;
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +0000970 case CallingConv::AMDGPU_GS: return R_00B228_SPI_SHADER_PGM_RSRC1_GS;
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +0000971 case CallingConv::AMDGPU_VS: return R_00B128_SPI_SHADER_PGM_RSRC1_VS;
Tim Renoufef1ae8f2017-09-29 09:51:22 +0000972 case CallingConv::AMDGPU_PS: return R_00B028_SPI_SHADER_PGM_RSRC1_PS;
Tom Stellard45bb48e2015-06-13 03:28:10 +0000973 }
974}
975
976void AMDGPUAsmPrinter::EmitProgramInfoSI(const MachineFunction &MF,
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000977 const SIProgramInfo &CurrentProgramInfo) {
Tom Stellard45bb48e2015-06-13 03:28:10 +0000978 const SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>();
Matthias Braunf1caa282017-12-15 22:22:58 +0000979 unsigned RsrcReg = getRsrcReg(MF.getFunction().getCallingConv());
Tom Stellard45bb48e2015-06-13 03:28:10 +0000980
Matthias Braunf1caa282017-12-15 22:22:58 +0000981 if (AMDGPU::isCompute(MF.getFunction().getCallingConv())) {
Tom Stellard45bb48e2015-06-13 03:28:10 +0000982 OutStreamer->EmitIntValue(R_00B848_COMPUTE_PGM_RSRC1, 4);
983
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000984 OutStreamer->EmitIntValue(CurrentProgramInfo.ComputePGMRSrc1, 4);
Tom Stellard45bb48e2015-06-13 03:28:10 +0000985
986 OutStreamer->EmitIntValue(R_00B84C_COMPUTE_PGM_RSRC2, 4);
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000987 OutStreamer->EmitIntValue(CurrentProgramInfo.ComputePGMRSrc2, 4);
Tom Stellard45bb48e2015-06-13 03:28:10 +0000988
989 OutStreamer->EmitIntValue(R_00B860_COMPUTE_TMPRING_SIZE, 4);
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000990 OutStreamer->EmitIntValue(S_00B860_WAVESIZE(CurrentProgramInfo.ScratchBlocks), 4);
Tom Stellard45bb48e2015-06-13 03:28:10 +0000991
992 // TODO: Should probably note flat usage somewhere. SC emits a "FlatPtr32 =
993 // 0" comment but I don't see a corresponding field in the register spec.
994 } else {
995 OutStreamer->EmitIntValue(RsrcReg, 4);
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000996 OutStreamer->EmitIntValue(S_00B028_VGPRS(CurrentProgramInfo.VGPRBlocks) |
997 S_00B028_SGPRS(CurrentProgramInfo.SGPRBlocks), 4);
Scott Linderc6c62722018-10-31 18:54:06 +0000998 OutStreamer->EmitIntValue(R_0286E8_SPI_TMPRING_SIZE, 4);
999 OutStreamer->EmitIntValue(
1000 S_0286E8_WAVESIZE(CurrentProgramInfo.ScratchBlocks), 4);
Tim Renouf807ecc32018-02-06 13:39:38 +00001001 }
1002
1003 if (MF.getFunction().getCallingConv() == CallingConv::AMDGPU_PS) {
1004 OutStreamer->EmitIntValue(R_00B02C_SPI_SHADER_PGM_RSRC2_PS, 4);
1005 OutStreamer->EmitIntValue(S_00B02C_EXTRA_LDS_SIZE(CurrentProgramInfo.LDSBlocks), 4);
1006 OutStreamer->EmitIntValue(R_0286CC_SPI_PS_INPUT_ENA, 4);
1007 OutStreamer->EmitIntValue(MFI->getPSInputEnable(), 4);
1008 OutStreamer->EmitIntValue(R_0286D0_SPI_PS_INPUT_ADDR, 4);
1009 OutStreamer->EmitIntValue(MFI->getPSInputAddr(), 4);
Tom Stellard45bb48e2015-06-13 03:28:10 +00001010 }
Marek Olsak0532c192016-07-13 17:35:15 +00001011
1012 OutStreamer->EmitIntValue(R_SPILLED_SGPRS, 4);
1013 OutStreamer->EmitIntValue(MFI->getNumSpilledSGPRs(), 4);
1014 OutStreamer->EmitIntValue(R_SPILLED_VGPRS, 4);
1015 OutStreamer->EmitIntValue(MFI->getNumSpilledVGPRs(), 4);
Tom Stellard45bb48e2015-06-13 03:28:10 +00001016}
1017
Tim Renouf72800f02017-10-03 19:03:52 +00001018// This is the equivalent of EmitProgramInfoSI above, but for when the OS type
1019// is AMDPAL. It stores each compute/SPI register setting and other PAL
Tim Renoufd737b552019-03-20 17:42:00 +00001020// metadata items into the PALMD::Metadata, combining with any provided by the
1021// frontend as LLVM metadata. Once all functions are written, the PAL metadata
1022// is then written as a single block in the .note section.
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +00001023void AMDGPUAsmPrinter::EmitPALMetadata(const MachineFunction &MF,
Tim Renouf72800f02017-10-03 19:03:52 +00001024 const SIProgramInfo &CurrentProgramInfo) {
1025 const SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>();
Tim Renoufd737b552019-03-20 17:42:00 +00001026 auto CC = MF.getFunction().getCallingConv();
1027 auto MD = getTargetStreamer()->getPALMetadata();
1028
Tim Renoufe7bd52f2019-03-20 18:47:21 +00001029 MD->setEntryPoint(CC, MF.getFunction().getName());
Tim Renoufd737b552019-03-20 17:42:00 +00001030 MD->setNumUsedVgprs(CC, CurrentProgramInfo.NumVGPRsForWavesPerEU);
1031 MD->setNumUsedSgprs(CC, CurrentProgramInfo.NumSGPRsForWavesPerEU);
Matthias Braunf1caa282017-12-15 22:22:58 +00001032 if (AMDGPU::isCompute(MF.getFunction().getCallingConv())) {
Tim Renoufd737b552019-03-20 17:42:00 +00001033 MD->setRsrc1(CC, CurrentProgramInfo.ComputePGMRSrc1);
1034 MD->setRsrc2(CC, CurrentProgramInfo.ComputePGMRSrc2);
Tim Renouf72800f02017-10-03 19:03:52 +00001035 } else {
Tim Renoufd737b552019-03-20 17:42:00 +00001036 MD->setRsrc1(CC, S_00B028_VGPRS(CurrentProgramInfo.VGPRBlocks) |
1037 S_00B028_SGPRS(CurrentProgramInfo.SGPRBlocks));
Tim Renouf72800f02017-10-03 19:03:52 +00001038 if (CurrentProgramInfo.ScratchBlocks > 0)
Tim Renoufd737b552019-03-20 17:42:00 +00001039 MD->setRsrc2(CC, S_00B84C_SCRATCH_EN(1));
Tim Renouf72800f02017-10-03 19:03:52 +00001040 }
Tim Renoufd737b552019-03-20 17:42:00 +00001041 // ScratchSize is in bytes, 16 aligned.
1042 MD->setScratchSize(CC, alignTo(CurrentProgramInfo.ScratchSize, 16));
Matthias Braunf1caa282017-12-15 22:22:58 +00001043 if (MF.getFunction().getCallingConv() == CallingConv::AMDGPU_PS) {
Tim Renoufd737b552019-03-20 17:42:00 +00001044 MD->setRsrc2(CC, S_00B02C_EXTRA_LDS_SIZE(CurrentProgramInfo.LDSBlocks));
1045 MD->setSpiPsInputEna(MFI->getPSInputEnable());
1046 MD->setSpiPsInputAddr(MFI->getPSInputAddr());
Tim Renouf72800f02017-10-03 19:03:52 +00001047 }
1048}
1049
Matt Arsenault24ee0782016-02-12 02:40:47 +00001050// This is supposed to be log2(Size)
1051static amd_element_byte_size_t getElementByteSizeValue(unsigned Size) {
1052 switch (Size) {
1053 case 4:
1054 return AMD_ELEMENT_4_BYTES;
1055 case 8:
1056 return AMD_ELEMENT_8_BYTES;
1057 case 16:
1058 return AMD_ELEMENT_16_BYTES;
1059 default:
1060 llvm_unreachable("invalid private_element_size");
1061 }
1062}
1063
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001064void AMDGPUAsmPrinter::getAmdKernelCode(amd_kernel_code_t &Out,
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +00001065 const SIProgramInfo &CurrentProgramInfo,
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001066 const MachineFunction &MF) const {
Matt Arsenault4bec7d42018-07-20 09:05:08 +00001067 const Function &F = MF.getFunction();
1068 assert(F.getCallingConv() == CallingConv::AMDGPU_KERNEL ||
1069 F.getCallingConv() == CallingConv::SPIR_KERNEL);
1070
Tom Stellard45bb48e2015-06-13 03:28:10 +00001071 const SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>();
Tom Stellard5bfbae52018-07-11 20:59:01 +00001072 const GCNSubtarget &STM = MF.getSubtarget<GCNSubtarget>();
Tom Stellard45bb48e2015-06-13 03:28:10 +00001073
Matt Arsenault4cd95092019-02-12 23:44:13 +00001074 AMDGPU::initDefaultAMDKernelCodeT(Out, &STM);
Tom Stellard45bb48e2015-06-13 03:28:10 +00001075
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001076 Out.compute_pgm_resource_registers =
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +00001077 CurrentProgramInfo.ComputePGMRSrc1 |
1078 (CurrentProgramInfo.ComputePGMRSrc2 << 32);
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001079 Out.code_properties = AMD_CODE_PROPERTY_IS_PTR64;
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001080
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +00001081 if (CurrentProgramInfo.DynamicCallStack)
1082 Out.code_properties |= AMD_CODE_PROPERTY_IS_DYNAMIC_CALLSTACK;
1083
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001084 AMD_HSA_BITS_SET(Out.code_properties,
Matt Arsenault24ee0782016-02-12 02:40:47 +00001085 AMD_CODE_PROPERTY_PRIVATE_ELEMENT_SIZE,
1086 getElementByteSizeValue(STM.getMaxPrivateElementSize()));
1087
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001088 if (MFI->hasPrivateSegmentBuffer()) {
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001089 Out.code_properties |=
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001090 AMD_CODE_PROPERTY_ENABLE_SGPR_PRIVATE_SEGMENT_BUFFER;
1091 }
1092
1093 if (MFI->hasDispatchPtr())
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001094 Out.code_properties |= AMD_CODE_PROPERTY_ENABLE_SGPR_DISPATCH_PTR;
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001095
1096 if (MFI->hasQueuePtr())
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001097 Out.code_properties |= AMD_CODE_PROPERTY_ENABLE_SGPR_QUEUE_PTR;
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001098
1099 if (MFI->hasKernargSegmentPtr())
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001100 Out.code_properties |= AMD_CODE_PROPERTY_ENABLE_SGPR_KERNARG_SEGMENT_PTR;
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001101
1102 if (MFI->hasDispatchID())
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001103 Out.code_properties |= AMD_CODE_PROPERTY_ENABLE_SGPR_DISPATCH_ID;
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001104
1105 if (MFI->hasFlatScratchInit())
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001106 Out.code_properties |= AMD_CODE_PROPERTY_ENABLE_SGPR_FLAT_SCRATCH_INIT;
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001107
Tom Stellard48f29f22015-11-26 00:43:29 +00001108 if (MFI->hasDispatchPtr())
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001109 Out.code_properties |= AMD_CODE_PROPERTY_ENABLE_SGPR_DISPATCH_PTR;
Tom Stellard48f29f22015-11-26 00:43:29 +00001110
Nicolai Haehnle5b504972016-01-04 23:35:53 +00001111 if (STM.isXNACKEnabled())
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001112 Out.code_properties |= AMD_CODE_PROPERTY_IS_XNACK_SUPPORTED;
Nicolai Haehnle5b504972016-01-04 23:35:53 +00001113
Matt Arsenault4bec7d42018-07-20 09:05:08 +00001114 unsigned MaxKernArgAlign;
1115 Out.kernarg_segment_byte_size = STM.getKernArgSegmentSize(F, MaxKernArgAlign);
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +00001116 Out.wavefront_sgpr_count = CurrentProgramInfo.NumSGPR;
1117 Out.workitem_vgpr_count = CurrentProgramInfo.NumVGPR;
1118 Out.workitem_private_segment_byte_size = CurrentProgramInfo.ScratchSize;
1119 Out.workgroup_group_segment_byte_size = CurrentProgramInfo.LDSSize;
Tom Stellard45bb48e2015-06-13 03:28:10 +00001120
Tom Stellard175959e2016-12-06 21:53:10 +00001121 // These alignment values are specified in powers of two, so alignment =
1122 // 2^n. The minimum alignment is 2^4 = 16.
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001123 Out.kernarg_segment_alignment = std::max((size_t)4,
Matt Arsenault4bec7d42018-07-20 09:05:08 +00001124 countTrailingZeros(MaxKernArgAlign));
Tom Stellard45bb48e2015-06-13 03:28:10 +00001125}
1126
1127bool AMDGPUAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Tom Stellard45bb48e2015-06-13 03:28:10 +00001128 const char *ExtraCode, raw_ostream &O) {
Matt Arsenault36cd1852017-08-09 20:09:35 +00001129 // First try the generic code, which knows about modifiers like 'c' and 'n'.
Nick Desaulniers5277b3f2019-04-10 16:38:43 +00001130 if (!AsmPrinter::PrintAsmOperand(MI, OpNo, ExtraCode, O))
Matt Arsenault36cd1852017-08-09 20:09:35 +00001131 return false;
1132
Tom Stellard45bb48e2015-06-13 03:28:10 +00001133 if (ExtraCode && ExtraCode[0]) {
1134 if (ExtraCode[1] != 0)
1135 return true; // Unknown modifier.
1136
1137 switch (ExtraCode[0]) {
Tom Stellard45bb48e2015-06-13 03:28:10 +00001138 case 'r':
1139 break;
Matt Arsenault36cd1852017-08-09 20:09:35 +00001140 default:
1141 return true;
Tom Stellard45bb48e2015-06-13 03:28:10 +00001142 }
1143 }
1144
Matt Arsenault36cd1852017-08-09 20:09:35 +00001145 // TODO: Should be able to support other operand types like globals.
1146 const MachineOperand &MO = MI->getOperand(OpNo);
1147 if (MO.isReg()) {
1148 AMDGPUInstPrinter::printRegOperand(MO.getReg(), O,
1149 *MF->getSubtarget().getRegisterInfo());
1150 return false;
1151 }
1152
1153 return true;
Tom Stellard45bb48e2015-06-13 03:28:10 +00001154}