87 std::unique_ptr<MCStreamer> &&
Streamer) {
104 AMDGPUAsmPrinter *Asm;
107 AMDGPUAsmPrinterHandler(AMDGPUAsmPrinter *
A) : Asm(
A) {}
111 void endFunction(
const MachineFunction *MF)
override { Asm->endFunction(MF); }
113 void endModule()
override {}
118 std::unique_ptr<MCStreamer>
Streamer)
123 if (
auto *ResourceUsageW =
125 return &ResourceUsageW->getResourceInfo();
131 return "AMDGPU Assembly Printer";
135 return &
TM.getMCSubtargetInfo();
148void AMDGPUAsmPrinter::initTargetStreamer(
Module &M) {
154 initializeTargetID(M);
156 const Triple &TT = M.getTargetTriple();
175 initTargetStreamer(M);
177 const Triple &TT = M.getTargetTriple();
184 HSAMetadataStream->end();
199 STM.getCPU() +
" is only available on code object version 6 or better");
205 initializeTargetID(*
F.getParent());
210 if (STM.isMesaKernel(
F) &&
214 getAmdKernelCode(KernelCode, CurrentProgramInfo, *
MF);
219 if (STM.isAmdHsaOS())
220 HSAMetadataStream->emitKernel(*
MF, CurrentProgramInfo);
246 getAmdhsaKernelDescriptor(*
MF, CurrentProgramInfo);
259 const MCExpr *InstPrefSize =
266 auto &Context =
Streamer.getContext();
267 auto &ObjectFileInfo = *Context.getObjectFileInfo();
268 auto &ReadOnlySection = *ObjectFileInfo.getReadOnlySection();
271 Streamer.switchSection(&ReadOnlySection);
276 ReadOnlySection.ensureMinAlignment(
Align(64));
281 STM, KernelName, KD, CurrentProgramInfo.NumVGPRsForWavesPerEU,
283 CurrentProgramInfo.NumSGPRsForWavesPerEU,
285 CurrentProgramInfo.VCCUsed, CurrentProgramInfo.FlatUsed,
288 CurrentProgramInfo.VCCUsed, CurrentProgramInfo.FlatUsed);
298 OS <<
"implicit-def: "
299 <<
printReg(RegNo,
MF->getSubtarget().getRegisterInfo());
302 OS <<
" : SGPR spill to VGPR lane";
322 if (DumpCodeInstEmitter) {
349 ": unsupported initializer for address space");
362 "LDS definitions should have been externalized when object "
363 "linking is enabled");
371 "' is already defined");
380 TS->emitAMDGPULDS(GVSym,
Size, Alignment);
388 const Triple &TT = M.getTargetTriple();
396 "codegen with no subarch in the target triple is deprecated and will "
397 "become an error; use the target triple '" +
398 Fixed.str() +
"' instead",
402 "codegen with no subarch in the target triple is deprecated and will "
411 switch (CodeObjectVersion) {
413 HSAMetadataStream = std::make_unique<HSAMD::MetadataStreamerMsgPackV4>();
416 HSAMetadataStream = std::make_unique<HSAMD::MetadataStreamerMsgPackV5>();
419 HSAMetadataStream = std::make_unique<HSAMD::MetadataStreamerMsgPackV6>();
438 unsigned DynamicVGPRBlockSize,
452 auto CreateExpr = [&Ctx](
unsigned Value) {
462 {CreateExpr(MaxWaves), CreateExpr(Granule),
463 CreateExpr(TargetTotalNumVGPRs),
464 CreateExpr(InitOcc), CreateExpr(SGPRTotal),
465 CreateExpr(SGPRGranule),
466 CreateExpr(SGPRTrapReserve), SGPRArg, NumVGPRs},
470void AMDGPUAsmPrinter::validateMCResourceInfo(
Function &
F) {
475 const GCNSubtarget &STM =
TM.getSubtarget<GCNSubtarget>(
F);
478 auto TryGetMCExprValue = [](
const MCExpr *
Value,
uint64_t &Res) ->
bool {
480 if (
Value->evaluateAsAbsolute(Val)) {
487 const uint64_t MaxScratchPerWorkitem =
490 RI.getSymbol(FnSym->getName(), RIK::RIK_PrivateSegSize,
OutContext);
494 ScratchSize > MaxScratchPerWorkitem) {
495 DiagnosticInfoStackSize DiagStackSize(
F, ScratchSize, MaxScratchPerWorkitem,
497 F.getContext().diagnose(DiagStackSize);
503 RI.getSymbol(FnSym->getName(), RIK::RIK_NumSGPR,
OutContext);
505 !STM.hasSGPRInitBug()) {
510 NumSgpr > MaxAddressableNumSGPRs) {
511 F.getContext().diagnose(DiagnosticInfoResourceLimit(
512 F,
"addressable scalar registers", NumSgpr, MaxAddressableNumSGPRs,
519 RI.getSymbol(FnSym->getName(), RIK::RIK_UsesVCC,
OutContext);
521 RI.getSymbol(FnSym->getName(), RIK::RIK_UsesFlatScratch,
OutContext);
522 uint64_t VCCUsed, FlatUsed, NumSgpr;
533 STM, VCCUsed, FlatUsed,
536 STM.hasSGPRInitBug()) {
538 if (NumSgpr > MaxAddressableNumSGPRs) {
539 F.getContext().diagnose(DiagnosticInfoResourceLimit(
540 F,
"scalar registers", NumSgpr, MaxAddressableNumSGPRs,
DS_Error,
547 RI.getSymbol(FnSym->getName(), RIK::RIK_NumVGPR,
OutContext);
549 RI.getSymbol(FnSym->getName(), RIK::RIK_NumAGPR,
OutContext);
557 const SIMachineFunctionInfo &MFI = *
MF->getInfo<SIMachineFunctionInfo>();
562 std::max({TotalNumVgpr, (
uint64_t)1,
565 uint64_t NumSGPRsForWavesPerEU = std::max(
575 F,
"amdgpu-waves-per-eu", {0, 0},
true);
577 if (TryGetMCExprValue(OccupancyExpr, Occupancy) && Occupancy < MinWEU) {
578 DiagnosticInfoOptimizationFailure Diag(
579 F,
F.getSubprogram(),
580 "failed to meet occupancy target given by 'amdgpu-waves-per-eu' in "
582 F.getName() +
"': desired occupancy was " + Twine(MinWEU) +
583 ", final occupancy is " + Twine(Occupancy));
584 F.getContext().diagnose(Diag);
593 if (Ty->isVoidTy()) {
597 unsigned Bits =
DL.getTypeSizeInBits(Ty);
618 for (
Type *ParamTy : FTy->params())
626 const SIInstrInfo *
TII =
MF->getSubtarget<GCNSubtarget>().getInstrInfo();
627 const MachineOperand *
Callee =
628 TII->getNamedOperand(
MI, AMDGPU::OpName::callee);
629 if (!Callee || !
Callee->isGlobal())
631 DirectCallEdges.insert(
635void AMDGPUAsmPrinter::emitAMDGPUInfo(
Module &M) {
639 const NamedMDNode *LDSMD =
M.getNamedMetadata(
"amdgpu.lds.uses");
642 const NamedMDNode *BarMD =
M.getNamedMetadata(
"amdgpu.named_barrier.uses");
646 DenseMap<const Function *, std::string> AddrTakenTypeIds;
647 using IndirectCallInfo = std::pair<const Function *, std::string>;
653 if (!IsKernel &&
F.hasAddressTaken(
nullptr,
657 AddrTakenTypeIds[&
F] =
661 if (
F.isDeclaration())
664 StringSet<> SeenTypeIds;
665 for (
const BasicBlock &BB :
F) {
666 for (
const Instruction &
I : BB) {
668 if (!CB || !CB->isIndirectCall())
672 if (SeenTypeIds.
insert(TId).second)
673 IndirectCalls.
push_back({&
F, std::move(TId)});
678 if (FunctionInfos.empty() && DirectCallEdges.empty() && !HasLDSUses &&
679 !HasNamedBarriers && AddrTakenTypeIds.
empty() && IndirectCalls.
empty())
682 AMDGPU::InfoSectionData
Data;
683 Data.Funcs = std::move(FunctionInfos);
685 for (
auto &[
F, TypeId] : AddrTakenTypeIds) {
687 Data.TypeIds.push_back({Sym, TypeId});
690 for (
auto &[CallerSym, CalleeSym] : DirectCallEdges)
691 Data.Calls.push_back({CallerSym, CalleeSym});
692 DirectCallEdges.clear();
695 for (
const MDNode *
N : LDSMD->
operands()) {
702 if (HasNamedBarriers) {
703 for (
const MDNode *
N : BarMD->
operands()) {
706 for (
unsigned I = 1,
E =
N->getNumOperands();
I <
E; ++
I) {
713 for (
auto &[Caller, Enc] : IndirectCalls) {
715 Data.IndirectCalls.push_back({CallerSym, Enc});
722 const Triple &TT = M.getTargetTriple();
763 validateMCResourceInfo(
F);
775 auto &Context =
Streamer.getContext();
782void AMDGPUAsmPrinter::emitCommonFunctionComments(
787 OutStreamer->emitRawComment(
" TotalNumSgprs: " + getMCExprStr(NumSGPR),
789 OutStreamer->emitRawComment(
" NumVgprs: " + getMCExprStr(NumVGPR),
false);
790 if (NumAGPR && TotalNumVGPR) {
791 OutStreamer->emitRawComment(
" NumAgprs: " + getMCExprStr(NumAGPR),
false);
792 OutStreamer->emitRawComment(
" TotalNumVgprs: " + getMCExprStr(TotalNumVGPR),
795 OutStreamer->emitRawComment(
" ScratchSize: " + getMCExprStr(ScratchSize),
801const MCExpr *AMDGPUAsmPrinter::getAmdhsaKernelCodeProperties(
803 const SIMachineFunctionInfo &MFI = *
MF.getInfo<SIMachineFunctionInfo>();
804 MCContext &Ctx =
MF.getContext();
805 uint16_t KernelCodeProperties = 0;
809 KernelCodeProperties |=
810 amdhsa::KERNEL_CODE_PROPERTY_ENABLE_SGPR_PRIVATE_SEGMENT_BUFFER;
813 KernelCodeProperties |=
814 amdhsa::KERNEL_CODE_PROPERTY_ENABLE_SGPR_DISPATCH_PTR;
817 KernelCodeProperties |= amdhsa::KERNEL_CODE_PROPERTY_ENABLE_SGPR_QUEUE_PTR;
820 KernelCodeProperties |=
821 amdhsa::KERNEL_CODE_PROPERTY_ENABLE_SGPR_KERNARG_SEGMENT_PTR;
824 KernelCodeProperties |=
825 amdhsa::KERNEL_CODE_PROPERTY_ENABLE_SGPR_DISPATCH_ID;
828 KernelCodeProperties |=
829 amdhsa::KERNEL_CODE_PROPERTY_ENABLE_SGPR_FLAT_SCRATCH_INIT;
832 KernelCodeProperties |=
833 amdhsa::KERNEL_CODE_PROPERTY_ENABLE_SGPR_PRIVATE_SEGMENT_SIZE;
835 if (
MF.getSubtarget<GCNSubtarget>().isWave32()) {
836 KernelCodeProperties |=
837 amdhsa::KERNEL_CODE_PROPERTY_ENABLE_WAVEFRONT_SIZE32;
844 const MCExpr *KernelCodePropExpr =
847 amdhsa::KERNEL_CODE_PROPERTY_USES_DYNAMIC_STACK_SHIFT, Ctx);
852 return KernelCodePropExpr;
858 const GCNSubtarget &STM =
MF.getSubtarget<GCNSubtarget>();
860 const SIMachineFunctionInfo *
Info =
MF.getInfo<SIMachineFunctionInfo>();
861 MCContext &Ctx =
MF.getContext();
863 MCKernelDescriptor KernelDescriptor;
869 Align MaxKernArgAlign;
877 int64_t PGM_Rsrc3 = 1;
878 bool EvaluatableRsrc3 =
879 CurrentProgramInfo.ComputePGMRSrc3->evaluateAsAbsolute(PGM_Rsrc3);
881 (void)EvaluatableRsrc3;
883 STM.hasGFX90AInsts() || STM.hasGFX1250Insts() || !EvaluatableRsrc3 ||
884 static_cast<uint64_t>(PGM_Rsrc3) == 0);
891 return KernelDescriptor;
898 initTargetStreamer(*
MF.getFunction().getParent());
901 CurrentProgramInfo.reset(
MF);
927 FunctionInfos.push_back(
939 getSIProgramInfo(CurrentProgramInfo,
MF);
944 EmitPALMetadata(
MF, CurrentProgramInfo);
946 emitPALFunctionMetadata(
MF);
948 EmitProgramInfoSI(
MF, CurrentProgramInfo);
951 DumpCodeInstEmitter =
nullptr;
952 if (STM.dumpCode()) {
975 RI.getSymbol(
CurrentFnSym->getName(), RIK::RIK_NumNamedBarrier,
977 RI.getSymbol(
CurrentFnSym->getName(), RIK::RIK_PrivateSegSize,
980 RI.getSymbol(
CurrentFnSym->getName(), RIK::RIK_UsesFlatScratch,
982 RI.getSymbol(
CurrentFnSym->getName(), RIK::RIK_HasDynSizedStack,
984 RI.getSymbol(
CurrentFnSym->getName(), RIK::RIK_HasRecursion,
986 RI.getSymbol(
CurrentFnSym->getName(), RIK::RIK_HasIndirectCall,
1000 OutStreamer->emitRawComment(
" Function info:",
false);
1002 emitCommonFunctionComments(
1004 ->getVariableValue(),
1005 STM.hasMAIInsts() ? RI.getSymbol(
CurrentFnSym->getName(),
1007 ->getVariableValue()
1009 RI.createTotalNumVGPRs(
MF, Ctx),
1010 RI.createTotalNumSGPRs(
1014 RI.getSymbol(
CurrentFnSym->getName(), RIK::RIK_PrivateSegSize,
1016 ->getVariableValue(),
1017 CurrentProgramInfo.getFunctionCodeSize(
MF), MFI);
1021 OutStreamer->emitRawComment(
" Kernel info:",
false);
1022 emitCommonFunctionComments(
1023 CurrentProgramInfo.NumArchVGPR,
1024 STM.hasMAIInsts() ? CurrentProgramInfo.NumAccVGPR :
nullptr,
1025 CurrentProgramInfo.NumVGPR, CurrentProgramInfo.NumSGPR,
1026 CurrentProgramInfo.ScratchSize,
1027 CurrentProgramInfo.getFunctionCodeSize(
MF), MFI);
1030 " FloatMode: " +
Twine(CurrentProgramInfo.FloatMode),
false);
1032 " IeeeMode: " +
Twine(CurrentProgramInfo.IEEEMode),
false);
1034 " LDSByteSize: " +
Twine(CurrentProgramInfo.LDSSize) +
1035 " bytes/workgroup (compile time only)",
1039 " SGPRBlocks: " + getMCExprStr(CurrentProgramInfo.SGPRBlocks),
false);
1042 " VGPRBlocks: " + getMCExprStr(CurrentProgramInfo.VGPRBlocks),
false);
1045 " NumSGPRsForWavesPerEU: " +
1046 getMCExprStr(CurrentProgramInfo.NumSGPRsForWavesPerEU),
1049 " NumVGPRsForWavesPerEU: " +
1050 getMCExprStr(CurrentProgramInfo.NumVGPRsForWavesPerEU),
1053 if (STM.hasGFX90AInsts()) {
1059 " AccumOffset: " + getMCExprStr(AdjustedAccum),
false);
1062 if (STM.hasGFX1250Insts())
1064 " NamedBarCnt: " + getMCExprStr(CurrentProgramInfo.NamedBarCnt),
1068 " Occupancy: " + getMCExprStr(CurrentProgramInfo.Occupancy),
false);
1074 " COMPUTE_PGM_RSRC2:SCRATCH_EN: " +
1075 getMCExprStr(CurrentProgramInfo.ScratchEnable),
1077 OutStreamer->emitRawComment(
" COMPUTE_PGM_RSRC2:USER_SGPR: " +
1078 Twine(CurrentProgramInfo.UserSGPR),
1080 OutStreamer->emitRawComment(
" COMPUTE_PGM_RSRC2:TRAP_HANDLER: " +
1081 Twine(CurrentProgramInfo.TrapHandlerEnable),
1083 OutStreamer->emitRawComment(
" COMPUTE_PGM_RSRC2:TGID_X_EN: " +
1084 Twine(CurrentProgramInfo.TGIdXEnable),
1086 OutStreamer->emitRawComment(
" COMPUTE_PGM_RSRC2:TGID_Y_EN: " +
1087 Twine(CurrentProgramInfo.TGIdYEnable),
1089 OutStreamer->emitRawComment(
" COMPUTE_PGM_RSRC2:TGID_Z_EN: " +
1090 Twine(CurrentProgramInfo.TGIdZEnable),
1092 OutStreamer->emitRawComment(
" COMPUTE_PGM_RSRC2:TIDIG_COMP_CNT: " +
1093 Twine(CurrentProgramInfo.TIdIGCompCount),
1096 [[maybe_unused]] int64_t PGMRSrc3;
1098 STM.hasGFX90AInsts() || STM.hasGFX1250Insts() ||
1099 (CurrentProgramInfo.ComputePGMRSrc3->evaluateAsAbsolute(PGMRSrc3) &&
1100 static_cast<uint64_t
>(PGMRSrc3) == 0));
1101 if (STM.hasGFX90AInsts()) {
1103 " COMPUTE_PGM_RSRC3_GFX90A:ACCUM_OFFSET: " +
1105 CurrentProgramInfo.ComputePGMRSrc3,
1106 amdhsa::COMPUTE_PGM_RSRC3_GFX90A_ACCUM_OFFSET_SHIFT,
1107 amdhsa::COMPUTE_PGM_RSRC3_GFX90A_ACCUM_OFFSET, Ctx)),
1110 " COMPUTE_PGM_RSRC3_GFX90A:TG_SPLIT: " +
1112 CurrentProgramInfo.ComputePGMRSrc3,
1113 amdhsa::COMPUTE_PGM_RSRC3_GFX90A_TG_SPLIT_SHIFT,
1114 amdhsa::COMPUTE_PGM_RSRC3_GFX90A_TG_SPLIT, Ctx)),
1119 if (DumpCodeInstEmitter) {
1125 std::string Comment =
"\n";
1128 Comment +=
" ; " +
HexLines[i] +
"\n";
1153 const MCExpr *EncodedBlocks;
1156 NumVGPRs,
nullptr) &&
1157 NumVGPRs.isAbsolute()) {
1161 unsigned NumBlocks =
1166 {},
"DVGPR block count " +
Twine(NumBlocks) +
1167 " exceeds maximum of " +
1169 " for __dvgpr$ symbol for '" +
1173 unsigned EncodedNumBlocks = (NumBlocks - 1) << 3;
1181 {CurrentProgramInfo.NumVGPRsForWavesPerEU, One}, Ctx);
1184 BlockSizeConst, Ctx);
1195 OutStreamer->emitAssignment(DVgprFuncSym, DVgprFuncVal);
1202void AMDGPUAsmPrinter::initializeTargetID(
const Module &M) {
1210 if (FeatureString.
contains(
"xnack")) {
1211 M.getContext().diagnose(DiagnosticInfoGeneric(
1212 "xnack/sramecc should be specified via module flags. "
1213 "Use module flag 'amdgpu.xnack' instead of subtarget feature",
1216 if (FeatureString.
contains(
"sramecc")) {
1217 M.getContext().diagnose(DiagnosticInfoGeneric(
1218 "xnack/sramecc should be specified via module flags. "
1219 "Use module flag 'amdgpu.sramecc' instead of subtarget feature",
1224 if (
getGlobalSTI()->getFeatureBits().
test(AMDGPU::FeatureXNACKOnOffModes)) {
1227 if (Setting != AMDGPU::TargetIDSetting::Any)
1228 TSTargetID->setXnackSetting(Setting);
1231 if (
getGlobalSTI()->getFeatureBits().
test(AMDGPU::FeatureSupportsSRAMECC)) {
1234 if (Setting != AMDGPU::TargetIDSetting::Any)
1235 TSTargetID->setSramEccSetting(Setting);
1246 const MCExpr *MaximumTaken =
1257void AMDGPUAsmPrinter::getSIProgramInfo(
SIProgramInfo &ProgInfo,
1259 const GCNSubtarget &STM =
MF.getSubtarget<GCNSubtarget>();
1260 MCContext &Ctx =
MF.getContext();
1262 auto CreateExpr = [&Ctx](int64_t
Value) {
1266 auto TryGetMCExprValue = [](
const MCExpr *
Value,
uint64_t &Res) ->
bool {
1268 if (
Value->evaluateAsAbsolute(Val)) {
1275 auto GetSymRefExpr =
1282 ProgInfo.
NumArchVGPR = GetSymRefExpr(RIK::RIK_NumVGPR);
1283 ProgInfo.
NumAccVGPR = GetSymRefExpr(RIK::RIK_NumAGPR);
1290 ProgInfo.
NumSGPR = GetSymRefExpr(RIK::RIK_NumSGPR);
1291 ProgInfo.
ScratchSize = GetSymRefExpr(RIK::RIK_PrivateSegSize);
1292 ProgInfo.
VCCUsed = GetSymRefExpr(RIK::RIK_UsesVCC);
1293 ProgInfo.
FlatUsed = GetSymRefExpr(RIK::RIK_UsesFlatScratch);
1296 GetSymRefExpr(RIK::RIK_HasRecursion), Ctx);
1300 GetSymRefExpr(RIK::RIK_NumNamedBarrier), BarBlkConst, Ctx);
1303 const SIMachineFunctionInfo *MFI =
MF.getInfo<SIMachineFunctionInfo>();
1314 !STM.hasSGPRInitBug()) {
1317 if (TryGetMCExprValue(ProgInfo.
NumSGPR, NumSgpr) &&
1318 NumSgpr > MaxAddressableNumSGPRs) {
1320 LLVMContext &Ctx =
MF.getFunction().getContext();
1321 Ctx.
diagnose(DiagnosticInfoResourceLimit(
1322 MF.getFunction(),
"addressable scalar registers", NumSgpr,
1324 ProgInfo.
NumSGPR = CreateExpr(MaxAddressableNumSGPRs - 1);
1338 if (WaveDispatchNumSGPR) {
1346 if (WaveDispatchNumVGPR) {
1348 {ProgInfo.
NumVGPR, CreateExpr(WaveDispatchNumVGPR)}, Ctx);
1368 STM.hasSGPRInitBug()) {
1371 if (TryGetMCExprValue(ProgInfo.
NumSGPR, NumSgpr) &&
1372 NumSgpr > MaxAddressableNumSGPRs) {
1375 LLVMContext &Ctx =
MF.getFunction().getContext();
1376 Ctx.
diagnose(DiagnosticInfoResourceLimit(
1377 MF.getFunction(),
"scalar registers", NumSgpr, MaxAddressableNumSGPRs,
1379 ProgInfo.
NumSGPR = CreateExpr(MaxAddressableNumSGPRs);
1384 if (STM.hasSGPRInitBug()) {
1392 LLVMContext &Ctx =
MF.getFunction().getContext();
1393 Ctx.
diagnose(DiagnosticInfoResourceLimit(
1399 LLVMContext &Ctx =
MF.getFunction().getContext();
1400 Ctx.
diagnose(DiagnosticInfoResourceLimit(
1406 auto GetNumGPRBlocks = [&CreateExpr, &Ctx](
const MCExpr *NumGPR,
1408 const MCExpr *OneConst = CreateExpr(1ul);
1409 const MCExpr *GranuleConst = CreateExpr(Granule);
1411 const MCExpr *AlignToGPR =
1413 const MCExpr *DivGPR =
1428 const SIModeRegisterDefaults
Mode = MFI->
getMode();
1445 alignTo(ProgInfo.
LDSSize, LDSGranularityBytes) / LDSGranularityBytes;
1448 auto DivideCeil = [&Ctx](
const MCExpr *Numerator,
const MCExpr *Denominator) {
1449 const MCExpr *Ceil =
1455 unsigned ScratchAlignShift =
1463 CreateExpr(1ULL << ScratchAlignShift));
1465 if (STM.hasSupportsWGP()) {
1471 ProgInfo.
FwdProgress = !
F.hasFnAttribute(
"amdgpu-no-fwd-progress");
1475 unsigned TIDIGCompCnt = 0;
1504 if (STM.hasGFX90AInsts()) {
1507 amdhsa::COMPUTE_PGM_RSRC3_GFX90A_ACCUM_OFFSET,
1508 amdhsa::COMPUTE_PGM_RSRC3_GFX90A_ACCUM_OFFSET_SHIFT, Ctx);
1511 amdhsa::COMPUTE_PGM_RSRC3_GFX90A_TG_SPLIT,
1512 amdhsa::COMPUTE_PGM_RSRC3_GFX90A_TG_SPLIT_SHIFT, Ctx);
1515 if (STM.hasGFX1250Insts())
1518 amdhsa::COMPUTE_PGM_RSRC3_GFX125_NAMED_BAR_CNT,
1519 amdhsa::COMPUTE_PGM_RSRC3_GFX125_NAMED_BAR_CNT_SHIFT, Ctx);
1526 const auto [MinWEU, MaxWEU] =
1529 if (TryGetMCExprValue(ProgInfo.
Occupancy, Occupancy) && Occupancy < MinWEU) {
1530 DiagnosticInfoOptimizationFailure Diag(
1531 F,
F.getSubprogram(),
1532 "failed to meet occupancy target given by 'amdgpu-waves-per-eu' in "
1534 F.getName() +
"': desired occupancy was " + Twine(MinWEU) +
1535 ", final occupancy is " + Twine(Occupancy));
1536 F.getContext().diagnose(Diag);
1561void AMDGPUAsmPrinter::EmitProgramInfoSI(
1563 const SIMachineFunctionInfo *MFI =
MF.getInfo<SIMachineFunctionInfo>();
1564 const GCNSubtarget &STM =
MF.getSubtarget<GCNSubtarget>();
1565 unsigned RsrcReg =
getRsrcReg(
MF.getFunction().getCallingConv());
1566 MCContext &Ctx =
MF.getContext();
1569 auto SetBits = [&Ctx](
const MCExpr *
Value, uint32_t
Mask, uint32_t Shift) {
1576 auto EmitResolvedOrExpr = [
this](
const MCExpr *
Value,
unsigned Size) {
1578 if (
Value->evaluateAsAbsolute(Val))
1587 EmitResolvedOrExpr(CurrentProgramInfo.getComputePGMRSrc1(STM, Ctx),
1591 EmitResolvedOrExpr(CurrentProgramInfo.getComputePGMRSrc2(STM, Ctx),
1599 EmitResolvedOrExpr(SetBits(CurrentProgramInfo.ScratchBlocks,
1603 EmitResolvedOrExpr(SetBits(CurrentProgramInfo.ScratchBlocks,
1607 EmitResolvedOrExpr(SetBits(CurrentProgramInfo.ScratchBlocks,
1618 SetBits(CurrentProgramInfo.VGPRBlocks, 0x3F, 0),
1619 SetBits(CurrentProgramInfo.SGPRBlocks, 0x0F, 6),
1621 EmitResolvedOrExpr(GPRBlocks, 4);
1627 EmitResolvedOrExpr(SetBits(CurrentProgramInfo.ScratchBlocks,
1631 EmitResolvedOrExpr(SetBits(CurrentProgramInfo.ScratchBlocks,
1635 EmitResolvedOrExpr(SetBits(CurrentProgramInfo.ScratchBlocks,
1644 ?
divideCeil(CurrentProgramInfo.LDSBlocks, 2)
1645 : CurrentProgramInfo.LDSBlocks;
1663 unsigned DynamicVGPRBlockSize) {
1664 if (ST.hasFeature(AMDGPU::FeatureDX10ClampAndIEEEMode))
1676 if (DynamicVGPRBlockSize != 0)
1691void AMDGPUAsmPrinter::EmitPALMetadata(
1693 const SIMachineFunctionInfo *MFI =
MF.getInfo<SIMachineFunctionInfo>();
1694 auto CC =
MF.getFunction().getCallingConv();
1696 auto &Ctx =
MF.getContext();
1698 MD->setEntryPoint(CC,
MF.getFunction().getName());
1699 MD->setNumUsedVgprs(CC, CurrentProgramInfo.NumVGPRsForWavesPerEU, Ctx);
1703 const GCNSubtarget &STM =
MF.getSubtarget<GCNSubtarget>();
1706 MD->setHwStage(CC,
".dynamic_vgpr_saved_count",
1710 if (STM.hasMAIInsts()) {
1711 MD->setNumUsedAgprs(CC, CurrentProgramInfo.NumAccVGPR);
1714 MD->setNumUsedSgprs(CC, CurrentProgramInfo.NumSGPRsForWavesPerEU, Ctx);
1715 if (MD->getPALMajorVersion() < 3) {
1716 MD->setRsrc1(CC, CurrentProgramInfo.getPGMRSrc1(CC, STM, Ctx), Ctx);
1718 MD->setRsrc2(CC, CurrentProgramInfo.getComputePGMRSrc2(STM, Ctx), Ctx);
1720 const MCExpr *HasScratchBlocks =
1724 MD->setRsrc2(CC,
maskShiftSet(HasScratchBlocks, Mask, Shift, Ctx), Ctx);
1727 MD->setHwStage(CC,
".debug_mode", (
bool)CurrentProgramInfo.DebugMode);
1729 CurrentProgramInfo.ScratchEnable);
1743 ?
divideCeil(CurrentProgramInfo.LDSBlocks, 2)
1744 : CurrentProgramInfo.LDSBlocks;
1745 if (MD->getPALMajorVersion() < 3) {
1754 const unsigned ExtraLdsDwGranularity =
1756 MD->setGraphicsRegisters(
1757 ".ps_extra_lds_size",
1758 (
unsigned)(ExtraLDSSize * ExtraLdsDwGranularity *
sizeof(uint32_t)));
1761 static StringLiteral
const PsInputFields[] = {
1762 ".persp_sample_ena",
".persp_center_ena",
1763 ".persp_centroid_ena",
".persp_pull_model_ena",
1764 ".linear_sample_ena",
".linear_center_ena",
1765 ".linear_centroid_ena",
".line_stipple_tex_ena",
1766 ".pos_x_float_ena",
".pos_y_float_ena",
1767 ".pos_z_float_ena",
".pos_w_float_ena",
1768 ".front_face_ena",
".ancillary_ena",
1769 ".sample_coverage_ena",
".pos_fixed_pt_ena"};
1773 MD->setGraphicsRegisters(
".spi_ps_input_ena",
Field,
1774 (
bool)((PSInputEna >> Idx) & 1));
1775 MD->setGraphicsRegisters(
".spi_ps_input_addr",
Field,
1776 (
bool)((PSInputAddr >> Idx) & 1));
1782 if (MD->getPALMajorVersion() < 3 && STM.
isWave32())
1783 MD->setWave32(
MF.getFunction().getCallingConv());
1786void AMDGPUAsmPrinter::emitPALFunctionMetadata(
const MachineFunction &MF) {
1788 const MachineFrameInfo &MFI =
MF.getFrameInfo();
1789 StringRef FnName =
MF.getFunction().getName();
1790 MD->setFunctionScratchSize(FnName, MFI.
getStackSize());
1791 const GCNSubtarget &
ST =
MF.getSubtarget<GCNSubtarget>();
1792 MCContext &Ctx =
MF.getContext();
1794 if (MD->getPALMajorVersion() < 3) {
1800 CurrentProgramInfo.getComputePGMRSrc2(ST, Ctx), Ctx);
1804 MF.getInfo<SIMachineFunctionInfo>()->getDynamicVGPRBlockSize());
1808 MD->setFunctionLdsSize(FnName, CurrentProgramInfo.LDSSize);
1809 MD->setFunctionNumUsedVgprs(FnName, CurrentProgramInfo.NumVGPRsForWavesPerEU);
1810 MD->setFunctionNumUsedSgprs(FnName, CurrentProgramInfo.NumSGPRsForWavesPerEU);
1827void AMDGPUAsmPrinter::getAmdKernelCode(AMDGPUMCKernelCodeT &Out,
1834 const SIMachineFunctionInfo *MFI =
MF.getInfo<SIMachineFunctionInfo>();
1835 const GCNSubtarget &STM =
MF.getSubtarget<GCNSubtarget>();
1836 MCContext &Ctx =
MF.getContext();
1841 CurrentProgramInfo.getComputePGMRSrc1(STM, Ctx);
1843 CurrentProgramInfo.getComputePGMRSrc2(STM, Ctx);
1874 if (STM.isXNACKEnabled())
1877 Align MaxKernArgAlign;
1896 if (ExtraCode && ExtraCode[0]) {
1897 if (ExtraCode[1] != 0)
1900 switch (ExtraCode[0]) {
1912 *
MF->getSubtarget().getRegisterInfo());
1916 int64_t Val = MO.
getImm();
1920 O <<
format(
"0x%" PRIx16,
static_cast<uint16_t
>(Val));
1924 O <<
format(
"0x%" PRIx64,
static_cast<uint64_t
>(Val));
1939void AMDGPUAsmPrinter::emitResourceUsageRemarks(
1945 const char *Name =
"kernel-resource-usage";
1946 const char *Indent =
" ";
1950 if (!Ctx.getDiagHandlerPtr()->isAnalysisRemarkEnabled(Name))
1957 auto EmitResourceUsageRemark = [&](
StringRef RemarkName,
1962 std::string LabelStr = RemarkLabel.str() +
": ";
1963 if (RemarkName !=
"FunctionName")
1964 LabelStr = Indent + LabelStr;
1979 EmitResourceUsageRemark(
"FunctionName",
"Function Name",
1980 MF.getFunction().getName());
1981 EmitResourceUsageRemark(
"NumSGPR",
"TotalSGPRs",
1982 getMCExprStr(CurrentProgramInfo.NumSGPR));
1983 EmitResourceUsageRemark(
"NumVGPR",
"VGPRs",
1984 getMCExprStr(CurrentProgramInfo.NumArchVGPR));
1986 EmitResourceUsageRemark(
"NumAGPR",
"AGPRs",
1987 getMCExprStr(CurrentProgramInfo.NumAccVGPR));
1989 EmitResourceUsageRemark(
"ScratchSize",
"ScratchSize [bytes/lane]",
1990 getMCExprStr(CurrentProgramInfo.ScratchSize));
1992 bool DynStackEvaluatable =
1993 CurrentProgramInfo.DynamicCallStack->evaluateAsAbsolute(DynStack);
1994 StringRef DynamicStackStr =
1995 DynStackEvaluatable && DynStack ?
"True" :
"False";
1996 EmitResourceUsageRemark(
"DynamicStack",
"Dynamic Stack", DynamicStackStr);
1997 EmitResourceUsageRemark(
"Occupancy",
"Occupancy [waves/SIMD]",
1998 getMCExprStr(CurrentProgramInfo.Occupancy));
1999 EmitResourceUsageRemark(
"SGPRSpill",
"SGPRs Spill",
2000 CurrentProgramInfo.SGPRSpill);
2001 EmitResourceUsageRemark(
"VGPRSpill",
"VGPRs Spill",
2002 CurrentProgramInfo.VGPRSpill);
2003 if (isModuleEntryFunction)
2004 EmitResourceUsageRemark(
"BytesLDS",
"LDS Size [bytes/block]",
2005 CurrentProgramInfo.LDSSize);
2046 "AMDGPU Assembly Printer",
false,
false)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static void EmitPALMetadataCommon(AMDGPUPALMetadata *MD, const SIProgramInfo &CurrentProgramInfo, CallingConv::ID CC, const GCNSubtarget &ST, unsigned DynamicVGPRBlockSize)
const AMDGPUMCExpr * createOccupancy(unsigned InitOcc, const MCExpr *NumSGPRs, const MCExpr *NumVGPRs, unsigned DynamicVGPRBlockSize, const GCNSubtarget &STM, MCContext &Ctx)
Mimics GCNSubtarget::computeOccupancy for MCExpr.
static unsigned getRsrcReg(CallingConv::ID CallConv)
LLVM_ABI LLVM_EXTERNAL_VISIBILITY void LLVMInitializeAMDGPUAsmPrinter()
static amd_element_byte_size_t getElementByteSizeValue(unsigned Size)
static const MCExpr * setBits(const MCExpr *Dst, const MCExpr *Value, uint32_t Mask, uint32_t Shift, MCContext &Ctx)
Set bits in a kernel descriptor MCExpr field: return ((Dst & ~Mask) | (Value << Shift))
static uint32_t getFPMode(SIModeRegisterDefaults Mode)
static std::string computeTypeId(const FunctionType *FTy, const DataLayout &DL)
static const MCExpr * computeAccumOffset(const MCExpr *NumVGPR, MCContext &Ctx)
static void appendTypeEncoding(std::string &Enc, Type *Ty, const DataLayout &DL, bool IsReturnType)
static AsmPrinter * createAMDGPUAsmPrinterPass(TargetMachine &tm, std::unique_ptr< MCStreamer > &&Streamer)
AMDGPU Assembly printer class.
AMDHSA kernel descriptor MCExpr struct for use in MC layer.
MC infrastructure to propagate the function level resource usage info.
Analyzes how many registers and other resources are used by functions.
The AMDGPU TargetMachine interface definition for hw codegen targets.
AMDHSA kernel descriptor definitions.
MC layer struct for AMDGPUMCKernelCodeT, provides MCExpr functionality where required.
amd_element_byte_size_t
The values used to define the number of bytes to use for the swizzle element size.
#define AMD_HSA_BITS_SET(dst, mask, val)
@ AMD_CODE_PROPERTY_ENABLE_SGPR_DISPATCH_ID
@ AMD_CODE_PROPERTY_PRIVATE_ELEMENT_SIZE
@ AMD_CODE_PROPERTY_ENABLE_SGPR_KERNARG_SEGMENT_PTR
@ AMD_CODE_PROPERTY_ENABLE_SGPR_QUEUE_PTR
@ AMD_CODE_PROPERTY_ENABLE_SGPR_PRIVATE_SEGMENT_SIZE
@ AMD_CODE_PROPERTY_ENABLE_SGPR_PRIVATE_SEGMENT_BUFFER
@ AMD_CODE_PROPERTY_ENABLE_SGPR_DISPATCH_PTR
@ AMD_CODE_PROPERTY_IS_XNACK_SUPPORTED
@ AMD_CODE_PROPERTY_ENABLE_SGPR_FLAT_SCRATCH_INIT
@ AMD_CODE_PROPERTY_IS_PTR64
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static const Function * getParent(const Value *V)
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
#define LLVM_EXTERNAL_VISIBILITY
AMD GCN specific subclass of TargetSubtarget.
const HexagonInstrInfo * TII
OptimizedStructLayoutField Field
ModuleAnalysisManager MAM
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
R600 Assembly printer class.
static cl::opt< RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode > Mode("regalloc-enable-advisor", cl::Hidden, cl::init(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default), cl::desc("Enable regalloc advisor mode"), cl::values(clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default, "default", "Default"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Release, "release", "precompiled"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Development, "development", "for training")))
#define R_00B028_SPI_SHADER_PGM_RSRC1_PS
#define R_0286E8_SPI_TMPRING_SIZE
#define FP_ROUND_MODE_DP(x)
#define C_00B84C_SCRATCH_EN
#define FP_ROUND_ROUND_TO_NEAREST
#define R_0286D0_SPI_PS_INPUT_ADDR
#define R_00B860_COMPUTE_TMPRING_SIZE
#define R_00B428_SPI_SHADER_PGM_RSRC1_HS
#define R_00B328_SPI_SHADER_PGM_RSRC1_ES
#define R_00B528_SPI_SHADER_PGM_RSRC1_LS
#define R_0286CC_SPI_PS_INPUT_ENA
#define R_00B128_SPI_SHADER_PGM_RSRC1_VS
#define FP_DENORM_MODE_DP(x)
#define R_00B848_COMPUTE_PGM_RSRC1
#define FP_ROUND_MODE_SP(x)
#define FP_DENORM_MODE_SP(x)
#define R_00B228_SPI_SHADER_PGM_RSRC1_GS
#define S_00B02C_EXTRA_LDS_SIZE(x)
#define R_00B84C_COMPUTE_PGM_RSRC2
#define R_00B02C_SPI_SHADER_PGM_RSRC2_PS
std::unique_ptr< MCStreamer > && Streamer
static const int BlockSize
PreservedAnalyses run(Module &M, ModuleAnalysisManager &MAM)
PreservedAnalyses run(Module &M, ModuleAnalysisManager &MAM)
PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
void emitFunctionEntryLabel() override
EmitFunctionEntryLabel - Emit the label that is the entrypoint for the function.
const MCSubtargetInfo * getGlobalSTI() const
void emitImplicitDef(const MachineInstr *MI) const override
Targets can override this to customize the output of IMPLICIT_DEF instructions in verbose mode.
std::vector< std::string > DisasmLines
std::function< const AMDGPUResourceUsageAnalysisImpl::SIFunctionResourceInfo *(MachineFunction &)> GetResourceUsage
void emitStartOfAsmFile(Module &M) override
This virtual method can be overridden by targets that want to emit something at the start of their fi...
void endFunction(const MachineFunction *MF)
StringRef getPassName() const override
getPassName - Return a nice clean name for a pass.
std::vector< std::string > HexLines
bool IsTargetStreamerInitialized
void emitGlobalVariable(const GlobalVariable *GV) override
Emit the specified global variable to the .s file.
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo, const char *ExtraCode, raw_ostream &O) override
Print the specified operand of MI, an INLINEASM instruction, using the specified assembler variant.
bool runOnMachineFunction(MachineFunction &MF) override
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
bool doFinalization(Module &M) override
doFinalization - Virtual method overriden by subclasses to do any necessary clean up after all passes...
void emitEndOfAsmFile(Module &M) override
This virtual method can be overridden by targets that want to emit something at the end of their file...
AMDGPUAsmPrinter(TargetMachine &TM, std::unique_ptr< MCStreamer > Streamer)
bool doInitialization(Module &M) override
doInitialization - Virtual method overridden by subclasses to do any necessary initialization before ...
void emitFunctionBodyStart() override
Targets can override this to emit stuff before the first basic block in the function.
void emitBasicBlockStart(const MachineBasicBlock &MBB) override
Targets can override this to emit stuff at the start of a basic block.
AMDGPUTargetStreamer * getTargetStreamer() const
static void printRegOperand(MCRegister Reg, raw_ostream &O, const MCRegisterInfo &MRI)
AMDGPU target specific MCExpr operations.
static const AMDGPUMCExpr * createInstPrefSize(const MCExpr *CodeSizeBytes, MCContext &Ctx)
Create an expression for instruction prefetch size computation: min(divideCeil(CodeSizeBytes,...
static const AMDGPUMCExpr * createMax(ArrayRef< const MCExpr * > Args, MCContext &Ctx)
static const AMDGPUMCExpr * createTotalNumVGPR(const MCExpr *NumAGPR, const MCExpr *NumVGPR, MCContext &Ctx)
static const AMDGPUMCExpr * create(VariantKind Kind, ArrayRef< const MCExpr * > Args, MCContext &Ctx)
static const AMDGPUMCExpr * createExtraSGPRs(const MCExpr *VCCUsed, const MCExpr *FlatScrUsed, bool XNACKUsed, MCContext &Ctx)
Allow delayed MCExpr resolve of ExtraSGPRs (in case VCCUsed or FlatScrUsed are unresolvable but neede...
static const AMDGPUMCExpr * createAlignTo(const MCExpr *Value, const MCExpr *Align, MCContext &Ctx)
bool isMemoryBound() const
bool isModuleEntryFunction() const
bool needsWaveLimiter() const
uint32_t getLDSSize() const
bool isEntryFunction() const
std::pair< unsigned, unsigned > getOccupancyWithWorkGroupSizes(uint32_t LDSBytes, const Function &F) const
Subtarget's minimum/maximum occupancy, in number of waves per EU, that can be achieved when the only ...
unsigned getAddressableLocalMemorySize() const
Return the maximum number of bytes of LDS that can be allocated to a single workgroup.
unsigned getKernArgSegmentSize(const Function &F, Align &MaxAlign) const
unsigned getWavefrontSize() const
static bool EnableObjectLinking
virtual void EmitAmdhsaKernelDescriptor(const MCSubtargetInfo &STI, StringRef KernelName, const AMDGPU::MCKernelDescriptor &KernelDescriptor, const MCExpr *NextVGPR, const MCExpr *NextSGPR, const MCExpr *ReserveVCC, const MCExpr *ReserveFlatScr)
virtual void emitAMDGPUInfo(const AMDGPU::InfoSectionData &Data)
AMDGPUPALMetadata * getPALMetadata()
void initializeTargetID(const MCSubtargetInfo &STI, bool ApplyFeatureString=false)
virtual void EmitDirectiveAMDHSACodeObjectVersion(unsigned COV)
virtual bool EmitISAVersion()
virtual void EmitMCResourceInfo(const MCSymbol *NumVGPR, const MCSymbol *NumAGPR, const MCSymbol *NumExplicitSGPR, const MCSymbol *NumNamedBarrier, const MCSymbol *PrivateSegmentSize, const MCSymbol *UsesVCC, const MCSymbol *UsesFlatScratch, const MCSymbol *HasDynamicallySizedStack, const MCSymbol *HasRecursion, const MCSymbol *HasIndirectCall)
virtual bool EmitCodeEnd(const MCSubtargetInfo &STI)
virtual void EmitAMDGPUSymbolType(StringRef SymbolName, unsigned Type)
const std::optional< AMDGPU::TargetID > & getTargetID() const
virtual void EmitDirectiveAMDGCNTarget()
virtual void EmitAMDKernelCodeT(AMDGPU::AMDGPUMCKernelCodeT &Header)
virtual void EmitMCResourceMaximums(const MCSymbol *MaxVGPR, const MCSymbol *MaxAGPR, const MCSymbol *MaxSGPR, const MCSymbol *MaxNamedBarrier)
GPUKind getGPUKind() const
bool isXnackOnOrAny() const
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
AnalysisUsage & addPreserved()
Add the specified Pass class to the set of analyses preserved by this pass.
This class represents an incoming formal argument to a Function.
Collects and handles AsmPrinter objects required to build debug or EH information.
This class is intended to be used as a driving class for all asm writers.
const TargetLoweringObjectFile & getObjFileLowering() const
Return information about object file lowering.
MCSymbol * getSymbol(const GlobalValue *GV) const
virtual void emitGlobalVariable(const GlobalVariable *GV)
Emit the specified global variable to the .s file.
TargetMachine & TM
Target machine description.
MachineFunction * MF
The current machine function.
virtual void SetupMachineFunction(MachineFunction &MF)
This should be called when a new MachineFunction is being processed from runOnMachineFunction.
void emitFunctionBody()
This method emits the body and trailer for a function.
virtual bool isBlockOnlyReachableByFallthrough(const MachineBasicBlock *MBB) const
Return true if the basic block has exactly one predecessor and the control transfer mechanism between...
bool doInitialization(Module &M) override
Set up the AsmPrinter when we are working on a new module.
virtual void emitLinkage(const GlobalValue *GV, MCSymbol *GVSym) const
This emits linkage information about GVSym based on GV, if this is supported by the target.
void getAnalysisUsage(AnalysisUsage &AU) const override
Record analysis usage.
unsigned getFunctionNumber() const
Return a unique ID for the current function.
MachineOptimizationRemarkEmitter * ORE
Optimization remark emitter.
AsmPrinter(TargetMachine &TM, std::unique_ptr< MCStreamer > Streamer, char &ID=AsmPrinter::ID)
MCSymbol * CurrentFnSym
The symbol for the current function.
MachineModuleInfo * MMI
This is a pointer to the current MachineModuleInfo.
MCContext & OutContext
This is the context for the output file that we are streaming.
bool doFinalization(Module &M) override
Shut down the asmprinter.
virtual void emitBasicBlockStart(const MachineBasicBlock &MBB)
Targets can override this to emit stuff at the start of a basic block.
void emitVisibility(MCSymbol *Sym, unsigned Visibility, bool IsDefinition=true) const
This emits visibility information about symbol, if this is supported by the target.
bool runOnMachineFunction(MachineFunction &MF) override
Emit the specified function out to the OutStreamer.
std::unique_ptr< MCStreamer > OutStreamer
This is the MCStreamer object for the file we are generating.
const MCAsmInfo & MAI
Target Asm Printer information.
std::function< MachineModuleInfo *()> GetMMI
bool isVerbose() const
Return true if assembly output should contain comments.
MCSymbol * getFunctionEnd() const
void getNameWithPrefix(SmallVectorImpl< char > &Name, const GlobalValue *GV) const
virtual void emitFunctionEntryLabel()
EmitFunctionEntryLabel - Emit the label that is the entrypoint for the function.
void addAsmPrinterHandler(std::unique_ptr< AsmPrinterHandler > Handler)
virtual bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo, const char *ExtraCode, raw_ostream &OS)
Print the specified operand of MI, an INLINEASM instruction, using the specified assembler variant.
A parsed version of the target data layout string in and methods for querying it.
DISubprogram * getSubprogram() const
Get the attached subprogram.
CallingConv::ID getCallingConv() const
getCallingConv()/setCallingConv(CC) - These method get and set the calling convention of this functio...
LLVMContext & getContext() const
getContext - Return a reference to the LLVMContext associated with this function.
unsigned getMinNumSGPRs(unsigned WavesPerEU) const
unsigned getMinNumVGPRs(unsigned WavesPerEU, unsigned DynamicVGPRBlockSize) const
bool hasInstPrefSize() const
bool isCuModeEnabled() const
std::pair< unsigned, unsigned > computeOccupancy(const Function &F, unsigned LDSSize=0, unsigned NumSGPRs=0, unsigned NumVGPRs=0) const
Subtarget's minimum/maximum occupancy, in number of waves per EU, that can be achieved when the only ...
const AMDGPU::TargetID & getTargetID() const
void getInstPrefSizeArgs(uint32_t &Mask, uint32_t &Shift, uint32_t &Width, uint32_t &CacheLineSize) const
unsigned getMaxNumUserSGPRs() const
unsigned getMaxWavesPerEU() const
Generation getGeneration() const
unsigned getAddressableNumSGPRs() const
unsigned getMaxWaveScratchSize() const
static AMDGPU::TargetIDSetting getTargetIDSettingFromModuleFlag(const Module &M, StringRef FlagName)
Get xnack/sramecc setting from module flag or cl::opt (for testing).
bool hasKernargSegmentPtr() const
bool hasDispatchID() const
bool hasPrivateSegmentBuffer() const
bool hasPrivateSegmentSize() const
bool hasDispatchPtr() const
bool hasFlatScratchInit() const
VisibilityTypes getVisibility() const
LLVM_ABI bool isDeclaration() const
Return true if the primary definition of this global value is outside of the current translation unit...
unsigned getAddressSpace() const
LLVM_ABI const DataLayout & getDataLayout() const
Get the data layout of the module this global belongs to.
const Constant * getInitializer() const
getInitializer - Return the initializer for this global variable.
bool hasInitializer() const
Definitions have initializers, declarations don't.
MaybeAlign getAlign() const
Returns the alignment of the given variable.
LLVM_ABI uint64_t getGlobalSize(const DataLayout &DL) const
Get the size of this global variable in bytes.
This is an important class for using LLVM in a threaded context.
LLVM_ABI void diagnose(const DiagnosticInfo &DI)
Report a message to the currently installed diagnostic handler.
MCCodeEmitter * getEmitterPtr() const
static const MCBinaryExpr * createAdd(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx, SMLoc Loc=SMLoc())
static const MCBinaryExpr * createAnd(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx)
static const MCBinaryExpr * createOr(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx)
static const MCBinaryExpr * createLOr(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx)
static const MCBinaryExpr * createMul(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx)
static const MCBinaryExpr * createGT(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx)
static const MCBinaryExpr * createDiv(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx)
static const MCBinaryExpr * createShl(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx)
static const MCBinaryExpr * createSub(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx)
static LLVM_ABI const MCConstantExpr * create(int64_t Value, MCContext &Ctx, bool PrintInHex=false, unsigned SizeInBytes=0)
Context object for machine code objects.
LLVM_ABI void reportError(SMLoc L, const Twine &Msg)
LLVM_ABI MCSymbol * getOrCreateSymbol(const Twine &Name)
Lookup the symbol inside with the specified Name.
Base class for the full range of assembler expressions which are needed for parsing.
LLVM_ABI bool evaluateAsRelocatable(MCValue &Res, const MCAssembler *Asm) const
Try to evaluate the expression to a relocatable value, i.e.
MCSection * getTextSection() const
MCContext & getContext() const
This represents a section on linux, lots of unix variants and some bare metal systems.
Instances of this class represent a uniqued identifier for a section in the current translation unit.
bool hasInstructions() const
Generic base class for all target subtargets.
StringRef getFeatureString() const
static const MCSymbolRefExpr * create(const MCSymbol *Symbol, MCContext &Ctx, SMLoc Loc=SMLoc())
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
bool isDefined() const
isDefined - Check if this symbol is defined (i.e., it has an address).
StringRef getName() const
getName - Get the symbol name.
bool isVariable() const
isVariable - Check if this is a variable symbol.
void redefineIfPossible()
Prepare this symbol to be redefined.
const MCExpr * getVariableValue() const
Get the expression of the variable symbol.
MCStreamer & getStreamer()
static const MCUnaryExpr * createNot(const MCExpr *Expr, MCContext &Ctx, SMLoc Loc=SMLoc())
uint64_t getStackSize() const
Return the number of bytes that must be allocated to hold all of the fixed size frame objects.
MCContext & getContext() const
Function & getFunction()
Return the LLVM function that this machine code represents.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
const MachineBasicBlock & front() const
Representation of each machine instruction.
MachineOperand class - Representation of each machine instruction operand.
bool isReg() const
isReg - Tests if this is a MO_Register operand.
bool isImm() const
isImm - Tests if this is a MO_Immediate operand.
Register getReg() const
getReg - Returns the register number.
A Module instance is used to store all the information related to an LLVM module.
LLVM_ABI unsigned getNumOperands() const
iterator_range< op_iterator > operands()
AnalysisType * getAnalysisIfAvailable() const
getAnalysisIfAvailable<AnalysisType>() - Subclasses use this function to get analysis information tha...
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Wrapper class representing virtual and physical registers.
This class keeps track of the SPI_SP_INPUT_ADDR config register, which tells the hardware which inter...
unsigned getNumWaveDispatchVGPRs() const
unsigned getNumSpilledVGPRs() const
unsigned getNumWaveDispatchSGPRs() const
unsigned getNumSpilledSGPRs() const
GCNUserSGPRUsageInfo & getUserSGPRInfo()
unsigned getDynamicVGPRBlockSize() const
unsigned getMaxWavesPerEU() const
bool hasWorkGroupIDZ() const
bool hasWorkGroupIDY() const
SIModeRegisterDefaults getMode() const
bool hasWorkGroupInfo() const
bool hasWorkItemIDY() const
bool hasWorkGroupIDX() const
unsigned getNumUserSGPRs() const
unsigned getScratchReservedForDynamicVGPRs() const
bool isDynamicVGPREnabled() const
unsigned getPSInputAddr() const
bool hasWorkItemIDZ() const
unsigned getPSInputEnable() const
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
void push_back(const T &Elt)
Represent a constant reference to a string, i.e.
bool contains(StringRef Other) const
Return true if the given string is a substring of *this, and false otherwise.
std::pair< typename Base::iterator, bool > insert(StringRef key)
Primary interface to the complete machine description for the target machine.
Triple - Helper class for working with autoconf configuration names.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
The instances of the Type class are immutable: once they are created, they are never changed.
LLVM Value Representation.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
This class implements an extremely fast bulk output stream that can only output to a stream.
A raw_ostream that writes to an SmallVector or SmallString.
StringRef str() const
Return a StringRef for the vector contents.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ LOCAL_ADDRESS
Address space for local memory.
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
@ FIXED_NUM_SGPRS_FOR_INIT_BUG
bool isSGPROccupancyLimited(const MCSubtargetInfo &STI)
unsigned getVGPREncodingGranule(const MCSubtargetInfo &STI, std::optional< bool > EnableWavefrontSize32)
static constexpr unsigned MaxDynamicVGPRBlocks
Maximum number of VGPR blocks that can be allocated in dynamic VGPR mode.
unsigned getSGPREncodingGranule(const MCSubtargetInfo &STI)
unsigned getTotalNumVGPRs(const MCSubtargetInfo &STI)
unsigned getNumExtraSGPRs(const MCSubtargetInfo &STI, bool VCCUsed, bool FlatScrUsed, bool XNACKUsed)
unsigned getVGPRAllocGranule(const MCSubtargetInfo &STI, unsigned DynamicVGPRBlockSize, std::optional< bool > EnableWavefrontSize32)
int32_t getTotalNumVGPRs(bool has90AInsts, int32_t ArgNumAGPR, int32_t ArgNumVGPR)
void printAMDGPUMCExpr(const MCExpr *Expr, raw_ostream &OS, const MCAsmInfo *MAI)
LLVM_READNONE constexpr bool isModuleEntryFunctionCC(CallingConv::ID CC)
unsigned getLdsDwGranularity(const MCSubtargetInfo &ST)
LLVM_ABI IsaVersion getIsaVersion(StringRef GPU)
LLVM_ABI unsigned getTotalNumSGPRs(GPUKind AK)
const MCExpr * maskShiftSet(const MCExpr *Val, uint32_t Mask, uint32_t Shift, MCContext &Ctx)
Provided with the MCExpr * Val, uint32 Mask and Shift, will return the masked and left shifted,...
unsigned getAMDHSACodeObjectVersion(const Module &M)
bool isTgSplitEnabled(const Function &F)
GPUKind
GPU kinds supported by the AMDGPU target.
bool isGFX90A(const MCSubtargetInfo &STI)
LLVM_READNONE constexpr bool isKernel(CallingConv::ID CC)
LLVM_ABI unsigned getSGPRAllocGranule(GPUKind AK)
LLVM_READNONE constexpr bool isEntryFunctionCC(CallingConv::ID CC)
LLVM_READNONE constexpr bool isCompute(CallingConv::ID CC)
bool hasMAIInsts(const MCSubtargetInfo &STI)
LLVM_ABI Triple::SubArchType getSubArch(GPUKind AK)
LLVM_READNONE bool isInlinableIntLiteral(int64_t Literal)
Is this literal inlinable, and not one of the values intended for floating point values.
LLVM_ABI GPUKind parseArchAMDGCN(StringRef CPU)
const MCExpr * foldAMDGPUMCExpr(const MCExpr *Expr, MCContext &Ctx)
bool isGFX10Plus(const MCSubtargetInfo &STI)
constexpr std::pair< unsigned, unsigned > getShiftMask(unsigned Value)
Deduce the least significant bit aligned shift and mask values for a binary Complement Value (as they...
unsigned hasKernargPreload(const MCSubtargetInfo &STI)
std::pair< unsigned, unsigned > getIntegerPairAttribute(const Function &F, StringRef Name, std::pair< unsigned, unsigned > Default, bool OnlyFirstRequired)
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.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ AMDGPU_CS
Used for Mesa/AMDPAL compute shaders.
@ AMDGPU_VS
Used for Mesa vertex shaders, or AMDPAL last shader stage before rasterization (vertex shader if tess...
@ AMDGPU_KERNEL
Used for AMDGPU code object kernels.
@ AMDGPU_HS
Used for Mesa/AMDPAL hull shaders (= tessellation control shaders).
@ AMDGPU_GS
Used for Mesa/AMDPAL geometry shaders.
@ AMDGPU_CS_Chain
Used on AMDGPUs to give the middle-end more control over argument placement.
@ AMDGPU_PS
Used for Mesa/AMDPAL pixel shaders.
@ SPIR_KERNEL
Used for SPIR kernel functions.
@ AMDGPU_ES
Used for AMDPAL shader stage before geometry shader if geometry is in use.
@ AMDGPU_LS
Used for AMDPAL vertex shader if tessellation is in use.
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract(Y &&MD)
Extract a Value from Metadata.
DiagnosticInfoOptimizationBase::Argument NV
NodeAddr< FuncNode * > Func
This is an optimization pass for GlobalISel generic memory operations.
auto size(R &&Range, std::enable_if_t< std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< decltype(Range.begin())>::iterator_category >::value, void > *=nullptr)
Get the size of a range.
OuterAnalysisManagerProxy< ModuleAnalysisManager, MachineFunction > ModuleAnalysisManagerMachineFunctionProxy
Provide the ModuleAnalysisManager to Function proxy.
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
static StringRef getCPU(StringRef CPU)
Processes a CPU name.
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
Target & getTheR600Target()
The target for R600 GPUs.
AsmPrinter * createR600AsmPrinterPass(TargetMachine &TM, std::unique_ptr< MCStreamer > &&Streamer)
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
LLVM_ABI void setupModuleAsmPrinter(Module &M, ModuleAnalysisManager &MAM, AsmPrinter &AsmPrinter)
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
constexpr uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
constexpr bool isUInt(uint64_t x)
Checks if an unsigned integer fits into the given bit width.
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
@ Success
The lock was released successfully.
constexpr T divideCeil(U Numerator, V Denominator)
Returns the integer ceil(Numerator / Denominator).
Target & getTheGCNTarget()
The target for GCN GPUs.
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI void setupMachineFunctionAsmPrinter(MachineFunctionAnalysisManager &MFAM, MachineFunction &MF, AsmPrinter &AsmPrinter)
Target & getTheGCNLegacyTarget()
The target for GCN GPUs, registered under the legacy "amdgcn" architecture name for use with -march.
unsigned Log2(Align A)
Returns the log2 of the alignment.
LLVM_ABI Printable printReg(Register Reg, const TargetRegisterInfo *TRI=nullptr, unsigned SubIdx=0, const MachineRegisterInfo *MRI=nullptr)
Prints virtual and physical registers with or without a TRI instance.
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
Implement std::hash so that hash_code can be used in STL containers.
bool HasDynamicallySizedStack
uint64_t PrivateSegmentSize
AMDGPUResourceUsageAnalysisImpl::SIFunctionResourceInfo FunctionResourceInfo
uint64_t kernarg_segment_byte_size
void initDefault(const MCSubtargetInfo &STI, MCContext &Ctx, bool InitMCExpr=true)
const MCExpr * workitem_private_segment_byte_size
const MCExpr * compute_pgm_resource2_registers
uint8_t kernarg_segment_alignment
void validate(const MCSubtargetInfo *STI, MCContext &Ctx)
const MCExpr * wavefront_sgpr_count
const MCExpr * workitem_vgpr_count
const MCExpr * is_dynamic_callstack
uint32_t workgroup_group_segment_byte_size
const MCExpr * compute_pgm_resource1_registers
const MCExpr * compute_pgm_rsrc2
const MCExpr * kernarg_size
const MCExpr * kernarg_preload
const MCExpr * compute_pgm_rsrc3
const MCExpr * private_segment_fixed_size
static const MCExpr * bits_get(const MCExpr *Src, uint32_t Shift, uint32_t Mask, MCContext &Ctx)
const MCExpr * compute_pgm_rsrc1
const MCExpr * group_segment_fixed_size
const MCExpr * kernel_code_properties
This struct is a compact representation of a valid (non-zero power of two) alignment.
Track resource usage for kernels / entry functions.
const MCExpr * NumArchVGPR
const MCExpr * VGPRBlocks
const MCExpr * ScratchBlocks
const MCExpr * ComputePGMRSrc3
const MCExpr * getComputePGMRSrc1(const GCNSubtarget &ST, MCContext &Ctx) const
Compute the value of the ComputePGMRsrc1 register.
uint32_t TrapHandlerEnable
const MCExpr * NamedBarCnt
const MCExpr * ScratchEnable
const MCExpr * AccumOffset
const MCExpr * NumAccVGPR
const MCExpr * DynamicCallStack
const MCExpr * SGPRBlocks
const MCExpr * NumVGPRsForWavesPerEU
const MCExpr * ScratchSize
const MCExpr * NumSGPRsForWavesPerEU
const MCExpr * getComputePGMRSrc2(const GCNSubtarget &ST, MCContext &Ctx) const
Compute the value of the ComputePGMRsrc2 register.
static void RegisterAsmPrinter(Target &T, Target::AsmPrinterCtorTy Fn)
RegisterAsmPrinter - Register an AsmPrinter implementation for the given target.