blob: 2a05e3baa62cdf505c3f8e06a20b33c203bd1aa8 [file] [log] [blame]
Tom Stellard45bb48e2015-06-13 03:28:10 +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
19#include "AMDGPUAsmPrinter.h"
Tom Stellard45bb48e2015-06-13 03:28:10 +000020#include "AMDGPU.h"
Tom Stellard45bb48e2015-06-13 03:28:10 +000021#include "AMDGPUSubtarget.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000022#include "AMDGPUTargetMachine.h"
23#include "InstPrinter/AMDGPUInstPrinter.h"
24#include "MCTargetDesc/AMDGPUTargetStreamer.h"
Tom Stellard45bb48e2015-06-13 03:28:10 +000025#include "R600Defines.h"
26#include "R600MachineFunctionInfo.h"
27#include "R600RegisterInfo.h"
28#include "SIDefines.h"
Matt Arsenaulta9720c62016-06-20 17:51:32 +000029#include "SIInstrInfo.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000030#include "SIMachineFunctionInfo.h"
Tom Stellard45bb48e2015-06-13 03:28:10 +000031#include "SIRegisterInfo.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000032#include "Utils/AMDGPUBaseInfo.h"
Zachary Turner264b5d92017-06-07 03:48:56 +000033#include "llvm/BinaryFormat/ELF.h"
Tom Stellard45bb48e2015-06-13 03:28:10 +000034#include "llvm/CodeGen/MachineFrameInfo.h"
Matt Arsenaultff982412016-06-20 18:13:04 +000035#include "llvm/IR/DiagnosticInfo.h"
Tom Stellard45bb48e2015-06-13 03:28:10 +000036#include "llvm/MC/MCContext.h"
37#include "llvm/MC/MCSectionELF.h"
38#include "llvm/MC/MCStreamer.h"
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +000039#include "llvm/Support/AMDGPUMetadata.h"
Tom Stellard45bb48e2015-06-13 03:28:10 +000040#include "llvm/Support/MathExtras.h"
41#include "llvm/Support/TargetRegistry.h"
David Blaikie6054e652018-03-23 23:58:19 +000042#include "llvm/Target/TargetLoweringObjectFile.h"
Tom Stellard45bb48e2015-06-13 03:28:10 +000043
44using namespace llvm;
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +000045using namespace llvm::AMDGPU;
Tom Stellard45bb48e2015-06-13 03:28:10 +000046
47// TODO: This should get the default rounding mode from the kernel. We just set
48// the default here, but this could change if the OpenCL rounding mode pragmas
49// are used.
50//
51// The denormal mode here should match what is reported by the OpenCL runtime
52// for the CL_FP_DENORM bit from CL_DEVICE_{HALF|SINGLE|DOUBLE}_FP_CONFIG, but
53// can also be override to flush with the -cl-denorms-are-zero compiler flag.
54//
55// AMD OpenCL only sets flush none and reports CL_FP_DENORM for double
56// precision, and leaves single precision to flush all and does not report
57// CL_FP_DENORM for CL_DEVICE_SINGLE_FP_CONFIG. Mesa's OpenCL currently reports
58// CL_FP_DENORM for both.
59//
60// FIXME: It seems some instructions do not support single precision denormals
61// regardless of the mode (exp_*_f32, rcp_*_f32, rsq_*_f32, rsq_*f32, sqrt_f32,
62// and sin_f32, cos_f32 on most parts).
63
64// We want to use these instructions, and using fp32 denormals also causes
65// instructions to run at the double precision rate for the device so it's
66// probably best to just report no single precision denormals.
67static uint32_t getFPMode(const MachineFunction &F) {
Matt Arsenault43e92fe2016-06-24 06:30:11 +000068 const SISubtarget& ST = F.getSubtarget<SISubtarget>();
Tom Stellard45bb48e2015-06-13 03:28:10 +000069 // TODO: Is there any real use for the flush in only / flush out only modes?
70
71 uint32_t FP32Denormals =
72 ST.hasFP32Denormals() ? FP_DENORM_FLUSH_NONE : FP_DENORM_FLUSH_IN_FLUSH_OUT;
73
74 uint32_t FP64Denormals =
75 ST.hasFP64Denormals() ? FP_DENORM_FLUSH_NONE : FP_DENORM_FLUSH_IN_FLUSH_OUT;
76
77 return FP_ROUND_MODE_SP(FP_ROUND_ROUND_TO_NEAREST) |
78 FP_ROUND_MODE_DP(FP_ROUND_ROUND_TO_NEAREST) |
79 FP_DENORM_MODE_SP(FP32Denormals) |
80 FP_DENORM_MODE_DP(FP64Denormals);
81}
82
83static AsmPrinter *
84createAMDGPUAsmPrinterPass(TargetMachine &tm,
85 std::unique_ptr<MCStreamer> &&Streamer) {
86 return new AMDGPUAsmPrinter(tm, std::move(Streamer));
87}
88
89extern "C" void LLVMInitializeAMDGPUAsmPrinter() {
Mehdi Aminif42454b2016-10-09 23:00:34 +000090 TargetRegistry::RegisterAsmPrinter(getTheAMDGPUTarget(),
91 createAMDGPUAsmPrinterPass);
92 TargetRegistry::RegisterAsmPrinter(getTheGCNTarget(),
93 createAMDGPUAsmPrinterPass);
Tom Stellard45bb48e2015-06-13 03:28:10 +000094}
95
96AMDGPUAsmPrinter::AMDGPUAsmPrinter(TargetMachine &TM,
97 std::unique_ptr<MCStreamer> Streamer)
Yaxun Liu1a14bfa2017-03-27 14:04:01 +000098 : AsmPrinter(TM, std::move(Streamer)) {
99 AMDGPUASI = static_cast<AMDGPUTargetMachine*>(&TM)->getAMDGPUAS();
100 }
Tom Stellard45bb48e2015-06-13 03:28:10 +0000101
Mehdi Amini117296c2016-10-01 02:56:57 +0000102StringRef AMDGPUAsmPrinter::getPassName() const {
Matt Arsenaultf9245b72016-07-22 17:01:25 +0000103 return "AMDGPU Assembly Printer";
104}
105
Konstantin Zhuravlyov7498cd62017-03-22 22:32:22 +0000106const MCSubtargetInfo* AMDGPUAsmPrinter::getSTI() const {
107 return TM.getMCSubtargetInfo();
108}
109
Konstantin Zhuravlyov8c18f5b2017-10-14 22:16:26 +0000110AMDGPUTargetStreamer* AMDGPUAsmPrinter::getTargetStreamer() const {
111 if (!OutStreamer)
112 return nullptr;
113 return static_cast<AMDGPUTargetStreamer*>(OutStreamer->getTargetStreamer());
Konstantin Zhuravlyov7498cd62017-03-22 22:32:22 +0000114}
115
Tom Stellardf4218372016-01-12 17:18:17 +0000116void AMDGPUAsmPrinter::EmitStartOfAsmFile(Module &M) {
Konstantin Zhuravlyoveda425e2017-10-14 15:59:07 +0000117 if (TM.getTargetTriple().getArch() != Triple::amdgcn)
Tim Renouf72800f02017-10-03 19:03:52 +0000118 return;
119
Konstantin Zhuravlyoveda425e2017-10-14 15:59:07 +0000120 if (TM.getTargetTriple().getOS() != Triple::AMDHSA &&
121 TM.getTargetTriple().getOS() != Triple::AMDPAL)
122 return;
123
124 if (TM.getTargetTriple().getOS() == Triple::AMDHSA)
125 HSAMetadataStream.begin(M);
126
127 if (TM.getTargetTriple().getOS() == Triple::AMDPAL)
128 readPALMetadata(M);
129
130 // Deprecated notes are not emitted for code object v3.
131 if (IsaInfo::hasCodeObjectV3(getSTI()->getFeatureBits()))
132 return;
133
134 // HSA emits NT_AMDGPU_HSA_CODE_OBJECT_VERSION for code objects v2.
135 if (TM.getTargetTriple().getOS() == Triple::AMDHSA)
Konstantin Zhuravlyov8c18f5b2017-10-14 22:16:26 +0000136 getTargetStreamer()->EmitDirectiveHSACodeObjectVersion(2, 1);
Konstantin Zhuravlyoveda425e2017-10-14 15:59:07 +0000137
138 // HSA and PAL emit NT_AMDGPU_HSA_ISA for code objects v2.
139 IsaInfo::IsaVersion ISA = IsaInfo::getIsaVersion(getSTI()->getFeatureBits());
Konstantin Zhuravlyov8c18f5b2017-10-14 22:16:26 +0000140 getTargetStreamer()->EmitDirectiveHSACodeObjectISA(
Konstantin Zhuravlyov7498cd62017-03-22 22:32:22 +0000141 ISA.Major, ISA.Minor, ISA.Stepping, "AMD", "AMDGPU");
Konstantin Zhuravlyov7498cd62017-03-22 22:32:22 +0000142}
143
144void AMDGPUAsmPrinter::EmitEndOfAsmFile(Module &M) {
Konstantin Zhuravlyov9c05b2b2017-10-14 15:40:33 +0000145 if (TM.getTargetTriple().getArch() != Triple::amdgcn)
146 return;
147
Konstantin Zhuravlyov8c18f5b2017-10-14 22:16:26 +0000148 // Following code requires TargetStreamer to be present.
149 if (!getTargetStreamer())
150 return;
151
Konstantin Zhuravlyov9c05b2b2017-10-14 15:40:33 +0000152 // Emit ISA Version (NT_AMD_AMDGPU_ISA).
153 std::string ISAVersionString;
154 raw_string_ostream ISAVersionStream(ISAVersionString);
155 IsaInfo::streamIsaVersion(getSTI(), ISAVersionStream);
Konstantin Zhuravlyov8c18f5b2017-10-14 22:16:26 +0000156 getTargetStreamer()->EmitISAVersion(ISAVersionStream.str());
Konstantin Zhuravlyov9c05b2b2017-10-14 15:40:33 +0000157
158 // Emit HSA Metadata (NT_AMD_AMDGPU_HSA_METADATA).
159 if (TM.getTargetTriple().getOS() == Triple::AMDHSA) {
160 HSAMetadataStream.end();
Konstantin Zhuravlyov8c18f5b2017-10-14 22:16:26 +0000161 getTargetStreamer()->EmitHSAMetadata(HSAMetadataStream.getHSAMetadata());
Konstantin Zhuravlyov9c05b2b2017-10-14 15:40:33 +0000162 }
163
164 // Emit PAL Metadata (NT_AMD_AMDGPU_PAL_METADATA).
Tim Renouf72800f02017-10-03 19:03:52 +0000165 if (TM.getTargetTriple().getOS() == Triple::AMDPAL) {
166 // Copy the PAL metadata from the map where we collected it into a vector,
167 // then write it as a .note.
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +0000168 PALMD::Metadata PALMetadataVector;
169 for (auto i : PALMetadataMap) {
170 PALMetadataVector.push_back(i.first);
171 PALMetadataVector.push_back(i.second);
Tim Renouf72800f02017-10-03 19:03:52 +0000172 }
Konstantin Zhuravlyov8c18f5b2017-10-14 22:16:26 +0000173 getTargetStreamer()->EmitPALMetadata(PALMetadataVector);
Tim Renouf72800f02017-10-03 19:03:52 +0000174 }
Tom Stellardf4218372016-01-12 17:18:17 +0000175}
176
Matt Arsenault6bc43d82016-10-06 16:20:41 +0000177bool AMDGPUAsmPrinter::isBlockOnlyReachableByFallthrough(
178 const MachineBasicBlock *MBB) const {
179 if (!AsmPrinter::isBlockOnlyReachableByFallthrough(MBB))
180 return false;
181
182 if (MBB->empty())
183 return true;
184
185 // If this is a block implementing a long branch, an expression relative to
186 // the start of the block is needed. to the start of the block.
187 // XXX - Is there a smarter way to check this?
188 return (MBB->back().getOpcode() != AMDGPU::S_SETPC_B64);
189}
190
Tom Stellardf151a452015-06-26 21:14:58 +0000191void AMDGPUAsmPrinter::EmitFunctionBodyStart() {
Matt Arsenault021a2182017-04-19 19:38:10 +0000192 const AMDGPUMachineFunction *MFI = MF->getInfo<AMDGPUMachineFunction>();
193 if (!MFI->isEntryFunction())
194 return;
195
Tom Stellardf151a452015-06-26 21:14:58 +0000196 const AMDGPUSubtarget &STM = MF->getSubtarget<AMDGPUSubtarget>();
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +0000197 amd_kernel_code_t KernelCode;
Tom Stellard2f3f9852017-01-25 01:25:13 +0000198 if (STM.isAmdCodeObjectV2(*MF)) {
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000199 getAmdKernelCode(KernelCode, CurrentProgramInfo, *MF);
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +0000200
201 OutStreamer->SwitchSection(getObjFileLowering().getTextSection());
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
205 if (TM.getTargetTriple().getOS() != Triple::AMDHSA)
206 return;
Konstantin Zhuravlyov516651b2017-10-11 22:59:35 +0000207
Matthias Braunf1caa282017-12-15 22:22:58 +0000208 HSAMetadataStream.emitKernel(MF->getFunction(),
Konstantin Zhuravlyova01d8b02017-10-14 19:03:51 +0000209 getHSACodeProps(*MF, CurrentProgramInfo),
210 getHSADebugProps(*MF, CurrentProgramInfo));
Tom Stellardf151a452015-06-26 21:14:58 +0000211}
212
Tom Stellard1e1b05d2015-11-06 11:45:14 +0000213void AMDGPUAsmPrinter::EmitFunctionEntryLabel() {
214 const SIMachineFunctionInfo *MFI = MF->getInfo<SIMachineFunctionInfo>();
215 const AMDGPUSubtarget &STM = MF->getSubtarget<AMDGPUSubtarget>();
Matt Arsenault1074cb52017-03-30 23:58:04 +0000216 if (MFI->isEntryFunction() && STM.isAmdCodeObjectV2(*MF)) {
Tom Stellard1b9748c2016-09-26 17:29:25 +0000217 SmallString<128> SymbolName;
Matthias Braunf1caa282017-12-15 22:22:58 +0000218 getNameWithPrefix(SymbolName, &MF->getFunction()),
Konstantin Zhuravlyov8c18f5b2017-10-14 22:16:26 +0000219 getTargetStreamer()->EmitAMDGPUSymbolType(
Konstantin Zhuravlyov7498cd62017-03-22 22:32:22 +0000220 SymbolName, ELF::STT_AMDGPU_HSA_KERNEL);
Tom Stellard1e1b05d2015-11-06 11:45:14 +0000221 }
Tim Renoufcead41d2017-12-08 14:09:34 +0000222 const AMDGPUSubtarget &STI = MF->getSubtarget<AMDGPUSubtarget>();
223 if (STI.dumpCode()) {
224 // Disassemble function name label to text.
Matthias Braunf1caa282017-12-15 22:22:58 +0000225 DisasmLines.push_back(MF->getName().str() + ":");
Tim Renoufcead41d2017-12-08 14:09:34 +0000226 DisasmLineMaxLen = std::max(DisasmLineMaxLen, DisasmLines.back().size());
227 HexLines.push_back("");
228 }
Tom Stellard1e1b05d2015-11-06 11:45:14 +0000229
230 AsmPrinter::EmitFunctionEntryLabel();
231}
232
Tim Renoufcead41d2017-12-08 14:09:34 +0000233void AMDGPUAsmPrinter::EmitBasicBlockStart(const MachineBasicBlock &MBB) const {
234 const AMDGPUSubtarget &STI = MBB.getParent()->getSubtarget<AMDGPUSubtarget>();
235 if (STI.dumpCode() && !isBlockOnlyReachableByFallthrough(&MBB)) {
236 // Write a line for the basic block label if it is not only fallthrough.
237 DisasmLines.push_back(
238 (Twine("BB") + Twine(getFunctionNumber())
239 + "_" + Twine(MBB.getNumber()) + ":").str());
240 DisasmLineMaxLen = std::max(DisasmLineMaxLen, DisasmLines.back().size());
241 HexLines.push_back("");
242 }
243 AsmPrinter::EmitBasicBlockStart(MBB);
244}
245
Tom Stellarde3b5aea2015-12-02 17:00:42 +0000246void AMDGPUAsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
247
Tom Stellard00f2f912015-12-02 19:47:57 +0000248 // Group segment variables aren't emitted in HSA.
Konstantin Zhuravlyov435151a2017-11-01 19:12:38 +0000249 if (AMDGPU::isGroupSegment(GV))
Tom Stellard00f2f912015-12-02 19:47:57 +0000250 return;
251
Tom Stellardfcfaea42016-05-05 17:03:33 +0000252 AsmPrinter::EmitGlobalVariable(GV);
Tom Stellarde3b5aea2015-12-02 17:00:42 +0000253}
254
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000255bool AMDGPUAsmPrinter::doFinalization(Module &M) {
256 CallGraphResourceInfo.clear();
257 return AsmPrinter::doFinalization(M);
258}
259
Tim Renouf72800f02017-10-03 19:03:52 +0000260// For the amdpal OS type, read the amdgpu.pal.metadata supplied by the
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +0000261// frontend into our PALMetadataMap, ready for per-function modification. It
Tim Renouf72800f02017-10-03 19:03:52 +0000262// is a NamedMD containing an MDTuple containing a number of MDNodes each of
263// which is an integer value, and each two integer values forms a key=value
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +0000264// pair that we store as PALMetadataMap[key]=value in the map.
265void AMDGPUAsmPrinter::readPALMetadata(Module &M) {
Tim Renouf72800f02017-10-03 19:03:52 +0000266 auto NamedMD = M.getNamedMetadata("amdgpu.pal.metadata");
267 if (!NamedMD || !NamedMD->getNumOperands())
268 return;
269 auto Tuple = dyn_cast<MDTuple>(NamedMD->getOperand(0));
270 if (!Tuple)
271 return;
272 for (unsigned I = 0, E = Tuple->getNumOperands() & -2; I != E; I += 2) {
273 auto Key = mdconst::dyn_extract<ConstantInt>(Tuple->getOperand(I));
274 auto Val = mdconst::dyn_extract<ConstantInt>(Tuple->getOperand(I + 1));
275 if (!Key || !Val)
276 continue;
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +0000277 PALMetadataMap[Key->getZExtValue()] = Val->getZExtValue();
Tim Renouf72800f02017-10-03 19:03:52 +0000278 }
279}
280
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000281// Print comments that apply to both callable functions and entry points.
282void AMDGPUAsmPrinter::emitCommonFunctionComments(
283 uint32_t NumVGPR,
284 uint32_t NumSGPR,
Matt Arsenault9ba465a2017-11-14 20:33:14 +0000285 uint64_t ScratchSize,
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000286 uint64_t CodeSize) {
287 OutStreamer->emitRawComment(" codeLenInByte = " + Twine(CodeSize), false);
288 OutStreamer->emitRawComment(" NumSgprs: " + Twine(NumSGPR), false);
289 OutStreamer->emitRawComment(" NumVgprs: " + Twine(NumVGPR), false);
290 OutStreamer->emitRawComment(" ScratchSize: " + Twine(ScratchSize), false);
291}
292
Tom Stellard45bb48e2015-06-13 03:28:10 +0000293bool AMDGPUAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000294 CurrentProgramInfo = SIProgramInfo();
295
Matt Arsenault6cb7b8a2017-04-19 17:42:39 +0000296 const AMDGPUMachineFunction *MFI = MF.getInfo<AMDGPUMachineFunction>();
Tom Stellard45bb48e2015-06-13 03:28:10 +0000297
298 // The starting address of all shader programs must be 256 bytes aligned.
Matt Arsenault6cb7b8a2017-04-19 17:42:39 +0000299 // Regular functions just need the basic required instruction alignment.
300 MF.setAlignment(MFI->isEntryFunction() ? 8 : 2);
Tom Stellard45bb48e2015-06-13 03:28:10 +0000301
302 SetupMachineFunction(MF);
303
Tom Stellard45bb48e2015-06-13 03:28:10 +0000304 const AMDGPUSubtarget &STM = MF.getSubtarget<AMDGPUSubtarget>();
Konstantin Zhuravlyov67a6d542017-01-06 17:02:10 +0000305 MCContext &Context = getObjFileLowering().getContext();
Tim Renouf807ecc32018-02-06 13:39:38 +0000306 // FIXME: This should be an explicit check for Mesa.
307 if (!STM.isAmdHsaOS() && !STM.isAmdPalOS()) {
Konstantin Zhuravlyov67a6d542017-01-06 17:02:10 +0000308 MCSectionELF *ConfigSection =
309 Context.getELFSection(".AMDGPU.config", ELF::SHT_PROGBITS, 0);
310 OutStreamer->SwitchSection(ConfigSection);
311 }
312
Tom Stellardf151a452015-06-26 21:14:58 +0000313 if (STM.getGeneration() >= AMDGPUSubtarget::SOUTHERN_ISLANDS) {
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000314 if (MFI->isEntryFunction()) {
315 getSIProgramInfo(CurrentProgramInfo, MF);
316 } else {
317 auto I = CallGraphResourceInfo.insert(
Matthias Braunf1caa282017-12-15 22:22:58 +0000318 std::make_pair(&MF.getFunction(), SIFunctionResourceInfo()));
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000319 SIFunctionResourceInfo &Info = I.first->second;
320 assert(I.second && "should only be called once per function");
321 Info = analyzeResourceUsage(MF);
322 }
323
Tim Renouf72800f02017-10-03 19:03:52 +0000324 if (STM.isAmdPalOS())
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +0000325 EmitPALMetadata(MF, CurrentProgramInfo);
Tim Renouf807ecc32018-02-06 13:39:38 +0000326 else if (!STM.isAmdHsaOS()) {
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000327 EmitProgramInfoSI(MF, CurrentProgramInfo);
Tom Stellardf151a452015-06-26 21:14:58 +0000328 }
Tom Stellard45bb48e2015-06-13 03:28:10 +0000329 } else {
330 EmitProgramInfoR600(MF);
331 }
332
333 DisasmLines.clear();
334 HexLines.clear();
335 DisasmLineMaxLen = 0;
336
337 EmitFunctionBody();
338
339 if (isVerbose()) {
340 MCSectionELF *CommentSection =
341 Context.getELFSection(".AMDGPU.csdata", ELF::SHT_PROGBITS, 0);
342 OutStreamer->SwitchSection(CommentSection);
343
344 if (STM.getGeneration() >= AMDGPUSubtarget::SOUTHERN_ISLANDS) {
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000345 if (!MFI->isEntryFunction()) {
Matt Arsenault021a2182017-04-19 19:38:10 +0000346 OutStreamer->emitRawComment(" Function info:", false);
Matthias Braunf1caa282017-12-15 22:22:58 +0000347 SIFunctionResourceInfo &Info = CallGraphResourceInfo[&MF.getFunction()];
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000348 emitCommonFunctionComments(
349 Info.NumVGPR,
350 Info.getTotalNumSGPRs(MF.getSubtarget<SISubtarget>()),
351 Info.PrivateSegmentSize,
352 getFunctionCodeSize(MF));
353 return false;
Matt Arsenault021a2182017-04-19 19:38:10 +0000354 }
355
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000356 OutStreamer->emitRawComment(" Kernel info:", false);
357 emitCommonFunctionComments(CurrentProgramInfo.NumVGPR,
358 CurrentProgramInfo.NumSGPR,
359 CurrentProgramInfo.ScratchSize,
360 getFunctionCodeSize(MF));
361
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000362 OutStreamer->emitRawComment(
363 " FloatMode: " + Twine(CurrentProgramInfo.FloatMode), false);
364 OutStreamer->emitRawComment(
365 " IeeeMode: " + Twine(CurrentProgramInfo.IEEEMode), false);
366 OutStreamer->emitRawComment(
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000367 " LDSByteSize: " + Twine(CurrentProgramInfo.LDSSize) +
368 " bytes/workgroup (compile time only)", false);
Matt Arsenaultd41c0db2015-11-05 05:27:07 +0000369
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000370 OutStreamer->emitRawComment(
371 " SGPRBlocks: " + Twine(CurrentProgramInfo.SGPRBlocks), false);
372 OutStreamer->emitRawComment(
373 " VGPRBlocks: " + Twine(CurrentProgramInfo.VGPRBlocks), false);
Matt Arsenault021a2182017-04-19 19:38:10 +0000374
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000375 OutStreamer->emitRawComment(
376 " NumSGPRsForWavesPerEU: " +
377 Twine(CurrentProgramInfo.NumSGPRsForWavesPerEU), false);
378 OutStreamer->emitRawComment(
379 " NumVGPRsForWavesPerEU: " +
380 Twine(CurrentProgramInfo.NumVGPRsForWavesPerEU), false);
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000381
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000382 OutStreamer->emitRawComment(
383 " ReservedVGPRFirst: " + Twine(CurrentProgramInfo.ReservedVGPRFirst),
384 false);
385 OutStreamer->emitRawComment(
386 " ReservedVGPRCount: " + Twine(CurrentProgramInfo.ReservedVGPRCount),
387 false);
Konstantin Zhuravlyov1d99c4d2016-04-26 15:43:14 +0000388
Konstantin Zhuravlyovf2f3d142016-06-25 03:11:28 +0000389 if (MF.getSubtarget<SISubtarget>().debuggerEmitPrologue()) {
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000390 OutStreamer->emitRawComment(
391 " DebuggerWavefrontPrivateSegmentOffsetSGPR: s" +
392 Twine(CurrentProgramInfo.DebuggerWavefrontPrivateSegmentOffsetSGPR), false);
393 OutStreamer->emitRawComment(
394 " DebuggerPrivateSegmentBufferSGPR: s" +
395 Twine(CurrentProgramInfo.DebuggerPrivateSegmentBufferSGPR), false);
Konstantin Zhuravlyovf2f3d142016-06-25 03:11:28 +0000396 }
397
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000398 OutStreamer->emitRawComment(
399 " COMPUTE_PGM_RSRC2:USER_SGPR: " +
400 Twine(G_00B84C_USER_SGPR(CurrentProgramInfo.ComputePGMRSrc2)), false);
401 OutStreamer->emitRawComment(
402 " COMPUTE_PGM_RSRC2:TRAP_HANDLER: " +
403 Twine(G_00B84C_TRAP_HANDLER(CurrentProgramInfo.ComputePGMRSrc2)), false);
404 OutStreamer->emitRawComment(
405 " COMPUTE_PGM_RSRC2:TGID_X_EN: " +
406 Twine(G_00B84C_TGID_X_EN(CurrentProgramInfo.ComputePGMRSrc2)), false);
407 OutStreamer->emitRawComment(
408 " COMPUTE_PGM_RSRC2:TGID_Y_EN: " +
409 Twine(G_00B84C_TGID_Y_EN(CurrentProgramInfo.ComputePGMRSrc2)), false);
410 OutStreamer->emitRawComment(
411 " COMPUTE_PGM_RSRC2:TGID_Z_EN: " +
412 Twine(G_00B84C_TGID_Z_EN(CurrentProgramInfo.ComputePGMRSrc2)), false);
413 OutStreamer->emitRawComment(
414 " COMPUTE_PGM_RSRC2:TIDIG_COMP_CNT: " +
415 Twine(G_00B84C_TIDIG_COMP_CNT(CurrentProgramInfo.ComputePGMRSrc2)),
416 false);
Tom Stellard45bb48e2015-06-13 03:28:10 +0000417 } else {
418 R600MachineFunctionInfo *MFI = MF.getInfo<R600MachineFunctionInfo>();
419 OutStreamer->emitRawComment(
Matt Arsenaultf9245b72016-07-22 17:01:25 +0000420 Twine("SQ_PGM_RESOURCES:STACK_SIZE = " + Twine(MFI->CFStackSize)));
Tom Stellard45bb48e2015-06-13 03:28:10 +0000421 }
422 }
423
424 if (STM.dumpCode()) {
425
426 OutStreamer->SwitchSection(
427 Context.getELFSection(".AMDGPU.disasm", ELF::SHT_NOTE, 0));
428
429 for (size_t i = 0; i < DisasmLines.size(); ++i) {
Tim Renoufcead41d2017-12-08 14:09:34 +0000430 std::string Comment = "\n";
431 if (!HexLines[i].empty()) {
432 Comment = std::string(DisasmLineMaxLen - DisasmLines[i].size(), ' ');
433 Comment += " ; " + HexLines[i] + "\n";
434 }
Tom Stellard45bb48e2015-06-13 03:28:10 +0000435
436 OutStreamer->EmitBytes(StringRef(DisasmLines[i]));
437 OutStreamer->EmitBytes(StringRef(Comment));
438 }
439 }
440
441 return false;
442}
443
444void AMDGPUAsmPrinter::EmitProgramInfoR600(const MachineFunction &MF) {
445 unsigned MaxGPR = 0;
446 bool killPixel = false;
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000447 const R600Subtarget &STM = MF.getSubtarget<R600Subtarget>();
448 const R600RegisterInfo *RI = STM.getRegisterInfo();
Tom Stellard45bb48e2015-06-13 03:28:10 +0000449 const R600MachineFunctionInfo *MFI = MF.getInfo<R600MachineFunctionInfo>();
450
451 for (const MachineBasicBlock &MBB : MF) {
452 for (const MachineInstr &MI : MBB) {
453 if (MI.getOpcode() == AMDGPU::KILLGT)
454 killPixel = true;
455 unsigned numOperands = MI.getNumOperands();
456 for (unsigned op_idx = 0; op_idx < numOperands; op_idx++) {
457 const MachineOperand &MO = MI.getOperand(op_idx);
458 if (!MO.isReg())
459 continue;
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000460 unsigned HWReg = RI->getHWRegIndex(MO.getReg());
Tom Stellard45bb48e2015-06-13 03:28:10 +0000461
462 // Register with value > 127 aren't GPR
463 if (HWReg > 127)
464 continue;
465 MaxGPR = std::max(MaxGPR, HWReg);
466 }
467 }
468 }
469
470 unsigned RsrcReg;
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000471 if (STM.getGeneration() >= R600Subtarget::EVERGREEN) {
Tom Stellard45bb48e2015-06-13 03:28:10 +0000472 // Evergreen / Northern Islands
Matthias Braunf1caa282017-12-15 22:22:58 +0000473 switch (MF.getFunction().getCallingConv()) {
Justin Bognercd1d5aa2016-08-17 20:30:52 +0000474 default: LLVM_FALLTHROUGH;
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +0000475 case CallingConv::AMDGPU_CS: RsrcReg = R_0288D4_SQ_PGM_RESOURCES_LS; break;
476 case CallingConv::AMDGPU_GS: RsrcReg = R_028878_SQ_PGM_RESOURCES_GS; break;
477 case CallingConv::AMDGPU_PS: RsrcReg = R_028844_SQ_PGM_RESOURCES_PS; break;
478 case CallingConv::AMDGPU_VS: RsrcReg = R_028860_SQ_PGM_RESOURCES_VS; break;
Tom Stellard45bb48e2015-06-13 03:28:10 +0000479 }
480 } else {
481 // R600 / R700
Matthias Braunf1caa282017-12-15 22:22:58 +0000482 switch (MF.getFunction().getCallingConv()) {
Justin Bognercd1d5aa2016-08-17 20:30:52 +0000483 default: LLVM_FALLTHROUGH;
484 case CallingConv::AMDGPU_GS: LLVM_FALLTHROUGH;
485 case CallingConv::AMDGPU_CS: LLVM_FALLTHROUGH;
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +0000486 case CallingConv::AMDGPU_VS: RsrcReg = R_028868_SQ_PGM_RESOURCES_VS; break;
487 case CallingConv::AMDGPU_PS: RsrcReg = R_028850_SQ_PGM_RESOURCES_PS; break;
Tom Stellard45bb48e2015-06-13 03:28:10 +0000488 }
489 }
490
491 OutStreamer->EmitIntValue(RsrcReg, 4);
492 OutStreamer->EmitIntValue(S_NUM_GPRS(MaxGPR + 1) |
Matt Arsenaultf9245b72016-07-22 17:01:25 +0000493 S_STACK_SIZE(MFI->CFStackSize), 4);
Tom Stellard45bb48e2015-06-13 03:28:10 +0000494 OutStreamer->EmitIntValue(R_02880C_DB_SHADER_CONTROL, 4);
495 OutStreamer->EmitIntValue(S_02880C_KILL_ENABLE(killPixel), 4);
496
Matthias Braunf1caa282017-12-15 22:22:58 +0000497 if (AMDGPU::isCompute(MF.getFunction().getCallingConv())) {
Tom Stellard45bb48e2015-06-13 03:28:10 +0000498 OutStreamer->EmitIntValue(R_0288E8_SQ_LDS_ALLOC, 4);
Matt Arsenault52ef4012016-07-26 16:45:58 +0000499 OutStreamer->EmitIntValue(alignTo(MFI->getLDSSize(), 4) >> 2, 4);
Tom Stellard45bb48e2015-06-13 03:28:10 +0000500 }
501}
502
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000503uint64_t AMDGPUAsmPrinter::getFunctionCodeSize(const MachineFunction &MF) const {
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000504 const SISubtarget &STM = MF.getSubtarget<SISubtarget>();
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000505 const SIInstrInfo *TII = STM.getInstrInfo();
Tom Stellard45bb48e2015-06-13 03:28:10 +0000506
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000507 uint64_t CodeSize = 0;
508
Tom Stellard45bb48e2015-06-13 03:28:10 +0000509 for (const MachineBasicBlock &MBB : MF) {
510 for (const MachineInstr &MI : MBB) {
511 // TODO: CodeSize should account for multiple functions.
Matt Arsenaultc5746862015-08-12 09:04:44 +0000512
513 // TODO: Should we count size of debug info?
Shiva Chen801bf7e2018-05-09 02:42:00 +0000514 if (MI.isDebugInstr())
Matt Arsenaultc5746862015-08-12 09:04:44 +0000515 continue;
516
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000517 CodeSize += TII->getInstSizeInBytes(MI);
Tom Stellard45bb48e2015-06-13 03:28:10 +0000518 }
519 }
520
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000521 return CodeSize;
522}
523
524static bool hasAnyNonFlatUseOfReg(const MachineRegisterInfo &MRI,
525 const SIInstrInfo &TII,
526 unsigned Reg) {
527 for (const MachineOperand &UseOp : MRI.reg_operands(Reg)) {
528 if (!UseOp.isImplicit() || !TII.isFLAT(*UseOp.getParent()))
529 return true;
530 }
531
532 return false;
533}
534
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000535static unsigned getNumExtraSGPRs(const SISubtarget &ST,
536 bool VCCUsed,
537 bool FlatScrUsed) {
Nicolai Haehnle3c05d6d2016-01-07 17:10:20 +0000538 unsigned ExtraSGPRs = 0;
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000539 if (VCCUsed)
Nicolai Haehnle3c05d6d2016-01-07 17:10:20 +0000540 ExtraSGPRs = 2;
541
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000542 if (ST.getGeneration() < SISubtarget::VOLCANIC_ISLANDS) {
543 if (FlatScrUsed)
Nicolai Haehnle3c05d6d2016-01-07 17:10:20 +0000544 ExtraSGPRs = 4;
545 } else {
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000546 if (ST.isXNACKEnabled())
Nicolai Haehnle3c05d6d2016-01-07 17:10:20 +0000547 ExtraSGPRs = 4;
Tom Stellard45bb48e2015-06-13 03:28:10 +0000548
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000549 if (FlatScrUsed)
Nicolai Haehnle3c05d6d2016-01-07 17:10:20 +0000550 ExtraSGPRs = 6;
Tom Stellardcaaa3aa2015-12-17 17:05:09 +0000551 }
Tom Stellard45bb48e2015-06-13 03:28:10 +0000552
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000553 return ExtraSGPRs;
554}
555
556int32_t AMDGPUAsmPrinter::SIFunctionResourceInfo::getTotalNumSGPRs(
557 const SISubtarget &ST) const {
558 return NumExplicitSGPR + getNumExtraSGPRs(ST, UsesVCC, UsesFlatScratch);
559}
560
561AMDGPUAsmPrinter::SIFunctionResourceInfo AMDGPUAsmPrinter::analyzeResourceUsage(
562 const MachineFunction &MF) const {
563 SIFunctionResourceInfo Info;
564
565 const SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>();
566 const SISubtarget &ST = MF.getSubtarget<SISubtarget>();
567 const MachineFrameInfo &FrameInfo = MF.getFrameInfo();
568 const MachineRegisterInfo &MRI = MF.getRegInfo();
569 const SIInstrInfo *TII = ST.getInstrInfo();
570 const SIRegisterInfo &TRI = TII->getRegisterInfo();
571
572 Info.UsesFlatScratch = MRI.isPhysRegUsed(AMDGPU::FLAT_SCR_LO) ||
573 MRI.isPhysRegUsed(AMDGPU::FLAT_SCR_HI);
574
575 // Even if FLAT_SCRATCH is implicitly used, it has no effect if flat
576 // instructions aren't used to access the scratch buffer. Inline assembly may
577 // need it though.
578 //
579 // If we only have implicit uses of flat_scr on flat instructions, it is not
580 // really needed.
581 if (Info.UsesFlatScratch && !MFI->hasFlatScratchInit() &&
582 (!hasAnyNonFlatUseOfReg(MRI, *TII, AMDGPU::FLAT_SCR) &&
583 !hasAnyNonFlatUseOfReg(MRI, *TII, AMDGPU::FLAT_SCR_LO) &&
584 !hasAnyNonFlatUseOfReg(MRI, *TII, AMDGPU::FLAT_SCR_HI))) {
585 Info.UsesFlatScratch = false;
586 }
587
588 Info.HasDynamicallySizedStack = FrameInfo.hasVarSizedObjects();
589 Info.PrivateSegmentSize = FrameInfo.getStackSize();
Matt Arsenault03ae3992018-03-29 21:30:06 +0000590 if (MFI->isStackRealigned())
591 Info.PrivateSegmentSize += FrameInfo.getMaxAlignment();
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000592
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000593
Matt Arsenault3416b8c2017-06-01 15:05:15 +0000594 Info.UsesVCC = MRI.isPhysRegUsed(AMDGPU::VCC_LO) ||
595 MRI.isPhysRegUsed(AMDGPU::VCC_HI);
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000596
Matt Arsenault3416b8c2017-06-01 15:05:15 +0000597 // If there are no calls, MachineRegisterInfo can tell us the used register
598 // count easily.
Matt Arsenault22cdb612017-09-05 18:36:36 +0000599 // A tail call isn't considered a call for MachineFrameInfo's purposes.
600 if (!FrameInfo.hasCalls() && !FrameInfo.hasTailCall()) {
Matt Arsenault2738ede2017-08-02 17:15:01 +0000601 MCPhysReg HighestVGPRReg = AMDGPU::NoRegister;
602 for (MCPhysReg Reg : reverse(AMDGPU::VGPR_32RegClass.getRegisters())) {
603 if (MRI.isPhysRegUsed(Reg)) {
604 HighestVGPRReg = Reg;
605 break;
606 }
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000607 }
Matt Arsenault2738ede2017-08-02 17:15:01 +0000608
609 MCPhysReg HighestSGPRReg = AMDGPU::NoRegister;
610 for (MCPhysReg Reg : reverse(AMDGPU::SGPR_32RegClass.getRegisters())) {
611 if (MRI.isPhysRegUsed(Reg)) {
612 HighestSGPRReg = Reg;
613 break;
614 }
615 }
616
617 // We found the maximum register index. They start at 0, so add one to get the
618 // number of registers.
619 Info.NumVGPR = HighestVGPRReg == AMDGPU::NoRegister ? 0 :
620 TRI.getHWRegIndex(HighestVGPRReg) + 1;
621 Info.NumExplicitSGPR = HighestSGPRReg == AMDGPU::NoRegister ? 0 :
622 TRI.getHWRegIndex(HighestSGPRReg) + 1;
623
624 return Info;
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000625 }
626
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000627 int32_t MaxVGPR = -1;
628 int32_t MaxSGPR = -1;
Matt Arsenault9ba465a2017-11-14 20:33:14 +0000629 uint64_t CalleeFrameSize = 0;
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000630
631 for (const MachineBasicBlock &MBB : MF) {
632 for (const MachineInstr &MI : MBB) {
633 // TODO: Check regmasks? Do they occur anywhere except calls?
634 for (const MachineOperand &MO : MI.operands()) {
635 unsigned Width = 0;
636 bool IsSGPR = false;
637
638 if (!MO.isReg())
639 continue;
640
641 unsigned Reg = MO.getReg();
642 switch (Reg) {
643 case AMDGPU::EXEC:
644 case AMDGPU::EXEC_LO:
645 case AMDGPU::EXEC_HI:
646 case AMDGPU::SCC:
647 case AMDGPU::M0:
648 case AMDGPU::SRC_SHARED_BASE:
649 case AMDGPU::SRC_SHARED_LIMIT:
650 case AMDGPU::SRC_PRIVATE_BASE:
651 case AMDGPU::SRC_PRIVATE_LIMIT:
652 continue;
653
654 case AMDGPU::NoRegister:
Shiva Chen801bf7e2018-05-09 02:42:00 +0000655 assert(MI.isDebugInstr());
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000656 continue;
657
658 case AMDGPU::VCC:
659 case AMDGPU::VCC_LO:
660 case AMDGPU::VCC_HI:
661 Info.UsesVCC = true;
662 continue;
663
664 case AMDGPU::FLAT_SCR:
665 case AMDGPU::FLAT_SCR_LO:
666 case AMDGPU::FLAT_SCR_HI:
667 continue;
668
Dmitry Preobrazhensky3afbd822018-01-10 14:22:19 +0000669 case AMDGPU::XNACK_MASK:
670 case AMDGPU::XNACK_MASK_LO:
671 case AMDGPU::XNACK_MASK_HI:
672 llvm_unreachable("xnack_mask registers should not be used");
673
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000674 case AMDGPU::TBA:
675 case AMDGPU::TBA_LO:
676 case AMDGPU::TBA_HI:
677 case AMDGPU::TMA:
678 case AMDGPU::TMA_LO:
679 case AMDGPU::TMA_HI:
680 llvm_unreachable("trap handler registers should not be used");
681
682 default:
683 break;
684 }
685
686 if (AMDGPU::SReg_32RegClass.contains(Reg)) {
687 assert(!AMDGPU::TTMP_32RegClass.contains(Reg) &&
688 "trap handler registers should not be used");
689 IsSGPR = true;
690 Width = 1;
691 } else if (AMDGPU::VGPR_32RegClass.contains(Reg)) {
692 IsSGPR = false;
693 Width = 1;
694 } else if (AMDGPU::SReg_64RegClass.contains(Reg)) {
695 assert(!AMDGPU::TTMP_64RegClass.contains(Reg) &&
696 "trap handler registers should not be used");
697 IsSGPR = true;
698 Width = 2;
699 } else if (AMDGPU::VReg_64RegClass.contains(Reg)) {
700 IsSGPR = false;
701 Width = 2;
702 } else if (AMDGPU::VReg_96RegClass.contains(Reg)) {
703 IsSGPR = false;
704 Width = 3;
705 } else if (AMDGPU::SReg_128RegClass.contains(Reg)) {
Dmitry Preobrazhensky27134952017-12-22 15:18:06 +0000706 assert(!AMDGPU::TTMP_128RegClass.contains(Reg) &&
707 "trap handler registers should not be used");
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000708 IsSGPR = true;
709 Width = 4;
710 } else if (AMDGPU::VReg_128RegClass.contains(Reg)) {
711 IsSGPR = false;
712 Width = 4;
713 } else if (AMDGPU::SReg_256RegClass.contains(Reg)) {
Dmitry Preobrazhensky27134952017-12-22 15:18:06 +0000714 assert(!AMDGPU::TTMP_256RegClass.contains(Reg) &&
715 "trap handler registers should not be used");
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000716 IsSGPR = true;
717 Width = 8;
718 } else if (AMDGPU::VReg_256RegClass.contains(Reg)) {
719 IsSGPR = false;
720 Width = 8;
721 } else if (AMDGPU::SReg_512RegClass.contains(Reg)) {
Dmitry Preobrazhensky27134952017-12-22 15:18:06 +0000722 assert(!AMDGPU::TTMP_512RegClass.contains(Reg) &&
723 "trap handler registers should not be used");
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000724 IsSGPR = true;
725 Width = 16;
726 } else if (AMDGPU::VReg_512RegClass.contains(Reg)) {
727 IsSGPR = false;
728 Width = 16;
729 } else {
730 llvm_unreachable("Unknown register class");
731 }
732 unsigned HWReg = TRI.getHWRegIndex(Reg);
733 int MaxUsed = HWReg + Width - 1;
734 if (IsSGPR) {
735 MaxSGPR = MaxUsed > MaxSGPR ? MaxUsed : MaxSGPR;
736 } else {
737 MaxVGPR = MaxUsed > MaxVGPR ? MaxUsed : MaxVGPR;
738 }
739 }
740
741 if (MI.isCall()) {
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000742 // Pseudo used just to encode the underlying global. Is there a better
743 // way to track this?
Matt Arsenault71bcbd42017-08-11 20:42:08 +0000744
745 const MachineOperand *CalleeOp
746 = TII->getNamedOperand(MI, AMDGPU::OpName::callee);
747 const Function *Callee = cast<Function>(CalleeOp->getGlobal());
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000748 if (Callee->isDeclaration()) {
749 // If this is a call to an external function, we can't do much. Make
750 // conservative guesses.
751
752 // 48 SGPRs - vcc, - flat_scr, -xnack
753 int MaxSGPRGuess = 47 - getNumExtraSGPRs(ST, true,
754 ST.hasFlatAddressSpace());
755 MaxSGPR = std::max(MaxSGPR, MaxSGPRGuess);
756 MaxVGPR = std::max(MaxVGPR, 23);
757
Matt Arsenault9ba465a2017-11-14 20:33:14 +0000758 CalleeFrameSize = std::max(CalleeFrameSize, UINT64_C(16384));
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000759 Info.UsesVCC = true;
760 Info.UsesFlatScratch = ST.hasFlatAddressSpace();
761 Info.HasDynamicallySizedStack = true;
762 } else {
763 // We force CodeGen to run in SCC order, so the callee's register
764 // usage etc. should be the cumulative usage of all callees.
765 auto I = CallGraphResourceInfo.find(Callee);
766 assert(I != CallGraphResourceInfo.end() &&
767 "callee should have been handled before caller");
768
769 MaxSGPR = std::max(I->second.NumExplicitSGPR - 1, MaxSGPR);
770 MaxVGPR = std::max(I->second.NumVGPR - 1, MaxVGPR);
771 CalleeFrameSize
772 = std::max(I->second.PrivateSegmentSize, CalleeFrameSize);
773 Info.UsesVCC |= I->second.UsesVCC;
774 Info.UsesFlatScratch |= I->second.UsesFlatScratch;
775 Info.HasDynamicallySizedStack |= I->second.HasDynamicallySizedStack;
776 Info.HasRecursion |= I->second.HasRecursion;
777 }
778
779 if (!Callee->doesNotRecurse())
780 Info.HasRecursion = true;
781 }
Matt Arsenault3416b8c2017-06-01 15:05:15 +0000782 }
783 }
784
Matt Arsenault6ed7b9b2017-08-02 01:31:28 +0000785 Info.NumExplicitSGPR = MaxSGPR + 1;
786 Info.NumVGPR = MaxVGPR + 1;
787 Info.PrivateSegmentSize += CalleeFrameSize;
Matt Arsenault3416b8c2017-06-01 15:05:15 +0000788
789 return Info;
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000790}
791
792void AMDGPUAsmPrinter::getSIProgramInfo(SIProgramInfo &ProgInfo,
793 const MachineFunction &MF) {
794 SIFunctionResourceInfo Info = analyzeResourceUsage(MF);
795
796 ProgInfo.NumVGPR = Info.NumVGPR;
797 ProgInfo.NumSGPR = Info.NumExplicitSGPR;
798 ProgInfo.ScratchSize = Info.PrivateSegmentSize;
799 ProgInfo.VCCUsed = Info.UsesVCC;
800 ProgInfo.FlatUsed = Info.UsesFlatScratch;
801 ProgInfo.DynamicCallStack = Info.HasDynamicallySizedStack || Info.HasRecursion;
802
Matt Arsenault9ba465a2017-11-14 20:33:14 +0000803 if (!isUInt<32>(ProgInfo.ScratchSize)) {
Matthias Braunf1caa282017-12-15 22:22:58 +0000804 DiagnosticInfoStackSize DiagStackSize(MF.getFunction(),
Matt Arsenault9ba465a2017-11-14 20:33:14 +0000805 ProgInfo.ScratchSize, DS_Error);
Matthias Braunf1caa282017-12-15 22:22:58 +0000806 MF.getFunction().getContext().diagnose(DiagStackSize);
Matt Arsenault9ba465a2017-11-14 20:33:14 +0000807 }
808
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +0000809 const SISubtarget &STM = MF.getSubtarget<SISubtarget>();
810 const SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>();
811 const SIInstrInfo *TII = STM.getInstrInfo();
812 const SIRegisterInfo *RI = &TII->getRegisterInfo();
813
814 unsigned ExtraSGPRs = getNumExtraSGPRs(STM,
815 ProgInfo.VCCUsed,
816 ProgInfo.FlatUsed);
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +0000817 unsigned ExtraVGPRs = STM.getReservedNumVGPRs(MF);
Konstantin Zhuravlyovf2f3d142016-06-25 03:11:28 +0000818
Marek Olsak91f22fb2016-12-09 19:49:40 +0000819 // Check the addressable register limit before we add ExtraSGPRs.
820 if (STM.getGeneration() >= AMDGPUSubtarget::VOLCANIC_ISLANDS &&
821 !STM.hasSGPRInitBug()) {
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +0000822 unsigned MaxAddressableNumSGPRs = STM.getAddressableNumSGPRs();
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000823 if (ProgInfo.NumSGPR > MaxAddressableNumSGPRs) {
Marek Olsak91f22fb2016-12-09 19:49:40 +0000824 // This can happen due to a compiler bug or when using inline asm.
Matthias Braunf1caa282017-12-15 22:22:58 +0000825 LLVMContext &Ctx = MF.getFunction().getContext();
826 DiagnosticInfoResourceLimit Diag(MF.getFunction(),
Marek Olsak91f22fb2016-12-09 19:49:40 +0000827 "addressable scalar registers",
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000828 ProgInfo.NumSGPR, DS_Error,
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +0000829 DK_ResourceLimit,
830 MaxAddressableNumSGPRs);
Marek Olsak91f22fb2016-12-09 19:49:40 +0000831 Ctx.diagnose(Diag);
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000832 ProgInfo.NumSGPR = MaxAddressableNumSGPRs - 1;
Marek Olsak91f22fb2016-12-09 19:49:40 +0000833 }
834 }
835
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000836 // Account for extra SGPRs and VGPRs reserved for debugger use.
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000837 ProgInfo.NumSGPR += ExtraSGPRs;
838 ProgInfo.NumVGPR += ExtraVGPRs;
Tom Stellard45bb48e2015-06-13 03:28:10 +0000839
Tim Renouffd8d4af2018-04-11 17:18:36 +0000840 // Ensure there are enough SGPRs and VGPRs for wave dispatch, where wave
841 // dispatch registers are function args.
842 unsigned WaveDispatchNumSGPR = 0, WaveDispatchNumVGPR = 0;
843 for (auto &Arg : MF.getFunction().args()) {
844 unsigned NumRegs = (Arg.getType()->getPrimitiveSizeInBits() + 31) / 32;
845 if (Arg.hasAttribute(Attribute::InReg))
846 WaveDispatchNumSGPR += NumRegs;
847 else
848 WaveDispatchNumVGPR += NumRegs;
849 }
850 ProgInfo.NumSGPR = std::max(ProgInfo.NumSGPR, WaveDispatchNumSGPR);
851 ProgInfo.NumVGPR = std::max(ProgInfo.NumVGPR, WaveDispatchNumVGPR);
852
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000853 // Adjust number of registers used to meet default/requested minimum/maximum
854 // number of waves per execution unit request.
855 ProgInfo.NumSGPRsForWavesPerEU = std::max(
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000856 std::max(ProgInfo.NumSGPR, 1u), STM.getMinNumSGPRs(MFI->getMaxWavesPerEU()));
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000857 ProgInfo.NumVGPRsForWavesPerEU = std::max(
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000858 std::max(ProgInfo.NumVGPR, 1u), STM.getMinNumVGPRs(MFI->getMaxWavesPerEU()));
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000859
Marek Olsak91f22fb2016-12-09 19:49:40 +0000860 if (STM.getGeneration() <= AMDGPUSubtarget::SEA_ISLANDS ||
861 STM.hasSGPRInitBug()) {
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +0000862 unsigned MaxAddressableNumSGPRs = STM.getAddressableNumSGPRs();
863 if (ProgInfo.NumSGPR > MaxAddressableNumSGPRs) {
864 // This can happen due to a compiler bug or when using inline asm to use
865 // the registers which are usually reserved for vcc etc.
Matthias Braunf1caa282017-12-15 22:22:58 +0000866 LLVMContext &Ctx = MF.getFunction().getContext();
867 DiagnosticInfoResourceLimit Diag(MF.getFunction(),
Marek Olsak91f22fb2016-12-09 19:49:40 +0000868 "scalar registers",
869 ProgInfo.NumSGPR, DS_Error,
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +0000870 DK_ResourceLimit,
871 MaxAddressableNumSGPRs);
Marek Olsak91f22fb2016-12-09 19:49:40 +0000872 Ctx.diagnose(Diag);
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +0000873 ProgInfo.NumSGPR = MaxAddressableNumSGPRs;
874 ProgInfo.NumSGPRsForWavesPerEU = MaxAddressableNumSGPRs;
Marek Olsak91f22fb2016-12-09 19:49:40 +0000875 }
Matt Arsenault4eae3012016-10-28 20:31:47 +0000876 }
877
878 if (STM.hasSGPRInitBug()) {
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +0000879 ProgInfo.NumSGPR =
880 AMDGPU::IsaInfo::FIXED_NUM_SGPRS_FOR_INIT_BUG;
881 ProgInfo.NumSGPRsForWavesPerEU =
882 AMDGPU::IsaInfo::FIXED_NUM_SGPRS_FOR_INIT_BUG;
Tom Stellard45bb48e2015-06-13 03:28:10 +0000883 }
884
Matt Arsenault161e2b42017-04-18 20:59:40 +0000885 if (MFI->getNumUserSGPRs() > STM.getMaxNumUserSGPRs()) {
Matthias Braunf1caa282017-12-15 22:22:58 +0000886 LLVMContext &Ctx = MF.getFunction().getContext();
887 DiagnosticInfoResourceLimit Diag(MF.getFunction(), "user SGPRs",
Matt Arsenault161e2b42017-04-18 20:59:40 +0000888 MFI->getNumUserSGPRs(), DS_Error);
Matt Arsenaultff982412016-06-20 18:13:04 +0000889 Ctx.diagnose(Diag);
Matt Arsenault41003af2015-11-30 21:16:07 +0000890 }
891
Matt Arsenault52ef4012016-07-26 16:45:58 +0000892 if (MFI->getLDSSize() > static_cast<unsigned>(STM.getLocalMemorySize())) {
Matthias Braunf1caa282017-12-15 22:22:58 +0000893 LLVMContext &Ctx = MF.getFunction().getContext();
894 DiagnosticInfoResourceLimit Diag(MF.getFunction(), "local memory",
Matt Arsenault52ef4012016-07-26 16:45:58 +0000895 MFI->getLDSSize(), DS_Error);
Matt Arsenaultff982412016-06-20 18:13:04 +0000896 Ctx.diagnose(Diag);
Matt Arsenault1c4d0ef2016-04-28 19:37:35 +0000897 }
898
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000899 // SGPRBlocks is actual number of SGPR blocks minus 1.
900 ProgInfo.SGPRBlocks = alignTo(ProgInfo.NumSGPRsForWavesPerEU,
Konstantin Zhuravlyove22fbcb2017-02-08 13:18:40 +0000901 STM.getSGPREncodingGranule());
902 ProgInfo.SGPRBlocks = ProgInfo.SGPRBlocks / STM.getSGPREncodingGranule() - 1;
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000903
904 // VGPRBlocks is actual number of VGPR blocks minus 1.
905 ProgInfo.VGPRBlocks = alignTo(ProgInfo.NumVGPRsForWavesPerEU,
Konstantin Zhuravlyove22fbcb2017-02-08 13:18:40 +0000906 STM.getVGPREncodingGranule());
907 ProgInfo.VGPRBlocks = ProgInfo.VGPRBlocks / STM.getVGPREncodingGranule() - 1;
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +0000908
Konstantin Zhuravlyov9f89ede2017-02-08 14:05:23 +0000909 // Record first reserved VGPR and number of reserved VGPRs.
Matt Arsenaulta3566f22017-04-17 19:48:30 +0000910 ProgInfo.ReservedVGPRFirst = STM.debuggerReserveRegs() ? ProgInfo.NumVGPR : 0;
Konstantin Zhuravlyove03b1d72017-02-08 13:02:33 +0000911 ProgInfo.ReservedVGPRCount = STM.getReservedNumVGPRs(MF);
912
913 // Update DebuggerWavefrontPrivateSegmentOffsetSGPR and
914 // DebuggerPrivateSegmentBufferSGPR fields if "amdgpu-debugger-emit-prologue"
915 // attribute was requested.
916 if (STM.debuggerEmitPrologue()) {
917 ProgInfo.DebuggerWavefrontPrivateSegmentOffsetSGPR =
918 RI->getHWRegIndex(MFI->getScratchWaveOffsetReg());
919 ProgInfo.DebuggerPrivateSegmentBufferSGPR =
920 RI->getHWRegIndex(MFI->getScratchRSrcReg());
921 }
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000922
Tom Stellard45bb48e2015-06-13 03:28:10 +0000923 // Set the value to initialize FP_ROUND and FP_DENORM parts of the mode
924 // register.
925 ProgInfo.FloatMode = getFPMode(MF);
926
Wei Ding3cb2a1e2016-10-19 22:34:49 +0000927 ProgInfo.IEEEMode = STM.enableIEEEBit(MF);
Tom Stellard45bb48e2015-06-13 03:28:10 +0000928
Matt Arsenault7293f982016-01-28 20:53:35 +0000929 // Make clamp modifier on NaN input returns 0.
Matt Arsenault2fdf2a12017-02-21 23:35:48 +0000930 ProgInfo.DX10Clamp = STM.enableDX10Clamp();
Tom Stellard45bb48e2015-06-13 03:28:10 +0000931
Tom Stellard45bb48e2015-06-13 03:28:10 +0000932 unsigned LDSAlignShift;
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000933 if (STM.getGeneration() < SISubtarget::SEA_ISLANDS) {
Tom Stellard45bb48e2015-06-13 03:28:10 +0000934 // LDS is allocated in 64 dword blocks.
935 LDSAlignShift = 8;
936 } else {
937 // LDS is allocated in 128 dword blocks.
938 LDSAlignShift = 9;
939 }
940
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000941 unsigned LDSSpillSize =
Matt Arsenault161e2b42017-04-18 20:59:40 +0000942 MFI->getLDSWaveSpillSize() * MFI->getMaxFlatWorkGroupSize();
Tom Stellard45bb48e2015-06-13 03:28:10 +0000943
Matt Arsenault52ef4012016-07-26 16:45:58 +0000944 ProgInfo.LDSSize = MFI->getLDSSize() + LDSSpillSize;
Tom Stellard45bb48e2015-06-13 03:28:10 +0000945 ProgInfo.LDSBlocks =
Aaron Ballmanef0fe1e2016-03-30 21:30:00 +0000946 alignTo(ProgInfo.LDSSize, 1ULL << LDSAlignShift) >> LDSAlignShift;
Tom Stellard45bb48e2015-06-13 03:28:10 +0000947
948 // Scratch is allocated in 256 dword blocks.
949 unsigned ScratchAlignShift = 10;
950 // We need to program the hardware with the amount of scratch memory that
951 // is used by the entire wave. ProgInfo.ScratchSize is the amount of
952 // scratch memory used per thread.
953 ProgInfo.ScratchBlocks =
Rui Ueyamada00f2f2016-01-14 21:06:47 +0000954 alignTo(ProgInfo.ScratchSize * STM.getWavefrontSize(),
Aaron Ballmanef0fe1e2016-03-30 21:30:00 +0000955 1ULL << ScratchAlignShift) >>
Rui Ueyamada00f2f2016-01-14 21:06:47 +0000956 ScratchAlignShift;
Tom Stellard45bb48e2015-06-13 03:28:10 +0000957
958 ProgInfo.ComputePGMRSrc1 =
959 S_00B848_VGPRS(ProgInfo.VGPRBlocks) |
960 S_00B848_SGPRS(ProgInfo.SGPRBlocks) |
961 S_00B848_PRIORITY(ProgInfo.Priority) |
962 S_00B848_FLOAT_MODE(ProgInfo.FloatMode) |
963 S_00B848_PRIV(ProgInfo.Priv) |
964 S_00B848_DX10_CLAMP(ProgInfo.DX10Clamp) |
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000965 S_00B848_DEBUG_MODE(ProgInfo.DebugMode) |
Tom Stellard45bb48e2015-06-13 03:28:10 +0000966 S_00B848_IEEE_MODE(ProgInfo.IEEEMode);
967
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000968 // 0 = X, 1 = XY, 2 = XYZ
969 unsigned TIDIGCompCnt = 0;
970 if (MFI->hasWorkItemIDZ())
971 TIDIGCompCnt = 2;
972 else if (MFI->hasWorkItemIDY())
973 TIDIGCompCnt = 1;
974
Tom Stellard45bb48e2015-06-13 03:28:10 +0000975 ProgInfo.ComputePGMRSrc2 =
976 S_00B84C_SCRATCH_EN(ProgInfo.ScratchBlocks > 0) |
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000977 S_00B84C_USER_SGPR(MFI->getNumUserSGPRs()) |
Wei Ding205bfdb2017-02-10 02:15:29 +0000978 S_00B84C_TRAP_HANDLER(STM.isTrapHandlerEnabled()) |
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000979 S_00B84C_TGID_X_EN(MFI->hasWorkGroupIDX()) |
980 S_00B84C_TGID_Y_EN(MFI->hasWorkGroupIDY()) |
981 S_00B84C_TGID_Z_EN(MFI->hasWorkGroupIDZ()) |
982 S_00B84C_TG_SIZE_EN(MFI->hasWorkGroupInfo()) |
983 S_00B84C_TIDIG_COMP_CNT(TIDIGCompCnt) |
984 S_00B84C_EXCP_EN_MSB(0) |
Konstantin Zhuravlyov6ccb0762017-05-05 20:13:55 +0000985 // For AMDHSA, LDS_SIZE must be zero, as it is populated by the CP.
986 S_00B84C_LDS_SIZE(STM.isAmdHsaOS() ? 0 : ProgInfo.LDSBlocks) |
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000987 S_00B84C_EXCP_EN(0);
Tom Stellard45bb48e2015-06-13 03:28:10 +0000988}
989
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +0000990static unsigned getRsrcReg(CallingConv::ID CallConv) {
991 switch (CallConv) {
Justin Bognercd1d5aa2016-08-17 20:30:52 +0000992 default: LLVM_FALLTHROUGH;
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +0000993 case CallingConv::AMDGPU_CS: return R_00B848_COMPUTE_PGM_RSRC1;
Tim Renoufef1ae8f2017-09-29 09:51:22 +0000994 case CallingConv::AMDGPU_LS: return R_00B528_SPI_SHADER_PGM_RSRC1_LS;
Marek Olsaka302a7362017-05-02 15:41:10 +0000995 case CallingConv::AMDGPU_HS: return R_00B428_SPI_SHADER_PGM_RSRC1_HS;
Tim Renoufef1ae8f2017-09-29 09:51:22 +0000996 case CallingConv::AMDGPU_ES: return R_00B328_SPI_SHADER_PGM_RSRC1_ES;
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +0000997 case CallingConv::AMDGPU_GS: return R_00B228_SPI_SHADER_PGM_RSRC1_GS;
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +0000998 case CallingConv::AMDGPU_VS: return R_00B128_SPI_SHADER_PGM_RSRC1_VS;
Tim Renoufef1ae8f2017-09-29 09:51:22 +0000999 case CallingConv::AMDGPU_PS: return R_00B028_SPI_SHADER_PGM_RSRC1_PS;
Tom Stellard45bb48e2015-06-13 03:28:10 +00001000 }
1001}
1002
1003void AMDGPUAsmPrinter::EmitProgramInfoSI(const MachineFunction &MF,
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +00001004 const SIProgramInfo &CurrentProgramInfo) {
Matt Arsenault43e92fe2016-06-24 06:30:11 +00001005 const SISubtarget &STM = MF.getSubtarget<SISubtarget>();
Tom Stellard45bb48e2015-06-13 03:28:10 +00001006 const SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>();
Matthias Braunf1caa282017-12-15 22:22:58 +00001007 unsigned RsrcReg = getRsrcReg(MF.getFunction().getCallingConv());
Tom Stellard45bb48e2015-06-13 03:28:10 +00001008
Matthias Braunf1caa282017-12-15 22:22:58 +00001009 if (AMDGPU::isCompute(MF.getFunction().getCallingConv())) {
Tom Stellard45bb48e2015-06-13 03:28:10 +00001010 OutStreamer->EmitIntValue(R_00B848_COMPUTE_PGM_RSRC1, 4);
1011
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +00001012 OutStreamer->EmitIntValue(CurrentProgramInfo.ComputePGMRSrc1, 4);
Tom Stellard45bb48e2015-06-13 03:28:10 +00001013
1014 OutStreamer->EmitIntValue(R_00B84C_COMPUTE_PGM_RSRC2, 4);
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +00001015 OutStreamer->EmitIntValue(CurrentProgramInfo.ComputePGMRSrc2, 4);
Tom Stellard45bb48e2015-06-13 03:28:10 +00001016
1017 OutStreamer->EmitIntValue(R_00B860_COMPUTE_TMPRING_SIZE, 4);
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +00001018 OutStreamer->EmitIntValue(S_00B860_WAVESIZE(CurrentProgramInfo.ScratchBlocks), 4);
Tom Stellard45bb48e2015-06-13 03:28:10 +00001019
1020 // TODO: Should probably note flat usage somewhere. SC emits a "FlatPtr32 =
1021 // 0" comment but I don't see a corresponding field in the register spec.
1022 } else {
1023 OutStreamer->EmitIntValue(RsrcReg, 4);
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +00001024 OutStreamer->EmitIntValue(S_00B028_VGPRS(CurrentProgramInfo.VGPRBlocks) |
1025 S_00B028_SGPRS(CurrentProgramInfo.SGPRBlocks), 4);
Matthias Braunf1caa282017-12-15 22:22:58 +00001026 if (STM.isVGPRSpillingEnabled(MF.getFunction())) {
Tom Stellard45bb48e2015-06-13 03:28:10 +00001027 OutStreamer->EmitIntValue(R_0286E8_SPI_TMPRING_SIZE, 4);
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +00001028 OutStreamer->EmitIntValue(S_0286E8_WAVESIZE(CurrentProgramInfo.ScratchBlocks), 4);
Tom Stellard45bb48e2015-06-13 03:28:10 +00001029 }
Tim Renouf807ecc32018-02-06 13:39:38 +00001030 }
1031
1032 if (MF.getFunction().getCallingConv() == CallingConv::AMDGPU_PS) {
1033 OutStreamer->EmitIntValue(R_00B02C_SPI_SHADER_PGM_RSRC2_PS, 4);
1034 OutStreamer->EmitIntValue(S_00B02C_EXTRA_LDS_SIZE(CurrentProgramInfo.LDSBlocks), 4);
1035 OutStreamer->EmitIntValue(R_0286CC_SPI_PS_INPUT_ENA, 4);
1036 OutStreamer->EmitIntValue(MFI->getPSInputEnable(), 4);
1037 OutStreamer->EmitIntValue(R_0286D0_SPI_PS_INPUT_ADDR, 4);
1038 OutStreamer->EmitIntValue(MFI->getPSInputAddr(), 4);
Tom Stellard45bb48e2015-06-13 03:28:10 +00001039 }
Marek Olsak0532c192016-07-13 17:35:15 +00001040
1041 OutStreamer->EmitIntValue(R_SPILLED_SGPRS, 4);
1042 OutStreamer->EmitIntValue(MFI->getNumSpilledSGPRs(), 4);
1043 OutStreamer->EmitIntValue(R_SPILLED_VGPRS, 4);
1044 OutStreamer->EmitIntValue(MFI->getNumSpilledVGPRs(), 4);
Tom Stellard45bb48e2015-06-13 03:28:10 +00001045}
1046
Tim Renouf72800f02017-10-03 19:03:52 +00001047// This is the equivalent of EmitProgramInfoSI above, but for when the OS type
1048// is AMDPAL. It stores each compute/SPI register setting and other PAL
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +00001049// metadata items into the PALMetadataMap, combining with any provided by the
1050// frontend as LLVM metadata. Once all functions are written, PALMetadataMap is
Tim Renouf72800f02017-10-03 19:03:52 +00001051// then written as a single block in the .note section.
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +00001052void AMDGPUAsmPrinter::EmitPALMetadata(const MachineFunction &MF,
Tim Renouf72800f02017-10-03 19:03:52 +00001053 const SIProgramInfo &CurrentProgramInfo) {
1054 const SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>();
1055 // Given the calling convention, calculate the register number for rsrc1. In
1056 // principle the register number could change in future hardware, but we know
1057 // it is the same for gfx6-9 (except that LS and ES don't exist on gfx9), so
1058 // we can use the same fixed value that .AMDGPU.config has for Mesa. Note
1059 // that we use a register number rather than a byte offset, so we need to
1060 // divide by 4.
Matthias Braunf1caa282017-12-15 22:22:58 +00001061 unsigned Rsrc1Reg = getRsrcReg(MF.getFunction().getCallingConv()) / 4;
Tim Renouf72800f02017-10-03 19:03:52 +00001062 unsigned Rsrc2Reg = Rsrc1Reg + 1;
1063 // Also calculate the PAL metadata key for *S_SCRATCH_SIZE. It can be used
1064 // with a constant offset to access any non-register shader-specific PAL
1065 // metadata key.
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +00001066 unsigned ScratchSizeKey = PALMD::Key::CS_SCRATCH_SIZE;
Matthias Braunf1caa282017-12-15 22:22:58 +00001067 switch (MF.getFunction().getCallingConv()) {
Tim Renouf72800f02017-10-03 19:03:52 +00001068 case CallingConv::AMDGPU_PS:
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +00001069 ScratchSizeKey = PALMD::Key::PS_SCRATCH_SIZE;
Tim Renouf72800f02017-10-03 19:03:52 +00001070 break;
1071 case CallingConv::AMDGPU_VS:
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +00001072 ScratchSizeKey = PALMD::Key::VS_SCRATCH_SIZE;
Tim Renouf72800f02017-10-03 19:03:52 +00001073 break;
1074 case CallingConv::AMDGPU_GS:
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +00001075 ScratchSizeKey = PALMD::Key::GS_SCRATCH_SIZE;
Tim Renouf72800f02017-10-03 19:03:52 +00001076 break;
1077 case CallingConv::AMDGPU_ES:
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +00001078 ScratchSizeKey = PALMD::Key::ES_SCRATCH_SIZE;
Tim Renouf72800f02017-10-03 19:03:52 +00001079 break;
1080 case CallingConv::AMDGPU_HS:
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +00001081 ScratchSizeKey = PALMD::Key::HS_SCRATCH_SIZE;
Tim Renouf72800f02017-10-03 19:03:52 +00001082 break;
1083 case CallingConv::AMDGPU_LS:
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +00001084 ScratchSizeKey = PALMD::Key::LS_SCRATCH_SIZE;
Tim Renouf72800f02017-10-03 19:03:52 +00001085 break;
1086 }
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +00001087 unsigned NumUsedVgprsKey = ScratchSizeKey +
1088 PALMD::Key::VS_NUM_USED_VGPRS - PALMD::Key::VS_SCRATCH_SIZE;
1089 unsigned NumUsedSgprsKey = ScratchSizeKey +
1090 PALMD::Key::VS_NUM_USED_SGPRS - PALMD::Key::VS_SCRATCH_SIZE;
1091 PALMetadataMap[NumUsedVgprsKey] = CurrentProgramInfo.NumVGPRsForWavesPerEU;
1092 PALMetadataMap[NumUsedSgprsKey] = CurrentProgramInfo.NumSGPRsForWavesPerEU;
Matthias Braunf1caa282017-12-15 22:22:58 +00001093 if (AMDGPU::isCompute(MF.getFunction().getCallingConv())) {
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +00001094 PALMetadataMap[Rsrc1Reg] |= CurrentProgramInfo.ComputePGMRSrc1;
1095 PALMetadataMap[Rsrc2Reg] |= CurrentProgramInfo.ComputePGMRSrc2;
Tim Renouf72800f02017-10-03 19:03:52 +00001096 // ScratchSize is in bytes, 16 aligned.
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +00001097 PALMetadataMap[ScratchSizeKey] |=
1098 alignTo(CurrentProgramInfo.ScratchSize, 16);
Tim Renouf72800f02017-10-03 19:03:52 +00001099 } else {
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +00001100 PALMetadataMap[Rsrc1Reg] |= S_00B028_VGPRS(CurrentProgramInfo.VGPRBlocks) |
1101 S_00B028_SGPRS(CurrentProgramInfo.SGPRBlocks);
Tim Renouf72800f02017-10-03 19:03:52 +00001102 if (CurrentProgramInfo.ScratchBlocks > 0)
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +00001103 PALMetadataMap[Rsrc2Reg] |= S_00B84C_SCRATCH_EN(1);
Tim Renouf72800f02017-10-03 19:03:52 +00001104 // ScratchSize is in bytes, 16 aligned.
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +00001105 PALMetadataMap[ScratchSizeKey] |=
1106 alignTo(CurrentProgramInfo.ScratchSize, 16);
Tim Renouf72800f02017-10-03 19:03:52 +00001107 }
Matthias Braunf1caa282017-12-15 22:22:58 +00001108 if (MF.getFunction().getCallingConv() == CallingConv::AMDGPU_PS) {
Konstantin Zhuravlyovc3beb6a2017-10-11 22:41:09 +00001109 PALMetadataMap[Rsrc2Reg] |=
1110 S_00B02C_EXTRA_LDS_SIZE(CurrentProgramInfo.LDSBlocks);
1111 PALMetadataMap[R_0286CC_SPI_PS_INPUT_ENA / 4] |= MFI->getPSInputEnable();
1112 PALMetadataMap[R_0286D0_SPI_PS_INPUT_ADDR / 4] |= MFI->getPSInputAddr();
Tim Renouf72800f02017-10-03 19:03:52 +00001113 }
1114}
1115
Matt Arsenault24ee0782016-02-12 02:40:47 +00001116// This is supposed to be log2(Size)
1117static amd_element_byte_size_t getElementByteSizeValue(unsigned Size) {
1118 switch (Size) {
1119 case 4:
1120 return AMD_ELEMENT_4_BYTES;
1121 case 8:
1122 return AMD_ELEMENT_8_BYTES;
1123 case 16:
1124 return AMD_ELEMENT_16_BYTES;
1125 default:
1126 llvm_unreachable("invalid private_element_size");
1127 }
1128}
1129
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001130void AMDGPUAsmPrinter::getAmdKernelCode(amd_kernel_code_t &Out,
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +00001131 const SIProgramInfo &CurrentProgramInfo,
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001132 const MachineFunction &MF) const {
Tom Stellard45bb48e2015-06-13 03:28:10 +00001133 const SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>();
Matt Arsenault43e92fe2016-06-24 06:30:11 +00001134 const SISubtarget &STM = MF.getSubtarget<SISubtarget>();
Tom Stellard45bb48e2015-06-13 03:28:10 +00001135
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001136 AMDGPU::initDefaultAMDKernelCodeT(Out, STM.getFeatureBits());
Tom Stellard45bb48e2015-06-13 03:28:10 +00001137
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001138 Out.compute_pgm_resource_registers =
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +00001139 CurrentProgramInfo.ComputePGMRSrc1 |
1140 (CurrentProgramInfo.ComputePGMRSrc2 << 32);
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001141 Out.code_properties = AMD_CODE_PROPERTY_IS_PTR64;
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001142
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +00001143 if (CurrentProgramInfo.DynamicCallStack)
1144 Out.code_properties |= AMD_CODE_PROPERTY_IS_DYNAMIC_CALLSTACK;
1145
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001146 AMD_HSA_BITS_SET(Out.code_properties,
Matt Arsenault24ee0782016-02-12 02:40:47 +00001147 AMD_CODE_PROPERTY_PRIVATE_ELEMENT_SIZE,
1148 getElementByteSizeValue(STM.getMaxPrivateElementSize()));
1149
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001150 if (MFI->hasPrivateSegmentBuffer()) {
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001151 Out.code_properties |=
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001152 AMD_CODE_PROPERTY_ENABLE_SGPR_PRIVATE_SEGMENT_BUFFER;
1153 }
1154
1155 if (MFI->hasDispatchPtr())
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001156 Out.code_properties |= AMD_CODE_PROPERTY_ENABLE_SGPR_DISPATCH_PTR;
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001157
1158 if (MFI->hasQueuePtr())
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001159 Out.code_properties |= AMD_CODE_PROPERTY_ENABLE_SGPR_QUEUE_PTR;
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001160
1161 if (MFI->hasKernargSegmentPtr())
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001162 Out.code_properties |= AMD_CODE_PROPERTY_ENABLE_SGPR_KERNARG_SEGMENT_PTR;
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001163
1164 if (MFI->hasDispatchID())
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001165 Out.code_properties |= AMD_CODE_PROPERTY_ENABLE_SGPR_DISPATCH_ID;
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001166
1167 if (MFI->hasFlatScratchInit())
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001168 Out.code_properties |= AMD_CODE_PROPERTY_ENABLE_SGPR_FLAT_SCRATCH_INIT;
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001169
1170 if (MFI->hasGridWorkgroupCountX()) {
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001171 Out.code_properties |=
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001172 AMD_CODE_PROPERTY_ENABLE_SGPR_GRID_WORKGROUP_COUNT_X;
1173 }
1174
1175 if (MFI->hasGridWorkgroupCountY()) {
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001176 Out.code_properties |=
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001177 AMD_CODE_PROPERTY_ENABLE_SGPR_GRID_WORKGROUP_COUNT_Y;
1178 }
1179
1180 if (MFI->hasGridWorkgroupCountZ()) {
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001181 Out.code_properties |=
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001182 AMD_CODE_PROPERTY_ENABLE_SGPR_GRID_WORKGROUP_COUNT_Z;
1183 }
Tom Stellard45bb48e2015-06-13 03:28:10 +00001184
Tom Stellard48f29f22015-11-26 00:43:29 +00001185 if (MFI->hasDispatchPtr())
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001186 Out.code_properties |= AMD_CODE_PROPERTY_ENABLE_SGPR_DISPATCH_PTR;
Tom Stellard48f29f22015-11-26 00:43:29 +00001187
Konstantin Zhuravlyovf2f3d142016-06-25 03:11:28 +00001188 if (STM.debuggerSupported())
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001189 Out.code_properties |= AMD_CODE_PROPERTY_IS_DEBUG_SUPPORTED;
Konstantin Zhuravlyovf2f3d142016-06-25 03:11:28 +00001190
Nicolai Haehnle5b504972016-01-04 23:35:53 +00001191 if (STM.isXNACKEnabled())
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001192 Out.code_properties |= AMD_CODE_PROPERTY_IS_XNACK_SUPPORTED;
Nicolai Haehnle5b504972016-01-04 23:35:53 +00001193
Matt Arsenault52ef4012016-07-26 16:45:58 +00001194 // FIXME: Should use getKernArgSize
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001195 Out.kernarg_segment_byte_size =
Tom Stellard2f3f9852017-01-25 01:25:13 +00001196 STM.getKernArgSegmentSize(MF, MFI->getABIArgOffset());
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +00001197 Out.wavefront_sgpr_count = CurrentProgramInfo.NumSGPR;
1198 Out.workitem_vgpr_count = CurrentProgramInfo.NumVGPR;
1199 Out.workitem_private_segment_byte_size = CurrentProgramInfo.ScratchSize;
1200 Out.workgroup_group_segment_byte_size = CurrentProgramInfo.LDSSize;
1201 Out.reserved_vgpr_first = CurrentProgramInfo.ReservedVGPRFirst;
1202 Out.reserved_vgpr_count = CurrentProgramInfo.ReservedVGPRCount;
Tom Stellard45bb48e2015-06-13 03:28:10 +00001203
Tom Stellard175959e2016-12-06 21:53:10 +00001204 // These alignment values are specified in powers of two, so alignment =
1205 // 2^n. The minimum alignment is 2^4 = 16.
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001206 Out.kernarg_segment_alignment = std::max((size_t)4,
Tom Stellard175959e2016-12-06 21:53:10 +00001207 countTrailingZeros(MFI->getMaxKernArgAlign()));
1208
Konstantin Zhuravlyovf2f3d142016-06-25 03:11:28 +00001209 if (STM.debuggerEmitPrologue()) {
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001210 Out.debug_wavefront_private_segment_offset_sgpr =
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +00001211 CurrentProgramInfo.DebuggerWavefrontPrivateSegmentOffsetSGPR;
Konstantin Zhuravlyovca0e7f62017-03-22 22:54:39 +00001212 Out.debug_private_segment_buffer_sgpr =
Matt Arsenaultb03dd8d2017-05-02 17:14:00 +00001213 CurrentProgramInfo.DebuggerPrivateSegmentBufferSGPR;
Konstantin Zhuravlyovf2f3d142016-06-25 03:11:28 +00001214 }
Tom Stellard45bb48e2015-06-13 03:28:10 +00001215}
1216
Konstantin Zhuravlyova01d8b02017-10-14 19:03:51 +00001217AMDGPU::HSAMD::Kernel::CodeProps::Metadata AMDGPUAsmPrinter::getHSACodeProps(
1218 const MachineFunction &MF,
1219 const SIProgramInfo &ProgramInfo) const {
1220 const SISubtarget &STM = MF.getSubtarget<SISubtarget>();
1221 const SIMachineFunctionInfo &MFI = *MF.getInfo<SIMachineFunctionInfo>();
1222 HSAMD::Kernel::CodeProps::Metadata HSACodeProps;
1223
1224 HSACodeProps.mKernargSegmentSize =
1225 STM.getKernArgSegmentSize(MF, MFI.getABIArgOffset());
1226 HSACodeProps.mGroupSegmentFixedSize = ProgramInfo.LDSSize;
1227 HSACodeProps.mPrivateSegmentFixedSize = ProgramInfo.ScratchSize;
1228 HSACodeProps.mKernargSegmentAlign =
1229 std::max(uint32_t(4), MFI.getMaxKernArgAlign());
1230 HSACodeProps.mWavefrontSize = STM.getWavefrontSize();
1231 HSACodeProps.mNumSGPRs = CurrentProgramInfo.NumSGPR;
1232 HSACodeProps.mNumVGPRs = CurrentProgramInfo.NumVGPR;
Konstantin Zhuravlyov8d5e9e12017-10-18 17:31:09 +00001233 HSACodeProps.mMaxFlatWorkGroupSize = MFI.getMaxFlatWorkGroupSize();
Konstantin Zhuravlyova01d8b02017-10-14 19:03:51 +00001234 HSACodeProps.mIsDynamicCallStack = ProgramInfo.DynamicCallStack;
1235 HSACodeProps.mIsXNACKEnabled = STM.isXNACKEnabled();
Konstantin Zhuravlyov06ae4ec2017-11-28 17:51:08 +00001236 HSACodeProps.mNumSpilledSGPRs = MFI.getNumSpilledSGPRs();
1237 HSACodeProps.mNumSpilledVGPRs = MFI.getNumSpilledVGPRs();
Konstantin Zhuravlyova01d8b02017-10-14 19:03:51 +00001238
1239 return HSACodeProps;
1240}
1241
1242AMDGPU::HSAMD::Kernel::DebugProps::Metadata AMDGPUAsmPrinter::getHSADebugProps(
1243 const MachineFunction &MF,
1244 const SIProgramInfo &ProgramInfo) const {
1245 const SISubtarget &STM = MF.getSubtarget<SISubtarget>();
1246 HSAMD::Kernel::DebugProps::Metadata HSADebugProps;
1247
1248 if (!STM.debuggerSupported())
1249 return HSADebugProps;
1250
1251 HSADebugProps.mDebuggerABIVersion.push_back(1);
1252 HSADebugProps.mDebuggerABIVersion.push_back(0);
1253 HSADebugProps.mReservedNumVGPRs = ProgramInfo.ReservedVGPRCount;
1254 HSADebugProps.mReservedFirstVGPR = ProgramInfo.ReservedVGPRFirst;
1255
1256 if (STM.debuggerEmitPrologue()) {
1257 HSADebugProps.mPrivateSegmentBufferSGPR =
1258 ProgramInfo.DebuggerPrivateSegmentBufferSGPR;
1259 HSADebugProps.mWavefrontPrivateSegmentOffsetSGPR =
1260 ProgramInfo.DebuggerWavefrontPrivateSegmentOffsetSGPR;
1261 }
1262
1263 return HSADebugProps;
1264}
1265
Tom Stellard45bb48e2015-06-13 03:28:10 +00001266bool AMDGPUAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
1267 unsigned AsmVariant,
1268 const char *ExtraCode, raw_ostream &O) {
Matt Arsenault36cd1852017-08-09 20:09:35 +00001269 // First try the generic code, which knows about modifiers like 'c' and 'n'.
1270 if (!AsmPrinter::PrintAsmOperand(MI, OpNo, AsmVariant, ExtraCode, O))
1271 return false;
1272
Tom Stellard45bb48e2015-06-13 03:28:10 +00001273 if (ExtraCode && ExtraCode[0]) {
1274 if (ExtraCode[1] != 0)
1275 return true; // Unknown modifier.
1276
1277 switch (ExtraCode[0]) {
Tom Stellard45bb48e2015-06-13 03:28:10 +00001278 case 'r':
1279 break;
Matt Arsenault36cd1852017-08-09 20:09:35 +00001280 default:
1281 return true;
Tom Stellard45bb48e2015-06-13 03:28:10 +00001282 }
1283 }
1284
Matt Arsenault36cd1852017-08-09 20:09:35 +00001285 // TODO: Should be able to support other operand types like globals.
1286 const MachineOperand &MO = MI->getOperand(OpNo);
1287 if (MO.isReg()) {
1288 AMDGPUInstPrinter::printRegOperand(MO.getReg(), O,
1289 *MF->getSubtarget().getRegisterInfo());
1290 return false;
1291 }
1292
1293 return true;
Tom Stellard45bb48e2015-06-13 03:28:10 +00001294}