LLVM 20.0.0git
AMDGPUBaseInfo.cpp
Go to the documentation of this file.
1//===- AMDGPUBaseInfo.cpp - AMDGPU Base encoding information --------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "AMDGPUBaseInfo.h"
10#include "AMDGPU.h"
11#include "AMDGPUAsmUtils.h"
12#include "AMDKernelCodeT.h"
17#include "llvm/IR/Attributes.h"
18#include "llvm/IR/Constants.h"
19#include "llvm/IR/Function.h"
20#include "llvm/IR/GlobalValue.h"
21#include "llvm/IR/IntrinsicsAMDGPU.h"
22#include "llvm/IR/IntrinsicsR600.h"
23#include "llvm/IR/LLVMContext.h"
24#include "llvm/MC/MCInstrInfo.h"
30#include <optional>
31
32#define GET_INSTRINFO_NAMED_OPS
33#define GET_INSTRMAP_INFO
34#include "AMDGPUGenInstrInfo.inc"
35
37 "amdhsa-code-object-version", llvm::cl::Hidden,
39 llvm::cl::desc("Set default AMDHSA Code Object Version (module flag "
40 "or asm directive still take priority if present)"));
41
42namespace {
43
44/// \returns Bit mask for given bit \p Shift and bit \p Width.
45unsigned getBitMask(unsigned Shift, unsigned Width) {
46 return ((1 << Width) - 1) << Shift;
47}
48
49/// Packs \p Src into \p Dst for given bit \p Shift and bit \p Width.
50///
51/// \returns Packed \p Dst.
52unsigned packBits(unsigned Src, unsigned Dst, unsigned Shift, unsigned Width) {
53 unsigned Mask = getBitMask(Shift, Width);
54 return ((Src << Shift) & Mask) | (Dst & ~Mask);
55}
56
57/// Unpacks bits from \p Src for given bit \p Shift and bit \p Width.
58///
59/// \returns Unpacked bits.
60unsigned unpackBits(unsigned Src, unsigned Shift, unsigned Width) {
61 return (Src & getBitMask(Shift, Width)) >> Shift;
62}
63
64/// \returns Vmcnt bit shift (lower bits).
65unsigned getVmcntBitShiftLo(unsigned VersionMajor) {
66 return VersionMajor >= 11 ? 10 : 0;
67}
68
69/// \returns Vmcnt bit width (lower bits).
70unsigned getVmcntBitWidthLo(unsigned VersionMajor) {
71 return VersionMajor >= 11 ? 6 : 4;
72}
73
74/// \returns Expcnt bit shift.
75unsigned getExpcntBitShift(unsigned VersionMajor) {
76 return VersionMajor >= 11 ? 0 : 4;
77}
78
79/// \returns Expcnt bit width.
80unsigned getExpcntBitWidth(unsigned VersionMajor) { return 3; }
81
82/// \returns Lgkmcnt bit shift.
83unsigned getLgkmcntBitShift(unsigned VersionMajor) {
84 return VersionMajor >= 11 ? 4 : 8;
85}
86
87/// \returns Lgkmcnt bit width.
88unsigned getLgkmcntBitWidth(unsigned VersionMajor) {
89 return VersionMajor >= 10 ? 6 : 4;
90}
91
92/// \returns Vmcnt bit shift (higher bits).
93unsigned getVmcntBitShiftHi(unsigned VersionMajor) { return 14; }
94
95/// \returns Vmcnt bit width (higher bits).
96unsigned getVmcntBitWidthHi(unsigned VersionMajor) {
97 return (VersionMajor == 9 || VersionMajor == 10) ? 2 : 0;
98}
99
100/// \returns Loadcnt bit width
101unsigned getLoadcntBitWidth(unsigned VersionMajor) {
102 return VersionMajor >= 12 ? 6 : 0;
103}
104
105/// \returns Samplecnt bit width.
106unsigned getSamplecntBitWidth(unsigned VersionMajor) {
107 return VersionMajor >= 12 ? 6 : 0;
108}
109
110/// \returns Bvhcnt bit width.
111unsigned getBvhcntBitWidth(unsigned VersionMajor) {
112 return VersionMajor >= 12 ? 3 : 0;
113}
114
115/// \returns Dscnt bit width.
116unsigned getDscntBitWidth(unsigned VersionMajor) {
117 return VersionMajor >= 12 ? 6 : 0;
118}
119
120/// \returns Dscnt bit shift in combined S_WAIT instructions.
121unsigned getDscntBitShift(unsigned VersionMajor) { return 0; }
122
123/// \returns Storecnt or Vscnt bit width, depending on VersionMajor.
124unsigned getStorecntBitWidth(unsigned VersionMajor) {
125 return VersionMajor >= 10 ? 6 : 0;
126}
127
128/// \returns Kmcnt bit width.
129unsigned getKmcntBitWidth(unsigned VersionMajor) {
130 return VersionMajor >= 12 ? 5 : 0;
131}
132
133/// \returns shift for Loadcnt/Storecnt in combined S_WAIT instructions.
134unsigned getLoadcntStorecntBitShift(unsigned VersionMajor) {
135 return VersionMajor >= 12 ? 8 : 0;
136}
137
138/// \returns VmVsrc bit width
139inline unsigned getVmVsrcBitWidth() { return 3; }
140
141/// \returns VmVsrc bit shift
142inline unsigned getVmVsrcBitShift() { return 2; }
143
144/// \returns VaVdst bit width
145inline unsigned getVaVdstBitWidth() { return 4; }
146
147/// \returns VaVdst bit shift
148inline unsigned getVaVdstBitShift() { return 12; }
149
150/// \returns SaSdst bit width
151inline unsigned getSaSdstBitWidth() { return 1; }
152
153/// \returns SaSdst bit shift
154inline unsigned getSaSdstBitShift() { return 0; }
155
156} // end anonymous namespace
157
158namespace llvm {
159
160namespace AMDGPU {
161
162/// \returns true if the target supports signed immediate offset for SMRD
163/// instructions.
165 return isGFX9Plus(ST);
166}
167
168/// \returns True if \p STI is AMDHSA.
169bool isHsaAbi(const MCSubtargetInfo &STI) {
170 return STI.getTargetTriple().getOS() == Triple::AMDHSA;
171}
172
174 if (auto Ver = mdconst::extract_or_null<ConstantInt>(
175 M.getModuleFlag("amdhsa_code_object_version"))) {
176 return (unsigned)Ver->getZExtValue() / 100;
177 }
178
180}
181
184}
185
186unsigned getAMDHSACodeObjectVersion(unsigned ABIVersion) {
187 switch (ABIVersion) {
189 return 4;
191 return 5;
193 return 6;
194 default:
196 }
197}
198
199uint8_t getELFABIVersion(const Triple &T, unsigned CodeObjectVersion) {
200 if (T.getOS() != Triple::AMDHSA)
201 return 0;
202
203 switch (CodeObjectVersion) {
204 case 4:
206 case 5:
208 case 6:
210 default:
211 report_fatal_error("Unsupported AMDHSA Code Object Version " +
212 Twine(CodeObjectVersion));
213 }
214}
215
216unsigned getMultigridSyncArgImplicitArgPosition(unsigned CodeObjectVersion) {
217 switch (CodeObjectVersion) {
218 case AMDHSA_COV4:
219 return 48;
220 case AMDHSA_COV5:
221 case AMDHSA_COV6:
222 default:
224 }
225}
226
227
228// FIXME: All such magic numbers about the ABI should be in a
229// central TD file.
230unsigned getHostcallImplicitArgPosition(unsigned CodeObjectVersion) {
231 switch (CodeObjectVersion) {
232 case AMDHSA_COV4:
233 return 24;
234 case AMDHSA_COV5:
235 case AMDHSA_COV6:
236 default:
238 }
239}
240
241unsigned getDefaultQueueImplicitArgPosition(unsigned CodeObjectVersion) {
242 switch (CodeObjectVersion) {
243 case AMDHSA_COV4:
244 return 32;
245 case AMDHSA_COV5:
246 case AMDHSA_COV6:
247 default:
249 }
250}
251
252unsigned getCompletionActionImplicitArgPosition(unsigned CodeObjectVersion) {
253 switch (CodeObjectVersion) {
254 case AMDHSA_COV4:
255 return 40;
256 case AMDHSA_COV5:
257 case AMDHSA_COV6:
258 default:
260 }
261}
262
263#define GET_MIMGBaseOpcodesTable_IMPL
264#define GET_MIMGDimInfoTable_IMPL
265#define GET_MIMGInfoTable_IMPL
266#define GET_MIMGLZMappingTable_IMPL
267#define GET_MIMGMIPMappingTable_IMPL
268#define GET_MIMGBiasMappingTable_IMPL
269#define GET_MIMGOffsetMappingTable_IMPL
270#define GET_MIMGG16MappingTable_IMPL
271#define GET_MAIInstInfoTable_IMPL
272#include "AMDGPUGenSearchableTables.inc"
273
274int getMIMGOpcode(unsigned BaseOpcode, unsigned MIMGEncoding,
275 unsigned VDataDwords, unsigned VAddrDwords) {
276 const MIMGInfo *Info = getMIMGOpcodeHelper(BaseOpcode, MIMGEncoding,
277 VDataDwords, VAddrDwords);
278 return Info ? Info->Opcode : -1;
279}
280
282 const MIMGInfo *Info = getMIMGInfo(Opc);
283 return Info ? getMIMGBaseOpcodeInfo(Info->BaseOpcode) : nullptr;
284}
285
286int getMaskedMIMGOp(unsigned Opc, unsigned NewChannels) {
287 const MIMGInfo *OrigInfo = getMIMGInfo(Opc);
288 const MIMGInfo *NewInfo =
289 getMIMGOpcodeHelper(OrigInfo->BaseOpcode, OrigInfo->MIMGEncoding,
290 NewChannels, OrigInfo->VAddrDwords);
291 return NewInfo ? NewInfo->Opcode : -1;
292}
293
294unsigned getAddrSizeMIMGOp(const MIMGBaseOpcodeInfo *BaseOpcode,
295 const MIMGDimInfo *Dim, bool IsA16,
296 bool IsG16Supported) {
297 unsigned AddrWords = BaseOpcode->NumExtraArgs;
298 unsigned AddrComponents = (BaseOpcode->Coordinates ? Dim->NumCoords : 0) +
299 (BaseOpcode->LodOrClampOrMip ? 1 : 0);
300 if (IsA16)
301 AddrWords += divideCeil(AddrComponents, 2);
302 else
303 AddrWords += AddrComponents;
304
305 // Note: For subtargets that support A16 but not G16, enabling A16 also
306 // enables 16 bit gradients.
307 // For subtargets that support A16 (operand) and G16 (done with a different
308 // instruction encoding), they are independent.
309
310 if (BaseOpcode->Gradients) {
311 if ((IsA16 && !IsG16Supported) || BaseOpcode->G16)
312 // There are two gradients per coordinate, we pack them separately.
313 // For the 3d case,
314 // we get (dy/du, dx/du) (-, dz/du) (dy/dv, dx/dv) (-, dz/dv)
315 AddrWords += alignTo<2>(Dim->NumGradients / 2);
316 else
317 AddrWords += Dim->NumGradients;
318 }
319 return AddrWords;
320}
321
322struct MUBUFInfo {
325 uint8_t elements;
330 bool tfe;
331};
332
333struct MTBUFInfo {
336 uint8_t elements;
340};
341
342struct SMInfo {
345};
346
347struct VOPInfo {
350};
351
354};
355
358};
359
362};
363
368};
369
370struct VOPDInfo {
375};
376
380};
381
386};
387
388#define GET_MTBUFInfoTable_DECL
389#define GET_MTBUFInfoTable_IMPL
390#define GET_MUBUFInfoTable_DECL
391#define GET_MUBUFInfoTable_IMPL
392#define GET_SingleUseExceptionTable_DECL
393#define GET_SingleUseExceptionTable_IMPL
394#define GET_SMInfoTable_DECL
395#define GET_SMInfoTable_IMPL
396#define GET_VOP1InfoTable_DECL
397#define GET_VOP1InfoTable_IMPL
398#define GET_VOP2InfoTable_DECL
399#define GET_VOP2InfoTable_IMPL
400#define GET_VOP3InfoTable_DECL
401#define GET_VOP3InfoTable_IMPL
402#define GET_VOPC64DPPTable_DECL
403#define GET_VOPC64DPPTable_IMPL
404#define GET_VOPC64DPP8Table_DECL
405#define GET_VOPC64DPP8Table_IMPL
406#define GET_VOPCAsmOnlyInfoTable_DECL
407#define GET_VOPCAsmOnlyInfoTable_IMPL
408#define GET_VOP3CAsmOnlyInfoTable_DECL
409#define GET_VOP3CAsmOnlyInfoTable_IMPL
410#define GET_VOPDComponentTable_DECL
411#define GET_VOPDComponentTable_IMPL
412#define GET_VOPDPairs_DECL
413#define GET_VOPDPairs_IMPL
414#define GET_VOPTrue16Table_DECL
415#define GET_VOPTrue16Table_IMPL
416#define GET_WMMAOpcode2AddrMappingTable_DECL
417#define GET_WMMAOpcode2AddrMappingTable_IMPL
418#define GET_WMMAOpcode3AddrMappingTable_DECL
419#define GET_WMMAOpcode3AddrMappingTable_IMPL
420#include "AMDGPUGenSearchableTables.inc"
421
422int getMTBUFBaseOpcode(unsigned Opc) {
423 const MTBUFInfo *Info = getMTBUFInfoFromOpcode(Opc);
424 return Info ? Info->BaseOpcode : -1;
425}
426
427int getMTBUFOpcode(unsigned BaseOpc, unsigned Elements) {
428 const MTBUFInfo *Info = getMTBUFInfoFromBaseOpcodeAndElements(BaseOpc, Elements);
429 return Info ? Info->Opcode : -1;
430}
431
432int getMTBUFElements(unsigned Opc) {
433 const MTBUFInfo *Info = getMTBUFOpcodeHelper(Opc);
434 return Info ? Info->elements : 0;
435}
436
437bool getMTBUFHasVAddr(unsigned Opc) {
438 const MTBUFInfo *Info = getMTBUFOpcodeHelper(Opc);
439 return Info ? Info->has_vaddr : false;
440}
441
442bool getMTBUFHasSrsrc(unsigned Opc) {
443 const MTBUFInfo *Info = getMTBUFOpcodeHelper(Opc);
444 return Info ? Info->has_srsrc : false;
445}
446
447bool getMTBUFHasSoffset(unsigned Opc) {
448 const MTBUFInfo *Info = getMTBUFOpcodeHelper(Opc);
449 return Info ? Info->has_soffset : false;
450}
451
452int getMUBUFBaseOpcode(unsigned Opc) {
453 const MUBUFInfo *Info = getMUBUFInfoFromOpcode(Opc);
454 return Info ? Info->BaseOpcode : -1;
455}
456
457int getMUBUFOpcode(unsigned BaseOpc, unsigned Elements) {
458 const MUBUFInfo *Info = getMUBUFInfoFromBaseOpcodeAndElements(BaseOpc, Elements);
459 return Info ? Info->Opcode : -1;
460}
461
462int getMUBUFElements(unsigned Opc) {
463 const MUBUFInfo *Info = getMUBUFOpcodeHelper(Opc);
464 return Info ? Info->elements : 0;
465}
466
467bool getMUBUFHasVAddr(unsigned Opc) {
468 const MUBUFInfo *Info = getMUBUFOpcodeHelper(Opc);
469 return Info ? Info->has_vaddr : false;
470}
471
472bool getMUBUFHasSrsrc(unsigned Opc) {
473 const MUBUFInfo *Info = getMUBUFOpcodeHelper(Opc);
474 return Info ? Info->has_srsrc : false;
475}
476
477bool getMUBUFHasSoffset(unsigned Opc) {
478 const MUBUFInfo *Info = getMUBUFOpcodeHelper(Opc);
479 return Info ? Info->has_soffset : false;
480}
481
482bool getMUBUFIsBufferInv(unsigned Opc) {
483 const MUBUFInfo *Info = getMUBUFOpcodeHelper(Opc);
484 return Info ? Info->IsBufferInv : false;
485}
486
487bool getMUBUFTfe(unsigned Opc) {
488 const MUBUFInfo *Info = getMUBUFOpcodeHelper(Opc);
489 return Info ? Info->tfe : false;
490}
491
492bool getSMEMIsBuffer(unsigned Opc) {
493 const SMInfo *Info = getSMEMOpcodeHelper(Opc);
494 return Info ? Info->IsBuffer : false;
495}
496
497bool getVOP1IsSingle(unsigned Opc) {
498 const VOPInfo *Info = getVOP1OpcodeHelper(Opc);
499 return Info ? Info->IsSingle : true;
500}
501
502bool getVOP2IsSingle(unsigned Opc) {
503 const VOPInfo *Info = getVOP2OpcodeHelper(Opc);
504 return Info ? Info->IsSingle : true;
505}
506
507bool getVOP3IsSingle(unsigned Opc) {
508 const VOPInfo *Info = getVOP3OpcodeHelper(Opc);
509 return Info ? Info->IsSingle : true;
510}
511
512bool isVOPC64DPP(unsigned Opc) {
513 return isVOPC64DPPOpcodeHelper(Opc) || isVOPC64DPP8OpcodeHelper(Opc);
514}
515
516bool isVOPCAsmOnly(unsigned Opc) { return isVOPCAsmOnlyOpcodeHelper(Opc); }
517
518bool getMAIIsDGEMM(unsigned Opc) {
519 const MAIInstInfo *Info = getMAIInstInfoHelper(Opc);
520 return Info ? Info->is_dgemm : false;
521}
522
523bool getMAIIsGFX940XDL(unsigned Opc) {
524 const MAIInstInfo *Info = getMAIInstInfoHelper(Opc);
525 return Info ? Info->is_gfx940_xdl : false;
526}
527
529 if (ST.hasFeature(AMDGPU::FeatureGFX12Insts))
531 if (ST.hasFeature(AMDGPU::FeatureGFX11Insts))
533 llvm_unreachable("Subtarget generation does not support VOPD!");
534}
535
536CanBeVOPD getCanBeVOPD(unsigned Opc) {
537 const VOPDComponentInfo *Info = getVOPDComponentHelper(Opc);
538 if (Info)
539 return {Info->CanBeVOPDX, true};
540 return {false, false};
541}
542
543unsigned getVOPDOpcode(unsigned Opc) {
544 const VOPDComponentInfo *Info = getVOPDComponentHelper(Opc);
545 return Info ? Info->VOPDOp : ~0u;
546}
547
548bool isVOPD(unsigned Opc) {
549 return AMDGPU::hasNamedOperand(Opc, AMDGPU::OpName::src0X);
550}
551
552bool isMAC(unsigned Opc) {
553 return Opc == AMDGPU::V_MAC_F32_e64_gfx6_gfx7 ||
554 Opc == AMDGPU::V_MAC_F32_e64_gfx10 ||
555 Opc == AMDGPU::V_MAC_F32_e64_vi ||
556 Opc == AMDGPU::V_MAC_LEGACY_F32_e64_gfx6_gfx7 ||
557 Opc == AMDGPU::V_MAC_LEGACY_F32_e64_gfx10 ||
558 Opc == AMDGPU::V_MAC_F16_e64_vi ||
559 Opc == AMDGPU::V_FMAC_F64_e64_gfx90a ||
560 Opc == AMDGPU::V_FMAC_F32_e64_gfx10 ||
561 Opc == AMDGPU::V_FMAC_F32_e64_gfx11 ||
562 Opc == AMDGPU::V_FMAC_F32_e64_gfx12 ||
563 Opc == AMDGPU::V_FMAC_F32_e64_vi ||
564 Opc == AMDGPU::V_FMAC_LEGACY_F32_e64_gfx10 ||
565 Opc == AMDGPU::V_FMAC_DX9_ZERO_F32_e64_gfx11 ||
566 Opc == AMDGPU::V_FMAC_F16_e64_gfx10 ||
567 Opc == AMDGPU::V_FMAC_F16_t16_e64_gfx11 ||
568 Opc == AMDGPU::V_FMAC_F16_t16_e64_gfx12 ||
569 Opc == AMDGPU::V_DOT2C_F32_F16_e64_vi ||
570 Opc == AMDGPU::V_DOT2C_I32_I16_e64_vi ||
571 Opc == AMDGPU::V_DOT4C_I32_I8_e64_vi ||
572 Opc == AMDGPU::V_DOT8C_I32_I4_e64_vi;
573}
574
575bool isPermlane16(unsigned Opc) {
576 return Opc == AMDGPU::V_PERMLANE16_B32_gfx10 ||
577 Opc == AMDGPU::V_PERMLANEX16_B32_gfx10 ||
578 Opc == AMDGPU::V_PERMLANE16_B32_e64_gfx11 ||
579 Opc == AMDGPU::V_PERMLANEX16_B32_e64_gfx11 ||
580 Opc == AMDGPU::V_PERMLANE16_B32_e64_gfx12 ||
581 Opc == AMDGPU::V_PERMLANEX16_B32_e64_gfx12 ||
582 Opc == AMDGPU::V_PERMLANE16_VAR_B32_e64_gfx12 ||
583 Opc == AMDGPU::V_PERMLANEX16_VAR_B32_e64_gfx12;
584}
585
586bool isCvt_F32_Fp8_Bf8_e64(unsigned Opc) {
587 return Opc == AMDGPU::V_CVT_F32_BF8_e64_gfx12 ||
588 Opc == AMDGPU::V_CVT_F32_FP8_e64_gfx12 ||
589 Opc == AMDGPU::V_CVT_F32_BF8_e64_dpp_gfx12 ||
590 Opc == AMDGPU::V_CVT_F32_FP8_e64_dpp_gfx12 ||
591 Opc == AMDGPU::V_CVT_F32_BF8_e64_dpp8_gfx12 ||
592 Opc == AMDGPU::V_CVT_F32_FP8_e64_dpp8_gfx12 ||
593 Opc == AMDGPU::V_CVT_PK_F32_BF8_e64_gfx12 ||
594 Opc == AMDGPU::V_CVT_PK_F32_FP8_e64_gfx12;
595}
596
597bool isGenericAtomic(unsigned Opc) {
598 return Opc == AMDGPU::G_AMDGPU_BUFFER_ATOMIC_SWAP ||
599 Opc == AMDGPU::G_AMDGPU_BUFFER_ATOMIC_ADD ||
600 Opc == AMDGPU::G_AMDGPU_BUFFER_ATOMIC_SUB ||
601 Opc == AMDGPU::G_AMDGPU_BUFFER_ATOMIC_SMIN ||
602 Opc == AMDGPU::G_AMDGPU_BUFFER_ATOMIC_UMIN ||
603 Opc == AMDGPU::G_AMDGPU_BUFFER_ATOMIC_SMAX ||
604 Opc == AMDGPU::G_AMDGPU_BUFFER_ATOMIC_UMAX ||
605 Opc == AMDGPU::G_AMDGPU_BUFFER_ATOMIC_AND ||
606 Opc == AMDGPU::G_AMDGPU_BUFFER_ATOMIC_OR ||
607 Opc == AMDGPU::G_AMDGPU_BUFFER_ATOMIC_XOR ||
608 Opc == AMDGPU::G_AMDGPU_BUFFER_ATOMIC_INC ||
609 Opc == AMDGPU::G_AMDGPU_BUFFER_ATOMIC_DEC ||
610 Opc == AMDGPU::G_AMDGPU_BUFFER_ATOMIC_FADD ||
611 Opc == AMDGPU::G_AMDGPU_BUFFER_ATOMIC_FMIN ||
612 Opc == AMDGPU::G_AMDGPU_BUFFER_ATOMIC_FMAX ||
613 Opc == AMDGPU::G_AMDGPU_BUFFER_ATOMIC_CMPSWAP ||
614 Opc == AMDGPU::G_AMDGPU_ATOMIC_CMPXCHG;
615}
616
617bool isTrue16Inst(unsigned Opc) {
618 const VOPTrue16Info *Info = getTrue16OpcodeHelper(Opc);
619 return Info ? Info->IsTrue16 : false;
620}
621
623 const SingleUseExceptionInfo *Info = getSingleUseExceptionHelper(Opc);
624 return Info && Info->IsInvalidSingleUseConsumer;
625}
626
628 const SingleUseExceptionInfo *Info = getSingleUseExceptionHelper(Opc);
629 return Info && Info->IsInvalidSingleUseProducer;
630}
631
632unsigned mapWMMA2AddrTo3AddrOpcode(unsigned Opc) {
633 const WMMAOpcodeMappingInfo *Info = getWMMAMappingInfoFrom2AddrOpcode(Opc);
634 return Info ? Info->Opcode3Addr : ~0u;
635}
636
637unsigned mapWMMA3AddrTo2AddrOpcode(unsigned Opc) {
638 const WMMAOpcodeMappingInfo *Info = getWMMAMappingInfoFrom3AddrOpcode(Opc);
639 return Info ? Info->Opcode2Addr : ~0u;
640}
641
642// Wrapper for Tablegen'd function. enum Subtarget is not defined in any
643// header files, so we need to wrap it in a function that takes unsigned
644// instead.
645int getMCOpcode(uint16_t Opcode, unsigned Gen) {
646 return getMCOpcodeGen(Opcode, static_cast<Subtarget>(Gen));
647}
648
649int getVOPDFull(unsigned OpX, unsigned OpY, unsigned EncodingFamily) {
650 const VOPDInfo *Info =
651 getVOPDInfoFromComponentOpcodes(OpX, OpY, EncodingFamily);
652 return Info ? Info->Opcode : -1;
653}
654
655std::pair<unsigned, unsigned> getVOPDComponents(unsigned VOPDOpcode) {
656 const VOPDInfo *Info = getVOPDOpcodeHelper(VOPDOpcode);
657 assert(Info);
658 auto OpX = getVOPDBaseFromComponent(Info->OpX);
659 auto OpY = getVOPDBaseFromComponent(Info->OpY);
660 assert(OpX && OpY);
661 return {OpX->BaseVOP, OpY->BaseVOP};
662}
663
664namespace VOPD {
665
668
671 auto TiedIdx = OpDesc.getOperandConstraint(Component::SRC2, MCOI::TIED_TO);
672 assert(TiedIdx == -1 || TiedIdx == Component::DST);
673 HasSrc2Acc = TiedIdx != -1;
674
675 SrcOperandsNum = OpDesc.getNumOperands() - OpDesc.getNumDefs();
676 assert(SrcOperandsNum <= Component::MAX_SRC_NUM);
677
678 auto OperandsNum = OpDesc.getNumOperands();
679 unsigned CompOprIdx;
680 for (CompOprIdx = Component::SRC1; CompOprIdx < OperandsNum; ++CompOprIdx) {
681 if (OpDesc.operands()[CompOprIdx].OperandType == AMDGPU::OPERAND_KIMM32) {
682 MandatoryLiteralIdx = CompOprIdx;
683 break;
684 }
685 }
686}
687
688unsigned ComponentInfo::getIndexInParsedOperands(unsigned CompOprIdx) const {
689 assert(CompOprIdx < Component::MAX_OPR_NUM);
690
691 if (CompOprIdx == Component::DST)
693
694 auto CompSrcIdx = CompOprIdx - Component::DST_NUM;
695 if (CompSrcIdx < getCompParsedSrcOperandsNum())
696 return getIndexOfSrcInParsedOperands(CompSrcIdx);
697
698 // The specified operand does not exist.
699 return 0;
700}
701
703 std::function<unsigned(unsigned, unsigned)> GetRegIdx, bool SkipSrc) const {
704
705 auto OpXRegs = getRegIndices(ComponentIndex::X, GetRegIdx);
706 auto OpYRegs = getRegIndices(ComponentIndex::Y, GetRegIdx);
707
708 const unsigned CompOprNum =
710 unsigned CompOprIdx;
711 for (CompOprIdx = 0; CompOprIdx < CompOprNum; ++CompOprIdx) {
712 unsigned BanksMasks = VOPD_VGPR_BANK_MASKS[CompOprIdx];
713 if (OpXRegs[CompOprIdx] && OpYRegs[CompOprIdx] &&
714 ((OpXRegs[CompOprIdx] & BanksMasks) ==
715 (OpYRegs[CompOprIdx] & BanksMasks)))
716 return CompOprIdx;
717 }
718
719 return {};
720}
721
722// Return an array of VGPR registers [DST,SRC0,SRC1,SRC2] used
723// by the specified component. If an operand is unused
724// or is not a VGPR, the corresponding value is 0.
725//
726// GetRegIdx(Component, MCOperandIdx) must return a VGPR register index
727// for the specified component and MC operand. The callback must return 0
728// if the operand is not a register or not a VGPR.
729InstInfo::RegIndices InstInfo::getRegIndices(
730 unsigned CompIdx,
731 std::function<unsigned(unsigned, unsigned)> GetRegIdx) const {
732 assert(CompIdx < COMPONENTS_NUM);
733
734 const auto &Comp = CompInfo[CompIdx];
736
737 RegIndices[DST] = GetRegIdx(CompIdx, Comp.getIndexOfDstInMCOperands());
738
739 for (unsigned CompOprIdx : {SRC0, SRC1, SRC2}) {
740 unsigned CompSrcIdx = CompOprIdx - DST_NUM;
741 RegIndices[CompOprIdx] =
742 Comp.hasRegSrcOperand(CompSrcIdx)
743 ? GetRegIdx(CompIdx, Comp.getIndexOfSrcInMCOperands(CompSrcIdx))
744 : 0;
745 }
746 return RegIndices;
747}
748
749} // namespace VOPD
750
752 return VOPD::InstInfo(OpX, OpY);
753}
754
755VOPD::InstInfo getVOPDInstInfo(unsigned VOPDOpcode,
756 const MCInstrInfo *InstrInfo) {
757 auto [OpX, OpY] = getVOPDComponents(VOPDOpcode);
758 const auto &OpXDesc = InstrInfo->get(OpX);
759 const auto &OpYDesc = InstrInfo->get(OpY);
761 VOPD::ComponentInfo OpYInfo(OpYDesc, OpXInfo);
762 return VOPD::InstInfo(OpXInfo, OpYInfo);
763}
764
765namespace IsaInfo {
766
768 : STI(STI), XnackSetting(TargetIDSetting::Any),
769 SramEccSetting(TargetIDSetting::Any) {
770 if (!STI.getFeatureBits().test(FeatureSupportsXNACK))
771 XnackSetting = TargetIDSetting::Unsupported;
772 if (!STI.getFeatureBits().test(FeatureSupportsSRAMECC))
773 SramEccSetting = TargetIDSetting::Unsupported;
774}
775
777 // Check if xnack or sramecc is explicitly enabled or disabled. In the
778 // absence of the target features we assume we must generate code that can run
779 // in any environment.
780 SubtargetFeatures Features(FS);
781 std::optional<bool> XnackRequested;
782 std::optional<bool> SramEccRequested;
783
784 for (const std::string &Feature : Features.getFeatures()) {
785 if (Feature == "+xnack")
786 XnackRequested = true;
787 else if (Feature == "-xnack")
788 XnackRequested = false;
789 else if (Feature == "+sramecc")
790 SramEccRequested = true;
791 else if (Feature == "-sramecc")
792 SramEccRequested = false;
793 }
794
795 bool XnackSupported = isXnackSupported();
796 bool SramEccSupported = isSramEccSupported();
797
798 if (XnackRequested) {
799 if (XnackSupported) {
800 XnackSetting =
801 *XnackRequested ? TargetIDSetting::On : TargetIDSetting::Off;
802 } else {
803 // If a specific xnack setting was requested and this GPU does not support
804 // xnack emit a warning. Setting will remain set to "Unsupported".
805 if (*XnackRequested) {
806 errs() << "warning: xnack 'On' was requested for a processor that does "
807 "not support it!\n";
808 } else {
809 errs() << "warning: xnack 'Off' was requested for a processor that "
810 "does not support it!\n";
811 }
812 }
813 }
814
815 if (SramEccRequested) {
816 if (SramEccSupported) {
817 SramEccSetting =
818 *SramEccRequested ? TargetIDSetting::On : TargetIDSetting::Off;
819 } else {
820 // If a specific sramecc setting was requested and this GPU does not
821 // support sramecc emit a warning. Setting will remain set to
822 // "Unsupported".
823 if (*SramEccRequested) {
824 errs() << "warning: sramecc 'On' was requested for a processor that "
825 "does not support it!\n";
826 } else {
827 errs() << "warning: sramecc 'Off' was requested for a processor that "
828 "does not support it!\n";
829 }
830 }
831 }
832}
833
834static TargetIDSetting
836 if (FeatureString.ends_with("-"))
838 if (FeatureString.ends_with("+"))
839 return TargetIDSetting::On;
840
841 llvm_unreachable("Malformed feature string");
842}
843
845 SmallVector<StringRef, 3> TargetIDSplit;
846 TargetID.split(TargetIDSplit, ':');
847
848 for (const auto &FeatureString : TargetIDSplit) {
849 if (FeatureString.starts_with("xnack"))
850 XnackSetting = getTargetIDSettingFromFeatureString(FeatureString);
851 if (FeatureString.starts_with("sramecc"))
852 SramEccSetting = getTargetIDSettingFromFeatureString(FeatureString);
853 }
854}
855
856std::string AMDGPUTargetID::toString() const {
857 std::string StringRep;
858 raw_string_ostream StreamRep(StringRep);
859
860 auto TargetTriple = STI.getTargetTriple();
861 auto Version = getIsaVersion(STI.getCPU());
862
863 StreamRep << TargetTriple.getArchName() << '-'
864 << TargetTriple.getVendorName() << '-'
865 << TargetTriple.getOSName() << '-'
866 << TargetTriple.getEnvironmentName() << '-';
867
868 std::string Processor;
869 // TODO: Following else statement is present here because we used various
870 // alias names for GPUs up until GFX9 (e.g. 'fiji' is same as 'gfx803').
871 // Remove once all aliases are removed from GCNProcessors.td.
872 if (Version.Major >= 9)
873 Processor = STI.getCPU().str();
874 else
875 Processor = (Twine("gfx") + Twine(Version.Major) + Twine(Version.Minor) +
876 Twine(Version.Stepping))
877 .str();
878
879 std::string Features;
880 if (STI.getTargetTriple().getOS() == Triple::AMDHSA) {
881 // sramecc.
883 Features += ":sramecc-";
885 Features += ":sramecc+";
886 // xnack.
888 Features += ":xnack-";
890 Features += ":xnack+";
891 }
892
893 StreamRep << Processor << Features;
894
895 StreamRep.flush();
896 return StringRep;
897}
898
899unsigned getWavefrontSize(const MCSubtargetInfo *STI) {
900 if (STI->getFeatureBits().test(FeatureWavefrontSize16))
901 return 16;
902 if (STI->getFeatureBits().test(FeatureWavefrontSize32))
903 return 32;
904
905 return 64;
906}
907
909 unsigned BytesPerCU = getAddressableLocalMemorySize(STI);
910
911 // "Per CU" really means "per whatever functional block the waves of a
912 // workgroup must share". So the effective local memory size is doubled in
913 // WGP mode on gfx10.
914 if (isGFX10Plus(*STI) && !STI->getFeatureBits().test(FeatureCuMode))
915 BytesPerCU *= 2;
916
917 return BytesPerCU;
918}
919
921 if (STI->getFeatureBits().test(FeatureLocalMemorySize32768))
922 return 32768;
923 if (STI->getFeatureBits().test(FeatureLocalMemorySize65536))
924 return 65536;
925 return 0;
926}
927
928unsigned getEUsPerCU(const MCSubtargetInfo *STI) {
929 // "Per CU" really means "per whatever functional block the waves of a
930 // workgroup must share". For gfx10 in CU mode this is the CU, which contains
931 // two SIMDs.
932 if (isGFX10Plus(*STI) && STI->getFeatureBits().test(FeatureCuMode))
933 return 2;
934 // Pre-gfx10 a CU contains four SIMDs. For gfx10 in WGP mode the WGP contains
935 // two CUs, so a total of four SIMDs.
936 return 4;
937}
938
940 unsigned FlatWorkGroupSize) {
941 assert(FlatWorkGroupSize != 0);
942 if (STI->getTargetTriple().getArch() != Triple::amdgcn)
943 return 8;
944 unsigned MaxWaves = getMaxWavesPerEU(STI) * getEUsPerCU(STI);
945 unsigned N = getWavesPerWorkGroup(STI, FlatWorkGroupSize);
946 if (N == 1) {
947 // Single-wave workgroups don't consume barrier resources.
948 return MaxWaves;
949 }
950
951 unsigned MaxBarriers = 16;
952 if (isGFX10Plus(*STI) && !STI->getFeatureBits().test(FeatureCuMode))
953 MaxBarriers = 32;
954
955 return std::min(MaxWaves / N, MaxBarriers);
956}
957
958unsigned getMinWavesPerEU(const MCSubtargetInfo *STI) {
959 return 1;
960}
961
962unsigned getMaxWavesPerEU(const MCSubtargetInfo *STI) {
963 // FIXME: Need to take scratch memory into account.
964 if (isGFX90A(*STI))
965 return 8;
966 if (!isGFX10Plus(*STI))
967 return 10;
968 return hasGFX10_3Insts(*STI) ? 16 : 20;
969}
970
972 unsigned FlatWorkGroupSize) {
973 return divideCeil(getWavesPerWorkGroup(STI, FlatWorkGroupSize),
974 getEUsPerCU(STI));
975}
976
978 return 1;
979}
980
982 // Some subtargets allow encoding 2048, but this isn't tested or supported.
983 return 1024;
984}
985
987 unsigned FlatWorkGroupSize) {
988 return divideCeil(FlatWorkGroupSize, getWavefrontSize(STI));
989}
990
993 if (Version.Major >= 10)
994 return getAddressableNumSGPRs(STI);
995 if (Version.Major >= 8)
996 return 16;
997 return 8;
998}
999
1001 return 8;
1002}
1003
1004unsigned getTotalNumSGPRs(const MCSubtargetInfo *STI) {
1006 if (Version.Major >= 8)
1007 return 800;
1008 return 512;
1009}
1010
1012 if (STI->getFeatureBits().test(FeatureSGPRInitBug))
1014
1016 if (Version.Major >= 10)
1017 return 106;
1018 if (Version.Major >= 8)
1019 return 102;
1020 return 104;
1021}
1022
1023unsigned getMinNumSGPRs(const MCSubtargetInfo *STI, unsigned WavesPerEU) {
1024 assert(WavesPerEU != 0);
1025
1027 if (Version.Major >= 10)
1028 return 0;
1029
1030 if (WavesPerEU >= getMaxWavesPerEU(STI))
1031 return 0;
1032
1033 unsigned MinNumSGPRs = getTotalNumSGPRs(STI) / (WavesPerEU + 1);
1034 if (STI->getFeatureBits().test(FeatureTrapHandler))
1035 MinNumSGPRs -= std::min(MinNumSGPRs, (unsigned)TRAP_NUM_SGPRS);
1036 MinNumSGPRs = alignDown(MinNumSGPRs, getSGPRAllocGranule(STI)) + 1;
1037 return std::min(MinNumSGPRs, getAddressableNumSGPRs(STI));
1038}
1039
1040unsigned getMaxNumSGPRs(const MCSubtargetInfo *STI, unsigned WavesPerEU,
1041 bool Addressable) {
1042 assert(WavesPerEU != 0);
1043
1044 unsigned AddressableNumSGPRs = getAddressableNumSGPRs(STI);
1046 if (Version.Major >= 10)
1047 return Addressable ? AddressableNumSGPRs : 108;
1048 if (Version.Major >= 8 && !Addressable)
1049 AddressableNumSGPRs = 112;
1050 unsigned MaxNumSGPRs = getTotalNumSGPRs(STI) / WavesPerEU;
1051 if (STI->getFeatureBits().test(FeatureTrapHandler))
1052 MaxNumSGPRs -= std::min(MaxNumSGPRs, (unsigned)TRAP_NUM_SGPRS);
1053 MaxNumSGPRs = alignDown(MaxNumSGPRs, getSGPRAllocGranule(STI));
1054 return std::min(MaxNumSGPRs, AddressableNumSGPRs);
1055}
1056
1057unsigned getNumExtraSGPRs(const MCSubtargetInfo *STI, bool VCCUsed,
1058 bool FlatScrUsed, bool XNACKUsed) {
1059 unsigned ExtraSGPRs = 0;
1060 if (VCCUsed)
1061 ExtraSGPRs = 2;
1062
1064 if (Version.Major >= 10)
1065 return ExtraSGPRs;
1066
1067 if (Version.Major < 8) {
1068 if (FlatScrUsed)
1069 ExtraSGPRs = 4;
1070 } else {
1071 if (XNACKUsed)
1072 ExtraSGPRs = 4;
1073
1074 if (FlatScrUsed ||
1075 STI->getFeatureBits().test(AMDGPU::FeatureArchitectedFlatScratch))
1076 ExtraSGPRs = 6;
1077 }
1078
1079 return ExtraSGPRs;
1080}
1081
1082unsigned getNumExtraSGPRs(const MCSubtargetInfo *STI, bool VCCUsed,
1083 bool FlatScrUsed) {
1084 return getNumExtraSGPRs(STI, VCCUsed, FlatScrUsed,
1085 STI->getFeatureBits().test(AMDGPU::FeatureXNACK));
1086}
1087
1088static unsigned getGranulatedNumRegisterBlocks(unsigned NumRegs,
1089 unsigned Granule) {
1090 return divideCeil(std::max(1u, NumRegs), Granule);
1091}
1092
1093unsigned getNumSGPRBlocks(const MCSubtargetInfo *STI, unsigned NumSGPRs) {
1094 // SGPRBlocks is actual number of SGPR blocks minus 1.
1096 1;
1097}
1098
1100 std::optional<bool> EnableWavefrontSize32) {
1101 if (STI->getFeatureBits().test(FeatureGFX90AInsts))
1102 return 8;
1103
1104 bool IsWave32 = EnableWavefrontSize32 ?
1105 *EnableWavefrontSize32 :
1106 STI->getFeatureBits().test(FeatureWavefrontSize32);
1107
1108 if (STI->getFeatureBits().test(Feature1_5xVGPRs))
1109 return IsWave32 ? 24 : 12;
1110
1111 if (hasGFX10_3Insts(*STI))
1112 return IsWave32 ? 16 : 8;
1113
1114 return IsWave32 ? 8 : 4;
1115}
1116
1118 std::optional<bool> EnableWavefrontSize32) {
1119 if (STI->getFeatureBits().test(FeatureGFX90AInsts))
1120 return 8;
1121
1122 bool IsWave32 = EnableWavefrontSize32 ?
1123 *EnableWavefrontSize32 :
1124 STI->getFeatureBits().test(FeatureWavefrontSize32);
1125
1126 return IsWave32 ? 8 : 4;
1127}
1128
1129unsigned getTotalNumVGPRs(const MCSubtargetInfo *STI) {
1130 if (STI->getFeatureBits().test(FeatureGFX90AInsts))
1131 return 512;
1132 if (!isGFX10Plus(*STI))
1133 return 256;
1134 bool IsWave32 = STI->getFeatureBits().test(FeatureWavefrontSize32);
1135 if (STI->getFeatureBits().test(Feature1_5xVGPRs))
1136 return IsWave32 ? 1536 : 768;
1137 return IsWave32 ? 1024 : 512;
1138}
1139
1140unsigned getAddressableNumArchVGPRs(const MCSubtargetInfo *STI) { return 256; }
1141
1143 if (STI->getFeatureBits().test(FeatureGFX90AInsts))
1144 return 512;
1145 return getAddressableNumArchVGPRs(STI);
1146}
1147
1149 unsigned NumVGPRs) {
1151 getMaxWavesPerEU(STI),
1152 getTotalNumVGPRs(STI));
1153}
1154
1155unsigned getNumWavesPerEUWithNumVGPRs(unsigned NumVGPRs, unsigned Granule,
1156 unsigned MaxWaves,
1157 unsigned TotalNumVGPRs) {
1158 if (NumVGPRs < Granule)
1159 return MaxWaves;
1160 unsigned RoundedRegs = alignTo(NumVGPRs, Granule);
1161 return std::min(std::max(TotalNumVGPRs / RoundedRegs, 1u), MaxWaves);
1162}
1163
1164unsigned getOccupancyWithNumSGPRs(unsigned SGPRs, unsigned MaxWaves,
1166 if (Gen >= AMDGPUSubtarget::GFX10)
1167 return MaxWaves;
1168
1170 if (SGPRs <= 80)
1171 return 10;
1172 if (SGPRs <= 88)
1173 return 9;
1174 if (SGPRs <= 100)
1175 return 8;
1176 return 7;
1177 }
1178 if (SGPRs <= 48)
1179 return 10;
1180 if (SGPRs <= 56)
1181 return 9;
1182 if (SGPRs <= 64)
1183 return 8;
1184 if (SGPRs <= 72)
1185 return 7;
1186 if (SGPRs <= 80)
1187 return 6;
1188 return 5;
1189}
1190
1191unsigned getMinNumVGPRs(const MCSubtargetInfo *STI, unsigned WavesPerEU) {
1192 assert(WavesPerEU != 0);
1193
1194 unsigned MaxWavesPerEU = getMaxWavesPerEU(STI);
1195 if (WavesPerEU >= MaxWavesPerEU)
1196 return 0;
1197
1198 unsigned TotNumVGPRs = getTotalNumVGPRs(STI);
1199 unsigned AddrsableNumVGPRs = getAddressableNumVGPRs(STI);
1200 unsigned Granule = getVGPRAllocGranule(STI);
1201 unsigned MaxNumVGPRs = alignDown(TotNumVGPRs / WavesPerEU, Granule);
1202
1203 if (MaxNumVGPRs == alignDown(TotNumVGPRs / MaxWavesPerEU, Granule))
1204 return 0;
1205
1206 unsigned MinWavesPerEU = getNumWavesPerEUWithNumVGPRs(STI, AddrsableNumVGPRs);
1207 if (WavesPerEU < MinWavesPerEU)
1208 return getMinNumVGPRs(STI, MinWavesPerEU);
1209
1210 unsigned MaxNumVGPRsNext = alignDown(TotNumVGPRs / (WavesPerEU + 1), Granule);
1211 unsigned MinNumVGPRs = 1 + std::min(MaxNumVGPRs - Granule, MaxNumVGPRsNext);
1212 return std::min(MinNumVGPRs, AddrsableNumVGPRs);
1213}
1214
1215unsigned getMaxNumVGPRs(const MCSubtargetInfo *STI, unsigned WavesPerEU) {
1216 assert(WavesPerEU != 0);
1217
1218 unsigned MaxNumVGPRs = alignDown(getTotalNumVGPRs(STI) / WavesPerEU,
1219 getVGPRAllocGranule(STI));
1220 unsigned AddressableNumVGPRs = getAddressableNumVGPRs(STI);
1221 return std::min(MaxNumVGPRs, AddressableNumVGPRs);
1222}
1223
1224unsigned getEncodedNumVGPRBlocks(const MCSubtargetInfo *STI, unsigned NumVGPRs,
1225 std::optional<bool> EnableWavefrontSize32) {
1227 NumVGPRs, getVGPREncodingGranule(STI, EnableWavefrontSize32)) -
1228 1;
1229}
1230
1232 unsigned NumVGPRs,
1233 std::optional<bool> EnableWavefrontSize32) {
1235 NumVGPRs, getVGPRAllocGranule(STI, EnableWavefrontSize32));
1236}
1237} // end namespace IsaInfo
1238
1240 const MCSubtargetInfo *STI) {
1242 KernelCode.amd_kernel_code_version_major = 1;
1243 KernelCode.amd_kernel_code_version_minor = 2;
1244 KernelCode.amd_machine_kind = 1; // AMD_MACHINE_KIND_AMDGPU
1245 KernelCode.amd_machine_version_major = Version.Major;
1246 KernelCode.amd_machine_version_minor = Version.Minor;
1247 KernelCode.amd_machine_version_stepping = Version.Stepping;
1249 if (STI->getFeatureBits().test(FeatureWavefrontSize32)) {
1250 KernelCode.wavefront_size = 5;
1252 } else {
1253 KernelCode.wavefront_size = 6;
1254 }
1255
1256 // If the code object does not support indirect functions, then the value must
1257 // be 0xffffffff.
1258 KernelCode.call_convention = -1;
1259
1260 // These alignment values are specified in powers of two, so alignment =
1261 // 2^n. The minimum alignment is 2^4 = 16.
1262 KernelCode.kernarg_segment_alignment = 4;
1263 KernelCode.group_segment_alignment = 4;
1264 KernelCode.private_segment_alignment = 4;
1265
1266 if (Version.Major >= 10) {
1267 KernelCode.compute_pgm_resource_registers |=
1268 S_00B848_WGP_MODE(STI->getFeatureBits().test(FeatureCuMode) ? 0 : 1) |
1270 }
1271}
1272
1275}
1276
1279}
1280
1282 unsigned AS = GV->getAddressSpace();
1283 return AS == AMDGPUAS::CONSTANT_ADDRESS ||
1285}
1286
1288 return TT.getArch() == Triple::r600;
1289}
1290
1291std::pair<unsigned, unsigned>
1293 std::pair<unsigned, unsigned> Default,
1294 bool OnlyFirstRequired) {
1295 Attribute A = F.getFnAttribute(Name);
1296 if (!A.isStringAttribute())
1297 return Default;
1298
1299 LLVMContext &Ctx = F.getContext();
1300 std::pair<unsigned, unsigned> Ints = Default;
1301 std::pair<StringRef, StringRef> Strs = A.getValueAsString().split(',');
1302 if (Strs.first.trim().getAsInteger(0, Ints.first)) {
1303 Ctx.emitError("can't parse first integer attribute " + Name);
1304 return Default;
1305 }
1306 if (Strs.second.trim().getAsInteger(0, Ints.second)) {
1307 if (!OnlyFirstRequired || !Strs.second.trim().empty()) {
1308 Ctx.emitError("can't parse second integer attribute " + Name);
1309 return Default;
1310 }
1311 }
1312
1313 return Ints;
1314}
1315
1317 unsigned Size) {
1318 assert(Size > 2);
1320
1321 Attribute A = F.getFnAttribute(Name);
1322 if (!A.isStringAttribute())
1323 return Default;
1324
1325 SmallVector<unsigned> Vals(Size, 0);
1326
1327 LLVMContext &Ctx = F.getContext();
1328
1329 StringRef S = A.getValueAsString();
1330 unsigned i = 0;
1331 for (; !S.empty() && i < Size; i++) {
1332 std::pair<StringRef, StringRef> Strs = S.split(',');
1333 unsigned IntVal;
1334 if (Strs.first.trim().getAsInteger(0, IntVal)) {
1335 Ctx.emitError("can't parse integer attribute " + Strs.first + " in " +
1336 Name);
1337 return Default;
1338 }
1339 Vals[i] = IntVal;
1340 S = Strs.second;
1341 }
1342
1343 if (!S.empty() || i < Size) {
1344 Ctx.emitError("attribute " + Name +
1345 " has incorrect number of integers; expected " +
1346 llvm::utostr(Size));
1347 return Default;
1348 }
1349 return Vals;
1350}
1351
1353 return (1 << (getVmcntBitWidthLo(Version.Major) +
1354 getVmcntBitWidthHi(Version.Major))) -
1355 1;
1356}
1357
1359 return (1 << getLoadcntBitWidth(Version.Major)) - 1;
1360}
1361
1363 return (1 << getSamplecntBitWidth(Version.Major)) - 1;
1364}
1365
1367 return (1 << getBvhcntBitWidth(Version.Major)) - 1;
1368}
1369
1371 return (1 << getExpcntBitWidth(Version.Major)) - 1;
1372}
1373
1375 return (1 << getLgkmcntBitWidth(Version.Major)) - 1;
1376}
1377
1379 return (1 << getDscntBitWidth(Version.Major)) - 1;
1380}
1381
1383 return (1 << getKmcntBitWidth(Version.Major)) - 1;
1384}
1385
1387 return (1 << getStorecntBitWidth(Version.Major)) - 1;
1388}
1389
1391 unsigned VmcntLo = getBitMask(getVmcntBitShiftLo(Version.Major),
1392 getVmcntBitWidthLo(Version.Major));
1393 unsigned Expcnt = getBitMask(getExpcntBitShift(Version.Major),
1394 getExpcntBitWidth(Version.Major));
1395 unsigned Lgkmcnt = getBitMask(getLgkmcntBitShift(Version.Major),
1396 getLgkmcntBitWidth(Version.Major));
1397 unsigned VmcntHi = getBitMask(getVmcntBitShiftHi(Version.Major),
1398 getVmcntBitWidthHi(Version.Major));
1399 return VmcntLo | Expcnt | Lgkmcnt | VmcntHi;
1400}
1401
1402unsigned decodeVmcnt(const IsaVersion &Version, unsigned Waitcnt) {
1403 unsigned VmcntLo = unpackBits(Waitcnt, getVmcntBitShiftLo(Version.Major),
1404 getVmcntBitWidthLo(Version.Major));
1405 unsigned VmcntHi = unpackBits(Waitcnt, getVmcntBitShiftHi(Version.Major),
1406 getVmcntBitWidthHi(Version.Major));
1407 return VmcntLo | VmcntHi << getVmcntBitWidthLo(Version.Major);
1408}
1409
1410unsigned decodeExpcnt(const IsaVersion &Version, unsigned Waitcnt) {
1411 return unpackBits(Waitcnt, getExpcntBitShift(Version.Major),
1412 getExpcntBitWidth(Version.Major));
1413}
1414
1415unsigned decodeLgkmcnt(const IsaVersion &Version, unsigned Waitcnt) {
1416 return unpackBits(Waitcnt, getLgkmcntBitShift(Version.Major),
1417 getLgkmcntBitWidth(Version.Major));
1418}
1419
1421 unsigned &Vmcnt, unsigned &Expcnt, unsigned &Lgkmcnt) {
1422 Vmcnt = decodeVmcnt(Version, Waitcnt);
1423 Expcnt = decodeExpcnt(Version, Waitcnt);
1424 Lgkmcnt = decodeLgkmcnt(Version, Waitcnt);
1425}
1426
1427Waitcnt decodeWaitcnt(const IsaVersion &Version, unsigned Encoded) {
1428 Waitcnt Decoded;
1429 Decoded.LoadCnt = decodeVmcnt(Version, Encoded);
1430 Decoded.ExpCnt = decodeExpcnt(Version, Encoded);
1431 Decoded.DsCnt = decodeLgkmcnt(Version, Encoded);
1432 return Decoded;
1433}
1434
1435unsigned encodeVmcnt(const IsaVersion &Version, unsigned Waitcnt,
1436 unsigned Vmcnt) {
1437 Waitcnt = packBits(Vmcnt, Waitcnt, getVmcntBitShiftLo(Version.Major),
1438 getVmcntBitWidthLo(Version.Major));
1439 return packBits(Vmcnt >> getVmcntBitWidthLo(Version.Major), Waitcnt,
1440 getVmcntBitShiftHi(Version.Major),
1441 getVmcntBitWidthHi(Version.Major));
1442}
1443
1444unsigned encodeExpcnt(const IsaVersion &Version, unsigned Waitcnt,
1445 unsigned Expcnt) {
1446 return packBits(Expcnt, Waitcnt, getExpcntBitShift(Version.Major),
1447 getExpcntBitWidth(Version.Major));
1448}
1449
1450unsigned encodeLgkmcnt(const IsaVersion &Version, unsigned Waitcnt,
1451 unsigned Lgkmcnt) {
1452 return packBits(Lgkmcnt, Waitcnt, getLgkmcntBitShift(Version.Major),
1453 getLgkmcntBitWidth(Version.Major));
1454}
1455
1457 unsigned Vmcnt, unsigned Expcnt, unsigned Lgkmcnt) {
1458 unsigned Waitcnt = getWaitcntBitMask(Version);
1460 Waitcnt = encodeExpcnt(Version, Waitcnt, Expcnt);
1461 Waitcnt = encodeLgkmcnt(Version, Waitcnt, Lgkmcnt);
1462 return Waitcnt;
1463}
1464
1465unsigned encodeWaitcnt(const IsaVersion &Version, const Waitcnt &Decoded) {
1466 return encodeWaitcnt(Version, Decoded.LoadCnt, Decoded.ExpCnt, Decoded.DsCnt);
1467}
1468
1470 bool IsStore) {
1471 unsigned Dscnt = getBitMask(getDscntBitShift(Version.Major),
1472 getDscntBitWidth(Version.Major));
1473 if (IsStore) {
1474 unsigned Storecnt = getBitMask(getLoadcntStorecntBitShift(Version.Major),
1475 getStorecntBitWidth(Version.Major));
1476 return Dscnt | Storecnt;
1477 }
1478 unsigned Loadcnt = getBitMask(getLoadcntStorecntBitShift(Version.Major),
1479 getLoadcntBitWidth(Version.Major));
1480 return Dscnt | Loadcnt;
1481}
1482
1483Waitcnt decodeLoadcntDscnt(const IsaVersion &Version, unsigned LoadcntDscnt) {
1484 Waitcnt Decoded;
1485 Decoded.LoadCnt =
1486 unpackBits(LoadcntDscnt, getLoadcntStorecntBitShift(Version.Major),
1487 getLoadcntBitWidth(Version.Major));
1488 Decoded.DsCnt = unpackBits(LoadcntDscnt, getDscntBitShift(Version.Major),
1489 getDscntBitWidth(Version.Major));
1490 return Decoded;
1491}
1492
1493Waitcnt decodeStorecntDscnt(const IsaVersion &Version, unsigned StorecntDscnt) {
1494 Waitcnt Decoded;
1495 Decoded.StoreCnt =
1496 unpackBits(StorecntDscnt, getLoadcntStorecntBitShift(Version.Major),
1497 getStorecntBitWidth(Version.Major));
1498 Decoded.DsCnt = unpackBits(StorecntDscnt, getDscntBitShift(Version.Major),
1499 getDscntBitWidth(Version.Major));
1500 return Decoded;
1501}
1502
1503static unsigned encodeLoadcnt(const IsaVersion &Version, unsigned Waitcnt,
1504 unsigned Loadcnt) {
1505 return packBits(Loadcnt, Waitcnt, getLoadcntStorecntBitShift(Version.Major),
1506 getLoadcntBitWidth(Version.Major));
1507}
1508
1509static unsigned encodeStorecnt(const IsaVersion &Version, unsigned Waitcnt,
1510 unsigned Storecnt) {
1511 return packBits(Storecnt, Waitcnt, getLoadcntStorecntBitShift(Version.Major),
1512 getStorecntBitWidth(Version.Major));
1513}
1514
1515static unsigned encodeDscnt(const IsaVersion &Version, unsigned Waitcnt,
1516 unsigned Dscnt) {
1517 return packBits(Dscnt, Waitcnt, getDscntBitShift(Version.Major),
1518 getDscntBitWidth(Version.Major));
1519}
1520
1521static unsigned encodeLoadcntDscnt(const IsaVersion &Version, unsigned Loadcnt,
1522 unsigned Dscnt) {
1523 unsigned Waitcnt = getCombinedCountBitMask(Version, false);
1524 Waitcnt = encodeLoadcnt(Version, Waitcnt, Loadcnt);
1526 return Waitcnt;
1527}
1528
1529unsigned encodeLoadcntDscnt(const IsaVersion &Version, const Waitcnt &Decoded) {
1530 return encodeLoadcntDscnt(Version, Decoded.LoadCnt, Decoded.DsCnt);
1531}
1532
1534 unsigned Storecnt, unsigned Dscnt) {
1535 unsigned Waitcnt = getCombinedCountBitMask(Version, true);
1536 Waitcnt = encodeStorecnt(Version, Waitcnt, Storecnt);
1538 return Waitcnt;
1539}
1540
1542 const Waitcnt &Decoded) {
1543 return encodeStorecntDscnt(Version, Decoded.StoreCnt, Decoded.DsCnt);
1544}
1545
1546//===----------------------------------------------------------------------===//
1547// Custom Operand Values
1548//===----------------------------------------------------------------------===//
1549
1551 int Size,
1552 const MCSubtargetInfo &STI) {
1553 unsigned Enc = 0;
1554 for (int Idx = 0; Idx < Size; ++Idx) {
1555 const auto &Op = Opr[Idx];
1556 if (Op.isSupported(STI))
1557 Enc |= Op.encode(Op.Default);
1558 }
1559 return Enc;
1560}
1561
1563 int Size, unsigned Code,
1564 bool &HasNonDefaultVal,
1565 const MCSubtargetInfo &STI) {
1566 unsigned UsedOprMask = 0;
1567 HasNonDefaultVal = false;
1568 for (int Idx = 0; Idx < Size; ++Idx) {
1569 const auto &Op = Opr[Idx];
1570 if (!Op.isSupported(STI))
1571 continue;
1572 UsedOprMask |= Op.getMask();
1573 unsigned Val = Op.decode(Code);
1574 if (!Op.isValid(Val))
1575 return false;
1576 HasNonDefaultVal |= (Val != Op.Default);
1577 }
1578 return (Code & ~UsedOprMask) == 0;
1579}
1580
1581static bool decodeCustomOperand(const CustomOperandVal *Opr, int Size,
1582 unsigned Code, int &Idx, StringRef &Name,
1583 unsigned &Val, bool &IsDefault,
1584 const MCSubtargetInfo &STI) {
1585 while (Idx < Size) {
1586 const auto &Op = Opr[Idx++];
1587 if (Op.isSupported(STI)) {
1588 Name = Op.Name;
1589 Val = Op.decode(Code);
1590 IsDefault = (Val == Op.Default);
1591 return true;
1592 }
1593 }
1594
1595 return false;
1596}
1597
1599 int64_t InputVal) {
1600 if (InputVal < 0 || InputVal > Op.Max)
1601 return OPR_VAL_INVALID;
1602 return Op.encode(InputVal);
1603}
1604
1605static int encodeCustomOperand(const CustomOperandVal *Opr, int Size,
1606 const StringRef Name, int64_t InputVal,
1607 unsigned &UsedOprMask,
1608 const MCSubtargetInfo &STI) {
1609 int InvalidId = OPR_ID_UNKNOWN;
1610 for (int Idx = 0; Idx < Size; ++Idx) {
1611 const auto &Op = Opr[Idx];
1612 if (Op.Name == Name) {
1613 if (!Op.isSupported(STI)) {
1614 InvalidId = OPR_ID_UNSUPPORTED;
1615 continue;
1616 }
1617 auto OprMask = Op.getMask();
1618 if (OprMask & UsedOprMask)
1619 return OPR_ID_DUPLICATE;
1620 UsedOprMask |= OprMask;
1621 return encodeCustomOperandVal(Op, InputVal);
1622 }
1623 }
1624 return InvalidId;
1625}
1626
1627//===----------------------------------------------------------------------===//
1628// DepCtr
1629//===----------------------------------------------------------------------===//
1630
1631namespace DepCtr {
1632
1634 static int Default = -1;
1635 if (Default == -1)
1637 return Default;
1638}
1639
1640bool isSymbolicDepCtrEncoding(unsigned Code, bool &HasNonDefaultVal,
1641 const MCSubtargetInfo &STI) {
1643 HasNonDefaultVal, STI);
1644}
1645
1646bool decodeDepCtr(unsigned Code, int &Id, StringRef &Name, unsigned &Val,
1647 bool &IsDefault, const MCSubtargetInfo &STI) {
1648 return decodeCustomOperand(DepCtrInfo, DEP_CTR_SIZE, Code, Id, Name, Val,
1649 IsDefault, STI);
1650}
1651
1652int encodeDepCtr(const StringRef Name, int64_t Val, unsigned &UsedOprMask,
1653 const MCSubtargetInfo &STI) {
1654 return encodeCustomOperand(DepCtrInfo, DEP_CTR_SIZE, Name, Val, UsedOprMask,
1655 STI);
1656}
1657
1658unsigned decodeFieldVmVsrc(unsigned Encoded) {
1659 return unpackBits(Encoded, getVmVsrcBitShift(), getVmVsrcBitWidth());
1660}
1661
1662unsigned decodeFieldVaVdst(unsigned Encoded) {
1663 return unpackBits(Encoded, getVaVdstBitShift(), getVaVdstBitWidth());
1664}
1665
1666unsigned decodeFieldSaSdst(unsigned Encoded) {
1667 return unpackBits(Encoded, getSaSdstBitShift(), getSaSdstBitWidth());
1668}
1669
1670unsigned encodeFieldVmVsrc(unsigned Encoded, unsigned VmVsrc) {
1671 return packBits(VmVsrc, Encoded, getVmVsrcBitShift(), getVmVsrcBitWidth());
1672}
1673
1674unsigned encodeFieldVmVsrc(unsigned VmVsrc) {
1675 return encodeFieldVmVsrc(0xffff, VmVsrc);
1676}
1677
1678unsigned encodeFieldVaVdst(unsigned Encoded, unsigned VaVdst) {
1679 return packBits(VaVdst, Encoded, getVaVdstBitShift(), getVaVdstBitWidth());
1680}
1681
1682unsigned encodeFieldVaVdst(unsigned VaVdst) {
1683 return encodeFieldVaVdst(0xffff, VaVdst);
1684}
1685
1686unsigned encodeFieldSaSdst(unsigned Encoded, unsigned SaSdst) {
1687 return packBits(SaSdst, Encoded, getSaSdstBitShift(), getSaSdstBitWidth());
1688}
1689
1690unsigned encodeFieldSaSdst(unsigned SaSdst) {
1691 return encodeFieldSaSdst(0xffff, SaSdst);
1692}
1693
1694} // namespace DepCtr
1695
1696//===----------------------------------------------------------------------===//
1697// exp tgt
1698//===----------------------------------------------------------------------===//
1699
1700namespace Exp {
1701
1702struct ExpTgt {
1704 unsigned Tgt;
1705 unsigned MaxIndex;
1706};
1707
1708static constexpr ExpTgt ExpTgtInfo[] = {
1709 {{"null"}, ET_NULL, ET_NULL_MAX_IDX},
1710 {{"mrtz"}, ET_MRTZ, ET_MRTZ_MAX_IDX},
1711 {{"prim"}, ET_PRIM, ET_PRIM_MAX_IDX},
1712 {{"mrt"}, ET_MRT0, ET_MRT_MAX_IDX},
1713 {{"pos"}, ET_POS0, ET_POS_MAX_IDX},
1714 {{"dual_src_blend"}, ET_DUAL_SRC_BLEND0, ET_DUAL_SRC_BLEND_MAX_IDX},
1715 {{"param"}, ET_PARAM0, ET_PARAM_MAX_IDX},
1716};
1717
1718bool getTgtName(unsigned Id, StringRef &Name, int &Index) {
1719 for (const ExpTgt &Val : ExpTgtInfo) {
1720 if (Val.Tgt <= Id && Id <= Val.Tgt + Val.MaxIndex) {
1721 Index = (Val.MaxIndex == 0) ? -1 : (Id - Val.Tgt);
1722 Name = Val.Name;
1723 return true;
1724 }
1725 }
1726 return false;
1727}
1728
1729unsigned getTgtId(const StringRef Name) {
1730
1731 for (const ExpTgt &Val : ExpTgtInfo) {
1732 if (Val.MaxIndex == 0 && Name == Val.Name)
1733 return Val.Tgt;
1734
1735 if (Val.MaxIndex > 0 && Name.starts_with(Val.Name)) {
1736 StringRef Suffix = Name.drop_front(Val.Name.size());
1737
1738 unsigned Id;
1739 if (Suffix.getAsInteger(10, Id) || Id > Val.MaxIndex)
1740 return ET_INVALID;
1741
1742 // Disable leading zeroes
1743 if (Suffix.size() > 1 && Suffix[0] == '0')
1744 return ET_INVALID;
1745
1746 return Val.Tgt + Id;
1747 }
1748 }
1749 return ET_INVALID;
1750}
1751
1752bool isSupportedTgtId(unsigned Id, const MCSubtargetInfo &STI) {
1753 switch (Id) {
1754 case ET_NULL:
1755 return !isGFX11Plus(STI);
1756 case ET_POS4:
1757 case ET_PRIM:
1758 return isGFX10Plus(STI);
1759 case ET_DUAL_SRC_BLEND0:
1760 case ET_DUAL_SRC_BLEND1:
1761 return isGFX11Plus(STI);
1762 default:
1763 if (Id >= ET_PARAM0 && Id <= ET_PARAM31)
1764 return !isGFX11Plus(STI);
1765 return true;
1766 }
1767}
1768
1769} // namespace Exp
1770
1771//===----------------------------------------------------------------------===//
1772// MTBUF Format
1773//===----------------------------------------------------------------------===//
1774
1775namespace MTBUFFormat {
1776
1777int64_t getDfmt(const StringRef Name) {
1778 for (int Id = DFMT_MIN; Id <= DFMT_MAX; ++Id) {
1779 if (Name == DfmtSymbolic[Id])
1780 return Id;
1781 }
1782 return DFMT_UNDEF;
1783}
1784
1786 assert(Id <= DFMT_MAX);
1787 return DfmtSymbolic[Id];
1788}
1789
1791 if (isSI(STI) || isCI(STI))
1792 return NfmtSymbolicSICI;
1793 if (isVI(STI) || isGFX9(STI))
1794 return NfmtSymbolicVI;
1795 return NfmtSymbolicGFX10;
1796}
1797
1798int64_t getNfmt(const StringRef Name, const MCSubtargetInfo &STI) {
1799 auto lookupTable = getNfmtLookupTable(STI);
1800 for (int Id = NFMT_MIN; Id <= NFMT_MAX; ++Id) {
1801 if (Name == lookupTable[Id])
1802 return Id;
1803 }
1804 return NFMT_UNDEF;
1805}
1806
1807StringRef getNfmtName(unsigned Id, const MCSubtargetInfo &STI) {
1808 assert(Id <= NFMT_MAX);
1809 return getNfmtLookupTable(STI)[Id];
1810}
1811
1812bool isValidDfmtNfmt(unsigned Id, const MCSubtargetInfo &STI) {
1813 unsigned Dfmt;
1814 unsigned Nfmt;
1815 decodeDfmtNfmt(Id, Dfmt, Nfmt);
1816 return isValidNfmt(Nfmt, STI);
1817}
1818
1819bool isValidNfmt(unsigned Id, const MCSubtargetInfo &STI) {
1820 return !getNfmtName(Id, STI).empty();
1821}
1822
1823int64_t encodeDfmtNfmt(unsigned Dfmt, unsigned Nfmt) {
1824 return (Dfmt << DFMT_SHIFT) | (Nfmt << NFMT_SHIFT);
1825}
1826
1827void decodeDfmtNfmt(unsigned Format, unsigned &Dfmt, unsigned &Nfmt) {
1828 Dfmt = (Format >> DFMT_SHIFT) & DFMT_MASK;
1829 Nfmt = (Format >> NFMT_SHIFT) & NFMT_MASK;
1830}
1831
1833 if (isGFX11Plus(STI)) {
1834 for (int Id = UfmtGFX11::UFMT_FIRST; Id <= UfmtGFX11::UFMT_LAST; ++Id) {
1835 if (Name == UfmtSymbolicGFX11[Id])
1836 return Id;
1837 }
1838 } else {
1839 for (int Id = UfmtGFX10::UFMT_FIRST; Id <= UfmtGFX10::UFMT_LAST; ++Id) {
1840 if (Name == UfmtSymbolicGFX10[Id])
1841 return Id;
1842 }
1843 }
1844 return UFMT_UNDEF;
1845}
1846
1848 if(isValidUnifiedFormat(Id, STI))
1849 return isGFX10(STI) ? UfmtSymbolicGFX10[Id] : UfmtSymbolicGFX11[Id];
1850 return "";
1851}
1852
1853bool isValidUnifiedFormat(unsigned Id, const MCSubtargetInfo &STI) {
1854 return isGFX10(STI) ? Id <= UfmtGFX10::UFMT_LAST : Id <= UfmtGFX11::UFMT_LAST;
1855}
1856
1857int64_t convertDfmtNfmt2Ufmt(unsigned Dfmt, unsigned Nfmt,
1858 const MCSubtargetInfo &STI) {
1859 int64_t Fmt = encodeDfmtNfmt(Dfmt, Nfmt);
1860 if (isGFX11Plus(STI)) {
1861 for (int Id = UfmtGFX11::UFMT_FIRST; Id <= UfmtGFX11::UFMT_LAST; ++Id) {
1862 if (Fmt == DfmtNfmt2UFmtGFX11[Id])
1863 return Id;
1864 }
1865 } else {
1866 for (int Id = UfmtGFX10::UFMT_FIRST; Id <= UfmtGFX10::UFMT_LAST; ++Id) {
1867 if (Fmt == DfmtNfmt2UFmtGFX10[Id])
1868 return Id;
1869 }
1870 }
1871 return UFMT_UNDEF;
1872}
1873
1874bool isValidFormatEncoding(unsigned Val, const MCSubtargetInfo &STI) {
1875 return isGFX10Plus(STI) ? (Val <= UFMT_MAX) : (Val <= DFMT_NFMT_MAX);
1876}
1877
1879 if (isGFX10Plus(STI))
1880 return UFMT_DEFAULT;
1881 return DFMT_NFMT_DEFAULT;
1882}
1883
1884} // namespace MTBUFFormat
1885
1886//===----------------------------------------------------------------------===//
1887// SendMsg
1888//===----------------------------------------------------------------------===//
1889
1890namespace SendMsg {
1891
1894}
1895
1896bool isValidMsgId(int64_t MsgId, const MCSubtargetInfo &STI) {
1897 return (MsgId & ~(getMsgIdMask(STI))) == 0;
1898}
1899
1900bool isValidMsgOp(int64_t MsgId, int64_t OpId, const MCSubtargetInfo &STI,
1901 bool Strict) {
1902 assert(isValidMsgId(MsgId, STI));
1903
1904 if (!Strict)
1905 return 0 <= OpId && isUInt<OP_WIDTH_>(OpId);
1906
1907 if (msgRequiresOp(MsgId, STI)) {
1908 if (MsgId == ID_GS_PreGFX11 && OpId == OP_GS_NOP)
1909 return false;
1910
1911 return !getMsgOpName(MsgId, OpId, STI).empty();
1912 }
1913
1914 return OpId == OP_NONE_;
1915}
1916
1917bool isValidMsgStream(int64_t MsgId, int64_t OpId, int64_t StreamId,
1918 const MCSubtargetInfo &STI, bool Strict) {
1919 assert(isValidMsgOp(MsgId, OpId, STI, Strict));
1920
1921 if (!Strict)
1922 return 0 <= StreamId && isUInt<STREAM_ID_WIDTH_>(StreamId);
1923
1924 if (!isGFX11Plus(STI)) {
1925 switch (MsgId) {
1926 case ID_GS_PreGFX11:
1929 return (OpId == OP_GS_NOP) ?
1932 }
1933 }
1934 return StreamId == STREAM_ID_NONE_;
1935}
1936
1937bool msgRequiresOp(int64_t MsgId, const MCSubtargetInfo &STI) {
1938 return MsgId == ID_SYSMSG ||
1939 (!isGFX11Plus(STI) &&
1940 (MsgId == ID_GS_PreGFX11 || MsgId == ID_GS_DONE_PreGFX11));
1941}
1942
1943bool msgSupportsStream(int64_t MsgId, int64_t OpId,
1944 const MCSubtargetInfo &STI) {
1945 return !isGFX11Plus(STI) &&
1946 (MsgId == ID_GS_PreGFX11 || MsgId == ID_GS_DONE_PreGFX11) &&
1947 OpId != OP_GS_NOP;
1948}
1949
1950void decodeMsg(unsigned Val, uint16_t &MsgId, uint16_t &OpId,
1951 uint16_t &StreamId, const MCSubtargetInfo &STI) {
1952 MsgId = Val & getMsgIdMask(STI);
1953 if (isGFX11Plus(STI)) {
1954 OpId = 0;
1955 StreamId = 0;
1956 } else {
1957 OpId = (Val & OP_MASK_) >> OP_SHIFT_;
1959 }
1960}
1961
1963 uint64_t OpId,
1965 return MsgId | (OpId << OP_SHIFT_) | (StreamId << STREAM_ID_SHIFT_);
1966}
1967
1968} // namespace SendMsg
1969
1970//===----------------------------------------------------------------------===//
1971//
1972//===----------------------------------------------------------------------===//
1973
1975 return F.getFnAttributeAsParsedInteger("InitialPSInputAddr", 0);
1976}
1977
1979 // As a safe default always respond as if PS has color exports.
1980 return F.getFnAttributeAsParsedInteger(
1981 "amdgpu-color-export",
1982 F.getCallingConv() == CallingConv::AMDGPU_PS ? 1 : 0) != 0;
1983}
1984
1986 return F.getFnAttributeAsParsedInteger("amdgpu-depth-export", 0) != 0;
1987}
1988
1990 switch(cc) {
2000 return true;
2001 default:
2002 return false;
2003 }
2004}
2005
2007 return isShader(cc) || cc == CallingConv::AMDGPU_Gfx;
2008}
2009
2011 return !isGraphics(cc) || cc == CallingConv::AMDGPU_CS;
2012}
2013
2015 switch (CC) {
2025 return true;
2026 default:
2027 return false;
2028 }
2029}
2030
2032 switch (CC) {
2034 return true;
2035 default:
2036 return isEntryFunctionCC(CC) || isChainCC(CC);
2037 }
2038}
2039
2041 switch (CC) {
2044 return true;
2045 default:
2046 return false;
2047 }
2048}
2049
2050bool isKernelCC(const Function *Func) {
2051 return AMDGPU::isModuleEntryFunctionCC(Func->getCallingConv());
2052}
2053
2054bool hasXNACK(const MCSubtargetInfo &STI) {
2055 return STI.hasFeature(AMDGPU::FeatureXNACK);
2056}
2057
2058bool hasSRAMECC(const MCSubtargetInfo &STI) {
2059 return STI.hasFeature(AMDGPU::FeatureSRAMECC);
2060}
2061
2063 return STI.hasFeature(AMDGPU::FeatureMIMG_R128) && !STI.hasFeature(AMDGPU::FeatureR128A16);
2064}
2065
2066bool hasA16(const MCSubtargetInfo &STI) {
2067 return STI.hasFeature(AMDGPU::FeatureA16);
2068}
2069
2070bool hasG16(const MCSubtargetInfo &STI) {
2071 return STI.hasFeature(AMDGPU::FeatureG16);
2072}
2073
2075 return !STI.hasFeature(AMDGPU::FeatureUnpackedD16VMem) && !isCI(STI) &&
2076 !isSI(STI);
2077}
2078
2079bool hasGDS(const MCSubtargetInfo &STI) {
2080 return STI.hasFeature(AMDGPU::FeatureGDS);
2081}
2082
2083unsigned getNSAMaxSize(const MCSubtargetInfo &STI, bool HasSampler) {
2084 auto Version = getIsaVersion(STI.getCPU());
2085 if (Version.Major == 10)
2086 return Version.Minor >= 3 ? 13 : 5;
2087 if (Version.Major == 11)
2088 return 5;
2089 if (Version.Major >= 12)
2090 return HasSampler ? 4 : 5;
2091 return 0;
2092}
2093
2094unsigned getMaxNumUserSGPRs(const MCSubtargetInfo &STI) { return 16; }
2095
2096bool isSI(const MCSubtargetInfo &STI) {
2097 return STI.hasFeature(AMDGPU::FeatureSouthernIslands);
2098}
2099
2100bool isCI(const MCSubtargetInfo &STI) {
2101 return STI.hasFeature(AMDGPU::FeatureSeaIslands);
2102}
2103
2104bool isVI(const MCSubtargetInfo &STI) {
2105 return STI.hasFeature(AMDGPU::FeatureVolcanicIslands);
2106}
2107
2108bool isGFX9(const MCSubtargetInfo &STI) {
2109 return STI.hasFeature(AMDGPU::FeatureGFX9);
2110}
2111
2113 return isGFX9(STI) || isGFX10(STI);
2114}
2115
2117 return isGFX9(STI) || isGFX10(STI) || isGFX11(STI);
2118}
2119
2121 return isVI(STI) || isGFX9(STI) || isGFX10(STI);
2122}
2123
2124bool isGFX8Plus(const MCSubtargetInfo &STI) {
2125 return isVI(STI) || isGFX9Plus(STI);
2126}
2127
2128bool isGFX9Plus(const MCSubtargetInfo &STI) {
2129 return isGFX9(STI) || isGFX10Plus(STI);
2130}
2131
2132bool isNotGFX9Plus(const MCSubtargetInfo &STI) { return !isGFX9Plus(STI); }
2133
2134bool isGFX10(const MCSubtargetInfo &STI) {
2135 return STI.hasFeature(AMDGPU::FeatureGFX10);
2136}
2137
2139 return isGFX10(STI) || isGFX11(STI);
2140}
2141
2143 return isGFX10(STI) || isGFX11Plus(STI);
2144}
2145
2146bool isGFX11(const MCSubtargetInfo &STI) {
2147 return STI.hasFeature(AMDGPU::FeatureGFX11);
2148}
2149
2151 return isGFX11(STI) || isGFX12Plus(STI);
2152}
2153
2154bool isGFX12(const MCSubtargetInfo &STI) {
2155 return STI.getFeatureBits()[AMDGPU::FeatureGFX12];
2156}
2157
2158bool isGFX12Plus(const MCSubtargetInfo &STI) { return isGFX12(STI); }
2159
2160bool isNotGFX12Plus(const MCSubtargetInfo &STI) { return !isGFX12Plus(STI); }
2161
2163 return !isGFX11Plus(STI);
2164}
2165
2167 return isSI(STI) || isCI(STI) || isVI(STI) || isGFX9(STI);
2168}
2169
2171 return isGFX10(STI) && !AMDGPU::isGFX10_BEncoding(STI);
2172}
2173
2175 return STI.hasFeature(AMDGPU::FeatureGCN3Encoding);
2176}
2177
2179 return STI.hasFeature(AMDGPU::FeatureGFX10_AEncoding);
2180}
2181
2183 return STI.hasFeature(AMDGPU::FeatureGFX10_BEncoding);
2184}
2185
2187 return STI.hasFeature(AMDGPU::FeatureGFX10_3Insts);
2188}
2189
2191 return isGFX10_BEncoding(STI) && !isGFX12Plus(STI);
2192}
2193
2194bool isGFX90A(const MCSubtargetInfo &STI) {
2195 return STI.hasFeature(AMDGPU::FeatureGFX90AInsts);
2196}
2197
2198bool isGFX940(const MCSubtargetInfo &STI) {
2199 return STI.hasFeature(AMDGPU::FeatureGFX940Insts);
2200}
2201
2203 return STI.hasFeature(AMDGPU::FeatureArchitectedFlatScratch);
2204}
2205
2207 return STI.hasFeature(AMDGPU::FeatureMAIInsts);
2208}
2209
2210bool hasVOPD(const MCSubtargetInfo &STI) {
2211 return STI.hasFeature(AMDGPU::FeatureVOPD);
2212}
2213
2215 return STI.hasFeature(AMDGPU::FeatureDPPSrc1SGPR);
2216}
2217
2219 return STI.hasFeature(AMDGPU::FeatureKernargPreload);
2220}
2221
2222int32_t getTotalNumVGPRs(bool has90AInsts, int32_t ArgNumAGPR,
2223 int32_t ArgNumVGPR) {
2224 if (has90AInsts && ArgNumAGPR)
2225 return alignTo(ArgNumVGPR, 4) + ArgNumAGPR;
2226 return std::max(ArgNumVGPR, ArgNumAGPR);
2227}
2228
2229bool isSGPR(unsigned Reg, const MCRegisterInfo* TRI) {
2230 const MCRegisterClass SGPRClass = TRI->getRegClass(AMDGPU::SReg_32RegClassID);
2231 const unsigned FirstSubReg = TRI->getSubReg(Reg, AMDGPU::sub0);
2232 return SGPRClass.contains(FirstSubReg != 0 ? FirstSubReg : Reg) ||
2233 Reg == AMDGPU::SCC;
2234}
2235
2237 return MRI.getEncodingValue(Reg) & AMDGPU::HWEncoding::IS_HI16;
2238}
2239
2240#define MAP_REG2REG \
2241 using namespace AMDGPU; \
2242 switch(Reg) { \
2243 default: return Reg; \
2244 CASE_CI_VI(FLAT_SCR) \
2245 CASE_CI_VI(FLAT_SCR_LO) \
2246 CASE_CI_VI(FLAT_SCR_HI) \
2247 CASE_VI_GFX9PLUS(TTMP0) \
2248 CASE_VI_GFX9PLUS(TTMP1) \
2249 CASE_VI_GFX9PLUS(TTMP2) \
2250 CASE_VI_GFX9PLUS(TTMP3) \
2251 CASE_VI_GFX9PLUS(TTMP4) \
2252 CASE_VI_GFX9PLUS(TTMP5) \
2253 CASE_VI_GFX9PLUS(TTMP6) \
2254 CASE_VI_GFX9PLUS(TTMP7) \
2255 CASE_VI_GFX9PLUS(TTMP8) \
2256 CASE_VI_GFX9PLUS(TTMP9) \
2257 CASE_VI_GFX9PLUS(TTMP10) \
2258 CASE_VI_GFX9PLUS(TTMP11) \
2259 CASE_VI_GFX9PLUS(TTMP12) \
2260 CASE_VI_GFX9PLUS(TTMP13) \
2261 CASE_VI_GFX9PLUS(TTMP14) \
2262 CASE_VI_GFX9PLUS(TTMP15) \
2263 CASE_VI_GFX9PLUS(TTMP0_TTMP1) \
2264 CASE_VI_GFX9PLUS(TTMP2_TTMP3) \
2265 CASE_VI_GFX9PLUS(TTMP4_TTMP5) \
2266 CASE_VI_GFX9PLUS(TTMP6_TTMP7) \
2267 CASE_VI_GFX9PLUS(TTMP8_TTMP9) \
2268 CASE_VI_GFX9PLUS(TTMP10_TTMP11) \
2269 CASE_VI_GFX9PLUS(TTMP12_TTMP13) \
2270 CASE_VI_GFX9PLUS(TTMP14_TTMP15) \
2271 CASE_VI_GFX9PLUS(TTMP0_TTMP1_TTMP2_TTMP3) \
2272 CASE_VI_GFX9PLUS(TTMP4_TTMP5_TTMP6_TTMP7) \
2273 CASE_VI_GFX9PLUS(TTMP8_TTMP9_TTMP10_TTMP11) \
2274 CASE_VI_GFX9PLUS(TTMP12_TTMP13_TTMP14_TTMP15) \
2275 CASE_VI_GFX9PLUS(TTMP0_TTMP1_TTMP2_TTMP3_TTMP4_TTMP5_TTMP6_TTMP7) \
2276 CASE_VI_GFX9PLUS(TTMP4_TTMP5_TTMP6_TTMP7_TTMP8_TTMP9_TTMP10_TTMP11) \
2277 CASE_VI_GFX9PLUS(TTMP8_TTMP9_TTMP10_TTMP11_TTMP12_TTMP13_TTMP14_TTMP15) \
2278 CASE_VI_GFX9PLUS(TTMP0_TTMP1_TTMP2_TTMP3_TTMP4_TTMP5_TTMP6_TTMP7_TTMP8_TTMP9_TTMP10_TTMP11_TTMP12_TTMP13_TTMP14_TTMP15) \
2279 CASE_GFXPRE11_GFX11PLUS(M0) \
2280 CASE_GFXPRE11_GFX11PLUS(SGPR_NULL) \
2281 CASE_GFXPRE11_GFX11PLUS_TO(SGPR_NULL64, SGPR_NULL) \
2282 }
2283
2284#define CASE_CI_VI(node) \
2285 assert(!isSI(STI)); \
2286 case node: return isCI(STI) ? node##_ci : node##_vi;
2287
2288#define CASE_VI_GFX9PLUS(node) \
2289 case node: return isGFX9Plus(STI) ? node##_gfx9plus : node##_vi;
2290
2291#define CASE_GFXPRE11_GFX11PLUS(node) \
2292 case node: return isGFX11Plus(STI) ? node##_gfx11plus : node##_gfxpre11;
2293
2294#define CASE_GFXPRE11_GFX11PLUS_TO(node, result) \
2295 case node: return isGFX11Plus(STI) ? result##_gfx11plus : result##_gfxpre11;
2296
2297unsigned getMCReg(unsigned Reg, const MCSubtargetInfo &STI) {
2298 if (STI.getTargetTriple().getArch() == Triple::r600)
2299 return Reg;
2301}
2302
2303#undef CASE_CI_VI
2304#undef CASE_VI_GFX9PLUS
2305#undef CASE_GFXPRE11_GFX11PLUS
2306#undef CASE_GFXPRE11_GFX11PLUS_TO
2307
2308#define CASE_CI_VI(node) case node##_ci: case node##_vi: return node;
2309#define CASE_VI_GFX9PLUS(node) case node##_vi: case node##_gfx9plus: return node;
2310#define CASE_GFXPRE11_GFX11PLUS(node) case node##_gfx11plus: case node##_gfxpre11: return node;
2311#define CASE_GFXPRE11_GFX11PLUS_TO(node, result)
2312
2313unsigned mc2PseudoReg(unsigned Reg) {
2315}
2316
2317bool isInlineValue(unsigned Reg) {
2318 switch (Reg) {
2319 case AMDGPU::SRC_SHARED_BASE_LO:
2320 case AMDGPU::SRC_SHARED_BASE:
2321 case AMDGPU::SRC_SHARED_LIMIT_LO:
2322 case AMDGPU::SRC_SHARED_LIMIT:
2323 case AMDGPU::SRC_PRIVATE_BASE_LO:
2324 case AMDGPU::SRC_PRIVATE_BASE:
2325 case AMDGPU::SRC_PRIVATE_LIMIT_LO:
2326 case AMDGPU::SRC_PRIVATE_LIMIT:
2327 case AMDGPU::SRC_POPS_EXITING_WAVE_ID:
2328 return true;
2329 case AMDGPU::SRC_VCCZ:
2330 case AMDGPU::SRC_EXECZ:
2331 case AMDGPU::SRC_SCC:
2332 return true;
2333 case AMDGPU::SGPR_NULL:
2334 return true;
2335 default:
2336 return false;
2337 }
2338}
2339
2340#undef CASE_CI_VI
2341#undef CASE_VI_GFX9PLUS
2342#undef CASE_GFXPRE11_GFX11PLUS
2343#undef CASE_GFXPRE11_GFX11PLUS_TO
2344#undef MAP_REG2REG
2345
2346bool isSISrcOperand(const MCInstrDesc &Desc, unsigned OpNo) {
2347 assert(OpNo < Desc.NumOperands);
2348 unsigned OpType = Desc.operands()[OpNo].OperandType;
2349 return OpType >= AMDGPU::OPERAND_SRC_FIRST &&
2350 OpType <= AMDGPU::OPERAND_SRC_LAST;
2351}
2352
2353bool isKImmOperand(const MCInstrDesc &Desc, unsigned OpNo) {
2354 assert(OpNo < Desc.NumOperands);
2355 unsigned OpType = Desc.operands()[OpNo].OperandType;
2356 return OpType >= AMDGPU::OPERAND_KIMM_FIRST &&
2357 OpType <= AMDGPU::OPERAND_KIMM_LAST;
2358}
2359
2360bool isSISrcFPOperand(const MCInstrDesc &Desc, unsigned OpNo) {
2361 assert(OpNo < Desc.NumOperands);
2362 unsigned OpType = Desc.operands()[OpNo].OperandType;
2363 switch (OpType) {
2380 return true;
2381 default:
2382 return false;
2383 }
2384}
2385
2386bool isSISrcInlinableOperand(const MCInstrDesc &Desc, unsigned OpNo) {
2387 assert(OpNo < Desc.NumOperands);
2388 unsigned OpType = Desc.operands()[OpNo].OperandType;
2389 return (OpType >= AMDGPU::OPERAND_REG_INLINE_C_FIRST &&
2393}
2394
2395// Avoid using MCRegisterClass::getSize, since that function will go away
2396// (move from MC* level to Target* level). Return size in bits.
2397unsigned getRegBitWidth(unsigned RCID) {
2398 switch (RCID) {
2399 case AMDGPU::SGPR_LO16RegClassID:
2400 case AMDGPU::AGPR_LO16RegClassID:
2401 return 16;
2402 case AMDGPU::SGPR_32RegClassID:
2403 case AMDGPU::VGPR_32RegClassID:
2404 case AMDGPU::VRegOrLds_32RegClassID:
2405 case AMDGPU::AGPR_32RegClassID:
2406 case AMDGPU::VS_32RegClassID:
2407 case AMDGPU::AV_32RegClassID:
2408 case AMDGPU::SReg_32RegClassID:
2409 case AMDGPU::SReg_32_XM0RegClassID:
2410 case AMDGPU::SRegOrLds_32RegClassID:
2411 return 32;
2412 case AMDGPU::SGPR_64RegClassID:
2413 case AMDGPU::VS_64RegClassID:
2414 case AMDGPU::SReg_64RegClassID:
2415 case AMDGPU::VReg_64RegClassID:
2416 case AMDGPU::AReg_64RegClassID:
2417 case AMDGPU::SReg_64_XEXECRegClassID:
2418 case AMDGPU::VReg_64_Align2RegClassID:
2419 case AMDGPU::AReg_64_Align2RegClassID:
2420 case AMDGPU::AV_64RegClassID:
2421 case AMDGPU::AV_64_Align2RegClassID:
2422 return 64;
2423 case AMDGPU::SGPR_96RegClassID:
2424 case AMDGPU::SReg_96RegClassID:
2425 case AMDGPU::VReg_96RegClassID:
2426 case AMDGPU::AReg_96RegClassID:
2427 case AMDGPU::VReg_96_Align2RegClassID:
2428 case AMDGPU::AReg_96_Align2RegClassID:
2429 case AMDGPU::AV_96RegClassID:
2430 case AMDGPU::AV_96_Align2RegClassID:
2431 return 96;
2432 case AMDGPU::SGPR_128RegClassID:
2433 case AMDGPU::SReg_128RegClassID:
2434 case AMDGPU::VReg_128RegClassID:
2435 case AMDGPU::AReg_128RegClassID:
2436 case AMDGPU::VReg_128_Align2RegClassID:
2437 case AMDGPU::AReg_128_Align2RegClassID:
2438 case AMDGPU::AV_128RegClassID:
2439 case AMDGPU::AV_128_Align2RegClassID:
2440 return 128;
2441 case AMDGPU::SGPR_160RegClassID:
2442 case AMDGPU::SReg_160RegClassID:
2443 case AMDGPU::VReg_160RegClassID:
2444 case AMDGPU::AReg_160RegClassID:
2445 case AMDGPU::VReg_160_Align2RegClassID:
2446 case AMDGPU::AReg_160_Align2RegClassID:
2447 case AMDGPU::AV_160RegClassID:
2448 case AMDGPU::AV_160_Align2RegClassID:
2449 return 160;
2450 case AMDGPU::SGPR_192RegClassID:
2451 case AMDGPU::SReg_192RegClassID:
2452 case AMDGPU::VReg_192RegClassID:
2453 case AMDGPU::AReg_192RegClassID:
2454 case AMDGPU::VReg_192_Align2RegClassID:
2455 case AMDGPU::AReg_192_Align2RegClassID:
2456 case AMDGPU::AV_192RegClassID:
2457 case AMDGPU::AV_192_Align2RegClassID:
2458 return 192;
2459 case AMDGPU::SGPR_224RegClassID:
2460 case AMDGPU::SReg_224RegClassID:
2461 case AMDGPU::VReg_224RegClassID:
2462 case AMDGPU::AReg_224RegClassID:
2463 case AMDGPU::VReg_224_Align2RegClassID:
2464 case AMDGPU::AReg_224_Align2RegClassID:
2465 case AMDGPU::AV_224RegClassID:
2466 case AMDGPU::AV_224_Align2RegClassID:
2467 return 224;
2468 case AMDGPU::SGPR_256RegClassID:
2469 case AMDGPU::SReg_256RegClassID:
2470 case AMDGPU::VReg_256RegClassID:
2471 case AMDGPU::AReg_256RegClassID:
2472 case AMDGPU::VReg_256_Align2RegClassID:
2473 case AMDGPU::AReg_256_Align2RegClassID:
2474 case AMDGPU::AV_256RegClassID:
2475 case AMDGPU::AV_256_Align2RegClassID:
2476 return 256;
2477 case AMDGPU::SGPR_288RegClassID:
2478 case AMDGPU::SReg_288RegClassID:
2479 case AMDGPU::VReg_288RegClassID:
2480 case AMDGPU::AReg_288RegClassID:
2481 case AMDGPU::VReg_288_Align2RegClassID:
2482 case AMDGPU::AReg_288_Align2RegClassID:
2483 case AMDGPU::AV_288RegClassID:
2484 case AMDGPU::AV_288_Align2RegClassID:
2485 return 288;
2486 case AMDGPU::SGPR_320RegClassID:
2487 case AMDGPU::SReg_320RegClassID:
2488 case AMDGPU::VReg_320RegClassID:
2489 case AMDGPU::AReg_320RegClassID:
2490 case AMDGPU::VReg_320_Align2RegClassID:
2491 case AMDGPU::AReg_320_Align2RegClassID:
2492 case AMDGPU::AV_320RegClassID:
2493 case AMDGPU::AV_320_Align2RegClassID:
2494 return 320;
2495 case AMDGPU::SGPR_352RegClassID:
2496 case AMDGPU::SReg_352RegClassID:
2497 case AMDGPU::VReg_352RegClassID:
2498 case AMDGPU::AReg_352RegClassID:
2499 case AMDGPU::VReg_352_Align2RegClassID:
2500 case AMDGPU::AReg_352_Align2RegClassID:
2501 case AMDGPU::AV_352RegClassID:
2502 case AMDGPU::AV_352_Align2RegClassID:
2503 return 352;
2504 case AMDGPU::SGPR_384RegClassID:
2505 case AMDGPU::SReg_384RegClassID:
2506 case AMDGPU::VReg_384RegClassID:
2507 case AMDGPU::AReg_384RegClassID:
2508 case AMDGPU::VReg_384_Align2RegClassID:
2509 case AMDGPU::AReg_384_Align2RegClassID:
2510 case AMDGPU::AV_384RegClassID:
2511 case AMDGPU::AV_384_Align2RegClassID:
2512 return 384;
2513 case AMDGPU::SGPR_512RegClassID:
2514 case AMDGPU::SReg_512RegClassID:
2515 case AMDGPU::VReg_512RegClassID:
2516 case AMDGPU::AReg_512RegClassID:
2517 case AMDGPU::VReg_512_Align2RegClassID:
2518 case AMDGPU::AReg_512_Align2RegClassID:
2519 case AMDGPU::AV_512RegClassID:
2520 case AMDGPU::AV_512_Align2RegClassID:
2521 return 512;
2522 case AMDGPU::SGPR_1024RegClassID:
2523 case AMDGPU::SReg_1024RegClassID:
2524 case AMDGPU::VReg_1024RegClassID:
2525 case AMDGPU::AReg_1024RegClassID:
2526 case AMDGPU::VReg_1024_Align2RegClassID:
2527 case AMDGPU::AReg_1024_Align2RegClassID:
2528 case AMDGPU::AV_1024RegClassID:
2529 case AMDGPU::AV_1024_Align2RegClassID:
2530 return 1024;
2531 default:
2532 llvm_unreachable("Unexpected register class");
2533 }
2534}
2535
2536unsigned getRegBitWidth(const MCRegisterClass &RC) {
2537 return getRegBitWidth(RC.getID());
2538}
2539
2541 unsigned OpNo) {
2542 assert(OpNo < Desc.NumOperands);
2543 unsigned RCID = Desc.operands()[OpNo].RegClass;
2544 return getRegBitWidth(RCID) / 8;
2545}
2546
2547bool isInlinableLiteral64(int64_t Literal, bool HasInv2Pi) {
2549 return true;
2550
2551 uint64_t Val = static_cast<uint64_t>(Literal);
2552 return (Val == llvm::bit_cast<uint64_t>(0.0)) ||
2553 (Val == llvm::bit_cast<uint64_t>(1.0)) ||
2554 (Val == llvm::bit_cast<uint64_t>(-1.0)) ||
2555 (Val == llvm::bit_cast<uint64_t>(0.5)) ||
2556 (Val == llvm::bit_cast<uint64_t>(-0.5)) ||
2557 (Val == llvm::bit_cast<uint64_t>(2.0)) ||
2558 (Val == llvm::bit_cast<uint64_t>(-2.0)) ||
2559 (Val == llvm::bit_cast<uint64_t>(4.0)) ||
2560 (Val == llvm::bit_cast<uint64_t>(-4.0)) ||
2561 (Val == 0x3fc45f306dc9c882 && HasInv2Pi);
2562}
2563
2564bool isInlinableLiteral32(int32_t Literal, bool HasInv2Pi) {
2566 return true;
2567
2568 // The actual type of the operand does not seem to matter as long
2569 // as the bits match one of the inline immediate values. For example:
2570 //
2571 // -nan has the hexadecimal encoding of 0xfffffffe which is -2 in decimal,
2572 // so it is a legal inline immediate.
2573 //
2574 // 1065353216 has the hexadecimal encoding 0x3f800000 which is 1.0f in
2575 // floating-point, so it is a legal inline immediate.
2576
2577 uint32_t Val = static_cast<uint32_t>(Literal);
2578 return (Val == llvm::bit_cast<uint32_t>(0.0f)) ||
2579 (Val == llvm::bit_cast<uint32_t>(1.0f)) ||
2580 (Val == llvm::bit_cast<uint32_t>(-1.0f)) ||
2581 (Val == llvm::bit_cast<uint32_t>(0.5f)) ||
2582 (Val == llvm::bit_cast<uint32_t>(-0.5f)) ||
2583 (Val == llvm::bit_cast<uint32_t>(2.0f)) ||
2584 (Val == llvm::bit_cast<uint32_t>(-2.0f)) ||
2585 (Val == llvm::bit_cast<uint32_t>(4.0f)) ||
2586 (Val == llvm::bit_cast<uint32_t>(-4.0f)) ||
2587 (Val == 0x3e22f983 && HasInv2Pi);
2588}
2589
2590bool isInlinableLiteralBF16(int16_t Literal, bool HasInv2Pi) {
2591 if (!HasInv2Pi)
2592 return false;
2594 return true;
2595 uint16_t Val = static_cast<uint16_t>(Literal);
2596 return Val == 0x3F00 || // 0.5
2597 Val == 0xBF00 || // -0.5
2598 Val == 0x3F80 || // 1.0
2599 Val == 0xBF80 || // -1.0
2600 Val == 0x4000 || // 2.0
2601 Val == 0xC000 || // -2.0
2602 Val == 0x4080 || // 4.0
2603 Val == 0xC080 || // -4.0
2604 Val == 0x3E22; // 1.0 / (2.0 * pi)
2605}
2606
2607bool isInlinableLiteralI16(int32_t Literal, bool HasInv2Pi) {
2608 return isInlinableLiteral32(Literal, HasInv2Pi);
2609}
2610
2611bool isInlinableLiteralFP16(int16_t Literal, bool HasInv2Pi) {
2612 if (!HasInv2Pi)
2613 return false;
2615 return true;
2616 uint16_t Val = static_cast<uint16_t>(Literal);
2617 return Val == 0x3C00 || // 1.0
2618 Val == 0xBC00 || // -1.0
2619 Val == 0x3800 || // 0.5
2620 Val == 0xB800 || // -0.5
2621 Val == 0x4000 || // 2.0
2622 Val == 0xC000 || // -2.0
2623 Val == 0x4400 || // 4.0
2624 Val == 0xC400 || // -4.0
2625 Val == 0x3118; // 1/2pi
2626}
2627
2628std::optional<unsigned> getInlineEncodingV216(bool IsFloat, uint32_t Literal) {
2629 // Unfortunately, the Instruction Set Architecture Reference Guide is
2630 // misleading about how the inline operands work for (packed) 16-bit
2631 // instructions. In a nutshell, the actual HW behavior is:
2632 //
2633 // - integer encodings (-16 .. 64) are always produced as sign-extended
2634 // 32-bit values
2635 // - float encodings are produced as:
2636 // - for F16 instructions: corresponding half-precision float values in
2637 // the LSBs, 0 in the MSBs
2638 // - for UI16 instructions: corresponding single-precision float value
2639 int32_t Signed = static_cast<int32_t>(Literal);
2640 if (Signed >= 0 && Signed <= 64)
2641 return 128 + Signed;
2642
2643 if (Signed >= -16 && Signed <= -1)
2644 return 192 + std::abs(Signed);
2645
2646 if (IsFloat) {
2647 // clang-format off
2648 switch (Literal) {
2649 case 0x3800: return 240; // 0.5
2650 case 0xB800: return 241; // -0.5
2651 case 0x3C00: return 242; // 1.0
2652 case 0xBC00: return 243; // -1.0
2653 case 0x4000: return 244; // 2.0
2654 case 0xC000: return 245; // -2.0
2655 case 0x4400: return 246; // 4.0
2656 case 0xC400: return 247; // -4.0
2657 case 0x3118: return 248; // 1.0 / (2.0 * pi)
2658 default: break;
2659 }
2660 // clang-format on
2661 } else {
2662 // clang-format off
2663 switch (Literal) {
2664 case 0x3F000000: return 240; // 0.5
2665 case 0xBF000000: return 241; // -0.5
2666 case 0x3F800000: return 242; // 1.0
2667 case 0xBF800000: return 243; // -1.0
2668 case 0x40000000: return 244; // 2.0
2669 case 0xC0000000: return 245; // -2.0
2670 case 0x40800000: return 246; // 4.0
2671 case 0xC0800000: return 247; // -4.0
2672 case 0x3E22F983: return 248; // 1.0 / (2.0 * pi)
2673 default: break;
2674 }
2675 // clang-format on
2676 }
2677
2678 return {};
2679}
2680
2681// Encoding of the literal as an inline constant for a V_PK_*_IU16 instruction
2682// or nullopt.
2683std::optional<unsigned> getInlineEncodingV2I16(uint32_t Literal) {
2684 return getInlineEncodingV216(false, Literal);
2685}
2686
2687// Encoding of the literal as an inline constant for a V_PK_*_BF16 instruction
2688// or nullopt.
2689std::optional<unsigned> getInlineEncodingV2BF16(uint32_t Literal) {
2690 int32_t Signed = static_cast<int32_t>(Literal);
2691 if (Signed >= 0 && Signed <= 64)
2692 return 128 + Signed;
2693
2694 if (Signed >= -16 && Signed <= -1)
2695 return 192 + std::abs(Signed);
2696
2697 // clang-format off
2698 switch (Literal) {
2699 case 0x3F00: return 240; // 0.5
2700 case 0xBF00: return 241; // -0.5
2701 case 0x3F80: return 242; // 1.0
2702 case 0xBF80: return 243; // -1.0
2703 case 0x4000: return 244; // 2.0
2704 case 0xC000: return 245; // -2.0
2705 case 0x4080: return 246; // 4.0
2706 case 0xC080: return 247; // -4.0
2707 case 0x3E22: return 248; // 1.0 / (2.0 * pi)
2708 default: break;
2709 }
2710 // clang-format on
2711
2712 return std::nullopt;
2713}
2714
2715// Encoding of the literal as an inline constant for a V_PK_*_F16 instruction
2716// or nullopt.
2717std::optional<unsigned> getInlineEncodingV2F16(uint32_t Literal) {
2718 return getInlineEncodingV216(true, Literal);
2719}
2720
2721// Whether the given literal can be inlined for a V_PK_* instruction.
2723 switch (OpType) {
2727 return getInlineEncodingV216(false, Literal).has_value();
2731 return getInlineEncodingV216(true, Literal).has_value();
2736 default:
2737 llvm_unreachable("bad packed operand type");
2738 }
2739}
2740
2741// Whether the given literal can be inlined for a V_PK_*_IU16 instruction.
2743 return getInlineEncodingV2I16(Literal).has_value();
2744}
2745
2746// Whether the given literal can be inlined for a V_PK_*_BF16 instruction.
2748 return getInlineEncodingV2BF16(Literal).has_value();
2749}
2750
2751// Whether the given literal can be inlined for a V_PK_*_F16 instruction.
2753 return getInlineEncodingV2F16(Literal).has_value();
2754}
2755
2756bool isValid32BitLiteral(uint64_t Val, bool IsFP64) {
2757 if (IsFP64)
2758 return !(Val & 0xffffffffu);
2759
2760 return isUInt<32>(Val) || isInt<32>(Val);
2761}
2762
2764 const Function *F = A->getParent();
2765
2766 // Arguments to compute shaders are never a source of divergence.
2767 CallingConv::ID CC = F->getCallingConv();
2768 switch (CC) {
2771 return true;
2782 // For non-compute shaders, SGPR inputs are marked with either inreg or
2783 // byval. Everything else is in VGPRs.
2784 return A->hasAttribute(Attribute::InReg) ||
2785 A->hasAttribute(Attribute::ByVal);
2786 default:
2787 // TODO: treat i1 as divergent?
2788 return A->hasAttribute(Attribute::InReg);
2789 }
2790}
2791
2792bool isArgPassedInSGPR(const CallBase *CB, unsigned ArgNo) {
2793 // Arguments to compute shaders are never a source of divergence.
2795 switch (CC) {
2798 return true;
2809 // For non-compute shaders, SGPR inputs are marked with either inreg or
2810 // byval. Everything else is in VGPRs.
2811 return CB->paramHasAttr(ArgNo, Attribute::InReg) ||
2812 CB->paramHasAttr(ArgNo, Attribute::ByVal);
2813 default:
2814 return CB->paramHasAttr(ArgNo, Attribute::InReg);
2815 }
2816}
2817
2818static bool hasSMEMByteOffset(const MCSubtargetInfo &ST) {
2819 return isGCN3Encoding(ST) || isGFX10Plus(ST);
2820}
2821
2823 int64_t EncodedOffset) {
2824 if (isGFX12Plus(ST))
2825 return isUInt<23>(EncodedOffset);
2826
2827 return hasSMEMByteOffset(ST) ? isUInt<20>(EncodedOffset)
2828 : isUInt<8>(EncodedOffset);
2829}
2830
2832 int64_t EncodedOffset,
2833 bool IsBuffer) {
2834 if (isGFX12Plus(ST))
2835 return isInt<24>(EncodedOffset);
2836
2837 return !IsBuffer &&
2839 isInt<21>(EncodedOffset);
2840}
2841
2842static bool isDwordAligned(uint64_t ByteOffset) {
2843 return (ByteOffset & 3) == 0;
2844}
2845
2847 uint64_t ByteOffset) {
2848 if (hasSMEMByteOffset(ST))
2849 return ByteOffset;
2850
2851 assert(isDwordAligned(ByteOffset));
2852 return ByteOffset >> 2;
2853}
2854
2855std::optional<int64_t> getSMRDEncodedOffset(const MCSubtargetInfo &ST,
2856 int64_t ByteOffset, bool IsBuffer,
2857 bool HasSOffset) {
2858 // For unbuffered smem loads, it is illegal for the Immediate Offset to be
2859 // negative if the resulting (Offset + (M0 or SOffset or zero) is negative.
2860 // Handle case where SOffset is not present.
2861 if (!IsBuffer && !HasSOffset && ByteOffset < 0 && hasSMRDSignedImmOffset(ST))
2862 return std::nullopt;
2863
2864 if (isGFX12Plus(ST)) // 24 bit signed offsets
2865 return isInt<24>(ByteOffset) ? std::optional<int64_t>(ByteOffset)
2866 : std::nullopt;
2867
2868 // The signed version is always a byte offset.
2869 if (!IsBuffer && hasSMRDSignedImmOffset(ST)) {
2871 return isInt<20>(ByteOffset) ? std::optional<int64_t>(ByteOffset)
2872 : std::nullopt;
2873 }
2874
2875 if (!isDwordAligned(ByteOffset) && !hasSMEMByteOffset(ST))
2876 return std::nullopt;
2877
2878 int64_t EncodedOffset = convertSMRDOffsetUnits(ST, ByteOffset);
2879 return isLegalSMRDEncodedUnsignedOffset(ST, EncodedOffset)
2880 ? std::optional<int64_t>(EncodedOffset)
2881 : std::nullopt;
2882}
2883
2884std::optional<int64_t> getSMRDEncodedLiteralOffset32(const MCSubtargetInfo &ST,
2885 int64_t ByteOffset) {
2886 if (!isCI(ST) || !isDwordAligned(ByteOffset))
2887 return std::nullopt;
2888
2889 int64_t EncodedOffset = convertSMRDOffsetUnits(ST, ByteOffset);
2890 return isUInt<32>(EncodedOffset) ? std::optional<int64_t>(EncodedOffset)
2891 : std::nullopt;
2892}
2893
2895 if (AMDGPU::isGFX10(ST))
2896 return 12;
2897
2898 if (AMDGPU::isGFX12(ST))
2899 return 24;
2900 return 13;
2901}
2902
2903namespace {
2904
2905struct SourceOfDivergence {
2906 unsigned Intr;
2907};
2908const SourceOfDivergence *lookupSourceOfDivergence(unsigned Intr);
2909
2910struct AlwaysUniform {
2911 unsigned Intr;
2912};
2913const AlwaysUniform *lookupAlwaysUniform(unsigned Intr);
2914
2915#define GET_SourcesOfDivergence_IMPL
2916#define GET_UniformIntrinsics_IMPL
2917#define GET_Gfx9BufferFormat_IMPL
2918#define GET_Gfx10BufferFormat_IMPL
2919#define GET_Gfx11PlusBufferFormat_IMPL
2920#include "AMDGPUGenSearchableTables.inc"
2921
2922} // end anonymous namespace
2923
2924bool isIntrinsicSourceOfDivergence(unsigned IntrID) {
2925 return lookupSourceOfDivergence(IntrID);
2926}
2927
2928bool isIntrinsicAlwaysUniform(unsigned IntrID) {
2929 return lookupAlwaysUniform(IntrID);
2930}
2931
2933 uint8_t NumComponents,
2934 uint8_t NumFormat,
2935 const MCSubtargetInfo &STI) {
2936 return isGFX11Plus(STI)
2937 ? getGfx11PlusBufferFormatInfo(BitsPerComp, NumComponents,
2938 NumFormat)
2939 : isGFX10(STI) ? getGfx10BufferFormatInfo(BitsPerComp,
2940 NumComponents, NumFormat)
2941 : getGfx9BufferFormatInfo(BitsPerComp,
2942 NumComponents, NumFormat);
2943}
2944
2946 const MCSubtargetInfo &STI) {
2947 return isGFX11Plus(STI) ? getGfx11PlusBufferFormatInfo(Format)
2948 : isGFX10(STI) ? getGfx10BufferFormatInfo(Format)
2949 : getGfx9BufferFormatInfo(Format);
2950}
2951
2953 for (auto OpName : { OpName::vdst, OpName::src0, OpName::src1,
2954 OpName::src2 }) {
2955 int Idx = getNamedOperandIdx(OpDesc.getOpcode(), OpName);
2956 if (Idx == -1)
2957 continue;
2958
2959 if (OpDesc.operands()[Idx].RegClass == AMDGPU::VReg_64RegClassID ||
2960 OpDesc.operands()[Idx].RegClass == AMDGPU::VReg_64_Align2RegClassID)
2961 return true;
2962 }
2963
2964 return false;
2965}
2966
2967bool isDPALU_DPP(const MCInstrDesc &OpDesc) {
2968 return hasAny64BitVGPROperands(OpDesc);
2969}
2970
2972 // Currently this is 128 for all subtargets
2973 return 128;
2974}
2975
2976} // namespace AMDGPU
2977
2980 switch (S) {
2982 OS << "Unsupported";
2983 break;
2985 OS << "Any";
2986 break;
2988 OS << "Off";
2989 break;
2991 OS << "On";
2992 break;
2993 }
2994 return OS;
2995}
2996
2997} // namespace llvm
unsigned const MachineRegisterInfo * MRI
#define MAP_REG2REG
unsigned Intr
static llvm::cl::opt< unsigned > DefaultAMDHSACodeObjectVersion("amdhsa-code-object-version", llvm::cl::Hidden, llvm::cl::init(llvm::AMDGPU::AMDHSA_COV5), llvm::cl::desc("Set default AMDHSA Code Object Version (module flag " "or asm directive still take priority if present)"))
Provides AMDGPU specific target descriptions.
AMDHSA kernel descriptor definitions.
MC layer struct for AMDGPUMCKernelCodeT, provides MCExpr functionality where required.
@ AMD_CODE_PROPERTY_ENABLE_WAVEFRONT_SIZE32
This file contains the simple types necessary to represent the attributes associated with functions a...
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
Analysis containing CSE Info
Definition: CSEInfo.cpp:27
This file contains the declarations for the subclasses of Constant, which represent the different fla...
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
std::string Name
uint64_t Size
#define F(x, y, z)
Definition: MD5.cpp:55
unsigned const TargetRegisterInfo * TRI
unsigned Reg
#define S_00B848_MEM_ORDERED(x)
Definition: SIDefines.h:1151
#define S_00B848_WGP_MODE(x)
Definition: SIDefines.h:1148
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
raw_pwrite_stream & OS
This file contains some functions that are useful when dealing with strings.
void setTargetIDFromFeaturesString(StringRef FS)
TargetIDSetting getXnackSetting() const
AMDGPUTargetID(const MCSubtargetInfo &STI)
void setTargetIDFromTargetIDStream(StringRef TargetID)
TargetIDSetting getSramEccSetting() const
unsigned getIndexInParsedOperands(unsigned CompOprIdx) const
unsigned getIndexOfDstInParsedOperands() const
unsigned getIndexOfSrcInParsedOperands(unsigned CompSrcIdx) const
unsigned getCompParsedSrcOperandsNum() const
std::optional< unsigned > getInvalidCompOperandIndex(std::function< unsigned(unsigned, unsigned)> GetRegIdx, bool SkipSrc=false) const
std::array< unsigned, Component::MAX_OPR_NUM > RegIndices
Definition: Any.h:28
This class represents an incoming formal argument to a Function.
Definition: Argument.h:31
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
Definition: InstrTypes.h:1236
CallingConv::ID getCallingConv() const
Definition: InstrTypes.h:1523
bool paramHasAttr(unsigned ArgNo, Attribute::AttrKind Kind) const
Determine whether the argument or parameter has the given attribute.
This class represents an Operation in the Expression.
constexpr bool test(unsigned I) const
unsigned getAddressSpace() const
Definition: GlobalValue.h:205
This is an important class for using LLVM in a threaded context.
Definition: LLVMContext.h:67
void emitError(uint64_t LocCookie, const Twine &ErrorStr)
emitError - Emit an error message to the currently installed error handler with optional location inf...
Describe properties that are true of each instruction in the target description file.
Definition: MCInstrDesc.h:198
unsigned getNumOperands() const
Return the number of declared MachineOperands for this MachineInstruction.
Definition: MCInstrDesc.h:237
ArrayRef< MCOperandInfo > operands() const
Definition: MCInstrDesc.h:239
unsigned getNumDefs() const
Return the number of MachineOperands that are register definitions.
Definition: MCInstrDesc.h:248
int getOperandConstraint(unsigned OpNum, MCOI::OperandConstraint Constraint) const
Returns the value of the specified operand constraint if it is present.
Definition: MCInstrDesc.h:219
unsigned getOpcode() const
Return the opcode number for this descriptor.
Definition: MCInstrDesc.h:230
Interface to description of machine instruction set.
Definition: MCInstrInfo.h:26
const MCInstrDesc & get(unsigned Opcode) const
Return the machine instruction descriptor that corresponds to the specified instruction opcode.
Definition: MCInstrInfo.h:63
MCRegisterClass - Base class of TargetRegisterClass.
unsigned getID() const
getID() - Return the register class ID number.
bool contains(MCRegister Reg) const
contains - Return true if the specified register is included in this register class.
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc object...
Wrapper class representing physical registers. Should be passed by value.
Definition: MCRegister.h:33
Generic base class for all target subtargets.
bool hasFeature(unsigned Feature) const
const Triple & getTargetTriple() const
const FeatureBitset & getFeatureBits() const
StringRef getCPU() const
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
A wrapper around a string literal that serves as a proxy for constructing global tables of StringRefs...
Definition: StringRef.h:838
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
std::pair< StringRef, StringRef > split(char Separator) const
Split into two substrings around the first occurrence of a separator character.
Definition: StringRef.h:685
bool getAsInteger(unsigned Radix, T &Result) const
Parse the current string as an integer of the specified radix.
Definition: StringRef.h:455
std::string str() const
str - Get the contents as an std::string.
Definition: StringRef.h:215
constexpr bool empty() const
empty - Check if the string is empty.
Definition: StringRef.h:134
constexpr size_t size() const
size - Get the string size.
Definition: StringRef.h:137
bool ends_with(StringRef Suffix) const
Check if this string ends with the given Suffix.
Definition: StringRef.h:262
Manages the enabling and disabling of subtarget specific features.
const std::vector< std::string > & getFeatures() const
Returns the vector of individual subtarget features.
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
OSType getOS() const
Get the parsed operating system type of this triple.
Definition: Triple.h:382
ArchType getArch() const
Get the parsed architecture type of this triple.
Definition: Triple.h:373
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition: Twine.h:81
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
A raw_ostream that writes to an std::string.
Definition: raw_ostream.h:661
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ CONSTANT_ADDRESS_32BIT
Address space for 32-bit constant memory.
@ LOCAL_ADDRESS
Address space for local memory.
@ CONSTANT_ADDRESS
Address space for constant memory (VTX2).
@ GLOBAL_ADDRESS
Address space for global memory (RAT0, VTX0).
bool decodeDepCtr(unsigned Code, int &Id, StringRef &Name, unsigned &Val, bool &IsDefault, const MCSubtargetInfo &STI)
unsigned encodeFieldVaVdst(unsigned Encoded, unsigned VaVdst)
unsigned decodeFieldSaSdst(unsigned Encoded)
unsigned encodeFieldVmVsrc(unsigned Encoded, unsigned VmVsrc)
int encodeDepCtr(const StringRef Name, int64_t Val, unsigned &UsedOprMask, const MCSubtargetInfo &STI)
unsigned encodeFieldSaSdst(unsigned Encoded, unsigned SaSdst)
const CustomOperandVal DepCtrInfo[]
bool isSymbolicDepCtrEncoding(unsigned Code, bool &HasNonDefaultVal, const MCSubtargetInfo &STI)
unsigned decodeFieldVaVdst(unsigned Encoded)
int getDefaultDepCtrEncoding(const MCSubtargetInfo &STI)
unsigned decodeFieldVmVsrc(unsigned Encoded)
bool isSupportedTgtId(unsigned Id, const MCSubtargetInfo &STI)
static constexpr ExpTgt ExpTgtInfo[]
bool getTgtName(unsigned Id, StringRef &Name, int &Index)
unsigned getTgtId(const StringRef Name)
constexpr uint32_t VersionMajor
HSA metadata major version.
unsigned getVGPREncodingGranule(const MCSubtargetInfo *STI, std::optional< bool > EnableWavefrontSize32)
unsigned getTotalNumVGPRs(const MCSubtargetInfo *STI)
unsigned getWavesPerEUForWorkGroup(const MCSubtargetInfo *STI, unsigned FlatWorkGroupSize)
unsigned getWavefrontSize(const MCSubtargetInfo *STI)
unsigned getMaxWorkGroupsPerCU(const MCSubtargetInfo *STI, unsigned FlatWorkGroupSize)
unsigned getMaxFlatWorkGroupSize(const MCSubtargetInfo *STI)
unsigned getMaxWavesPerEU(const MCSubtargetInfo *STI)
unsigned getWavesPerWorkGroup(const MCSubtargetInfo *STI, unsigned FlatWorkGroupSize)
unsigned getNumExtraSGPRs(const MCSubtargetInfo *STI, bool VCCUsed, bool FlatScrUsed, bool XNACKUsed)
unsigned getSGPREncodingGranule(const MCSubtargetInfo *STI)
unsigned getLocalMemorySize(const MCSubtargetInfo *STI)
unsigned getAddressableLocalMemorySize(const MCSubtargetInfo *STI)
unsigned getMinNumVGPRs(const MCSubtargetInfo *STI, unsigned WavesPerEU)
unsigned getEUsPerCU(const MCSubtargetInfo *STI)
unsigned getAddressableNumSGPRs(const MCSubtargetInfo *STI)
unsigned getAddressableNumVGPRs(const MCSubtargetInfo *STI)
unsigned getMinNumSGPRs(const MCSubtargetInfo *STI, unsigned WavesPerEU)
static TargetIDSetting getTargetIDSettingFromFeatureString(StringRef FeatureString)
unsigned getMinFlatWorkGroupSize(const MCSubtargetInfo *STI)
unsigned getMaxNumSGPRs(const MCSubtargetInfo *STI, unsigned WavesPerEU, bool Addressable)
unsigned getNumSGPRBlocks(const MCSubtargetInfo *STI, unsigned NumSGPRs)
unsigned getMinWavesPerEU(const MCSubtargetInfo *STI)
unsigned getSGPRAllocGranule(const MCSubtargetInfo *STI)
unsigned getNumWavesPerEUWithNumVGPRs(const MCSubtargetInfo *STI, unsigned NumVGPRs)
unsigned getMaxNumVGPRs(const MCSubtargetInfo *STI, unsigned WavesPerEU)
unsigned getEncodedNumVGPRBlocks(const MCSubtargetInfo *STI, unsigned NumVGPRs, std::optional< bool > EnableWavefrontSize32)
unsigned getOccupancyWithNumSGPRs(unsigned SGPRs, unsigned MaxWaves, AMDGPUSubtarget::Generation Gen)
static unsigned getGranulatedNumRegisterBlocks(unsigned NumRegs, unsigned Granule)
unsigned getVGPRAllocGranule(const MCSubtargetInfo *STI, std::optional< bool > EnableWavefrontSize32)
unsigned getAddressableNumArchVGPRs(const MCSubtargetInfo *STI)
unsigned getAllocatedNumVGPRBlocks(const MCSubtargetInfo *STI, unsigned NumVGPRs, std::optional< bool > EnableWavefrontSize32)
unsigned getTotalNumSGPRs(const MCSubtargetInfo *STI)
StringLiteral const UfmtSymbolicGFX11[]
bool isValidUnifiedFormat(unsigned Id, const MCSubtargetInfo &STI)
unsigned getDefaultFormatEncoding(const MCSubtargetInfo &STI)
StringRef getUnifiedFormatName(unsigned Id, const MCSubtargetInfo &STI)
unsigned const DfmtNfmt2UFmtGFX10[]
StringLiteral const DfmtSymbolic[]
static StringLiteral const * getNfmtLookupTable(const MCSubtargetInfo &STI)
bool isValidNfmt(unsigned Id, const MCSubtargetInfo &STI)
StringLiteral const NfmtSymbolicGFX10[]
bool isValidDfmtNfmt(unsigned Id, const MCSubtargetInfo &STI)
int64_t convertDfmtNfmt2Ufmt(unsigned Dfmt, unsigned Nfmt, const MCSubtargetInfo &STI)
StringRef getDfmtName(unsigned Id)
int64_t encodeDfmtNfmt(unsigned Dfmt, unsigned Nfmt)
int64_t getUnifiedFormat(const StringRef Name, const MCSubtargetInfo &STI)
bool isValidFormatEncoding(unsigned Val, const MCSubtargetInfo &STI)
StringRef getNfmtName(unsigned Id, const MCSubtargetInfo &STI)
unsigned const DfmtNfmt2UFmtGFX11[]
StringLiteral const NfmtSymbolicVI[]
StringLiteral const NfmtSymbolicSICI[]
int64_t getNfmt(const StringRef Name, const MCSubtargetInfo &STI)
int64_t getDfmt(const StringRef Name)
StringLiteral const UfmtSymbolicGFX10[]
void decodeDfmtNfmt(unsigned Format, unsigned &Dfmt, unsigned &Nfmt)
uint64_t encodeMsg(uint64_t MsgId, uint64_t OpId, uint64_t StreamId)
bool msgSupportsStream(int64_t MsgId, int64_t OpId, const MCSubtargetInfo &STI)
void decodeMsg(unsigned Val, uint16_t &MsgId, uint16_t &OpId, uint16_t &StreamId, const MCSubtargetInfo &STI)
bool isValidMsgId(int64_t MsgId, const MCSubtargetInfo &STI)
bool isValidMsgStream(int64_t MsgId, int64_t OpId, int64_t StreamId, const MCSubtargetInfo &STI, bool Strict)
StringRef getMsgOpName(int64_t MsgId, uint64_t Encoding, const MCSubtargetInfo &STI)
Map from an encoding to the symbolic name for a sendmsg operation.
static uint64_t getMsgIdMask(const MCSubtargetInfo &STI)
bool msgRequiresOp(int64_t MsgId, const MCSubtargetInfo &STI)
bool isValidMsgOp(int64_t MsgId, int64_t OpId, const MCSubtargetInfo &STI, bool Strict)
constexpr unsigned VOPD_VGPR_BANK_MASKS[]
constexpr unsigned COMPONENTS_NUM
bool isGCN3Encoding(const MCSubtargetInfo &STI)
bool isInlinableLiteralBF16(int16_t Literal, bool HasInv2Pi)
bool isGFX10_BEncoding(const MCSubtargetInfo &STI)
bool isGFX10_GFX11(const MCSubtargetInfo &STI)
bool isInlinableLiteralV216(uint32_t Literal, uint8_t OpType)
LLVM_READONLY const MIMGInfo * getMIMGInfo(unsigned Opc)
unsigned getRegOperandSize(const MCRegisterInfo *MRI, const MCInstrDesc &Desc, unsigned OpNo)
Get size of register operand.
void decodeWaitcnt(const IsaVersion &Version, unsigned Waitcnt, unsigned &Vmcnt, unsigned &Expcnt, unsigned &Lgkmcnt)
Decodes Vmcnt, Expcnt and Lgkmcnt from given Waitcnt for given isa Version, and writes decoded values...
bool isInlinableLiteralFP16(int16_t Literal, bool HasInv2Pi)
SmallVector< unsigned > getIntegerVecAttribute(const Function &F, StringRef Name, unsigned Size)
uint64_t convertSMRDOffsetUnits(const MCSubtargetInfo &ST, uint64_t ByteOffset)
Convert ByteOffset to dwords if the subtarget uses dword SMRD immediate offsets.
static unsigned encodeStorecnt(const IsaVersion &Version, unsigned Waitcnt, unsigned Storecnt)
static bool hasSMEMByteOffset(const MCSubtargetInfo &ST)
bool isVOPCAsmOnly(unsigned Opc)
int getMIMGOpcode(unsigned BaseOpcode, unsigned MIMGEncoding, unsigned VDataDwords, unsigned VAddrDwords)
bool getMTBUFHasSrsrc(unsigned Opc)
std::optional< int64_t > getSMRDEncodedLiteralOffset32(const MCSubtargetInfo &ST, int64_t ByteOffset)
static bool isSymbolicCustomOperandEncoding(const CustomOperandVal *Opr, int Size, unsigned Code, bool &HasNonDefaultVal, const MCSubtargetInfo &STI)
bool isGFX10Before1030(const MCSubtargetInfo &STI)
bool isSISrcInlinableOperand(const MCInstrDesc &Desc, unsigned OpNo)
Does this operand support only inlinable literals?
unsigned mapWMMA2AddrTo3AddrOpcode(unsigned Opc)
const int OPR_ID_UNSUPPORTED
bool shouldEmitConstantsToTextSection(const Triple &TT)
bool isInlinableLiteralV2I16(uint32_t Literal)
int getMTBUFElements(unsigned Opc)
bool isHi16Reg(MCRegister Reg, const MCRegisterInfo &MRI)
static int encodeCustomOperandVal(const CustomOperandVal &Op, int64_t InputVal)
int32_t getTotalNumVGPRs(bool has90AInsts, int32_t ArgNumAGPR, int32_t ArgNumVGPR)
bool isGFX10(const MCSubtargetInfo &STI)
LLVM_READONLY int16_t getNamedOperandIdx(uint16_t Opcode, uint16_t NamedIdx)
bool isInlinableLiteralV2BF16(uint32_t Literal)
unsigned getMaxNumUserSGPRs(const MCSubtargetInfo &STI)
std::optional< unsigned > getInlineEncodingV216(bool IsFloat, uint32_t Literal)
unsigned getNumFlatOffsetBits(const MCSubtargetInfo &ST)
For pre-GFX12 FLAT instructions the offset must be positive; MSB is ignored and forced to zero.
unsigned mc2PseudoReg(unsigned Reg)
Convert hardware register Reg to a pseudo register.
bool hasA16(const MCSubtargetInfo &STI)
bool isLegalSMRDEncodedSignedOffset(const MCSubtargetInfo &ST, int64_t EncodedOffset, bool IsBuffer)
bool isGFX12Plus(const MCSubtargetInfo &STI)
unsigned getNSAMaxSize(const MCSubtargetInfo &STI, bool HasSampler)
CanBeVOPD getCanBeVOPD(unsigned Opc)
bool hasPackedD16(const MCSubtargetInfo &STI)
unsigned getStorecntBitMask(const IsaVersion &Version)
unsigned getLdsDwGranularity(const MCSubtargetInfo &ST)
bool isGFX940(const MCSubtargetInfo &STI)
bool isEntryFunctionCC(CallingConv::ID CC)
bool isInlinableLiteralV2F16(uint32_t Literal)
bool isHsaAbi(const MCSubtargetInfo &STI)
bool isGFX11(const MCSubtargetInfo &STI)
const int OPR_VAL_INVALID
bool getSMEMIsBuffer(unsigned Opc)
bool isGFX10_3_GFX11(const MCSubtargetInfo &STI)
bool isInvalidSingleUseProducerInst(unsigned Opc)
bool isInvalidSingleUseConsumerInst(unsigned Opc)
bool isGroupSegment(const GlobalValue *GV)
IsaVersion getIsaVersion(StringRef GPU)
bool getMTBUFHasSoffset(unsigned Opc)
bool hasXNACK(const MCSubtargetInfo &STI)
bool isValid32BitLiteral(uint64_t Val, bool IsFP64)
static unsigned getCombinedCountBitMask(const IsaVersion &Version, bool IsStore)
unsigned getVOPDOpcode(unsigned Opc)
bool isDPALU_DPP(const MCInstrDesc &OpDesc)
unsigned encodeWaitcnt(const IsaVersion &Version, unsigned Vmcnt, unsigned Expcnt, unsigned Lgkmcnt)
Encodes Vmcnt, Expcnt and Lgkmcnt into Waitcnt for given isa Version.
bool isVOPC64DPP(unsigned Opc)
int getMUBUFOpcode(unsigned BaseOpc, unsigned Elements)
bool isCompute(CallingConv::ID cc)
bool getMAIIsGFX940XDL(unsigned Opc)
bool isSI(const MCSubtargetInfo &STI)
unsigned getDefaultAMDHSACodeObjectVersion()
bool isReadOnlySegment(const GlobalValue *GV)
bool isArgPassedInSGPR(const Argument *A)
bool isIntrinsicAlwaysUniform(unsigned IntrID)
int getMUBUFBaseOpcode(unsigned Opc)
unsigned getAMDHSACodeObjectVersion(const Module &M)
unsigned decodeLgkmcnt(const IsaVersion &Version, unsigned Waitcnt)
unsigned getWaitcntBitMask(const IsaVersion &Version)
bool getVOP3IsSingle(unsigned Opc)
bool isGFX9(const MCSubtargetInfo &STI)
bool getVOP1IsSingle(unsigned Opc)
static bool isDwordAligned(uint64_t ByteOffset)
unsigned getVOPDEncodingFamily(const MCSubtargetInfo &ST)
bool isGFX10_AEncoding(const MCSubtargetInfo &STI)
bool isKImmOperand(const MCInstrDesc &Desc, unsigned OpNo)
Is this a KImm operand?
bool getHasColorExport(const Function &F)
int getMTBUFBaseOpcode(unsigned Opc)
bool isChainCC(CallingConv::ID CC)
bool isGFX90A(const MCSubtargetInfo &STI)
unsigned getSamplecntBitMask(const IsaVersion &Version)
unsigned getDefaultQueueImplicitArgPosition(unsigned CodeObjectVersion)
bool hasSRAMECC(const MCSubtargetInfo &STI)
bool getHasDepthExport(const Function &F)
bool isGFX8_GFX9_GFX10(const MCSubtargetInfo &STI)
bool getMUBUFHasVAddr(unsigned Opc)
int getVOPDFull(unsigned OpX, unsigned OpY, unsigned EncodingFamily)
bool isTrue16Inst(unsigned Opc)
bool hasAny64BitVGPROperands(const MCInstrDesc &OpDesc)
std::pair< unsigned, unsigned > getVOPDComponents(unsigned VOPDOpcode)
bool isInlinableLiteral32(int32_t Literal, bool HasInv2Pi)
bool isGFX12(const MCSubtargetInfo &STI)
unsigned getInitialPSInputAddr(const Function &F)
unsigned encodeExpcnt(const IsaVersion &Version, unsigned Waitcnt, unsigned Expcnt)
bool isSISrcOperand(const MCInstrDesc &Desc, unsigned OpNo)
Is this an AMDGPU specific source operand? These include registers, inline constants,...
unsigned getKmcntBitMask(const IsaVersion &Version)
unsigned getVmcntBitMask(const IsaVersion &Version)
bool isNotGFX10Plus(const MCSubtargetInfo &STI)
bool hasMAIInsts(const MCSubtargetInfo &STI)
bool isIntrinsicSourceOfDivergence(unsigned IntrID)
bool isKernelCC(const Function *Func)
bool isGenericAtomic(unsigned Opc)
Waitcnt decodeStorecntDscnt(const IsaVersion &Version, unsigned StorecntDscnt)
bool isGFX8Plus(const MCSubtargetInfo &STI)
LLVM_READONLY bool hasNamedOperand(uint64_t Opcode, uint64_t NamedIdx)
LLVM_READNONE bool isInlinableIntLiteral(int64_t Literal)
Is this literal inlinable, and not one of the values intended for floating point values.
unsigned getLgkmcntBitMask(const IsaVersion &Version)
bool getMUBUFTfe(unsigned Opc)
bool isSGPR(unsigned Reg, const MCRegisterInfo *TRI)
Is Reg - scalar register.
unsigned getBvhcntBitMask(const IsaVersion &Version)
bool hasSMRDSignedImmOffset(const MCSubtargetInfo &ST)
bool hasMIMG_R128(const MCSubtargetInfo &STI)
bool hasGFX10_3Insts(const MCSubtargetInfo &STI)
bool hasG16(const MCSubtargetInfo &STI)
unsigned getAddrSizeMIMGOp(const MIMGBaseOpcodeInfo *BaseOpcode, const MIMGDimInfo *Dim, bool IsA16, bool IsG16Supported)
int getMTBUFOpcode(unsigned BaseOpc, unsigned Elements)
unsigned getExpcntBitMask(const IsaVersion &Version)
bool hasArchitectedFlatScratch(const MCSubtargetInfo &STI)
bool getMUBUFHasSoffset(unsigned Opc)
bool isNotGFX11Plus(const MCSubtargetInfo &STI)
bool isGFX11Plus(const MCSubtargetInfo &STI)
std::optional< unsigned > getInlineEncodingV2F16(uint32_t Literal)
bool isInlineValue(unsigned Reg)
bool isSISrcFPOperand(const MCInstrDesc &Desc, unsigned OpNo)
Is this floating-point operand?
bool isShader(CallingConv::ID cc)
unsigned getHostcallImplicitArgPosition(unsigned CodeObjectVersion)
static unsigned getDefaultCustomOperandEncoding(const CustomOperandVal *Opr, int Size, const MCSubtargetInfo &STI)
static unsigned encodeLoadcnt(const IsaVersion &Version, unsigned Waitcnt, unsigned Loadcnt)
bool isGFX10Plus(const MCSubtargetInfo &STI)
unsigned getMCReg(unsigned Reg, const MCSubtargetInfo &STI)
If Reg is a pseudo reg, return the correct hardware register given STI otherwise return Reg.
static bool decodeCustomOperand(const CustomOperandVal *Opr, int Size, unsigned Code, int &Idx, StringRef &Name, unsigned &Val, bool &IsDefault, const MCSubtargetInfo &STI)
std::optional< int64_t > getSMRDEncodedOffset(const MCSubtargetInfo &ST, int64_t ByteOffset, bool IsBuffer, bool HasSOffset)
bool isGlobalSegment(const GlobalValue *GV)
@ OPERAND_KIMM_LAST
Definition: SIDefines.h:269
@ OPERAND_KIMM32
Operand with 32-bit immediate that uses the constant bus.
Definition: SIDefines.h:234
@ OPERAND_REG_INLINE_C_LAST
Definition: SIDefines.h:260
@ OPERAND_REG_IMM_V2FP16
Definition: SIDefines.h:211
@ OPERAND_REG_INLINE_C_FP64
Definition: SIDefines.h:223
@ OPERAND_REG_INLINE_C_V2BF16
Definition: SIDefines.h:225
@ OPERAND_REG_IMM_V2INT16
Definition: SIDefines.h:212
@ OPERAND_REG_INLINE_AC_V2FP16
Definition: SIDefines.h:246
@ OPERAND_SRC_FIRST
Definition: SIDefines.h:265
@ OPERAND_REG_IMM_V2BF16
Definition: SIDefines.h:210
@ OPERAND_REG_INLINE_AC_FIRST
Definition: SIDefines.h:262
@ OPERAND_KIMM_FIRST
Definition: SIDefines.h:268
@ OPERAND_REG_IMM_FP16
Definition: SIDefines.h:206
@ OPERAND_REG_IMM_FP64
Definition: SIDefines.h:204
@ OPERAND_REG_INLINE_C_V2FP16
Definition: SIDefines.h:226
@ OPERAND_REG_INLINE_AC_V2INT16
Definition: SIDefines.h:244
@ OPERAND_REG_INLINE_AC_FP16
Definition: SIDefines.h:241
@ OPERAND_REG_INLINE_AC_FP32
Definition: SIDefines.h:242
@ OPERAND_REG_INLINE_AC_V2BF16
Definition: SIDefines.h:245
@ OPERAND_REG_IMM_FP32
Definition: SIDefines.h:203
@ OPERAND_REG_INLINE_C_FIRST
Definition: SIDefines.h:259
@ OPERAND_REG_INLINE_C_FP32
Definition: SIDefines.h:222
@ OPERAND_REG_INLINE_AC_LAST
Definition: SIDefines.h:263
@ OPERAND_REG_INLINE_C_V2INT16
Definition: SIDefines.h:224
@ OPERAND_REG_IMM_V2FP32
Definition: SIDefines.h:214
@ OPERAND_REG_INLINE_AC_FP64
Definition: SIDefines.h:243
@ OPERAND_REG_INLINE_C_FP16
Definition: SIDefines.h:221
@ OPERAND_REG_INLINE_C_V2FP32
Definition: SIDefines.h:228
@ OPERAND_REG_IMM_FP32_DEFERRED
Definition: SIDefines.h:209
@ OPERAND_SRC_LAST
Definition: SIDefines.h:266
@ OPERAND_REG_IMM_FP16_DEFERRED
Definition: SIDefines.h:208
void initDefaultAMDKernelCodeT(AMDGPUMCKernelCodeT &KernelCode, const MCSubtargetInfo *STI)
bool isNotGFX9Plus(const MCSubtargetInfo &STI)
bool hasGDS(const MCSubtargetInfo &STI)
bool isLegalSMRDEncodedUnsignedOffset(const MCSubtargetInfo &ST, int64_t EncodedOffset)
bool isGFX9Plus(const MCSubtargetInfo &STI)
bool hasDPPSrc1SGPR(const MCSubtargetInfo &STI)
const int OPR_ID_DUPLICATE
bool isVOPD(unsigned Opc)
VOPD::InstInfo getVOPDInstInfo(const MCInstrDesc &OpX, const MCInstrDesc &OpY)
unsigned encodeVmcnt(const IsaVersion &Version, unsigned Waitcnt, unsigned Vmcnt)
unsigned decodeExpcnt(const IsaVersion &Version, unsigned Waitcnt)
bool isCvt_F32_Fp8_Bf8_e64(unsigned Opc)
Waitcnt decodeLoadcntDscnt(const IsaVersion &Version, unsigned LoadcntDscnt)
std::optional< unsigned > getInlineEncodingV2I16(uint32_t Literal)
unsigned getRegBitWidth(const TargetRegisterClass &RC)
Get the size in bits of a register from the register class RC.
static unsigned encodeStorecntDscnt(const IsaVersion &Version, unsigned Storecnt, unsigned Dscnt)
int getMCOpcode(uint16_t Opcode, unsigned Gen)
const MIMGBaseOpcodeInfo * getMIMGBaseOpcode(unsigned Opc)
bool isVI(const MCSubtargetInfo &STI)
bool getMUBUFIsBufferInv(unsigned Opc)
std::optional< unsigned > getInlineEncodingV2BF16(uint32_t Literal)
static int encodeCustomOperand(const CustomOperandVal *Opr, int Size, const StringRef Name, int64_t InputVal, unsigned &UsedOprMask, const MCSubtargetInfo &STI)
unsigned hasKernargPreload(const MCSubtargetInfo &STI)
bool isMAC(unsigned Opc)
bool isCI(const MCSubtargetInfo &STI)
unsigned encodeLgkmcnt(const IsaVersion &Version, unsigned Waitcnt, unsigned Lgkmcnt)
bool getVOP2IsSingle(unsigned Opc)
bool getMAIIsDGEMM(unsigned Opc)
Returns true if MAI operation is a double precision GEMM.
LLVM_READONLY const MIMGBaseOpcodeInfo * getMIMGBaseOpcodeInfo(unsigned BaseOpcode)
const int OPR_ID_UNKNOWN
unsigned getCompletionActionImplicitArgPosition(unsigned CodeObjectVersion)
int getMaskedMIMGOp(unsigned Opc, unsigned NewChannels)
bool isModuleEntryFunctionCC(CallingConv::ID CC)
bool isNotGFX12Plus(const MCSubtargetInfo &STI)
bool getMTBUFHasVAddr(unsigned Opc)
unsigned decodeVmcnt(const IsaVersion &Version, unsigned Waitcnt)
uint8_t getELFABIVersion(const Triple &T, unsigned CodeObjectVersion)
std::pair< unsigned, unsigned > getIntegerPairAttribute(const Function &F, StringRef Name, std::pair< unsigned, unsigned > Default, bool OnlyFirstRequired)
unsigned getLoadcntBitMask(const IsaVersion &Version)
bool isInlinableLiteralI16(int32_t Literal, bool HasInv2Pi)
bool hasVOPD(const MCSubtargetInfo &STI)
static unsigned encodeDscnt(const IsaVersion &Version, unsigned Waitcnt, unsigned Dscnt)
bool isInlinableLiteral64(int64_t Literal, bool HasInv2Pi)
Is this literal inlinable.
unsigned getMultigridSyncArgImplicitArgPosition(unsigned CodeObjectVersion)
bool isGFX9_GFX10_GFX11(const MCSubtargetInfo &STI)
bool isGFX9_GFX10(const MCSubtargetInfo &STI)
int getMUBUFElements(unsigned Opc)
static unsigned encodeLoadcntDscnt(const IsaVersion &Version, unsigned Loadcnt, unsigned Dscnt)
const GcnBufferFormatInfo * getGcnBufferFormatInfo(uint8_t BitsPerComp, uint8_t NumComponents, uint8_t NumFormat, const MCSubtargetInfo &STI)
bool isGraphics(CallingConv::ID cc)
unsigned mapWMMA3AddrTo2AddrOpcode(unsigned Opc)
bool isPermlane16(unsigned Opc)
bool getMUBUFHasSrsrc(unsigned Opc)
unsigned getDscntBitMask(const IsaVersion &Version)
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
Definition: BitmaskEnum.h:121
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition: CallingConv.h:24
@ AMDGPU_CS
Used for Mesa/AMDPAL compute shaders.
Definition: CallingConv.h:197
@ AMDGPU_VS
Used for Mesa vertex shaders, or AMDPAL last shader stage before rasterization (vertex shader if tess...
Definition: CallingConv.h:188
@ AMDGPU_KERNEL
Used for AMDGPU code object kernels.
Definition: CallingConv.h:200
@ AMDGPU_Gfx
Used for AMD graphics targets.
Definition: CallingConv.h:232
@ AMDGPU_CS_ChainPreserve
Used on AMDGPUs to give the middle-end more control over argument placement.
Definition: CallingConv.h:249
@ AMDGPU_HS
Used for Mesa/AMDPAL hull shaders (= tessellation control shaders).
Definition: CallingConv.h:206
@ AMDGPU_GS
Used for Mesa/AMDPAL geometry shaders.
Definition: CallingConv.h:191
@ AMDGPU_CS_Chain
Used on AMDGPUs to give the middle-end more control over argument placement.
Definition: CallingConv.h:245
@ AMDGPU_PS
Used for Mesa/AMDPAL pixel shaders.
Definition: CallingConv.h:194
@ SPIR_KERNEL
Used for SPIR kernel functions.
Definition: CallingConv.h:144
@ AMDGPU_ES
Used for AMDPAL shader stage before geometry shader if geometry is in use.
Definition: CallingConv.h:218
@ AMDGPU_LS
Used for AMDPAL vertex shader if tessellation is in use.
Definition: CallingConv.h:213
@ ELFABIVERSION_AMDGPU_HSA_V4
Definition: ELF.h:379
@ ELFABIVERSION_AMDGPU_HSA_V5
Definition: ELF.h:380
@ ELFABIVERSION_AMDGPU_HSA_V6
Definition: ELF.h:381
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:443
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
constexpr T alignDown(U Value, V Align, W Skew=0)
Returns the largest unsigned integer less than or equal to Value and is Skew mod Align.
Definition: MathExtras.h:555
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
Definition: Error.cpp:167
raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
constexpr T divideCeil(U Numerator, V Denominator)
Returns the integer ceil(Numerator / Denominator).
Definition: MathExtras.h:403
uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
Definition: Alignment.h:155
raw_ostream & operator<<(raw_ostream &OS, const APFixedPoint &FX)
Definition: APFixedPoint.h:292
@ AlwaysUniform
The result values are always uniform.
@ Default
The result values are uniform if and only if all operands are uniform.
#define N
AMD Kernel Code Object (amd_kernel_code_t).
Instruction set architecture version.
Definition: TargetParser.h:127
Represents the counter values to wait for in an s_waitcnt instruction.
Description of the encoding of one expression Op.