31#include "llvm/IR/IntrinsicsAMDGPU.h"
38#define DEBUG_TYPE "si-instr-info"
40#define GET_INSTRINFO_CTOR_DTOR
41#include "AMDGPUGenInstrInfo.inc"
44#define GET_D16ImageDimIntrinsics_IMPL
45#define GET_ImageDimIntrinsicTable_IMPL
46#define GET_RsrcIntrinsics_IMPL
47#include "AMDGPUGenSearchableTables.inc"
55 cl::desc(
"Restrict range of branch instructions (DEBUG)"));
58 "amdgpu-fix-16-bit-physreg-copies",
59 cl::desc(
"Fix copies between 32 and 16 bit registers by extending to 32 bit"),
74 unsigned N =
Node->getNumOperands();
75 while (
N &&
Node->getOperand(
N - 1).getValueType() == MVT::Glue)
89 if (Op0Idx == -1 && Op1Idx == -1)
93 if ((Op0Idx == -1 && Op1Idx != -1) ||
94 (Op1Idx == -1 && Op0Idx != -1))
115 return !
MI.memoperands_empty() &&
117 return MMO->isLoad() && MMO->isInvariant();
139 if (!
MI.hasImplicitDef() &&
140 MI.getNumImplicitOperands() ==
MI.getDesc().implicit_uses().size() &&
141 !
MI.mayRaiseFPException())
152 if (
MI.isCompare()) {
158 switch (
Use.getOpcode()) {
159 case AMDGPU::S_AND_SAVEEXEC_B32:
160 case AMDGPU::S_AND_SAVEEXEC_B64:
162 case AMDGPU::S_AND_B32:
163 case AMDGPU::S_AND_B64:
164 if (!
Use.readsRegister(AMDGPU::EXEC,
nullptr))
174 switch (
MI.getOpcode()) {
177 case AMDGPU::V_READFIRSTLANE_B32:
194 if (
MI.getOpcode() == AMDGPU::SI_IF_BREAK)
199 for (
auto Op :
MI.uses()) {
200 if (
Op.isReg() &&
Op.getReg().isVirtual() &&
206 if (FromCycle ==
nullptr)
212 while (FromCycle && !FromCycle->
contains(ToCycle)) {
232 int64_t &Offset1)
const {
240 if (!
get(Opc0).mayLoad() || !
get(Opc1).mayLoad())
244 if (!
get(Opc0).getNumDefs() || !
get(Opc1).getNumDefs())
262 if (Offset0Idx == -1 || Offset1Idx == -1)
269 Offset0Idx -=
get(Opc0).NumDefs;
270 Offset1Idx -=
get(Opc1).NumDefs;
291 assert(NumOps == 4 || NumOps == 5);
296 dyn_cast<ConstantSDNode>(Load0->
getOperand(NumOps - 3));
298 dyn_cast<ConstantSDNode>(Load1->
getOperand(NumOps - 3));
300 if (!Load0Offset || !Load1Offset)
320 if (OffIdx0 == -1 || OffIdx1 == -1)
326 OffIdx0 -=
get(Opc0).NumDefs;
327 OffIdx1 -=
get(Opc1).NumDefs;
333 if (!isa<ConstantSDNode>(Off0) || !isa<ConstantSDNode>(Off1))
346 case AMDGPU::DS_READ2ST64_B32:
347 case AMDGPU::DS_READ2ST64_B64:
348 case AMDGPU::DS_WRITE2ST64_B32:
349 case AMDGPU::DS_WRITE2ST64_B64:
364 OffsetIsScalable =
false;
394 unsigned Offset0 = Offset0Op->
getImm() & 0xff;
395 unsigned Offset1 = Offset1Op->
getImm() & 0xff;
396 if (Offset0 + 1 != Offset1)
415 Offset = EltSize * Offset0;
418 if (DataOpIdx == -1) {
436 if (BaseOp && !BaseOp->
isFI())
444 if (SOffset->
isReg())
461 isMIMG(LdSt) ? AMDGPU::OpName::srsrc : AMDGPU::OpName::rsrc;
465 if (VAddr0Idx >= 0) {
467 for (
int I = VAddr0Idx;
I < SRsrcIdx; ++
I)
525 if (BaseOps1.
front()->isIdenticalTo(*BaseOps2.
front()))
533 if (MO1->getAddrSpace() != MO2->getAddrSpace())
536 const auto *Base1 = MO1->getValue();
537 const auto *Base2 = MO2->getValue();
538 if (!Base1 || !Base2)
543 if (isa<UndefValue>(Base1) || isa<UndefValue>(Base2))
546 return Base1 == Base2;
550 int64_t Offset1,
bool OffsetIsScalable1,
552 int64_t Offset2,
bool OffsetIsScalable2,
553 unsigned ClusterSize,
554 unsigned NumBytes)
const {
567 }
else if (!BaseOps1.
empty() || !BaseOps2.
empty()) {
586 const unsigned LoadSize = NumBytes / ClusterSize;
587 const unsigned NumDWords = ((LoadSize + 3) / 4) * ClusterSize;
588 return NumDWords <= MaxMemoryClusterDWords;
602 int64_t Offset0, int64_t Offset1,
603 unsigned NumLoads)
const {
604 assert(Offset1 > Offset0 &&
605 "Second offset should be larger than first offset!");
610 return (NumLoads <= 16 && (Offset1 - Offset0) < 64);
617 const char *Msg =
"illegal VGPR to SGPR copy") {
621 C.diagnose(IllegalCopy);
638 assert((
TII.getSubtarget().hasMAIInsts() &&
639 !
TII.getSubtarget().hasGFX90AInsts()) &&
640 "Expected GFX908 subtarget.");
643 AMDGPU::AGPR_32RegClass.
contains(SrcReg)) &&
644 "Source register of the copy should be either an SGPR or an AGPR.");
647 "Destination register of the copy should be an AGPR.");
656 for (
auto Def =
MI, E =
MBB.
begin(); Def != E; ) {
659 if (!Def->modifiesRegister(SrcReg, &RI))
662 if (Def->getOpcode() != AMDGPU::V_ACCVGPR_WRITE_B32_e64 ||
663 Def->getOperand(0).getReg() != SrcReg)
670 bool SafeToPropagate =
true;
673 for (
auto I = Def;
I !=
MI && SafeToPropagate; ++
I)
674 if (
I->modifiesRegister(DefOp.
getReg(), &RI))
675 SafeToPropagate =
false;
677 if (!SafeToPropagate)
689 if (ImpUseSuperReg) {
690 Builder.
addReg(ImpUseSuperReg,
708 unsigned RegNo = (DestReg - AMDGPU::AGPR0) % 3;
712 "VGPR used for an intermediate copy should have been reserved.");
727 unsigned TmpCopyOp = AMDGPU::V_MOV_B32_e32;
728 if (AMDGPU::AGPR_32RegClass.
contains(SrcReg)) {
729 TmpCopyOp = AMDGPU::V_ACCVGPR_READ_B32_e64;
736 if (ImpUseSuperReg) {
737 UseBuilder.
addReg(ImpUseSuperReg,
759 int16_t SubIdx = BaseIndices[
Idx];
760 Register DestSubReg = RI.getSubReg(DestReg, SubIdx);
761 Register SrcSubReg = RI.getSubReg(SrcReg, SubIdx);
762 assert(DestSubReg && SrcSubReg &&
"Failed to find subregs!");
763 unsigned Opcode = AMDGPU::S_MOV_B32;
766 bool AlignedDest = ((DestSubReg - AMDGPU::SGPR0) % 2) == 0;
767 bool AlignedSrc = ((SrcSubReg - AMDGPU::SGPR0) % 2) == 0;
768 if (AlignedDest && AlignedSrc && (
Idx + 1 < BaseIndices.
size())) {
772 DestSubReg = RI.getSubReg(DestReg, SubIdx);
773 SrcSubReg = RI.getSubReg(SrcReg, SubIdx);
774 assert(DestSubReg && SrcSubReg &&
"Failed to find subregs!");
775 Opcode = AMDGPU::S_MOV_B64;
790 assert(FirstMI && LastMI);
798 LastMI->addRegisterKilled(SrcReg, &RI);
805 bool RenamableDest,
bool RenamableSrc)
const {
807 unsigned Size = RI.getRegSizeInBits(*RC);
809 unsigned SrcSize = RI.getRegSizeInBits(*SrcRC);
815 if (((
Size == 16) != (SrcSize == 16))) {
822 if (DestReg == SrcReg) {
828 RC = RI.getPhysRegBaseClass(DestReg);
829 Size = RI.getRegSizeInBits(*RC);
830 SrcRC = RI.getPhysRegBaseClass(SrcReg);
831 SrcSize = RI.getRegSizeInBits(*SrcRC);
835 if (RC == &AMDGPU::VGPR_32RegClass) {
837 AMDGPU::SReg_32RegClass.
contains(SrcReg) ||
838 AMDGPU::AGPR_32RegClass.
contains(SrcReg));
839 unsigned Opc = AMDGPU::AGPR_32RegClass.contains(SrcReg) ?
840 AMDGPU::V_ACCVGPR_READ_B32_e64 : AMDGPU::V_MOV_B32_e32;
846 if (RC == &AMDGPU::SReg_32_XM0RegClass ||
847 RC == &AMDGPU::SReg_32RegClass) {
848 if (SrcReg == AMDGPU::SCC) {
855 if (DestReg == AMDGPU::VCC_LO) {
856 if (AMDGPU::SReg_32RegClass.
contains(SrcReg)) {
870 if (!AMDGPU::SReg_32RegClass.
contains(SrcReg)) {
880 if (RC == &AMDGPU::SReg_64RegClass) {
881 if (SrcReg == AMDGPU::SCC) {
888 if (DestReg == AMDGPU::VCC) {
889 if (AMDGPU::SReg_64RegClass.
contains(SrcReg)) {
903 if (!AMDGPU::SReg_64RegClass.
contains(SrcReg)) {
913 if (DestReg == AMDGPU::SCC) {
916 if (AMDGPU::SReg_64RegClass.
contains(SrcReg)) {
934 if (RC == &AMDGPU::AGPR_32RegClass) {
935 if (AMDGPU::VGPR_32RegClass.
contains(SrcReg) ||
936 (ST.
hasGFX90AInsts() && AMDGPU::SReg_32RegClass.contains(SrcReg))) {
951 const bool Overlap = RI.regsOverlap(SrcReg, DestReg);
958 AMDGPU::SReg_LO16RegClass.
contains(SrcReg) ||
959 AMDGPU::AGPR_LO16RegClass.
contains(SrcReg));
961 bool IsSGPRDst = AMDGPU::SReg_LO16RegClass.contains(DestReg);
962 bool IsSGPRSrc = AMDGPU::SReg_LO16RegClass.contains(SrcReg);
963 bool IsAGPRDst = AMDGPU::AGPR_LO16RegClass.contains(DestReg);
964 bool IsAGPRSrc = AMDGPU::AGPR_LO16RegClass.contains(SrcReg);
981 if (IsAGPRDst || IsAGPRSrc) {
982 if (!DstLow || !SrcLow) {
984 "Cannot use hi16 subreg with an AGPR!");
997 if (AMDGPU::VGPR_16_Lo128RegClass.
contains(DestReg) &&
998 (IsSGPRSrc || AMDGPU::VGPR_16_Lo128RegClass.
contains(SrcReg))) {
1011 if (!DstLow || !SrcLow) {
1013 "Cannot use hi16 subreg on VI!");
1064 const bool CanKillSuperReg = KillSrc && !RI.regsOverlap(SrcReg, DestReg);
1070 unsigned EltSize = 4;
1071 unsigned Opcode = AMDGPU::V_MOV_B32_e32;
1074 Opcode = AMDGPU::V_ACCVGPR_MOV_B32;
1077 Opcode = AMDGPU::V_ACCVGPR_WRITE_B32_e64;
1079 Opcode = AMDGPU::INSTRUCTION_LIST_END;
1081 Opcode = AMDGPU::V_ACCVGPR_READ_B32_e64;
1087 Opcode = AMDGPU::V_MOV_B64_e32;
1090 Opcode = AMDGPU::V_PK_MOV_B32;
1100 std::unique_ptr<RegScavenger> RS;
1101 if (Opcode == AMDGPU::INSTRUCTION_LIST_END)
1102 RS = std::make_unique<RegScavenger>();
1108 const bool Overlap = RI.regsOverlap(SrcReg, DestReg);
1109 const bool CanKillSuperReg = KillSrc && !Overlap;
1114 SubIdx = SubIndices[
Idx];
1116 SubIdx = SubIndices[SubIndices.
size() -
Idx - 1];
1117 Register DestSubReg = RI.getSubReg(DestReg, SubIdx);
1118 Register SrcSubReg = RI.getSubReg(SrcReg, SubIdx);
1119 assert(DestSubReg && SrcSubReg &&
"Failed to find subregs!");
1121 bool IsFirstSubreg =
Idx == 0;
1122 bool UseKill = CanKillSuperReg &&
Idx == SubIndices.
size() - 1;
1124 if (Opcode == AMDGPU::INSTRUCTION_LIST_END) {
1128 *RS, Overlap, ImpDefSuper, ImpUseSuper);
1129 }
else if (Opcode == AMDGPU::V_PK_MOV_B32) {
1176 int64_t
Value)
const {
1179 if (RegClass == &AMDGPU::SReg_32RegClass ||
1180 RegClass == &AMDGPU::SGPR_32RegClass ||
1181 RegClass == &AMDGPU::SReg_32_XM0RegClass ||
1182 RegClass == &AMDGPU::SReg_32_XM0_XEXECRegClass) {
1188 if (RegClass == &AMDGPU::SReg_64RegClass ||
1189 RegClass == &AMDGPU::SGPR_64RegClass ||
1190 RegClass == &AMDGPU::SReg_64_XEXECRegClass) {
1196 if (RegClass == &AMDGPU::VGPR_32RegClass) {
1207 unsigned EltSize = 4;
1208 unsigned Opcode = AMDGPU::V_MOV_B32_e32;
1210 if (RI.getRegSizeInBits(*RegClass) > 32) {
1211 Opcode = AMDGPU::S_MOV_B64;
1214 Opcode = AMDGPU::S_MOV_B32;
1221 int64_t IdxValue =
Idx == 0 ?
Value : 0;
1224 get(Opcode), RI.getSubReg(DestReg, SubIndices[
Idx]));
1225 Builder.
addImm(IdxValue);
1231 return &AMDGPU::VGPR_32RegClass;
1242 assert(
MRI.getRegClass(DstReg) == &AMDGPU::VGPR_32RegClass &&
1243 "Not a VGPR32 reg");
1245 if (
Cond.size() == 1) {
1246 Register SReg =
MRI.createVirtualRegister(BoolXExecRC);
1255 }
else if (
Cond.size() == 2) {
1257 switch (
Cond[0].getImm()) {
1258 case SIInstrInfo::SCC_TRUE: {
1259 Register SReg =
MRI.createVirtualRegister(BoolXExecRC);
1261 : AMDGPU::S_CSELECT_B64), SReg)
1272 case SIInstrInfo::SCC_FALSE: {
1273 Register SReg =
MRI.createVirtualRegister(BoolXExecRC);
1275 : AMDGPU::S_CSELECT_B64), SReg)
1286 case SIInstrInfo::VCCNZ: {
1289 Register SReg =
MRI.createVirtualRegister(BoolXExecRC);
1300 case SIInstrInfo::VCCZ: {
1303 Register SReg =
MRI.createVirtualRegister(BoolXExecRC);
1314 case SIInstrInfo::EXECNZ: {
1315 Register SReg =
MRI.createVirtualRegister(BoolXExecRC);
1318 : AMDGPU::S_OR_SAVEEXEC_B64), SReg2)
1321 : AMDGPU::S_CSELECT_B64), SReg)
1332 case SIInstrInfo::EXECZ: {
1333 Register SReg =
MRI.createVirtualRegister(BoolXExecRC);
1336 : AMDGPU::S_OR_SAVEEXEC_B64), SReg2)
1339 : AMDGPU::S_CSELECT_B64), SReg)
1388 return AMDGPU::COPY;
1389 if (RI.getRegSizeInBits(*DstRC) == 16) {
1392 return RI.
isSGPRClass(DstRC) ? AMDGPU::COPY : AMDGPU::V_MOV_B16_t16_e64;
1394 if (RI.getRegSizeInBits(*DstRC) == 32)
1395 return RI.
isSGPRClass(DstRC) ? AMDGPU::S_MOV_B32 : AMDGPU::V_MOV_B32_e32;
1396 if (RI.getRegSizeInBits(*DstRC) == 64 && RI.
isSGPRClass(DstRC))
1397 return AMDGPU::S_MOV_B64;
1398 if (RI.getRegSizeInBits(*DstRC) == 64 && !RI.
isSGPRClass(DstRC))
1399 return AMDGPU::V_MOV_B64_PSEUDO;
1400 return AMDGPU::COPY;
1405 bool IsIndirectSrc)
const {
1406 if (IsIndirectSrc) {
1408 return get(AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V1);
1410 return get(AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V2);
1412 return get(AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V3);
1414 return get(AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V4);
1416 return get(AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V5);
1418 return get(AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V8);
1420 return get(AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V9);
1422 return get(AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V10);
1424 return get(AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V11);
1426 return get(AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V12);
1428 return get(AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V16);
1429 if (VecSize <= 1024)
1430 return get(AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V32);
1436 return get(AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V1);
1438 return get(AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V2);
1440 return get(AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V3);
1442 return get(AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V4);
1444 return get(AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V5);
1446 return get(AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V8);
1448 return get(AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V9);
1450 return get(AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V10);
1452 return get(AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V11);
1454 return get(AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V12);
1456 return get(AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V16);
1457 if (VecSize <= 1024)
1458 return get(AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V32);
1465 return AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V1;
1467 return AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V2;
1469 return AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V3;
1471 return AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V4;
1473 return AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V5;
1475 return AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V8;
1477 return AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V9;
1479 return AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V10;
1481 return AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V11;
1483 return AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V12;
1485 return AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V16;
1486 if (VecSize <= 1024)
1487 return AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V32;
1494 return AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V1;
1496 return AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V2;
1498 return AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V3;
1500 return AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V4;
1502 return AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V5;
1504 return AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V8;
1506 return AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V9;
1508 return AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V10;
1510 return AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V11;
1512 return AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V12;
1514 return AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V16;
1515 if (VecSize <= 1024)
1516 return AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V32;
1523 return AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B64_V1;
1525 return AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B64_V2;
1527 return AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B64_V4;
1529 return AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B64_V8;
1530 if (VecSize <= 1024)
1531 return AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B64_V16;
1538 bool IsSGPR)
const {
1550 assert(EltSize == 32 &&
"invalid reg indexing elt size");
1557 return AMDGPU::SI_SPILL_S32_SAVE;
1559 return AMDGPU::SI_SPILL_S64_SAVE;
1561 return AMDGPU::SI_SPILL_S96_SAVE;
1563 return AMDGPU::SI_SPILL_S128_SAVE;
1565 return AMDGPU::SI_SPILL_S160_SAVE;
1567 return AMDGPU::SI_SPILL_S192_SAVE;
1569 return AMDGPU::SI_SPILL_S224_SAVE;
1571 return AMDGPU::SI_SPILL_S256_SAVE;
1573 return AMDGPU::SI_SPILL_S288_SAVE;
1575 return AMDGPU::SI_SPILL_S320_SAVE;
1577 return AMDGPU::SI_SPILL_S352_SAVE;
1579 return AMDGPU::SI_SPILL_S384_SAVE;
1581 return AMDGPU::SI_SPILL_S512_SAVE;
1583 return AMDGPU::SI_SPILL_S1024_SAVE;
1592 return AMDGPU::SI_SPILL_V32_SAVE;
1594 return AMDGPU::SI_SPILL_V64_SAVE;
1596 return AMDGPU::SI_SPILL_V96_SAVE;
1598 return AMDGPU::SI_SPILL_V128_SAVE;
1600 return AMDGPU::SI_SPILL_V160_SAVE;
1602 return AMDGPU::SI_SPILL_V192_SAVE;
1604 return AMDGPU::SI_SPILL_V224_SAVE;
1606 return AMDGPU::SI_SPILL_V256_SAVE;
1608 return AMDGPU::SI_SPILL_V288_SAVE;
1610 return AMDGPU::SI_SPILL_V320_SAVE;
1612 return AMDGPU::SI_SPILL_V352_SAVE;
1614 return AMDGPU::SI_SPILL_V384_SAVE;
1616 return AMDGPU::SI_SPILL_V512_SAVE;
1618 return AMDGPU::SI_SPILL_V1024_SAVE;
1627 return AMDGPU::SI_SPILL_A32_SAVE;
1629 return AMDGPU::SI_SPILL_A64_SAVE;
1631 return AMDGPU::SI_SPILL_A96_SAVE;
1633 return AMDGPU::SI_SPILL_A128_SAVE;
1635 return AMDGPU::SI_SPILL_A160_SAVE;
1637 return AMDGPU::SI_SPILL_A192_SAVE;
1639 return AMDGPU::SI_SPILL_A224_SAVE;
1641 return AMDGPU::SI_SPILL_A256_SAVE;
1643 return AMDGPU::SI_SPILL_A288_SAVE;
1645 return AMDGPU::SI_SPILL_A320_SAVE;
1647 return AMDGPU::SI_SPILL_A352_SAVE;
1649 return AMDGPU::SI_SPILL_A384_SAVE;
1651 return AMDGPU::SI_SPILL_A512_SAVE;
1653 return AMDGPU::SI_SPILL_A1024_SAVE;
1662 return AMDGPU::SI_SPILL_AV32_SAVE;
1664 return AMDGPU::SI_SPILL_AV64_SAVE;
1666 return AMDGPU::SI_SPILL_AV96_SAVE;
1668 return AMDGPU::SI_SPILL_AV128_SAVE;
1670 return AMDGPU::SI_SPILL_AV160_SAVE;
1672 return AMDGPU::SI_SPILL_AV192_SAVE;
1674 return AMDGPU::SI_SPILL_AV224_SAVE;
1676 return AMDGPU::SI_SPILL_AV256_SAVE;
1678 return AMDGPU::SI_SPILL_AV288_SAVE;
1680 return AMDGPU::SI_SPILL_AV320_SAVE;
1682 return AMDGPU::SI_SPILL_AV352_SAVE;
1684 return AMDGPU::SI_SPILL_AV384_SAVE;
1686 return AMDGPU::SI_SPILL_AV512_SAVE;
1688 return AMDGPU::SI_SPILL_AV1024_SAVE;
1695 bool IsVectorSuperClass) {
1700 if (IsVectorSuperClass)
1701 return AMDGPU::SI_SPILL_WWM_AV32_SAVE;
1703 return AMDGPU::SI_SPILL_WWM_V32_SAVE;
1711 bool IsVectorSuperClass =
TRI.isVectorSuperClass(RC);
1717 if (IsVectorSuperClass)
1737 FrameInfo.getObjectAlign(FrameIndex));
1738 unsigned SpillSize =
TRI->getSpillSize(*RC);
1743 assert(SrcReg != AMDGPU::M0 &&
"m0 should not be spilled");
1744 assert(SrcReg != AMDGPU::EXEC_LO && SrcReg != AMDGPU::EXEC_HI &&
1745 SrcReg != AMDGPU::EXEC &&
"exec should not be spilled");
1753 if (SrcReg.
isVirtual() && SpillSize == 4) {
1754 MRI.constrainRegClass(SrcReg, &AMDGPU::SReg_32_XM0_XEXECRegClass);
1769 SpillSize, RI, *MFI);
1783 return AMDGPU::SI_SPILL_S32_RESTORE;
1785 return AMDGPU::SI_SPILL_S64_RESTORE;
1787 return AMDGPU::SI_SPILL_S96_RESTORE;
1789 return AMDGPU::SI_SPILL_S128_RESTORE;
1791 return AMDGPU::SI_SPILL_S160_RESTORE;
1793 return AMDGPU::SI_SPILL_S192_RESTORE;
1795 return AMDGPU::SI_SPILL_S224_RESTORE;
1797 return AMDGPU::SI_SPILL_S256_RESTORE;
1799 return AMDGPU::SI_SPILL_S288_RESTORE;
1801 return AMDGPU::SI_SPILL_S320_RESTORE;
1803 return AMDGPU::SI_SPILL_S352_RESTORE;
1805 return AMDGPU::SI_SPILL_S384_RESTORE;
1807 return AMDGPU::SI_SPILL_S512_RESTORE;
1809 return AMDGPU::SI_SPILL_S1024_RESTORE;
1818 return AMDGPU::SI_SPILL_V32_RESTORE;
1820 return AMDGPU::SI_SPILL_V64_RESTORE;
1822 return AMDGPU::SI_SPILL_V96_RESTORE;
1824 return AMDGPU::SI_SPILL_V128_RESTORE;
1826 return AMDGPU::SI_SPILL_V160_RESTORE;
1828 return AMDGPU::SI_SPILL_V192_RESTORE;
1830 return AMDGPU::SI_SPILL_V224_RESTORE;
1832 return AMDGPU::SI_SPILL_V256_RESTORE;
1834 return AMDGPU::SI_SPILL_V288_RESTORE;
1836 return AMDGPU::SI_SPILL_V320_RESTORE;
1838 return AMDGPU::SI_SPILL_V352_RESTORE;
1840 return AMDGPU::SI_SPILL_V384_RESTORE;
1842 return AMDGPU::SI_SPILL_V512_RESTORE;
1844 return AMDGPU::SI_SPILL_V1024_RESTORE;
1853 return AMDGPU::SI_SPILL_A32_RESTORE;
1855 return AMDGPU::SI_SPILL_A64_RESTORE;
1857 return AMDGPU::SI_SPILL_A96_RESTORE;
1859 return AMDGPU::SI_SPILL_A128_RESTORE;
1861 return AMDGPU::SI_SPILL_A160_RESTORE;
1863 return AMDGPU::SI_SPILL_A192_RESTORE;
1865 return AMDGPU::SI_SPILL_A224_RESTORE;
1867 return AMDGPU::SI_SPILL_A256_RESTORE;
1869 return AMDGPU::SI_SPILL_A288_RESTORE;
1871 return AMDGPU::SI_SPILL_A320_RESTORE;
1873 return AMDGPU::SI_SPILL_A352_RESTORE;
1875 return AMDGPU::SI_SPILL_A384_RESTORE;
1877 return AMDGPU::SI_SPILL_A512_RESTORE;
1879 return AMDGPU::SI_SPILL_A1024_RESTORE;
1888 return AMDGPU::SI_SPILL_AV32_RESTORE;
1890 return AMDGPU::SI_SPILL_AV64_RESTORE;
1892 return AMDGPU::SI_SPILL_AV96_RESTORE;
1894 return AMDGPU::SI_SPILL_AV128_RESTORE;
1896 return AMDGPU::SI_SPILL_AV160_RESTORE;
1898 return AMDGPU::SI_SPILL_AV192_RESTORE;
1900 return AMDGPU::SI_SPILL_AV224_RESTORE;
1902 return AMDGPU::SI_SPILL_AV256_RESTORE;
1904 return AMDGPU::SI_SPILL_AV288_RESTORE;
1906 return AMDGPU::SI_SPILL_AV320_RESTORE;
1908 return AMDGPU::SI_SPILL_AV352_RESTORE;
1910 return AMDGPU::SI_SPILL_AV384_RESTORE;
1912 return AMDGPU::SI_SPILL_AV512_RESTORE;
1914 return AMDGPU::SI_SPILL_AV1024_RESTORE;
1921 bool IsVectorSuperClass) {
1926 if (IsVectorSuperClass)
1927 return AMDGPU::SI_SPILL_WWM_AV32_RESTORE;
1929 return AMDGPU::SI_SPILL_WWM_V32_RESTORE;
1936 bool IsVectorSuperClass =
TRI.isVectorSuperClass(RC);
1942 if (IsVectorSuperClass)
1959 unsigned SpillSize =
TRI->getSpillSize(*RC);
1966 FrameInfo.getObjectAlign(FrameIndex));
1970 assert(DestReg != AMDGPU::M0 &&
"m0 should not be reloaded into");
1971 assert(DestReg != AMDGPU::EXEC_LO && DestReg != AMDGPU::EXEC_HI &&
1972 DestReg != AMDGPU::EXEC &&
"exec should not be spilled");
1977 if (DestReg.
isVirtual() && SpillSize == 4) {
1979 MRI.constrainRegClass(DestReg, &AMDGPU::SReg_32_XM0_XEXECRegClass);
1993 SpillSize, RI, *MFI);
2008 unsigned Quantity)
const {
2010 while (Quantity > 0) {
2011 unsigned Arg = std::min(Quantity, 8u);
2025 if (HasNoTerminator) {
2026 if (
Info->returnsVoid()) {
2040 constexpr unsigned DoorbellIDMask = 0x3ff;
2041 constexpr unsigned ECQueueWaveAbort = 0x400;
2059 Register DoorbellReg =
MRI.createVirtualRegister(&AMDGPU::SReg_32RegClass);
2063 BuildMI(*TrapBB, TrapBB->
end(),
DL,
get(AMDGPU::S_MOV_B32), AMDGPU::TTMP2)
2066 MRI.createVirtualRegister(&AMDGPU::SReg_32RegClass);
2067 BuildMI(*TrapBB, TrapBB->
end(),
DL,
get(AMDGPU::S_AND_B32), DoorbellRegMasked)
2071 MRI.createVirtualRegister(&AMDGPU::SReg_32RegClass);
2072 BuildMI(*TrapBB, TrapBB->
end(),
DL,
get(AMDGPU::S_OR_B32), SetWaveAbortBit)
2073 .
addUse(DoorbellRegMasked)
2074 .
addImm(ECQueueWaveAbort);
2075 BuildMI(*TrapBB, TrapBB->
end(),
DL,
get(AMDGPU::S_MOV_B32), AMDGPU::M0)
2076 .
addUse(SetWaveAbortBit);
2079 BuildMI(*TrapBB, TrapBB->
end(),
DL,
get(AMDGPU::S_MOV_B32), AMDGPU::M0)
2094 switch (
MI.getOpcode()) {
2096 if (
MI.isMetaInstruction())
2101 return MI.getOperand(0).getImm() + 1;
2110 switch (
MI.getOpcode()) {
2112 case AMDGPU::S_MOV_B64_term:
2115 MI.setDesc(
get(AMDGPU::S_MOV_B64));
2118 case AMDGPU::S_MOV_B32_term:
2121 MI.setDesc(
get(AMDGPU::S_MOV_B32));
2124 case AMDGPU::S_XOR_B64_term:
2127 MI.setDesc(
get(AMDGPU::S_XOR_B64));
2130 case AMDGPU::S_XOR_B32_term:
2133 MI.setDesc(
get(AMDGPU::S_XOR_B32));
2135 case AMDGPU::S_OR_B64_term:
2138 MI.setDesc(
get(AMDGPU::S_OR_B64));
2140 case AMDGPU::S_OR_B32_term:
2143 MI.setDesc(
get(AMDGPU::S_OR_B32));
2146 case AMDGPU::S_ANDN2_B64_term:
2149 MI.setDesc(
get(AMDGPU::S_ANDN2_B64));
2152 case AMDGPU::S_ANDN2_B32_term:
2155 MI.setDesc(
get(AMDGPU::S_ANDN2_B32));
2158 case AMDGPU::S_AND_B64_term:
2161 MI.setDesc(
get(AMDGPU::S_AND_B64));
2164 case AMDGPU::S_AND_B32_term:
2167 MI.setDesc(
get(AMDGPU::S_AND_B32));
2170 case AMDGPU::S_AND_SAVEEXEC_B64_term:
2173 MI.setDesc(
get(AMDGPU::S_AND_SAVEEXEC_B64));
2176 case AMDGPU::S_AND_SAVEEXEC_B32_term:
2179 MI.setDesc(
get(AMDGPU::S_AND_SAVEEXEC_B32));
2182 case AMDGPU::SI_SPILL_S32_TO_VGPR:
2183 MI.setDesc(
get(AMDGPU::V_WRITELANE_B32));
2186 case AMDGPU::SI_RESTORE_S32_FROM_VGPR:
2187 MI.setDesc(
get(AMDGPU::V_READLANE_B32));
2190 case AMDGPU::V_MOV_B64_PSEUDO: {
2192 Register DstLo = RI.getSubReg(Dst, AMDGPU::sub0);
2193 Register DstHi = RI.getSubReg(Dst, AMDGPU::sub1);
2199 MI.setDesc(
get(AMDGPU::V_MOV_B64_e32));
2204 if (
SrcOp.isImm()) {
2206 APInt Lo(32, Imm.getLoBits(32).getZExtValue());
2207 APInt Hi(32, Imm.getHiBits(32).getZExtValue());
2250 MI.eraseFromParent();
2253 case AMDGPU::V_MOV_B64_DPP_PSEUDO: {
2257 case AMDGPU::S_MOV_B64_IMM_PSEUDO: {
2262 MI.setDesc(
get(AMDGPU::S_MOV_B64));
2267 Register DstLo = RI.getSubReg(Dst, AMDGPU::sub0);
2268 Register DstHi = RI.getSubReg(Dst, AMDGPU::sub1);
2270 APInt Lo(32, Imm.getLoBits(32).getZExtValue());
2271 APInt Hi(32, Imm.getHiBits(32).getZExtValue());
2278 MI.eraseFromParent();
2281 case AMDGPU::V_SET_INACTIVE_B32: {
2285 .
add(
MI.getOperand(3))
2286 .
add(
MI.getOperand(4))
2287 .
add(
MI.getOperand(1))
2288 .
add(
MI.getOperand(2))
2289 .
add(
MI.getOperand(5));
2290 MI.eraseFromParent();
2293 case AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V1:
2294 case AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V2:
2295 case AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V3:
2296 case AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V4:
2297 case AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V5:
2298 case AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V8:
2299 case AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V9:
2300 case AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V10:
2301 case AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V11:
2302 case AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V12:
2303 case AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V16:
2304 case AMDGPU::V_INDIRECT_REG_WRITE_MOVREL_B32_V32:
2305 case AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V1:
2306 case AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V2:
2307 case AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V3:
2308 case AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V4:
2309 case AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V5:
2310 case AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V8:
2311 case AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V9:
2312 case AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V10:
2313 case AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V11:
2314 case AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V12:
2315 case AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V16:
2316 case AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B32_V32:
2317 case AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B64_V1:
2318 case AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B64_V2:
2319 case AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B64_V4:
2320 case AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B64_V8:
2321 case AMDGPU::S_INDIRECT_REG_WRITE_MOVREL_B64_V16: {
2326 Opc = AMDGPU::V_MOVRELD_B32_e32;
2328 Opc = RI.getRegSizeInBits(*EltRC) == 64 ? AMDGPU::S_MOVRELD_B64
2329 : AMDGPU::S_MOVRELD_B32;
2334 bool IsUndef =
MI.getOperand(1).isUndef();
2335 unsigned SubReg =
MI.getOperand(3).getImm();
2336 assert(VecReg ==
MI.getOperand(1).getReg());
2341 .
add(
MI.getOperand(2))
2345 const int ImpDefIdx =
2347 const int ImpUseIdx = ImpDefIdx + 1;
2349 MI.eraseFromParent();
2352 case AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V1:
2353 case AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V2:
2354 case AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V3:
2355 case AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V4:
2356 case AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V5:
2357 case AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V8:
2358 case AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V9:
2359 case AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V10:
2360 case AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V11:
2361 case AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V12:
2362 case AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V16:
2363 case AMDGPU::V_INDIRECT_REG_WRITE_GPR_IDX_B32_V32: {
2366 bool IsUndef =
MI.getOperand(1).isUndef();
2375 const MCInstrDesc &OpDesc =
get(AMDGPU::V_MOV_B32_indirect_write);
2379 .
add(
MI.getOperand(2))
2384 const int ImpDefIdx =
2386 const int ImpUseIdx = ImpDefIdx + 1;
2393 MI.eraseFromParent();
2396 case AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V1:
2397 case AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V2:
2398 case AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V3:
2399 case AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V4:
2400 case AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V5:
2401 case AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V8:
2402 case AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V9:
2403 case AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V10:
2404 case AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V11:
2405 case AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V12:
2406 case AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V16:
2407 case AMDGPU::V_INDIRECT_REG_READ_GPR_IDX_B32_V32: {
2411 bool IsUndef =
MI.getOperand(1).isUndef();
2429 MI.eraseFromParent();
2432 case AMDGPU::SI_PC_ADD_REL_OFFSET: {
2435 Register RegLo = RI.getSubReg(Reg, AMDGPU::sub0);
2436 Register RegHi = RI.getSubReg(Reg, AMDGPU::sub1);
2459 BuildMI(MF,
DL,
get(AMDGPU::S_SEXT_I32_I16), RegHi).addReg(RegHi));
2466 BuildMI(MF,
DL,
get(AMDGPU::S_ADD_U32), RegLo).addReg(RegLo).add(OpLo));
2476 MI.eraseFromParent();
2479 case AMDGPU::ENTER_STRICT_WWM: {
2483 : AMDGPU::S_OR_SAVEEXEC_B64));
2486 case AMDGPU::ENTER_STRICT_WQM: {
2489 const unsigned Exec = ST.
isWave32() ? AMDGPU::EXEC_LO : AMDGPU::EXEC;
2490 const unsigned WQMOp = ST.
isWave32() ? AMDGPU::S_WQM_B32 : AMDGPU::S_WQM_B64;
2491 const unsigned MovOp = ST.
isWave32() ? AMDGPU::S_MOV_B32 : AMDGPU::S_MOV_B64;
2495 MI.eraseFromParent();
2498 case AMDGPU::EXIT_STRICT_WWM:
2499 case AMDGPU::EXIT_STRICT_WQM: {
2502 MI.setDesc(
get(ST.
isWave32() ? AMDGPU::S_MOV_B32 : AMDGPU::S_MOV_B64));
2505 case AMDGPU::SI_RETURN: {
2519 MI.eraseFromParent();
2523 case AMDGPU::S_MUL_U64_U32_PSEUDO:
2524 case AMDGPU::S_MUL_I64_I32_PSEUDO:
2525 MI.setDesc(
get(AMDGPU::S_MUL_U64));
2528 case AMDGPU::S_GETPC_B64_pseudo:
2529 MI.setDesc(
get(AMDGPU::S_GETPC_B64));
2532 Register DstHi = RI.getSubReg(Dst, AMDGPU::sub1);
2554 case AMDGPU::S_LOAD_DWORDX16_IMM:
2555 case AMDGPU::S_LOAD_DWORDX8_IMM: {
2568 for (
auto &CandMO :
I->operands()) {
2569 if (!CandMO.isReg() || CandMO.getReg() != RegToFind || CandMO.isDef())
2577 if (!UseMO || UseMO->
getSubReg() == AMDGPU::NoSubRegister)
2585 assert(
MRI.use_nodbg_empty(DestReg) &&
"DestReg should have no users yet.");
2587 unsigned NewOpcode = -1;
2588 if (SubregSize == 256)
2589 NewOpcode = AMDGPU::S_LOAD_DWORDX8_IMM;
2590 else if (SubregSize == 128)
2591 NewOpcode = AMDGPU::S_LOAD_DWORDX4_IMM;
2598 MRI.setRegClass(DestReg, NewRC);
2601 UseMO->
setSubReg(AMDGPU::NoSubRegister);
2606 MI->getOperand(0).setReg(DestReg);
2607 MI->getOperand(0).setSubReg(AMDGPU::NoSubRegister);
2611 OffsetMO->
setImm(FinalOffset);
2617 MI->setMemRefs(*MF, NewMMOs);
2630std::pair<MachineInstr*, MachineInstr*>
2632 assert (
MI.getOpcode() == AMDGPU::V_MOV_B64_DPP_PSEUDO);
2637 MI.setDesc(
get(AMDGPU::V_MOV_B64_dpp));
2638 return std::pair(&
MI,
nullptr);
2649 for (
auto Sub : { AMDGPU::sub0, AMDGPU::sub1 }) {
2651 if (Dst.isPhysical()) {
2652 MovDPP.addDef(RI.getSubReg(Dst, Sub));
2655 auto Tmp =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
2659 for (
unsigned I = 1;
I <= 2; ++
I) {
2662 if (
SrcOp.isImm()) {
2664 Imm.ashrInPlace(Part * 32);
2665 MovDPP.addImm(Imm.getLoBits(32).getZExtValue());
2669 if (Src.isPhysical())
2670 MovDPP.addReg(RI.getSubReg(Src, Sub));
2677 MovDPP.addImm(MO.getImm());
2679 Split[Part] = MovDPP;
2683 if (Dst.isVirtual())
2690 MI.eraseFromParent();
2691 return std::pair(Split[0], Split[1]);
2694std::optional<DestSourcePair>
2696 if (
MI.getOpcode() == AMDGPU::WWM_COPY)
2699 return std::nullopt;
2704 unsigned Src0OpName,
2706 unsigned Src1OpName)
const {
2713 "All commutable instructions have both src0 and src1 modifiers");
2715 int Src0ModsVal = Src0Mods->
getImm();
2716 int Src1ModsVal = Src1Mods->
getImm();
2718 Src1Mods->
setImm(Src0ModsVal);
2719 Src0Mods->
setImm(Src1ModsVal);
2728 bool IsKill = RegOp.
isKill();
2730 bool IsUndef = RegOp.
isUndef();
2731 bool IsDebug = RegOp.
isDebug();
2733 if (NonRegOp.
isImm())
2735 else if (NonRegOp.
isFI())
2754 unsigned Src1Idx)
const {
2755 assert(!NewMI &&
"this should never be used");
2757 unsigned Opc =
MI.getOpcode();
2759 if (CommutedOpcode == -1)
2762 if (Src0Idx > Src1Idx)
2766 static_cast<int>(Src0Idx) &&
2768 static_cast<int>(Src1Idx) &&
2769 "inconsistency with findCommutedOpIndices");
2795 Src1, AMDGPU::OpName::src1_modifiers);
2798 AMDGPU::OpName::src1_sel);
2810 unsigned &SrcOpIdx0,
2811 unsigned &SrcOpIdx1)
const {
2816 unsigned &SrcOpIdx0,
2817 unsigned &SrcOpIdx1)
const {
2818 if (!
Desc.isCommutable())
2821 unsigned Opc =
Desc.getOpcode();
2830 return fixCommutedOpIndices(SrcOpIdx0, SrcOpIdx1, Src0Idx, Src1Idx);
2834 int64_t BrOffset)
const {
2837 assert(BranchOp != AMDGPU::S_SETPC_B64);
2851 return MI.getOperand(0).getMBB();
2856 if (
MI.getOpcode() == AMDGPU::SI_IF ||
MI.getOpcode() == AMDGPU::SI_ELSE ||
2857 MI.getOpcode() == AMDGPU::SI_LOOP)
2868 assert(RS &&
"RegScavenger required for long branching");
2870 "new block should be inserted for expanding unconditional branch");
2873 "restore block should be inserted for restoring clobbered registers");
2881 Register PCReg =
MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
2889 auto ApplyHazardWorkarounds = [
this, &
MBB, &
I, &
DL, FlushSGPRWrites]() {
2890 if (FlushSGPRWrites)
2898 ApplyHazardWorkarounds();
2902 MCCtx.createTempSymbol(
"post_getpc",
true);
2906 MCCtx.createTempSymbol(
"offset_lo",
true);
2908 MCCtx.createTempSymbol(
"offset_hi",
true);
2911 .
addReg(PCReg, 0, AMDGPU::sub0)
2915 .
addReg(PCReg, 0, AMDGPU::sub1)
2917 ApplyHazardWorkarounds();
2958 if (LongBranchReservedReg) {
2960 Scav = LongBranchReservedReg;
2969 MRI.replaceRegWith(PCReg, Scav);
2970 MRI.clearVirtRegs();
2976 TRI->spillEmergencySGPR(GetPC, RestoreBB, AMDGPU::SGPR0_SGPR1, RS);
2977 MRI.replaceRegWith(PCReg, AMDGPU::SGPR0_SGPR1);
2978 MRI.clearVirtRegs();
2993unsigned SIInstrInfo::getBranchOpcode(SIInstrInfo::BranchPredicate
Cond) {
2995 case SIInstrInfo::SCC_TRUE:
2996 return AMDGPU::S_CBRANCH_SCC1;
2997 case SIInstrInfo::SCC_FALSE:
2998 return AMDGPU::S_CBRANCH_SCC0;
2999 case SIInstrInfo::VCCNZ:
3000 return AMDGPU::S_CBRANCH_VCCNZ;
3001 case SIInstrInfo::VCCZ:
3002 return AMDGPU::S_CBRANCH_VCCZ;
3003 case SIInstrInfo::EXECNZ:
3004 return AMDGPU::S_CBRANCH_EXECNZ;
3005 case SIInstrInfo::EXECZ:
3006 return AMDGPU::S_CBRANCH_EXECZ;
3012SIInstrInfo::BranchPredicate SIInstrInfo::getBranchPredicate(
unsigned Opcode) {
3014 case AMDGPU::S_CBRANCH_SCC0:
3016 case AMDGPU::S_CBRANCH_SCC1:
3018 case AMDGPU::S_CBRANCH_VCCNZ:
3020 case AMDGPU::S_CBRANCH_VCCZ:
3022 case AMDGPU::S_CBRANCH_EXECNZ:
3024 case AMDGPU::S_CBRANCH_EXECZ:
3036 bool AllowModify)
const {
3037 if (
I->getOpcode() == AMDGPU::S_BRANCH) {
3039 TBB =
I->getOperand(0).getMBB();
3043 BranchPredicate Pred = getBranchPredicate(
I->getOpcode());
3044 if (Pred == INVALID_BR)
3049 Cond.push_back(
I->getOperand(1));
3059 if (
I->getOpcode() == AMDGPU::S_BRANCH) {
3061 FBB =
I->getOperand(0).getMBB();
3071 bool AllowModify)
const {
3079 while (
I != E && !
I->isBranch() && !
I->isReturn()) {
3080 switch (
I->getOpcode()) {
3081 case AMDGPU::S_MOV_B64_term:
3082 case AMDGPU::S_XOR_B64_term:
3083 case AMDGPU::S_OR_B64_term:
3084 case AMDGPU::S_ANDN2_B64_term:
3085 case AMDGPU::S_AND_B64_term:
3086 case AMDGPU::S_AND_SAVEEXEC_B64_term:
3087 case AMDGPU::S_MOV_B32_term:
3088 case AMDGPU::S_XOR_B32_term:
3089 case AMDGPU::S_OR_B32_term:
3090 case AMDGPU::S_ANDN2_B32_term:
3091 case AMDGPU::S_AND_B32_term:
3092 case AMDGPU::S_AND_SAVEEXEC_B32_term:
3095 case AMDGPU::SI_ELSE:
3096 case AMDGPU::SI_KILL_I1_TERMINATOR:
3097 case AMDGPU::SI_KILL_F32_COND_IMM_TERMINATOR:
3114 int *BytesRemoved)
const {
3116 unsigned RemovedSize = 0;
3119 if (
MI.isBranch() ||
MI.isReturn()) {
3121 MI.eraseFromParent();
3127 *BytesRemoved = RemovedSize;
3144 int *BytesAdded)
const {
3145 if (!FBB &&
Cond.empty()) {
3156 = getBranchOpcode(
static_cast<BranchPredicate
>(
Cond[0].getImm()));
3193 if (
Cond.size() != 2) {
3208 Register FalseReg,
int &CondCycles,
3209 int &TrueCycles,
int &FalseCycles)
const {
3210 switch (
Cond[0].getImm()) {
3215 if (
MRI.getRegClass(FalseReg) != RC)
3219 CondCycles = TrueCycles = FalseCycles = NumInsts;
3222 return RI.
hasVGPRs(RC) && NumInsts <= 6;
3230 if (
MRI.getRegClass(FalseReg) != RC)
3236 if (NumInsts % 2 == 0)
3239 CondCycles = TrueCycles = FalseCycles = NumInsts;
3251 BranchPredicate Pred =
static_cast<BranchPredicate
>(
Cond[0].getImm());
3252 if (Pred == VCCZ || Pred == SCC_FALSE) {
3253 Pred =
static_cast<BranchPredicate
>(-Pred);
3259 unsigned DstSize = RI.getRegSizeInBits(*DstRC);
3261 if (DstSize == 32) {
3263 if (Pred == SCC_TRUE) {
3278 if (DstSize == 64 && Pred == SCC_TRUE) {
3288 static const int16_t Sub0_15[] = {
3289 AMDGPU::sub0, AMDGPU::sub1, AMDGPU::sub2, AMDGPU::sub3,
3290 AMDGPU::sub4, AMDGPU::sub5, AMDGPU::sub6, AMDGPU::sub7,
3291 AMDGPU::sub8, AMDGPU::sub9, AMDGPU::sub10, AMDGPU::sub11,
3292 AMDGPU::sub12, AMDGPU::sub13, AMDGPU::sub14, AMDGPU::sub15,
3295 static const int16_t Sub0_15_64[] = {
3296 AMDGPU::sub0_sub1, AMDGPU::sub2_sub3,
3297 AMDGPU::sub4_sub5, AMDGPU::sub6_sub7,
3298 AMDGPU::sub8_sub9, AMDGPU::sub10_sub11,
3299 AMDGPU::sub12_sub13, AMDGPU::sub14_sub15,
3302 unsigned SelOp = AMDGPU::V_CNDMASK_B32_e32;
3304 const int16_t *SubIndices = Sub0_15;
3305 int NElts = DstSize / 32;
3309 if (Pred == SCC_TRUE) {
3311 SelOp = AMDGPU::S_CSELECT_B32;
3312 EltRC = &AMDGPU::SGPR_32RegClass;
3314 SelOp = AMDGPU::S_CSELECT_B64;
3315 EltRC = &AMDGPU::SGPR_64RegClass;
3316 SubIndices = Sub0_15_64;
3322 MBB,
I,
DL,
get(AMDGPU::REG_SEQUENCE), DstReg);
3327 for (
int Idx = 0;
Idx != NElts; ++
Idx) {
3328 Register DstElt =
MRI.createVirtualRegister(EltRC);
3331 unsigned SubIdx = SubIndices[
Idx];
3334 if (SelOp == AMDGPU::V_CNDMASK_B32_e32) {
3337 .
addReg(FalseReg, 0, SubIdx)
3338 .
addReg(TrueReg, 0, SubIdx);
3342 .
addReg(TrueReg, 0, SubIdx)
3343 .
addReg(FalseReg, 0, SubIdx);
3355 switch (
MI.getOpcode()) {
3356 case AMDGPU::V_MOV_B16_t16_e32:
3357 case AMDGPU::V_MOV_B16_t16_e64:
3358 case AMDGPU::V_MOV_B32_e32:
3359 case AMDGPU::V_MOV_B32_e64:
3360 case AMDGPU::V_MOV_B64_PSEUDO:
3361 case AMDGPU::V_MOV_B64_e32:
3362 case AMDGPU::V_MOV_B64_e64:
3363 case AMDGPU::S_MOV_B32:
3364 case AMDGPU::S_MOV_B64:
3365 case AMDGPU::S_MOV_B64_IMM_PSEUDO:
3367 case AMDGPU::WWM_COPY:
3368 case AMDGPU::V_ACCVGPR_WRITE_B32_e64:
3369 case AMDGPU::V_ACCVGPR_READ_B32_e64:
3370 case AMDGPU::V_ACCVGPR_MOV_B32:
3378 AMDGPU::OpName::src0_modifiers, AMDGPU::OpName::src1_modifiers,
3379 AMDGPU::OpName::src2_modifiers, AMDGPU::OpName::clamp,
3380 AMDGPU::OpName::omod, AMDGPU::OpName::op_sel};
3383 unsigned Opc =
MI.getOpcode();
3387 MI.removeOperand(
Idx);
3393 if (!
MRI->hasOneNonDBGUse(Reg))
3396 switch (
DefMI.getOpcode()) {
3399 case AMDGPU::V_MOV_B64_e32:
3400 case AMDGPU::S_MOV_B64:
3401 case AMDGPU::V_MOV_B64_PSEUDO:
3402 case AMDGPU::S_MOV_B64_IMM_PSEUDO:
3403 case AMDGPU::V_MOV_B32_e32:
3404 case AMDGPU::S_MOV_B32:
3405 case AMDGPU::V_ACCVGPR_WRITE_B32_e64:
3412 if (!ImmOp->
isImm())
3415 auto getImmFor = [ImmOp](
const MachineOperand &UseOp) -> int64_t {
3416 int64_t Imm = ImmOp->
getImm();
3417 switch (UseOp.getSubReg()) {
3425 return SignExtend64<16>(Imm);
3427 return SignExtend64<16>(Imm >> 16);
3428 case AMDGPU::sub1_lo16:
3429 return SignExtend64<16>(Imm >> 32);
3430 case AMDGPU::sub1_hi16:
3431 return SignExtend64<16>(Imm >> 48);
3435 assert(!
DefMI.getOperand(0).getSubReg() &&
"Expected SSA form");
3437 unsigned Opc =
UseMI.getOpcode();
3438 if (Opc == AMDGPU::COPY) {
3439 assert(!
UseMI.getOperand(0).getSubReg() &&
"Expected SSA form");
3443 bool Is16Bit = OpSize == 2;
3444 bool Is64Bit = OpSize == 8;
3446 unsigned NewOpc =
isVGPRCopy ? Is64Bit ? AMDGPU::V_MOV_B64_PSEUDO
3447 : AMDGPU::V_MOV_B32_e32
3448 : Is64Bit ? AMDGPU::S_MOV_B64_IMM_PSEUDO
3449 : AMDGPU::S_MOV_B32;
3450 APInt Imm(Is64Bit ? 64 : 32, getImmFor(
UseMI.getOperand(1)),
3456 NewOpc = AMDGPU::V_ACCVGPR_WRITE_B32_e64;
3463 if (DstReg.
isVirtual() &&
UseMI.getOperand(0).getSubReg() != AMDGPU::lo16)
3466 UseMI.getOperand(0).setSubReg(0);
3469 UseMI.getOperand(0).setReg(DstReg);
3479 UseMI.setDesc(NewMCID);
3480 UseMI.getOperand(1).ChangeToImmediate(Imm.getSExtValue());
3485 if (Opc == AMDGPU::V_MAD_F32_e64 || Opc == AMDGPU::V_MAC_F32_e64 ||
3486 Opc == AMDGPU::V_MAD_F16_e64 || Opc == AMDGPU::V_MAC_F16_e64 ||
3487 Opc == AMDGPU::V_FMA_F32_e64 || Opc == AMDGPU::V_FMAC_F32_e64 ||
3488 Opc == AMDGPU::V_FMA_F16_e64 || Opc == AMDGPU::V_FMAC_F16_e64 ||
3489 Opc == AMDGPU::V_FMAC_F16_fake16_e64) {
3504 bool IsF32 = Opc == AMDGPU::V_MAD_F32_e64 || Opc == AMDGPU::V_MAC_F32_e64 ||
3505 Opc == AMDGPU::V_FMA_F32_e64 || Opc == AMDGPU::V_FMAC_F32_e64;
3507 Opc == AMDGPU::V_FMA_F32_e64 || Opc == AMDGPU::V_FMAC_F32_e64 ||
3508 Opc == AMDGPU::V_FMA_F16_e64 || Opc == AMDGPU::V_FMAC_F16_e64 ||
3509 Opc == AMDGPU::V_FMAC_F16_fake16_e64;
3517 Src1->
isReg() && Src1->
getReg() == Reg ? Src0 : Src1;
3518 if (!RegSrc->
isReg())
3536 if (Def && Def->isMoveImmediate() &&
3541 IsFMA ? (IsF32 ? AMDGPU::V_FMAMK_F32
3543 : AMDGPU::V_FMAMK_F16)
3544 : (IsF32 ? AMDGPU::V_MADMK_F32 : AMDGPU::V_MADMK_F16);
3551 if (NewOpc == AMDGPU::V_FMAMK_F16_fake16)
3554 const int64_t Imm = getImmFor(RegSrc == Src1 ? *Src0 : *Src1);
3560 unsigned SrcSubReg = RegSrc->
getSubReg();
3565 if (Opc == AMDGPU::V_MAC_F32_e64 || Opc == AMDGPU::V_MAC_F16_e64 ||
3566 Opc == AMDGPU::V_FMAC_F32_e64 ||
3567 Opc == AMDGPU::V_FMAC_F16_fake16_e64 || Opc == AMDGPU::V_FMAC_F16_e64)
3568 UseMI.untieRegOperand(
3571 Src1->ChangeToImmediate(Imm);
3576 bool DeleteDef =
MRI->use_nodbg_empty(Reg);
3578 DefMI.eraseFromParent();
3588 bool Src0Inlined =
false;
3589 if (Src0->
isReg()) {
3594 if (Def && Def->isMoveImmediate() &&
3606 if (Src1->
isReg() && !Src0Inlined) {
3609 if (Def && Def->isMoveImmediate() &&
3620 IsFMA ? (IsF32 ? AMDGPU::V_FMAAK_F32
3622 : AMDGPU::V_FMAAK_F16)
3623 : (IsF32 ? AMDGPU::V_MADAK_F32 : AMDGPU::V_MADAK_F16);
3630 if (NewOpc == AMDGPU::V_FMAAK_F16_fake16)
3636 if (Opc == AMDGPU::V_MAC_F32_e64 || Opc == AMDGPU::V_MAC_F16_e64 ||
3637 Opc == AMDGPU::V_FMAC_F32_e64 ||
3638 Opc == AMDGPU::V_FMAC_F16_fake16_e64 || Opc == AMDGPU::V_FMAC_F16_e64)
3639 UseMI.untieRegOperand(
3653 bool DeleteDef =
MRI->use_nodbg_empty(Reg);
3655 DefMI.eraseFromParent();
3667 if (BaseOps1.
size() != BaseOps2.
size())
3669 for (
size_t I = 0, E = BaseOps1.
size();
I < E; ++
I) {
3670 if (!BaseOps1[
I]->isIdenticalTo(*BaseOps2[
I]))
3678 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB;
3679 int HighOffset = OffsetA < OffsetB ? OffsetB : OffsetA;
3680 LocationSize LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
3682 LowOffset + (int)LowWidth.
getValue() <= HighOffset;
3685bool SIInstrInfo::checkInstOffsetsDoNotOverlap(
const MachineInstr &MIa,
3688 int64_t Offset0, Offset1;
3690 bool Offset0IsScalable, Offset1IsScalable;
3712 "MIa must load from or modify a memory location");
3714 "MIb must load from or modify a memory location");
3733 return checkInstOffsetsDoNotOverlap(MIa, MIb);
3740 return checkInstOffsetsDoNotOverlap(MIa, MIb);
3750 return checkInstOffsetsDoNotOverlap(MIa, MIb);
3764 return checkInstOffsetsDoNotOverlap(MIa, MIb);
3775 if (Reg.isPhysical())
3777 auto *Def =
MRI.getUniqueVRegDef(Reg);
3779 Imm = Def->getOperand(1).getImm();
3799 unsigned NumOps =
MI.getNumOperands();
3800 for (
unsigned I = 1;
I < NumOps; ++
I) {
3802 if (
Op.isReg() &&
Op.isKill())
3812 unsigned Opc =
MI.getOpcode();
3816 if (NewMFMAOpc != -1) {
3819 for (
unsigned I = 0, E =
MI.getNumOperands();
I != E; ++
I)
3820 MIB.
add(
MI.getOperand(
I));
3826 if (Def.isEarlyClobber() && Def.isReg() &&
3831 auto UpdateDefIndex = [&](
LiveRange &LR) {
3832 auto *S = LR.
find(OldIndex);
3833 if (S != LR.end() && S->start == OldIndex) {
3834 assert(S->valno && S->valno->def == OldIndex);
3835 S->start = NewIndex;
3836 S->valno->def = NewIndex;
3840 for (
auto &SR : LI.subranges())
3851 for (
unsigned I = 0, E =
MI.getNumOperands();
I != E; ++
I)
3862 Opc != AMDGPU::V_FMAC_F16_fake16_e32 &&
3863 "V_FMAC_F16_fake16_e32 is not supported and not expected to be present "
3867 bool IsF16 = Opc == AMDGPU::V_MAC_F16_e32 || Opc == AMDGPU::V_MAC_F16_e64 ||
3868 Opc == AMDGPU::V_FMAC_F16_e32 || Opc == AMDGPU::V_FMAC_F16_e64 ||
3869 Opc == AMDGPU::V_FMAC_F16_fake16_e64;
3870 bool IsFMA = Opc == AMDGPU::V_FMAC_F32_e32 || Opc == AMDGPU::V_FMAC_F32_e64 ||
3871 Opc == AMDGPU::V_FMAC_LEGACY_F32_e32 ||
3872 Opc == AMDGPU::V_FMAC_LEGACY_F32_e64 ||
3873 Opc == AMDGPU::V_FMAC_F16_e32 || Opc == AMDGPU::V_FMAC_F16_e64 ||
3874 Opc == AMDGPU::V_FMAC_F16_fake16_e64 ||
3875 Opc == AMDGPU::V_FMAC_F64_e32 || Opc == AMDGPU::V_FMAC_F64_e64;
3876 bool IsF64 = Opc == AMDGPU::V_FMAC_F64_e32 || Opc == AMDGPU::V_FMAC_F64_e64;
3877 bool IsLegacy = Opc == AMDGPU::V_MAC_LEGACY_F32_e32 ||
3878 Opc == AMDGPU::V_MAC_LEGACY_F32_e64 ||
3879 Opc == AMDGPU::V_FMAC_LEGACY_F32_e32 ||
3880 Opc == AMDGPU::V_FMAC_LEGACY_F32_e64;
3881 bool Src0Literal =
false;
3886 case AMDGPU::V_MAC_F16_e64:
3887 case AMDGPU::V_FMAC_F16_e64:
3888 case AMDGPU::V_FMAC_F16_fake16_e64:
3889 case AMDGPU::V_MAC_F32_e64:
3890 case AMDGPU::V_MAC_LEGACY_F32_e64:
3891 case AMDGPU::V_FMAC_F32_e64:
3892 case AMDGPU::V_FMAC_LEGACY_F32_e64:
3893 case AMDGPU::V_FMAC_F64_e64:
3895 case AMDGPU::V_MAC_F16_e32:
3896 case AMDGPU::V_FMAC_F16_e32:
3897 case AMDGPU::V_MAC_F32_e32:
3898 case AMDGPU::V_MAC_LEGACY_F32_e32:
3899 case AMDGPU::V_FMAC_F32_e32:
3900 case AMDGPU::V_FMAC_LEGACY_F32_e32:
3901 case AMDGPU::V_FMAC_F64_e32: {
3903 AMDGPU::OpName::src0);
3930 if (!Src0Mods && !Src1Mods && !Src2Mods && !Clamp && !Omod && !IsF64 &&
3936 const auto killDef = [&]() ->
void {
3941 if (
MRI.hasOneNonDBGUse(DefReg)) {
3958 Register DummyReg =
MRI.cloneVirtualRegister(DefReg);
3960 if (MIOp.isReg() && MIOp.getReg() == DefReg) {
3961 MIOp.setIsUndef(
true);
3962 MIOp.setReg(DummyReg);
3974 : AMDGPU::V_FMAAK_F16)
3975 : AMDGPU::V_FMAAK_F32)
3976 : (IsF16 ? AMDGPU::V_MADAK_F16 : AMDGPU::V_MADAK_F32);
3993 : AMDGPU::V_FMAMK_F16)
3994 : AMDGPU::V_FMAMK_F32)
3995 : (IsF16 ? AMDGPU::V_MADMK_F16 : AMDGPU::V_MADMK_F32);
4043 unsigned NewOpc = IsFMA ? IsF16 ? AMDGPU::V_FMA_F16_gfx9_e64
4044 : IsF64 ? AMDGPU::V_FMA_F64_e64
4046 ? AMDGPU::V_FMA_LEGACY_F32_e64
4047 : AMDGPU::V_FMA_F32_e64
4048 : IsF16 ? AMDGPU::V_MAD_F16_e64
4049 : IsLegacy ? AMDGPU::V_MAD_LEGACY_F32_e64
4050 : AMDGPU::V_MAD_F32_e64;
4066 MIB.
addImm(OpSel ? OpSel->getImm() : 0);
4077 switch (
MI.getOpcode()) {
4078 case AMDGPU::S_SET_GPR_IDX_ON:
4079 case AMDGPU::S_SET_GPR_IDX_MODE:
4080 case AMDGPU::S_SET_GPR_IDX_OFF:
4098 if (
MI.isTerminator() ||
MI.isPosition())
4102 if (
MI.getOpcode() == TargetOpcode::INLINEASM_BR)
4105 if (
MI.getOpcode() == AMDGPU::SCHED_BARRIER &&
MI.getOperand(0).getImm() == 0)
4111 return MI.modifiesRegister(AMDGPU::EXEC, &RI) ||
4112 MI.getOpcode() == AMDGPU::S_SETREG_IMM32_B32 ||
4113 MI.getOpcode() == AMDGPU::S_SETREG_B32 ||
4114 MI.getOpcode() == AMDGPU::S_SETPRIO ||
4119 return Opcode == AMDGPU::DS_ORDERED_COUNT ||
isGWS(Opcode);
4130 unsigned Opcode =
MI.getOpcode();
4145 if (Opcode == AMDGPU::S_SENDMSG || Opcode == AMDGPU::S_SENDMSGHALT ||
4146 isEXP(Opcode) || Opcode == AMDGPU::DS_ORDERED_COUNT ||
4147 Opcode == AMDGPU::S_TRAP || Opcode == AMDGPU::S_WAIT_EVENT)
4150 if (
MI.isCall() ||
MI.isInlineAsm())
4166 if (Opcode == AMDGPU::V_READFIRSTLANE_B32 ||
4167 Opcode == AMDGPU::V_READLANE_B32 || Opcode == AMDGPU::V_WRITELANE_B32 ||
4168 Opcode == AMDGPU::SI_RESTORE_S32_FROM_VGPR ||
4169 Opcode == AMDGPU::SI_SPILL_S32_TO_VGPR)
4177 if (
MI.isMetaInstruction())
4181 if (
MI.isCopyLike()) {
4186 return MI.readsRegister(AMDGPU::EXEC, &RI);
4197 return !
isSALU(
MI) ||
MI.readsRegister(AMDGPU::EXEC, &RI);
4201 switch (Imm.getBitWidth()) {
4221 APInt IntImm = Imm.bitcastToAPInt();
4241 assert(!MO.
isReg() &&
"isInlineConstant called on register operand!");
4250 int64_t Imm = MO.
getImm();
4251 switch (OperandType) {
4264 int32_t Trunc =
static_cast<int32_t
>(Imm);
4304 if (isInt<16>(Imm) || isUInt<16>(Imm)) {
4309 int16_t Trunc =
static_cast<int16_t
>(Imm);
4320 if (isInt<16>(Imm) || isUInt<16>(Imm)) {
4321 int16_t Trunc =
static_cast<int16_t
>(Imm);
4381 AMDGPU::OpName::src2))
4397 if (Opcode == AMDGPU::V_MUL_LEGACY_F32_e64 && ST.
hasGFX90AInsts())
4417 return Mods && Mods->
getImm();
4430 switch (
MI.getOpcode()) {
4431 default:
return false;
4433 case AMDGPU::V_ADDC_U32_e64:
4434 case AMDGPU::V_SUBB_U32_e64:
4435 case AMDGPU::V_SUBBREV_U32_e64: {
4443 case AMDGPU::V_MAC_F16_e64:
4444 case AMDGPU::V_MAC_F32_e64:
4445 case AMDGPU::V_MAC_LEGACY_F32_e64:
4446 case AMDGPU::V_FMAC_F16_e64:
4447 case AMDGPU::V_FMAC_F16_fake16_e64:
4448 case AMDGPU::V_FMAC_F32_e64:
4449 case AMDGPU::V_FMAC_F64_e64:
4450 case AMDGPU::V_FMAC_LEGACY_F32_e64:
4456 case AMDGPU::V_CNDMASK_B32_e64:
4492 (
Use.getReg() == AMDGPU::VCC ||
Use.getReg() == AMDGPU::VCC_LO)) {
4501 unsigned Op32)
const {
4515 Inst32.
add(
MI.getOperand(
I));
4519 int Idx =
MI.getNumExplicitDefs();
4521 int OpTy =
MI.getDesc().operands()[
Idx++].OperandType;
4559 if (MO.
getReg() == AMDGPU::SGPR_NULL || MO.
getReg() == AMDGPU::SGPR_NULL64)
4564 return MO.
getReg() == AMDGPU::M0 || MO.
getReg() == AMDGPU::VCC ||
4565 MO.
getReg() == AMDGPU::VCC_LO;
4567 return AMDGPU::SReg_32RegClass.contains(MO.
getReg()) ||
4568 AMDGPU::SReg_64RegClass.contains(MO.
getReg());
4577 switch (MO.getReg()) {
4579 case AMDGPU::VCC_LO:
4580 case AMDGPU::VCC_HI:
4582 case AMDGPU::FLAT_SCR:
4595 switch (
MI.getOpcode()) {
4596 case AMDGPU::V_READLANE_B32:
4597 case AMDGPU::SI_RESTORE_S32_FROM_VGPR:
4598 case AMDGPU::V_WRITELANE_B32:
4599 case AMDGPU::SI_SPILL_S32_TO_VGPR:
4606 if (
MI.isPreISelOpcode() ||
4607 SIInstrInfo::isGenericOpcode(
MI.getOpcode()) ||
4622 if (
SubReg.getReg().isPhysical())
4625 return SubReg.getSubReg() != AMDGPU::NoSubRegister &&
4637 ErrInfo =
"illegal copy from vector register to SGPR";
4655 if (!
MRI.isSSA() &&
MI.isCopy())
4656 return verifyCopy(
MI,
MRI, ErrInfo);
4658 if (SIInstrInfo::isGenericOpcode(
MI.getOpcode()))
4665 if (Src0Idx == -1) {
4675 if (!
Desc.isVariadic() &&
4676 Desc.getNumOperands() !=
MI.getNumExplicitOperands()) {
4677 ErrInfo =
"Instruction has wrong number of operands.";
4681 if (
MI.isInlineAsm()) {
4694 if (!Reg.isVirtual() && !RC->
contains(Reg)) {
4695 ErrInfo =
"inlineasm operand has incorrect register class.";
4703 if (
isImage(
MI) &&
MI.memoperands_empty() &&
MI.mayLoadOrStore()) {
4704 ErrInfo =
"missing memory operand from image instruction.";
4709 for (
int i = 0, e =
Desc.getNumOperands(); i != e; ++i) {
4712 ErrInfo =
"FPImm Machine Operands are not supported. ISel should bitcast "
4713 "all fp values to integers.";
4717 int RegClass =
Desc.operands()[i].RegClass;
4719 switch (
Desc.operands()[i].OperandType) {
4721 if (
MI.getOperand(i).isImm() ||
MI.getOperand(i).isGlobal()) {
4722 ErrInfo =
"Illegal immediate value for operand.";
4743 ErrInfo =
"Illegal immediate value for operand.";
4750 ErrInfo =
"Expected inline constant for operand.";
4759 if (!
MI.getOperand(i).isImm() && !
MI.getOperand(i).isFI()) {
4760 ErrInfo =
"Expected immediate, but got non-immediate";
4782 RI.getSubRegisterClass(RC, MO.
getSubReg())) {
4791 ErrInfo =
"Subtarget requires even aligned vector registers";
4796 if (RegClass != -1) {
4797 if (Reg.isVirtual())
4802 ErrInfo =
"Operand has incorrect register class.";
4811 ErrInfo =
"SDWA is not supported on this target";
4817 for (
int OpIdx : {DstIdx, Src0Idx, Src1Idx, Src2Idx}) {
4825 ErrInfo =
"Only VGPRs allowed as operands in SDWA instructions on VI";
4832 "Only reg allowed as operands in SDWA instructions on GFX9+";
4841 if (OMod !=
nullptr &&
4843 ErrInfo =
"OMod not allowed in SDWA instructions on VI";
4848 if (Opcode == AMDGPU::V_CVT_F32_FP8_sdwa ||
4849 Opcode == AMDGPU::V_CVT_F32_BF8_sdwa ||
4850 Opcode == AMDGPU::V_CVT_PK_F32_FP8_sdwa ||
4851 Opcode == AMDGPU::V_CVT_PK_F32_BF8_sdwa) {
4854 unsigned Mods = Src0ModsMO->
getImm();
4857 ErrInfo =
"sext, abs and neg are not allowed on this instruction";
4863 if (
isVOPC(BasicOpcode)) {
4867 if (!Dst.isReg() || Dst.getReg() != AMDGPU::VCC) {
4868 ErrInfo =
"Only VCC allowed as dst in SDWA instructions on VI";
4874 if (Clamp && (!Clamp->
isImm() || Clamp->
getImm() != 0)) {
4875 ErrInfo =
"Clamp not allowed in VOPC SDWA instructions on VI";
4881 if (OMod && (!OMod->
isImm() || OMod->
getImm() != 0)) {
4882 ErrInfo =
"OMod not allowed in VOPC SDWA instructions on VI";
4889 if (DstUnused && DstUnused->isImm() &&
4892 if (!Dst.isReg() || !Dst.isTied()) {
4893 ErrInfo =
"Dst register should have tied register";
4898 MI.getOperand(
MI.findTiedOperandIdx(DstIdx));
4901 "Dst register should be tied to implicit use of preserved register";
4905 ErrInfo =
"Dst register should use same physical register as preserved";
4937 uint32_t DstSize = RI.getRegSizeInBits(*DstRC) / 32;
4938 if (RegCount > DstSize) {
4939 ErrInfo =
"Image instruction returns too many registers for dst "
4948 if (
isVALU(
MI) &&
Desc.getOpcode() != AMDGPU::V_WRITELANE_B32) {
4949 unsigned ConstantBusCount = 0;
4950 bool UsesLiteral =
false;
4957 LiteralVal = &
MI.getOperand(ImmIdx);
4966 for (
int OpIdx : {Src0Idx, Src1Idx, Src2Idx, Src3Idx}) {
4977 }
else if (!MO.
isFI()) {
4984 ErrInfo =
"VOP2/VOP3 instruction uses more than one literal";
4994 if (
llvm::all_of(SGPRsUsed, [
this, SGPRUsed](
unsigned SGPR) {
4995 return !RI.regsOverlap(SGPRUsed, SGPR);
5005 Opcode != AMDGPU::V_WRITELANE_B32) {
5006 ErrInfo =
"VOP* instruction violates constant bus restriction";
5011 ErrInfo =
"VOP3 instruction uses literal";
5018 if (
Desc.getOpcode() == AMDGPU::V_WRITELANE_B32) {
5019 unsigned SGPRCount = 0;
5022 for (
int OpIdx : {Src0Idx, Src1Idx}) {
5030 if (MO.
getReg() != SGPRUsed)
5036 ErrInfo =
"WRITELANE instruction violates constant bus restriction";
5043 if (
Desc.getOpcode() == AMDGPU::V_DIV_SCALE_F32_e64 ||
5044 Desc.getOpcode() == AMDGPU::V_DIV_SCALE_F64_e64) {
5051 ErrInfo =
"v_div_scale_{f32|f64} require src0 = src1 or src2";
5061 ErrInfo =
"ABS not allowed in VOP3B instructions";
5074 ErrInfo =
"SOP2/SOPC instruction requires too many immediate constants";
5081 if (
Desc.isBranch()) {
5083 ErrInfo =
"invalid branch target for SOPK instruction";
5089 if (!isUInt<16>(Imm)) {
5090 ErrInfo =
"invalid immediate for SOPK instruction";
5094 if (!isInt<16>(Imm)) {
5095 ErrInfo =
"invalid immediate for SOPK instruction";
5102 if (
Desc.getOpcode() == AMDGPU::V_MOVRELS_B32_e32 ||
5103 Desc.getOpcode() == AMDGPU::V_MOVRELS_B32_e64 ||
5104 Desc.getOpcode() == AMDGPU::V_MOVRELD_B32_e32 ||
5105 Desc.getOpcode() == AMDGPU::V_MOVRELD_B32_e64) {
5106 const bool IsDst =
Desc.getOpcode() == AMDGPU::V_MOVRELD_B32_e32 ||
5107 Desc.getOpcode() == AMDGPU::V_MOVRELD_B32_e64;
5109 const unsigned StaticNumOps =
5110 Desc.getNumOperands() +
Desc.implicit_uses().size();
5111 const unsigned NumImplicitOps = IsDst ? 2 : 1;
5116 if (
MI.getNumOperands() < StaticNumOps + NumImplicitOps) {
5117 ErrInfo =
"missing implicit register operands";
5123 if (!Dst->isUse()) {
5124 ErrInfo =
"v_movreld_b32 vdst should be a use operand";
5129 if (!
MI.isRegTiedToUseOperand(StaticNumOps, &UseOpIdx) ||
5130 UseOpIdx != StaticNumOps + 1) {
5131 ErrInfo =
"movrel implicit operands should be tied";
5138 =
MI.getOperand(StaticNumOps + NumImplicitOps - 1);
5140 !
isSubRegOf(RI, ImpUse, IsDst ? *Dst : Src0)) {
5141 ErrInfo =
"src0 should be subreg of implicit vector use";
5149 if (!
MI.hasRegisterImplicitUseOperand(AMDGPU::EXEC)) {
5150 ErrInfo =
"VALU instruction does not implicitly read exec mask";
5156 if (
MI.mayStore() &&
5161 if (Soff && Soff->
getReg() != AMDGPU::M0) {
5162 ErrInfo =
"scalar stores must use m0 as offset register";
5170 if (
Offset->getImm() != 0) {
5171 ErrInfo =
"subtarget does not support offsets in flat instructions";
5178 if (GDSOp && GDSOp->
getImm() != 0) {
5179 ErrInfo =
"GDS is not supported on this subtarget";
5188 AMDGPU::OpName::vaddr0);
5190 isMIMG(
MI) ? AMDGPU::OpName::srsrc : AMDGPU::OpName::rsrc;
5199 ErrInfo =
"dim is out of range";
5206 IsA16 = R128A16->
getImm() != 0;
5207 }
else if (ST.
hasA16()) {
5209 IsA16 = A16->
getImm() != 0;
5212 bool IsNSA = RsrcIdx - VAddr0Idx > 1;
5214 unsigned AddrWords =
5217 unsigned VAddrWords;
5219 VAddrWords = RsrcIdx - VAddr0Idx;
5222 unsigned LastVAddrIdx = RsrcIdx - 1;
5223 VAddrWords +=
getOpSize(
MI, LastVAddrIdx) / 4 - 1;
5231 if (VAddrWords != AddrWords) {
5233 <<
" but got " << VAddrWords <<
"\n");
5234 ErrInfo =
"bad vaddr size";
5242 using namespace AMDGPU::DPP;
5244 unsigned DC = DppCt->
getImm();
5245 if (DC == DppCtrl::DPP_UNUSED1 || DC == DppCtrl::DPP_UNUSED2 ||
5246 DC == DppCtrl::DPP_UNUSED3 || DC > DppCtrl::DPP_LAST ||
5247 (DC >= DppCtrl::DPP_UNUSED4_FIRST && DC <= DppCtrl::DPP_UNUSED4_LAST) ||
5248 (DC >= DppCtrl::DPP_UNUSED5_FIRST && DC <= DppCtrl::DPP_UNUSED5_LAST) ||
5249 (DC >= DppCtrl::DPP_UNUSED6_FIRST && DC <= DppCtrl::DPP_UNUSED6_LAST) ||
5250 (DC >= DppCtrl::DPP_UNUSED7_FIRST && DC <= DppCtrl::DPP_UNUSED7_LAST) ||
5251 (DC >= DppCtrl::DPP_UNUSED8_FIRST && DC <= DppCtrl::DPP_UNUSED8_LAST)) {
5252 ErrInfo =
"Invalid dpp_ctrl value";
5255 if (DC >= DppCtrl::WAVE_SHL1 && DC <= DppCtrl::WAVE_ROR1 &&
5257 ErrInfo =
"Invalid dpp_ctrl value: "
5258 "wavefront shifts are not supported on GFX10+";
5261 if (DC >= DppCtrl::BCAST15 && DC <= DppCtrl::BCAST31 &&
5263 ErrInfo =
"Invalid dpp_ctrl value: "
5264 "broadcasts are not supported on GFX10+";
5267 if (DC >= DppCtrl::ROW_SHARE_FIRST && DC <= DppCtrl::ROW_XMASK_LAST &&
5269 if (DC >= DppCtrl::ROW_NEWBCAST_FIRST &&
5270 DC <= DppCtrl::ROW_NEWBCAST_LAST &&
5272 ErrInfo =
"Invalid dpp_ctrl value: "
5273 "row_newbroadcast/row_share is not supported before "
5278 ErrInfo =
"Invalid dpp_ctrl value: "
5279 "row_share and row_xmask are not supported before GFX10";
5284 if (Opcode != AMDGPU::V_MOV_B64_DPP_PSEUDO &&
5286 ErrInfo =
"Invalid dpp_ctrl value: "
5287 "DP ALU dpp only support row_newbcast";
5294 uint16_t DataNameIdx =
isDS(Opcode) ? AMDGPU::OpName::data0
5295 : AMDGPU::OpName::vdata;
5304 ErrInfo =
"Invalid register class: "
5305 "vdata and vdst should be both VGPR or AGPR";
5308 if (
Data && Data2 &&
5310 ErrInfo =
"Invalid register class: "
5311 "both data operands should be VGPR or AGPR";
5315 if ((Dst && RI.
isAGPR(
MRI, Dst->getReg())) ||
5318 ErrInfo =
"Invalid register class: "
5319 "agpr loads and stores not supported on this GPU";
5326 const auto isAlignedReg = [&
MI, &
MRI,
this](
unsigned OpName) ->
bool {
5331 if (Reg.isPhysical())
5338 if (
MI.getOpcode() == AMDGPU::DS_GWS_INIT ||
5339 MI.getOpcode() == AMDGPU::DS_GWS_SEMA_BR ||
5340 MI.getOpcode() == AMDGPU::DS_GWS_BARRIER) {
5342 if (!isAlignedReg(AMDGPU::OpName::data0)) {
5343 ErrInfo =
"Subtarget requires even aligned vector registers "
5344 "for DS_GWS instructions";
5350 if (!isAlignedReg(AMDGPU::OpName::vaddr)) {
5351 ErrInfo =
"Subtarget requires even aligned vector registers "
5352 "for vaddr operand of image instructions";
5358 if (
MI.getOpcode() == AMDGPU::V_ACCVGPR_WRITE_B32_e64 &&
5361 if (Src->isReg() && RI.
isSGPRReg(
MRI, Src->getReg())) {
5362 ErrInfo =
"Invalid register class: "
5363 "v_accvgpr_write with an SGPR is not supported on this GPU";
5368 if (
Desc.getOpcode() == AMDGPU::G_AMDGPU_WAVE_ADDRESS) {
5371 ErrInfo =
"pseudo expects only physical SGPRs";
5383 switch (
MI.getOpcode()) {
5384 default:
return AMDGPU::INSTRUCTION_LIST_END;
5385 case AMDGPU::REG_SEQUENCE:
return AMDGPU::REG_SEQUENCE;
5386 case AMDGPU::COPY:
return AMDGPU::COPY;
5387 case AMDGPU::PHI:
return AMDGPU::PHI;
5388 case AMDGPU::INSERT_SUBREG:
return AMDGPU::INSERT_SUBREG;
5389 case AMDGPU::WQM:
return AMDGPU::WQM;
5390 case AMDGPU::SOFT_WQM:
return AMDGPU::SOFT_WQM;
5391 case AMDGPU::STRICT_WWM:
return AMDGPU::STRICT_WWM;
5392 case AMDGPU::STRICT_WQM:
return AMDGPU::STRICT_WQM;
5393 case AMDGPU::S_MOV_B32: {
5395 return MI.getOperand(1).isReg() ||
5397 AMDGPU::COPY : AMDGPU::V_MOV_B32_e32;
5399 case AMDGPU::S_ADD_I32:
5400 return ST.
hasAddNoCarry() ? AMDGPU::V_ADD_U32_e64 : AMDGPU::V_ADD_CO_U32_e32;
5401 case AMDGPU::S_ADDC_U32:
5402 return AMDGPU::V_ADDC_U32_e32;
5403 case AMDGPU::S_SUB_I32:
5404 return ST.
hasAddNoCarry() ? AMDGPU::V_SUB_U32_e64 : AMDGPU::V_SUB_CO_U32_e32;
5407 case AMDGPU::S_ADD_U32:
5408 return AMDGPU::V_ADD_CO_U32_e32;
5409 case AMDGPU::S_SUB_U32:
5410 return AMDGPU::V_SUB_CO_U32_e32;
5411 case AMDGPU::S_SUBB_U32:
return AMDGPU::V_SUBB_U32_e32;
5412 case AMDGPU::S_MUL_I32:
return AMDGPU::V_MUL_LO_U32_e64;
5413 case AMDGPU::S_MUL_HI_U32:
return AMDGPU::V_MUL_HI_U32_e64;
5414 case AMDGPU::S_MUL_HI_I32:
return AMDGPU::V_MUL_HI_I32_e64;
5415 case AMDGPU::S_AND_B32:
return AMDGPU::V_AND_B32_e64;
5416 case AMDGPU::S_OR_B32:
return AMDGPU::V_OR_B32_e64;
5417 case AMDGPU::S_XOR_B32:
return AMDGPU::V_XOR_B32_e64;
5418 case AMDGPU::S_XNOR_B32:
5419 return ST.
hasDLInsts() ? AMDGPU::V_XNOR_B32_e64 : AMDGPU::INSTRUCTION_LIST_END;
5420 case AMDGPU::S_MIN_I32:
return AMDGPU::V_MIN_I32_e64;
5421 case AMDGPU::S_MIN_U32:
return AMDGPU::V_MIN_U32_e64;
5422 case AMDGPU::S_MAX_I32:
return AMDGPU::V_MAX_I32_e64;
5423 case AMDGPU::S_MAX_U32:
return AMDGPU::V_MAX_U32_e64;
5424 case AMDGPU::S_ASHR_I32:
return AMDGPU::V_ASHR_I32_e32;
5425 case AMDGPU::S_ASHR_I64:
return AMDGPU::V_ASHR_I64_e64;
5426 case AMDGPU::S_LSHL_B32:
return AMDGPU::V_LSHL_B32_e32;
5427 case AMDGPU::S_LSHL_B64:
return AMDGPU::V_LSHL_B64_e64;
5428 case AMDGPU::S_LSHR_B32:
return AMDGPU::V_LSHR_B32_e32;
5429 case AMDGPU::S_LSHR_B64:
return AMDGPU::V_LSHR_B64_e64;
5430 case AMDGPU::S_SEXT_I32_I8:
return AMDGPU::V_BFE_I32_e64;
5431 case AMDGPU::S_SEXT_I32_I16:
return AMDGPU::V_BFE_I32_e64;
5432 case AMDGPU::S_BFE_U32:
return AMDGPU::V_BFE_U32_e64;
5433 case AMDGPU::S_BFE_I32:
return AMDGPU::V_BFE_I32_e64;
5434 case AMDGPU::S_BFM_B32:
return AMDGPU::V_BFM_B32_e64;
5435 case AMDGPU::S_BREV_B32:
return AMDGPU::V_BFREV_B32_e32;
5436 case AMDGPU::S_NOT_B32:
return AMDGPU::V_NOT_B32_e32;
5437 case AMDGPU::S_NOT_B64:
return AMDGPU::V_NOT_B32_e32;
5438 case AMDGPU::S_CMP_EQ_I32:
return AMDGPU::V_CMP_EQ_I32_e64;
5439 case AMDGPU::S_CMP_LG_I32:
return AMDGPU::V_CMP_NE_I32_e64;
5440 case AMDGPU::S_CMP_GT_I32:
return AMDGPU::V_CMP_GT_I32_e64;
5441 case AMDGPU::S_CMP_GE_I32:
return AMDGPU::V_CMP_GE_I32_e64;
5442 case AMDGPU::S_CMP_LT_I32:
return AMDGPU::V_CMP_LT_I32_e64;
5443 case AMDGPU::S_CMP_LE_I32:
return AMDGPU::V_CMP_LE_I32_e64;
5444 case AMDGPU::S_CMP_EQ_U32:
return AMDGPU::V_CMP_EQ_U32_e64;
5445 case AMDGPU::S_CMP_LG_U32:
return AMDGPU::V_CMP_NE_U32_e64;
5446 case AMDGPU::S_CMP_GT_U32:
return AMDGPU::V_CMP_GT_U32_e64;
5447 case AMDGPU::S_CMP_GE_U32:
return AMDGPU::V_CMP_GE_U32_e64;
5448 case AMDGPU::S_CMP_LT_U32:
return AMDGPU::V_CMP_LT_U32_e64;
5449 case AMDGPU::S_CMP_LE_U32:
return AMDGPU::V_CMP_LE_U32_e64;
5450 case AMDGPU::S_CMP_EQ_U64:
return AMDGPU::V_CMP_EQ_U64_e64;
5451 case AMDGPU::S_CMP_LG_U64:
return AMDGPU::V_CMP_NE_U64_e64;
5452 case AMDGPU::S_BCNT1_I32_B32:
return AMDGPU::V_BCNT_U32_B32_e64;
5453 case AMDGPU::S_FF1_I32_B32:
return AMDGPU::V_FFBL_B32_e32;
5454 case AMDGPU::S_FLBIT_I32_B32:
return AMDGPU::V_FFBH_U32_e32;
5455 case AMDGPU::S_FLBIT_I32:
return AMDGPU::V_FFBH_I32_e64;
5456 case AMDGPU::S_CBRANCH_SCC0:
return AMDGPU::S_CBRANCH_VCCZ;
5457 case AMDGPU::S_CBRANCH_SCC1:
return AMDGPU::S_CBRANCH_VCCNZ;
5458 case AMDGPU::S_CVT_F32_I32:
return AMDGPU::V_CVT_F32_I32_e64;
5459 case AMDGPU::S_CVT_F32_U32:
return AMDGPU::V_CVT_F32_U32_e64;
5460 case AMDGPU::S_CVT_I32_F32:
return AMDGPU::V_CVT_I32_F32_e64;
5461 case AMDGPU::S_CVT_U32_F32:
return AMDGPU::V_CVT_U32_F32_e64;
5462 case AMDGPU::S_CVT_F32_F16:
5463 case AMDGPU::S_CVT_HI_F32_F16:
5465 : AMDGPU::V_CVT_F32_F16_fake16_e64;
5466 case AMDGPU::S_CVT_F16_F32:
5468 : AMDGPU::V_CVT_F16_F32_fake16_e64;
5469 case AMDGPU::S_CEIL_F32:
return AMDGPU::V_CEIL_F32_e64;
5470 case AMDGPU::S_FLOOR_F32:
return AMDGPU::V_FLOOR_F32_e64;
5471 case AMDGPU::S_TRUNC_F32:
return AMDGPU::V_TRUNC_F32_e64;
5472 case AMDGPU::S_RNDNE_F32:
return AMDGPU::V_RNDNE_F32_e64;
5473 case AMDGPU::S_CEIL_F16:
5475 : AMDGPU::V_CEIL_F16_fake16_e64;
5476 case AMDGPU::S_FLOOR_F16:
5478 : AMDGPU::V_FLOOR_F16_fake16_e64;
5479 case AMDGPU::S_TRUNC_F16:
5480 return AMDGPU::V_TRUNC_F16_fake16_e64;
5481 case AMDGPU::S_RNDNE_F16:
5482 return AMDGPU::V_RNDNE_F16_fake16_e64;
5483 case AMDGPU::S_ADD_F32:
return AMDGPU::V_ADD_F32_e64;
5484 case AMDGPU::S_SUB_F32:
return AMDGPU::V_SUB_F32_e64;
5485 case AMDGPU::S_MIN_F32:
return AMDGPU::V_MIN_F32_e64;
5486 case AMDGPU::S_MAX_F32:
return AMDGPU::V_MAX_F32_e64;
5487 case AMDGPU::S_MINIMUM_F32:
return AMDGPU::V_MINIMUM_F32_e64;
5488 case AMDGPU::S_MAXIMUM_F32:
return AMDGPU::V_MAXIMUM_F32_e64;
5489 case AMDGPU::S_MUL_F32:
return AMDGPU::V_MUL_F32_e64;
5490 case AMDGPU::S_ADD_F16:
return AMDGPU::V_ADD_F16_fake16_e64;
5491 case AMDGPU::S_SUB_F16:
return AMDGPU::V_SUB_F16_fake16_e64;
5492 case AMDGPU::S_MIN_F16:
return AMDGPU::V_MIN_F16_fake16_e64;
5493 case AMDGPU::S_MAX_F16:
return AMDGPU::V_MAX_F16_fake16_e64;
5494 case AMDGPU::S_MINIMUM_F16:
return AMDGPU::V_MINIMUM_F16_e64;
5495 case AMDGPU::S_MAXIMUM_F16:
return AMDGPU::V_MAXIMUM_F16_e64;
5496 case AMDGPU::S_MUL_F16:
return AMDGPU::V_MUL_F16_fake16_e64;
5497 case AMDGPU::S_CVT_PK_RTZ_F16_F32:
return AMDGPU::V_CVT_PKRTZ_F16_F32_e64;
5498 case AMDGPU::S_FMAC_F32:
return AMDGPU::V_FMAC_F32_e64;
5499 case AMDGPU::S_FMAC_F16:
return AMDGPU::V_FMAC_F16_fake16_e64;
5500 case AMDGPU::S_FMAMK_F32:
return AMDGPU::V_FMAMK_F32;
5501 case AMDGPU::S_FMAAK_F32:
return AMDGPU::V_FMAAK_F32;
5502 case AMDGPU::S_CMP_LT_F32:
return AMDGPU::V_CMP_LT_F32_e64;
5503 case AMDGPU::S_CMP_EQ_F32:
return AMDGPU::V_CMP_EQ_F32_e64;
5504 case AMDGPU::S_CMP_LE_F32:
return AMDGPU::V_CMP_LE_F32_e64;
5505 case AMDGPU::S_CMP_GT_F32:
return AMDGPU::V_CMP_GT_F32_e64;
5506 case AMDGPU::S_CMP_LG_F32:
return AMDGPU::V_CMP_LG_F32_e64;
5507 case AMDGPU::S_CMP_GE_F32:
return AMDGPU::V_CMP_GE_F32_e64;
5508 case AMDGPU::S_CMP_O_F32:
return AMDGPU::V_CMP_O_F32_e64;
5509 case AMDGPU::S_CMP_U_F32:
return AMDGPU::V_CMP_U_F32_e64;
5510 case AMDGPU::S_CMP_NGE_F32:
return AMDGPU::V_CMP_NGE_F32_e64;
5511 case AMDGPU::S_CMP_NLG_F32:
return AMDGPU::V_CMP_NLG_F32_e64;
5512 case AMDGPU::S_CMP_NGT_F32:
return AMDGPU::V_CMP_NGT_F32_e64;
5513 case AMDGPU::S_CMP_NLE_F32:
return AMDGPU::V_CMP_NLE_F32_e64;
5514 case AMDGPU::S_CMP_NEQ_F32:
return AMDGPU::V_CMP_NEQ_F32_e64;
5515 case AMDGPU::S_CMP_NLT_F32:
return AMDGPU::V_CMP_NLT_F32_e64;
5516 case AMDGPU::S_CMP_LT_F16:
5518 : AMDGPU::V_CMP_LT_F16_fake16_e64;
5519 case AMDGPU::S_CMP_EQ_F16:
5521 : AMDGPU::V_CMP_EQ_F16_fake16_e64;
5522 case AMDGPU::S_CMP_LE_F16:
5524 : AMDGPU::V_CMP_LE_F16_fake16_e64;
5525 case AMDGPU::S_CMP_GT_F16:
5527 : AMDGPU::V_CMP_GT_F16_fake16_e64;
5528 case AMDGPU::S_CMP_LG_F16:
5530 : AMDGPU::V_CMP_LG_F16_fake16_e64;
5531 case AMDGPU::S_CMP_GE_F16:
5533 : AMDGPU::V_CMP_GE_F16_fake16_e64;
5534 case AMDGPU::S_CMP_O_F16:
5536 : AMDGPU::V_CMP_O_F16_fake16_e64;
5537 case AMDGPU::S_CMP_U_F16:
5539 : AMDGPU::V_CMP_U_F16_fake16_e64;
5540 case AMDGPU::S_CMP_NGE_F16:
5542 : AMDGPU::V_CMP_NGE_F16_fake16_e64;
5543 case AMDGPU::S_CMP_NLG_F16:
5545 : AMDGPU::V_CMP_NLG_F16_fake16_e64;
5546 case AMDGPU::S_CMP_NGT_F16:
5548 : AMDGPU::V_CMP_NGT_F16_fake16_e64;
5549 case AMDGPU::S_CMP_NLE_F16:
5551 : AMDGPU::V_CMP_NLE_F16_fake16_e64;
5552 case AMDGPU::S_CMP_NEQ_F16:
5554 : AMDGPU::V_CMP_NEQ_F16_fake16_e64;
5555 case AMDGPU::S_CMP_NLT_F16:
5557 : AMDGPU::V_CMP_NLT_F16_fake16_e64;
5558 case AMDGPU::V_S_EXP_F32_e64:
return AMDGPU::V_EXP_F32_e64;
5559 case AMDGPU::V_S_EXP_F16_e64:
return AMDGPU::V_EXP_F16_fake16_e64;
5560 case AMDGPU::V_S_LOG_F32_e64:
return AMDGPU::V_LOG_F32_e64;
5561 case AMDGPU::V_S_LOG_F16_e64:
return AMDGPU::V_LOG_F16_fake16_e64;
5562 case AMDGPU::V_S_RCP_F32_e64:
return AMDGPU::V_RCP_F32_e64;
5563 case AMDGPU::V_S_RCP_F16_e64:
return AMDGPU::V_RCP_F16_fake16_e64;
5564 case AMDGPU::V_S_RSQ_F32_e64:
return AMDGPU::V_RSQ_F32_e64;
5565 case AMDGPU::V_S_RSQ_F16_e64:
return AMDGPU::V_RSQ_F16_fake16_e64;
5566 case AMDGPU::V_S_SQRT_F32_e64:
return AMDGPU::V_SQRT_F32_e64;
5567 case AMDGPU::V_S_SQRT_F16_e64:
return AMDGPU::V_SQRT_F16_fake16_e64;
5570 "Unexpected scalar opcode without corresponding vector one!");
5583 bool IsWave32 = ST.isWave32();
5588 unsigned MovOpc = IsWave32 ? AMDGPU::S_MOV_B32 : AMDGPU::S_MOV_B64;
5589 MCRegister Exec = IsWave32 ? AMDGPU::EXEC_LO : AMDGPU::EXEC;
5598 const unsigned OrSaveExec =
5599 IsWave32 ? AMDGPU::S_OR_SAVEEXEC_B32 : AMDGPU::S_OR_SAVEEXEC_B64;
5612 unsigned ExecMov =
isWave32() ? AMDGPU::S_MOV_B32 : AMDGPU::S_MOV_B64;
5614 auto ExecRestoreMI =
5624 bool IsAllocatable) {
5625 if ((IsAllocatable || !ST.hasGFX90AInsts() || !
MRI.reservedRegsFrozen()) &&
5630 case AMDGPU::AV_32RegClassID:
5631 RCID = AMDGPU::VGPR_32RegClassID;
5633 case AMDGPU::AV_64RegClassID:
5634 RCID = AMDGPU::VReg_64RegClassID;
5636 case AMDGPU::AV_96RegClassID:
5637 RCID = AMDGPU::VReg_96RegClassID;
5639 case AMDGPU::AV_128RegClassID:
5640 RCID = AMDGPU::VReg_128RegClassID;
5642 case AMDGPU::AV_160RegClassID:
5643 RCID = AMDGPU::VReg_160RegClassID;
5645 case AMDGPU::AV_512RegClassID:
5646 RCID = AMDGPU::VReg_512RegClassID;
5662 auto RegClass = TID.
operands()[OpNum].RegClass;
5663 bool IsAllocatable =
false;
5673 AMDGPU::OpName::vdst);
5676 : AMDGPU::OpName::vdata);
5677 if (DataIdx != -1) {
5679 TID.
Opcode, AMDGPU::OpName::data1);
5687 unsigned OpNo)
const {
5690 if (
MI.isVariadic() || OpNo >=
Desc.getNumOperands() ||
5691 Desc.operands()[OpNo].RegClass == -1) {
5694 if (Reg.isVirtual())
5695 return MRI.getRegClass(Reg);
5696 return RI.getPhysRegBaseClass(Reg);
5699 unsigned RCID =
Desc.operands()[OpNo].RegClass;
5708 unsigned RCID =
get(
MI.getOpcode()).operands()[OpIdx].RegClass;
5710 unsigned Size = RI.getRegSizeInBits(*RC);
5711 unsigned Opcode = (
Size == 64) ? AMDGPU::V_MOV_B64_PSEUDO
5712 :
Size == 16 ? AMDGPU::V_MOV_B16_t16_e64
5713 : AMDGPU::V_MOV_B32_e32;
5715 Opcode = AMDGPU::COPY;
5717 Opcode = (
Size == 64) ? AMDGPU::S_MOV_B64 : AMDGPU::S_MOV_B32;
5731 return RI.getSubReg(SuperReg.
getReg(), SubIdx);
5737 unsigned NewSubIdx = RI.composeSubRegIndices(SuperReg.
getSubReg(), SubIdx);
5748 if (SubIdx == AMDGPU::sub0)
5750 if (SubIdx == AMDGPU::sub1)
5762void SIInstrInfo::swapOperands(
MachineInstr &Inst)
const {
5778 if (Reg.isPhysical())
5789 DRC = RI.getMatchingSuperRegClass(SuperRC, DRC, MO.
getSubReg());
5816 MO = &
MI.getOperand(OpIdx);
5828 for (
unsigned i = 0, e =
MI.getNumOperands(); i != e; ++i) {
5834 if (!SGPRsUsed.
count(SGPR) &&
5837 if (--ConstantBusLimit <= 0)
5843 if (!LiteralLimit--)
5845 if (--ConstantBusLimit <= 0)
5863 unsigned Opc =
MI.getOpcode();
5871 isDS(Opc) ? AMDGPU::OpName::data0 : AMDGPU::OpName::vdata);
5872 if ((
int)OpIdx == VDstIdx && DataIdx != -1 &&
5873 MI.getOperand(DataIdx).isReg() &&
5874 RI.
isAGPR(
MRI,
MI.getOperand(DataIdx).getReg()) != IsAGPR)
5876 if ((
int)OpIdx == DataIdx) {
5877 if (VDstIdx != -1 &&
5878 RI.
isAGPR(
MRI,
MI.getOperand(VDstIdx).getReg()) != IsAGPR)
5882 AMDGPU::OpName::data1);
5883 if (Data1Idx != -1 &&
MI.getOperand(Data1Idx).isReg() &&
5884 RI.
isAGPR(
MRI,
MI.getOperand(Data1Idx).getReg()) != IsAGPR)
5887 if (Opc == AMDGPU::V_ACCVGPR_WRITE_B32_e64 && !ST.
hasGFX90AInsts() &&
5897 bool Is64BitOp = Is64BitFPOp ||
5910 if (!Is64BitFPOp && (int32_t)Imm < 0)
5928 unsigned Opc =
MI.getOpcode();
5947 if (Opc == AMDGPU::V_WRITELANE_B32) {
5950 Register Reg =
MRI.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass);
5956 Register Reg =
MRI.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass);
5973 if (Opc == AMDGPU::V_FMAC_F32_e32 || Opc == AMDGPU::V_FMAC_F16_e32) {
5975 if (!RI.
isVGPR(
MRI,
MI.getOperand(Src2Idx).getReg()))
5987 if (Opc == AMDGPU::V_READLANE_B32 && Src1.
isReg() &&
5989 Register Reg =
MRI.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass);
6001 if (HasImplicitSGPR || !
MI.isCommutable()) {
6018 if (CommutedOpc == -1) {
6023 MI.setDesc(
get(CommutedOpc));
6027 bool Src0Kill = Src0.
isKill();
6031 else if (Src1.
isReg()) {
6046 unsigned Opc =
MI.getOpcode();
6054 if (Opc == AMDGPU::V_PERMLANE16_B32_e64 ||
6055 Opc == AMDGPU::V_PERMLANEX16_B32_e64) {
6061 Register Reg =
MRI.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass);
6067 Register Reg =
MRI.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass);
6078 Register SGPRReg = findUsedSGPR(
MI, VOP3Idx);
6080 SGPRsUsed.
insert(SGPRReg);
6084 for (
int Idx : VOP3Idx) {
6093 if (LiteralLimit > 0 && ConstantBusLimit > 0) {
6118 if (ConstantBusLimit > 0) {
6130 if ((Opc == AMDGPU::V_FMAC_F32_e64 || Opc == AMDGPU::V_FMAC_F16_e64) &&
6131 !RI.
isVGPR(
MRI,
MI.getOperand(VOP3Idx[2]).getReg()))
6141 SRC = RI.getCommonSubClass(SRC, DstRC);
6144 unsigned SubRegs = RI.getRegSizeInBits(*VRC) / 32;
6148 Register NewSrcReg =
MRI.createVirtualRegister(VRC);
6150 get(TargetOpcode::COPY), NewSrcReg)
6157 get(AMDGPU::V_READFIRSTLANE_B32), DstReg)
6163 for (
unsigned i = 0; i < SubRegs; ++i) {
6164 Register SGPR =
MRI.createVirtualRegister(&AMDGPU::SGPR_32RegClass);
6166 get(AMDGPU::V_READFIRSTLANE_B32), SGPR)
6173 get(AMDGPU::REG_SEQUENCE), DstReg);
6174 for (
unsigned i = 0; i < SubRegs; ++i) {
6189 if (SBase && !RI.
isSGPRClass(
MRI.getRegClass(SBase->getReg()))) {
6191 SBase->setReg(SGPR);
6203 if (OldSAddrIdx < 0)
6220 if (NewVAddrIdx < 0)
6227 if (OldVAddrIdx >= 0) {
6229 VAddrDef =
MRI.getUniqueVRegDef(VAddr.
getReg());
6230 if (!VAddrDef || VAddrDef->
getOpcode() != AMDGPU::V_MOV_B32_e32 ||
6241 if (OldVAddrIdx == NewVAddrIdx) {
6244 MRI.removeRegOperandFromUseList(&NewVAddr);
6245 MRI.moveOperands(&NewVAddr, &SAddr, 1);
6249 MRI.removeRegOperandFromUseList(&NewVAddr);
6250 MRI.addRegOperandToUseList(&NewVAddr);
6252 assert(OldSAddrIdx == NewVAddrIdx);
6254 if (OldVAddrIdx >= 0) {
6256 AMDGPU::OpName::vdst_in);
6260 if (NewVDstIn != -1) {
6267 if (NewVDstIn != -1) {
6309 unsigned OpSubReg =
Op.getSubReg();
6318 Register DstReg =
MRI.createVirtualRegister(DstRC);
6328 if (Def->isMoveImmediate() && DstRC != &AMDGPU::VReg_1RegClass)
6331 bool ImpDef = Def->isImplicitDef();
6332 while (!ImpDef && Def && Def->isCopy()) {
6333 if (Def->getOperand(1).getReg().isPhysical())
6335 Def =
MRI.getUniqueVRegDef(Def->getOperand(1).getReg());
6336 ImpDef = Def && Def->isImplicitDef();
6338 if (!RI.
isSGPRClass(DstRC) && !Copy->readsRegister(AMDGPU::EXEC, &RI) &&
6356 unsigned Exec = ST.isWave32() ? AMDGPU::EXEC_LO : AMDGPU::EXEC;
6357 unsigned SaveExecOpc =
6358 ST.isWave32() ? AMDGPU::S_AND_SAVEEXEC_B32 : AMDGPU::S_AND_SAVEEXEC_B64;
6359 unsigned XorTermOpc =
6360 ST.isWave32() ? AMDGPU::S_XOR_B32_term : AMDGPU::S_XOR_B64_term;
6362 ST.isWave32() ? AMDGPU::S_AND_B32 : AMDGPU::S_AND_B64;
6363 const auto *BoolXExecRC =
TRI->getWaveMaskRegClass();
6369 unsigned RegSize =
TRI->getRegSizeInBits(ScalarOp->getReg(),
MRI);
6370 unsigned NumSubRegs =
RegSize / 32;
6371 Register VScalarOp = ScalarOp->getReg();
6373 if (NumSubRegs == 1) {
6374 Register CurReg =
MRI.createVirtualRegister(&AMDGPU::SGPR_32RegClass);
6376 BuildMI(LoopBB,
I,
DL,
TII.get(AMDGPU::V_READFIRSTLANE_B32), CurReg)
6379 Register NewCondReg =
MRI.createVirtualRegister(BoolXExecRC);
6381 BuildMI(LoopBB,
I,
DL,
TII.get(AMDGPU::V_CMP_EQ_U32_e64), NewCondReg)
6387 CondReg = NewCondReg;
6389 Register AndReg =
MRI.createVirtualRegister(BoolXExecRC);
6397 ScalarOp->setReg(CurReg);
6398 ScalarOp->setIsKill();
6402 assert(NumSubRegs % 2 == 0 && NumSubRegs <= 32 &&
6403 "Unhandled register size");
6405 for (
unsigned Idx = 0;
Idx < NumSubRegs;
Idx += 2) {
6406 Register CurRegLo =
MRI.createVirtualRegister(&AMDGPU::SGPR_32RegClass);
6407 Register CurRegHi =
MRI.createVirtualRegister(&AMDGPU::SGPR_32RegClass);
6410 BuildMI(LoopBB,
I,
DL,
TII.get(AMDGPU::V_READFIRSTLANE_B32), CurRegLo)
6411 .
addReg(VScalarOp, VScalarOpUndef,
TRI->getSubRegFromChannel(
Idx));
6414 BuildMI(LoopBB,
I,
DL,
TII.get(AMDGPU::V_READFIRSTLANE_B32), CurRegHi)
6415 .
addReg(VScalarOp, VScalarOpUndef,
6416 TRI->getSubRegFromChannel(
Idx + 1));
6422 Register CurReg =
MRI.createVirtualRegister(&AMDGPU::SGPR_64RegClass);
6423 BuildMI(LoopBB,
I,
DL,
TII.get(AMDGPU::REG_SEQUENCE), CurReg)
6429 Register NewCondReg =
MRI.createVirtualRegister(BoolXExecRC);
6430 auto Cmp =
BuildMI(LoopBB,
I,
DL,
TII.get(AMDGPU::V_CMP_EQ_U64_e64),
6433 if (NumSubRegs <= 2)
6434 Cmp.addReg(VScalarOp);
6436 Cmp.addReg(VScalarOp, VScalarOpUndef,
6437 TRI->getSubRegFromChannel(
Idx, 2));
6441 CondReg = NewCondReg;
6443 Register AndReg =
MRI.createVirtualRegister(BoolXExecRC);
6451 const auto *SScalarOpRC =
6452 TRI->getEquivalentSGPRClass(
MRI.getRegClass(VScalarOp));
6453 Register SScalarOp =
MRI.createVirtualRegister(SScalarOpRC);
6457 BuildMI(LoopBB,
I,
DL,
TII.get(AMDGPU::REG_SEQUENCE), SScalarOp);
6458 unsigned Channel = 0;
6459 for (
Register Piece : ReadlanePieces) {
6460 Merge.addReg(Piece).addImm(
TRI->getSubRegFromChannel(Channel++));
6464 ScalarOp->setReg(SScalarOp);
6465 ScalarOp->setIsKill();
6469 Register SaveExec =
MRI.createVirtualRegister(BoolXExecRC);
6470 MRI.setSimpleHint(SaveExec, CondReg);
6501 if (!Begin.isValid())
6503 if (!
End.isValid()) {
6508 unsigned Exec = ST.isWave32() ? AMDGPU::EXEC_LO : AMDGPU::EXEC;
6509 unsigned MovExecOpc = ST.isWave32() ? AMDGPU::S_MOV_B32 : AMDGPU::S_MOV_B64;
6510 const auto *BoolXExecRC =
TRI->getWaveMaskRegClass();
6519 std::numeric_limits<unsigned>::max()) !=
6522 SaveSCCReg =
MRI.createVirtualRegister(&AMDGPU::SReg_32RegClass);
6528 Register SaveExec =
MRI.createVirtualRegister(BoolXExecRC);
6537 for (
auto I = Begin;
I != AfterMI;
I++) {
6538 for (
auto &MO :
I->all_uses())
6539 MRI.clearKillFlags(MO.getReg());
6574 for (
auto &Succ : RemainderBB->
successors()) {
6597static std::tuple<unsigned, unsigned>
6605 TII.buildExtractSubReg(
MI,
MRI, Rsrc, &AMDGPU::VReg_128RegClass,
6606 AMDGPU::sub0_sub1, &AMDGPU::VReg_64RegClass);
6609 Register Zero64 =
MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
6610 Register SRsrcFormatLo =
MRI.createVirtualRegister(&AMDGPU::SGPR_32RegClass);
6611 Register SRsrcFormatHi =
MRI.createVirtualRegister(&AMDGPU::SGPR_32RegClass);
6612 Register NewSRsrc =
MRI.createVirtualRegister(&AMDGPU::SGPR_128RegClass);
6613 uint64_t RsrcDataFormat =
TII.getDefaultRsrcDataFormat();
6630 .
addImm(AMDGPU::sub0_sub1)
6636 return std::tuple(RsrcPtr, NewSRsrc);
6673 if (
MI.getOpcode() == AMDGPU::PHI) {
6675 for (
unsigned i = 1, e =
MI.getNumOperands(); i != e; i += 2) {
6676 if (!
MI.getOperand(i).isReg() || !
MI.getOperand(i).getReg().isVirtual())
6679 MRI.getRegClass(
MI.getOperand(i).getReg());
6694 VRC = &AMDGPU::VReg_1RegClass;
6710 for (
unsigned I = 1, E =
MI.getNumOperands();
I != E;
I += 2) {
6712 if (!
Op.isReg() || !
Op.getReg().isVirtual())
6728 if (
MI.getOpcode() == AMDGPU::REG_SEQUENCE) {
6735 for (
unsigned I = 1, E =
MI.getNumOperands();
I != E;
I += 2) {
6737 if (!
Op.isReg() || !
Op.getReg().isVirtual())
6755 if (
MI.getOpcode() == AMDGPU::INSERT_SUBREG) {
6760 if (DstRC != Src0RC) {
6769 if (
MI.getOpcode() == AMDGPU::SI_INIT_M0) {
6777 if (
MI.getOpcode() == AMDGPU::S_BITREPLICATE_B64_B32 ||
6778 MI.getOpcode() == AMDGPU::S_QUADMASK_B32 ||
6779 MI.getOpcode() == AMDGPU::S_QUADMASK_B64 ||
6780 MI.getOpcode() == AMDGPU::S_WQM_B32 ||
6781 MI.getOpcode() == AMDGPU::S_WQM_B64 ||
6782 MI.getOpcode() == AMDGPU::S_INVERSE_BALLOT_U32 ||
6783 MI.getOpcode() == AMDGPU::S_INVERSE_BALLOT_U64) {
6798 : AMDGPU::OpName::srsrc;
6803 int SampOpName =
isMIMG(
MI) ? AMDGPU::OpName::ssamp : AMDGPU::OpName::samp;
6812 if (
MI.getOpcode() == AMDGPU::SI_CALL_ISEL) {
6818 unsigned FrameSetupOpcode = getCallFrameSetupOpcode();
6819 unsigned FrameDestroyOpcode = getCallFrameDestroyOpcode();
6824 while (Start->getOpcode() != FrameSetupOpcode)
6827 while (
End->getOpcode() != FrameDestroyOpcode)
6831 while (
End !=
MBB.
end() &&
End->isCopy() &&
End->getOperand(1).isReg() &&
6832 MI.definesRegister(
End->getOperand(1).getReg(),
nullptr))
6840 if (
MI.getOpcode() == AMDGPU::S_SLEEP_VAR) {
6842 Register Reg =
MRI.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass);
6853 bool isSoffsetLegal =
true;
6856 if (SoffsetIdx != -1) {
6860 isSoffsetLegal =
false;
6864 bool isRsrcLegal =
true;
6867 if (RsrcIdx != -1) {
6870 isRsrcLegal =
false;
6875 if (isRsrcLegal && isSoffsetLegal)
6899 Register NewVAddrLo =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
6900 Register NewVAddrHi =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
6901 Register NewVAddr =
MRI.createVirtualRegister(&AMDGPU::VReg_64RegClass);
6904 Register CondReg0 =
MRI.createVirtualRegister(BoolXExecRC);
6905 Register CondReg1 =
MRI.createVirtualRegister(BoolXExecRC);
6907 unsigned RsrcPtr, NewSRsrc;
6914 .
addReg(RsrcPtr, 0, AMDGPU::sub0)
6921 .
addReg(RsrcPtr, 0, AMDGPU::sub1)
6939 "FIXME: Need to emit flat atomics here");
6941 unsigned RsrcPtr, NewSRsrc;
6944 Register NewVAddr =
MRI.createVirtualRegister(&AMDGPU::VReg_64RegClass);
6967 MIB.
addImm(CPol->getImm());
6972 MIB.
addImm(TFE->getImm());
6992 MI.removeFromParent();
6997 .
addReg(RsrcPtr, 0, AMDGPU::sub0)
6999 .
addReg(RsrcPtr, 0, AMDGPU::sub1)
7003 if (!isSoffsetLegal) {
7015 if (!isSoffsetLegal) {
7024 InstrList.insert(
MI);
7028 if (RsrcIdx != -1) {
7029 DeferredList.insert(
MI);
7034 return DeferredList.contains(
MI);
7040 while (!Worklist.
empty()) {
7054 "Deferred MachineInstr are not supposed to re-populate worklist");
7072 case AMDGPU::S_ADD_U64_PSEUDO:
7073 NewOpcode = AMDGPU::V_ADD_U64_PSEUDO;
7075 case AMDGPU::S_SUB_U64_PSEUDO:
7076 NewOpcode = AMDGPU::V_SUB_U64_PSEUDO;
7078 case AMDGPU::S_ADD_I32:
7079 case AMDGPU::S_SUB_I32: {
7083 std::tie(Changed, CreatedBBTmp) = moveScalarAddSub(Worklist, Inst, MDT);
7091 case AMDGPU::S_MUL_U64:
7093 splitScalarSMulU64(Worklist, Inst, MDT);
7097 case AMDGPU::S_MUL_U64_U32_PSEUDO:
7098 case AMDGPU::S_MUL_I64_I32_PSEUDO:
7101 splitScalarSMulPseudo(Worklist, Inst, MDT);
7105 case AMDGPU::S_AND_B64:
7106 splitScalar64BitBinaryOp(Worklist, Inst, AMDGPU::S_AND_B32, MDT);
7110 case AMDGPU::S_OR_B64:
7111 splitScalar64BitBinaryOp(Worklist, Inst, AMDGPU::S_OR_B32, MDT);
7115 case AMDGPU::S_XOR_B64:
7116 splitScalar64BitBinaryOp(Worklist, Inst, AMDGPU::S_XOR_B32, MDT);
7120 case AMDGPU::S_NAND_B64:
7121 splitScalar64BitBinaryOp(Worklist, Inst, AMDGPU::S_NAND_B32, MDT);
7125 case AMDGPU::S_NOR_B64:
7126 splitScalar64BitBinaryOp(Worklist, Inst, AMDGPU::S_NOR_B32, MDT);
7130 case AMDGPU::S_XNOR_B64:
7132 splitScalar64BitBinaryOp(Worklist, Inst, AMDGPU::S_XNOR_B32, MDT);
7134 splitScalar64BitXnor(Worklist, Inst, MDT);
7138 case AMDGPU::S_ANDN2_B64:
7139 splitScalar64BitBinaryOp(Worklist, Inst, AMDGPU::S_ANDN2_B32, MDT);
7143 case AMDGPU::S_ORN2_B64:
7144 splitScalar64BitBinaryOp(Worklist, Inst, AMDGPU::S_ORN2_B32, MDT);
7148 case AMDGPU::S_BREV_B64:
7149 splitScalar64BitUnaryOp(Worklist, Inst, AMDGPU::S_BREV_B32,
true);
7153 case AMDGPU::S_NOT_B64:
7154 splitScalar64BitUnaryOp(Worklist, Inst, AMDGPU::S_NOT_B32);
7158 case AMDGPU::S_BCNT1_I32_B64:
7159 splitScalar64BitBCNT(Worklist, Inst);
7163 case AMDGPU::S_BFE_I64:
7164 splitScalar64BitBFE(Worklist, Inst);
7168 case AMDGPU::S_FLBIT_I32_B64:
7169 splitScalar64BitCountOp(Worklist, Inst, AMDGPU::V_FFBH_U32_e32);
7172 case AMDGPU::S_FF1_I32_B64:
7173 splitScalar64BitCountOp(Worklist, Inst, AMDGPU::V_FFBL_B32_e32);
7177 case AMDGPU::S_LSHL_B32:
7179 NewOpcode = AMDGPU::V_LSHLREV_B32_e64;
7183 case AMDGPU::S_ASHR_I32:
7185 NewOpcode = AMDGPU::V_ASHRREV_I32_e64;
7189 case AMDGPU::S_LSHR_B32:
7191 NewOpcode = AMDGPU::V_LSHRREV_B32_e64;
7195 case AMDGPU::S_LSHL_B64:
7198 ? AMDGPU::V_LSHLREV_B64_pseudo_e64
7199 : AMDGPU::V_LSHLREV_B64_e64;
7203 case AMDGPU::S_ASHR_I64:
7205 NewOpcode = AMDGPU::V_ASHRREV_I64_e64;
7209 case AMDGPU::S_LSHR_B64:
7211 NewOpcode = AMDGPU::V_LSHRREV_B64_e64;
7216 case AMDGPU::S_ABS_I32:
7217 lowerScalarAbs(Worklist, Inst);
7221 case AMDGPU::S_CBRANCH_SCC0:
7222 case AMDGPU::S_CBRANCH_SCC1: {
7225 bool IsSCC = CondReg == AMDGPU::SCC;
7228 unsigned Opc = ST.
isWave32() ? AMDGPU::S_AND_B32 : AMDGPU::S_AND_B64;
7231 .
addReg(IsSCC ? VCC : CondReg);
7235 case AMDGPU::S_BFE_U64:
7236 case AMDGPU::S_BFM_B64:
7239 case AMDGPU::S_PACK_LL_B32_B16:
7240 case AMDGPU::S_PACK_LH_B32_B16:
7241 case AMDGPU::S_PACK_HL_B32_B16:
7242 case AMDGPU::S_PACK_HH_B32_B16:
7243 movePackToVALU(Worklist,
MRI, Inst);
7247 case AMDGPU::S_XNOR_B32:
7248 lowerScalarXnor(Worklist, Inst);
7252 case AMDGPU::S_NAND_B32:
7253 splitScalarNotBinop(Worklist, Inst, AMDGPU::S_AND_B32);
7257 case AMDGPU::S_NOR_B32:
7258 splitScalarNotBinop(Worklist, Inst, AMDGPU::S_OR_B32);
7262 case AMDGPU::S_ANDN2_B32:
7263 splitScalarBinOpN2(Worklist, Inst, AMDGPU::S_AND_B32);
7267 case AMDGPU::S_ORN2_B32:
7268 splitScalarBinOpN2(Worklist, Inst, AMDGPU::S_OR_B32);
7276 case AMDGPU::S_ADD_CO_PSEUDO:
7277 case AMDGPU::S_SUB_CO_PSEUDO: {
7278 unsigned Opc = (Inst.
getOpcode() == AMDGPU::S_ADD_CO_PSEUDO)
7279 ? AMDGPU::V_ADDC_U32_e64
7280 : AMDGPU::V_SUBB_U32_e64;
7284 if (!
MRI.constrainRegClass(CarryInReg, CarryRC)) {
7285 Register NewCarryReg =
MRI.createVirtualRegister(CarryRC);
7303 addUsersToMoveToVALUWorklist(DestReg,
MRI, Worklist);
7307 case AMDGPU::S_UADDO_PSEUDO:
7308 case AMDGPU::S_USUBO_PSEUDO: {
7315 unsigned Opc = (Inst.
getOpcode() == AMDGPU::S_UADDO_PSEUDO)
7316 ? AMDGPU::V_ADD_CO_U32_e64
7317 : AMDGPU::V_SUB_CO_U32_e64;
7320 Register DestReg =
MRI.createVirtualRegister(NewRC);
7328 MRI.replaceRegWith(Dest0.
getReg(), DestReg);
7335 case AMDGPU::S_CSELECT_B32:
7336 case AMDGPU::S_CSELECT_B64:
7337 lowerSelect(Worklist, Inst, MDT);
7340 case AMDGPU::S_CMP_EQ_I32:
7341 case AMDGPU::S_CMP_LG_I32:
7342 case AMDGPU::S_CMP_GT_I32:
7343 case AMDGPU::S_CMP_GE_I32:
7344 case AMDGPU::S_CMP_LT_I32:
7345 case AMDGPU::S_CMP_LE_I32:
7346 case AMDGPU::S_CMP_EQ_U32:
7347 case AMDGPU::S_CMP_LG_U32:
7348 case AMDGPU::S_CMP_GT_U32:
7349 case AMDGPU::S_CMP_GE_U32:
7350 case AMDGPU::S_CMP_LT_U32:
7351 case AMDGPU::S_CMP_LE_U32:
7352 case AMDGPU::S_CMP_EQ_U64:
7353 case AMDGPU::S_CMP_LG_U64:
7354 case AMDGPU::S_CMP_LT_F32:
7355 case AMDGPU::S_CMP_EQ_F32:
7356 case AMDGPU::S_CMP_LE_F32:
7357 case AMDGPU::S_CMP_GT_F32:
7358 case AMDGPU::S_CMP_LG_F32:
7359 case AMDGPU::S_CMP_GE_F32:
7360 case AMDGPU::S_CMP_O_F32:
7361 case AMDGPU::S_CMP_U_F32:
7362 case AMDGPU::S_CMP_NGE_F32:
7363 case AMDGPU::S_CMP_NLG_F32:
7364 case AMDGPU::S_CMP_NGT_F32:
7365 case AMDGPU::S_CMP_NLE_F32:
7366 case AMDGPU::S_CMP_NEQ_F32:
7367 case AMDGPU::S_CMP_NLT_F32: {
7386 addSCCDefUsersToVALUWorklist(SCCOp, Inst, Worklist, CondReg);
7390 case AMDGPU::S_CMP_LT_F16:
7391 case AMDGPU::S_CMP_EQ_F16:
7392 case AMDGPU::S_CMP_LE_F16:
7393 case AMDGPU::S_CMP_GT_F16:
7394 case AMDGPU::S_CMP_LG_F16:
7395 case AMDGPU::S_CMP_GE_F16:
7396 case AMDGPU::S_CMP_O_F16:
7397 case AMDGPU::S_CMP_U_F16:
7398 case AMDGPU::S_CMP_NGE_F16:
7399 case AMDGPU::S_CMP_NLG_F16:
7400 case AMDGPU::S_CMP_NGT_F16:
7401 case AMDGPU::S_CMP_NLE_F16:
7402 case AMDGPU::S_CMP_NEQ_F16:
7403 case AMDGPU::S_CMP_NLT_F16: {
7425 addSCCDefUsersToVALUWorklist(SCCOp, Inst, Worklist, CondReg);
7429 case AMDGPU::S_CVT_HI_F32_F16: {
7431 Register TmpReg =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
7432 Register NewDst =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
7438 .
addReg(TmpReg, 0, AMDGPU::hi16)
7454 addUsersToMoveToVALUWorklist(NewDst,
MRI, Worklist);
7458 case AMDGPU::S_MINIMUM_F32:
7459 case AMDGPU::S_MAXIMUM_F32:
7460 case AMDGPU::S_MINIMUM_F16:
7461 case AMDGPU::S_MAXIMUM_F16: {
7463 Register NewDst =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
7474 addUsersToMoveToVALUWorklist(NewDst,
MRI, Worklist);
7480 if (NewOpcode == AMDGPU::INSTRUCTION_LIST_END) {
7488 if (NewOpcode == Opcode) {
7512 addUsersToMoveToVALUWorklist(DstReg,
MRI, Worklist);
7524 Register NewDstReg =
MRI.createVirtualRegister(NewDstRC);
7525 MRI.replaceRegWith(DstReg, NewDstReg);
7527 addUsersToMoveToVALUWorklist(NewDstReg,
MRI, Worklist);
7538 AMDGPU::OpName::src0_modifiers) >= 0)
7543 Src.isReg() && RI.
isVGPR(
MRI, Src.getReg()))
7544 NewInstr.addReg(Src.getReg(), 0, AMDGPU::lo16);
7546 NewInstr->addOperand(Src);
7549 if (Opcode == AMDGPU::S_SEXT_I32_I8 || Opcode == AMDGPU::S_SEXT_I32_I16) {
7552 unsigned Size = (Opcode == AMDGPU::S_SEXT_I32_I8) ? 8 : 16;
7554 NewInstr.addImm(
Size);
7555 }
else if (Opcode == AMDGPU::S_BCNT1_I32_B32) {
7559 }
else if (Opcode == AMDGPU::S_BFE_I32 || Opcode == AMDGPU::S_BFE_U32) {
7564 "Scalar BFE is only implemented for constant width and offset");
7573 AMDGPU::OpName::src1_modifiers) >= 0)
7578 AMDGPU::OpName::src2_modifiers) >= 0)
7592 NewInstr->addOperand(
Op);
7599 if (
Op.getReg() == AMDGPU::SCC) {
7601 if (
Op.isDef() && !
Op.isDead())
7602 addSCCDefUsersToVALUWorklist(
Op, Inst, Worklist);
7604 addSCCDefsToVALUWorklist(NewInstr, Worklist);
7609 if (NewInstr->getOperand(0).isReg() && NewInstr->getOperand(0).isDef()) {
7610 Register DstReg = NewInstr->getOperand(0).getReg();
7615 NewDstReg =
MRI.createVirtualRegister(NewDstRC);
7616 MRI.replaceRegWith(DstReg, NewDstReg);
7622 addUsersToMoveToVALUWorklist(NewDstReg,
MRI, Worklist);
7626std::pair<bool, MachineBasicBlock *>
7638 Register ResultReg =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
7641 assert(Opc == AMDGPU::S_ADD_I32 || Opc == AMDGPU::S_SUB_I32);
7643 unsigned NewOpc = Opc == AMDGPU::S_ADD_I32 ?
7644 AMDGPU::V_ADD_U32_e64 : AMDGPU::V_SUB_U32_e64;
7652 MRI.replaceRegWith(OldDstReg, ResultReg);
7655 addUsersToMoveToVALUWorklist(ResultReg,
MRI, Worklist);
7656 return std::pair(
true, NewBB);
7659 return std::pair(
false,
nullptr);
7676 bool IsSCC = (CondReg == AMDGPU::SCC);
7684 MRI.replaceRegWith(Dest.
getReg(), CondReg);
7691 NewCondReg =
MRI.createVirtualRegister(TC);
7695 bool CopyFound =
false;
7699 if (CandI.findRegisterDefOperandIdx(AMDGPU::SCC, &RI,
false,
false) !=
7701 if (CandI.isCopy() && CandI.getOperand(0).getReg() == AMDGPU::SCC) {
7703 .
addReg(CandI.getOperand(1).getReg());
7715 ST.
isWave64() ? AMDGPU::S_CSELECT_B64 : AMDGPU::S_CSELECT_B32;
7725 if (Inst.
getOpcode() == AMDGPU::S_CSELECT_B32) {
7726 NewInst =
BuildMI(
MBB, MII,
DL,
get(AMDGPU::V_CNDMASK_B32_e64), NewDestReg)
7739 MRI.replaceRegWith(Dest.
getReg(), NewDestReg);
7741 addUsersToMoveToVALUWorklist(NewDestReg,
MRI, Worklist);
7753 Register TmpReg =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
7754 Register ResultReg =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
7757 AMDGPU::V_SUB_U32_e32 : AMDGPU::V_SUB_CO_U32_e32;
7767 MRI.replaceRegWith(Dest.
getReg(), ResultReg);
7768 addUsersToMoveToVALUWorklist(ResultReg,
MRI, Worklist);
7783 Register NewDest =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
7791 MRI.replaceRegWith(Dest.
getReg(), NewDest);
7792 addUsersToMoveToVALUWorklist(NewDest,
MRI, Worklist);
7798 bool Src0IsSGPR = Src0.
isReg() &&
7800 bool Src1IsSGPR = Src1.
isReg() &&
7803 Register Temp =
MRI.createVirtualRegister(&AMDGPU::SReg_32RegClass);
7804 Register NewDest =
MRI.createVirtualRegister(&AMDGPU::SReg_32RegClass);
7814 }
else if (Src1IsSGPR) {
7828 MRI.replaceRegWith(Dest.
getReg(), NewDest);
7832 addUsersToMoveToVALUWorklist(NewDest,
MRI, Worklist);
7838 unsigned Opcode)
const {
7848 Register NewDest =
MRI.createVirtualRegister(&AMDGPU::SReg_32RegClass);
7849 Register Interm =
MRI.createVirtualRegister(&AMDGPU::SReg_32RegClass);
7861 MRI.replaceRegWith(Dest.
getReg(), NewDest);
7862 addUsersToMoveToVALUWorklist(NewDest,
MRI, Worklist);
7867 unsigned Opcode)
const {
7877 Register NewDest =
MRI.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass);
7878 Register Interm =
MRI.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass);
7890 MRI.replaceRegWith(Dest.
getReg(), NewDest);
7891 addUsersToMoveToVALUWorklist(NewDest,
MRI, Worklist);
7909 &AMDGPU::SGPR_32RegClass;
7912 RI.getSubRegisterClass(Src0RC, AMDGPU::sub0);
7915 AMDGPU::sub0, Src0SubRC);
7920 RI.getSubRegisterClass(NewDestRC, AMDGPU::sub0);
7922 Register DestSub0 =
MRI.createVirtualRegister(NewDestSubRC);
7926 AMDGPU::sub1, Src0SubRC);
7928 Register DestSub1 =
MRI.createVirtualRegister(NewDestSubRC);
7934 Register FullDestReg =
MRI.createVirtualRegister(NewDestRC);
7941 MRI.replaceRegWith(Dest.
getReg(), FullDestReg);
7943 Worklist.
insert(&LoHalf);
7944 Worklist.
insert(&HiHalf);
7950 addUsersToMoveToVALUWorklist(FullDestReg,
MRI, Worklist);
7961 Register FullDestReg =
MRI.createVirtualRegister(&AMDGPU::VReg_64RegClass);
7962 Register DestSub0 =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
7963 Register DestSub1 =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
7974 RI.getSubRegisterClass(Src0RC, AMDGPU::sub0);
7978 RI.getSubRegisterClass(Src1RC, AMDGPU::sub0);
8008 Register Op1L_Op0H_Reg =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8014 Register Op1H_Op0L_Reg =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8020 Register CarryReg =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8031 Register AddReg =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8047 MRI.replaceRegWith(Dest.
getReg(), FullDestReg);
8059 addUsersToMoveToVALUWorklist(FullDestReg,
MRI, Worklist);
8070 Register FullDestReg =
MRI.createVirtualRegister(&AMDGPU::VReg_64RegClass);
8071 Register DestSub0 =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8072 Register DestSub1 =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8083 RI.getSubRegisterClass(Src0RC, AMDGPU::sub0);
8087 RI.getSubRegisterClass(Src1RC, AMDGPU::sub0);
8099 unsigned NewOpc = Opc == AMDGPU::S_MUL_U64_U32_PSEUDO
8100 ? AMDGPU::V_MUL_HI_U32_e64
8101 : AMDGPU::V_MUL_HI_I32_e64;
8116 MRI.replaceRegWith(Dest.
getReg(), FullDestReg);
8124 addUsersToMoveToVALUWorklist(FullDestReg,
MRI, Worklist);
8143 &AMDGPU::SGPR_32RegClass;
8146 RI.getSubRegisterClass(Src0RC, AMDGPU::sub0);
8149 &AMDGPU::SGPR_32RegClass;
8152 RI.getSubRegisterClass(Src1RC, AMDGPU::sub0);
8155 AMDGPU::sub0, Src0SubRC);
8157 AMDGPU::sub0, Src1SubRC);
8159 AMDGPU::sub1, Src0SubRC);
8161 AMDGPU::sub1, Src1SubRC);
8166 RI.getSubRegisterClass(NewDestRC, AMDGPU::sub0);
8168 Register DestSub0 =
MRI.createVirtualRegister(NewDestSubRC);
8173 Register DestSub1 =
MRI.createVirtualRegister(NewDestSubRC);
8178 Register FullDestReg =
MRI.createVirtualRegister(NewDestRC);
8185 MRI.replaceRegWith(Dest.
getReg(), FullDestReg);
8187 Worklist.
insert(&LoHalf);
8188 Worklist.
insert(&HiHalf);
8191 addUsersToMoveToVALUWorklist(FullDestReg,
MRI, Worklist);
8209 Register Interm =
MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
8225 Register NewDest =
MRI.createVirtualRegister(DestRC);
8231 MRI.replaceRegWith(Dest.
getReg(), NewDest);
8249 MRI.getRegClass(Src.getReg()) :
8250 &AMDGPU::SGPR_32RegClass;
8252 Register MidReg =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8253 Register ResultReg =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8256 RI.getSubRegisterClass(SrcRC, AMDGPU::sub0);
8259 AMDGPU::sub0, SrcSubRC);
8261 AMDGPU::sub1, SrcSubRC);
8267 MRI.replaceRegWith(Dest.
getReg(), ResultReg);
8271 addUsersToMoveToVALUWorklist(ResultReg,
MRI, Worklist);
8290 Offset == 0 &&
"Not implemented");
8293 Register MidRegLo =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8294 Register MidRegHi =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8295 Register ResultReg =
MRI.createVirtualRegister(&AMDGPU::VReg_64RegClass);
8312 MRI.replaceRegWith(Dest.
getReg(), ResultReg);
8313 addUsersToMoveToVALUWorklist(ResultReg,
MRI, Worklist);
8318 Register TmpReg =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8319 Register ResultReg =
MRI.createVirtualRegister(&AMDGPU::VReg_64RegClass);
8323 .
addReg(Src.getReg(), 0, AMDGPU::sub0);
8326 .
addReg(Src.getReg(), 0, AMDGPU::sub0)
8331 MRI.replaceRegWith(Dest.
getReg(), ResultReg);
8332 addUsersToMoveToVALUWorklist(ResultReg,
MRI, Worklist);
8353 bool IsCtlz = Opcode == AMDGPU::V_FFBH_U32_e32;
8354 unsigned OpcodeAdd =
8355 ST.
hasAddNoCarry() ? AMDGPU::V_ADD_U32_e64 : AMDGPU::V_ADD_CO_U32_e32;
8358 Src.isReg() ?
MRI.getRegClass(Src.getReg()) : &AMDGPU::SGPR_32RegClass;
8360 RI.getSubRegisterClass(SrcRC, AMDGPU::sub0);
8367 Register MidReg1 =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8368 Register MidReg2 =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8369 Register MidReg3 =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8370 Register MidReg4 =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8377 .
addReg(IsCtlz ? MidReg1 : MidReg2)
8383 .
addReg(IsCtlz ? MidReg2 : MidReg1);
8385 MRI.replaceRegWith(Dest.
getReg(), MidReg4);
8387 addUsersToMoveToVALUWorklist(MidReg4,
MRI, Worklist);
8390void SIInstrInfo::addUsersToMoveToVALUWorklist(
8394 E =
MRI.use_end();
I != E;) {
8399 switch (
UseMI.getOpcode()) {
8402 case AMDGPU::SOFT_WQM:
8403 case AMDGPU::STRICT_WWM:
8404 case AMDGPU::STRICT_WQM:
8405 case AMDGPU::REG_SEQUENCE:
8407 case AMDGPU::INSERT_SUBREG:
8410 OpNo =
I.getOperandNo();
8419 }
while (
I != E &&
I->getParent() == &
UseMI);
8429 Register ResultReg =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8436 case AMDGPU::S_PACK_LL_B32_B16: {
8437 Register ImmReg =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8438 Register TmpReg =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8455 case AMDGPU::S_PACK_LH_B32_B16: {
8456 Register ImmReg =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8465 case AMDGPU::S_PACK_HL_B32_B16: {
8466 Register TmpReg =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8476 case AMDGPU::S_PACK_HH_B32_B16: {
8477 Register ImmReg =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8478 Register TmpReg =
MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
8495 MRI.replaceRegWith(Dest.
getReg(), ResultReg);
8496 addUsersToMoveToVALUWorklist(ResultReg,
MRI, Worklist);
8505 assert(
Op.isReg() &&
Op.getReg() == AMDGPU::SCC &&
Op.isDef() &&
8506 !
Op.isDead() &&
Op.getParent() == &SCCDefInst);
8514 int SCCIdx =
MI.findRegisterUseOperandIdx(AMDGPU::SCC, &RI,
false);
8518 Register DestReg =
MI.getOperand(0).getReg();
8520 MRI.replaceRegWith(DestReg, NewCond);
8525 MI.getOperand(SCCIdx).setReg(NewCond);
8531 if (
MI.findRegisterDefOperandIdx(AMDGPU::SCC, &RI,
false,
false) != -1)
8534 for (
auto &Copy : CopyToDelete)
8535 Copy->eraseFromParent();
8543void SIInstrInfo::addSCCDefsToVALUWorklist(
MachineInstr *SCCUseInst,
8552 if (
MI.modifiesRegister(AMDGPU::VCC, &RI))
8554 if (
MI.definesRegister(AMDGPU::SCC, &RI)) {
8571 case AMDGPU::REG_SEQUENCE:
8572 case AMDGPU::INSERT_SUBREG:
8574 case AMDGPU::SOFT_WQM:
8575 case AMDGPU::STRICT_WWM:
8576 case AMDGPU::STRICT_WQM: {
8584 case AMDGPU::REG_SEQUENCE:
8585 case AMDGPU::INSERT_SUBREG:
8595 if (RI.
isVGPRClass(NewDstRC) || NewDstRC == &AMDGPU::VReg_1RegClass)
8612 int OpIndices[3])
const {
8631 for (
unsigned i = 0; i < 3; ++i) {
8632 int Idx = OpIndices[i];
8669 if (UsedSGPRs[0] == UsedSGPRs[1] || UsedSGPRs[0] == UsedSGPRs[2])
8670 SGPRReg = UsedSGPRs[0];
8673 if (!SGPRReg && UsedSGPRs[1]) {
8674 if (UsedSGPRs[1] == UsedSGPRs[2])
8675 SGPRReg = UsedSGPRs[1];
8682 unsigned OperandName)
const {
8687 return &
MI.getOperand(
Idx);
8704 RsrcDataFormat |= (1ULL << 56);
8709 RsrcDataFormat |= (2ULL << 59);
8712 return RsrcDataFormat;
8734 Rsrc23 &= ~AMDGPU::RSRC_DATA_FORMAT;
8740 unsigned Opc =
MI.getOpcode();
8746 return get(Opc).mayLoad() &&
8751 int &FrameIndex)
const {
8759 FrameIndex =
Addr->getIndex();
8764 int &FrameIndex)
const {
8767 FrameIndex =
Addr->getIndex();
8772 int &FrameIndex)
const {
8786 int &FrameIndex)
const {
8803 while (++
I != E &&
I->isInsideBundle()) {
8804 assert(!
I->isBundle() &&
"No nested bundle!");
8812 unsigned Opc =
MI.getOpcode();
8814 unsigned DescSize =
Desc.getSize();
8819 unsigned Size = DescSize;
8834 bool HasLiteral =
false;
8835 for (
int I = 0, E =
MI.getNumExplicitOperands();
I != E; ++
I) {
8843 return HasLiteral ? DescSize + 4 : DescSize;
8853 return 8 + 4 * ((RSrcIdx - VAddr0Idx + 2) / 4);
8857 case TargetOpcode::BUNDLE:
8859 case TargetOpcode::INLINEASM:
8860 case TargetOpcode::INLINEASM_BR: {
8862 const char *AsmStr =
MI.getOperand(0).getSymbolName();
8866 if (
MI.isMetaInstruction())
8876 if (
MI.memoperands_empty())
8888 static const std::pair<int, const char *> TargetIndices[] = {
8926std::pair<unsigned, unsigned>
8933 static const std::pair<unsigned, const char *> TargetFlags[] = {
8948 static const std::pair<MachineMemOperand::Flags, const char *> TargetFlags[] =
8962 return AMDGPU::WWM_COPY;
8964 return AMDGPU::COPY;
8976 bool IsNullOrVectorRegister =
true;
8984 return IsNullOrVectorRegister &&
8986 (Opcode == AMDGPU::IMPLICIT_DEF &&
8988 (!
MI.isTerminator() && Opcode != AMDGPU::COPY &&
8989 MI.modifiesRegister(AMDGPU::EXEC, &RI)));
9002 MRI.setRegAllocationHint(UnusedCarry, 0, RI.
getVCC());
9033 case AMDGPU::SI_KILL_F32_COND_IMM_TERMINATOR:
9034 case AMDGPU::SI_KILL_I1_TERMINATOR:
9043 case AMDGPU::SI_KILL_F32_COND_IMM_PSEUDO:
9044 return get(AMDGPU::SI_KILL_F32_COND_IMM_TERMINATOR);
9045 case AMDGPU::SI_KILL_I1_PSEUDO:
9046 return get(AMDGPU::SI_KILL_I1_TERMINATOR);
9058 const unsigned OffsetBits =
9060 return (1 << OffsetBits) - 1;
9067 if (
MI.isInlineAsm())
9070 for (
auto &
Op :
MI.implicit_operands()) {
9071 if (
Op.isReg() &&
Op.getReg() == AMDGPU::VCC)
9072 Op.setReg(AMDGPU::VCC_LO);
9085 const auto RCID =
MI.getDesc().operands()[
Idx].RegClass;
9103 if (Imm <= MaxImm + 64) {
9105 Overflow = Imm - MaxImm;
9195std::pair<int64_t, int64_t>
9198 int64_t RemainderOffset = COffsetVal;
9199 int64_t ImmField = 0;
9204 if (AllowNegative) {
9206 int64_t
D = 1LL << NumBits;
9207 RemainderOffset = (COffsetVal /
D) *
D;
9208 ImmField = COffsetVal - RemainderOffset;
9212 (ImmField % 4) != 0) {
9214 RemainderOffset += ImmField % 4;
9215 ImmField -= ImmField % 4;
9217 }
else if (COffsetVal >= 0) {
9218 ImmField = COffsetVal & maskTrailingOnes<uint64_t>(NumBits);
9219 RemainderOffset = COffsetVal - ImmField;
9223 assert(RemainderOffset + ImmField == COffsetVal);
9224 return {ImmField, RemainderOffset};
9236 switch (ST.getGeneration()) {
9261 case AMDGPU::V_MOVRELS_B32_dpp_gfx10:
9262 case AMDGPU::V_MOVRELS_B32_sdwa_gfx10:
9263 case AMDGPU::V_MOVRELD_B32_dpp_gfx10:
9264 case AMDGPU::V_MOVRELD_B32_sdwa_gfx10:
9265 case AMDGPU::V_MOVRELSD_B32_dpp_gfx10:
9266 case AMDGPU::V_MOVRELSD_B32_sdwa_gfx10:
9267 case AMDGPU::V_MOVRELSD_2_B32_dpp_gfx10:
9268 case AMDGPU::V_MOVRELSD_2_B32_sdwa_gfx10:
9275#define GENERATE_RENAMED_GFX9_CASES(OPCODE) \
9276 case OPCODE##_dpp: \
9277 case OPCODE##_e32: \
9278 case OPCODE##_e64: \
9279 case OPCODE##_e64_dpp: \
9294 case AMDGPU::V_DIV_FIXUP_F16_gfx9_e64:
9295 case AMDGPU::V_DIV_FIXUP_F16_gfx9_fake16_e64:
9296 case AMDGPU::V_FMA_F16_gfx9_e64:
9297 case AMDGPU::V_INTERP_P2_F16:
9298 case AMDGPU::V_MAD_F16_e64:
9299 case AMDGPU::V_MAD_U16_e64:
9300 case AMDGPU::V_MAD_I16_e64:
9335 if (
isMAI(Opcode)) {
9380 for (
unsigned I = 0, E = (
MI.getNumOperands() - 1)/ 2;
I < E; ++
I)
9381 if (
MI.getOperand(1 + 2 *
I + 1).getImm() ==
SubReg) {
9382 auto &RegOp =
MI.getOperand(1 + 2 *
I);
9394 switch (
MI.getOpcode()) {
9396 case AMDGPU::REG_SEQUENCE:
9400 case AMDGPU::INSERT_SUBREG:
9401 if (RSR.
SubReg == (
unsigned)
MI.getOperand(3).getImm())
9418 if (!
P.Reg.isVirtual())
9422 auto *DefInst =
MRI.getVRegDef(RSR.Reg);
9423 while (
auto *
MI = DefInst) {
9425 switch (
MI->getOpcode()) {
9427 case AMDGPU::V_MOV_B32_e32: {
9428 auto &Op1 =
MI->getOperand(1);
9433 DefInst =
MRI.getVRegDef(RSR.Reg);
9441 DefInst =
MRI.getVRegDef(RSR.Reg);
9454 assert(
MRI.isSSA() &&
"Must be run on SSA");
9456 auto *
TRI =
MRI.getTargetRegisterInfo();
9457 auto *DefBB =
DefMI.getParent();
9461 if (
UseMI.getParent() != DefBB)
9464 const int MaxInstScan = 20;
9468 auto E =
UseMI.getIterator();
9469 for (
auto I = std::next(
DefMI.getIterator());
I != E; ++
I) {
9470 if (
I->isDebugInstr())
9473 if (++NumInst > MaxInstScan)
9476 if (
I->modifiesRegister(AMDGPU::EXEC,
TRI))
9486 assert(
MRI.isSSA() &&
"Must be run on SSA");
9488 auto *
TRI =
MRI.getTargetRegisterInfo();
9489 auto *DefBB =
DefMI.getParent();
9491 const int MaxUseScan = 10;
9494 for (
auto &
Use :
MRI.use_nodbg_operands(VReg)) {
9495 auto &UseInst = *
Use.getParent();
9498 if (UseInst.getParent() != DefBB || UseInst.isPHI())
9501 if (++NumUse > MaxUseScan)
9508 const int MaxInstScan = 20;
9512 for (
auto I = std::next(
DefMI.getIterator()); ; ++
I) {
9515 if (
I->isDebugInstr())
9518 if (++NumInst > MaxInstScan)
9531 if (Reg == VReg && --NumUse == 0)
9533 }
else if (
TRI->regsOverlap(Reg, AMDGPU::EXEC))
9545 if (!Cur->isPHI() && Cur->readsRegister(Dst,
nullptr))
9548 }
while (Cur !=
MBB.
end() && Cur != LastPHIIt);
9557 if (InsPt !=
MBB.
end() &&
9558 (InsPt->getOpcode() == AMDGPU::SI_IF ||
9559 InsPt->getOpcode() == AMDGPU::SI_ELSE ||
9560 InsPt->getOpcode() == AMDGPU::SI_IF_BREAK) &&
9561 InsPt->definesRegister(Src,
nullptr)) {
9565 : AMDGPU::S_MOV_B64_term),
9567 .
addReg(Src, 0, SrcSubReg)
9592 if (isFullCopyInstr(
MI)) {
9601 MRI.constrainRegClass(VirtReg, &AMDGPU::SReg_32_XM0_XEXECRegClass);
9605 MRI.constrainRegClass(VirtReg, &AMDGPU::SReg_64_XEXECRegClass);
9616 unsigned *PredCost)
const {
9617 if (
MI.isBundle()) {
9620 unsigned Lat = 0, Count = 0;
9621 for (++
I;
I != E &&
I->isBundledWithPred(); ++
I) {
9623 Lat = std::max(Lat, SchedModel.computeInstrLatency(&*
I));
9625 return Lat + Count - 1;
9628 return SchedModel.computeInstrLatency(&
MI);
9633 unsigned opcode =
MI.getOpcode();
9634 if (
auto *GI = dyn_cast<GIntrinsic>(&
MI)) {
9635 auto IID = GI->getIntrinsicID();
9642 case Intrinsic::amdgcn_if:
9643 case Intrinsic::amdgcn_else:
9657 if (opcode == AMDGPU::G_LOAD) {
9658 if (
MI.memoperands_empty())
9662 return mmo->getAddrSpace() == AMDGPUAS::PRIVATE_ADDRESS ||
9663 mmo->getAddrSpace() == AMDGPUAS::FLAT_ADDRESS;
9671 if (SIInstrInfo::isGenericAtomicRMWOpcode(opcode) ||
9672 opcode == AMDGPU::G_ATOMIC_CMPXCHG ||
9673 opcode == AMDGPU::G_ATOMIC_CMPXCHG_WITH_SUCCESS ||
9686 unsigned opcode =
MI.getOpcode();
9687 if (opcode == AMDGPU::V_READLANE_B32 ||
9688 opcode == AMDGPU::V_READFIRSTLANE_B32 ||
9689 opcode == AMDGPU::SI_RESTORE_S32_FROM_VGPR)
9692 if (isCopyInstr(
MI)) {
9696 RI.getPhysRegBaseClass(srcOp.
getReg());
9704 if (
MI.isPreISelOpcode())
9719 if (
MI.memoperands_empty())
9723 return mmo->getAddrSpace() == AMDGPUAS::PRIVATE_ADDRESS ||
9724 mmo->getAddrSpace() == AMDGPUAS::FLAT_ADDRESS;
9739 for (
unsigned I = 0, E =
MI.getNumOperands();
I != E; ++
I) {
9745 if (!Reg || !
SrcOp.readsReg())
9751 if (RegBank && RegBank->
getID() != AMDGPU::SGPRRegBankID)
9788 Register &SrcReg2, int64_t &CmpMask,
9789 int64_t &CmpValue)
const {
9790 if (!
MI.getOperand(0).isReg() ||
MI.getOperand(0).getSubReg())
9793 switch (
MI.getOpcode()) {
9796 case AMDGPU::S_CMP_EQ_U32:
9797 case AMDGPU::S_CMP_EQ_I32:
9798 case AMDGPU::S_CMP_LG_U32:
9799 case AMDGPU::S_CMP_LG_I32:
9800 case AMDGPU::S_CMP_LT_U32:
9801 case AMDGPU::S_CMP_LT_I32:
9802 case AMDGPU::S_CMP_GT_U32:
9803 case AMDGPU::S_CMP_GT_I32:
9804 case AMDGPU::S_CMP_LE_U32:
9805 case AMDGPU::S_CMP_LE_I32:
9806 case AMDGPU::S_CMP_GE_U32:
9807 case AMDGPU::S_CMP_GE_I32:
9808 case AMDGPU::S_CMP_EQ_U64:
9809 case AMDGPU::S_CMP_LG_U64:
9810 SrcReg =
MI.getOperand(0).getReg();
9811 if (
MI.getOperand(1).isReg()) {
9812 if (
MI.getOperand(1).getSubReg())
9814 SrcReg2 =
MI.getOperand(1).getReg();
9816 }
else if (
MI.getOperand(1).isImm()) {
9818 CmpValue =
MI.getOperand(1).getImm();
9824 case AMDGPU::S_CMPK_EQ_U32:
9825 case AMDGPU::S_CMPK_EQ_I32:
9826 case AMDGPU::S_CMPK_LG_U32:
9827 case AMDGPU::S_CMPK_LG_I32:
9828 case AMDGPU::S_CMPK_LT_U32:
9829 case AMDGPU::S_CMPK_LT_I32:
9830 case AMDGPU::S_CMPK_GT_U32:
9831 case AMDGPU::S_CMPK_GT_I32:
9832 case AMDGPU::S_CMPK_LE_U32:
9833 case AMDGPU::S_CMPK_LE_I32:
9834 case AMDGPU::S_CMPK_GE_U32:
9835 case AMDGPU::S_CMPK_GE_I32:
9836 SrcReg =
MI.getOperand(0).getReg();
9838 CmpValue =
MI.getOperand(1).getImm();
9856 const auto optimizeCmpAnd = [&CmpInstr, SrcReg, CmpValue,
MRI,
9857 this](int64_t ExpectedValue,
unsigned SrcSize,
9858 bool IsReversible,
bool IsSigned) ->
bool {
9883 if (!Def || Def->getParent() != CmpInstr.
getParent())
9886 if (Def->getOpcode() != AMDGPU::S_AND_B32 &&
9887 Def->getOpcode() != AMDGPU::S_AND_B64)
9891 const auto isMask = [&Mask, SrcSize](
const MachineOperand *MO) ->
bool {
9902 SrcOp = &Def->getOperand(2);
9903 else if (isMask(&Def->getOperand(2)))
9904 SrcOp = &Def->getOperand(1);
9910 assert(llvm::has_single_bit<uint64_t>(Mask) &&
"Invalid mask.");
9912 if (IsSigned && BitNo == SrcSize - 1)
9915 ExpectedValue <<= BitNo;
9917 bool IsReversedCC =
false;
9918 if (CmpValue != ExpectedValue) {
9921 IsReversedCC = CmpValue == (ExpectedValue ^ Mask);
9926 Register DefReg = Def->getOperand(0).getReg();
9927 if (IsReversedCC && !
MRI->hasOneNonDBGUse(DefReg))
9930 for (
auto I = std::next(Def->getIterator()), E = CmpInstr.
getIterator();
9932 if (
I->modifiesRegister(AMDGPU::SCC, &RI) ||
9933 I->killsRegister(AMDGPU::SCC, &RI))
9938 Def->findRegisterDefOperand(AMDGPU::SCC,
nullptr);
9942 if (!
MRI->use_nodbg_empty(DefReg)) {
9950 unsigned NewOpc = (SrcSize == 32) ? IsReversedCC ? AMDGPU::S_BITCMP0_B32
9951 : AMDGPU::S_BITCMP1_B32
9952 : IsReversedCC ? AMDGPU::S_BITCMP0_B64
9953 : AMDGPU::S_BITCMP1_B64;
9958 Def->eraseFromParent();
9966 case AMDGPU::S_CMP_EQ_U32:
9967 case AMDGPU::S_CMP_EQ_I32:
9968 case AMDGPU::S_CMPK_EQ_U32:
9969 case AMDGPU::S_CMPK_EQ_I32:
9970 return optimizeCmpAnd(1, 32,
true,
false);
9971 case AMDGPU::S_CMP_GE_U32:
9972 case AMDGPU::S_CMPK_GE_U32:
9973 return optimizeCmpAnd(1, 32,
false,
false);
9974 case AMDGPU::S_CMP_GE_I32:
9975 case AMDGPU::S_CMPK_GE_I32:
9976 return optimizeCmpAnd(1, 32,
false,
true);
9977 case AMDGPU::S_CMP_EQ_U64:
9978 return optimizeCmpAnd(1, 64,
true,
false);
9979 case AMDGPU::S_CMP_LG_U32:
9980 case AMDGPU::S_CMP_LG_I32:
9981 case AMDGPU::S_CMPK_LG_U32:
9982 case AMDGPU::S_CMPK_LG_I32:
9983 return optimizeCmpAnd(0, 32,
true,
false);
9984 case AMDGPU::S_CMP_GT_U32:
9985 case AMDGPU::S_CMPK_GT_U32:
9986 return optimizeCmpAnd(0, 32,
false,
false);
9987 case AMDGPU::S_CMP_GT_I32:
9988 case AMDGPU::S_CMPK_GT_I32:
9989 return optimizeCmpAnd(0, 32,
false,
true);
9990 case AMDGPU::S_CMP_LG_U64:
9991 return optimizeCmpAnd(0, 64,
true,
false);
10016 IsAGPR ? &AMDGPU::AGPR_32RegClass : &AMDGPU::VGPR_32RegClass);
10019 MRI.createVirtualRegister(IsAGPR ? &AMDGPU::AReg_64_Align2RegClass
10020 : &AMDGPU::VReg_64_Align2RegClass);
10022 .
addReg(DataReg, 0,
Op.getSubReg())
10027 Op.setSubReg(AMDGPU::sub0);
unsigned const MachineRegisterInfo * MRI
MachineInstrBuilder & UseMI
MachineInstrBuilder MachineInstrBuilder & DefMI
Contains the definition of a TargetInstrInfo class that is common to all AMD GPUs.
AMDGPU Register Bank Select
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
MachineBasicBlock MachineBasicBlock::iterator MBBI
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
Analysis containing CSE Info
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
AMD GCN specific subclass of TargetSubtarget.
Declares convenience wrapper classes for interpreting MachineInstr instances as specific generic oper...
const HexagonInstrInfo * TII
static bool isUndef(ArrayRef< int > Mask)
unsigned const TargetRegisterInfo * TRI
static unsigned getReg(const MCDisassembler *D, unsigned RC, unsigned RegNo)
uint64_t IntrinsicInst * II
TargetInstrInfo::RegSubRegPair RegSubRegPair
const SmallVectorImpl< MachineOperand > MachineBasicBlock * TBB
const SmallVectorImpl< MachineOperand > & Cond
This file declares the machine register scavenger class.
static cl::opt< bool > Fix16BitCopies("amdgpu-fix-16-bit-physreg-copies", cl::desc("Fix copies between 32 and 16 bit registers by extending to 32 bit"), cl::init(true), cl::ReallyHidden)
static void expandSGPRCopy(const SIInstrInfo &TII, MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg, bool KillSrc, const TargetRegisterClass *RC, bool Forward)
static void indirectCopyToAGPR(const SIInstrInfo &TII, MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg, bool KillSrc, RegScavenger &RS, bool RegsOverlap, Register ImpDefSuperReg=Register(), Register ImpUseSuperReg=Register())
Handle copying from SGPR to AGPR, or from AGPR to AGPR on GFX908.
static unsigned getIndirectSGPRWriteMovRelPseudo32(unsigned VecSize)
static bool compareMachineOp(const MachineOperand &Op0, const MachineOperand &Op1)
static bool isStride64(unsigned Opc)
#define GENERATE_RENAMED_GFX9_CASES(OPCODE)
static std::tuple< unsigned, unsigned > extractRsrcPtr(const SIInstrInfo &TII, MachineInstr &MI, MachineOperand &Rsrc)
static bool followSubRegDef(MachineInstr &MI, TargetInstrInfo::RegSubRegPair &RSR)
static unsigned getIndirectSGPRWriteMovRelPseudo64(unsigned VecSize)
static unsigned getVectorRegSpillRestoreOpcode(Register Reg, const TargetRegisterClass *RC, unsigned Size, const SIRegisterInfo &TRI, const SIMachineFunctionInfo &MFI)
static unsigned getAGPRSpillRestoreOpcode(unsigned Size)
static void copyFlagsToImplicitVCC(MachineInstr &MI, const MachineOperand &Orig)
static void emitLoadScalarOpsFromVGPRLoop(const SIInstrInfo &TII, MachineRegisterInfo &MRI, MachineBasicBlock &LoopBB, MachineBasicBlock &BodyBB, const DebugLoc &DL, ArrayRef< MachineOperand * > ScalarOps)
static bool offsetsDoNotOverlap(LocationSize WidthA, int OffsetA, LocationSize WidthB, int OffsetB)
static unsigned getWWMRegSpillSaveOpcode(unsigned Size, bool IsVectorSuperClass)
static bool memOpsHaveSameBaseOperands(ArrayRef< const MachineOperand * > BaseOps1, ArrayRef< const MachineOperand * > BaseOps2)
static unsigned getWWMRegSpillRestoreOpcode(unsigned Size, bool IsVectorSuperClass)
static const TargetRegisterClass * adjustAllocatableRegClass(const GCNSubtarget &ST, const SIRegisterInfo &RI, const MachineRegisterInfo &MRI, const MCInstrDesc &TID, unsigned RCID, bool IsAllocatable)
static unsigned getVectorRegSpillSaveOpcode(Register Reg, const TargetRegisterClass *RC, unsigned Size, const SIRegisterInfo &TRI, const SIMachineFunctionInfo &MFI)
static unsigned getAGPRSpillSaveOpcode(unsigned Size)
static bool resultDependsOnExec(const MachineInstr &MI)
static bool getFoldableImm(Register Reg, const MachineRegisterInfo &MRI, int64_t &Imm, MachineInstr **DefMI=nullptr)
static unsigned getIndirectVGPRWriteMovRelPseudoOpc(unsigned VecSize)
static unsigned subtargetEncodingFamily(const GCNSubtarget &ST)
static void preserveCondRegFlags(MachineOperand &CondReg, const MachineOperand &OrigCond)
static Register findImplicitSGPRRead(const MachineInstr &MI)
static cl::opt< unsigned > BranchOffsetBits("amdgpu-s-branch-bits", cl::ReallyHidden, cl::init(16), cl::desc("Restrict range of branch instructions (DEBUG)"))
static void updateLiveVariables(LiveVariables *LV, MachineInstr &MI, MachineInstr &NewMI)
static bool memOpsHaveSameBasePtr(const MachineInstr &MI1, ArrayRef< const MachineOperand * > BaseOps1, const MachineInstr &MI2, ArrayRef< const MachineOperand * > BaseOps2)
static bool nodesHaveSameOperandValue(SDNode *N0, SDNode *N1, unsigned OpName)
Returns true if both nodes have the same value for the given operand Op, or if both nodes do not have...
static unsigned getSGPRSpillRestoreOpcode(unsigned Size)
static bool isRegOrFI(const MachineOperand &MO)
static unsigned getSGPRSpillSaveOpcode(unsigned Size)
static unsigned getVGPRSpillSaveOpcode(unsigned Size)
static void reportIllegalCopy(const SIInstrInfo *TII, MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg, bool KillSrc, const char *Msg="illegal VGPR to SGPR copy")
static MachineInstr * swapRegAndNonRegOperand(MachineInstr &MI, MachineOperand &RegOp, MachineOperand &NonRegOp)
static bool shouldReadExec(const MachineInstr &MI)
static bool isRenamedInGFX9(int Opcode)
static TargetInstrInfo::RegSubRegPair getRegOrUndef(const MachineOperand &RegOpnd)
static constexpr unsigned ModifierOpNames[]
static bool changesVGPRIndexingMode(const MachineInstr &MI)
static bool isSubRegOf(const SIRegisterInfo &TRI, const MachineOperand &SuperVec, const MachineOperand &SubReg)
static unsigned getAVSpillSaveOpcode(unsigned Size)
static unsigned getNumOperandsNoGlue(SDNode *Node)
static bool canRemat(const MachineInstr &MI)
static MachineBasicBlock * loadMBUFScalarOperandsFromVGPR(const SIInstrInfo &TII, MachineInstr &MI, ArrayRef< MachineOperand * > ScalarOps, MachineDominatorTree *MDT, MachineBasicBlock::iterator Begin=nullptr, MachineBasicBlock::iterator End=nullptr)
static unsigned getAVSpillRestoreOpcode(unsigned Size)
static unsigned getVGPRSpillRestoreOpcode(unsigned Size)
Interface definition for SIInstrInfo.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
static bool isImm(const MachineOperand &MO, MachineRegisterInfo *MRI)
static bool contains(SmallPtrSetImpl< ConstantExpr * > &Cache, ConstantExpr *Expr, Constant *C)
bool useRealTrue16Insts() const
Return true if real (non-fake) variants of True16 instructions using 16-bit registers should be code-...
bool has16BitInsts() const
bool hasTrue16BitInsts() const
Return true if the subtarget supports True16 instructions.
bool hasInv2PiInlineImm() const
Class for arbitrary precision integers.
int64_t getSExtValue() const
Get sign extended value.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
const T & front() const
front - Get the first element.
size_t size() const
size - Get the array size.
bool empty() const
empty - Check if the array is empty.
uint64_t getZExtValue() const
This class represents an Operation in the Expression.
Diagnostic information for unsupported feature in backend.
void changeImmediateDominator(DomTreeNodeBase< NodeT > *N, DomTreeNodeBase< NodeT > *NewIDom)
changeImmediateDominator - This method is used to update the dominator tree information when a node's...
DomTreeNodeBase< NodeT > * addNewBlock(NodeT *BB, NodeT *DomBB)
Add a new node to the dominator tree information.
bool properlyDominates(const DomTreeNodeBase< NodeT > *A, const DomTreeNodeBase< NodeT > *B) const
properlyDominates - Returns true iff A dominates B and A != B.
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.
bool useVGPRIndexMode() const
bool hasSDWAScalar() const
bool hasScalarCompareEq64() const
bool hasOnlyRevVALUShifts() const
bool hasFlatInstOffsets() const
bool hasGFX90AInsts() const
bool hasMFMAInlineLiteralBug() const
bool hasNegativeScratchOffsetBug() const
unsigned getConstantBusLimit(unsigned Opcode) const
bool hasVALUMaskWriteHazard() const
bool needsAlignedVGPRs() const
Return if operations acting on VGPR tuples require even alignment.
bool hasOffset3fBug() const
bool hasGetPCZeroExtension() const
const AMDGPURegisterBankInfo * getRegBankInfo() const override
bool hasSDWAOutModsVOPC() const
bool hasRestrictedSOffset() const
bool hasFlatSegmentOffsetBug() const
bool hasGFX940Insts() const
bool hasVALUReadSGPRHazard() const
unsigned getMaxPrivateElementSize(bool ForBufferRSrc=false) const
bool hasNegativeUnalignedScratchOffsetBug() const
unsigned getNSAMaxSize(bool HasSampler=false) const
bool hasNoF16PseudoScalarTransInlineConstants() const
Generation getGeneration() const
bool hasVOP3Literal() const
bool hasUnpackedD16VMem() const
bool hasAddNoCarry() const
bool hasPartialNSAEncoding() const
CycleT * getCycle(const BlockT *Block) const
Find the innermost cycle containing a given block.
A possibly irreducible generalization of a Loop.
void getExitingBlocks(SmallVectorImpl< BlockT * > &TmpStorage) const
Return all blocks of this cycle that have successor outside of this cycle.
bool contains(const BlockT *Block) const
Return whether Block is contained in the cycle.
const GenericCycle * getParentCycle() const
Itinerary data supplied by a subtarget to be used by a target.
This is an important class for using LLVM in a threaded context.
LiveInterval - This class represents the liveness of a register, or stack slot.
bool hasInterval(Register Reg) const
SlotIndex getInstructionIndex(const MachineInstr &Instr) const
Returns the base index of the given instruction.
LiveInterval & getInterval(Register Reg)
bool shrinkToUses(LiveInterval *li, SmallVectorImpl< MachineInstr * > *dead=nullptr)
After removing some uses of a register, shrink its live range to just the remaining uses.
SlotIndex ReplaceMachineInstrInMaps(MachineInstr &MI, MachineInstr &NewMI)
This class represents the liveness of a register, stack slot, etc.
iterator find(SlotIndex Pos)
find - Return an iterator pointing to the first segment that ends after Pos, or end().
void replaceKillInstruction(Register Reg, MachineInstr &OldMI, MachineInstr &NewMI)
replaceKillInstruction - Update register kill info by replacing a kill instruction with a new one.
VarInfo & getVarInfo(Register Reg)
getVarInfo - Return the VarInfo structure for the specified VIRTUAL register.
TypeSize getValue() const
static const MCBinaryExpr * createAnd(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx)
static const MCBinaryExpr * createAShr(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx)
static const MCBinaryExpr * createSub(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx)
static const MCConstantExpr * create(int64_t Value, MCContext &Ctx, bool PrintInHex=false, unsigned SizeInBytes=0)
Describe properties that are true of each instruction in the target description file.
unsigned getNumOperands() const
Return the number of declared MachineOperands for this MachineInstruction.
ArrayRef< MCOperandInfo > operands() const
bool mayStore() const
Return true if this instruction could possibly modify memory.
bool mayLoad() const
Return true if this instruction could possibly read memory.
unsigned getNumDefs() const
Return the number of MachineOperands that are register definitions.
ArrayRef< MCPhysReg > implicit_uses() const
Return a list of registers that are potentially read by any instance of this machine instruction.
This holds information about one operand of a machine instruction, indicating the register class for ...
uint8_t OperandType
Information about the type of the operand.
int16_t RegClass
This specifies the register class enumeration of the operand if the operand is a register.
Wrapper class representing physical registers. Should be passed by value.
static const MCSymbolRefExpr * create(const MCSymbol *Symbol, MCContext &Ctx)
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
void setVariableValue(const MCExpr *Value)
Helper class for constructing bundles of MachineInstrs.
MachineBasicBlock::instr_iterator begin() const
Return an iterator to the first bundled instruction.
MIBundleBuilder & append(MachineInstr *MI)
Insert MI into MBB by appending it to the instructions in the bundle.
unsigned pred_size() const
void transferSuccessorsAndUpdatePHIs(MachineBasicBlock *FromMBB)
Transfers all the successors, as in transferSuccessors, and update PHI operands in the successor bloc...
MCSymbol * getSymbol() const
Return the MCSymbol for this basic block.
instr_iterator insert(instr_iterator I, MachineInstr *M)
Insert MI into the instruction list before I, possibly inside a bundle.
LivenessQueryResult computeRegisterLiveness(const TargetRegisterInfo *TRI, MCRegister Reg, const_iterator Before, unsigned Neighborhood=10) const
Return whether (physical) register Reg has been defined and not killed as of just before Before.
iterator getFirstTerminator()
Returns an iterator to the first terminator instruction of this basic block.
void addSuccessor(MachineBasicBlock *Succ, BranchProbability Prob=BranchProbability::getUnknown())
Add Succ as a successor of this MachineBasicBlock.
DebugLoc findDebugLoc(instr_iterator MBBI)
Find the next valid DebugLoc starting at MBBI, skipping any debug instructions.
MachineBasicBlock * splitAt(MachineInstr &SplitInst, bool UpdateLiveIns=true, LiveIntervals *LIS=nullptr)
Split a basic block into 2 pieces at SplitPoint.
Instructions::const_iterator const_instr_iterator
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
iterator_range< iterator > terminators()
iterator_range< succ_iterator > successors()
void splice(iterator Where, MachineBasicBlock *Other, iterator From)
Take an instruction from MBB 'Other' at the position From, and insert it into this MBB right before '...
@ LQR_Dead
Register is known to be fully dead.
DominatorTree Class - Concrete subclass of DominatorTreeBase that is used to compute a normal dominat...
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineMemOperand * getMachineMemOperand(MachinePointerInfo PtrInfo, MachineMemOperand::Flags f, LLT MemTy, Align base_alignment, const AAMDNodes &AAInfo=AAMDNodes(), const MDNode *Ranges=nullptr, SyncScope::ID SSID=SyncScope::System, AtomicOrdering Ordering=AtomicOrdering::NotAtomic, AtomicOrdering FailureOrdering=AtomicOrdering::NotAtomic)
getMachineMemOperand - Allocate a new MachineMemOperand.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
void push_back(MachineBasicBlock *MBB)
MCContext & getContext() const
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...
MachineInstr * CloneMachineInstr(const MachineInstr *Orig)
Create a new MachineInstr which is a copy of Orig, identical in all ways except the instruction has n...
MachineBasicBlock * CreateMachineBasicBlock(const BasicBlock *BB=nullptr, std::optional< UniqueBBID > BBID=std::nullopt)
CreateMachineBasicBlock - Allocate a new MachineBasicBlock.
void insert(iterator MBBI, MachineBasicBlock *MBB)
const TargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
Register getReg(unsigned Idx) const
Get the register for the operand index.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & add(const MachineOperand &MO) const
const MachineInstrBuilder & addSym(MCSymbol *Sym, unsigned char TargetFlags=0) const
const MachineInstrBuilder & addFrameIndex(int Idx) const
const MachineInstrBuilder & addReg(Register RegNo, unsigned flags=0, unsigned SubReg=0) const
Add a new virtual register operand.
const MachineInstrBuilder & addMBB(MachineBasicBlock *MBB, unsigned TargetFlags=0) const
const MachineInstrBuilder & cloneMemRefs(const MachineInstr &OtherMI) const
const MachineInstrBuilder & addUse(Register RegNo, unsigned Flags=0, unsigned SubReg=0) const
Add a virtual register use operand.
const MachineInstrBuilder & setMIFlags(unsigned Flags) const
const MachineInstrBuilder & copyImplicitOps(const MachineInstr &OtherMI) const
Copy all the implicit operands from OtherMI onto this one.
const MachineInstrBuilder & addMemOperand(MachineMemOperand *MMO) const
const MachineInstrBuilder & addDef(Register RegNo, unsigned Flags=0, unsigned SubReg=0) const
Add a virtual register definition operand.
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
bool mayLoadOrStore(QueryType Type=AnyInBundle) const
Return true if this instruction could possibly read or modify memory.
const MachineBasicBlock * getParent() const
void addImplicitDefUseOperands(MachineFunction &MF)
Add all implicit def and use operands to this instruction.
unsigned getNumOperands() const
Retuns the total number of operands.
void addOperand(MachineFunction &MF, const MachineOperand &Op)
Add the specified operand to the instruction.
iterator_range< mop_iterator > explicit_operands()
unsigned getNumExplicitOperands() const
Returns the number of non-implicit operands.
bool mayLoad(QueryType Type=AnyInBundle) const
Return true if this instruction could possibly read memory.
bool hasUnmodeledSideEffects() const
Return true if this instruction has side effects that are not modeled by mayLoad / mayStore,...
void untieRegOperand(unsigned OpIdx)
Break any tie involving OpIdx.
void setDesc(const MCInstrDesc &TID)
Replace the instruction descriptor (thus opcode) of the current instruction with a new one.
bool hasOneMemOperand() const
Return true if this instruction has exactly one MachineMemOperand.
void tieOperands(unsigned DefIdx, unsigned UseIdx)
Add a tie between the register operands at DefIdx and UseIdx.
mmo_iterator memoperands_begin() const
Access to memory operands of the instruction.
bool hasOrderedMemoryRef() const
Return true if this instruction may have an ordered or volatile memory reference, or if the informati...
const MachineFunction * getMF() const
Return the function that contains the basic block that this instruction belongs to.
ArrayRef< MachineMemOperand * > memoperands() const
Access to memory operands of the instruction.
bool mayStore(QueryType Type=AnyInBundle) const
Return true if this instruction could possibly modify memory.
const DebugLoc & getDebugLoc() const
Returns the debug location id of this MachineInstr.
void eraseFromParent()
Unlink 'this' from the containing basic block and delete it.
void removeOperand(unsigned OpNo)
Erase an operand from an instruction, leaving it with one fewer operand than it started with.
void setPostInstrSymbol(MachineFunction &MF, MCSymbol *Symbol)
Set a symbol that will be emitted just after the instruction itself.
iterator_range< mop_iterator > implicit_operands()
const MachineOperand & getOperand(unsigned i) const
uint32_t getFlags() const
Return the MI flags bitvector.
int findRegisterDefOperandIdx(Register Reg, const TargetRegisterInfo *TRI, bool isDead=false, bool Overlap=false) const
Returns the operand index that is a def of the specified register or -1 if it is not found.
A description of a memory reference used in the backend.
@ MOLoad
The memory access reads data.
@ MOStore
The memory access writes data.
MachineOperand class - Representation of each machine instruction operand.
void setSubReg(unsigned subReg)
unsigned getSubReg() const
unsigned getOperandNo() const
Returns the index of this operand in the instruction that it belongs to.
const GlobalValue * getGlobal() const
void setImplicit(bool Val=true)
void ChangeToFrameIndex(int Idx, unsigned TargetFlags=0)
Replace this operand with a frame index.
void setImm(int64_t immVal)
bool isReg() const
isReg - Tests if this is a MO_Register operand.
void setIsDead(bool Val=true)
void setReg(Register Reg)
Change the register this operand corresponds to.
bool isImm() const
isImm - Tests if this is a MO_Immediate operand.
void ChangeToImmediate(int64_t ImmVal, unsigned TargetFlags=0)
ChangeToImmediate - Replace this operand with a new immediate operand of the specified value.
void ChangeToGA(const GlobalValue *GV, int64_t Offset, unsigned TargetFlags=0)
ChangeToGA - Replace this operand with a new global address operand.
void setIsKill(bool Val=true)
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.
MachineInstr * getParent()
getParent - Return the instruction that this operand belongs to.
void setOffset(int64_t Offset)
unsigned getTargetFlags() const
static MachineOperand CreateImm(int64_t Val)
bool isGlobal() const
isGlobal - Tests if this is a MO_GlobalAddress operand.
MachineOperandType getType() const
getType - Returns the MachineOperandType for this operand.
void setIsUndef(bool Val=true)
Register getReg() const
getReg - Returns the register number.
bool isTargetIndex() const
isTargetIndex - Tests if this is a MO_TargetIndex operand.
void setTargetFlags(unsigned F)
bool isFI() const
isFI - Tests if this is a MO_FrameIndex operand.
bool isIdenticalTo(const MachineOperand &Other) const
Returns true if this operand is identical to the specified operand except for liveness related flags ...
@ MO_Immediate
Immediate operand.
@ MO_Register
Register operand.
static MachineOperand CreateReg(Register Reg, bool isDef, bool isImp=false, bool isKill=false, bool isDead=false, bool isUndef=false, bool isEarlyClobber=false, unsigned SubReg=0, bool isDebug=false, bool isInternalRead=false, bool isRenamable=false)
int64_t getOffset() const
Return the offset from the symbol in this operand.
bool isFPImm() const
isFPImm - Tests if this is a MO_FPImmediate operand.
reg_begin/reg_end - Provide iteration support to walk over all definitions and uses of a register wit...
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
bool isReserved(MCRegister PhysReg) const
isReserved - Returns true when PhysReg is a reserved register.
void enterBasicBlockEnd(MachineBasicBlock &MBB)
Start tracking liveness from the end of basic block MBB.
bool isRegUsed(Register Reg, bool includeReserved=true) const
Return if a specific register is currently used.
void setRegUsed(Register Reg, LaneBitmask LaneMask=LaneBitmask::getAll())
Tell the scavenger a register is used.
void backward()
Update internal register state and move MBB iterator backwards.
void enterBasicBlock(MachineBasicBlock &MBB)
Start tracking liveness from the begin of basic block MBB.
Register scavengeRegisterBackwards(const TargetRegisterClass &RC, MachineBasicBlock::iterator To, bool RestoreAfter, int SPAdj, bool AllowSpill=true)
Make a register of the specific register class available from the current position backwards to the p...
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 isVirtual() const
Return true if the specified register number is in the virtual register namespace.
constexpr bool isPhysical() const
Return true if the specified register number is in the physical register namespace.
Represents one node in the SelectionDAG.
bool isMachineOpcode() const
Test if this node has a post-isel opcode, directly corresponding to a MachineInstr opcode.
uint64_t getAsZExtVal() const
Helper method returns the zero-extended integer value of a ConstantSDNode.
unsigned getMachineOpcode() const
This may only be called if isMachineOpcode returns true.
const SDValue & getOperand(unsigned Num) const
uint64_t getConstantOperandVal(unsigned Num) const
Helper method returns the integer value of a ConstantSDNode operand.
Unlike LLVM values, Selection DAG nodes may return multiple values as the result of a computation.
bool isLegalMUBUFImmOffset(unsigned Imm) const
bool isInlineConstant(const APInt &Imm) const
static bool isMAI(const MachineInstr &MI)
void legalizeOperandsVOP3(MachineRegisterInfo &MRI, MachineInstr &MI) const
Fix operands in MI to satisfy constant bus requirements.
static bool isDS(const MachineInstr &MI)
MachineBasicBlock * legalizeOperands(MachineInstr &MI, MachineDominatorTree *MDT=nullptr) const
Legalize all operands in this instruction.
bool areLoadsFromSameBasePtr(SDNode *Load0, SDNode *Load1, int64_t &Offset0, int64_t &Offset1) const override
static bool isVOP3(const MachineInstr &MI)
unsigned getLiveRangeSplitOpcode(Register Reg, const MachineFunction &MF) const override
bool getMemOperandsWithOffsetWidth(const MachineInstr &LdSt, SmallVectorImpl< const MachineOperand * > &BaseOps, int64_t &Offset, bool &OffsetIsScalable, LocationSize &Width, const TargetRegisterInfo *TRI) const final
unsigned getInstSizeInBytes(const MachineInstr &MI) const override
static bool isNeverUniform(const MachineInstr &MI)
unsigned getOpSize(uint16_t Opcode, unsigned OpNo) const
Return the size in bytes of the operand OpNo on the given.
bool isBasicBlockPrologue(const MachineInstr &MI, Register Reg=Register()) const override
uint64_t getDefaultRsrcDataFormat() const
InstructionUniformity getGenericInstructionUniformity(const MachineInstr &MI) const
static bool isFLATScratch(const MachineInstr &MI)
const MCInstrDesc & getIndirectRegWriteMovRelPseudo(unsigned VecSize, unsigned EltSize, bool IsSGPR) const
MachineInstrBuilder getAddNoCarry(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, const DebugLoc &DL, Register DestReg) const
Return a partially built integer add instruction without carry.
bool mayAccessFlatAddressSpace(const MachineInstr &MI) const
bool shouldScheduleLoadsNear(SDNode *Load0, SDNode *Load1, int64_t Offset0, int64_t Offset1, unsigned NumLoads) const override
bool splitMUBUFOffset(uint32_t Imm, uint32_t &SOffset, uint32_t &ImmOffset, Align Alignment=Align(4)) const
ArrayRef< std::pair< unsigned, const char * > > getSerializableDirectMachineOperandTargetFlags() const override
void moveToVALU(SIInstrWorklist &Worklist, MachineDominatorTree *MDT) const
Replace the instructions opcode with the equivalent VALU opcode.
static bool isSMRD(const MachineInstr &MI)
void restoreExec(MachineFunction &MF, MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, const DebugLoc &DL, Register Reg, SlotIndexes *Indexes=nullptr) const
bool usesConstantBus(const MachineRegisterInfo &MRI, const MachineOperand &MO, const MCOperandInfo &OpInfo) const
Returns true if this operand uses the constant bus.
static unsigned getMaxMUBUFImmOffset(const GCNSubtarget &ST)
Register isStoreToStackSlot(const MachineInstr &MI, int &FrameIndex) const override
void legalizeOperandsFLAT(MachineRegisterInfo &MRI, MachineInstr &MI) const
bool optimizeCompareInstr(MachineInstr &CmpInstr, Register SrcReg, Register SrcReg2, int64_t CmpMask, int64_t CmpValue, const MachineRegisterInfo *MRI) const override
int64_t getNamedImmOperand(const MachineInstr &MI, unsigned OpName) const
Get required immediate operand.
static bool isMTBUF(const MachineInstr &MI)
const MCInstrDesc & getIndirectGPRIDXPseudo(unsigned VecSize, bool IsIndirectSrc) const
void insertReturn(MachineBasicBlock &MBB) const
static bool isEXP(const MachineInstr &MI)
static bool isSALU(const MachineInstr &MI)
void legalizeGenericOperand(MachineBasicBlock &InsertMBB, MachineBasicBlock::iterator I, const TargetRegisterClass *DstRC, MachineOperand &Op, MachineRegisterInfo &MRI, const DebugLoc &DL) const
MachineInstr * buildShrunkInst(MachineInstr &MI, unsigned NewOpcode) const
unsigned getInstBundleSize(const MachineInstr &MI) const
static bool isVOP2(const MachineInstr &MI)
bool analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB, SmallVectorImpl< MachineOperand > &Cond, bool AllowModify=false) const override
static bool isSDWA(const MachineInstr &MI)
const MCInstrDesc & getKillTerminatorFromPseudo(unsigned Opcode) const
void insertNoops(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, unsigned Quantity) const override
static bool isGather4(const MachineInstr &MI)
bool isLegalVSrcOperand(const MachineRegisterInfo &MRI, const MCOperandInfo &OpInfo, const MachineOperand &MO) const
Check if MO would be a valid operand for the given operand definition OpInfo.
MachineInstr * createPHISourceCopy(MachineBasicBlock &MBB, MachineBasicBlock::iterator InsPt, const DebugLoc &DL, Register Src, unsigned SrcSubReg, Register Dst) const override
bool hasModifiers(unsigned Opcode) const
Return true if this instruction has any modifiers.
bool shouldClusterMemOps(ArrayRef< const MachineOperand * > BaseOps1, int64_t Offset1, bool OffsetIsScalable1, ArrayRef< const MachineOperand * > BaseOps2, int64_t Offset2, bool OffsetIsScalable2, unsigned ClusterSize, unsigned NumBytes) const override
ScheduleHazardRecognizer * CreateTargetMIHazardRecognizer(const InstrItineraryData *II, const ScheduleDAGMI *DAG) const override
bool isHighLatencyDef(int Opc) const override
void legalizeOpWithMove(MachineInstr &MI, unsigned OpIdx) const
Legalize the OpIndex operand of this instruction by inserting a MOV.
bool reverseBranchCondition(SmallVectorImpl< MachineOperand > &Cond) const override
static bool isVOPC(const MachineInstr &MI)
void removeModOperands(MachineInstr &MI) const
void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg, bool KillSrc, bool RenamableDest=false, bool RenamableSrc=false) const override
std::pair< int64_t, int64_t > splitFlatOffset(int64_t COffsetVal, unsigned AddrSpace, uint64_t FlatVariant) const
Split COffsetVal into {immediate offset field, remainder offset} values.
static bool isVIMAGE(const MachineInstr &MI)
static bool isSOP2(const MachineInstr &MI)
static bool isGWS(const MachineInstr &MI)
LLVM_READONLY MachineOperand * getNamedOperand(MachineInstr &MI, unsigned OperandName) const
Returns the operand named Op.
const TargetRegisterClass * getPreferredSelectRegClass(unsigned Size) const
bool isReallyTriviallyReMaterializable(const MachineInstr &MI) const override
bool swapSourceModifiers(MachineInstr &MI, MachineOperand &Src0, unsigned Src0OpName, MachineOperand &Src1, unsigned Src1OpName) const
static bool isFLATGlobal(const MachineInstr &MI)
static bool isVSAMPLE(const MachineInstr &MI)
bool isBufferSMRD(const MachineInstr &MI) const
static bool isKillTerminator(unsigned Opcode)
bool findCommutedOpIndices(const MachineInstr &MI, unsigned &SrcOpIdx0, unsigned &SrcOpIdx1) const override
void insertScratchExecCopy(MachineFunction &MF, MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, const DebugLoc &DL, Register Reg, bool IsSCCLive, SlotIndexes *Indexes=nullptr) const
bool hasVALU32BitEncoding(unsigned Opcode) const
Return true if this 64-bit VALU instruction has a 32-bit encoding.
unsigned getMovOpcode(const TargetRegisterClass *DstRC) const
unsigned isSGPRStackAccess(const MachineInstr &MI, int &FrameIndex) const
void reMaterialize(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, Register DestReg, unsigned SubIdx, const MachineInstr &Orig, const TargetRegisterInfo &TRI) const override
unsigned buildExtractSubReg(MachineBasicBlock::iterator MI, MachineRegisterInfo &MRI, const MachineOperand &SuperReg, const TargetRegisterClass *SuperRC, unsigned SubIdx, const TargetRegisterClass *SubRC) const
void legalizeOperandsVOP2(MachineRegisterInfo &MRI, MachineInstr &MI) const
Legalize operands in MI by either commuting it or inserting a copy of src1.
bool foldImmediate(MachineInstr &UseMI, MachineInstr &DefMI, Register Reg, MachineRegisterInfo *MRI) const final
static bool isImage(const MachineInstr &MI)
static bool isSOPK(const MachineInstr &MI)
const TargetRegisterClass * getOpRegClass(const MachineInstr &MI, unsigned OpNo) const
Return the correct register class for OpNo.
MachineBasicBlock * insertSimulatedTrap(MachineRegisterInfo &MRI, MachineBasicBlock &MBB, MachineInstr &MI, const DebugLoc &DL) const
Build instructions that simulate the behavior of a s_trap 2 instructions for hardware (namely,...
static unsigned getNonSoftWaitcntOpcode(unsigned Opcode)
static unsigned getDSShaderTypeValue(const MachineFunction &MF)
static bool isFoldableCopy(const MachineInstr &MI)
void loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, Register DestReg, int FrameIndex, const TargetRegisterClass *RC, const TargetRegisterInfo *TRI, Register VReg) const override
bool isImmOperandLegal(const MachineInstr &MI, unsigned OpNo, const MachineOperand &MO) const
bool isIgnorableUse(const MachineOperand &MO) const override
static bool isMUBUF(const MachineInstr &MI)
bool expandPostRAPseudo(MachineInstr &MI) const override
bool analyzeCompare(const MachineInstr &MI, Register &SrcReg, Register &SrcReg2, int64_t &CmpMask, int64_t &CmpValue) const override
InstructionUniformity getInstructionUniformity(const MachineInstr &MI) const override final
static bool isSegmentSpecificFLAT(const MachineInstr &MI)
static bool isF16PseudoScalarTrans(unsigned Opcode)
void insertSelect(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, const DebugLoc &DL, Register DstReg, ArrayRef< MachineOperand > Cond, Register TrueReg, Register FalseReg) const override
static bool isDPP(const MachineInstr &MI)
bool analyzeBranchImpl(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB, SmallVectorImpl< MachineOperand > &Cond, bool AllowModify) const
bool isLowLatencyInstruction(const MachineInstr &MI) const
void materializeImmediate(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const DebugLoc &DL, Register DestReg, int64_t Value) const
std::optional< DestSourcePair > isCopyInstrImpl(const MachineInstr &MI) const override
If the specific machine instruction is a instruction that moves/copies value from one register to ano...
bool isAlwaysGDS(uint16_t Opcode) const
Register isLoadFromStackSlot(const MachineInstr &MI, int &FrameIndex) const override
void moveToVALUImpl(SIInstrWorklist &Worklist, MachineDominatorTree *MDT, MachineInstr &Inst) const
bool canShrink(const MachineInstr &MI, const MachineRegisterInfo &MRI) const
bool isAsmOnlyOpcode(int MCOp) const
Check if this instruction should only be used by assembler.
static bool isVGPRSpill(const MachineInstr &MI)
ScheduleHazardRecognizer * CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II, const ScheduleDAG *DAG) const override
This is used by the post-RA scheduler (SchedulePostRAList.cpp).
bool verifyInstruction(const MachineInstr &MI, StringRef &ErrInfo) const override
bool isLegalFLATOffset(int64_t Offset, unsigned AddrSpace, uint64_t FlatVariant) const
Returns if Offset is legal for the subtarget as the offset to a FLAT encoded instruction.
static bool isWWMRegSpillOpcode(uint16_t Opcode)
unsigned getInstrLatency(const InstrItineraryData *ItinData, const MachineInstr &MI, unsigned *PredCost=nullptr) const override
MachineInstr * foldMemoryOperandImpl(MachineFunction &MF, MachineInstr &MI, ArrayRef< unsigned > Ops, MachineBasicBlock::iterator InsertPt, int FrameIndex, LiveIntervals *LIS=nullptr, VirtRegMap *VRM=nullptr) const override
ArrayRef< std::pair< int, const char * > > getSerializableTargetIndices() const override
bool isVGPRCopy(const MachineInstr &MI) const
static bool isMIMG(const MachineInstr &MI)
MachineOperand buildExtractSubRegOrImm(MachineBasicBlock::iterator MI, MachineRegisterInfo &MRI, const MachineOperand &SuperReg, const TargetRegisterClass *SuperRC, unsigned SubIdx, const TargetRegisterClass *SubRC) const
bool isSchedulingBoundary(const MachineInstr &MI, const MachineBasicBlock *MBB, const MachineFunction &MF) const override
bool isLegalRegOperand(const MachineRegisterInfo &MRI, const MCOperandInfo &OpInfo, const MachineOperand &MO) const
Check if MO (a register operand) is a legal register for the given operand description.
bool allowNegativeFlatOffset(uint64_t FlatVariant) const
Returns true if negative offsets are allowed for the given FlatVariant.
static unsigned getNumWaitStates(const MachineInstr &MI)
Return the number of wait states that result from executing this instruction.
const TargetRegisterClass * getRegClass(const MCInstrDesc &TID, unsigned OpNum, const TargetRegisterInfo *TRI, const MachineFunction &MF) const override
unsigned getVALUOp(const MachineInstr &MI) const
static bool modifiesModeRegister(const MachineInstr &MI)
Return true if the instruction modifies the mode register.q.
Register readlaneVGPRToSGPR(Register SrcReg, MachineInstr &UseMI, MachineRegisterInfo &MRI, const TargetRegisterClass *DstRC=nullptr) const
Copy a value from a VGPR (SrcReg) to SGPR.
bool hasDivergentBranch(const MachineBasicBlock *MBB) const
Return whether the block terminate with divergent branch.
unsigned removeBranch(MachineBasicBlock &MBB, int *BytesRemoved=nullptr) const override
void fixImplicitOperands(MachineInstr &MI) const
bool moveFlatAddrToVGPR(MachineInstr &Inst) const
Change SADDR form of a FLAT Inst to its VADDR form if saddr operand was moved to VGPR.
Register insertNE(MachineBasicBlock *MBB, MachineBasicBlock::iterator I, const DebugLoc &DL, Register SrcReg, int Value) const
MachineBasicBlock * getBranchDestBlock(const MachineInstr &MI) const override
bool hasUnwantedEffectsWhenEXECEmpty(const MachineInstr &MI) const
This function is used to determine if an instruction can be safely executed under EXEC = 0 without ha...
static bool isAtomic(const MachineInstr &MI)
bool canInsertSelect(const MachineBasicBlock &MBB, ArrayRef< MachineOperand > Cond, Register DstReg, Register TrueReg, Register FalseReg, int &CondCycles, int &TrueCycles, int &FalseCycles) const override
static bool sopkIsZext(unsigned Opcode)
void storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, Register SrcReg, bool isKill, int FrameIndex, const TargetRegisterClass *RC, const TargetRegisterInfo *TRI, Register VReg) const override
static bool isSGPRSpill(const MachineInstr &MI)
static bool isWMMA(const MachineInstr &MI)
ArrayRef< std::pair< MachineMemOperand::Flags, const char * > > getSerializableMachineMemOperandTargetFlags() const override
MachineInstr * convertToThreeAddress(MachineInstr &MI, LiveVariables *LV, LiveIntervals *LIS) const override
bool mayReadEXEC(const MachineRegisterInfo &MRI, const MachineInstr &MI) const
Returns true if the instruction could potentially depend on the value of exec.
void legalizeOperandsSMRD(MachineRegisterInfo &MRI, MachineInstr &MI) const
bool isBranchOffsetInRange(unsigned BranchOpc, int64_t BrOffset) const override
unsigned insertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, MachineBasicBlock *FBB, ArrayRef< MachineOperand > Cond, const DebugLoc &DL, int *BytesAdded=nullptr) const override
void insertVectorSelect(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, const DebugLoc &DL, Register DstReg, ArrayRef< MachineOperand > Cond, Register TrueReg, Register FalseReg) const
void insertNoop(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI) const override
std::pair< MachineInstr *, MachineInstr * > expandMovDPP64(MachineInstr &MI) const
Register insertEQ(MachineBasicBlock *MBB, MachineBasicBlock::iterator I, const DebugLoc &DL, Register SrcReg, int Value) const
static bool isSOPC(const MachineInstr &MI)
static bool isFLAT(const MachineInstr &MI)
static bool isVALU(const MachineInstr &MI)
bool isBarrier(unsigned Opcode) const
MachineInstr * commuteInstructionImpl(MachineInstr &MI, bool NewMI, unsigned OpIdx0, unsigned OpIdx1) const override
void enforceOperandRCAlignment(MachineInstr &MI, unsigned OpName) const
int pseudoToMCOpcode(int Opcode) const
Return a target-specific opcode if Opcode is a pseudo instruction.
const MCInstrDesc & getMCOpcodeFromPseudo(unsigned Opcode) const
Return the descriptor of the target-specific machine instruction that corresponds to the specified ps...
MachineInstr * createPHIDestinationCopy(MachineBasicBlock &MBB, MachineBasicBlock::iterator InsPt, const DebugLoc &DL, Register Src, Register Dst) const override
bool hasModifiersSet(const MachineInstr &MI, unsigned OpName) const
static bool isFixedSize(const MachineInstr &MI)
bool isSafeToSink(MachineInstr &MI, MachineBasicBlock *SuccToSinkTo, MachineCycleInfo *CI) const override
LLVM_READONLY int commuteOpcode(unsigned Opc) const
uint64_t getScratchRsrcWords23() const
std::pair< unsigned, unsigned > decomposeMachineOperandsTargetFlags(unsigned TF) const override
bool areMemAccessesTriviallyDisjoint(const MachineInstr &MIa, const MachineInstr &MIb) const override
bool isOperandLegal(const MachineInstr &MI, unsigned OpIdx, const MachineOperand *MO=nullptr) const
Check if MO is a legal operand if it was the OpIdx Operand for MI.
static bool isLDSDMA(const MachineInstr &MI)
unsigned isStackAccess(const MachineInstr &MI, int &FrameIndex) const
static bool isVOP1(const MachineInstr &MI)
SIInstrInfo(const GCNSubtarget &ST)
void insertIndirectBranch(MachineBasicBlock &MBB, MachineBasicBlock &NewDestBB, MachineBasicBlock &RestoreBB, const DebugLoc &DL, int64_t BrOffset, RegScavenger *RS) const override
bool hasAnyModifiersSet(const MachineInstr &MI) const
This class keeps track of the SPI_SP_INPUT_ADDR config register, which tells the hardware which inter...
Register getLongBranchReservedReg() const
Register getStackPtrOffsetReg() const
unsigned getMaxMemoryClusterDWords() const
void setHasSpilledVGPRs(bool Spill=true)
bool isWWMReg(Register Reg) const
bool checkFlag(Register Reg, uint8_t Flag) const
void setHasSpilledSGPRs(bool Spill=true)
const TargetRegisterClass * getRegClass(unsigned RCID) const
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 ...
static unsigned getSubRegFromChannel(unsigned Channel, unsigned NumRegs=1)
MCPhysReg get32BitRegister(MCPhysReg Reg) const
const TargetRegisterClass * getProperlyAlignedRC(const TargetRegisterClass *RC) const
bool isProperlyAlignedRC(const TargetRegisterClass &RC) const
static bool hasVectorRegisters(const TargetRegisterClass *RC)
const TargetRegisterClass * getEquivalentVGPRClass(const TargetRegisterClass *SRC) const
ArrayRef< int16_t > getRegSplitParts(const TargetRegisterClass *RC, unsigned EltSize) const
const TargetRegisterClass * getLargestLegalSuperClass(const TargetRegisterClass *RC, const MachineFunction &MF) const override
bool isVGPR(const MachineRegisterInfo &MRI, Register Reg) const
bool opCanUseInlineConstant(unsigned OpType) const
bool isVectorRegister(const MachineRegisterInfo &MRI, Register Reg) const
const TargetRegisterClass * getRegClassForReg(const MachineRegisterInfo &MRI, Register Reg) const
const TargetRegisterClass * getEquivalentAGPRClass(const TargetRegisterClass *SRC) const
bool opCanUseLiteralConstant(unsigned OpType) const
static bool hasVGPRs(const TargetRegisterClass *RC)
static bool isVGPRClass(const TargetRegisterClass *RC)
unsigned getHWRegIndex(MCRegister Reg) const
bool isSGPRReg(const MachineRegisterInfo &MRI, Register Reg) const
const TargetRegisterClass * getEquivalentSGPRClass(const TargetRegisterClass *VRC) const
unsigned getRegPressureLimit(const TargetRegisterClass *RC, MachineFunction &MF) const override
const TargetRegisterClass * getBoolRC() const
bool isAGPR(const MachineRegisterInfo &MRI, Register Reg) const
unsigned getChannelFromSubReg(unsigned SubReg) const
MCRegister getVCC() const
static bool hasAGPRs(const TargetRegisterClass *RC)
const TargetRegisterClass * getWaveMaskRegClass() const
bool spillSGPRToVGPR() const
const TargetRegisterClass * getVGPR64Class() const
static bool isSGPRClass(const TargetRegisterClass *RC)
static bool isAGPRClass(const TargetRegisterClass *RC)
ScheduleDAGMI is an implementation of ScheduleDAGInstrs that simply schedules machine instructions ac...
virtual bool hasVRegLiveness() const
Return true if this DAG supports VReg liveness and RegPressure.
MachineFunction & MF
Machine function.
HazardRecognizer - This determines whether or not an instruction can be issued this cycle,...
SlotIndex - An opaque wrapper around machine indexes.
SlotIndex getRegSlot(bool EC=false) const
Returns the register use/def slot in the current instruction for a normal or early-clobber def.
SlotIndex insertMachineInstrInMaps(MachineInstr &MI, bool Late=false)
Insert the given machine instruction into the mapping.
Implements a dense probed hash-table based set with some number of buckets stored inline.
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.
StringRef - Represent a constant reference to a string, i.e.
virtual ScheduleHazardRecognizer * CreateTargetMIHazardRecognizer(const InstrItineraryData *, const ScheduleDAGMI *DAG) const
Allocate and return a hazard recognizer to use for this target when scheduling the machine instructio...
virtual MachineInstr * createPHIDestinationCopy(MachineBasicBlock &MBB, MachineBasicBlock::iterator InsPt, const DebugLoc &DL, Register Src, Register Dst) const
During PHI eleimination lets target to make necessary checks and insert the copy to the PHI destinati...
virtual void reMaterialize(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, Register DestReg, unsigned SubIdx, const MachineInstr &Orig, const TargetRegisterInfo &TRI) const
Re-issue the specified 'original' instruction at the specific location targeting a new destination re...
virtual MachineInstr * createPHISourceCopy(MachineBasicBlock &MBB, MachineBasicBlock::iterator InsPt, const DebugLoc &DL, Register Src, unsigned SrcSubReg, Register Dst) const
During PHI eleimination lets target to make necessary checks and insert the copy to the PHI destinati...
virtual bool isReallyTriviallyReMaterializable(const MachineInstr &MI) const
For instructions with opcodes for which the M_REMATERIALIZABLE flag is set, this hook lets the target...
virtual MachineInstr * commuteInstructionImpl(MachineInstr &MI, bool NewMI, unsigned OpIdx1, unsigned OpIdx2) const
This method commutes the operands of the given machine instruction MI.
virtual bool expandPostRAPseudo(MachineInstr &MI) const
This function is called for all pseudo instructions that remain after register allocation.
const MCAsmInfo * getMCAsmInfo() const
Return target specific asm information.
bool contains(Register Reg) const
Return true if the specified register is included in this register class.
bool hasSubClassEq(const TargetRegisterClass *RC) const
Returns true if RC is a sub-class of or equal to this class.
bool hasSuperClassEq(const TargetRegisterClass *RC) const
Returns true if RC is a super-class of or equal to this class.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
const TargetRegisterClass * getAllocatableClass(const TargetRegisterClass *RC) const
Return the maximal subclass of the given register class that is allocatable or NULL.
unsigned getSubRegIdxSize(unsigned Idx) const
Get the size of the bit range covered by a sub-register index.
unsigned getSubRegIdxOffset(unsigned Idx) const
Get the offset of the bit range covered by a sub-register index.
void init(const TargetSubtargetInfo *TSInfo)
Initialize the machine model for instruction scheduling.
A Use represents the edge between a Value definition and its users.
LLVM Value Representation.
std::pair< iterator, bool > insert(const ValueT &V)
size_type count(const_arg_type_t< ValueT > V) const
Return 1 if the specified key is in the set, 0 otherwise.
self_iterator getIterator()
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ FLAT_ADDRESS
Address space for flat memory.
@ GLOBAL_ADDRESS
Address space for global memory (RAT0, VTX0).
@ PRIVATE_ADDRESS
Address space for private memory.
unsigned encodeFieldSaSdst(unsigned Encoded, unsigned SaSdst)
bool isInlinableLiteralBF16(int16_t Literal, bool HasInv2Pi)
const uint64_t RSRC_DATA_FORMAT
LLVM_READONLY int getBasicFromSDWAOp(uint16_t Opcode)
LLVM_READONLY const MIMGInfo * getMIMGInfo(unsigned Opc)
bool isInlinableLiteralFP16(int16_t Literal, bool HasInv2Pi)
LLVM_READONLY int getVOPe32(uint16_t Opcode)
LLVM_READNONE bool isLegalDPALU_DPPControl(unsigned DC)
unsigned mapWMMA2AddrTo3AddrOpcode(unsigned Opc)
bool isInlinableLiteralV2I16(uint32_t Literal)
bool isHi16Reg(MCRegister Reg, const MCRegisterInfo &MRI)
LLVM_READONLY int16_t getNamedOperandIdx(uint16_t Opcode, uint16_t NamedIdx)
bool isInlinableLiteralV2BF16(uint32_t Literal)
LLVM_READONLY int getFlatScratchInstSVfromSS(uint16_t Opcode)
unsigned getNumFlatOffsetBits(const MCSubtargetInfo &ST)
For pre-GFX12 FLAT instructions the offset must be positive; MSB is ignored and forced to zero.
bool isGFX12Plus(const MCSubtargetInfo &STI)
bool isInlinableLiteralV2F16(uint32_t Literal)
LLVM_READONLY int getGlobalVaddrOp(uint16_t Opcode)
bool isValid32BitLiteral(uint64_t Val, bool IsFP64)
bool isDPALU_DPP(const MCInstrDesc &OpDesc)
const uint64_t RSRC_ELEMENT_SIZE_SHIFT
LLVM_READONLY int getAddr64Inst(uint16_t Opcode)
bool isIntrinsicAlwaysUniform(unsigned IntrID)
LLVM_READONLY int getMFMAEarlyClobberOp(uint16_t Opcode)
bool isTrue16Inst(unsigned Opc)
LLVM_READONLY const MIMGDimInfo * getMIMGDimInfoByEncoding(uint8_t DimEnc)
bool isInlinableLiteral32(int32_t Literal, bool HasInv2Pi)
bool isSISrcOperand(const MCInstrDesc &Desc, unsigned OpNo)
Is this an AMDGPU specific source operand? These include registers, inline constants,...
const uint64_t RSRC_TID_ENABLE
bool isIntrinsicSourceOfDivergence(unsigned IntrID)
bool isGenericAtomic(unsigned Opc)
LLVM_READONLY bool hasNamedOperand(uint64_t Opcode, uint64_t NamedIdx)
LLVM_READNONE bool isInlinableIntLiteral(int64_t Literal)
Is this literal inlinable, and not one of the values intended for floating point values.
LLVM_READONLY int getCommuteRev(uint16_t Opcode)
unsigned getAddrSizeMIMGOp(const MIMGBaseOpcodeInfo *BaseOpcode, const MIMGDimInfo *Dim, bool IsA16, bool IsG16Supported)
@ OPERAND_KIMM32
Operand with 32-bit immediate that uses the constant bus.
@ OPERAND_REG_INLINE_C_V2INT32
@ OPERAND_REG_INLINE_C_FP64
@ OPERAND_REG_INLINE_C_BF16
@ OPERAND_REG_INLINE_C_V2BF16
@ OPERAND_REG_IMM_V2INT16
@ OPERAND_REG_INLINE_AC_V2FP16
@ OPERAND_REG_IMM_INT32
Operands with register or 32-bit immediate.
@ OPERAND_REG_IMM_BF16_DEFERRED
@ OPERAND_REG_INLINE_C_INT64
@ OPERAND_REG_INLINE_AC_BF16
@ OPERAND_REG_INLINE_C_INT16
Operands with register or inline constant.
@ OPERAND_REG_INLINE_AC_INT16
Operands with an AccVGPR register or inline constant.
@ OPERAND_REG_INLINE_C_V2FP16
@ OPERAND_REG_INLINE_AC_V2INT16
@ OPERAND_REG_INLINE_AC_FP16
@ OPERAND_REG_INLINE_AC_INT32
@ OPERAND_REG_INLINE_AC_FP32
@ OPERAND_REG_INLINE_AC_V2BF16
@ OPERAND_REG_IMM_V2INT32
@ OPERAND_REG_INLINE_C_FP32
@ OPERAND_REG_INLINE_C_INT32
@ OPERAND_REG_INLINE_C_V2INT16
@ OPERAND_REG_INLINE_AC_FP64
@ OPERAND_REG_INLINE_C_FP16
@ OPERAND_REG_INLINE_C_V2FP32
@ OPERAND_INLINE_SPLIT_BARRIER_INT32
@ OPERAND_REG_IMM_FP32_DEFERRED
@ OPERAND_REG_IMM_FP16_DEFERRED
LLVM_READONLY int getCommuteOrig(uint16_t Opcode)
unsigned getRegBitWidth(const TargetRegisterClass &RC)
Get the size in bits of a register from the register class RC.
int getMCOpcode(uint16_t Opcode, unsigned Gen)
const uint64_t RSRC_INDEX_STRIDE_SHIFT
LLVM_READONLY const MIMGBaseOpcodeInfo * getMIMGBaseOpcodeInfo(unsigned BaseOpcode)
bool isInlinableLiteralI16(int32_t Literal, bool HasInv2Pi)
bool isInlinableLiteral64(int64_t Literal, bool HasInv2Pi)
Is this literal inlinable.
LLVM_READONLY int getIfAddr64Inst(uint16_t Opcode)
Check if Opcode is an Addr64 opcode.
bool isGraphics(CallingConv::ID cc)
@ AMDGPU_CS
Used for Mesa/AMDPAL compute shaders.
@ AMDGPU_VS
Used for Mesa vertex shaders, or AMDPAL last shader stage before rasterization (vertex shader if tess...
@ AMDGPU_KERNEL
Used for AMDGPU code object kernels.
@ AMDGPU_HS
Used for Mesa/AMDPAL hull shaders (= tessellation control shaders).
@ AMDGPU_GS
Used for Mesa/AMDPAL geometry shaders.
@ AMDGPU_PS
Used for Mesa/AMDPAL pixel shaders.
@ Fast
Attempts to make calls as fast as possible (e.g.
@ AMDGPU_ES
Used for AMDPAL shader stage before geometry shader if geometry is in use.
@ AMDGPU_LS
Used for AMDPAL vertex shader if tessellation is in use.
@ C
The default llvm calling convention, compatible with C.
@ Implicit
Not emitted register (e.g. carry, or temporary result).
@ Define
Register definition.
@ Kill
The last use of a register.
@ Undef
Value of the register doesn't matter.
Not(const Pred &P) -> Not< Pred >
Reg
All possible values of the reg field in the ModR/M byte.
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
@ Low
Lower the current thread's priority such that it does not affect foreground tasks significantly.
void finalizeBundle(MachineBasicBlock &MBB, MachineBasicBlock::instr_iterator FirstMI, MachineBasicBlock::instr_iterator LastMI)
finalizeBundle - Finalize a machine instruction bundle which includes a sequence of instructions star...
TargetInstrInfo::RegSubRegPair getRegSubRegPair(const MachineOperand &O)
Create RegSubRegPair from a register MachineOperand.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
int popcount(T Value) noexcept
Count the number of set bits in a value.
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
bool execMayBeModifiedBeforeUse(const MachineRegisterInfo &MRI, Register VReg, const MachineInstr &DefMI, const MachineInstr &UseMI)
Return false if EXEC is not changed between the def of VReg at DefMI and the use at UseMI.
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
const Value * getUnderlyingObject(const Value *V, unsigned MaxLookup=6)
This method strips off any GEP address adjustments, pointer casts or llvm.threadlocal....
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
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 bool isPowerOf2_64(uint64_t Value)
Return true if the argument is a power of two > 0 (64 bit edition.)
int countr_zero(T Val)
Count number of 0's from the least significant bit to the most stopping at the first 1.
TargetInstrInfo::RegSubRegPair getRegSequenceSubReg(MachineInstr &MI, unsigned SubReg)
Return the SubReg component from REG_SEQUENCE.
static const MachineMemOperand::Flags MONoClobber
Mark the MMO of a uniform load if there are no potentially clobbering stores on any path from the sta...
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
unsigned Log2_32(uint32_t Value)
Return the floor log base 2 of the specified value, -1 if the value is zero.
auto reverse(ContainerTy &&C)
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
constexpr uint32_t Hi_32(uint64_t Value)
Return the high 32 bits of a 64 bit value.
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
MachineInstr * getVRegSubRegDef(const TargetInstrInfo::RegSubRegPair &P, MachineRegisterInfo &MRI)
Return the defining instruction for a given reg:subreg pair skipping copy like instructions and subre...
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
constexpr uint32_t Lo_32(uint64_t Value)
Return the low 32 bits of a 64 bit value.
constexpr T divideCeil(U Numerator, V Denominator)
Returns the integer ceil(Numerator / Denominator).
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
unsigned getUndefRegState(bool B)
@ Xor
Bitwise or logical XOR of integers.
unsigned getKillRegState(bool B)
bool isIntN(unsigned N, int64_t x)
Checks if an signed integer fits into the given (dynamic) bit width.
bool isTargetSpecificOpcode(unsigned Opcode)
Check whether the given Opcode is a target-specific opcode.
constexpr unsigned DefaultMemoryClusterDWordsLimit
constexpr unsigned BitWidth
static const MachineMemOperand::Flags MOLastUse
Mark the MMO of a load as the last use.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
InstructionUniformity
Enum describing how instructions behave with respect to uniformity and divergence,...
@ AlwaysUniform
The result values are always uniform.
@ NeverUniform
The result values can never be assumed to be uniform.
@ Default
The result values are uniform if and only if all operands are uniform.
uint64_t maxUIntN(uint64_t N)
Gets the maximum value for a N-bit unsigned integer.
bool execMayBeModifiedBeforeAnyUse(const MachineRegisterInfo &MRI, Register VReg, const MachineInstr &DefMI)
Return false if EXEC is not changed between the def of VReg at DefMI and all its uses.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
static Semantics SemanticsToEnum(const llvm::fltSemantics &Sem)
This struct is a compact representation of a valid (non-zero power of two) alignment.
uint64_t value() const
This is a hole in the type system and should not be abused.
Description of the encoding of one expression Op.
SparseBitVector AliveBlocks
AliveBlocks - Set of blocks in which this value is alive completely through.
This class contains a discriminated union of information about pointers in memory operands,...
static MachinePointerInfo getFixedStack(MachineFunction &MF, int FI, int64_t Offset=0)
Return a MachinePointerInfo record that refers to the specified FrameIndex.
Utility to store machine instructions worklist.
MachineInstr * top() const
bool isDeferred(MachineInstr *MI)
SetVector< MachineInstr * > & getDeferredList()
void insert(MachineInstr *MI)
A pair composed of a register and a sub-register index.