26#define GET_REGINFO_TARGET_DESC
27#include "AMDGPUGenRegisterInfo.inc"
30 "amdgpu-spill-sgpr-to-vgpr",
31 cl::desc(
"Enable spilling SGPRs to VGPRs"),
36 "amdgpu-spill-cfi-saved-regs",
37 cl::desc(
"Enable spilling the registers required for CFI emission"),
42 cl::desc(
"Limit VGPRs to N registers by reserving the rest"));
46 cl::desc(
"Limit AGPRs to N registers by reserving the rest"));
50 cl::desc(
"Limit SGPRs to N registers by reserving the rest"));
52std::array<std::vector<int16_t>, 32> SIRegisterInfo::RegSplitParts;
53std::array<std::array<uint16_t, 32>, 9> SIRegisterInfo::SubRegFromChannelTable;
60 0, 1, 2, 3, 4, 5, 6, 7, 8, 0, 0, 0, 0, 0, 0, 0, 9};
63 const Twine &ErrMsg) {
136 MI->getOperand(0).isKill(),
Index,
RS) {}
151 MovOpc = AMDGPU::S_MOV_B32;
152 NotOpc = AMDGPU::S_NOT_B32;
155 MovOpc = AMDGPU::S_MOV_B64;
156 NotOpc = AMDGPU::S_NOT_B64;
161 SuperReg != AMDGPU::EXEC &&
"exec should never spill");
192 assert(
RS &&
"Cannot spill SGPR to memory without RegScavenger");
193 TmpVGPR =
RS->scavengeRegisterBackwards(AMDGPU::VGPR_32RegClass,
MI,
false,
221 IsWave32 ? AMDGPU::SGPR_32RegClass : AMDGPU::SGPR_64RegClass;
241 if (
RS->isRegUsed(AMDGPU::SCC))
243 "unhandled SGPR spill to memory");
253 I->getOperand(2).setIsDead();
288 I->getOperand(2).setIsDead();
317 if (
RS->isRegUsed(AMDGPU::SCC))
319 "unhandled SGPR spill to memory");
344 ST.getAMDGPUDwarfFlavour(),
349 assert(getSubRegIndexLaneMask(AMDGPU::sub0).getAsInteger() == 3 &&
350 getSubRegIndexLaneMask(AMDGPU::sub31).getAsInteger() == (3ULL << 62) &&
351 (getSubRegIndexLaneMask(AMDGPU::lo16) |
352 getSubRegIndexLaneMask(AMDGPU::hi16)).getAsInteger() ==
353 getSubRegIndexLaneMask(AMDGPU::sub0).getAsInteger() &&
354 "getNumCoveredRegs() will not work with generated subreg masks!");
356 RegPressureIgnoredUnits.resize(getNumRegUnits());
357 RegPressureIgnoredUnits.set(
359 for (
auto Reg : AMDGPU::VGPR_16RegClass) {
361 RegPressureIgnoredUnits.set(
362 static_cast<unsigned>(*regunits(Reg).begin()));
368 static auto InitializeRegSplitPartsOnce = [
this]() {
369 for (
unsigned Idx = 1, E = getNumSubRegIndices() - 1; Idx < E; ++Idx) {
370 unsigned Size = getSubRegIdxSize(Idx);
373 std::vector<int16_t> &Vec = RegSplitParts[
Size / 16 - 1];
374 unsigned Pos = getSubRegIdxOffset(Idx);
379 unsigned MaxNumParts = 1024 /
Size;
380 Vec.resize(MaxNumParts);
388 static auto InitializeSubRegFromChannelTableOnce = [
this]() {
389 for (
auto &Row : SubRegFromChannelTable)
390 Row.fill(AMDGPU::NoSubRegister);
391 for (
unsigned Idx = 1; Idx < getNumSubRegIndices(); ++Idx) {
392 unsigned Width = getSubRegIdxSize(Idx) / 32;
393 unsigned Offset = getSubRegIdxOffset(Idx) / 32;
398 unsigned TableIdx = Width - 1;
399 assert(TableIdx < SubRegFromChannelTable.size());
401 SubRegFromChannelTable[TableIdx][
Offset] = Idx;
405 llvm::call_once(InitializeRegSplitPartsFlag, InitializeRegSplitPartsOnce);
407 InitializeSubRegFromChannelTableOnce);
424 return ST.hasGFX90AInsts() ? CSR_AMDGPU_GFX90AInsts_SaveList
425 : CSR_AMDGPU_SaveList;
428 return ST.hasGFX90AInsts() ? CSR_AMDGPU_SI_Gfx_GFX90AInsts_SaveList
429 : CSR_AMDGPU_SI_Gfx_SaveList;
431 return CSR_AMDGPU_CS_ChainPreserve_SaveList;
434 static const MCPhysReg NoCalleeSavedReg = AMDGPU::NoRegister;
435 return &NoCalleeSavedReg;
451 return ST.hasGFX90AInsts() ? CSR_AMDGPU_GFX90AInsts_RegMask
452 : CSR_AMDGPU_RegMask;
455 return ST.hasGFX90AInsts() ? CSR_AMDGPU_SI_Gfx_GFX90AInsts_RegMask
456 : CSR_AMDGPU_SI_Gfx_RegMask;
461 return AMDGPU_AllVGPRs_RegMask;
468 return CSR_AMDGPU_NoRegs_RegMask;
472 return VGPR >= AMDGPU::VGPR0 && VGPR < AMDGPU::VGPR8;
483 if (RC == &AMDGPU::VGPR_32RegClass || RC == &AMDGPU::AGPR_32RegClass)
484 return &AMDGPU::AV_32RegClass;
485 if (RC == &AMDGPU::VReg_64RegClass || RC == &AMDGPU::AReg_64RegClass)
486 return &AMDGPU::AV_64RegClass;
487 if (RC == &AMDGPU::VReg_64_Align2RegClass ||
488 RC == &AMDGPU::AReg_64_Align2RegClass)
489 return &AMDGPU::AV_64_Align2RegClass;
490 if (RC == &AMDGPU::VReg_96RegClass || RC == &AMDGPU::AReg_96RegClass)
491 return &AMDGPU::AV_96RegClass;
492 if (RC == &AMDGPU::VReg_96_Align2RegClass ||
493 RC == &AMDGPU::AReg_96_Align2RegClass)
494 return &AMDGPU::AV_96_Align2RegClass;
495 if (RC == &AMDGPU::VReg_128RegClass || RC == &AMDGPU::AReg_128RegClass)
496 return &AMDGPU::AV_128RegClass;
497 if (RC == &AMDGPU::VReg_128_Align2RegClass ||
498 RC == &AMDGPU::AReg_128_Align2RegClass)
499 return &AMDGPU::AV_128_Align2RegClass;
500 if (RC == &AMDGPU::VReg_160RegClass || RC == &AMDGPU::AReg_160RegClass)
501 return &AMDGPU::AV_160RegClass;
502 if (RC == &AMDGPU::VReg_160_Align2RegClass ||
503 RC == &AMDGPU::AReg_160_Align2RegClass)
504 return &AMDGPU::AV_160_Align2RegClass;
505 if (RC == &AMDGPU::VReg_192RegClass || RC == &AMDGPU::AReg_192RegClass)
506 return &AMDGPU::AV_192RegClass;
507 if (RC == &AMDGPU::VReg_192_Align2RegClass ||
508 RC == &AMDGPU::AReg_192_Align2RegClass)
509 return &AMDGPU::AV_192_Align2RegClass;
510 if (RC == &AMDGPU::VReg_256RegClass || RC == &AMDGPU::AReg_256RegClass)
511 return &AMDGPU::AV_256RegClass;
512 if (RC == &AMDGPU::VReg_256_Align2RegClass ||
513 RC == &AMDGPU::AReg_256_Align2RegClass)
514 return &AMDGPU::AV_256_Align2RegClass;
515 if (RC == &AMDGPU::VReg_512RegClass || RC == &AMDGPU::AReg_512RegClass)
516 return &AMDGPU::AV_512RegClass;
517 if (RC == &AMDGPU::VReg_512_Align2RegClass ||
518 RC == &AMDGPU::AReg_512_Align2RegClass)
519 return &AMDGPU::AV_512_Align2RegClass;
520 if (RC == &AMDGPU::VReg_1024RegClass || RC == &AMDGPU::AReg_1024RegClass)
521 return &AMDGPU::AV_1024RegClass;
522 if (RC == &AMDGPU::VReg_1024_Align2RegClass ||
523 RC == &AMDGPU::AReg_1024_Align2RegClass)
524 return &AMDGPU::AV_1024_Align2RegClass;
554 return AMDGPU_AllVGPRs_RegMask;
558 return AMDGPU_AllAGPRs_RegMask;
562 return AMDGPU_AllVectorRegs_RegMask;
566 return AMDGPU_AllAllocatableSRegs_RegMask;
573 assert(NumRegIndex &&
"Not implemented");
574 assert(Channel < SubRegFromChannelTable[NumRegIndex - 1].
size());
575 return SubRegFromChannelTable[NumRegIndex - 1][Channel];
584 const unsigned Align,
587 MCRegister BaseReg(AMDGPU::SGPR_32RegClass.getRegister(BaseIdx));
588 return getMatchingSuperReg(BaseReg, AMDGPU::sub0, RC);
606 reserveRegisterTuples(
Reserved, AMDGPU::EXEC);
607 reserveRegisterTuples(
Reserved, AMDGPU::FLAT_SCR);
610 reserveRegisterTuples(
Reserved, AMDGPU::M0);
613 reserveRegisterTuples(
Reserved, AMDGPU::SRC_VCCZ);
614 reserveRegisterTuples(
Reserved, AMDGPU::SRC_EXECZ);
615 reserveRegisterTuples(
Reserved, AMDGPU::SRC_SCC);
618 reserveRegisterTuples(
Reserved, AMDGPU::SRC_SHARED_BASE);
619 reserveRegisterTuples(
Reserved, AMDGPU::SRC_SHARED_LIMIT);
620 reserveRegisterTuples(
Reserved, AMDGPU::SRC_PRIVATE_BASE);
621 reserveRegisterTuples(
Reserved, AMDGPU::SRC_PRIVATE_LIMIT);
622 reserveRegisterTuples(
Reserved, AMDGPU::SRC_FLAT_SCRATCH_BASE_LO);
623 reserveRegisterTuples(
Reserved, AMDGPU::SRC_FLAT_SCRATCH_BASE_HI);
626 reserveRegisterTuples(
Reserved, AMDGPU::ASYNCcnt);
627 reserveRegisterTuples(
Reserved, AMDGPU::TENSORcnt);
630 reserveRegisterTuples(
Reserved, AMDGPU::SRC_POPS_EXITING_WAVE_ID);
633 reserveRegisterTuples(
Reserved, AMDGPU::XNACK_MASK);
636 reserveRegisterTuples(
Reserved, AMDGPU::LDS_DIRECT);
639 reserveRegisterTuples(
Reserved, AMDGPU::TBA);
640 reserveRegisterTuples(
Reserved, AMDGPU::TMA);
641 reserveRegisterTuples(
Reserved, AMDGPU::TTMP0_TTMP1);
642 reserveRegisterTuples(
Reserved, AMDGPU::TTMP2_TTMP3);
643 reserveRegisterTuples(
Reserved, AMDGPU::TTMP4_TTMP5);
644 reserveRegisterTuples(
Reserved, AMDGPU::TTMP6_TTMP7);
645 reserveRegisterTuples(
Reserved, AMDGPU::TTMP8_TTMP9);
646 reserveRegisterTuples(
Reserved, AMDGPU::TTMP10_TTMP11);
647 reserveRegisterTuples(
Reserved, AMDGPU::TTMP12_TTMP13);
648 reserveRegisterTuples(
Reserved, AMDGPU::TTMP14_TTMP15);
651 reserveRegisterTuples(
Reserved, AMDGPU::SGPR_NULL64);
655 unsigned MaxNumSGPRs = ST.getMaxNumSGPRs(MF);
658 unsigned TotalNumSGPRs = AMDGPU::SGPR_32RegClass.getNumRegs();
661 unsigned NumRegs =
divideCeil(getRegSizeInBits(RC), 32);
664 if (Index + NumRegs > MaxNumSGPRs && Index < TotalNumSGPRs &&
665 Reg != AMDGPU::VCC_LO && Reg != AMDGPU::VCC_HI &&
673 if (ScratchRSrcReg != AMDGPU::NoRegister) {
677 reserveRegisterTuples(
Reserved, ScratchRSrcReg);
681 if (LongBranchReservedReg)
682 reserveRegisterTuples(
Reserved, LongBranchReservedReg);
689 reserveRegisterTuples(
Reserved, StackPtrReg);
690 assert(!isSubRegister(ScratchRSrcReg, StackPtrReg));
695 reserveRegisterTuples(
Reserved, FrameReg);
696 assert(!isSubRegister(ScratchRSrcReg, FrameReg));
701 reserveRegisterTuples(
Reserved, BasePtrReg);
702 assert(!isSubRegister(ScratchRSrcReg, BasePtrReg));
709 reserveRegisterTuples(
Reserved, ExecCopyReg);
713 auto [MaxNumVGPRs, MaxNumAGPRs] = ST.getMaxNumVectorRegs(MF.
getFunction());
723 unsigned NumRegs =
divideCeil(getRegSizeInBits(RC), 32);
726 if (Index + NumRegs > MaxNumVGPRs)
733 if (!ST.hasMAIInsts())
737 unsigned NumRegs =
divideCeil(getRegSizeInBits(RC), 32);
740 if (Index + NumRegs > MaxNumAGPRs)
748 if (ST.hasMAIInsts() && !ST.hasGFX90AInsts()) {
756 if (!PerLaneVGPRMask.
empty()) {
757 for (
unsigned RegI = AMDGPU::VGPR0, RegE = AMDGPU::VGPR0 + MaxNumVGPRs;
758 RegI < RegE; ++RegI) {
759 if (PerLaneVGPRMask.
test(RegI))
760 reserveRegisterTuples(
Reserved, RegI);
765 reserveRegisterTuples(
Reserved, Reg);
769 reserveRegisterTuples(
Reserved, Reg);
772 reserveRegisterTuples(
Reserved, Reg);
789 if (Info->isBottomOfStack())
797 if (Info->isEntryFunction()) {
830 int OffIdx = AMDGPU::getNamedOperandIdx(
MI->getOpcode(),
831 AMDGPU::OpName::offset);
832 return MI->getOperand(OffIdx).getImm();
837 switch (
MI->getOpcode()) {
838 case AMDGPU::V_ADD_U32_e32:
839 case AMDGPU::V_ADD_U32_e64:
840 case AMDGPU::V_ADD_CO_U32_e32: {
841 int OtherIdx = Idx == 1 ? 2 : 1;
845 case AMDGPU::V_ADD_CO_U32_e64: {
846 int OtherIdx = Idx == 2 ? 3 : 2;
857 assert((Idx == AMDGPU::getNamedOperandIdx(
MI->getOpcode(),
858 AMDGPU::OpName::vaddr) ||
859 (Idx == AMDGPU::getNamedOperandIdx(
MI->getOpcode(),
860 AMDGPU::OpName::saddr))) &&
861 "Should never see frame index on non-address operand");
873 return Src1.
isImm() || (Src1.
isReg() &&
TRI.isVGPR(
MI.getMF()->getRegInfo(),
878 return Src0.
isImm() || (Src0.
isReg() &&
TRI.isVGPR(
MI.getMF()->getRegInfo(),
887 switch (
MI->getOpcode()) {
888 case AMDGPU::V_ADD_U32_e32: {
891 if (ST.getConstantBusLimit(AMDGPU::V_ADD_U32_e32) < 2 &&
896 case AMDGPU::V_ADD_U32_e64:
906 return !ST.hasFlatScratchEnabled();
907 case AMDGPU::V_ADD_CO_U32_e32:
908 if (ST.getConstantBusLimit(AMDGPU::V_ADD_CO_U32_e32) < 2 &&
913 return MI->getOperand(3).isDead();
914 case AMDGPU::V_ADD_CO_U32_e64:
916 return MI->getOperand(1).isDead();
928 return !
TII->isLegalMUBUFImmOffset(FullOffset);
940 if (Ins !=
MBB->end())
941 DL = Ins->getDebugLoc();
947 ST.hasFlatScratchEnabled() ? AMDGPU::S_MOV_B32 : AMDGPU::V_MOV_B32_e32;
950 ST.hasFlatScratchEnabled() ? &AMDGPU::SReg_32_XEXEC_HIRegClass
951 : &AMDGPU::VGPR_32RegClass);
962 ? &AMDGPU::SReg_32_XM0RegClass
963 : &AMDGPU::VGPR_32RegClass);
970 if (ST.hasFlatScratchEnabled()) {
979 TII->getAddNoCarry(*
MBB, Ins,
DL, BaseReg)
991 switch (
MI.getOpcode()) {
992 case AMDGPU::V_ADD_U32_e32:
993 case AMDGPU::V_ADD_CO_U32_e32: {
999 if (!ImmOp->
isImm()) {
1002 TII->legalizeOperandsVOP2(
MI.getMF()->getRegInfo(),
MI);
1007 if (TotalOffset == 0) {
1008 MI.setDesc(
TII->get(AMDGPU::COPY));
1009 for (
unsigned I =
MI.getNumOperands() - 1;
I != 1; --
I)
1010 MI.removeOperand(
I);
1012 MI.getOperand(1).ChangeToRegister(BaseReg,
false);
1016 ImmOp->
setImm(TotalOffset);
1031 MI.getOperand(2).ChangeToRegister(BaseRegVGPR,
false);
1033 MI.getOperand(2).ChangeToRegister(BaseReg,
false);
1037 case AMDGPU::V_ADD_U32_e64:
1038 case AMDGPU::V_ADD_CO_U32_e64: {
1039 int Src0Idx =
MI.getNumExplicitDefs();
1045 if (!ImmOp->
isImm()) {
1047 TII->legalizeOperandsVOP3(
MI.getMF()->getRegInfo(),
MI);
1052 if (TotalOffset == 0) {
1053 MI.setDesc(
TII->get(AMDGPU::COPY));
1055 for (
unsigned I =
MI.getNumOperands() - 1;
I != 1; --
I)
1056 MI.removeOperand(
I);
1058 MI.getOperand(1).ChangeToRegister(BaseReg,
false);
1061 ImmOp->
setImm(TotalOffset);
1070 bool IsFlat =
TII->isFLATScratch(
MI);
1074 bool SeenFI =
false;
1086 TII->getNamedOperand(
MI, IsFlat ? AMDGPU::OpName::saddr
1087 : AMDGPU::OpName::vaddr);
1092 assert(FIOp && FIOp->
isFI() &&
"frame index must be address operand");
1098 "offset should be legal");
1109 assert(
TII->isLegalMUBUFImmOffset(NewOffset) &&
"offset should be legal");
1119 switch (
MI->getOpcode()) {
1120 case AMDGPU::V_ADD_U32_e32:
1121 case AMDGPU::V_ADD_CO_U32_e32:
1123 case AMDGPU::V_ADD_U32_e64:
1124 case AMDGPU::V_ADD_CO_U32_e64:
1137 return TII->isLegalMUBUFImmOffset(NewOffset);
1148 return &AMDGPU::VGPR_32RegClass;
1153 return RC == &AMDGPU::SCC_CLASSRegClass ? &AMDGPU::SReg_32RegClass : RC;
1159 unsigned Op =
MI.getOpcode();
1161 case AMDGPU::SI_BLOCK_SPILL_V1024_SAVE:
1162 case AMDGPU::SI_BLOCK_SPILL_V1024_CFI_SAVE:
1163 case AMDGPU::SI_BLOCK_SPILL_V1024_RESTORE:
1168 (
uint64_t)
TII->getNamedOperand(
MI, AMDGPU::OpName::mask)->getImm());
1169 case AMDGPU::SI_SPILL_S1024_SAVE:
1170 case AMDGPU::SI_SPILL_S1024_CFI_SAVE:
1171 case AMDGPU::SI_SPILL_S1024_RESTORE:
1172 case AMDGPU::SI_SPILL_V1024_SAVE:
1173 case AMDGPU::SI_SPILL_V1024_CFI_SAVE:
1174 case AMDGPU::SI_SPILL_V1024_RESTORE:
1175 case AMDGPU::SI_SPILL_A1024_SAVE:
1176 case AMDGPU::SI_SPILL_A1024_CFI_SAVE:
1177 case AMDGPU::SI_SPILL_A1024_RESTORE:
1178 case AMDGPU::SI_SPILL_AV1024_SAVE:
1179 case AMDGPU::SI_SPILL_AV1024_CFI_SAVE:
1180 case AMDGPU::SI_SPILL_AV1024_RESTORE:
1182 case AMDGPU::SI_SPILL_S512_SAVE:
1183 case AMDGPU::SI_SPILL_S512_CFI_SAVE:
1184 case AMDGPU::SI_SPILL_S512_RESTORE:
1185 case AMDGPU::SI_SPILL_V512_SAVE:
1186 case AMDGPU::SI_SPILL_V512_CFI_SAVE:
1187 case AMDGPU::SI_SPILL_V512_RESTORE:
1188 case AMDGPU::SI_SPILL_A512_SAVE:
1189 case AMDGPU::SI_SPILL_A512_CFI_SAVE:
1190 case AMDGPU::SI_SPILL_A512_RESTORE:
1191 case AMDGPU::SI_SPILL_AV512_SAVE:
1192 case AMDGPU::SI_SPILL_AV512_CFI_SAVE:
1193 case AMDGPU::SI_SPILL_AV512_RESTORE:
1195 case AMDGPU::SI_SPILL_S384_SAVE:
1196 case AMDGPU::SI_SPILL_S384_RESTORE:
1197 case AMDGPU::SI_SPILL_V384_SAVE:
1198 case AMDGPU::SI_SPILL_V384_RESTORE:
1199 case AMDGPU::SI_SPILL_A384_SAVE:
1200 case AMDGPU::SI_SPILL_A384_RESTORE:
1201 case AMDGPU::SI_SPILL_AV384_SAVE:
1202 case AMDGPU::SI_SPILL_AV384_RESTORE:
1204 case AMDGPU::SI_SPILL_S352_SAVE:
1205 case AMDGPU::SI_SPILL_S352_RESTORE:
1206 case AMDGPU::SI_SPILL_V352_SAVE:
1207 case AMDGPU::SI_SPILL_V352_RESTORE:
1208 case AMDGPU::SI_SPILL_A352_SAVE:
1209 case AMDGPU::SI_SPILL_A352_RESTORE:
1210 case AMDGPU::SI_SPILL_AV352_SAVE:
1211 case AMDGPU::SI_SPILL_AV352_RESTORE:
1213 case AMDGPU::SI_SPILL_S320_SAVE:
1214 case AMDGPU::SI_SPILL_S320_RESTORE:
1215 case AMDGPU::SI_SPILL_V320_SAVE:
1216 case AMDGPU::SI_SPILL_V320_RESTORE:
1217 case AMDGPU::SI_SPILL_A320_SAVE:
1218 case AMDGPU::SI_SPILL_A320_RESTORE:
1219 case AMDGPU::SI_SPILL_AV320_SAVE:
1220 case AMDGPU::SI_SPILL_AV320_RESTORE:
1222 case AMDGPU::SI_SPILL_S288_SAVE:
1223 case AMDGPU::SI_SPILL_S288_RESTORE:
1224 case AMDGPU::SI_SPILL_V288_SAVE:
1225 case AMDGPU::SI_SPILL_V288_RESTORE:
1226 case AMDGPU::SI_SPILL_A288_SAVE:
1227 case AMDGPU::SI_SPILL_A288_RESTORE:
1228 case AMDGPU::SI_SPILL_AV288_SAVE:
1229 case AMDGPU::SI_SPILL_AV288_RESTORE:
1231 case AMDGPU::SI_SPILL_S256_SAVE:
1232 case AMDGPU::SI_SPILL_S256_CFI_SAVE:
1233 case AMDGPU::SI_SPILL_S256_RESTORE:
1234 case AMDGPU::SI_SPILL_V256_SAVE:
1235 case AMDGPU::SI_SPILL_V256_CFI_SAVE:
1236 case AMDGPU::SI_SPILL_V256_RESTORE:
1237 case AMDGPU::SI_SPILL_A256_SAVE:
1238 case AMDGPU::SI_SPILL_A256_CFI_SAVE:
1239 case AMDGPU::SI_SPILL_A256_RESTORE:
1240 case AMDGPU::SI_SPILL_AV256_SAVE:
1241 case AMDGPU::SI_SPILL_AV256_CFI_SAVE:
1242 case AMDGPU::SI_SPILL_AV256_RESTORE:
1244 case AMDGPU::SI_SPILL_S224_SAVE:
1245 case AMDGPU::SI_SPILL_S224_CFI_SAVE:
1246 case AMDGPU::SI_SPILL_S224_RESTORE:
1247 case AMDGPU::SI_SPILL_V224_SAVE:
1248 case AMDGPU::SI_SPILL_V224_CFI_SAVE:
1249 case AMDGPU::SI_SPILL_V224_RESTORE:
1250 case AMDGPU::SI_SPILL_A224_SAVE:
1251 case AMDGPU::SI_SPILL_A224_CFI_SAVE:
1252 case AMDGPU::SI_SPILL_A224_RESTORE:
1253 case AMDGPU::SI_SPILL_AV224_SAVE:
1254 case AMDGPU::SI_SPILL_AV224_CFI_SAVE:
1255 case AMDGPU::SI_SPILL_AV224_RESTORE:
1257 case AMDGPU::SI_SPILL_S192_SAVE:
1258 case AMDGPU::SI_SPILL_S192_CFI_SAVE:
1259 case AMDGPU::SI_SPILL_S192_RESTORE:
1260 case AMDGPU::SI_SPILL_V192_SAVE:
1261 case AMDGPU::SI_SPILL_V192_CFI_SAVE:
1262 case AMDGPU::SI_SPILL_V192_RESTORE:
1263 case AMDGPU::SI_SPILL_A192_SAVE:
1264 case AMDGPU::SI_SPILL_A192_CFI_SAVE:
1265 case AMDGPU::SI_SPILL_A192_RESTORE:
1266 case AMDGPU::SI_SPILL_AV192_SAVE:
1267 case AMDGPU::SI_SPILL_AV192_CFI_SAVE:
1268 case AMDGPU::SI_SPILL_AV192_RESTORE:
1270 case AMDGPU::SI_SPILL_S160_SAVE:
1271 case AMDGPU::SI_SPILL_S160_CFI_SAVE:
1272 case AMDGPU::SI_SPILL_S160_RESTORE:
1273 case AMDGPU::SI_SPILL_V160_SAVE:
1274 case AMDGPU::SI_SPILL_V160_CFI_SAVE:
1275 case AMDGPU::SI_SPILL_V160_RESTORE:
1276 case AMDGPU::SI_SPILL_A160_SAVE:
1277 case AMDGPU::SI_SPILL_A160_CFI_SAVE:
1278 case AMDGPU::SI_SPILL_A160_RESTORE:
1279 case AMDGPU::SI_SPILL_AV160_SAVE:
1280 case AMDGPU::SI_SPILL_AV160_CFI_SAVE:
1281 case AMDGPU::SI_SPILL_AV160_RESTORE:
1283 case AMDGPU::SI_SPILL_S128_SAVE:
1284 case AMDGPU::SI_SPILL_S128_CFI_SAVE:
1285 case AMDGPU::SI_SPILL_S128_RESTORE:
1286 case AMDGPU::SI_SPILL_V128_SAVE:
1287 case AMDGPU::SI_SPILL_V128_CFI_SAVE:
1288 case AMDGPU::SI_SPILL_V128_RESTORE:
1289 case AMDGPU::SI_SPILL_A128_SAVE:
1290 case AMDGPU::SI_SPILL_A128_CFI_SAVE:
1291 case AMDGPU::SI_SPILL_A128_RESTORE:
1292 case AMDGPU::SI_SPILL_AV128_SAVE:
1293 case AMDGPU::SI_SPILL_AV128_CFI_SAVE:
1294 case AMDGPU::SI_SPILL_AV128_RESTORE:
1296 case AMDGPU::SI_SPILL_S96_SAVE:
1297 case AMDGPU::SI_SPILL_S96_CFI_SAVE:
1298 case AMDGPU::SI_SPILL_S96_RESTORE:
1299 case AMDGPU::SI_SPILL_V96_SAVE:
1300 case AMDGPU::SI_SPILL_V96_CFI_SAVE:
1301 case AMDGPU::SI_SPILL_V96_RESTORE:
1302 case AMDGPU::SI_SPILL_A96_SAVE:
1303 case AMDGPU::SI_SPILL_A96_CFI_SAVE:
1304 case AMDGPU::SI_SPILL_A96_RESTORE:
1305 case AMDGPU::SI_SPILL_AV96_SAVE:
1306 case AMDGPU::SI_SPILL_AV96_CFI_SAVE:
1307 case AMDGPU::SI_SPILL_AV96_RESTORE:
1309 case AMDGPU::SI_SPILL_S64_SAVE:
1310 case AMDGPU::SI_SPILL_S64_CFI_SAVE:
1311 case AMDGPU::SI_SPILL_S64_RESTORE:
1312 case AMDGPU::SI_SPILL_V64_SAVE:
1313 case AMDGPU::SI_SPILL_V64_CFI_SAVE:
1314 case AMDGPU::SI_SPILL_V64_RESTORE:
1315 case AMDGPU::SI_SPILL_A64_SAVE:
1316 case AMDGPU::SI_SPILL_A64_CFI_SAVE:
1317 case AMDGPU::SI_SPILL_A64_RESTORE:
1318 case AMDGPU::SI_SPILL_AV64_SAVE:
1319 case AMDGPU::SI_SPILL_AV64_CFI_SAVE:
1320 case AMDGPU::SI_SPILL_AV64_RESTORE:
1322 case AMDGPU::SI_SPILL_S32_SAVE:
1323 case AMDGPU::SI_SPILL_S32_CFI_SAVE:
1324 case AMDGPU::SI_SPILL_S32_RESTORE:
1325 case AMDGPU::SI_SPILL_V32_SAVE:
1326 case AMDGPU::SI_SPILL_V32_CFI_SAVE:
1327 case AMDGPU::SI_SPILL_V32_RESTORE:
1328 case AMDGPU::SI_SPILL_A32_SAVE:
1329 case AMDGPU::SI_SPILL_A32_CFI_SAVE:
1330 case AMDGPU::SI_SPILL_A32_RESTORE:
1331 case AMDGPU::SI_SPILL_AV32_SAVE:
1332 case AMDGPU::SI_SPILL_AV32_CFI_SAVE:
1333 case AMDGPU::SI_SPILL_AV32_RESTORE:
1334 case AMDGPU::SI_SPILL_WWM_V32_SAVE:
1335 case AMDGPU::SI_SPILL_WWM_V32_RESTORE:
1336 case AMDGPU::SI_SPILL_WWM_AV32_SAVE:
1337 case AMDGPU::SI_SPILL_WWM_AV32_RESTORE:
1338 case AMDGPU::SI_SPILL_V16_SAVE:
1339 case AMDGPU::SI_SPILL_V16_RESTORE:
1347 case AMDGPU::BUFFER_STORE_DWORD_OFFEN:
1348 return AMDGPU::BUFFER_STORE_DWORD_OFFSET;
1349 case AMDGPU::BUFFER_STORE_BYTE_OFFEN:
1350 return AMDGPU::BUFFER_STORE_BYTE_OFFSET;
1351 case AMDGPU::BUFFER_STORE_SHORT_OFFEN:
1352 return AMDGPU::BUFFER_STORE_SHORT_OFFSET;
1353 case AMDGPU::BUFFER_STORE_DWORDX2_OFFEN:
1354 return AMDGPU::BUFFER_STORE_DWORDX2_OFFSET;
1355 case AMDGPU::BUFFER_STORE_DWORDX3_OFFEN:
1356 return AMDGPU::BUFFER_STORE_DWORDX3_OFFSET;
1357 case AMDGPU::BUFFER_STORE_DWORDX4_OFFEN:
1358 return AMDGPU::BUFFER_STORE_DWORDX4_OFFSET;
1359 case AMDGPU::BUFFER_STORE_SHORT_D16_HI_OFFEN:
1360 return AMDGPU::BUFFER_STORE_SHORT_D16_HI_OFFSET;
1361 case AMDGPU::BUFFER_STORE_BYTE_D16_HI_OFFEN:
1362 return AMDGPU::BUFFER_STORE_BYTE_D16_HI_OFFSET;
1370 case AMDGPU::BUFFER_LOAD_DWORD_OFFEN:
1371 return AMDGPU::BUFFER_LOAD_DWORD_OFFSET;
1372 case AMDGPU::BUFFER_LOAD_UBYTE_OFFEN:
1373 return AMDGPU::BUFFER_LOAD_UBYTE_OFFSET;
1374 case AMDGPU::BUFFER_LOAD_SBYTE_OFFEN:
1375 return AMDGPU::BUFFER_LOAD_SBYTE_OFFSET;
1376 case AMDGPU::BUFFER_LOAD_USHORT_OFFEN:
1377 return AMDGPU::BUFFER_LOAD_USHORT_OFFSET;
1378 case AMDGPU::BUFFER_LOAD_SSHORT_OFFEN:
1379 return AMDGPU::BUFFER_LOAD_SSHORT_OFFSET;
1380 case AMDGPU::BUFFER_LOAD_DWORDX2_OFFEN:
1381 return AMDGPU::BUFFER_LOAD_DWORDX2_OFFSET;
1382 case AMDGPU::BUFFER_LOAD_DWORDX3_OFFEN:
1383 return AMDGPU::BUFFER_LOAD_DWORDX3_OFFSET;
1384 case AMDGPU::BUFFER_LOAD_DWORDX4_OFFEN:
1385 return AMDGPU::BUFFER_LOAD_DWORDX4_OFFSET;
1386 case AMDGPU::BUFFER_LOAD_UBYTE_D16_OFFEN:
1387 return AMDGPU::BUFFER_LOAD_UBYTE_D16_OFFSET;
1388 case AMDGPU::BUFFER_LOAD_UBYTE_D16_HI_OFFEN:
1389 return AMDGPU::BUFFER_LOAD_UBYTE_D16_HI_OFFSET;
1390 case AMDGPU::BUFFER_LOAD_SBYTE_D16_OFFEN:
1391 return AMDGPU::BUFFER_LOAD_SBYTE_D16_OFFSET;
1392 case AMDGPU::BUFFER_LOAD_SBYTE_D16_HI_OFFEN:
1393 return AMDGPU::BUFFER_LOAD_SBYTE_D16_HI_OFFSET;
1394 case AMDGPU::BUFFER_LOAD_SHORT_D16_OFFEN:
1395 return AMDGPU::BUFFER_LOAD_SHORT_D16_OFFSET;
1396 case AMDGPU::BUFFER_LOAD_SHORT_D16_HI_OFFEN:
1397 return AMDGPU::BUFFER_LOAD_SHORT_D16_HI_OFFSET;
1405 case AMDGPU::BUFFER_STORE_DWORD_OFFSET:
1406 return AMDGPU::BUFFER_STORE_DWORD_OFFEN;
1407 case AMDGPU::BUFFER_STORE_BYTE_OFFSET:
1408 return AMDGPU::BUFFER_STORE_BYTE_OFFEN;
1409 case AMDGPU::BUFFER_STORE_SHORT_OFFSET:
1410 return AMDGPU::BUFFER_STORE_SHORT_OFFEN;
1411 case AMDGPU::BUFFER_STORE_DWORDX2_OFFSET:
1412 return AMDGPU::BUFFER_STORE_DWORDX2_OFFEN;
1413 case AMDGPU::BUFFER_STORE_DWORDX3_OFFSET:
1414 return AMDGPU::BUFFER_STORE_DWORDX3_OFFEN;
1415 case AMDGPU::BUFFER_STORE_DWORDX4_OFFSET:
1416 return AMDGPU::BUFFER_STORE_DWORDX4_OFFEN;
1417 case AMDGPU::BUFFER_STORE_SHORT_D16_HI_OFFSET:
1418 return AMDGPU::BUFFER_STORE_SHORT_D16_HI_OFFEN;
1419 case AMDGPU::BUFFER_STORE_BYTE_D16_HI_OFFSET:
1420 return AMDGPU::BUFFER_STORE_BYTE_D16_HI_OFFEN;
1428 case AMDGPU::BUFFER_LOAD_DWORD_OFFSET:
1429 return AMDGPU::BUFFER_LOAD_DWORD_OFFEN;
1430 case AMDGPU::BUFFER_LOAD_UBYTE_OFFSET:
1431 return AMDGPU::BUFFER_LOAD_UBYTE_OFFEN;
1432 case AMDGPU::BUFFER_LOAD_SBYTE_OFFSET:
1433 return AMDGPU::BUFFER_LOAD_SBYTE_OFFEN;
1434 case AMDGPU::BUFFER_LOAD_USHORT_OFFSET:
1435 return AMDGPU::BUFFER_LOAD_USHORT_OFFEN;
1436 case AMDGPU::BUFFER_LOAD_SSHORT_OFFSET:
1437 return AMDGPU::BUFFER_LOAD_SSHORT_OFFEN;
1438 case AMDGPU::BUFFER_LOAD_DWORDX2_OFFSET:
1439 return AMDGPU::BUFFER_LOAD_DWORDX2_OFFEN;
1440 case AMDGPU::BUFFER_LOAD_DWORDX3_OFFSET:
1441 return AMDGPU::BUFFER_LOAD_DWORDX3_OFFEN;
1442 case AMDGPU::BUFFER_LOAD_DWORDX4_OFFSET:
1443 return AMDGPU::BUFFER_LOAD_DWORDX4_OFFEN;
1444 case AMDGPU::BUFFER_LOAD_UBYTE_D16_OFFSET:
1445 return AMDGPU::BUFFER_LOAD_UBYTE_D16_OFFEN;
1446 case AMDGPU::BUFFER_LOAD_UBYTE_D16_HI_OFFSET:
1447 return AMDGPU::BUFFER_LOAD_UBYTE_D16_HI_OFFEN;
1448 case AMDGPU::BUFFER_LOAD_SBYTE_D16_OFFSET:
1449 return AMDGPU::BUFFER_LOAD_SBYTE_D16_OFFEN;
1450 case AMDGPU::BUFFER_LOAD_SBYTE_D16_HI_OFFSET:
1451 return AMDGPU::BUFFER_LOAD_SBYTE_D16_HI_OFFEN;
1452 case AMDGPU::BUFFER_LOAD_SHORT_D16_OFFSET:
1453 return AMDGPU::BUFFER_LOAD_SHORT_D16_OFFEN;
1454 case AMDGPU::BUFFER_LOAD_SHORT_D16_HI_OFFSET:
1455 return AMDGPU::BUFFER_LOAD_SHORT_D16_HI_OFFEN;
1464 unsigned ValueReg,
bool IsKill,
bool NeedsCFI) {
1472 if (
Reg == AMDGPU::NoRegister)
1475 bool IsStore =
MI->mayStore();
1479 unsigned Dst = IsStore ?
Reg : ValueReg;
1480 unsigned Src = IsStore ? ValueReg :
Reg;
1481 bool IsVGPR =
TRI->isVGPR(MRI,
Reg);
1483 if (IsVGPR ==
TRI->isVGPR(MRI, ValueReg)) {
1495 unsigned Opc = (IsStore ^ IsVGPR) ? AMDGPU::V_ACCVGPR_WRITE_B32_e64
1496 : AMDGPU::V_ACCVGPR_READ_B32_e64;
1516 bool IsStore =
MI->mayStore();
1518 unsigned Opc =
MI->getOpcode();
1519 int LoadStoreOp = IsStore ?
1521 if (LoadStoreOp == -1)
1532 .
add(*
TII->getNamedOperand(*
MI, AMDGPU::OpName::srsrc))
1533 .
add(*
TII->getNamedOperand(*
MI, AMDGPU::OpName::soffset))
1540 AMDGPU::OpName::vdata_in);
1542 NewMI.
add(*VDataIn);
1547 unsigned LoadStoreOp,
1549 bool IsStore =
TII->get(LoadStoreOp).mayStore();
1555 if (
TII->isBlockLoadStore(LoadStoreOp))
1560 LoadStoreOp = IsStore ? AMDGPU::SCRATCH_STORE_DWORD_SADDR
1561 : AMDGPU::SCRATCH_LOAD_DWORD_SADDR;
1564 LoadStoreOp = IsStore ? AMDGPU::SCRATCH_STORE_DWORDX2_SADDR
1565 : AMDGPU::SCRATCH_LOAD_DWORDX2_SADDR;
1568 LoadStoreOp = IsStore ? AMDGPU::SCRATCH_STORE_DWORDX3_SADDR
1569 : AMDGPU::SCRATCH_LOAD_DWORDX3_SADDR;
1572 LoadStoreOp = IsStore ? AMDGPU::SCRATCH_STORE_DWORDX4_SADDR
1573 : AMDGPU::SCRATCH_LOAD_DWORDX4_SADDR;
1589 unsigned LoadStoreOp,
int Index,
Register ValueReg,
bool IsKill,
1592 assert((!RS || !LiveUnits) &&
"Only RS or LiveUnits can be set but not both");
1601 bool IsStore =
Desc->mayStore();
1602 bool IsFlat =
TII->isFLATScratch(LoadStoreOp);
1603 bool IsBlock =
TII->isBlockLoadStore(LoadStoreOp);
1605 bool CanClobberSCC =
false;
1606 bool Scavenged =
false;
1611 const bool IsAGPR = !ST.hasGFX90AInsts() &&
isAGPRClass(RC);
1622 bool IsRegMisaligned =
false;
1623 if (!IsBlock && !IsAGPR && RegWidth > 4 && IsFlat) {
1624 unsigned SpillOpcode =
1627 IsStore ? AMDGPU::getNamedOperandIdx(SpillOpcode, AMDGPU::OpName::vdata)
1630 TII->getRegClass(
TII->get(SpillOpcode), VDataIdx);
1631 if (!ExpectedRC->
contains(ValueReg)) {
1635 getMatchingSuperRegClass(RC, ExpectedRC, SubIdx);
1636 if (!MatchRC || !MatchRC->
contains(ValueReg))
1637 IsRegMisaligned =
true;
1641 if (IsRegMisaligned)
1646 unsigned EltSize = IsBlock ? RegWidth
1647 : (IsFlat && !IsAGPR) ? std::min(RegWidth, 16u)
1649 unsigned NumSubRegs = RegWidth / EltSize;
1650 unsigned Size = NumSubRegs * EltSize;
1651 unsigned RemSize = RegWidth -
Size;
1652 unsigned NumRemSubRegs = RemSize ? 1 : 0;
1654 if (IsRegMisaligned)
1657 int64_t MaterializedOffset =
Offset;
1662 int64_t MaxOffset =
Offset +
Size - (RemSize ? 0 : EltSize);
1663 int64_t ScratchOffsetRegDelta = 0;
1664 int64_t AdditionalCFIOffset = 0;
1666 if (IsFlat && EltSize > 4) {
1668 Desc = &
TII->get(LoadStoreOp);
1675 "unexpected VGPR spill offset");
1682 bool UseVGPROffset =
false;
1689 if (IsFlat && SGPRBase) {
1694 if (ST.getConstantBusLimit(AMDGPU::V_ADD_U32_e64) >= 2) {
1713 bool IsOffsetLegal =
1716 :
TII->isLegalMUBUFImmOffset(MaxOffset);
1717 if (!IsOffsetLegal || (IsFlat && !SOffset && !ST.hasFlatScratchSTMode())) {
1725 SOffset = RS->scavengeRegisterBackwards(AMDGPU::SGPR_32RegClass,
MI,
false, 0,
false);
1728 CanClobberSCC = !RS->isRegUsed(AMDGPU::SCC);
1729 }
else if (LiveUnits) {
1730 CanClobberSCC = LiveUnits->
available(AMDGPU::SCC);
1731 for (
MCRegister Reg : AMDGPU::SGPR_32RegClass) {
1739 if (ScratchOffsetReg != AMDGPU::NoRegister && !CanClobberSCC)
1743 UseVGPROffset =
true;
1746 TmpOffsetVGPR = RS->scavengeRegisterBackwards(AMDGPU::VGPR_32RegClass,
MI,
false, 0);
1749 for (
MCRegister Reg : AMDGPU::VGPR_32RegClass) {
1751 TmpOffsetVGPR = Reg;
1758 }
else if (!SOffset && CanClobberSCC) {
1769 if (!ScratchOffsetReg)
1771 SOffset = ScratchOffsetReg;
1772 ScratchOffsetRegDelta =
Offset;
1777 AdditionalCFIOffset =
Offset;
1781 if (!IsFlat && !UseVGPROffset)
1782 Offset *= ST.getWavefrontSize();
1784 if (!UseVGPROffset && !SOffset)
1787 if (UseVGPROffset) {
1789 MaterializeVOffset(ScratchOffsetReg, TmpOffsetVGPR,
Offset);
1790 }
else if (ScratchOffsetReg == AMDGPU::NoRegister) {
1795 .
addReg(ScratchOffsetReg)
1797 Add->getOperand(3).setIsDead();
1803 if (IsFlat && SOffset == AMDGPU::NoRegister) {
1804 assert(AMDGPU::getNamedOperandIdx(LoadStoreOp, AMDGPU::OpName::vaddr) < 0
1805 &&
"Unexpected vaddr for flat scratch with a FI operand");
1807 if (UseVGPROffset) {
1810 assert(ST.hasFlatScratchSTMode());
1811 assert(!
TII->isBlockLoadStore(LoadStoreOp) &&
"Block ops don't have ST");
1815 Desc = &
TII->get(LoadStoreOp);
1820 unsigned OrigEltSize = EltSize;
1821 for (
unsigned i = 0, e = NumSubRegs + NumRemSubRegs, RegOffset = 0; i != e;
1822 ++i, RegOffset += EltSize) {
1823 if (IsRegMisaligned) {
1831 IsRegMisaligned =
false;
1832 EltSize = OrigEltSize;
1836 if (i == NumSubRegs) {
1840 Desc = &
TII->get(LoadStoreOp);
1842 if (!IsFlat && UseVGPROffset) {
1845 Desc = &
TII->get(NewLoadStoreOp);
1848 if (UseVGPROffset && TmpOffsetVGPR == TmpIntermediateVGPR) {
1855 MaterializeVOffset(ScratchOffsetReg, TmpOffsetVGPR, MaterializedOffset);
1858 unsigned NumRegs = EltSize / 4;
1866 const bool IsLastSubReg = i + 1 == e;
1867 const bool IsFirstSubReg = i == 0;
1876 bool NeedSuperRegDef = e > 1 && IsStore && IsFirstSubReg;
1877 bool NeedSuperRegImpOperand = e > 1;
1881 unsigned RemEltSize = EltSize;
1889 for (
int LaneS = (RegOffset + EltSize) / 4 - 1, Lane = LaneS,
1890 LaneE = RegOffset / 4;
1891 Lane >= LaneE; --Lane) {
1892 bool IsSubReg = e > 1 || EltSize > 4;
1898 if (!MIB.getInstr())
1900 if (NeedSuperRegDef || (IsSubReg && IsStore && Lane == LaneS && IsFirstSubReg)) {
1902 NeedSuperRegDef =
false;
1904 if ((IsSubReg || NeedSuperRegImpOperand) && (IsFirstSubReg || IsLastSubReg)) {
1905 NeedSuperRegImpOperand =
true;
1907 if (!IsLastSubReg || (Lane != LaneE))
1909 if (!IsFirstSubReg || (Lane != LaneS))
1919 if (RemEltSize != EltSize) {
1920 assert(IsFlat && EltSize > 4);
1922 unsigned NumRegs = RemEltSize / 4;
1923 SubReg =
Register(getSubReg(ValueReg,
1929 unsigned FinalReg = SubReg;
1934 if (!TmpIntermediateVGPR) {
1940 TII->get(AMDGPU::V_ACCVGPR_READ_B32_e64),
1941 TmpIntermediateVGPR)
1943 if (NeedSuperRegDef)
1945 if (NeedSuperRegImpOperand && (IsFirstSubReg || IsLastSubReg))
1949 SubReg = TmpIntermediateVGPR;
1950 }
else if (UseVGPROffset) {
1951 if (!TmpOffsetVGPR) {
1952 TmpOffsetVGPR = RS->scavengeRegisterBackwards(AMDGPU::VGPR_32RegClass,
1954 RS->setRegUsed(TmpOffsetVGPR);
1959 if (LoadStoreOp == AMDGPU::SCRATCH_LOAD_USHORT_SADDR ||
1960 LoadStoreOp == AMDGPU::SCRATCH_LOAD_USHORT_ST) {
1964 RS->scavengeRegisterBackwards(AMDGPU::VGPR_32RegClass,
MI,
false, 0);
1980 if (UseVGPROffset) {
1989 if (SOffset == AMDGPU::NoRegister) {
1991 if (UseVGPROffset && ScratchOffsetReg) {
1992 MIB.addReg(ScratchOffsetReg);
1999 MIB.addReg(SOffset, SOffsetRegState);
2009 MIB.addMemOperand(NewMMO);
2011 if (FinalValueReg != ValueReg) {
2013 ValueReg = getSubReg(ValueReg, AMDGPU::lo16);
2019 ValueReg = FinalValueReg;
2022 if (IsStore && NeedsCFI) {
2023 if (
TII->isBlockLoadStore(LoadStoreOp)) {
2025 "expected whole register block to be treated as single element");
2030 (
Offset + RegOffset) * ST.getWavefrontSize() + AdditionalCFIOffset);
2034 if (!IsAGPR && NeedSuperRegDef)
2037 if (!IsStore && IsAGPR && TmpIntermediateVGPR != AMDGPU::NoRegister) {
2045 bool PartialReloadCopy = (RemEltSize != EltSize) && !IsStore;
2046 if (NeedSuperRegImpOperand &&
2047 (IsFirstSubReg || (IsLastSubReg && !IsSrcDstDef))) {
2049 if (PartialReloadCopy)
2074 if (!IsStore &&
MI !=
MBB.end() &&
MI->isReturn() &&
2075 MI->readsRegister(SubReg,
this)) {
2077 MIB->tieOperands(0, MIB->getNumOperands() - 1);
2085 if (!IsStore &&
TII->isBlockLoadStore(LoadStoreOp))
2089 if (ScratchOffsetRegDelta != 0) {
2093 .
addImm(-ScratchOffsetRegDelta);
2102 Register BaseVGPR = getSubReg(BlockReg, AMDGPU::sub0);
2103 for (
unsigned RegOffset = 1; RegOffset < 32; ++RegOffset)
2104 if (!(Mask & (1 << RegOffset)) &&
2105 isCalleeSavedPhysReg(BaseVGPR + RegOffset, *MF))
2116 Register BaseVGPR = getSubReg(BlockReg, AMDGPU::sub0);
2117 for (
unsigned RegOffset = 0; RegOffset < 32; ++RegOffset) {
2118 Register VGPR = BaseVGPR + RegOffset;
2119 if (Mask & (1 << RegOffset)) {
2120 assert(isCalleeSavedPhysReg(VGPR, *MF));
2121 ST.getFrameLowering()->buildCFIForVGPRToVMEMSpill(
2123 (
Offset + RegOffset) * ST.getWavefrontSize());
2124 }
else if (isCalleeSavedPhysReg(VGPR, *MF)) {
2129 BaseVGPR + RegOffset);
2136 bool IsKill)
const {
2146 Align Alignment = FrameInfo.getObjectAlign(Index);
2153 unsigned Opc = ST.hasFlatScratchEnabled()
2154 ? AMDGPU::SCRATCH_LOAD_DWORD_SADDR
2155 : AMDGPU::BUFFER_LOAD_DWORD_OFFSET;
2159 unsigned Opc = ST.hasFlatScratchEnabled()
2160 ? AMDGPU::SCRATCH_STORE_DWORD_SADDR
2161 : AMDGPU::BUFFER_STORE_DWORD_OFFSET;
2172 bool SpillToPhysVGPRLane,
bool NeedsCFI)
const {
2173 assert(!
MI->getOperand(0).isUndef() &&
2174 "undef spill should have been deleted earlier");
2181 bool SpillToVGPR = !VGPRSpills.
empty();
2182 if (OnlyToVGPR && !SpillToVGPR)
2197 "Num of SGPRs spilled should be less than or equal to num of "
2200 for (
unsigned i = 0, e = SB.
NumSubRegs; i < e; ++i) {
2207 bool IsFirstSubreg = i == 0;
2209 bool UseKill = SB.
IsKill && IsLastSubreg;
2215 SB.
TII.get(AMDGPU::SI_SPILL_S32_TO_VGPR), Spill.VGPR)
2225 AMDGPU::PC_REG, VGPRSpills);
2228 Spill.VGPR, Spill.Lane);
2248 if (SB.
NumSubRegs > 1 && (IsFirstSubreg || IsLastSubreg))
2268 for (
unsigned i =
Offset * PVD.PerVGPR,
2278 SB.
TII.get(AMDGPU::SI_SPILL_S32_TO_VGPR), SB.
TmpVGPR)
2279 .
addReg(SubReg, SubKillState)
2310 ST.getWavefrontSize();
2312 AMDGPU::PC_REG, CFIOffset);
2321 MI->eraseFromParent();
2333 bool SpillToPhysVGPRLane)
const {
2339 bool SpillToVGPR = !VGPRSpills.
empty();
2340 if (OnlyToVGPR && !SpillToVGPR)
2344 for (
unsigned i = 0, e = SB.
NumSubRegs; i < e; ++i) {
2352 SB.
TII.get(AMDGPU::SI_RESTORE_S32_FROM_VGPR), SubReg)
2375 for (
unsigned i =
Offset * PVD.PerVGPR,
2383 bool LastSubReg = (i + 1 == e);
2385 SB.
TII.get(AMDGPU::SI_RESTORE_S32_FROM_VGPR), SubReg)
2402 MI->eraseFromParent();
2422 for (
unsigned i =
Offset * PVD.PerVGPR,
2433 .
addReg(SubReg, SubKillState)
2451 MI = RestoreMBB.
end();
2457 for (
unsigned i =
Offset * PVD.PerVGPR,
2466 bool LastSubReg = (i + 1 == e);
2487 bool NeedsCFI =
false;
2488 switch (
MI->getOpcode()) {
2489 case AMDGPU::SI_SPILL_S1024_CFI_SAVE:
2490 case AMDGPU::SI_SPILL_S512_CFI_SAVE:
2491 case AMDGPU::SI_SPILL_S256_CFI_SAVE:
2492 case AMDGPU::SI_SPILL_S224_CFI_SAVE:
2493 case AMDGPU::SI_SPILL_S192_CFI_SAVE:
2494 case AMDGPU::SI_SPILL_S160_CFI_SAVE:
2495 case AMDGPU::SI_SPILL_S128_CFI_SAVE:
2496 case AMDGPU::SI_SPILL_S96_CFI_SAVE:
2497 case AMDGPU::SI_SPILL_S64_CFI_SAVE:
2498 case AMDGPU::SI_SPILL_S32_CFI_SAVE:
2501 case AMDGPU::SI_SPILL_S1024_SAVE:
2502 case AMDGPU::SI_SPILL_S512_SAVE:
2503 case AMDGPU::SI_SPILL_S384_SAVE:
2504 case AMDGPU::SI_SPILL_S352_SAVE:
2505 case AMDGPU::SI_SPILL_S320_SAVE:
2506 case AMDGPU::SI_SPILL_S288_SAVE:
2507 case AMDGPU::SI_SPILL_S256_SAVE:
2508 case AMDGPU::SI_SPILL_S224_SAVE:
2509 case AMDGPU::SI_SPILL_S192_SAVE:
2510 case AMDGPU::SI_SPILL_S160_SAVE:
2511 case AMDGPU::SI_SPILL_S128_SAVE:
2512 case AMDGPU::SI_SPILL_S96_SAVE:
2513 case AMDGPU::SI_SPILL_S64_SAVE:
2514 case AMDGPU::SI_SPILL_S32_SAVE:
2515 return spillSGPR(
MI, FI, RS, Indexes, LIS,
true, SpillToPhysVGPRLane,
2517 case AMDGPU::SI_SPILL_S1024_RESTORE:
2518 case AMDGPU::SI_SPILL_S512_RESTORE:
2519 case AMDGPU::SI_SPILL_S384_RESTORE:
2520 case AMDGPU::SI_SPILL_S352_RESTORE:
2521 case AMDGPU::SI_SPILL_S320_RESTORE:
2522 case AMDGPU::SI_SPILL_S288_RESTORE:
2523 case AMDGPU::SI_SPILL_S256_RESTORE:
2524 case AMDGPU::SI_SPILL_S224_RESTORE:
2525 case AMDGPU::SI_SPILL_S192_RESTORE:
2526 case AMDGPU::SI_SPILL_S160_RESTORE:
2527 case AMDGPU::SI_SPILL_S128_RESTORE:
2528 case AMDGPU::SI_SPILL_S96_RESTORE:
2529 case AMDGPU::SI_SPILL_S64_RESTORE:
2530 case AMDGPU::SI_SPILL_S32_RESTORE:
2531 return restoreSGPR(
MI, FI, RS, Indexes, LIS,
true, SpillToPhysVGPRLane);
2538 int SPAdj,
unsigned FIOperandNum,
2547 assert(SPAdj == 0 &&
"unhandled SP adjustment in call sequence?");
2550 "unreserved scratch RSRC register");
2553 int Index =
MI->getOperand(FIOperandNum).getIndex();
2559 bool NeedsCFI =
false;
2561 switch (
MI->getOpcode()) {
2563 case AMDGPU::SI_SPILL_S1024_CFI_SAVE:
2564 case AMDGPU::SI_SPILL_S512_CFI_SAVE:
2565 case AMDGPU::SI_SPILL_S256_CFI_SAVE:
2566 case AMDGPU::SI_SPILL_S224_CFI_SAVE:
2567 case AMDGPU::SI_SPILL_S192_CFI_SAVE:
2568 case AMDGPU::SI_SPILL_S160_CFI_SAVE:
2569 case AMDGPU::SI_SPILL_S128_CFI_SAVE:
2570 case AMDGPU::SI_SPILL_S96_CFI_SAVE:
2571 case AMDGPU::SI_SPILL_S64_CFI_SAVE:
2572 case AMDGPU::SI_SPILL_S32_CFI_SAVE: {
2576 case AMDGPU::SI_SPILL_S1024_SAVE:
2577 case AMDGPU::SI_SPILL_S512_SAVE:
2578 case AMDGPU::SI_SPILL_S384_SAVE:
2579 case AMDGPU::SI_SPILL_S352_SAVE:
2580 case AMDGPU::SI_SPILL_S320_SAVE:
2581 case AMDGPU::SI_SPILL_S288_SAVE:
2582 case AMDGPU::SI_SPILL_S256_SAVE:
2583 case AMDGPU::SI_SPILL_S224_SAVE:
2584 case AMDGPU::SI_SPILL_S192_SAVE:
2585 case AMDGPU::SI_SPILL_S160_SAVE:
2586 case AMDGPU::SI_SPILL_S128_SAVE:
2587 case AMDGPU::SI_SPILL_S96_SAVE:
2588 case AMDGPU::SI_SPILL_S64_SAVE:
2589 case AMDGPU::SI_SPILL_S32_SAVE: {
2596 case AMDGPU::SI_SPILL_S1024_RESTORE:
2597 case AMDGPU::SI_SPILL_S512_RESTORE:
2598 case AMDGPU::SI_SPILL_S384_RESTORE:
2599 case AMDGPU::SI_SPILL_S352_RESTORE:
2600 case AMDGPU::SI_SPILL_S320_RESTORE:
2601 case AMDGPU::SI_SPILL_S288_RESTORE:
2602 case AMDGPU::SI_SPILL_S256_RESTORE:
2603 case AMDGPU::SI_SPILL_S224_RESTORE:
2604 case AMDGPU::SI_SPILL_S192_RESTORE:
2605 case AMDGPU::SI_SPILL_S160_RESTORE:
2606 case AMDGPU::SI_SPILL_S128_RESTORE:
2607 case AMDGPU::SI_SPILL_S96_RESTORE:
2608 case AMDGPU::SI_SPILL_S64_RESTORE:
2609 case AMDGPU::SI_SPILL_S32_RESTORE: {
2611 FrameInfo.getStackID(Index) ==
2616 case AMDGPU::SI_BLOCK_SPILL_V1024_CFI_SAVE:
2617 case AMDGPU::SI_SPILL_V1024_CFI_SAVE:
2618 case AMDGPU::SI_SPILL_V512_CFI_SAVE:
2619 case AMDGPU::SI_SPILL_V256_CFI_SAVE:
2620 case AMDGPU::SI_SPILL_V224_CFI_SAVE:
2621 case AMDGPU::SI_SPILL_V192_CFI_SAVE:
2622 case AMDGPU::SI_SPILL_V160_CFI_SAVE:
2623 case AMDGPU::SI_SPILL_V128_CFI_SAVE:
2624 case AMDGPU::SI_SPILL_V96_CFI_SAVE:
2625 case AMDGPU::SI_SPILL_V64_CFI_SAVE:
2626 case AMDGPU::SI_SPILL_V32_CFI_SAVE:
2627 case AMDGPU::SI_SPILL_A1024_CFI_SAVE:
2628 case AMDGPU::SI_SPILL_A512_CFI_SAVE:
2629 case AMDGPU::SI_SPILL_A256_CFI_SAVE:
2630 case AMDGPU::SI_SPILL_A224_CFI_SAVE:
2631 case AMDGPU::SI_SPILL_A192_CFI_SAVE:
2632 case AMDGPU::SI_SPILL_A160_CFI_SAVE:
2633 case AMDGPU::SI_SPILL_A128_CFI_SAVE:
2634 case AMDGPU::SI_SPILL_A96_CFI_SAVE:
2635 case AMDGPU::SI_SPILL_A64_CFI_SAVE:
2636 case AMDGPU::SI_SPILL_A32_CFI_SAVE:
2637 case AMDGPU::SI_SPILL_AV1024_CFI_SAVE:
2638 case AMDGPU::SI_SPILL_AV512_CFI_SAVE:
2639 case AMDGPU::SI_SPILL_AV256_CFI_SAVE:
2640 case AMDGPU::SI_SPILL_AV224_CFI_SAVE:
2641 case AMDGPU::SI_SPILL_AV192_CFI_SAVE:
2642 case AMDGPU::SI_SPILL_AV160_CFI_SAVE:
2643 case AMDGPU::SI_SPILL_AV128_CFI_SAVE:
2644 case AMDGPU::SI_SPILL_AV96_CFI_SAVE:
2645 case AMDGPU::SI_SPILL_AV64_CFI_SAVE:
2646 case AMDGPU::SI_SPILL_AV32_CFI_SAVE:
2649 case AMDGPU::SI_BLOCK_SPILL_V1024_SAVE:
2650 case AMDGPU::SI_SPILL_V1024_SAVE:
2651 case AMDGPU::SI_SPILL_V512_SAVE:
2652 case AMDGPU::SI_SPILL_V384_SAVE:
2653 case AMDGPU::SI_SPILL_V352_SAVE:
2654 case AMDGPU::SI_SPILL_V320_SAVE:
2655 case AMDGPU::SI_SPILL_V288_SAVE:
2656 case AMDGPU::SI_SPILL_V256_SAVE:
2657 case AMDGPU::SI_SPILL_V224_SAVE:
2658 case AMDGPU::SI_SPILL_V192_SAVE:
2659 case AMDGPU::SI_SPILL_V160_SAVE:
2660 case AMDGPU::SI_SPILL_V128_SAVE:
2661 case AMDGPU::SI_SPILL_V96_SAVE:
2662 case AMDGPU::SI_SPILL_V64_SAVE:
2663 case AMDGPU::SI_SPILL_V32_SAVE:
2664 case AMDGPU::SI_SPILL_V16_SAVE:
2665 case AMDGPU::SI_SPILL_A1024_SAVE:
2666 case AMDGPU::SI_SPILL_A512_SAVE:
2667 case AMDGPU::SI_SPILL_A384_SAVE:
2668 case AMDGPU::SI_SPILL_A352_SAVE:
2669 case AMDGPU::SI_SPILL_A320_SAVE:
2670 case AMDGPU::SI_SPILL_A288_SAVE:
2671 case AMDGPU::SI_SPILL_A256_SAVE:
2672 case AMDGPU::SI_SPILL_A224_SAVE:
2673 case AMDGPU::SI_SPILL_A192_SAVE:
2674 case AMDGPU::SI_SPILL_A160_SAVE:
2675 case AMDGPU::SI_SPILL_A128_SAVE:
2676 case AMDGPU::SI_SPILL_A96_SAVE:
2677 case AMDGPU::SI_SPILL_A64_SAVE:
2678 case AMDGPU::SI_SPILL_A32_SAVE:
2679 case AMDGPU::SI_SPILL_AV1024_SAVE:
2680 case AMDGPU::SI_SPILL_AV512_SAVE:
2681 case AMDGPU::SI_SPILL_AV384_SAVE:
2682 case AMDGPU::SI_SPILL_AV352_SAVE:
2683 case AMDGPU::SI_SPILL_AV320_SAVE:
2684 case AMDGPU::SI_SPILL_AV288_SAVE:
2685 case AMDGPU::SI_SPILL_AV256_SAVE:
2686 case AMDGPU::SI_SPILL_AV224_SAVE:
2687 case AMDGPU::SI_SPILL_AV192_SAVE:
2688 case AMDGPU::SI_SPILL_AV160_SAVE:
2689 case AMDGPU::SI_SPILL_AV128_SAVE:
2690 case AMDGPU::SI_SPILL_AV96_SAVE:
2691 case AMDGPU::SI_SPILL_AV64_SAVE:
2692 case AMDGPU::SI_SPILL_AV32_SAVE:
2693 case AMDGPU::SI_SPILL_WWM_V32_SAVE:
2694 case AMDGPU::SI_SPILL_WWM_AV32_SAVE: {
2696 MI->getOpcode() != AMDGPU::SI_BLOCK_SPILL_V1024_SAVE &&
2697 "block spill does not currenty support spilling non-CSR registers");
2699 if (
MI->getOpcode() == AMDGPU::SI_BLOCK_SPILL_V1024_CFI_SAVE)
2703 .
add(*
TII->getNamedOperand(*
MI, AMDGPU::OpName::mask));
2706 AMDGPU::OpName::vdata);
2708 MI->eraseFromParent();
2712 assert(
TII->getNamedOperand(*
MI, AMDGPU::OpName::soffset)->getReg() ==
2716 if (
MI->getOpcode() == AMDGPU::SI_SPILL_V16_SAVE) {
2717 assert(ST.hasFlatScratchEnabled() &&
"Flat Scratch is not enabled!");
2718 Opc = AMDGPU::SCRATCH_STORE_SHORT_SADDR_t16;
2720 Opc =
MI->getOpcode() == AMDGPU::SI_BLOCK_SPILL_V1024_CFI_SAVE
2721 ? AMDGPU::SCRATCH_STORE_BLOCK_SADDR
2722 : ST.hasFlatScratchEnabled() ? AMDGPU::SCRATCH_STORE_DWORD_SADDR
2723 : AMDGPU::BUFFER_STORE_DWORD_OFFSET;
2726 auto *
MBB =
MI->getParent();
2727 bool IsWWMRegSpill =
TII->isWWMRegSpillOpcode(
MI->getOpcode());
2728 if (IsWWMRegSpill) {
2730 RS->isRegUsed(AMDGPU::SCC));
2734 TII->getNamedOperand(*
MI, AMDGPU::OpName::offset)->getImm(),
2735 *
MI->memoperands_begin(), RS,
nullptr, NeedsCFI);
2740 MI->eraseFromParent();
2743 case AMDGPU::SI_BLOCK_SPILL_V1024_RESTORE: {
2747 .
add(*
TII->getNamedOperand(*
MI, AMDGPU::OpName::mask));
2750 case AMDGPU::SI_SPILL_V16_RESTORE:
2751 case AMDGPU::SI_SPILL_V32_RESTORE:
2752 case AMDGPU::SI_SPILL_V64_RESTORE:
2753 case AMDGPU::SI_SPILL_V96_RESTORE:
2754 case AMDGPU::SI_SPILL_V128_RESTORE:
2755 case AMDGPU::SI_SPILL_V160_RESTORE:
2756 case AMDGPU::SI_SPILL_V192_RESTORE:
2757 case AMDGPU::SI_SPILL_V224_RESTORE:
2758 case AMDGPU::SI_SPILL_V256_RESTORE:
2759 case AMDGPU::SI_SPILL_V288_RESTORE:
2760 case AMDGPU::SI_SPILL_V320_RESTORE:
2761 case AMDGPU::SI_SPILL_V352_RESTORE:
2762 case AMDGPU::SI_SPILL_V384_RESTORE:
2763 case AMDGPU::SI_SPILL_V512_RESTORE:
2764 case AMDGPU::SI_SPILL_V1024_RESTORE:
2765 case AMDGPU::SI_SPILL_A32_RESTORE:
2766 case AMDGPU::SI_SPILL_A64_RESTORE:
2767 case AMDGPU::SI_SPILL_A96_RESTORE:
2768 case AMDGPU::SI_SPILL_A128_RESTORE:
2769 case AMDGPU::SI_SPILL_A160_RESTORE:
2770 case AMDGPU::SI_SPILL_A192_RESTORE:
2771 case AMDGPU::SI_SPILL_A224_RESTORE:
2772 case AMDGPU::SI_SPILL_A256_RESTORE:
2773 case AMDGPU::SI_SPILL_A288_RESTORE:
2774 case AMDGPU::SI_SPILL_A320_RESTORE:
2775 case AMDGPU::SI_SPILL_A352_RESTORE:
2776 case AMDGPU::SI_SPILL_A384_RESTORE:
2777 case AMDGPU::SI_SPILL_A512_RESTORE:
2778 case AMDGPU::SI_SPILL_A1024_RESTORE:
2779 case AMDGPU::SI_SPILL_AV32_RESTORE:
2780 case AMDGPU::SI_SPILL_AV64_RESTORE:
2781 case AMDGPU::SI_SPILL_AV96_RESTORE:
2782 case AMDGPU::SI_SPILL_AV128_RESTORE:
2783 case AMDGPU::SI_SPILL_AV160_RESTORE:
2784 case AMDGPU::SI_SPILL_AV192_RESTORE:
2785 case AMDGPU::SI_SPILL_AV224_RESTORE:
2786 case AMDGPU::SI_SPILL_AV256_RESTORE:
2787 case AMDGPU::SI_SPILL_AV288_RESTORE:
2788 case AMDGPU::SI_SPILL_AV320_RESTORE:
2789 case AMDGPU::SI_SPILL_AV352_RESTORE:
2790 case AMDGPU::SI_SPILL_AV384_RESTORE:
2791 case AMDGPU::SI_SPILL_AV512_RESTORE:
2792 case AMDGPU::SI_SPILL_AV1024_RESTORE:
2793 case AMDGPU::SI_SPILL_WWM_V32_RESTORE:
2794 case AMDGPU::SI_SPILL_WWM_AV32_RESTORE: {
2796 AMDGPU::OpName::vdata);
2797 assert(
TII->getNamedOperand(*
MI, AMDGPU::OpName::soffset)->getReg() ==
2801 if (
MI->getOpcode() == AMDGPU::SI_SPILL_V16_RESTORE) {
2802 assert(ST.hasFlatScratchEnabled() &&
"Flat Scratch is not enabled!");
2803 Opc = ST.d16PreservesUnusedBits()
2804 ? AMDGPU::SCRATCH_LOAD_SHORT_D16_SADDR_t16
2805 : AMDGPU::SCRATCH_LOAD_USHORT_SADDR;
2807 Opc =
MI->getOpcode() == AMDGPU::SI_BLOCK_SPILL_V1024_RESTORE
2808 ? AMDGPU::SCRATCH_LOAD_BLOCK_SADDR
2809 : ST.hasFlatScratchEnabled() ? AMDGPU::SCRATCH_LOAD_DWORD_SADDR
2810 : AMDGPU::BUFFER_LOAD_DWORD_OFFSET;
2813 auto *
MBB =
MI->getParent();
2814 bool IsWWMRegSpill =
TII->isWWMRegSpillOpcode(
MI->getOpcode());
2815 if (IsWWMRegSpill) {
2817 RS->isRegUsed(AMDGPU::SCC));
2822 TII->getNamedOperand(*
MI, AMDGPU::OpName::offset)->getImm(),
2823 *
MI->memoperands_begin(), RS);
2828 MI->eraseFromParent();
2831 case AMDGPU::V_ADD_U32_e32:
2832 case AMDGPU::V_ADD_U32_e64:
2833 case AMDGPU::V_ADD_CO_U32_e32:
2834 case AMDGPU::V_ADD_CO_U32_e64: {
2836 unsigned NumDefs =
MI->getNumExplicitDefs();
2837 unsigned Src0Idx = NumDefs;
2839 bool HasClamp =
false;
2842 switch (
MI->getOpcode()) {
2843 case AMDGPU::V_ADD_U32_e32:
2845 case AMDGPU::V_ADD_U32_e64:
2846 HasClamp =
MI->getOperand(3).getImm();
2848 case AMDGPU::V_ADD_CO_U32_e32:
2849 VCCOp = &
MI->getOperand(3);
2851 case AMDGPU::V_ADD_CO_U32_e64:
2852 VCCOp = &
MI->getOperand(1);
2853 HasClamp =
MI->getOperand(4).getImm();
2858 bool DeadVCC = !VCCOp || VCCOp->
isDead();
2862 unsigned OtherOpIdx =
2863 FIOperandNum == Src0Idx ? FIOperandNum + 1 : Src0Idx;
2866 unsigned Src1Idx = Src0Idx + 1;
2867 Register MaterializedReg = FrameReg;
2870 int64_t
Offset = FrameInfo.getObjectOffset(Index);
2874 if (OtherOp->
isImm()) {
2885 OtherOp->
setImm(TotalOffset);
2889 if (FrameReg && !ST.hasFlatScratchEnabled()) {
2897 ScavengedVGPR = RS->scavengeRegisterBackwards(
2898 AMDGPU::VGPR_32RegClass,
MI,
false, 0);
2904 .
addImm(ST.getWavefrontSizeLog2())
2906 MaterializedReg = ScavengedVGPR;
2909 if ((!OtherOp->
isImm() || OtherOp->
getImm() != 0) && MaterializedReg) {
2910 if (ST.hasFlatScratchEnabled() &&
2911 !
TII->isOperandLegal(*
MI, Src1Idx, OtherOp)) {
2918 if (!ScavengedVGPR) {
2919 ScavengedVGPR = RS->scavengeRegisterBackwards(
2920 AMDGPU::VGPR_32RegClass,
MI,
false,
2924 assert(ScavengedVGPR != DstReg);
2929 MaterializedReg = ScavengedVGPR;
2938 AddI32.
add(
MI->getOperand(1));
2943 if (
isVGPRClass(getPhysRegBaseClass(MaterializedReg))) {
2948 .addReg(MaterializedReg, MaterializedRegFlags);
2953 .addReg(MaterializedReg, MaterializedRegFlags)
2957 if (
MI->getOpcode() == AMDGPU::V_ADD_CO_U32_e64 ||
2958 MI->getOpcode() == AMDGPU::V_ADD_U32_e64)
2961 if (
MI->getOpcode() == AMDGPU::V_ADD_CO_U32_e32)
2962 AddI32.setOperandDead(3);
2964 MaterializedReg = DstReg;
2970 }
else if (
Offset != 0) {
2971 assert(!MaterializedReg);
2975 if (DeadVCC && !HasClamp) {
2980 if (OtherOp->
isReg() && OtherOp->
getReg() == DstReg) {
2982 MI->eraseFromParent();
2987 MI->setDesc(
TII->get(AMDGPU::V_MOV_B32_e32));
2988 MI->removeOperand(FIOperandNum);
2990 unsigned NumOps =
MI->getNumOperands();
2991 for (
unsigned I =
NumOps - 2;
I >= NumDefs + 1; --
I)
2992 MI->removeOperand(
I);
2995 MI->removeOperand(1);
3007 if (!
TII->isOperandLegal(*
MI, Src1Idx) &&
TII->commuteInstruction(*
MI)) {
3015 for (
unsigned SrcIdx : {FIOperandNum, OtherOpIdx}) {
3016 if (!
TII->isOperandLegal(*
MI, SrcIdx)) {
3020 if (!ScavengedVGPR) {
3021 ScavengedVGPR = RS->scavengeRegisterBackwards(
3022 AMDGPU::VGPR_32RegClass,
MI,
false,
3026 assert(ScavengedVGPR != DstReg);
3032 Src.ChangeToRegister(ScavengedVGPR,
false);
3033 Src.setIsKill(
true);
3039 if (FIOp->
isImm() && FIOp->
getImm() == 0 && DeadVCC && !HasClamp) {
3040 if (OtherOp->
isReg() && OtherOp->
getReg() != DstReg) {
3044 MI->eraseFromParent();
3049 case AMDGPU::S_ADD_I32:
3050 case AMDGPU::S_ADD_U32: {
3052 unsigned OtherOpIdx = FIOperandNum == 1 ? 2 : 1;
3059 Register MaterializedReg = FrameReg;
3062 bool DeadSCC =
MI->getOperand(3).isDead();
3071 if (FrameReg && !ST.hasFlatScratchEnabled()) {
3076 TmpReg = RS->scavengeRegisterBackwards(AMDGPU::SReg_32_XM0RegClass,
3083 .
addImm(ST.getWavefrontSizeLog2())
3086 MaterializedReg = TmpReg;
3089 int64_t
Offset = FrameInfo.getObjectOffset(Index);
3094 if (OtherOp.
isImm()) {
3098 if (MaterializedReg)
3102 }
else if (MaterializedReg) {
3106 if (!TmpReg && MaterializedReg == FrameReg) {
3107 TmpReg = RS->scavengeRegisterBackwards(AMDGPU::SReg_32_XM0RegClass,
3121 MaterializedReg = DstReg;
3134 if (DeadSCC && OtherOp.
isImm() && OtherOp.
getImm() == 0) {
3136 MI->removeOperand(3);
3137 MI->removeOperand(OtherOpIdx);
3139 MI->setDesc(
TII->get(Src.isReg() ? AMDGPU::COPY : AMDGPU::S_MOV_B32));
3140 }
else if (DeadSCC && FIOp->
isImm() && FIOp->
getImm() == 0) {
3142 MI->removeOperand(3);
3143 MI->removeOperand(FIOperandNum);
3145 MI->setDesc(
TII->get(Src.isReg() ? AMDGPU::COPY : AMDGPU::S_MOV_B32));
3156 int64_t
Offset = FrameInfo.getObjectOffset(Index);
3157 if (ST.hasFlatScratchEnabled()) {
3158 if (
TII->isFLATScratch(*
MI)) {
3160 (int16_t)FIOperandNum ==
3161 AMDGPU::getNamedOperandIdx(
MI->getOpcode(), AMDGPU::OpName::saddr));
3168 TII->getNamedOperand(*
MI, AMDGPU::OpName::offset);
3179 unsigned Opc =
MI->getOpcode();
3183 }
else if (ST.hasFlatScratchSTMode()) {
3193 AMDGPU::getNamedOperandIdx(
Opc, AMDGPU::OpName::vdst_in);
3194 bool TiedVDst = VDstIn != -1 &&
MI->getOperand(VDstIn).isReg() &&
3195 MI->getOperand(VDstIn).isTied();
3197 MI->untieRegOperand(VDstIn);
3200 AMDGPU::getNamedOperandIdx(
Opc, AMDGPU::OpName::saddr));
3204 AMDGPU::getNamedOperandIdx(NewOpc, AMDGPU::OpName::vdst);
3206 AMDGPU::getNamedOperandIdx(NewOpc, AMDGPU::OpName::vdst_in);
3207 assert(NewVDst != -1 && NewVDstIn != -1 &&
"Must be tied!");
3208 MI->tieOperands(NewVDst, NewVDstIn);
3210 MI->setDesc(
TII->get(NewOpc));
3218 if (
TII->isImmOperandLegal(*
MI, FIOperandNum, *FIOp))
3225 bool UseSGPR =
TII->isOperandLegal(*
MI, FIOperandNum, FIOp);
3227 if (!
Offset && FrameReg && UseSGPR) {
3233 UseSGPR ? &AMDGPU::SReg_32_XM0RegClass : &AMDGPU::VGPR_32RegClass;
3236 RS->scavengeRegisterBackwards(*RC,
MI,
false, 0, !UseSGPR);
3240 if ((!FrameReg || !
Offset) && TmpReg) {
3241 unsigned Opc = UseSGPR ? AMDGPU::S_MOV_B32 : AMDGPU::V_MOV_B32_e32;
3244 MIB.addReg(FrameReg);
3251 bool NeedSaveSCC = (RS->isRegUsed(AMDGPU::SCC) &&
3252 !
MI->definesRegister(AMDGPU::SCC,
nullptr)) ||
3253 MI->readsRegister(AMDGPU::SCC,
nullptr);
3257 : RS->scavengeRegisterBackwards(AMDGPU::SReg_32_XM0RegClass,
3258 MI,
false, 0, !UseSGPR);
3264 if ((!TmpSReg && !FrameReg) || (!TmpReg && !UseSGPR)) {
3266 if (ST.hasFlatScratchSVSMode() && SVOpcode != -1) {
3271 "SV-form fallback cannot encode a frame register");
3272 Register TmpVGPR = RS->scavengeRegisterBackwards(
3273 AMDGPU::VGPR_32RegClass,
MI,
false, 0,
true);
3279 int64_t FullOffset =
3281 TII->getNamedOperand(*
MI, AMDGPU::OpName::offset)->getImm();
3282 auto [ImmOffset, RemainderOffset] =
3286 .
addImm(RemainderOffset);
3288 .
add(
MI->getOperand(0))
3291 .
add(*
TII->getNamedOperand(*
MI, AMDGPU::OpName::cpol));
3292 MI->eraseFromParent();
3306 assert(!(
Offset & 0x1) &&
"Flat scratch offset must be aligned!");
3326 if (TmpSReg == FrameReg) {
3329 !
MI->registerDefIsDead(AMDGPU::SCC,
nullptr)) {
3353 bool IsMUBUF =
TII->isMUBUF(*
MI);
3359 bool LiveSCC = RS->isRegUsed(AMDGPU::SCC) &&
3360 !
MI->definesRegister(AMDGPU::SCC,
nullptr);
3362 ? &AMDGPU::SReg_32RegClass
3363 : &AMDGPU::VGPR_32RegClass;
3364 bool IsCopy =
MI->getOpcode() == AMDGPU::V_MOV_B32_e32 ||
3365 MI->getOpcode() == AMDGPU::V_MOV_B32_e64 ||
3366 MI->getOpcode() == AMDGPU::S_MOV_B32;
3368 IsCopy ?
MI->getOperand(0).getReg()
3369 : RS->scavengeRegisterBackwards(*RC,
MI,
false, 0);
3371 int64_t
Offset = FrameInfo.getObjectOffset(Index);
3377 isWave32 ?
Add.getReg(1)
3378 :
Register(getSubReg(
Add.getReg(1), AMDGPU::sub0));
3381 return ConstOffsetReg;
3386 IsSALU && !LiveSCC ? AMDGPU::S_LSHR_B32 : AMDGPU::V_LSHRREV_B32_e64;
3388 if (IsSALU && LiveSCC) {
3389 TmpResultReg = RS->scavengeRegisterBackwards(AMDGPU::VGPR_32RegClass,
3394 if (OpCode == AMDGPU::V_LSHRREV_B32_e64)
3397 Shift.addImm(ST.getWavefrontSizeLog2()).addReg(FrameReg);
3399 Shift.addReg(FrameReg).addImm(ST.getWavefrontSizeLog2());
3400 if (IsSALU && !LiveSCC)
3401 Shift.getInstr()->getOperand(3).setIsDead();
3402 if (IsSALU && LiveSCC) {
3406 NewDest = ResultReg;
3408 NewDest = RS->scavengeRegisterBackwards(AMDGPU::SReg_32_XM0RegClass,
3413 ResultReg = NewDest;
3418 if ((MIB =
TII->getAddNoCarry(*
MBB,
MI,
DL, ResultReg, *RS)) !=
3425 .
addImm(ST.getWavefrontSizeLog2())
3428 const bool IsVOP2 = MIB->
getOpcode() == AMDGPU::V_ADD_U32_e32;
3440 "Need to reuse carry out register");
3448 if (!MIB || IsSALU) {
3455 Register TmpScaledReg = IsCopy && IsSALU
3457 : RS->scavengeRegisterBackwards(
3458 AMDGPU::SReg_32_XM0RegClass,
MI,
3460 Register ScaledReg = TmpScaledReg.
isValid() ? TmpScaledReg : FrameReg;
3466 .
addImm(ST.getWavefrontSizeLog2());
3471 TmpResultReg = RS->scavengeRegisterBackwards(
3472 AMDGPU::VGPR_32RegClass,
MI,
false, 0,
true);
3475 if ((
Add =
TII->getAddNoCarry(*
MBB,
MI,
DL, TmpResultReg, *RS))) {
3478 .
addImm(ST.getWavefrontSizeLog2())
3480 if (
Add->getOpcode() == AMDGPU::V_ADD_CO_U32_e64) {
3488 "offset is unsafe for v_mad_u32_u24");
3497 bool IsInlinableLiteral =
3499 if (!IsInlinableLiteral) {
3508 if (!IsInlinableLiteral) {
3514 Add.addImm(ST.getWavefrontSize()).addReg(FrameReg).addImm(0);
3517 .
addImm(ST.getWavefrontSizeLog2())
3523 NewDest = ResultReg;
3525 NewDest = RS->scavengeRegisterBackwards(
3526 AMDGPU::SReg_32_XM0RegClass, *
Add,
false, 0,
3533 ResultReg = NewDest;
3539 if (!TmpScaledReg.
isValid()) {
3545 .
addImm(ST.getWavefrontSizeLog2());
3552 MI->eraseFromParent();
3562 static_cast<int>(FIOperandNum) ==
3563 AMDGPU::getNamedOperandIdx(
MI->getOpcode(), AMDGPU::OpName::vaddr));
3565 auto &SOffset = *
TII->getNamedOperand(*
MI, AMDGPU::OpName::soffset);
3566 assert((SOffset.isImm() && SOffset.getImm() == 0));
3568 if (FrameReg != AMDGPU::NoRegister)
3569 SOffset.ChangeToRegister(FrameReg,
false);
3571 int64_t
Offset = FrameInfo.getObjectOffset(Index);
3573 TII->getNamedOperand(*
MI, AMDGPU::OpName::offset)->getImm();
3574 int64_t NewOffset = OldImm +
Offset;
3576 if (
TII->isLegalMUBUFImmOffset(NewOffset) &&
3578 MI->eraseFromParent();
3587 if (!
TII->isImmOperandLegal(*
MI, FIOperandNum, *FIOp)) {
3589 RS->scavengeRegisterBackwards(AMDGPU::VGPR_32RegClass,
MI,
false, 0);
3609 return &AMDGPU::VReg_64RegClass;
3611 return &AMDGPU::VReg_96RegClass;
3613 return &AMDGPU::VReg_128RegClass;
3615 return &AMDGPU::VReg_160RegClass;
3617 return &AMDGPU::VReg_192RegClass;
3619 return &AMDGPU::VReg_224RegClass;
3621 return &AMDGPU::VReg_256RegClass;
3623 return &AMDGPU::VReg_288RegClass;
3625 return &AMDGPU::VReg_320RegClass;
3627 return &AMDGPU::VReg_352RegClass;
3629 return &AMDGPU::VReg_384RegClass;
3631 return &AMDGPU::VReg_512RegClass;
3633 return &AMDGPU::VReg_1024RegClass;
3641 return &AMDGPU::VReg_64_Align2RegClass;
3643 return &AMDGPU::VReg_96_Align2RegClass;
3645 return &AMDGPU::VReg_128_Align2RegClass;
3647 return &AMDGPU::VReg_160_Align2RegClass;
3649 return &AMDGPU::VReg_192_Align2RegClass;
3651 return &AMDGPU::VReg_224_Align2RegClass;
3653 return &AMDGPU::VReg_256_Align2RegClass;
3655 return &AMDGPU::VReg_288_Align2RegClass;
3657 return &AMDGPU::VReg_320_Align2RegClass;
3659 return &AMDGPU::VReg_352_Align2RegClass;
3661 return &AMDGPU::VReg_384_Align2RegClass;
3663 return &AMDGPU::VReg_512_Align2RegClass;
3665 return &AMDGPU::VReg_1024_Align2RegClass;
3673 return &AMDGPU::VReg_1RegClass;
3675 return &AMDGPU::VGPR_16RegClass;
3677 return &AMDGPU::VGPR_32RegClass;
3685 return &AMDGPU::VGPR_32_Lo256RegClass;
3687 return &AMDGPU::VReg_64_Lo256_Align2RegClass;
3689 return &AMDGPU::VReg_96_Lo256_Align2RegClass;
3691 return &AMDGPU::VReg_128_Lo256_Align2RegClass;
3693 return &AMDGPU::VReg_160_Lo256_Align2RegClass;
3695 return &AMDGPU::VReg_192_Lo256_Align2RegClass;
3697 return &AMDGPU::VReg_224_Lo256_Align2RegClass;
3699 return &AMDGPU::VReg_256_Lo256_Align2RegClass;
3701 return &AMDGPU::VReg_288_Lo256_Align2RegClass;
3703 return &AMDGPU::VReg_320_Lo256_Align2RegClass;
3705 return &AMDGPU::VReg_352_Lo256_Align2RegClass;
3707 return &AMDGPU::VReg_384_Lo256_Align2RegClass;
3709 return &AMDGPU::VReg_512_Lo256_Align2RegClass;
3711 return &AMDGPU::VReg_1024_Lo256_Align2RegClass;
3719 return &AMDGPU::AReg_64RegClass;
3721 return &AMDGPU::AReg_96RegClass;
3723 return &AMDGPU::AReg_128RegClass;
3725 return &AMDGPU::AReg_160RegClass;
3727 return &AMDGPU::AReg_192RegClass;
3729 return &AMDGPU::AReg_224RegClass;
3731 return &AMDGPU::AReg_256RegClass;
3733 return &AMDGPU::AReg_288RegClass;
3735 return &AMDGPU::AReg_320RegClass;
3737 return &AMDGPU::AReg_352RegClass;
3739 return &AMDGPU::AReg_384RegClass;
3741 return &AMDGPU::AReg_512RegClass;
3743 return &AMDGPU::AReg_1024RegClass;
3751 return &AMDGPU::AReg_64_Align2RegClass;
3753 return &AMDGPU::AReg_96_Align2RegClass;
3755 return &AMDGPU::AReg_128_Align2RegClass;
3757 return &AMDGPU::AReg_160_Align2RegClass;
3759 return &AMDGPU::AReg_192_Align2RegClass;
3761 return &AMDGPU::AReg_224_Align2RegClass;
3763 return &AMDGPU::AReg_256_Align2RegClass;
3765 return &AMDGPU::AReg_288_Align2RegClass;
3767 return &AMDGPU::AReg_320_Align2RegClass;
3769 return &AMDGPU::AReg_352_Align2RegClass;
3771 return &AMDGPU::AReg_384_Align2RegClass;
3773 return &AMDGPU::AReg_512_Align2RegClass;
3775 return &AMDGPU::AReg_1024_Align2RegClass;
3783 return &AMDGPU::AGPR_LO16RegClass;
3785 return &AMDGPU::AGPR_32RegClass;
3793 return &AMDGPU::AV_64RegClass;
3795 return &AMDGPU::AV_96RegClass;
3797 return &AMDGPU::AV_128RegClass;
3799 return &AMDGPU::AV_160RegClass;
3801 return &AMDGPU::AV_192RegClass;
3803 return &AMDGPU::AV_224RegClass;
3805 return &AMDGPU::AV_256RegClass;
3807 return &AMDGPU::AV_288RegClass;
3809 return &AMDGPU::AV_320RegClass;
3811 return &AMDGPU::AV_352RegClass;
3813 return &AMDGPU::AV_384RegClass;
3815 return &AMDGPU::AV_512RegClass;
3817 return &AMDGPU::AV_1024RegClass;
3825 return &AMDGPU::AV_64_Align2RegClass;
3827 return &AMDGPU::AV_96_Align2RegClass;
3829 return &AMDGPU::AV_128_Align2RegClass;
3831 return &AMDGPU::AV_160_Align2RegClass;
3833 return &AMDGPU::AV_192_Align2RegClass;
3835 return &AMDGPU::AV_224_Align2RegClass;
3837 return &AMDGPU::AV_256_Align2RegClass;
3839 return &AMDGPU::AV_288_Align2RegClass;
3841 return &AMDGPU::AV_320_Align2RegClass;
3843 return &AMDGPU::AV_352_Align2RegClass;
3845 return &AMDGPU::AV_384_Align2RegClass;
3847 return &AMDGPU::AV_512_Align2RegClass;
3849 return &AMDGPU::AV_1024_Align2RegClass;
3857 return &AMDGPU::AV_32RegClass;
3858 return ST.needsAlignedVGPRs()
3877 return &AMDGPU::SReg_32RegClass;
3879 return &AMDGPU::SReg_64RegClass;
3881 return &AMDGPU::SGPR_96RegClass;
3883 return &AMDGPU::SGPR_128RegClass;
3885 return &AMDGPU::SGPR_160RegClass;
3887 return &AMDGPU::SGPR_192RegClass;
3889 return &AMDGPU::SGPR_224RegClass;
3891 return &AMDGPU::SGPR_256RegClass;
3893 return &AMDGPU::SGPR_288RegClass;
3895 return &AMDGPU::SGPR_320RegClass;
3897 return &AMDGPU::SGPR_352RegClass;
3899 return &AMDGPU::SGPR_384RegClass;
3901 return &AMDGPU::SGPR_512RegClass;
3903 return &AMDGPU::SGPR_1024RegClass;
3911 if (Reg.isVirtual())
3914 RC = getPhysRegBaseClass(Reg);
3920 unsigned Size = getRegSizeInBits(*SRC);
3922 switch (SRC->
getID()) {
3925 case AMDGPU::VS_32_Lo256RegClassID:
3926 case AMDGPU::VS_64_Lo256RegClassID:
3932 assert(VRC &&
"Invalid register class size");
3938 unsigned Size = getRegSizeInBits(*SRC);
3940 assert(ARC &&
"Invalid register class size");
3946 unsigned Size = getRegSizeInBits(*SRC);
3948 assert(ARC &&
"Invalid register class size");
3954 unsigned Size = getRegSizeInBits(*VRC);
3956 return &AMDGPU::SGPR_32RegClass;
3958 assert(SRC &&
"Invalid register class size");
3965 unsigned SubIdx)
const {
3968 getMatchingSuperRegClass(SuperRC, SubRC, SubIdx);
3969 return MatchRC && MatchRC->
hasSubClassEq(SuperRC) ? MatchRC :
nullptr;
3975 return !ST.hasMFMAInlineLiteralBug();
3996 return Reg == AMDGPU::VCC || Reg == AMDGPU::VCC_LO || Reg == AMDGPU::VCC_HI;
3999 if (ReserveHighestRegister) {
4022 unsigned EltSize)
const {
4024 assert(RegBitWidth >= 32 && RegBitWidth <= 1024 && EltSize >= 2);
4026 const unsigned RegHalves = RegBitWidth / 16;
4027 const unsigned EltHalves = EltSize / 2;
4028 assert(RegSplitParts.size() + 1 >= EltHalves);
4030 const std::vector<int16_t> &Parts = RegSplitParts[EltHalves - 1];
4031 const unsigned NumParts = RegHalves / EltHalves;
4033 return ArrayRef(Parts.data(), NumParts);
4039 return Reg.isVirtual() ? MRI.
getRegClass(Reg) : getPhysRegBaseClass(Reg);
4046 return getSubRegisterClass(SrcRC, MO.
getSubReg());
4066 unsigned MinOcc = ST.getOccupancyWithWorkGroupSizes(MF).first;
4067 switch (RC->
getID()) {
4069 return AMDGPUGenRegisterInfo::getRegPressureLimit(RC, MF);
4070 case AMDGPU::VGPR_32RegClassID:
4075 ST.getMaxNumVGPRs(MF));
4076 case AMDGPU::SGPR_32RegClassID:
4077 case AMDGPU::SGPR_LO16RegClassID:
4078 return std::min(ST.getMaxNumSGPRs(MinOcc,
true), ST.getMaxNumSGPRs(MF));
4083 unsigned Idx)
const {
4084 switch (
static_cast<AMDGPU::RegisterPressureSets
>(Idx)) {
4085 case AMDGPU::RegisterPressureSets::VGPR_32:
4086 case AMDGPU::RegisterPressureSets::AGPR_32:
4089 case AMDGPU::RegisterPressureSets::SReg_32:
4098 static const int Empty[] = { -1 };
4100 if (RegPressureIgnoredUnits[
static_cast<unsigned>(RegUnit)])
4103 return AMDGPUGenRegisterInfo::getRegUnitPressureSets(RegUnit);
4118 switch (Hint.first) {
4125 getMatchingSuperReg(Paired, AMDGPU::lo16, &AMDGPU::VGPR_32RegClass);
4126 }
else if (VRM && VRM->
hasPhys(Paired)) {
4127 PairedPhys = getMatchingSuperReg(VRM->
getPhys(Paired), AMDGPU::lo16,
4128 &AMDGPU::VGPR_32RegClass);
4143 PairedPhys =
TRI->getSubReg(Paired, AMDGPU::lo16);
4144 }
else if (VRM && VRM->
hasPhys(Paired)) {
4145 PairedPhys =
TRI->getSubReg(VRM->
getPhys(Paired), AMDGPU::lo16);
4160 if (AMDGPU::VGPR_16RegClass.
contains(PhysReg) &&
4175 return AMDGPU::SGPR30_SGPR31;
4181 switch (RB.
getID()) {
4182 case AMDGPU::VGPRRegBankID:
4184 std::max(ST.useRealTrue16Insts() ? 16u : 32u,
Size));
4185 case AMDGPU::VCCRegBankID:
4188 case AMDGPU::SGPRRegBankID:
4190 case AMDGPU::AGPRRegBankID:
4204 return getAllocatableClass(RC);
4210 return isWave32 ? AMDGPU::VCC_LO : AMDGPU::VCC;
4214 return isWave32 ? AMDGPU::EXEC_LO : AMDGPU::EXEC;
4219 return ST.needsAlignedVGPRs() ? &AMDGPU::VReg_64_Align2RegClass
4220 : &AMDGPU::VReg_64RegClass;
4232 if (Reg.isVirtual()) {
4236 LaneBitmask SubLanes = SubReg ? getSubRegIndexLaneMask(SubReg)
4241 if ((S.LaneMask & SubLanes) == SubLanes) {
4242 V = S.getVNInfoAt(UseIdx);
4254 for (MCRegUnit Unit : regunits(Reg.asMCReg())) {
4269 if (!Def || !MDT.dominates(Def, &
Use))
4272 assert(Def->modifiesRegister(Reg,
this));
4278 assert(getRegSizeInBits(*getPhysRegBaseClass(Reg)) <= 32);
4281 {&AMDGPU::VGPR_32RegClass, &AMDGPU::SReg_32RegClass,
4282 &AMDGPU::AGPR_32RegClass}) {
4283 if (
MCPhysReg Super = getMatchingSuperReg(Reg, AMDGPU::lo16, RC))
4286 if (
MCPhysReg Super = getMatchingSuperReg(Reg, AMDGPU::hi16,
4287 &AMDGPU::VGPR_32RegClass)) {
4291 return AMDGPU::NoRegister;
4295 if (!ST.needsAlignedVGPRs())
4306 assert(&RC != &AMDGPU::VS_64RegClass);
4313 return ArrayRef(AMDGPU::SGPR_128RegClass.begin(), ST.getMaxNumSGPRs(MF) / 4);
4318 return ArrayRef(AMDGPU::SGPR_64RegClass.begin(), ST.getMaxNumSGPRs(MF) / 2);
4323 return ArrayRef(AMDGPU::SGPR_32RegClass.begin(), ST.getMaxNumSGPRs(MF));
4328 unsigned SubReg)
const {
4331 return std::min(128u, getSubRegIdxSize(SubReg));
4335 return std::min(32u, getSubRegIdxSize(SubReg));
4344 bool IncludeCalls)
const {
4345 unsigned NumArchVGPRs = ST.getAddressableNumArchVGPRs();
4347 (RC.
getID() == AMDGPU::VGPR_32RegClassID)
4351 if (Reg != AMDGPU::VCC_LO && Reg != AMDGPU::VCC_HI &&
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file declares the targeting of the RegisterBankInfo class for AMDGPU.
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
MachineBasicBlock MachineBasicBlock::iterator MBBI
static const Function * getParent(const Value *V)
AMD GCN specific subclass of TargetSubtarget.
const HexagonInstrInfo * TII
std::pair< Instruction::BinaryOps, Value * > OffsetOp
Find all possible pairs (BinOp, RHS) that BinOp V, RHS can be simplified.
const size_t AbstractManglingParser< Derived, Alloc >::NumOps
static DebugLoc getDebugLoc(MachineBasicBlock::instr_iterator FirstMI, MachineBasicBlock::instr_iterator LastMI)
Return the first DebugLoc that has line number information, given a range of instructions.
Register const TargetRegisterInfo * TRI
Promote Memory to Register
static MCRegister getReg(const MCDisassembler *D, unsigned RC, unsigned RegNo)
This file declares the machine register scavenger class.
SI Pre allocate WWM Registers
static MachineInstrBuilder spillVGPRtoAGPR(const GCNSubtarget &ST, MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, int Index, unsigned Lane, unsigned ValueReg, bool IsKill, bool NeedsCFI)
static int getOffenMUBUFStore(unsigned Opc)
static const TargetRegisterClass * getAnyAGPRClassForBitWidth(unsigned BitWidth)
static int getOffsetMUBUFLoad(unsigned Opc)
static const std::array< unsigned, 17 > SubRegFromChannelTableWidthMap
static unsigned getNumSubRegsForSpillOp(const MachineInstr &MI, const SIInstrInfo *TII)
static void emitUnsupportedError(const Function &Fn, const MachineInstr &MI, const Twine &ErrMsg)
static const TargetRegisterClass * getAlignedAGPRClassForBitWidth(unsigned BitWidth)
static bool buildMUBUFOffsetLoadStore(const GCNSubtarget &ST, MachineFrameInfo &MFI, MachineBasicBlock::iterator MI, int Index, int64_t Offset)
static cl::opt< bool > EnableSpillCFISavedRegs("amdgpu-spill-cfi-saved-regs", cl::desc("Enable spilling the registers required for CFI emission"), cl::ReallyHidden, cl::init(false), cl::ZeroOrMore)
static unsigned getFlatScratchSpillOpcode(const SIInstrInfo *TII, unsigned LoadStoreOp, unsigned EltSize)
static const TargetRegisterClass * getAlignedVGPRClassForBitWidth(unsigned BitWidth)
static int getOffsetMUBUFStore(unsigned Opc)
static const TargetRegisterClass * getAnyVGPRClassForBitWidth(unsigned BitWidth)
static cl::opt< unsigned > StressSGPRLimit("amdgpu-stress-sgpr", cl::Hidden, cl::init(0), cl::desc("Limit SGPRs to N registers by reserving the rest"))
static cl::opt< bool > EnableSpillSGPRToVGPR("amdgpu-spill-sgpr-to-vgpr", cl::desc("Enable spilling SGPRs to VGPRs"), cl::ReallyHidden, cl::init(true))
static const TargetRegisterClass * getAlignedVectorSuperClassForBitWidth(unsigned BitWidth)
static const TargetRegisterClass * getAnyVectorSuperClassForBitWidth(unsigned BitWidth)
static cl::opt< unsigned > StressAGPRLimit("amdgpu-stress-agpr", cl::Hidden, cl::init(0), cl::desc("Limit AGPRs to N registers by reserving the rest"))
static cl::opt< unsigned > StressVGPRLimit("amdgpu-stress-vgpr", cl::Hidden, cl::init(0), cl::desc("Limit VGPRs to N registers by reserving the rest"))
static bool isFIPlusImmOrVGPR(const SIRegisterInfo &TRI, const MachineInstr &MI)
static int getOffenMUBUFLoad(unsigned Opc)
static bool contains(SmallPtrSetImpl< ConstantExpr * > &Cache, ConstantExpr *Expr, Constant *C)
LocallyHashedType DenseMapInfo< LocallyHashedType >::Empty
static const char * getRegisterName(MCRegister Reg)
bool isBottomOfStack() const
Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
Get the array size.
bool empty() const
Check if the array is empty.
bool test(unsigned Idx) const
Returns true if bit Idx is set.
bool empty() const
Returns whether there are no bits in this bitvector.
Diagnostic information for unsupported feature in backend.
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.
LLVM_ABI void diagnose(const DiagnosticInfo &DI)
Report a message to the currently installed diagnostic handler.
LiveInterval - This class represents the liveness of a register, or stack slot.
bool hasSubRanges() const
Returns true if subregister liveness information is available.
iterator_range< subrange_iterator > subranges()
void removeAllRegUnitsForPhysReg(MCRegister Reg)
Remove associated live ranges for the register units associated with Reg.
bool hasInterval(Register Reg) const
MachineInstr * getInstructionFromIndex(SlotIndex index) const
Returns the instruction associated with the given index.
MachineDominatorTree & getDomTree()
SlotIndex getInstructionIndex(const MachineInstr &Instr) const
Returns the base index of the given instruction.
LiveInterval & getInterval(Register Reg)
LiveRange & getRegUnit(MCRegUnit Unit)
Return the live range for register unit Unit.
This class represents the liveness of a register, stack slot, etc.
VNInfo * getVNInfoAt(SlotIndex Idx) const
getVNInfoAt - Return the VNInfo that is live at Idx, or NULL.
A set of register units used to track register liveness.
bool available(MCRegister Reg) const
Returns true if no part of physical register Reg is live.
Describe properties that are true of each instruction in the target description file.
MCRegAliasIterator enumerates all registers aliasing Reg.
bool hasSuperClassEq(const MCRegisterClass *RC) const
Returns true if RC is a super-class of or equal to this class.
unsigned getID() const
getID() - Return the register class ID number.
ArrayRef< MCPhysReg > getRegisters() const
const uint8_t TSFlags
Configurable target specific flags.
bool contains(MCRegister Reg) const
contains - Return true if the specified register is included in this register class.
bool hasSubClassEq(const MCRegisterClass *RC) const
Returns true if RC is a sub-class of or equal to this class.
Wrapper class representing physical registers. Should be passed by value.
static MCRegister from(unsigned Val)
Check the provided unsigned value is a valid MCRegister.
Generic base class for all target subtargets.
MachineInstrBundleIterator< MachineInstr > iterator
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
bool hasCalls() const
Return true if the current function has any function calls.
Align getObjectAlign(int ObjectIdx) const
Return the alignment of the specified stack object.
bool hasStackObjects() const
Return true if there are any stack objects in this function.
int64_t getObjectOffset(int ObjectIdx) const
Return the assigned stack offset of the specified object from the incoming stack pointer.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
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...
MachineMemOperand * getMachineMemOperand(MachinePointerInfo PtrInfo, MachineMemOperand::Flags F, LLT MemTy, Align BaseAlignment, const MMOMetadata &Metadata=MMOMetadata(), SyncScope::ID SSID=SyncScope::System, AtomicOrdering Ordering=AtomicOrdering::NotAtomic, AtomicOrdering FailureOrdering=AtomicOrdering::NotAtomic)
getMachineMemOperand - Allocate a new MachineMemOperand.
const MachineInstrBuilder & setOperandDead(unsigned OpIdx) const
const MachineInstrBuilder & addUse(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a virtual register use operand.
const MachineInstrBuilder & addReg(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a new virtual register operand.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & add(const MachineOperand &MO) const
const MachineInstrBuilder & addFrameIndex(int Idx) const
const MachineInstrBuilder & addDef(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a virtual register definition operand.
const MachineInstrBuilder & cloneMemRefs(const MachineInstr &OtherMI) const
MachineInstr * getInstr() const
If conversion operators fail, use this method to get the MachineInstr explicitly.
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
void setAsmPrinterFlag(AsmPrinterFlagTy Flag)
Set a flag for the AsmPrinter.
LLVM_ABI const MachineFunction * getMF() const
Return the function that contains the basic block that this instruction belongs to.
const MachineOperand & getOperand(unsigned i) const
A description of a memory reference used in the backend.
@ MOLoad
The memory access reads data.
@ MOStore
The memory access writes data.
const MachinePointerInfo & getPointerInfo() const
Flags getFlags() const
Return the raw flags of the source value,.
MachineOperand class - Representation of each machine instruction operand.
unsigned getSubReg() const
void setImm(int64_t immVal)
LLVM_ABI void setIsRenamable(bool Val=true)
bool isReg() const
isReg - Tests if this is a MO_Register operand.
void setIsDead(bool Val=true)
LLVM_ABI void setReg(Register Reg)
Change the register this operand corresponds to.
bool isImm() const
isImm - Tests if this is a MO_Immediate operand.
LLVM_ABI void ChangeToImmediate(int64_t ImmVal, unsigned TargetFlags=0)
ChangeToImmediate - Replace this operand with a new immediate operand of the specified value.
void setIsKill(bool Val=true)
LLVM_ABI void ChangeToRegister(Register Reg, bool isDef, bool isImp=false, bool isKill=false, bool isDead=false, bool isUndef=false, bool isDebug=false)
ChangeToRegister - Replace this operand with a new register operand of the specified value.
Register getReg() const
getReg - Returns the register number.
bool isFI() const
isFI - Tests if this is a MO_FrameIndex operand.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
const TargetRegisterClass * getRegClass(Register Reg) const
Return the register class of the specified virtual register.
const RegClassOrRegBank & getRegClassOrRegBank(Register Reg) const
Return the register bank or register class of Reg.
bool isReserved(MCRegister PhysReg) const
isReserved - Returns true when PhysReg is a reserved register.
LLVM_ABI Register createVirtualRegister(const TargetRegisterClass *RegClass, StringRef Name="")
createVirtualRegister - Create and return a new virtual register in the function with the specified r...
LLT getType(Register Reg) const
Get the low-level type of Reg or LLT{} if Reg is not a generic (target independent) virtual register.
bool isAllocatable(MCRegister PhysReg) const
isAllocatable - Returns true when PhysReg belongs to an allocatable register class and it hasn't been...
std::pair< unsigned, Register > getRegAllocationHint(Register VReg) const
getRegAllocationHint - Return the register allocation hint for the specified virtual register.
const TargetRegisterInfo * getTargetRegisterInfo() const
LLVM_ABI LaneBitmask getMaxLaneMaskForVReg(Register Reg) const
Returns a mask covering all bits that can appear in lane masks of subregisters of the virtual registe...
LLVM_ABI bool isPhysRegUsed(MCRegister PhysReg, bool SkipRegMaskTest=false) const
Return true if the specified register is modified or read in this function.
Holds all the information related to register banks.
virtual bool isDivergentRegBank(const RegisterBank *RB) const
Returns true if the register bank is considered divergent.
const RegisterBank & getRegBank(unsigned ID)
Get the register bank identified by ID.
This class implements the register bank concept.
unsigned getID() const
Get the identifier of this register bank.
Wrapper class representing virtual and physical registers.
constexpr bool isValid() const
constexpr bool isPhysical() const
Return true if the specified register number is in the physical register namespace.
MachineInstr * buildCFIForSGPRToVMEMSpill(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, const DebugLoc &DL, MCRegister SGPR, int64_t Offset) const
Create a CFI index describing a spill of a SGPR to VMEM and build a MachineInstr around it.
MachineInstr * buildCFIForVRegToVRegSpill(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, const DebugLoc &DL, const MCRegister Reg, const MCRegister RegCopy) const
Create a CFI index describing a spill of the VGPR/AGPR Reg to another VGPR/AGPR RegCopy and build a M...
MachineInstr * buildCFIForVGPRToVMEMSpill(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, const DebugLoc &DL, MCRegister VGPR, int64_t Offset) const
Create a CFI index describing a spill of a VGPR to VMEM and build a MachineInstr around it.
MachineInstr * buildCFIForSGPRToVGPRSpill(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, const DebugLoc &DL, const MCRegister SGPR, const MCRegister VGPR, const int Lane) const
Create a CFI index describing a spill of an SGPR to a single lane of a VGPR and build a MachineInstr ...
static bool isFLATScratch(const MachineInstr &MI)
static bool isMUBUF(const MachineInstr &MI)
static bool isVOP3(const MCInstrDesc &Desc)
This class keeps track of the SPI_SP_INPUT_ADDR config register, which tells the hardware which inter...
ArrayRef< MCPhysReg > getAGPRSpillVGPRs() const
MCPhysReg getVGPRToAGPRSpill(int FrameIndex, unsigned Lane) const
Register getLongBranchReservedReg() const
unsigned getDynamicVGPRBlockSize() const
Register getStackPtrOffsetReg() const
Register getScratchRSrcReg() const
Returns the physical register reserved for use as the resource descriptor for scratch accesses.
ArrayRef< MCPhysReg > getVGPRSpillAGPRs() const
ArrayRef< SIRegisterInfo::SpilledReg > getSGPRSpillToVirtualVGPRLanes(int FrameIndex) const
uint32_t getMaskForVGPRBlockOps(Register RegisterBlock) const
Register getSGPRForEXECCopy() const
ArrayRef< SIRegisterInfo::SpilledReg > getSGPRSpillToPhysicalVGPRLanes(int FrameIndex) const
Register getVGPRForAGPRCopy() const
Register getFrameOffsetReg() const
BitVector getPerLaneVGPRMask() const
bool checkFlag(Register Reg, uint8_t Flag) const
void addToSpilledVGPRs(unsigned num)
const ReservedRegSet & getWWMReservedRegs() const
void addToSpilledSGPRs(unsigned num)
Register materializeFrameBaseRegister(MachineBasicBlock *MBB, int FrameIdx, int64_t Offset) const override
int64_t getScratchInstrOffset(const MachineInstr *MI) const
bool isFrameOffsetLegal(const MachineInstr *MI, Register BaseReg, int64_t Offset) const override
const TargetRegisterClass * getCompatibleSubRegClass(const TargetRegisterClass *SuperRC, const TargetRegisterClass *SubRC, unsigned SubIdx) const
Returns a register class which is compatible with SuperRC, such that a subregister exists with class ...
ArrayRef< MCPhysReg > getAllSGPR64(const MachineFunction &MF) const
Return all SGPR64 which satisfy the waves per execution unit requirement of the subtarget.
MCRegister findUnusedRegister(const MachineRegisterInfo &MRI, const TargetRegisterClass *RC, const MachineFunction &MF, bool ReserveHighestVGPR=false) const
Returns a lowest register that is not used at any point in the function.
static unsigned getSubRegFromChannel(unsigned Channel, unsigned NumRegs=1)
MCPhysReg get32BitRegister(MCPhysReg Reg) const
const uint32_t * getCallPreservedMask(const MachineFunction &MF, CallingConv::ID) const override
void buildSpillLoadStore(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const DebugLoc &DL, unsigned LoadStoreOp, int Index, Register ValueReg, bool ValueIsKill, MCRegister ScratchOffsetReg, int64_t InstrOffset, MachineMemOperand *MMO, RegScavenger *RS, LiveRegUnits *LiveUnits=nullptr, bool NeedsCFI=false) const
bool requiresFrameIndexReplacementScavenging(const MachineFunction &MF) const override
bool shouldRealignStack(const MachineFunction &MF) const override
bool restoreSGPR(MachineBasicBlock::iterator MI, int FI, RegScavenger *RS, SlotIndexes *Indexes=nullptr, LiveIntervals *LIS=nullptr, bool OnlyToVGPR=false, bool SpillToPhysVGPRLane=false) const
bool isProperlyAlignedRC(const TargetRegisterClass &RC) const
const TargetRegisterClass * getEquivalentVGPRClass(const TargetRegisterClass *SRC) const
Register getFrameRegister(const MachineFunction &MF) const override
LLVM_READONLY const TargetRegisterClass * getVectorSuperClassForBitWidth(unsigned BitWidth) const
bool spillEmergencySGPR(MachineBasicBlock::iterator MI, MachineBasicBlock &RestoreMBB, Register SGPR, RegScavenger *RS) const
SIRegisterInfo(const GCNSubtarget &ST)
const uint32_t * getAllVGPRRegMask() const
MCRegister getReturnAddressReg(const MachineFunction &MF) const
const MCPhysReg * getCalleeSavedRegs(const MachineFunction *MF) const override
bool hasBasePointer(const MachineFunction &MF) const
const TargetRegisterClass * getCrossCopyRegClass(const TargetRegisterClass *RC) const override
Returns a legal register class to copy a register in the specified class to or from.
ArrayRef< int16_t > getRegSplitParts(const TargetRegisterClass *RC, unsigned EltSize) const
ArrayRef< MCPhysReg > getAllSGPR32(const MachineFunction &MF) const
Return all SGPR32 which satisfy the waves per execution unit requirement of the subtarget.
const TargetRegisterClass * getLargestLegalSuperClass(const TargetRegisterClass *RC, const MachineFunction &MF) const override
MCRegister reservedPrivateSegmentBufferReg(const MachineFunction &MF) const
Return the end register initially reserved for the scratch buffer in case spilling is needed.
bool eliminateSGPRToVGPRSpillFrameIndex(MachineBasicBlock::iterator MI, int FI, RegScavenger *RS, SlotIndexes *Indexes=nullptr, LiveIntervals *LIS=nullptr, bool SpillToPhysVGPRLane=false) const
Special case of eliminateFrameIndex.
bool isVGPR(const MachineRegisterInfo &MRI, Register Reg) const
bool isAsmClobberable(const MachineFunction &MF, MCRegister PhysReg) const override
LLVM_READONLY const TargetRegisterClass * getAGPRClassForBitWidth(unsigned BitWidth) const
static bool isChainScratchRegister(Register VGPR)
bool requiresRegisterScavenging(const MachineFunction &Fn) const override
bool opCanUseInlineConstant(unsigned OpType) const
const TargetRegisterClass * getRegClassForSizeOnBank(unsigned Size, const RegisterBank &Bank) const
bool isUniformReg(const MachineRegisterInfo &MRI, const RegisterBankInfo &RBI, Register Reg) const override
const uint32_t * getNoPreservedMask() const override
StringRef getRegAsmName(MCRegister Reg) const override
const uint32_t * getAllAllocatableSRegMask() const
MCRegister getAlignedHighSGPRForRC(const MachineFunction &MF, const unsigned Align, const TargetRegisterClass *RC) const
Return the largest available SGPR aligned to Align for the register class RC.
void buildCFIForBlockCSRStore(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, Register BlockReg, int64_t Offset) const
const TargetRegisterClass * getRegClassForReg(const MachineRegisterInfo &MRI, Register Reg) const
unsigned getHWRegIndex(MCRegister Reg) const
const MCPhysReg * getCalleeSavedRegsViaCopy(const MachineFunction *MF) const
const uint32_t * getAllVectorRegMask() const
const TargetRegisterClass * getEquivalentAGPRClass(const TargetRegisterClass *SRC) const
static LLVM_READONLY const TargetRegisterClass * getSGPRClassForBitWidth(unsigned BitWidth)
const TargetRegisterClass * getPointerRegClass(unsigned Kind=0) const override
const TargetRegisterClass * getRegClassForTypeOnBank(LLT Ty, const RegisterBank &Bank) const
bool opCanUseLiteralConstant(unsigned OpType) const
Register getBaseRegister() const
bool getRegAllocationHints(Register VirtReg, ArrayRef< MCPhysReg > Order, SmallVectorImpl< MCPhysReg > &Hints, const MachineFunction &MF, const VirtRegMap *VRM, const LiveRegMatrix *Matrix) const override
LLVM_READONLY const TargetRegisterClass * getAlignedLo256VGPRClassForBitWidth(unsigned BitWidth) const
LLVM_READONLY const TargetRegisterClass * getVGPRClassForBitWidth(unsigned BitWidth) const
const TargetRegisterClass * getEquivalentAVClass(const TargetRegisterClass *SRC) const
bool requiresFrameIndexScavenging(const MachineFunction &MF) const override
static bool isVGPRClass(const TargetRegisterClass *RC)
MachineInstr * findReachingDef(Register Reg, unsigned SubReg, MachineInstr &Use, MachineRegisterInfo &MRI, LiveIntervals *LIS) const
bool isSGPRReg(const MachineRegisterInfo &MRI, Register Reg) const
const TargetRegisterClass * getEquivalentSGPRClass(const TargetRegisterClass *VRC) const
SmallVector< StringLiteral > getVRegFlagsOfReg(Register Reg, const MachineFunction &MF) const override
LLVM_READONLY const TargetRegisterClass * getDefaultVectorSuperClassForBitWidth(unsigned BitWidth) const
unsigned getRegPressureLimit(const TargetRegisterClass *RC, MachineFunction &MF) const override
ArrayRef< MCPhysReg > getAllSGPR128(const MachineFunction &MF) const
Return all SGPR128 which satisfy the waves per execution unit requirement of the subtarget.
unsigned getRegPressureSetLimit(const MachineFunction &MF, unsigned Idx) const override
BitVector getReservedRegs(const MachineFunction &MF) const override
bool needsFrameBaseReg(MachineInstr *MI, int64_t Offset) const override
const TargetRegisterClass * getRegClassForOperandReg(const MachineRegisterInfo &MRI, const MachineOperand &MO) const
void addImplicitUsesForBlockCSRLoad(MachineInstrBuilder &MIB, Register BlockReg) const
unsigned getNumUsedPhysRegs(const MachineRegisterInfo &MRI, const TargetRegisterClass &RC, bool IncludeCalls=true) const
const uint32_t * getAllAGPRRegMask() const
const int * getRegUnitPressureSets(MCRegUnit RegUnit) const override
bool isAGPR(const MachineRegisterInfo &MRI, Register Reg) const
bool eliminateFrameIndex(MachineBasicBlock::iterator MI, int SPAdj, unsigned FIOperandNum, RegScavenger *RS) const override
bool spillSGPR(MachineBasicBlock::iterator MI, int FI, RegScavenger *RS, SlotIndexes *Indexes=nullptr, LiveIntervals *LIS=nullptr, bool OnlyToVGPR=false, bool SpillToPhysVGPRLane=false, bool NeedsCFI=false) const
If OnlyToVGPR is true, this will only succeed if this manages to find a free VGPR lane to spill.
MCRegister getExec() const
MCRegister getVCC() const
int64_t getFrameIndexInstrOffset(const MachineInstr *MI, int Idx) const override
bool isVectorSuperClass(const TargetRegisterClass *RC) const
const TargetRegisterClass * getWaveMaskRegClass() const
unsigned getSubRegAlignmentNumBits(const TargetRegisterClass *RC, unsigned SubReg) const
void resolveFrameIndex(MachineInstr &MI, Register BaseReg, int64_t Offset) const override
bool requiresVirtualBaseRegisters(const MachineFunction &Fn) const override
const TargetRegisterClass * getVGPR64Class() const
void buildVGPRSpillLoadStore(SGPRSpillBuilder &SB, int Index, int Offset, bool IsLoad, bool IsKill=true) const
bool isCFISavedRegsSpillEnabled() const
static bool isSGPRClass(const TargetRegisterClass *RC)
static bool isAGPRClass(const TargetRegisterClass *RC)
const TargetRegisterClass * getConstrainedRegClassForReg(Register Reg, const MachineRegisterInfo &MRI) const override
SlotIndex - An opaque wrapper around machine indexes.
bool isValid() const
Returns true if this is a valid index.
SlotIndex insertMachineInstrInMaps(MachineInstr &MI, bool Late=false)
Insert the given machine instruction into the mapping.
SlotIndex replaceMachineInstrInMaps(MachineInstr &MI, MachineInstr &NewMI)
ReplaceMachineInstrInMaps - Replacing a machine instr with a new one in maps used by register allocat...
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Represent a constant reference to a string, i.e.
bool hasFP(const MachineFunction &MF) const
hasFP - Return true if the specified function should have a dedicated frame pointer register.
virtual const TargetRegisterClass * getLargestLegalSuperClass(const TargetRegisterClass *RC, const MachineFunction &) const
Returns the largest super class of RC that is legal to use in the current sub-target and has the same...
virtual bool shouldRealignStack(const MachineFunction &MF) const
True if storage within the function requires the stack pointer to be aligned more than the normal cal...
virtual bool getRegAllocationHints(Register VirtReg, ArrayRef< MCPhysReg > Order, SmallVectorImpl< MCPhysReg > &Hints, const MachineFunction &MF, const VirtRegMap *VRM=nullptr, const LiveRegMatrix *Matrix=nullptr) const
Get a list of 'hint' registers that the register allocator should try first when allocating a physica...
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
A Use represents the edge between a Value definition and its users.
VNInfo - Value Number Information.
MCRegister getPhys(Register virtReg) const
returns the physical register mapped to the specified virtual register
bool hasPhys(Register virtReg) const
returns true if the specified virtual register is mapped to a physical register
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ PRIVATE_ADDRESS
Address space for private memory.
bool isHi16Reg(MCRegister Reg, const MCRegisterInfo &MRI)
unsigned getRegBitWidth(unsigned RCID)
Get the size in bits of a register from the register class RC.
LLVM_READONLY bool hasNamedOperand(uint64_t Opcode, OpName NamedIdx)
bool isInlinableLiteral32(int32_t Literal, bool HasInv2Pi)
LLVM_READNONE bool isInlinableIntLiteral(int64_t Literal)
Is this literal inlinable, and not one of the values intended for floating point values.
@ OPERAND_REG_INLINE_AC_FIRST
@ OPERAND_REG_INLINE_AC_LAST
LLVM_READONLY int32_t getFlatScratchInstSVfromSVS(uint32_t Opcode)
LLVM_READONLY int32_t getFlatScratchInstSVfromSS(uint32_t Opcode)
LLVM_READONLY int32_t getFlatScratchInstSTfromSS(uint32_t Opcode)
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ AMDGPU_Gfx
Used for AMD graphics targets.
@ AMDGPU_CS_ChainPreserve
Used on AMDGPUs to give the middle-end more control over argument placement.
@ AMDGPU_CS_Chain
Used on AMDGPUs to give the middle-end more control over argument placement.
@ Cold
Attempts to make code in the caller as efficient as possible under the assumption that the call is no...
@ Fast
Attempts to make calls as fast as possible (e.g.
@ C
The default llvm calling convention, compatible with C.
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
PointerUnion< const TargetRegisterClass *, const RegisterBank * > RegClassOrRegBank
Convenient type to represent either a register class or a register bank.
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.
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
RegState
Flags to represent properties of register accesses.
@ Implicit
Not emitted register (e.g. carry, or temporary result).
@ Kill
The last use of a register.
@ Undef
Value of the register doesn't matter.
@ Define
Register definition.
@ Renamable
Register that may be renamed.
constexpr RegState getKillRegState(bool B)
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
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.
constexpr int popcount(T Value) noexcept
Count the number of set bits in a value.
auto reverse(ContainerTy &&C)
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
constexpr RegState getDefRegState(bool B)
constexpr bool isUInt(uint64_t x)
Checks if an unsigned integer fits into the given bit width.
constexpr bool hasRegState(RegState Value, RegState Test)
constexpr T divideCeil(U Numerator, V Denominator)
Returns the integer ceil(Numerator / Denominator).
@ Sub
Subtraction of integers.
uint16_t MCPhysReg
An unsigned integer type large enough to represent all physical registers, but not necessarily virtua...
DWARFExpression::Operation Op
ArrayRef(const T &OneElt) -> ArrayRef< T >
void call_once(once_flag &flag, Function &&F, Args &&... ArgList)
Execute the function specified as a parameter once.
constexpr unsigned BitWidth
static const MachineMemOperand::Flags MOLastUse
Mark the MMO of a load as the last use.
Align commonAlignment(Align A, uint64_t Offset)
Returns the alignment that satisfies both alignments.
static const MachineMemOperand::Flags MOThreadPrivate
Mark the MMO of accesses to memory locations that are never written to by other threads.
MCRegisterClass TargetRegisterClass
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
This struct is a compact representation of a valid (non-zero power of two) alignment.
This class contains a discriminated union of information about pointers in memory operands,...
MachinePointerInfo getWithOffset(int64_t O) const
static LLVM_ABI MachinePointerInfo getFixedStack(MachineFunction &MF, int FI, int64_t Offset=0)
Return a MachinePointerInfo record that refers to the specified FrameIndex.
void setMI(MachineBasicBlock *NewMBB, MachineBasicBlock::iterator NewMI)
ArrayRef< int16_t > SplitParts
SIMachineFunctionInfo & MFI
SGPRSpillBuilder(const SIRegisterInfo &TRI, const SIInstrInfo &TII, bool IsWave32, MachineBasicBlock::iterator MI, int Index, RegScavenger *RS)
SGPRSpillBuilder(const SIRegisterInfo &TRI, const SIInstrInfo &TII, bool IsWave32, MachineBasicBlock::iterator MI, Register Reg, bool IsKill, int Index, RegScavenger *RS)
PerVGPRData getPerVGPRData()
MachineBasicBlock::iterator MI
void readWriteTmpVGPR(unsigned Offset, bool IsLoad)
const SIRegisterInfo & TRI
The llvm::once_flag structure.