1 //===-- SIInstrInfo.cpp - SI Instruction Information ---------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 /// \file 11 /// \brief SI Implementation of TargetInstrInfo. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #include "SIInstrInfo.h" 16 #include "AMDGPUTargetMachine.h" 17 #include "GCNHazardRecognizer.h" 18 #include "SIDefines.h" 19 #include "SIMachineFunctionInfo.h" 20 #include "llvm/CodeGen/MachineFrameInfo.h" 21 #include "llvm/CodeGen/MachineInstrBuilder.h" 22 #include "llvm/CodeGen/MachineRegisterInfo.h" 23 #include "llvm/CodeGen/ScheduleDAG.h" 24 #include "llvm/IR/Function.h" 25 #include "llvm/CodeGen/RegisterScavenging.h" 26 #include "llvm/MC/MCInstrDesc.h" 27 #include "llvm/Support/Debug.h" 28 29 using namespace llvm; 30 31 SIInstrInfo::SIInstrInfo(const SISubtarget &ST) 32 : AMDGPUInstrInfo(ST), RI(), ST(ST) {} 33 34 //===----------------------------------------------------------------------===// 35 // TargetInstrInfo callbacks 36 //===----------------------------------------------------------------------===// 37 38 static unsigned getNumOperandsNoGlue(SDNode *Node) { 39 unsigned N = Node->getNumOperands(); 40 while (N && Node->getOperand(N - 1).getValueType() == MVT::Glue) 41 --N; 42 return N; 43 } 44 45 static SDValue findChainOperand(SDNode *Load) { 46 SDValue LastOp = Load->getOperand(getNumOperandsNoGlue(Load) - 1); 47 assert(LastOp.getValueType() == MVT::Other && "Chain missing from load node"); 48 return LastOp; 49 } 50 51 /// \brief Returns true if both nodes have the same value for the given 52 /// operand \p Op, or if both nodes do not have this operand. 53 static bool nodesHaveSameOperandValue(SDNode *N0, SDNode* N1, unsigned OpName) { 54 unsigned Opc0 = N0->getMachineOpcode(); 55 unsigned Opc1 = N1->getMachineOpcode(); 56 57 int Op0Idx = AMDGPU::getNamedOperandIdx(Opc0, OpName); 58 int Op1Idx = AMDGPU::getNamedOperandIdx(Opc1, OpName); 59 60 if (Op0Idx == -1 && Op1Idx == -1) 61 return true; 62 63 64 if ((Op0Idx == -1 && Op1Idx != -1) || 65 (Op1Idx == -1 && Op0Idx != -1)) 66 return false; 67 68 // getNamedOperandIdx returns the index for the MachineInstr's operands, 69 // which includes the result as the first operand. We are indexing into the 70 // MachineSDNode's operands, so we need to skip the result operand to get 71 // the real index. 72 --Op0Idx; 73 --Op1Idx; 74 75 return N0->getOperand(Op0Idx) == N1->getOperand(Op1Idx); 76 } 77 78 bool SIInstrInfo::isReallyTriviallyReMaterializable(const MachineInstr &MI, 79 AliasAnalysis *AA) const { 80 // TODO: The generic check fails for VALU instructions that should be 81 // rematerializable due to implicit reads of exec. We really want all of the 82 // generic logic for this except for this. 83 switch (MI.getOpcode()) { 84 case AMDGPU::V_MOV_B32_e32: 85 case AMDGPU::V_MOV_B32_e64: 86 case AMDGPU::V_MOV_B64_PSEUDO: 87 return true; 88 default: 89 return false; 90 } 91 } 92 93 bool SIInstrInfo::areLoadsFromSameBasePtr(SDNode *Load0, SDNode *Load1, 94 int64_t &Offset0, 95 int64_t &Offset1) const { 96 if (!Load0->isMachineOpcode() || !Load1->isMachineOpcode()) 97 return false; 98 99 unsigned Opc0 = Load0->getMachineOpcode(); 100 unsigned Opc1 = Load1->getMachineOpcode(); 101 102 // Make sure both are actually loads. 103 if (!get(Opc0).mayLoad() || !get(Opc1).mayLoad()) 104 return false; 105 106 if (isDS(Opc0) && isDS(Opc1)) { 107 108 // FIXME: Handle this case: 109 if (getNumOperandsNoGlue(Load0) != getNumOperandsNoGlue(Load1)) 110 return false; 111 112 // Check base reg. 113 if (Load0->getOperand(1) != Load1->getOperand(1)) 114 return false; 115 116 // Check chain. 117 if (findChainOperand(Load0) != findChainOperand(Load1)) 118 return false; 119 120 // Skip read2 / write2 variants for simplicity. 121 // TODO: We should report true if the used offsets are adjacent (excluded 122 // st64 versions). 123 if (AMDGPU::getNamedOperandIdx(Opc0, AMDGPU::OpName::data1) != -1 || 124 AMDGPU::getNamedOperandIdx(Opc1, AMDGPU::OpName::data1) != -1) 125 return false; 126 127 Offset0 = cast<ConstantSDNode>(Load0->getOperand(2))->getZExtValue(); 128 Offset1 = cast<ConstantSDNode>(Load1->getOperand(2))->getZExtValue(); 129 return true; 130 } 131 132 if (isSMRD(Opc0) && isSMRD(Opc1)) { 133 assert(getNumOperandsNoGlue(Load0) == getNumOperandsNoGlue(Load1)); 134 135 // Check base reg. 136 if (Load0->getOperand(0) != Load1->getOperand(0)) 137 return false; 138 139 const ConstantSDNode *Load0Offset = 140 dyn_cast<ConstantSDNode>(Load0->getOperand(1)); 141 const ConstantSDNode *Load1Offset = 142 dyn_cast<ConstantSDNode>(Load1->getOperand(1)); 143 144 if (!Load0Offset || !Load1Offset) 145 return false; 146 147 // Check chain. 148 if (findChainOperand(Load0) != findChainOperand(Load1)) 149 return false; 150 151 Offset0 = Load0Offset->getZExtValue(); 152 Offset1 = Load1Offset->getZExtValue(); 153 return true; 154 } 155 156 // MUBUF and MTBUF can access the same addresses. 157 if ((isMUBUF(Opc0) || isMTBUF(Opc0)) && (isMUBUF(Opc1) || isMTBUF(Opc1))) { 158 159 // MUBUF and MTBUF have vaddr at different indices. 160 if (!nodesHaveSameOperandValue(Load0, Load1, AMDGPU::OpName::soffset) || 161 findChainOperand(Load0) != findChainOperand(Load1) || 162 !nodesHaveSameOperandValue(Load0, Load1, AMDGPU::OpName::vaddr) || 163 !nodesHaveSameOperandValue(Load0, Load1, AMDGPU::OpName::srsrc)) 164 return false; 165 166 int OffIdx0 = AMDGPU::getNamedOperandIdx(Opc0, AMDGPU::OpName::offset); 167 int OffIdx1 = AMDGPU::getNamedOperandIdx(Opc1, AMDGPU::OpName::offset); 168 169 if (OffIdx0 == -1 || OffIdx1 == -1) 170 return false; 171 172 // getNamedOperandIdx returns the index for MachineInstrs. Since they 173 // inlcude the output in the operand list, but SDNodes don't, we need to 174 // subtract the index by one. 175 --OffIdx0; 176 --OffIdx1; 177 178 SDValue Off0 = Load0->getOperand(OffIdx0); 179 SDValue Off1 = Load1->getOperand(OffIdx1); 180 181 // The offset might be a FrameIndexSDNode. 182 if (!isa<ConstantSDNode>(Off0) || !isa<ConstantSDNode>(Off1)) 183 return false; 184 185 Offset0 = cast<ConstantSDNode>(Off0)->getZExtValue(); 186 Offset1 = cast<ConstantSDNode>(Off1)->getZExtValue(); 187 return true; 188 } 189 190 return false; 191 } 192 193 static bool isStride64(unsigned Opc) { 194 switch (Opc) { 195 case AMDGPU::DS_READ2ST64_B32: 196 case AMDGPU::DS_READ2ST64_B64: 197 case AMDGPU::DS_WRITE2ST64_B32: 198 case AMDGPU::DS_WRITE2ST64_B64: 199 return true; 200 default: 201 return false; 202 } 203 } 204 205 bool SIInstrInfo::getMemOpBaseRegImmOfs(MachineInstr &LdSt, unsigned &BaseReg, 206 int64_t &Offset, 207 const TargetRegisterInfo *TRI) const { 208 unsigned Opc = LdSt.getOpcode(); 209 210 if (isDS(LdSt)) { 211 const MachineOperand *OffsetImm = 212 getNamedOperand(LdSt, AMDGPU::OpName::offset); 213 if (OffsetImm) { 214 // Normal, single offset LDS instruction. 215 const MachineOperand *AddrReg = 216 getNamedOperand(LdSt, AMDGPU::OpName::addr); 217 218 BaseReg = AddrReg->getReg(); 219 Offset = OffsetImm->getImm(); 220 return true; 221 } 222 223 // The 2 offset instructions use offset0 and offset1 instead. We can treat 224 // these as a load with a single offset if the 2 offsets are consecutive. We 225 // will use this for some partially aligned loads. 226 const MachineOperand *Offset0Imm = 227 getNamedOperand(LdSt, AMDGPU::OpName::offset0); 228 const MachineOperand *Offset1Imm = 229 getNamedOperand(LdSt, AMDGPU::OpName::offset1); 230 231 uint8_t Offset0 = Offset0Imm->getImm(); 232 uint8_t Offset1 = Offset1Imm->getImm(); 233 234 if (Offset1 > Offset0 && Offset1 - Offset0 == 1) { 235 // Each of these offsets is in element sized units, so we need to convert 236 // to bytes of the individual reads. 237 238 unsigned EltSize; 239 if (LdSt.mayLoad()) 240 EltSize = getOpRegClass(LdSt, 0)->getSize() / 2; 241 else { 242 assert(LdSt.mayStore()); 243 int Data0Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::data0); 244 EltSize = getOpRegClass(LdSt, Data0Idx)->getSize(); 245 } 246 247 if (isStride64(Opc)) 248 EltSize *= 64; 249 250 const MachineOperand *AddrReg = 251 getNamedOperand(LdSt, AMDGPU::OpName::addr); 252 BaseReg = AddrReg->getReg(); 253 Offset = EltSize * Offset0; 254 return true; 255 } 256 257 return false; 258 } 259 260 if (isMUBUF(LdSt) || isMTBUF(LdSt)) { 261 if (AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::soffset) != -1) 262 return false; 263 264 const MachineOperand *AddrReg = 265 getNamedOperand(LdSt, AMDGPU::OpName::vaddr); 266 if (!AddrReg) 267 return false; 268 269 const MachineOperand *OffsetImm = 270 getNamedOperand(LdSt, AMDGPU::OpName::offset); 271 BaseReg = AddrReg->getReg(); 272 Offset = OffsetImm->getImm(); 273 return true; 274 } 275 276 if (isSMRD(LdSt)) { 277 const MachineOperand *OffsetImm = 278 getNamedOperand(LdSt, AMDGPU::OpName::offset); 279 if (!OffsetImm) 280 return false; 281 282 const MachineOperand *SBaseReg = 283 getNamedOperand(LdSt, AMDGPU::OpName::sbase); 284 BaseReg = SBaseReg->getReg(); 285 Offset = OffsetImm->getImm(); 286 return true; 287 } 288 289 if (isFLAT(LdSt)) { 290 const MachineOperand *AddrReg = getNamedOperand(LdSt, AMDGPU::OpName::addr); 291 BaseReg = AddrReg->getReg(); 292 Offset = 0; 293 return true; 294 } 295 296 return false; 297 } 298 299 bool SIInstrInfo::shouldClusterMemOps(MachineInstr &FirstLdSt, 300 MachineInstr &SecondLdSt, 301 unsigned NumLoads) const { 302 const MachineOperand *FirstDst = nullptr; 303 const MachineOperand *SecondDst = nullptr; 304 305 if (isDS(FirstLdSt) && isDS(SecondLdSt)) { 306 FirstDst = getNamedOperand(FirstLdSt, AMDGPU::OpName::vdst); 307 SecondDst = getNamedOperand(SecondLdSt, AMDGPU::OpName::vdst); 308 } 309 310 if (isSMRD(FirstLdSt) && isSMRD(SecondLdSt)) { 311 FirstDst = getNamedOperand(FirstLdSt, AMDGPU::OpName::sdst); 312 SecondDst = getNamedOperand(SecondLdSt, AMDGPU::OpName::sdst); 313 } 314 315 if ((isMUBUF(FirstLdSt) && isMUBUF(SecondLdSt)) || 316 (isMTBUF(FirstLdSt) && isMTBUF(SecondLdSt))) { 317 FirstDst = getNamedOperand(FirstLdSt, AMDGPU::OpName::vdata); 318 SecondDst = getNamedOperand(SecondLdSt, AMDGPU::OpName::vdata); 319 } 320 321 if (!FirstDst || !SecondDst) 322 return false; 323 324 // Try to limit clustering based on the total number of bytes loaded 325 // rather than the number of instructions. This is done to help reduce 326 // register pressure. The method used is somewhat inexact, though, 327 // because it assumes that all loads in the cluster will load the 328 // same number of bytes as FirstLdSt. 329 330 // The unit of this value is bytes. 331 // FIXME: This needs finer tuning. 332 unsigned LoadClusterThreshold = 16; 333 334 const MachineRegisterInfo &MRI = 335 FirstLdSt.getParent()->getParent()->getRegInfo(); 336 const TargetRegisterClass *DstRC = MRI.getRegClass(FirstDst->getReg()); 337 338 return (NumLoads * DstRC->getSize()) <= LoadClusterThreshold; 339 } 340 341 void SIInstrInfo::copyPhysReg(MachineBasicBlock &MBB, 342 MachineBasicBlock::iterator MI, 343 const DebugLoc &DL, unsigned DestReg, 344 unsigned SrcReg, bool KillSrc) const { 345 346 // If we are trying to copy to or from SCC, there is a bug somewhere else in 347 // the backend. While it may be theoretically possible to do this, it should 348 // never be necessary. 349 assert(DestReg != AMDGPU::SCC && SrcReg != AMDGPU::SCC); 350 351 static const int16_t Sub0_15[] = { 352 AMDGPU::sub0, AMDGPU::sub1, AMDGPU::sub2, AMDGPU::sub3, 353 AMDGPU::sub4, AMDGPU::sub5, AMDGPU::sub6, AMDGPU::sub7, 354 AMDGPU::sub8, AMDGPU::sub9, AMDGPU::sub10, AMDGPU::sub11, 355 AMDGPU::sub12, AMDGPU::sub13, AMDGPU::sub14, AMDGPU::sub15, 356 }; 357 358 static const int16_t Sub0_15_64[] = { 359 AMDGPU::sub0_sub1, AMDGPU::sub2_sub3, 360 AMDGPU::sub4_sub5, AMDGPU::sub6_sub7, 361 AMDGPU::sub8_sub9, AMDGPU::sub10_sub11, 362 AMDGPU::sub12_sub13, AMDGPU::sub14_sub15, 363 }; 364 365 static const int16_t Sub0_7[] = { 366 AMDGPU::sub0, AMDGPU::sub1, AMDGPU::sub2, AMDGPU::sub3, 367 AMDGPU::sub4, AMDGPU::sub5, AMDGPU::sub6, AMDGPU::sub7, 368 }; 369 370 static const int16_t Sub0_7_64[] = { 371 AMDGPU::sub0_sub1, AMDGPU::sub2_sub3, 372 AMDGPU::sub4_sub5, AMDGPU::sub6_sub7, 373 }; 374 375 static const int16_t Sub0_3[] = { 376 AMDGPU::sub0, AMDGPU::sub1, AMDGPU::sub2, AMDGPU::sub3, 377 }; 378 379 static const int16_t Sub0_3_64[] = { 380 AMDGPU::sub0_sub1, AMDGPU::sub2_sub3, 381 }; 382 383 static const int16_t Sub0_2[] = { 384 AMDGPU::sub0, AMDGPU::sub1, AMDGPU::sub2, 385 }; 386 387 static const int16_t Sub0_1[] = { 388 AMDGPU::sub0, AMDGPU::sub1, 389 }; 390 391 unsigned Opcode; 392 ArrayRef<int16_t> SubIndices; 393 bool Forward; 394 395 if (AMDGPU::SReg_32RegClass.contains(DestReg)) { 396 assert(AMDGPU::SReg_32RegClass.contains(SrcReg)); 397 BuildMI(MBB, MI, DL, get(AMDGPU::S_MOV_B32), DestReg) 398 .addReg(SrcReg, getKillRegState(KillSrc)); 399 return; 400 401 } else if (AMDGPU::SReg_64RegClass.contains(DestReg)) { 402 if (DestReg == AMDGPU::VCC) { 403 if (AMDGPU::SReg_64RegClass.contains(SrcReg)) { 404 BuildMI(MBB, MI, DL, get(AMDGPU::S_MOV_B64), AMDGPU::VCC) 405 .addReg(SrcReg, getKillRegState(KillSrc)); 406 } else { 407 // FIXME: Hack until VReg_1 removed. 408 assert(AMDGPU::VGPR_32RegClass.contains(SrcReg)); 409 BuildMI(MBB, MI, DL, get(AMDGPU::V_CMP_NE_I32_e32)) 410 .addImm(0) 411 .addReg(SrcReg, getKillRegState(KillSrc)); 412 } 413 414 return; 415 } 416 417 assert(AMDGPU::SReg_64RegClass.contains(SrcReg)); 418 BuildMI(MBB, MI, DL, get(AMDGPU::S_MOV_B64), DestReg) 419 .addReg(SrcReg, getKillRegState(KillSrc)); 420 return; 421 422 } else if (AMDGPU::SReg_128RegClass.contains(DestReg)) { 423 assert(AMDGPU::SReg_128RegClass.contains(SrcReg)); 424 Opcode = AMDGPU::S_MOV_B64; 425 SubIndices = Sub0_3_64; 426 427 } else if (AMDGPU::SReg_256RegClass.contains(DestReg)) { 428 assert(AMDGPU::SReg_256RegClass.contains(SrcReg)); 429 Opcode = AMDGPU::S_MOV_B64; 430 SubIndices = Sub0_7_64; 431 432 } else if (AMDGPU::SReg_512RegClass.contains(DestReg)) { 433 assert(AMDGPU::SReg_512RegClass.contains(SrcReg)); 434 Opcode = AMDGPU::S_MOV_B64; 435 SubIndices = Sub0_15_64; 436 437 } else if (AMDGPU::VGPR_32RegClass.contains(DestReg)) { 438 assert(AMDGPU::VGPR_32RegClass.contains(SrcReg) || 439 AMDGPU::SReg_32RegClass.contains(SrcReg)); 440 BuildMI(MBB, MI, DL, get(AMDGPU::V_MOV_B32_e32), DestReg) 441 .addReg(SrcReg, getKillRegState(KillSrc)); 442 return; 443 444 } else if (AMDGPU::VReg_64RegClass.contains(DestReg)) { 445 assert(AMDGPU::VReg_64RegClass.contains(SrcReg) || 446 AMDGPU::SReg_64RegClass.contains(SrcReg)); 447 Opcode = AMDGPU::V_MOV_B32_e32; 448 SubIndices = Sub0_1; 449 450 } else if (AMDGPU::VReg_96RegClass.contains(DestReg)) { 451 assert(AMDGPU::VReg_96RegClass.contains(SrcReg)); 452 Opcode = AMDGPU::V_MOV_B32_e32; 453 SubIndices = Sub0_2; 454 455 } else if (AMDGPU::VReg_128RegClass.contains(DestReg)) { 456 assert(AMDGPU::VReg_128RegClass.contains(SrcReg) || 457 AMDGPU::SReg_128RegClass.contains(SrcReg)); 458 Opcode = AMDGPU::V_MOV_B32_e32; 459 SubIndices = Sub0_3; 460 461 } else if (AMDGPU::VReg_256RegClass.contains(DestReg)) { 462 assert(AMDGPU::VReg_256RegClass.contains(SrcReg) || 463 AMDGPU::SReg_256RegClass.contains(SrcReg)); 464 Opcode = AMDGPU::V_MOV_B32_e32; 465 SubIndices = Sub0_7; 466 467 } else if (AMDGPU::VReg_512RegClass.contains(DestReg)) { 468 assert(AMDGPU::VReg_512RegClass.contains(SrcReg) || 469 AMDGPU::SReg_512RegClass.contains(SrcReg)); 470 Opcode = AMDGPU::V_MOV_B32_e32; 471 SubIndices = Sub0_15; 472 473 } else { 474 llvm_unreachable("Can't copy register!"); 475 } 476 477 if (RI.getHWRegIndex(DestReg) <= RI.getHWRegIndex(SrcReg)) 478 Forward = true; 479 else 480 Forward = false; 481 482 for (unsigned Idx = 0; Idx < SubIndices.size(); ++Idx) { 483 unsigned SubIdx; 484 if (Forward) 485 SubIdx = SubIndices[Idx]; 486 else 487 SubIdx = SubIndices[SubIndices.size() - Idx - 1]; 488 489 MachineInstrBuilder Builder = BuildMI(MBB, MI, DL, 490 get(Opcode), RI.getSubReg(DestReg, SubIdx)); 491 492 Builder.addReg(RI.getSubReg(SrcReg, SubIdx)); 493 494 if (Idx == SubIndices.size() - 1) 495 Builder.addReg(SrcReg, getKillRegState(KillSrc) | RegState::Implicit); 496 497 if (Idx == 0) 498 Builder.addReg(DestReg, RegState::Define | RegState::Implicit); 499 } 500 } 501 502 int SIInstrInfo::commuteOpcode(const MachineInstr &MI) const { 503 const unsigned Opcode = MI.getOpcode(); 504 505 int NewOpc; 506 507 // Try to map original to commuted opcode 508 NewOpc = AMDGPU::getCommuteRev(Opcode); 509 if (NewOpc != -1) 510 // Check if the commuted (REV) opcode exists on the target. 511 return pseudoToMCOpcode(NewOpc) != -1 ? NewOpc : -1; 512 513 // Try to map commuted to original opcode 514 NewOpc = AMDGPU::getCommuteOrig(Opcode); 515 if (NewOpc != -1) 516 // Check if the original (non-REV) opcode exists on the target. 517 return pseudoToMCOpcode(NewOpc) != -1 ? NewOpc : -1; 518 519 return Opcode; 520 } 521 522 unsigned SIInstrInfo::getMovOpcode(const TargetRegisterClass *DstRC) const { 523 524 if (DstRC->getSize() == 4) { 525 return RI.isSGPRClass(DstRC) ? AMDGPU::S_MOV_B32 : AMDGPU::V_MOV_B32_e32; 526 } else if (DstRC->getSize() == 8 && RI.isSGPRClass(DstRC)) { 527 return AMDGPU::S_MOV_B64; 528 } else if (DstRC->getSize() == 8 && !RI.isSGPRClass(DstRC)) { 529 return AMDGPU::V_MOV_B64_PSEUDO; 530 } 531 return AMDGPU::COPY; 532 } 533 534 static unsigned getSGPRSpillSaveOpcode(unsigned Size) { 535 switch (Size) { 536 case 4: 537 return AMDGPU::SI_SPILL_S32_SAVE; 538 case 8: 539 return AMDGPU::SI_SPILL_S64_SAVE; 540 case 16: 541 return AMDGPU::SI_SPILL_S128_SAVE; 542 case 32: 543 return AMDGPU::SI_SPILL_S256_SAVE; 544 case 64: 545 return AMDGPU::SI_SPILL_S512_SAVE; 546 default: 547 llvm_unreachable("unknown register size"); 548 } 549 } 550 551 static unsigned getVGPRSpillSaveOpcode(unsigned Size) { 552 switch (Size) { 553 case 4: 554 return AMDGPU::SI_SPILL_V32_SAVE; 555 case 8: 556 return AMDGPU::SI_SPILL_V64_SAVE; 557 case 12: 558 return AMDGPU::SI_SPILL_V96_SAVE; 559 case 16: 560 return AMDGPU::SI_SPILL_V128_SAVE; 561 case 32: 562 return AMDGPU::SI_SPILL_V256_SAVE; 563 case 64: 564 return AMDGPU::SI_SPILL_V512_SAVE; 565 default: 566 llvm_unreachable("unknown register size"); 567 } 568 } 569 570 void SIInstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB, 571 MachineBasicBlock::iterator MI, 572 unsigned SrcReg, bool isKill, 573 int FrameIndex, 574 const TargetRegisterClass *RC, 575 const TargetRegisterInfo *TRI) const { 576 MachineFunction *MF = MBB.getParent(); 577 SIMachineFunctionInfo *MFI = MF->getInfo<SIMachineFunctionInfo>(); 578 MachineFrameInfo *FrameInfo = MF->getFrameInfo(); 579 DebugLoc DL = MBB.findDebugLoc(MI); 580 581 unsigned Size = FrameInfo->getObjectSize(FrameIndex); 582 unsigned Align = FrameInfo->getObjectAlignment(FrameIndex); 583 MachinePointerInfo PtrInfo 584 = MachinePointerInfo::getFixedStack(*MF, FrameIndex); 585 MachineMemOperand *MMO 586 = MF->getMachineMemOperand(PtrInfo, MachineMemOperand::MOStore, 587 Size, Align); 588 589 if (RI.isSGPRClass(RC)) { 590 MFI->setHasSpilledSGPRs(); 591 592 if (TargetRegisterInfo::isVirtualRegister(SrcReg) && RC->getSize() == 4) { 593 // m0 may not be allowed for readlane. 594 MachineRegisterInfo &MRI = MF->getRegInfo(); 595 MRI.constrainRegClass(SrcReg, &AMDGPU::SReg_32_XM0RegClass); 596 } 597 598 // We are only allowed to create one new instruction when spilling 599 // registers, so we need to use pseudo instruction for spilling 600 // SGPRs. 601 unsigned Opcode = getSGPRSpillSaveOpcode(RC->getSize()); 602 BuildMI(MBB, MI, DL, get(Opcode)) 603 .addReg(SrcReg, getKillRegState(isKill)) // src 604 .addFrameIndex(FrameIndex) // frame_idx 605 .addMemOperand(MMO); 606 607 return; 608 } 609 610 if (!ST.isVGPRSpillingEnabled(*MF->getFunction())) { 611 LLVMContext &Ctx = MF->getFunction()->getContext(); 612 Ctx.emitError("SIInstrInfo::storeRegToStackSlot - Do not know how to" 613 " spill register"); 614 BuildMI(MBB, MI, DL, get(AMDGPU::KILL)) 615 .addReg(SrcReg); 616 617 return; 618 } 619 620 assert(RI.hasVGPRs(RC) && "Only VGPR spilling expected"); 621 622 unsigned Opcode = getVGPRSpillSaveOpcode(RC->getSize()); 623 MFI->setHasSpilledVGPRs(); 624 BuildMI(MBB, MI, DL, get(Opcode)) 625 .addReg(SrcReg, getKillRegState(isKill)) // src 626 .addFrameIndex(FrameIndex) // frame_idx 627 .addReg(MFI->getScratchRSrcReg()) // scratch_rsrc 628 .addReg(MFI->getScratchWaveOffsetReg()) // scratch_offset 629 .addImm(0) // offset 630 .addMemOperand(MMO); 631 } 632 633 static unsigned getSGPRSpillRestoreOpcode(unsigned Size) { 634 switch (Size) { 635 case 4: 636 return AMDGPU::SI_SPILL_S32_RESTORE; 637 case 8: 638 return AMDGPU::SI_SPILL_S64_RESTORE; 639 case 16: 640 return AMDGPU::SI_SPILL_S128_RESTORE; 641 case 32: 642 return AMDGPU::SI_SPILL_S256_RESTORE; 643 case 64: 644 return AMDGPU::SI_SPILL_S512_RESTORE; 645 default: 646 llvm_unreachable("unknown register size"); 647 } 648 } 649 650 static unsigned getVGPRSpillRestoreOpcode(unsigned Size) { 651 switch (Size) { 652 case 4: 653 return AMDGPU::SI_SPILL_V32_RESTORE; 654 case 8: 655 return AMDGPU::SI_SPILL_V64_RESTORE; 656 case 12: 657 return AMDGPU::SI_SPILL_V96_RESTORE; 658 case 16: 659 return AMDGPU::SI_SPILL_V128_RESTORE; 660 case 32: 661 return AMDGPU::SI_SPILL_V256_RESTORE; 662 case 64: 663 return AMDGPU::SI_SPILL_V512_RESTORE; 664 default: 665 llvm_unreachable("unknown register size"); 666 } 667 } 668 669 void SIInstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB, 670 MachineBasicBlock::iterator MI, 671 unsigned DestReg, int FrameIndex, 672 const TargetRegisterClass *RC, 673 const TargetRegisterInfo *TRI) const { 674 MachineFunction *MF = MBB.getParent(); 675 const SIMachineFunctionInfo *MFI = MF->getInfo<SIMachineFunctionInfo>(); 676 MachineFrameInfo *FrameInfo = MF->getFrameInfo(); 677 DebugLoc DL = MBB.findDebugLoc(MI); 678 unsigned Align = FrameInfo->getObjectAlignment(FrameIndex); 679 unsigned Size = FrameInfo->getObjectSize(FrameIndex); 680 681 MachinePointerInfo PtrInfo 682 = MachinePointerInfo::getFixedStack(*MF, FrameIndex); 683 684 MachineMemOperand *MMO = MF->getMachineMemOperand( 685 PtrInfo, MachineMemOperand::MOLoad, Size, Align); 686 687 if (RI.isSGPRClass(RC)) { 688 // FIXME: Maybe this should not include a memoperand because it will be 689 // lowered to non-memory instructions. 690 unsigned Opcode = getSGPRSpillRestoreOpcode(RC->getSize()); 691 692 if (TargetRegisterInfo::isVirtualRegister(DestReg) && RC->getSize() == 4) { 693 // m0 may not be allowed for readlane. 694 MachineRegisterInfo &MRI = MF->getRegInfo(); 695 MRI.constrainRegClass(DestReg, &AMDGPU::SReg_32_XM0RegClass); 696 } 697 698 BuildMI(MBB, MI, DL, get(Opcode), DestReg) 699 .addFrameIndex(FrameIndex) // frame_idx 700 .addMemOperand(MMO); 701 702 return; 703 } 704 705 if (!ST.isVGPRSpillingEnabled(*MF->getFunction())) { 706 LLVMContext &Ctx = MF->getFunction()->getContext(); 707 Ctx.emitError("SIInstrInfo::loadRegFromStackSlot - Do not know how to" 708 " restore register"); 709 BuildMI(MBB, MI, DL, get(AMDGPU::IMPLICIT_DEF), DestReg); 710 711 return; 712 } 713 714 assert(RI.hasVGPRs(RC) && "Only VGPR spilling expected"); 715 716 unsigned Opcode = getVGPRSpillRestoreOpcode(RC->getSize()); 717 BuildMI(MBB, MI, DL, get(Opcode), DestReg) 718 .addFrameIndex(FrameIndex) // frame_idx 719 .addReg(MFI->getScratchRSrcReg()) // scratch_rsrc 720 .addReg(MFI->getScratchWaveOffsetReg()) // scratch_offset 721 .addImm(0) // offset 722 .addMemOperand(MMO); 723 } 724 725 /// \param @Offset Offset in bytes of the FrameIndex being spilled 726 unsigned SIInstrInfo::calculateLDSSpillAddress( 727 MachineBasicBlock &MBB, MachineInstr &MI, RegScavenger *RS, unsigned TmpReg, 728 unsigned FrameOffset, unsigned Size) const { 729 MachineFunction *MF = MBB.getParent(); 730 SIMachineFunctionInfo *MFI = MF->getInfo<SIMachineFunctionInfo>(); 731 const SISubtarget &ST = MF->getSubtarget<SISubtarget>(); 732 const SIRegisterInfo *TRI = ST.getRegisterInfo(); 733 DebugLoc DL = MBB.findDebugLoc(MI); 734 unsigned WorkGroupSize = MFI->getMaximumWorkGroupSize(*MF); 735 unsigned WavefrontSize = ST.getWavefrontSize(); 736 737 unsigned TIDReg = MFI->getTIDReg(); 738 if (!MFI->hasCalculatedTID()) { 739 MachineBasicBlock &Entry = MBB.getParent()->front(); 740 MachineBasicBlock::iterator Insert = Entry.front(); 741 DebugLoc DL = Insert->getDebugLoc(); 742 743 TIDReg = RI.findUnusedRegister(MF->getRegInfo(), &AMDGPU::VGPR_32RegClass); 744 if (TIDReg == AMDGPU::NoRegister) 745 return TIDReg; 746 747 if (!AMDGPU::isShader(MF->getFunction()->getCallingConv()) && 748 WorkGroupSize > WavefrontSize) { 749 750 unsigned TIDIGXReg 751 = TRI->getPreloadedValue(*MF, SIRegisterInfo::WORKGROUP_ID_X); 752 unsigned TIDIGYReg 753 = TRI->getPreloadedValue(*MF, SIRegisterInfo::WORKGROUP_ID_Y); 754 unsigned TIDIGZReg 755 = TRI->getPreloadedValue(*MF, SIRegisterInfo::WORKGROUP_ID_Z); 756 unsigned InputPtrReg = 757 TRI->getPreloadedValue(*MF, SIRegisterInfo::KERNARG_SEGMENT_PTR); 758 for (unsigned Reg : {TIDIGXReg, TIDIGYReg, TIDIGZReg}) { 759 if (!Entry.isLiveIn(Reg)) 760 Entry.addLiveIn(Reg); 761 } 762 763 RS->enterBasicBlock(Entry); 764 // FIXME: Can we scavenge an SReg_64 and access the subregs? 765 unsigned STmp0 = RS->scavengeRegister(&AMDGPU::SGPR_32RegClass, 0); 766 unsigned STmp1 = RS->scavengeRegister(&AMDGPU::SGPR_32RegClass, 0); 767 BuildMI(Entry, Insert, DL, get(AMDGPU::S_LOAD_DWORD_IMM), STmp0) 768 .addReg(InputPtrReg) 769 .addImm(SI::KernelInputOffsets::NGROUPS_Z); 770 BuildMI(Entry, Insert, DL, get(AMDGPU::S_LOAD_DWORD_IMM), STmp1) 771 .addReg(InputPtrReg) 772 .addImm(SI::KernelInputOffsets::NGROUPS_Y); 773 774 // NGROUPS.X * NGROUPS.Y 775 BuildMI(Entry, Insert, DL, get(AMDGPU::S_MUL_I32), STmp1) 776 .addReg(STmp1) 777 .addReg(STmp0); 778 // (NGROUPS.X * NGROUPS.Y) * TIDIG.X 779 BuildMI(Entry, Insert, DL, get(AMDGPU::V_MUL_U32_U24_e32), TIDReg) 780 .addReg(STmp1) 781 .addReg(TIDIGXReg); 782 // NGROUPS.Z * TIDIG.Y + (NGROUPS.X * NGROPUS.Y * TIDIG.X) 783 BuildMI(Entry, Insert, DL, get(AMDGPU::V_MAD_U32_U24), TIDReg) 784 .addReg(STmp0) 785 .addReg(TIDIGYReg) 786 .addReg(TIDReg); 787 // (NGROUPS.Z * TIDIG.Y + (NGROUPS.X * NGROPUS.Y * TIDIG.X)) + TIDIG.Z 788 BuildMI(Entry, Insert, DL, get(AMDGPU::V_ADD_I32_e32), TIDReg) 789 .addReg(TIDReg) 790 .addReg(TIDIGZReg); 791 } else { 792 // Get the wave id 793 BuildMI(Entry, Insert, DL, get(AMDGPU::V_MBCNT_LO_U32_B32_e64), 794 TIDReg) 795 .addImm(-1) 796 .addImm(0); 797 798 BuildMI(Entry, Insert, DL, get(AMDGPU::V_MBCNT_HI_U32_B32_e64), 799 TIDReg) 800 .addImm(-1) 801 .addReg(TIDReg); 802 } 803 804 BuildMI(Entry, Insert, DL, get(AMDGPU::V_LSHLREV_B32_e32), 805 TIDReg) 806 .addImm(2) 807 .addReg(TIDReg); 808 MFI->setTIDReg(TIDReg); 809 } 810 811 // Add FrameIndex to LDS offset 812 unsigned LDSOffset = MFI->LDSSize + (FrameOffset * WorkGroupSize); 813 BuildMI(MBB, MI, DL, get(AMDGPU::V_ADD_I32_e32), TmpReg) 814 .addImm(LDSOffset) 815 .addReg(TIDReg); 816 817 return TmpReg; 818 } 819 820 void SIInstrInfo::insertWaitStates(MachineBasicBlock &MBB, 821 MachineBasicBlock::iterator MI, 822 int Count) const { 823 DebugLoc DL = MBB.findDebugLoc(MI); 824 while (Count > 0) { 825 int Arg; 826 if (Count >= 8) 827 Arg = 7; 828 else 829 Arg = Count - 1; 830 Count -= 8; 831 BuildMI(MBB, MI, DL, get(AMDGPU::S_NOP)) 832 .addImm(Arg); 833 } 834 } 835 836 void SIInstrInfo::insertNoop(MachineBasicBlock &MBB, 837 MachineBasicBlock::iterator MI) const { 838 insertWaitStates(MBB, MI, 1); 839 } 840 841 unsigned SIInstrInfo::getNumWaitStates(const MachineInstr &MI) const { 842 switch (MI.getOpcode()) { 843 default: return 1; // FIXME: Do wait states equal cycles? 844 845 case AMDGPU::S_NOP: 846 return MI.getOperand(0).getImm() + 1; 847 } 848 } 849 850 bool SIInstrInfo::expandPostRAPseudo(MachineInstr &MI) const { 851 MachineBasicBlock &MBB = *MI.getParent(); 852 DebugLoc DL = MBB.findDebugLoc(MI); 853 switch (MI.getOpcode()) { 854 default: return AMDGPUInstrInfo::expandPostRAPseudo(MI); 855 856 case AMDGPU::SGPR_USE: 857 // This is just a placeholder for register allocation. 858 MI.eraseFromParent(); 859 break; 860 861 case AMDGPU::V_MOV_B64_PSEUDO: { 862 unsigned Dst = MI.getOperand(0).getReg(); 863 unsigned DstLo = RI.getSubReg(Dst, AMDGPU::sub0); 864 unsigned DstHi = RI.getSubReg(Dst, AMDGPU::sub1); 865 866 const MachineOperand &SrcOp = MI.getOperand(1); 867 // FIXME: Will this work for 64-bit floating point immediates? 868 assert(!SrcOp.isFPImm()); 869 if (SrcOp.isImm()) { 870 APInt Imm(64, SrcOp.getImm()); 871 BuildMI(MBB, MI, DL, get(AMDGPU::V_MOV_B32_e32), DstLo) 872 .addImm(Imm.getLoBits(32).getZExtValue()) 873 .addReg(Dst, RegState::Implicit | RegState::Define); 874 BuildMI(MBB, MI, DL, get(AMDGPU::V_MOV_B32_e32), DstHi) 875 .addImm(Imm.getHiBits(32).getZExtValue()) 876 .addReg(Dst, RegState::Implicit | RegState::Define); 877 } else { 878 assert(SrcOp.isReg()); 879 BuildMI(MBB, MI, DL, get(AMDGPU::V_MOV_B32_e32), DstLo) 880 .addReg(RI.getSubReg(SrcOp.getReg(), AMDGPU::sub0)) 881 .addReg(Dst, RegState::Implicit | RegState::Define); 882 BuildMI(MBB, MI, DL, get(AMDGPU::V_MOV_B32_e32), DstHi) 883 .addReg(RI.getSubReg(SrcOp.getReg(), AMDGPU::sub1)) 884 .addReg(Dst, RegState::Implicit | RegState::Define); 885 } 886 MI.eraseFromParent(); 887 break; 888 } 889 890 case AMDGPU::V_CNDMASK_B64_PSEUDO: { 891 unsigned Dst = MI.getOperand(0).getReg(); 892 unsigned DstLo = RI.getSubReg(Dst, AMDGPU::sub0); 893 unsigned DstHi = RI.getSubReg(Dst, AMDGPU::sub1); 894 unsigned Src0 = MI.getOperand(1).getReg(); 895 unsigned Src1 = MI.getOperand(2).getReg(); 896 const MachineOperand &SrcCond = MI.getOperand(3); 897 898 BuildMI(MBB, MI, DL, get(AMDGPU::V_CNDMASK_B32_e64), DstLo) 899 .addReg(RI.getSubReg(Src0, AMDGPU::sub0)) 900 .addReg(RI.getSubReg(Src1, AMDGPU::sub0)) 901 .addReg(SrcCond.getReg()) 902 .addReg(Dst, RegState::Implicit | RegState::Define); 903 BuildMI(MBB, MI, DL, get(AMDGPU::V_CNDMASK_B32_e64), DstHi) 904 .addReg(RI.getSubReg(Src0, AMDGPU::sub1)) 905 .addReg(RI.getSubReg(Src1, AMDGPU::sub1)) 906 .addReg(SrcCond.getReg(), getKillRegState(SrcCond.isKill())) 907 .addReg(Dst, RegState::Implicit | RegState::Define); 908 MI.eraseFromParent(); 909 break; 910 } 911 912 case AMDGPU::SI_PC_ADD_REL_OFFSET: { 913 const SIRegisterInfo *TRI 914 = static_cast<const SIRegisterInfo *>(ST.getRegisterInfo()); 915 MachineFunction &MF = *MBB.getParent(); 916 unsigned Reg = MI.getOperand(0).getReg(); 917 unsigned RegLo = TRI->getSubReg(Reg, AMDGPU::sub0); 918 unsigned RegHi = TRI->getSubReg(Reg, AMDGPU::sub1); 919 920 // Create a bundle so these instructions won't be re-ordered by the 921 // post-RA scheduler. 922 MIBundleBuilder Bundler(MBB, MI); 923 Bundler.append(BuildMI(MF, DL, get(AMDGPU::S_GETPC_B64), Reg)); 924 925 // Add 32-bit offset from this instruction to the start of the 926 // constant data. 927 Bundler.append(BuildMI(MF, DL, get(AMDGPU::S_ADD_U32), RegLo) 928 .addReg(RegLo) 929 .addOperand(MI.getOperand(1))); 930 Bundler.append(BuildMI(MF, DL, get(AMDGPU::S_ADDC_U32), RegHi) 931 .addReg(RegHi) 932 .addImm(0)); 933 934 llvm::finalizeBundle(MBB, Bundler.begin()); 935 936 MI.eraseFromParent(); 937 break; 938 } 939 } 940 return true; 941 } 942 943 /// Commutes the operands in the given instruction. 944 /// The commutable operands are specified by their indices OpIdx0 and OpIdx1. 945 /// 946 /// Do not call this method for a non-commutable instruction or for 947 /// non-commutable pair of operand indices OpIdx0 and OpIdx1. 948 /// Even though the instruction is commutable, the method may still 949 /// fail to commute the operands, null pointer is returned in such cases. 950 MachineInstr *SIInstrInfo::commuteInstructionImpl(MachineInstr &MI, bool NewMI, 951 unsigned OpIdx0, 952 unsigned OpIdx1) const { 953 int CommutedOpcode = commuteOpcode(MI); 954 if (CommutedOpcode == -1) 955 return nullptr; 956 957 int Src0Idx = 958 AMDGPU::getNamedOperandIdx(MI.getOpcode(), AMDGPU::OpName::src0); 959 MachineOperand &Src0 = MI.getOperand(Src0Idx); 960 if (!Src0.isReg()) 961 return nullptr; 962 963 int Src1Idx = 964 AMDGPU::getNamedOperandIdx(MI.getOpcode(), AMDGPU::OpName::src1); 965 966 if ((OpIdx0 != static_cast<unsigned>(Src0Idx) || 967 OpIdx1 != static_cast<unsigned>(Src1Idx)) && 968 (OpIdx0 != static_cast<unsigned>(Src1Idx) || 969 OpIdx1 != static_cast<unsigned>(Src0Idx))) 970 return nullptr; 971 972 MachineOperand &Src1 = MI.getOperand(Src1Idx); 973 974 if (isVOP2(MI) || isVOPC(MI)) { 975 const MCInstrDesc &InstrDesc = MI.getDesc(); 976 // For VOP2 and VOPC instructions, any operand type is valid to use for 977 // src0. Make sure we can use the src0 as src1. 978 // 979 // We could be stricter here and only allow commuting if there is a reason 980 // to do so. i.e. if both operands are VGPRs there is no real benefit, 981 // although MachineCSE attempts to find matches by commuting. 982 const MachineRegisterInfo &MRI = MI.getParent()->getParent()->getRegInfo(); 983 if (!isLegalRegOperand(MRI, InstrDesc.OpInfo[Src1Idx], Src0)) 984 return nullptr; 985 } 986 987 MachineInstr *CommutedMI = &MI; 988 if (!Src1.isReg()) { 989 // Allow commuting instructions with Imm operands. 990 if (NewMI || !Src1.isImm() || (!isVOP2(MI) && !isVOP3(MI))) { 991 return nullptr; 992 } 993 // Be sure to copy the source modifiers to the right place. 994 if (MachineOperand *Src0Mods = 995 getNamedOperand(MI, AMDGPU::OpName::src0_modifiers)) { 996 MachineOperand *Src1Mods = 997 getNamedOperand(MI, AMDGPU::OpName::src1_modifiers); 998 999 int Src0ModsVal = Src0Mods->getImm(); 1000 if (!Src1Mods && Src0ModsVal != 0) 1001 return nullptr; 1002 1003 // XXX - This assert might be a lie. It might be useful to have a neg 1004 // modifier with 0.0. 1005 int Src1ModsVal = Src1Mods->getImm(); 1006 assert((Src1ModsVal == 0) && "Not expecting modifiers with immediates"); 1007 1008 Src1Mods->setImm(Src0ModsVal); 1009 Src0Mods->setImm(Src1ModsVal); 1010 } 1011 1012 unsigned Reg = Src0.getReg(); 1013 unsigned SubReg = Src0.getSubReg(); 1014 if (Src1.isImm()) 1015 Src0.ChangeToImmediate(Src1.getImm()); 1016 else 1017 llvm_unreachable("Should only have immediates"); 1018 1019 Src1.ChangeToRegister(Reg, false); 1020 Src1.setSubReg(SubReg); 1021 } else { 1022 CommutedMI = 1023 TargetInstrInfo::commuteInstructionImpl(MI, NewMI, OpIdx0, OpIdx1); 1024 } 1025 1026 if (CommutedMI) 1027 CommutedMI->setDesc(get(CommutedOpcode)); 1028 1029 return CommutedMI; 1030 } 1031 1032 // This needs to be implemented because the source modifiers may be inserted 1033 // between the true commutable operands, and the base 1034 // TargetInstrInfo::commuteInstruction uses it. 1035 bool SIInstrInfo::findCommutedOpIndices(MachineInstr &MI, unsigned &SrcOpIdx0, 1036 unsigned &SrcOpIdx1) const { 1037 const MCInstrDesc &MCID = MI.getDesc(); 1038 if (!MCID.isCommutable()) 1039 return false; 1040 1041 unsigned Opc = MI.getOpcode(); 1042 int Src0Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src0); 1043 if (Src0Idx == -1) 1044 return false; 1045 1046 // FIXME: Workaround TargetInstrInfo::commuteInstruction asserting on 1047 // immediate. Also, immediate src0 operand is not handled in 1048 // SIInstrInfo::commuteInstruction(); 1049 if (!MI.getOperand(Src0Idx).isReg()) 1050 return false; 1051 1052 int Src1Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src1); 1053 if (Src1Idx == -1) 1054 return false; 1055 1056 MachineOperand &Src1 = MI.getOperand(Src1Idx); 1057 if (Src1.isImm()) { 1058 // SIInstrInfo::commuteInstruction() does support commuting the immediate 1059 // operand src1 in 2 and 3 operand instructions. 1060 if (!isVOP2(MI.getOpcode()) && !isVOP3(MI.getOpcode())) 1061 return false; 1062 } else if (Src1.isReg()) { 1063 // If any source modifiers are set, the generic instruction commuting won't 1064 // understand how to copy the source modifiers. 1065 if (hasModifiersSet(MI, AMDGPU::OpName::src0_modifiers) || 1066 hasModifiersSet(MI, AMDGPU::OpName::src1_modifiers)) 1067 return false; 1068 } else 1069 return false; 1070 1071 return fixCommutedOpIndices(SrcOpIdx0, SrcOpIdx1, Src0Idx, Src1Idx); 1072 } 1073 1074 unsigned SIInstrInfo::getBranchOpcode(SIInstrInfo::BranchPredicate Cond) { 1075 switch (Cond) { 1076 case SIInstrInfo::SCC_TRUE: 1077 return AMDGPU::S_CBRANCH_SCC1; 1078 case SIInstrInfo::SCC_FALSE: 1079 return AMDGPU::S_CBRANCH_SCC0; 1080 case SIInstrInfo::VCCNZ: 1081 return AMDGPU::S_CBRANCH_VCCNZ; 1082 case SIInstrInfo::VCCZ: 1083 return AMDGPU::S_CBRANCH_VCCZ; 1084 case SIInstrInfo::EXECNZ: 1085 return AMDGPU::S_CBRANCH_EXECNZ; 1086 case SIInstrInfo::EXECZ: 1087 return AMDGPU::S_CBRANCH_EXECZ; 1088 default: 1089 llvm_unreachable("invalid branch predicate"); 1090 } 1091 } 1092 1093 SIInstrInfo::BranchPredicate SIInstrInfo::getBranchPredicate(unsigned Opcode) { 1094 switch (Opcode) { 1095 case AMDGPU::S_CBRANCH_SCC0: 1096 return SCC_FALSE; 1097 case AMDGPU::S_CBRANCH_SCC1: 1098 return SCC_TRUE; 1099 case AMDGPU::S_CBRANCH_VCCNZ: 1100 return VCCNZ; 1101 case AMDGPU::S_CBRANCH_VCCZ: 1102 return VCCZ; 1103 case AMDGPU::S_CBRANCH_EXECNZ: 1104 return EXECNZ; 1105 case AMDGPU::S_CBRANCH_EXECZ: 1106 return EXECZ; 1107 default: 1108 return INVALID_BR; 1109 } 1110 } 1111 1112 bool SIInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB, 1113 MachineBasicBlock *&TBB, 1114 MachineBasicBlock *&FBB, 1115 SmallVectorImpl<MachineOperand> &Cond, 1116 bool AllowModify) const { 1117 MachineBasicBlock::iterator I = MBB.getFirstTerminator(); 1118 1119 if (I == MBB.end()) 1120 return false; 1121 1122 if (I->getOpcode() == AMDGPU::S_BRANCH) { 1123 // Unconditional Branch 1124 TBB = I->getOperand(0).getMBB(); 1125 return false; 1126 } 1127 1128 BranchPredicate Pred = getBranchPredicate(I->getOpcode()); 1129 if (Pred == INVALID_BR) 1130 return true; 1131 1132 MachineBasicBlock *CondBB = I->getOperand(0).getMBB(); 1133 Cond.push_back(MachineOperand::CreateImm(Pred)); 1134 1135 ++I; 1136 1137 if (I == MBB.end()) { 1138 // Conditional branch followed by fall-through. 1139 TBB = CondBB; 1140 return false; 1141 } 1142 1143 if (I->getOpcode() == AMDGPU::S_BRANCH) { 1144 TBB = CondBB; 1145 FBB = I->getOperand(0).getMBB(); 1146 return false; 1147 } 1148 1149 return true; 1150 } 1151 1152 unsigned SIInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const { 1153 MachineBasicBlock::iterator I = MBB.getFirstTerminator(); 1154 1155 unsigned Count = 0; 1156 while (I != MBB.end()) { 1157 MachineBasicBlock::iterator Next = std::next(I); 1158 I->eraseFromParent(); 1159 ++Count; 1160 I = Next; 1161 } 1162 1163 return Count; 1164 } 1165 1166 unsigned SIInstrInfo::InsertBranch(MachineBasicBlock &MBB, 1167 MachineBasicBlock *TBB, 1168 MachineBasicBlock *FBB, 1169 ArrayRef<MachineOperand> Cond, 1170 const DebugLoc &DL) const { 1171 1172 if (!FBB && Cond.empty()) { 1173 BuildMI(&MBB, DL, get(AMDGPU::S_BRANCH)) 1174 .addMBB(TBB); 1175 return 1; 1176 } 1177 1178 assert(TBB && Cond[0].isImm()); 1179 1180 unsigned Opcode 1181 = getBranchOpcode(static_cast<BranchPredicate>(Cond[0].getImm())); 1182 1183 if (!FBB) { 1184 BuildMI(&MBB, DL, get(Opcode)) 1185 .addMBB(TBB); 1186 return 1; 1187 } 1188 1189 assert(TBB && FBB); 1190 1191 BuildMI(&MBB, DL, get(Opcode)) 1192 .addMBB(TBB); 1193 BuildMI(&MBB, DL, get(AMDGPU::S_BRANCH)) 1194 .addMBB(FBB); 1195 1196 return 2; 1197 } 1198 1199 bool SIInstrInfo::ReverseBranchCondition( 1200 SmallVectorImpl<MachineOperand> &Cond) const { 1201 assert(Cond.size() == 1); 1202 Cond[0].setImm(-Cond[0].getImm()); 1203 return false; 1204 } 1205 1206 static void removeModOperands(MachineInstr &MI) { 1207 unsigned Opc = MI.getOpcode(); 1208 int Src0ModIdx = AMDGPU::getNamedOperandIdx(Opc, 1209 AMDGPU::OpName::src0_modifiers); 1210 int Src1ModIdx = AMDGPU::getNamedOperandIdx(Opc, 1211 AMDGPU::OpName::src1_modifiers); 1212 int Src2ModIdx = AMDGPU::getNamedOperandIdx(Opc, 1213 AMDGPU::OpName::src2_modifiers); 1214 1215 MI.RemoveOperand(Src2ModIdx); 1216 MI.RemoveOperand(Src1ModIdx); 1217 MI.RemoveOperand(Src0ModIdx); 1218 } 1219 1220 // TODO: Maybe this should be removed this and custom fold everything in 1221 // SIFoldOperands? 1222 bool SIInstrInfo::FoldImmediate(MachineInstr &UseMI, MachineInstr &DefMI, 1223 unsigned Reg, MachineRegisterInfo *MRI) const { 1224 if (!MRI->hasOneNonDBGUse(Reg)) 1225 return false; 1226 1227 unsigned Opc = UseMI.getOpcode(); 1228 if (Opc == AMDGPU::V_MAD_F32 || Opc == AMDGPU::V_MAC_F32_e64) { 1229 // Don't fold if we are using source modifiers. The new VOP2 instructions 1230 // don't have them. 1231 if (hasModifiersSet(UseMI, AMDGPU::OpName::src0_modifiers) || 1232 hasModifiersSet(UseMI, AMDGPU::OpName::src1_modifiers) || 1233 hasModifiersSet(UseMI, AMDGPU::OpName::src2_modifiers)) { 1234 return false; 1235 } 1236 1237 const MachineOperand &ImmOp = DefMI.getOperand(1); 1238 1239 // If this is a free constant, there's no reason to do this. 1240 // TODO: We could fold this here instead of letting SIFoldOperands do it 1241 // later. 1242 if (isInlineConstant(ImmOp, 4)) 1243 return false; 1244 1245 MachineOperand *Src0 = getNamedOperand(UseMI, AMDGPU::OpName::src0); 1246 MachineOperand *Src1 = getNamedOperand(UseMI, AMDGPU::OpName::src1); 1247 MachineOperand *Src2 = getNamedOperand(UseMI, AMDGPU::OpName::src2); 1248 1249 // Multiplied part is the constant: Use v_madmk_f32 1250 // We should only expect these to be on src0 due to canonicalizations. 1251 if (Src0->isReg() && Src0->getReg() == Reg) { 1252 if (!Src1->isReg() || RI.isSGPRClass(MRI->getRegClass(Src1->getReg()))) 1253 return false; 1254 1255 if (!Src2->isReg() || RI.isSGPRClass(MRI->getRegClass(Src2->getReg()))) 1256 return false; 1257 1258 // We need to swap operands 0 and 1 since madmk constant is at operand 1. 1259 1260 const int64_t Imm = DefMI.getOperand(1).getImm(); 1261 1262 // FIXME: This would be a lot easier if we could return a new instruction 1263 // instead of having to modify in place. 1264 1265 // Remove these first since they are at the end. 1266 UseMI.RemoveOperand( 1267 AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::omod)); 1268 UseMI.RemoveOperand( 1269 AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::clamp)); 1270 1271 unsigned Src1Reg = Src1->getReg(); 1272 unsigned Src1SubReg = Src1->getSubReg(); 1273 Src0->setReg(Src1Reg); 1274 Src0->setSubReg(Src1SubReg); 1275 Src0->setIsKill(Src1->isKill()); 1276 1277 if (Opc == AMDGPU::V_MAC_F32_e64) { 1278 UseMI.untieRegOperand( 1279 AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src2)); 1280 } 1281 1282 Src1->ChangeToImmediate(Imm); 1283 1284 removeModOperands(UseMI); 1285 UseMI.setDesc(get(AMDGPU::V_MADMK_F32)); 1286 1287 bool DeleteDef = MRI->hasOneNonDBGUse(Reg); 1288 if (DeleteDef) 1289 DefMI.eraseFromParent(); 1290 1291 return true; 1292 } 1293 1294 // Added part is the constant: Use v_madak_f32 1295 if (Src2->isReg() && Src2->getReg() == Reg) { 1296 // Not allowed to use constant bus for another operand. 1297 // We can however allow an inline immediate as src0. 1298 if (!Src0->isImm() && 1299 (Src0->isReg() && RI.isSGPRClass(MRI->getRegClass(Src0->getReg())))) 1300 return false; 1301 1302 if (!Src1->isReg() || RI.isSGPRClass(MRI->getRegClass(Src1->getReg()))) 1303 return false; 1304 1305 const int64_t Imm = DefMI.getOperand(1).getImm(); 1306 1307 // FIXME: This would be a lot easier if we could return a new instruction 1308 // instead of having to modify in place. 1309 1310 // Remove these first since they are at the end. 1311 UseMI.RemoveOperand( 1312 AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::omod)); 1313 UseMI.RemoveOperand( 1314 AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::clamp)); 1315 1316 if (Opc == AMDGPU::V_MAC_F32_e64) { 1317 UseMI.untieRegOperand( 1318 AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src2)); 1319 } 1320 1321 // ChangingToImmediate adds Src2 back to the instruction. 1322 Src2->ChangeToImmediate(Imm); 1323 1324 // These come before src2. 1325 removeModOperands(UseMI); 1326 UseMI.setDesc(get(AMDGPU::V_MADAK_F32)); 1327 1328 bool DeleteDef = MRI->hasOneNonDBGUse(Reg); 1329 if (DeleteDef) 1330 DefMI.eraseFromParent(); 1331 1332 return true; 1333 } 1334 } 1335 1336 return false; 1337 } 1338 1339 static bool offsetsDoNotOverlap(int WidthA, int OffsetA, 1340 int WidthB, int OffsetB) { 1341 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB; 1342 int HighOffset = OffsetA < OffsetB ? OffsetB : OffsetA; 1343 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB; 1344 return LowOffset + LowWidth <= HighOffset; 1345 } 1346 1347 bool SIInstrInfo::checkInstOffsetsDoNotOverlap(MachineInstr &MIa, 1348 MachineInstr &MIb) const { 1349 unsigned BaseReg0, BaseReg1; 1350 int64_t Offset0, Offset1; 1351 1352 if (getMemOpBaseRegImmOfs(MIa, BaseReg0, Offset0, &RI) && 1353 getMemOpBaseRegImmOfs(MIb, BaseReg1, Offset1, &RI)) { 1354 1355 if (!MIa.hasOneMemOperand() || !MIb.hasOneMemOperand()) { 1356 // FIXME: Handle ds_read2 / ds_write2. 1357 return false; 1358 } 1359 unsigned Width0 = (*MIa.memoperands_begin())->getSize(); 1360 unsigned Width1 = (*MIb.memoperands_begin())->getSize(); 1361 if (BaseReg0 == BaseReg1 && 1362 offsetsDoNotOverlap(Width0, Offset0, Width1, Offset1)) { 1363 return true; 1364 } 1365 } 1366 1367 return false; 1368 } 1369 1370 bool SIInstrInfo::areMemAccessesTriviallyDisjoint(MachineInstr &MIa, 1371 MachineInstr &MIb, 1372 AliasAnalysis *AA) const { 1373 assert((MIa.mayLoad() || MIa.mayStore()) && 1374 "MIa must load from or modify a memory location"); 1375 assert((MIb.mayLoad() || MIb.mayStore()) && 1376 "MIb must load from or modify a memory location"); 1377 1378 if (MIa.hasUnmodeledSideEffects() || MIb.hasUnmodeledSideEffects()) 1379 return false; 1380 1381 // XXX - Can we relax this between address spaces? 1382 if (MIa.hasOrderedMemoryRef() || MIb.hasOrderedMemoryRef()) 1383 return false; 1384 1385 // TODO: Should we check the address space from the MachineMemOperand? That 1386 // would allow us to distinguish objects we know don't alias based on the 1387 // underlying address space, even if it was lowered to a different one, 1388 // e.g. private accesses lowered to use MUBUF instructions on a scratch 1389 // buffer. 1390 if (isDS(MIa)) { 1391 if (isDS(MIb)) 1392 return checkInstOffsetsDoNotOverlap(MIa, MIb); 1393 1394 return !isFLAT(MIb); 1395 } 1396 1397 if (isMUBUF(MIa) || isMTBUF(MIa)) { 1398 if (isMUBUF(MIb) || isMTBUF(MIb)) 1399 return checkInstOffsetsDoNotOverlap(MIa, MIb); 1400 1401 return !isFLAT(MIb) && !isSMRD(MIb); 1402 } 1403 1404 if (isSMRD(MIa)) { 1405 if (isSMRD(MIb)) 1406 return checkInstOffsetsDoNotOverlap(MIa, MIb); 1407 1408 return !isFLAT(MIb) && !isMUBUF(MIa) && !isMTBUF(MIa); 1409 } 1410 1411 if (isFLAT(MIa)) { 1412 if (isFLAT(MIb)) 1413 return checkInstOffsetsDoNotOverlap(MIa, MIb); 1414 1415 return false; 1416 } 1417 1418 return false; 1419 } 1420 1421 MachineInstr *SIInstrInfo::convertToThreeAddress(MachineFunction::iterator &MBB, 1422 MachineInstr &MI, 1423 LiveVariables *LV) const { 1424 1425 switch (MI.getOpcode()) { 1426 default: 1427 return nullptr; 1428 case AMDGPU::V_MAC_F32_e64: 1429 break; 1430 case AMDGPU::V_MAC_F32_e32: { 1431 const MachineOperand *Src0 = getNamedOperand(MI, AMDGPU::OpName::src0); 1432 if (Src0->isImm() && !isInlineConstant(*Src0, 4)) 1433 return nullptr; 1434 break; 1435 } 1436 } 1437 1438 const MachineOperand *Dst = getNamedOperand(MI, AMDGPU::OpName::vdst); 1439 const MachineOperand *Src0 = getNamedOperand(MI, AMDGPU::OpName::src0); 1440 const MachineOperand *Src1 = getNamedOperand(MI, AMDGPU::OpName::src1); 1441 const MachineOperand *Src2 = getNamedOperand(MI, AMDGPU::OpName::src2); 1442 1443 return BuildMI(*MBB, MI, MI.getDebugLoc(), get(AMDGPU::V_MAD_F32)) 1444 .addOperand(*Dst) 1445 .addImm(0) // Src0 mods 1446 .addOperand(*Src0) 1447 .addImm(0) // Src1 mods 1448 .addOperand(*Src1) 1449 .addImm(0) // Src mods 1450 .addOperand(*Src2) 1451 .addImm(0) // clamp 1452 .addImm(0); // omod 1453 } 1454 1455 bool SIInstrInfo::isSchedulingBoundary(const MachineInstr &MI, 1456 const MachineBasicBlock *MBB, 1457 const MachineFunction &MF) const { 1458 // Target-independent instructions do not have an implicit-use of EXEC, even 1459 // when they operate on VGPRs. Treating EXEC modifications as scheduling 1460 // boundaries prevents incorrect movements of such instructions. 1461 const SIRegisterInfo *TRI = MF.getSubtarget<SISubtarget>().getRegisterInfo(); 1462 if (MI.modifiesRegister(AMDGPU::EXEC, TRI)) 1463 return true; 1464 1465 return AMDGPUInstrInfo::isSchedulingBoundary(MI, MBB, MF); 1466 } 1467 1468 bool SIInstrInfo::isInlineConstant(const APInt &Imm) const { 1469 int64_t SVal = Imm.getSExtValue(); 1470 if (SVal >= -16 && SVal <= 64) 1471 return true; 1472 1473 if (Imm.getBitWidth() == 64) { 1474 uint64_t Val = Imm.getZExtValue(); 1475 return (DoubleToBits(0.0) == Val) || 1476 (DoubleToBits(1.0) == Val) || 1477 (DoubleToBits(-1.0) == Val) || 1478 (DoubleToBits(0.5) == Val) || 1479 (DoubleToBits(-0.5) == Val) || 1480 (DoubleToBits(2.0) == Val) || 1481 (DoubleToBits(-2.0) == Val) || 1482 (DoubleToBits(4.0) == Val) || 1483 (DoubleToBits(-4.0) == Val); 1484 } 1485 1486 // The actual type of the operand does not seem to matter as long 1487 // as the bits match one of the inline immediate values. For example: 1488 // 1489 // -nan has the hexadecimal encoding of 0xfffffffe which is -2 in decimal, 1490 // so it is a legal inline immediate. 1491 // 1492 // 1065353216 has the hexadecimal encoding 0x3f800000 which is 1.0f in 1493 // floating-point, so it is a legal inline immediate. 1494 uint32_t Val = Imm.getZExtValue(); 1495 1496 return (FloatToBits(0.0f) == Val) || 1497 (FloatToBits(1.0f) == Val) || 1498 (FloatToBits(-1.0f) == Val) || 1499 (FloatToBits(0.5f) == Val) || 1500 (FloatToBits(-0.5f) == Val) || 1501 (FloatToBits(2.0f) == Val) || 1502 (FloatToBits(-2.0f) == Val) || 1503 (FloatToBits(4.0f) == Val) || 1504 (FloatToBits(-4.0f) == Val); 1505 } 1506 1507 bool SIInstrInfo::isInlineConstant(const MachineOperand &MO, 1508 unsigned OpSize) const { 1509 if (MO.isImm()) { 1510 // MachineOperand provides no way to tell the true operand size, since it 1511 // only records a 64-bit value. We need to know the size to determine if a 1512 // 32-bit floating point immediate bit pattern is legal for an integer 1513 // immediate. It would be for any 32-bit integer operand, but would not be 1514 // for a 64-bit one. 1515 1516 unsigned BitSize = 8 * OpSize; 1517 return isInlineConstant(APInt(BitSize, MO.getImm(), true)); 1518 } 1519 1520 return false; 1521 } 1522 1523 bool SIInstrInfo::isLiteralConstant(const MachineOperand &MO, 1524 unsigned OpSize) const { 1525 return MO.isImm() && !isInlineConstant(MO, OpSize); 1526 } 1527 1528 static bool compareMachineOp(const MachineOperand &Op0, 1529 const MachineOperand &Op1) { 1530 if (Op0.getType() != Op1.getType()) 1531 return false; 1532 1533 switch (Op0.getType()) { 1534 case MachineOperand::MO_Register: 1535 return Op0.getReg() == Op1.getReg(); 1536 case MachineOperand::MO_Immediate: 1537 return Op0.getImm() == Op1.getImm(); 1538 default: 1539 llvm_unreachable("Didn't expect to be comparing these operand types"); 1540 } 1541 } 1542 1543 bool SIInstrInfo::isImmOperandLegal(const MachineInstr &MI, unsigned OpNo, 1544 const MachineOperand &MO) const { 1545 const MCOperandInfo &OpInfo = get(MI.getOpcode()).OpInfo[OpNo]; 1546 1547 assert(MO.isImm() || MO.isTargetIndex() || MO.isFI()); 1548 1549 if (OpInfo.OperandType == MCOI::OPERAND_IMMEDIATE) 1550 return true; 1551 1552 if (OpInfo.RegClass < 0) 1553 return false; 1554 1555 unsigned OpSize = RI.getRegClass(OpInfo.RegClass)->getSize(); 1556 if (isLiteralConstant(MO, OpSize)) 1557 return RI.opCanUseLiteralConstant(OpInfo.OperandType); 1558 1559 return RI.opCanUseInlineConstant(OpInfo.OperandType); 1560 } 1561 1562 bool SIInstrInfo::hasVALU32BitEncoding(unsigned Opcode) const { 1563 int Op32 = AMDGPU::getVOPe32(Opcode); 1564 if (Op32 == -1) 1565 return false; 1566 1567 return pseudoToMCOpcode(Op32) != -1; 1568 } 1569 1570 bool SIInstrInfo::hasModifiers(unsigned Opcode) const { 1571 // The src0_modifier operand is present on all instructions 1572 // that have modifiers. 1573 1574 return AMDGPU::getNamedOperandIdx(Opcode, 1575 AMDGPU::OpName::src0_modifiers) != -1; 1576 } 1577 1578 bool SIInstrInfo::hasModifiersSet(const MachineInstr &MI, 1579 unsigned OpName) const { 1580 const MachineOperand *Mods = getNamedOperand(MI, OpName); 1581 return Mods && Mods->getImm(); 1582 } 1583 1584 bool SIInstrInfo::usesConstantBus(const MachineRegisterInfo &MRI, 1585 const MachineOperand &MO, 1586 unsigned OpSize) const { 1587 // Literal constants use the constant bus. 1588 if (isLiteralConstant(MO, OpSize)) 1589 return true; 1590 1591 if (!MO.isReg() || !MO.isUse()) 1592 return false; 1593 1594 if (TargetRegisterInfo::isVirtualRegister(MO.getReg())) 1595 return RI.isSGPRClass(MRI.getRegClass(MO.getReg())); 1596 1597 // FLAT_SCR is just an SGPR pair. 1598 if (!MO.isImplicit() && (MO.getReg() == AMDGPU::FLAT_SCR)) 1599 return true; 1600 1601 // EXEC register uses the constant bus. 1602 if (!MO.isImplicit() && MO.getReg() == AMDGPU::EXEC) 1603 return true; 1604 1605 // SGPRs use the constant bus 1606 return (MO.getReg() == AMDGPU::VCC || MO.getReg() == AMDGPU::M0 || 1607 (!MO.isImplicit() && 1608 (AMDGPU::SGPR_32RegClass.contains(MO.getReg()) || 1609 AMDGPU::SGPR_64RegClass.contains(MO.getReg())))); 1610 } 1611 1612 static unsigned findImplicitSGPRRead(const MachineInstr &MI) { 1613 for (const MachineOperand &MO : MI.implicit_operands()) { 1614 // We only care about reads. 1615 if (MO.isDef()) 1616 continue; 1617 1618 switch (MO.getReg()) { 1619 case AMDGPU::VCC: 1620 case AMDGPU::M0: 1621 case AMDGPU::FLAT_SCR: 1622 return MO.getReg(); 1623 1624 default: 1625 break; 1626 } 1627 } 1628 1629 return AMDGPU::NoRegister; 1630 } 1631 1632 static bool shouldReadExec(const MachineInstr &MI) { 1633 if (SIInstrInfo::isVALU(MI)) { 1634 switch (MI.getOpcode()) { 1635 case AMDGPU::V_READLANE_B32: 1636 case AMDGPU::V_READLANE_B32_si: 1637 case AMDGPU::V_READLANE_B32_vi: 1638 case AMDGPU::V_WRITELANE_B32: 1639 case AMDGPU::V_WRITELANE_B32_si: 1640 case AMDGPU::V_WRITELANE_B32_vi: 1641 return false; 1642 } 1643 1644 return true; 1645 } 1646 1647 if (SIInstrInfo::isGenericOpcode(MI.getOpcode()) || 1648 SIInstrInfo::isSALU(MI) || 1649 SIInstrInfo::isSMRD(MI)) 1650 return false; 1651 1652 return true; 1653 } 1654 1655 bool SIInstrInfo::verifyInstruction(const MachineInstr &MI, 1656 StringRef &ErrInfo) const { 1657 uint16_t Opcode = MI.getOpcode(); 1658 const MachineRegisterInfo &MRI = MI.getParent()->getParent()->getRegInfo(); 1659 int Src0Idx = AMDGPU::getNamedOperandIdx(Opcode, AMDGPU::OpName::src0); 1660 int Src1Idx = AMDGPU::getNamedOperandIdx(Opcode, AMDGPU::OpName::src1); 1661 int Src2Idx = AMDGPU::getNamedOperandIdx(Opcode, AMDGPU::OpName::src2); 1662 1663 // Make sure the number of operands is correct. 1664 const MCInstrDesc &Desc = get(Opcode); 1665 if (!Desc.isVariadic() && 1666 Desc.getNumOperands() != MI.getNumExplicitOperands()) { 1667 ErrInfo = "Instruction has wrong number of operands."; 1668 return false; 1669 } 1670 1671 // Make sure the register classes are correct. 1672 for (int i = 0, e = Desc.getNumOperands(); i != e; ++i) { 1673 if (MI.getOperand(i).isFPImm()) { 1674 ErrInfo = "FPImm Machine Operands are not supported. ISel should bitcast " 1675 "all fp values to integers."; 1676 return false; 1677 } 1678 1679 int RegClass = Desc.OpInfo[i].RegClass; 1680 1681 switch (Desc.OpInfo[i].OperandType) { 1682 case MCOI::OPERAND_REGISTER: 1683 if (MI.getOperand(i).isImm()) { 1684 ErrInfo = "Illegal immediate value for operand."; 1685 return false; 1686 } 1687 break; 1688 case AMDGPU::OPERAND_REG_IMM32: 1689 break; 1690 case AMDGPU::OPERAND_REG_INLINE_C: 1691 if (isLiteralConstant(MI.getOperand(i), 1692 RI.getRegClass(RegClass)->getSize())) { 1693 ErrInfo = "Illegal immediate value for operand."; 1694 return false; 1695 } 1696 break; 1697 case MCOI::OPERAND_IMMEDIATE: 1698 case AMDGPU::OPERAND_KIMM32: 1699 // Check if this operand is an immediate. 1700 // FrameIndex operands will be replaced by immediates, so they are 1701 // allowed. 1702 if (!MI.getOperand(i).isImm() && !MI.getOperand(i).isFI()) { 1703 ErrInfo = "Expected immediate, but got non-immediate"; 1704 return false; 1705 } 1706 // Fall-through 1707 default: 1708 continue; 1709 } 1710 1711 if (!MI.getOperand(i).isReg()) 1712 continue; 1713 1714 if (RegClass != -1) { 1715 unsigned Reg = MI.getOperand(i).getReg(); 1716 if (TargetRegisterInfo::isVirtualRegister(Reg)) 1717 continue; 1718 1719 const TargetRegisterClass *RC = RI.getRegClass(RegClass); 1720 if (!RC->contains(Reg)) { 1721 ErrInfo = "Operand has incorrect register class."; 1722 return false; 1723 } 1724 } 1725 } 1726 1727 // Verify VOP* 1728 if (isVOP1(MI) || isVOP2(MI) || isVOP3(MI) || isVOPC(MI)) { 1729 // Only look at the true operands. Only a real operand can use the constant 1730 // bus, and we don't want to check pseudo-operands like the source modifier 1731 // flags. 1732 const int OpIndices[] = { Src0Idx, Src1Idx, Src2Idx }; 1733 1734 unsigned ConstantBusCount = 0; 1735 1736 if (AMDGPU::getNamedOperandIdx(Opcode, AMDGPU::OpName::imm) != -1) 1737 ++ConstantBusCount; 1738 1739 unsigned SGPRUsed = findImplicitSGPRRead(MI); 1740 if (SGPRUsed != AMDGPU::NoRegister) 1741 ++ConstantBusCount; 1742 1743 for (int OpIdx : OpIndices) { 1744 if (OpIdx == -1) 1745 break; 1746 const MachineOperand &MO = MI.getOperand(OpIdx); 1747 if (usesConstantBus(MRI, MO, getOpSize(Opcode, OpIdx))) { 1748 if (MO.isReg()) { 1749 if (MO.getReg() != SGPRUsed) 1750 ++ConstantBusCount; 1751 SGPRUsed = MO.getReg(); 1752 } else { 1753 ++ConstantBusCount; 1754 } 1755 } 1756 } 1757 if (ConstantBusCount > 1) { 1758 ErrInfo = "VOP* instruction uses the constant bus more than once"; 1759 return false; 1760 } 1761 } 1762 1763 // Verify misc. restrictions on specific instructions. 1764 if (Desc.getOpcode() == AMDGPU::V_DIV_SCALE_F32 || 1765 Desc.getOpcode() == AMDGPU::V_DIV_SCALE_F64) { 1766 const MachineOperand &Src0 = MI.getOperand(Src0Idx); 1767 const MachineOperand &Src1 = MI.getOperand(Src1Idx); 1768 const MachineOperand &Src2 = MI.getOperand(Src2Idx); 1769 if (Src0.isReg() && Src1.isReg() && Src2.isReg()) { 1770 if (!compareMachineOp(Src0, Src1) && 1771 !compareMachineOp(Src0, Src2)) { 1772 ErrInfo = "v_div_scale_{f32|f64} require src0 = src1 or src2"; 1773 return false; 1774 } 1775 } 1776 } 1777 1778 // Make sure we aren't losing exec uses in the td files. This mostly requires 1779 // being careful when using let Uses to try to add other use registers. 1780 if (shouldReadExec(MI)) { 1781 if (!MI.hasRegisterImplicitUseOperand(AMDGPU::EXEC)) { 1782 ErrInfo = "VALU instruction does not implicitly read exec mask"; 1783 return false; 1784 } 1785 } 1786 1787 return true; 1788 } 1789 1790 unsigned SIInstrInfo::getVALUOp(const MachineInstr &MI) { 1791 switch (MI.getOpcode()) { 1792 default: return AMDGPU::INSTRUCTION_LIST_END; 1793 case AMDGPU::REG_SEQUENCE: return AMDGPU::REG_SEQUENCE; 1794 case AMDGPU::COPY: return AMDGPU::COPY; 1795 case AMDGPU::PHI: return AMDGPU::PHI; 1796 case AMDGPU::INSERT_SUBREG: return AMDGPU::INSERT_SUBREG; 1797 case AMDGPU::S_MOV_B32: 1798 return MI.getOperand(1).isReg() ? 1799 AMDGPU::COPY : AMDGPU::V_MOV_B32_e32; 1800 case AMDGPU::S_ADD_I32: 1801 case AMDGPU::S_ADD_U32: return AMDGPU::V_ADD_I32_e32; 1802 case AMDGPU::S_ADDC_U32: return AMDGPU::V_ADDC_U32_e32; 1803 case AMDGPU::S_SUB_I32: 1804 case AMDGPU::S_SUB_U32: return AMDGPU::V_SUB_I32_e32; 1805 case AMDGPU::S_SUBB_U32: return AMDGPU::V_SUBB_U32_e32; 1806 case AMDGPU::S_MUL_I32: return AMDGPU::V_MUL_LO_I32; 1807 case AMDGPU::S_AND_B32: return AMDGPU::V_AND_B32_e32; 1808 case AMDGPU::S_OR_B32: return AMDGPU::V_OR_B32_e32; 1809 case AMDGPU::S_XOR_B32: return AMDGPU::V_XOR_B32_e32; 1810 case AMDGPU::S_MIN_I32: return AMDGPU::V_MIN_I32_e32; 1811 case AMDGPU::S_MIN_U32: return AMDGPU::V_MIN_U32_e32; 1812 case AMDGPU::S_MAX_I32: return AMDGPU::V_MAX_I32_e32; 1813 case AMDGPU::S_MAX_U32: return AMDGPU::V_MAX_U32_e32; 1814 case AMDGPU::S_ASHR_I32: return AMDGPU::V_ASHR_I32_e32; 1815 case AMDGPU::S_ASHR_I64: return AMDGPU::V_ASHR_I64; 1816 case AMDGPU::S_LSHL_B32: return AMDGPU::V_LSHL_B32_e32; 1817 case AMDGPU::S_LSHL_B64: return AMDGPU::V_LSHL_B64; 1818 case AMDGPU::S_LSHR_B32: return AMDGPU::V_LSHR_B32_e32; 1819 case AMDGPU::S_LSHR_B64: return AMDGPU::V_LSHR_B64; 1820 case AMDGPU::S_SEXT_I32_I8: return AMDGPU::V_BFE_I32; 1821 case AMDGPU::S_SEXT_I32_I16: return AMDGPU::V_BFE_I32; 1822 case AMDGPU::S_BFE_U32: return AMDGPU::V_BFE_U32; 1823 case AMDGPU::S_BFE_I32: return AMDGPU::V_BFE_I32; 1824 case AMDGPU::S_BFM_B32: return AMDGPU::V_BFM_B32_e64; 1825 case AMDGPU::S_BREV_B32: return AMDGPU::V_BFREV_B32_e32; 1826 case AMDGPU::S_NOT_B32: return AMDGPU::V_NOT_B32_e32; 1827 case AMDGPU::S_NOT_B64: return AMDGPU::V_NOT_B32_e32; 1828 case AMDGPU::S_CMP_EQ_I32: return AMDGPU::V_CMP_EQ_I32_e32; 1829 case AMDGPU::S_CMP_LG_I32: return AMDGPU::V_CMP_NE_I32_e32; 1830 case AMDGPU::S_CMP_GT_I32: return AMDGPU::V_CMP_GT_I32_e32; 1831 case AMDGPU::S_CMP_GE_I32: return AMDGPU::V_CMP_GE_I32_e32; 1832 case AMDGPU::S_CMP_LT_I32: return AMDGPU::V_CMP_LT_I32_e32; 1833 case AMDGPU::S_CMP_LE_I32: return AMDGPU::V_CMP_LE_I32_e32; 1834 case AMDGPU::S_CMP_EQ_U32: return AMDGPU::V_CMP_EQ_U32_e32; 1835 case AMDGPU::S_CMP_LG_U32: return AMDGPU::V_CMP_NE_U32_e32; 1836 case AMDGPU::S_CMP_GT_U32: return AMDGPU::V_CMP_GT_U32_e32; 1837 case AMDGPU::S_CMP_GE_U32: return AMDGPU::V_CMP_GE_U32_e32; 1838 case AMDGPU::S_CMP_LT_U32: return AMDGPU::V_CMP_LT_U32_e32; 1839 case AMDGPU::S_CMP_LE_U32: return AMDGPU::V_CMP_LE_U32_e32; 1840 case AMDGPU::S_BCNT1_I32_B32: return AMDGPU::V_BCNT_U32_B32_e64; 1841 case AMDGPU::S_FF1_I32_B32: return AMDGPU::V_FFBL_B32_e32; 1842 case AMDGPU::S_FLBIT_I32_B32: return AMDGPU::V_FFBH_U32_e32; 1843 case AMDGPU::S_FLBIT_I32: return AMDGPU::V_FFBH_I32_e64; 1844 case AMDGPU::S_CBRANCH_SCC0: return AMDGPU::S_CBRANCH_VCCZ; 1845 case AMDGPU::S_CBRANCH_SCC1: return AMDGPU::S_CBRANCH_VCCNZ; 1846 } 1847 } 1848 1849 bool SIInstrInfo::isSALUOpSupportedOnVALU(const MachineInstr &MI) const { 1850 return getVALUOp(MI) != AMDGPU::INSTRUCTION_LIST_END; 1851 } 1852 1853 const TargetRegisterClass *SIInstrInfo::getOpRegClass(const MachineInstr &MI, 1854 unsigned OpNo) const { 1855 const MachineRegisterInfo &MRI = MI.getParent()->getParent()->getRegInfo(); 1856 const MCInstrDesc &Desc = get(MI.getOpcode()); 1857 if (MI.isVariadic() || OpNo >= Desc.getNumOperands() || 1858 Desc.OpInfo[OpNo].RegClass == -1) { 1859 unsigned Reg = MI.getOperand(OpNo).getReg(); 1860 1861 if (TargetRegisterInfo::isVirtualRegister(Reg)) 1862 return MRI.getRegClass(Reg); 1863 return RI.getPhysRegClass(Reg); 1864 } 1865 1866 unsigned RCID = Desc.OpInfo[OpNo].RegClass; 1867 return RI.getRegClass(RCID); 1868 } 1869 1870 bool SIInstrInfo::canReadVGPR(const MachineInstr &MI, unsigned OpNo) const { 1871 switch (MI.getOpcode()) { 1872 case AMDGPU::COPY: 1873 case AMDGPU::REG_SEQUENCE: 1874 case AMDGPU::PHI: 1875 case AMDGPU::INSERT_SUBREG: 1876 return RI.hasVGPRs(getOpRegClass(MI, 0)); 1877 default: 1878 return RI.hasVGPRs(getOpRegClass(MI, OpNo)); 1879 } 1880 } 1881 1882 void SIInstrInfo::legalizeOpWithMove(MachineInstr &MI, unsigned OpIdx) const { 1883 MachineBasicBlock::iterator I = MI; 1884 MachineBasicBlock *MBB = MI.getParent(); 1885 MachineOperand &MO = MI.getOperand(OpIdx); 1886 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo(); 1887 unsigned RCID = get(MI.getOpcode()).OpInfo[OpIdx].RegClass; 1888 const TargetRegisterClass *RC = RI.getRegClass(RCID); 1889 unsigned Opcode = AMDGPU::V_MOV_B32_e32; 1890 if (MO.isReg()) 1891 Opcode = AMDGPU::COPY; 1892 else if (RI.isSGPRClass(RC)) 1893 Opcode = AMDGPU::S_MOV_B32; 1894 1895 const TargetRegisterClass *VRC = RI.getEquivalentVGPRClass(RC); 1896 if (RI.getCommonSubClass(&AMDGPU::VReg_64RegClass, VRC)) 1897 VRC = &AMDGPU::VReg_64RegClass; 1898 else 1899 VRC = &AMDGPU::VGPR_32RegClass; 1900 1901 unsigned Reg = MRI.createVirtualRegister(VRC); 1902 DebugLoc DL = MBB->findDebugLoc(I); 1903 BuildMI(*MI.getParent(), I, DL, get(Opcode), Reg).addOperand(MO); 1904 MO.ChangeToRegister(Reg, false); 1905 } 1906 1907 unsigned SIInstrInfo::buildExtractSubReg(MachineBasicBlock::iterator MI, 1908 MachineRegisterInfo &MRI, 1909 MachineOperand &SuperReg, 1910 const TargetRegisterClass *SuperRC, 1911 unsigned SubIdx, 1912 const TargetRegisterClass *SubRC) 1913 const { 1914 MachineBasicBlock *MBB = MI->getParent(); 1915 DebugLoc DL = MI->getDebugLoc(); 1916 unsigned SubReg = MRI.createVirtualRegister(SubRC); 1917 1918 if (SuperReg.getSubReg() == AMDGPU::NoSubRegister) { 1919 BuildMI(*MBB, MI, DL, get(TargetOpcode::COPY), SubReg) 1920 .addReg(SuperReg.getReg(), 0, SubIdx); 1921 return SubReg; 1922 } 1923 1924 // Just in case the super register is itself a sub-register, copy it to a new 1925 // value so we don't need to worry about merging its subreg index with the 1926 // SubIdx passed to this function. The register coalescer should be able to 1927 // eliminate this extra copy. 1928 unsigned NewSuperReg = MRI.createVirtualRegister(SuperRC); 1929 1930 BuildMI(*MBB, MI, DL, get(TargetOpcode::COPY), NewSuperReg) 1931 .addReg(SuperReg.getReg(), 0, SuperReg.getSubReg()); 1932 1933 BuildMI(*MBB, MI, DL, get(TargetOpcode::COPY), SubReg) 1934 .addReg(NewSuperReg, 0, SubIdx); 1935 1936 return SubReg; 1937 } 1938 1939 MachineOperand SIInstrInfo::buildExtractSubRegOrImm( 1940 MachineBasicBlock::iterator MII, 1941 MachineRegisterInfo &MRI, 1942 MachineOperand &Op, 1943 const TargetRegisterClass *SuperRC, 1944 unsigned SubIdx, 1945 const TargetRegisterClass *SubRC) const { 1946 if (Op.isImm()) { 1947 // XXX - Is there a better way to do this? 1948 if (SubIdx == AMDGPU::sub0) 1949 return MachineOperand::CreateImm(Op.getImm() & 0xFFFFFFFF); 1950 if (SubIdx == AMDGPU::sub1) 1951 return MachineOperand::CreateImm(Op.getImm() >> 32); 1952 1953 llvm_unreachable("Unhandled register index for immediate"); 1954 } 1955 1956 unsigned SubReg = buildExtractSubReg(MII, MRI, Op, SuperRC, 1957 SubIdx, SubRC); 1958 return MachineOperand::CreateReg(SubReg, false); 1959 } 1960 1961 // Change the order of operands from (0, 1, 2) to (0, 2, 1) 1962 void SIInstrInfo::swapOperands(MachineInstr &Inst) const { 1963 assert(Inst.getNumExplicitOperands() == 3); 1964 MachineOperand Op1 = Inst.getOperand(1); 1965 Inst.RemoveOperand(1); 1966 Inst.addOperand(Op1); 1967 } 1968 1969 bool SIInstrInfo::isLegalRegOperand(const MachineRegisterInfo &MRI, 1970 const MCOperandInfo &OpInfo, 1971 const MachineOperand &MO) const { 1972 if (!MO.isReg()) 1973 return false; 1974 1975 unsigned Reg = MO.getReg(); 1976 const TargetRegisterClass *RC = 1977 TargetRegisterInfo::isVirtualRegister(Reg) ? 1978 MRI.getRegClass(Reg) : 1979 RI.getPhysRegClass(Reg); 1980 1981 const SIRegisterInfo *TRI = 1982 static_cast<const SIRegisterInfo*>(MRI.getTargetRegisterInfo()); 1983 RC = TRI->getSubRegClass(RC, MO.getSubReg()); 1984 1985 // In order to be legal, the common sub-class must be equal to the 1986 // class of the current operand. For example: 1987 // 1988 // v_mov_b32 s0 ; Operand defined as vsrc_32 1989 // ; RI.getCommonSubClass(s0,vsrc_32) = sgpr ; LEGAL 1990 // 1991 // s_sendmsg 0, s0 ; Operand defined as m0reg 1992 // ; RI.getCommonSubClass(s0,m0reg) = m0reg ; NOT LEGAL 1993 1994 return RI.getCommonSubClass(RC, RI.getRegClass(OpInfo.RegClass)) == RC; 1995 } 1996 1997 bool SIInstrInfo::isLegalVSrcOperand(const MachineRegisterInfo &MRI, 1998 const MCOperandInfo &OpInfo, 1999 const MachineOperand &MO) const { 2000 if (MO.isReg()) 2001 return isLegalRegOperand(MRI, OpInfo, MO); 2002 2003 // Handle non-register types that are treated like immediates. 2004 assert(MO.isImm() || MO.isTargetIndex() || MO.isFI()); 2005 return true; 2006 } 2007 2008 bool SIInstrInfo::isOperandLegal(const MachineInstr &MI, unsigned OpIdx, 2009 const MachineOperand *MO) const { 2010 const MachineRegisterInfo &MRI = MI.getParent()->getParent()->getRegInfo(); 2011 const MCInstrDesc &InstDesc = MI.getDesc(); 2012 const MCOperandInfo &OpInfo = InstDesc.OpInfo[OpIdx]; 2013 const TargetRegisterClass *DefinedRC = 2014 OpInfo.RegClass != -1 ? RI.getRegClass(OpInfo.RegClass) : nullptr; 2015 if (!MO) 2016 MO = &MI.getOperand(OpIdx); 2017 2018 if (isVALU(MI) && usesConstantBus(MRI, *MO, DefinedRC->getSize())) { 2019 2020 RegSubRegPair SGPRUsed; 2021 if (MO->isReg()) 2022 SGPRUsed = RegSubRegPair(MO->getReg(), MO->getSubReg()); 2023 2024 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { 2025 if (i == OpIdx) 2026 continue; 2027 const MachineOperand &Op = MI.getOperand(i); 2028 if (Op.isReg()) { 2029 if ((Op.getReg() != SGPRUsed.Reg || Op.getSubReg() != SGPRUsed.SubReg) && 2030 usesConstantBus(MRI, Op, getOpSize(MI, i))) { 2031 return false; 2032 } 2033 } else if (InstDesc.OpInfo[i].OperandType == AMDGPU::OPERAND_KIMM32) { 2034 return false; 2035 } 2036 } 2037 } 2038 2039 if (MO->isReg()) { 2040 assert(DefinedRC); 2041 return isLegalRegOperand(MRI, OpInfo, *MO); 2042 } 2043 2044 // Handle non-register types that are treated like immediates. 2045 assert(MO->isImm() || MO->isTargetIndex() || MO->isFI()); 2046 2047 if (!DefinedRC) { 2048 // This operand expects an immediate. 2049 return true; 2050 } 2051 2052 return isImmOperandLegal(MI, OpIdx, *MO); 2053 } 2054 2055 void SIInstrInfo::legalizeOperandsVOP2(MachineRegisterInfo &MRI, 2056 MachineInstr &MI) const { 2057 unsigned Opc = MI.getOpcode(); 2058 const MCInstrDesc &InstrDesc = get(Opc); 2059 2060 int Src1Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src1); 2061 MachineOperand &Src1 = MI.getOperand(Src1Idx); 2062 2063 // If there is an implicit SGPR use such as VCC use for v_addc_u32/v_subb_u32 2064 // we need to only have one constant bus use. 2065 // 2066 // Note we do not need to worry about literal constants here. They are 2067 // disabled for the operand type for instructions because they will always 2068 // violate the one constant bus use rule. 2069 bool HasImplicitSGPR = findImplicitSGPRRead(MI) != AMDGPU::NoRegister; 2070 if (HasImplicitSGPR) { 2071 int Src0Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src0); 2072 MachineOperand &Src0 = MI.getOperand(Src0Idx); 2073 2074 if (Src0.isReg() && RI.isSGPRReg(MRI, Src0.getReg())) 2075 legalizeOpWithMove(MI, Src0Idx); 2076 } 2077 2078 // VOP2 src0 instructions support all operand types, so we don't need to check 2079 // their legality. If src1 is already legal, we don't need to do anything. 2080 if (isLegalRegOperand(MRI, InstrDesc.OpInfo[Src1Idx], Src1)) 2081 return; 2082 2083 // We do not use commuteInstruction here because it is too aggressive and will 2084 // commute if it is possible. We only want to commute here if it improves 2085 // legality. This can be called a fairly large number of times so don't waste 2086 // compile time pointlessly swapping and checking legality again. 2087 if (HasImplicitSGPR || !MI.isCommutable()) { 2088 legalizeOpWithMove(MI, Src1Idx); 2089 return; 2090 } 2091 2092 int Src0Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src0); 2093 MachineOperand &Src0 = MI.getOperand(Src0Idx); 2094 2095 // If src0 can be used as src1, commuting will make the operands legal. 2096 // Otherwise we have to give up and insert a move. 2097 // 2098 // TODO: Other immediate-like operand kinds could be commuted if there was a 2099 // MachineOperand::ChangeTo* for them. 2100 if ((!Src1.isImm() && !Src1.isReg()) || 2101 !isLegalRegOperand(MRI, InstrDesc.OpInfo[Src1Idx], Src0)) { 2102 legalizeOpWithMove(MI, Src1Idx); 2103 return; 2104 } 2105 2106 int CommutedOpc = commuteOpcode(MI); 2107 if (CommutedOpc == -1) { 2108 legalizeOpWithMove(MI, Src1Idx); 2109 return; 2110 } 2111 2112 MI.setDesc(get(CommutedOpc)); 2113 2114 unsigned Src0Reg = Src0.getReg(); 2115 unsigned Src0SubReg = Src0.getSubReg(); 2116 bool Src0Kill = Src0.isKill(); 2117 2118 if (Src1.isImm()) 2119 Src0.ChangeToImmediate(Src1.getImm()); 2120 else if (Src1.isReg()) { 2121 Src0.ChangeToRegister(Src1.getReg(), false, false, Src1.isKill()); 2122 Src0.setSubReg(Src1.getSubReg()); 2123 } else 2124 llvm_unreachable("Should only have register or immediate operands"); 2125 2126 Src1.ChangeToRegister(Src0Reg, false, false, Src0Kill); 2127 Src1.setSubReg(Src0SubReg); 2128 } 2129 2130 // Legalize VOP3 operands. Because all operand types are supported for any 2131 // operand, and since literal constants are not allowed and should never be 2132 // seen, we only need to worry about inserting copies if we use multiple SGPR 2133 // operands. 2134 void SIInstrInfo::legalizeOperandsVOP3(MachineRegisterInfo &MRI, 2135 MachineInstr &MI) const { 2136 unsigned Opc = MI.getOpcode(); 2137 2138 int VOP3Idx[3] = { 2139 AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src0), 2140 AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src1), 2141 AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src2) 2142 }; 2143 2144 // Find the one SGPR operand we are allowed to use. 2145 unsigned SGPRReg = findUsedSGPR(MI, VOP3Idx); 2146 2147 for (unsigned i = 0; i < 3; ++i) { 2148 int Idx = VOP3Idx[i]; 2149 if (Idx == -1) 2150 break; 2151 MachineOperand &MO = MI.getOperand(Idx); 2152 2153 // We should never see a VOP3 instruction with an illegal immediate operand. 2154 if (!MO.isReg()) 2155 continue; 2156 2157 if (!RI.isSGPRClass(MRI.getRegClass(MO.getReg()))) 2158 continue; // VGPRs are legal 2159 2160 if (SGPRReg == AMDGPU::NoRegister || SGPRReg == MO.getReg()) { 2161 SGPRReg = MO.getReg(); 2162 // We can use one SGPR in each VOP3 instruction. 2163 continue; 2164 } 2165 2166 // If we make it this far, then the operand is not legal and we must 2167 // legalize it. 2168 legalizeOpWithMove(MI, Idx); 2169 } 2170 } 2171 2172 unsigned SIInstrInfo::readlaneVGPRToSGPR(unsigned SrcReg, MachineInstr &UseMI, 2173 MachineRegisterInfo &MRI) const { 2174 const TargetRegisterClass *VRC = MRI.getRegClass(SrcReg); 2175 const TargetRegisterClass *SRC = RI.getEquivalentSGPRClass(VRC); 2176 unsigned DstReg = MRI.createVirtualRegister(SRC); 2177 unsigned SubRegs = VRC->getSize() / 4; 2178 2179 SmallVector<unsigned, 8> SRegs; 2180 for (unsigned i = 0; i < SubRegs; ++i) { 2181 unsigned SGPR = MRI.createVirtualRegister(&AMDGPU::SGPR_32RegClass); 2182 BuildMI(*UseMI.getParent(), UseMI, UseMI.getDebugLoc(), 2183 get(AMDGPU::V_READFIRSTLANE_B32), SGPR) 2184 .addReg(SrcReg, 0, RI.getSubRegFromChannel(i)); 2185 SRegs.push_back(SGPR); 2186 } 2187 2188 MachineInstrBuilder MIB = 2189 BuildMI(*UseMI.getParent(), UseMI, UseMI.getDebugLoc(), 2190 get(AMDGPU::REG_SEQUENCE), DstReg); 2191 for (unsigned i = 0; i < SubRegs; ++i) { 2192 MIB.addReg(SRegs[i]); 2193 MIB.addImm(RI.getSubRegFromChannel(i)); 2194 } 2195 return DstReg; 2196 } 2197 2198 void SIInstrInfo::legalizeOperandsSMRD(MachineRegisterInfo &MRI, 2199 MachineInstr &MI) const { 2200 2201 // If the pointer is store in VGPRs, then we need to move them to 2202 // SGPRs using v_readfirstlane. This is safe because we only select 2203 // loads with uniform pointers to SMRD instruction so we know the 2204 // pointer value is uniform. 2205 MachineOperand *SBase = getNamedOperand(MI, AMDGPU::OpName::sbase); 2206 if (SBase && !RI.isSGPRClass(MRI.getRegClass(SBase->getReg()))) { 2207 unsigned SGPR = readlaneVGPRToSGPR(SBase->getReg(), MI, MRI); 2208 SBase->setReg(SGPR); 2209 } 2210 } 2211 2212 void SIInstrInfo::legalizeOperands(MachineInstr &MI) const { 2213 MachineRegisterInfo &MRI = MI.getParent()->getParent()->getRegInfo(); 2214 2215 // Legalize VOP2 2216 if (isVOP2(MI) || isVOPC(MI)) { 2217 legalizeOperandsVOP2(MRI, MI); 2218 return; 2219 } 2220 2221 // Legalize VOP3 2222 if (isVOP3(MI)) { 2223 legalizeOperandsVOP3(MRI, MI); 2224 return; 2225 } 2226 2227 // Legalize SMRD 2228 if (isSMRD(MI)) { 2229 legalizeOperandsSMRD(MRI, MI); 2230 return; 2231 } 2232 2233 // Legalize REG_SEQUENCE and PHI 2234 // The register class of the operands much be the same type as the register 2235 // class of the output. 2236 if (MI.getOpcode() == AMDGPU::PHI) { 2237 const TargetRegisterClass *RC = nullptr, *SRC = nullptr, *VRC = nullptr; 2238 for (unsigned i = 1, e = MI.getNumOperands(); i != e; i += 2) { 2239 if (!MI.getOperand(i).isReg() || 2240 !TargetRegisterInfo::isVirtualRegister(MI.getOperand(i).getReg())) 2241 continue; 2242 const TargetRegisterClass *OpRC = 2243 MRI.getRegClass(MI.getOperand(i).getReg()); 2244 if (RI.hasVGPRs(OpRC)) { 2245 VRC = OpRC; 2246 } else { 2247 SRC = OpRC; 2248 } 2249 } 2250 2251 // If any of the operands are VGPR registers, then they all most be 2252 // otherwise we will create illegal VGPR->SGPR copies when legalizing 2253 // them. 2254 if (VRC || !RI.isSGPRClass(getOpRegClass(MI, 0))) { 2255 if (!VRC) { 2256 assert(SRC); 2257 VRC = RI.getEquivalentVGPRClass(SRC); 2258 } 2259 RC = VRC; 2260 } else { 2261 RC = SRC; 2262 } 2263 2264 // Update all the operands so they have the same type. 2265 for (unsigned I = 1, E = MI.getNumOperands(); I != E; I += 2) { 2266 MachineOperand &Op = MI.getOperand(I); 2267 if (!Op.isReg() || !TargetRegisterInfo::isVirtualRegister(Op.getReg())) 2268 continue; 2269 unsigned DstReg = MRI.createVirtualRegister(RC); 2270 2271 // MI is a PHI instruction. 2272 MachineBasicBlock *InsertBB = MI.getOperand(I + 1).getMBB(); 2273 MachineBasicBlock::iterator Insert = InsertBB->getFirstTerminator(); 2274 2275 BuildMI(*InsertBB, Insert, MI.getDebugLoc(), get(AMDGPU::COPY), DstReg) 2276 .addOperand(Op); 2277 Op.setReg(DstReg); 2278 } 2279 } 2280 2281 // REG_SEQUENCE doesn't really require operand legalization, but if one has a 2282 // VGPR dest type and SGPR sources, insert copies so all operands are 2283 // VGPRs. This seems to help operand folding / the register coalescer. 2284 if (MI.getOpcode() == AMDGPU::REG_SEQUENCE) { 2285 MachineBasicBlock *MBB = MI.getParent(); 2286 const TargetRegisterClass *DstRC = getOpRegClass(MI, 0); 2287 if (RI.hasVGPRs(DstRC)) { 2288 // Update all the operands so they are VGPR register classes. These may 2289 // not be the same register class because REG_SEQUENCE supports mixing 2290 // subregister index types e.g. sub0_sub1 + sub2 + sub3 2291 for (unsigned I = 1, E = MI.getNumOperands(); I != E; I += 2) { 2292 MachineOperand &Op = MI.getOperand(I); 2293 if (!Op.isReg() || !TargetRegisterInfo::isVirtualRegister(Op.getReg())) 2294 continue; 2295 2296 const TargetRegisterClass *OpRC = MRI.getRegClass(Op.getReg()); 2297 const TargetRegisterClass *VRC = RI.getEquivalentVGPRClass(OpRC); 2298 if (VRC == OpRC) 2299 continue; 2300 2301 unsigned DstReg = MRI.createVirtualRegister(VRC); 2302 2303 BuildMI(*MBB, MI, MI.getDebugLoc(), get(AMDGPU::COPY), DstReg) 2304 .addOperand(Op); 2305 2306 Op.setReg(DstReg); 2307 Op.setIsKill(); 2308 } 2309 } 2310 2311 return; 2312 } 2313 2314 // Legalize INSERT_SUBREG 2315 // src0 must have the same register class as dst 2316 if (MI.getOpcode() == AMDGPU::INSERT_SUBREG) { 2317 unsigned Dst = MI.getOperand(0).getReg(); 2318 unsigned Src0 = MI.getOperand(1).getReg(); 2319 const TargetRegisterClass *DstRC = MRI.getRegClass(Dst); 2320 const TargetRegisterClass *Src0RC = MRI.getRegClass(Src0); 2321 if (DstRC != Src0RC) { 2322 MachineBasicBlock &MBB = *MI.getParent(); 2323 unsigned NewSrc0 = MRI.createVirtualRegister(DstRC); 2324 BuildMI(MBB, MI, MI.getDebugLoc(), get(AMDGPU::COPY), NewSrc0) 2325 .addReg(Src0); 2326 MI.getOperand(1).setReg(NewSrc0); 2327 } 2328 return; 2329 } 2330 2331 // Legalize MIMG 2332 if (isMIMG(MI)) { 2333 MachineOperand *SRsrc = getNamedOperand(MI, AMDGPU::OpName::srsrc); 2334 if (SRsrc && !RI.isSGPRClass(MRI.getRegClass(SRsrc->getReg()))) { 2335 unsigned SGPR = readlaneVGPRToSGPR(SRsrc->getReg(), MI, MRI); 2336 SRsrc->setReg(SGPR); 2337 } 2338 2339 MachineOperand *SSamp = getNamedOperand(MI, AMDGPU::OpName::ssamp); 2340 if (SSamp && !RI.isSGPRClass(MRI.getRegClass(SSamp->getReg()))) { 2341 unsigned SGPR = readlaneVGPRToSGPR(SSamp->getReg(), MI, MRI); 2342 SSamp->setReg(SGPR); 2343 } 2344 return; 2345 } 2346 2347 // Legalize MUBUF* instructions 2348 // FIXME: If we start using the non-addr64 instructions for compute, we 2349 // may need to legalize them here. 2350 int SRsrcIdx = 2351 AMDGPU::getNamedOperandIdx(MI.getOpcode(), AMDGPU::OpName::srsrc); 2352 if (SRsrcIdx != -1) { 2353 // We have an MUBUF instruction 2354 MachineOperand *SRsrc = &MI.getOperand(SRsrcIdx); 2355 unsigned SRsrcRC = get(MI.getOpcode()).OpInfo[SRsrcIdx].RegClass; 2356 if (RI.getCommonSubClass(MRI.getRegClass(SRsrc->getReg()), 2357 RI.getRegClass(SRsrcRC))) { 2358 // The operands are legal. 2359 // FIXME: We may need to legalize operands besided srsrc. 2360 return; 2361 } 2362 2363 MachineBasicBlock &MBB = *MI.getParent(); 2364 2365 // Extract the ptr from the resource descriptor. 2366 unsigned SRsrcPtr = buildExtractSubReg(MI, MRI, *SRsrc, 2367 &AMDGPU::VReg_128RegClass, AMDGPU::sub0_sub1, &AMDGPU::VReg_64RegClass); 2368 2369 // Create an empty resource descriptor 2370 unsigned Zero64 = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass); 2371 unsigned SRsrcFormatLo = MRI.createVirtualRegister(&AMDGPU::SGPR_32RegClass); 2372 unsigned SRsrcFormatHi = MRI.createVirtualRegister(&AMDGPU::SGPR_32RegClass); 2373 unsigned NewSRsrc = MRI.createVirtualRegister(&AMDGPU::SReg_128RegClass); 2374 uint64_t RsrcDataFormat = getDefaultRsrcDataFormat(); 2375 2376 // Zero64 = 0 2377 BuildMI(MBB, MI, MI.getDebugLoc(), get(AMDGPU::S_MOV_B64), Zero64) 2378 .addImm(0); 2379 2380 // SRsrcFormatLo = RSRC_DATA_FORMAT{31-0} 2381 BuildMI(MBB, MI, MI.getDebugLoc(), get(AMDGPU::S_MOV_B32), SRsrcFormatLo) 2382 .addImm(RsrcDataFormat & 0xFFFFFFFF); 2383 2384 // SRsrcFormatHi = RSRC_DATA_FORMAT{63-32} 2385 BuildMI(MBB, MI, MI.getDebugLoc(), get(AMDGPU::S_MOV_B32), SRsrcFormatHi) 2386 .addImm(RsrcDataFormat >> 32); 2387 2388 // NewSRsrc = {Zero64, SRsrcFormat} 2389 BuildMI(MBB, MI, MI.getDebugLoc(), get(AMDGPU::REG_SEQUENCE), NewSRsrc) 2390 .addReg(Zero64) 2391 .addImm(AMDGPU::sub0_sub1) 2392 .addReg(SRsrcFormatLo) 2393 .addImm(AMDGPU::sub2) 2394 .addReg(SRsrcFormatHi) 2395 .addImm(AMDGPU::sub3); 2396 2397 MachineOperand *VAddr = getNamedOperand(MI, AMDGPU::OpName::vaddr); 2398 unsigned NewVAddr = MRI.createVirtualRegister(&AMDGPU::VReg_64RegClass); 2399 if (VAddr) { 2400 // This is already an ADDR64 instruction so we need to add the pointer 2401 // extracted from the resource descriptor to the current value of VAddr. 2402 unsigned NewVAddrLo = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass); 2403 unsigned NewVAddrHi = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass); 2404 2405 // NewVaddrLo = SRsrcPtr:sub0 + VAddr:sub0 2406 DebugLoc DL = MI.getDebugLoc(); 2407 BuildMI(MBB, MI, DL, get(AMDGPU::V_ADD_I32_e32), NewVAddrLo) 2408 .addReg(SRsrcPtr, 0, AMDGPU::sub0) 2409 .addReg(VAddr->getReg(), 0, AMDGPU::sub0); 2410 2411 // NewVaddrHi = SRsrcPtr:sub1 + VAddr:sub1 2412 BuildMI(MBB, MI, DL, get(AMDGPU::V_ADDC_U32_e32), NewVAddrHi) 2413 .addReg(SRsrcPtr, 0, AMDGPU::sub1) 2414 .addReg(VAddr->getReg(), 0, AMDGPU::sub1); 2415 2416 // NewVaddr = {NewVaddrHi, NewVaddrLo} 2417 BuildMI(MBB, MI, MI.getDebugLoc(), get(AMDGPU::REG_SEQUENCE), NewVAddr) 2418 .addReg(NewVAddrLo) 2419 .addImm(AMDGPU::sub0) 2420 .addReg(NewVAddrHi) 2421 .addImm(AMDGPU::sub1); 2422 } else { 2423 // This instructions is the _OFFSET variant, so we need to convert it to 2424 // ADDR64. 2425 assert(MBB.getParent()->getSubtarget<SISubtarget>().getGeneration() 2426 < SISubtarget::VOLCANIC_ISLANDS && 2427 "FIXME: Need to emit flat atomics here"); 2428 2429 MachineOperand *VData = getNamedOperand(MI, AMDGPU::OpName::vdata); 2430 MachineOperand *Offset = getNamedOperand(MI, AMDGPU::OpName::offset); 2431 MachineOperand *SOffset = getNamedOperand(MI, AMDGPU::OpName::soffset); 2432 unsigned Addr64Opcode = AMDGPU::getAddr64Inst(MI.getOpcode()); 2433 2434 // Atomics rith return have have an additional tied operand and are 2435 // missing some of the special bits. 2436 MachineOperand *VDataIn = getNamedOperand(MI, AMDGPU::OpName::vdata_in); 2437 MachineInstr *Addr64; 2438 2439 if (!VDataIn) { 2440 // Regular buffer load / store. 2441 MachineInstrBuilder MIB = 2442 BuildMI(MBB, MI, MI.getDebugLoc(), get(Addr64Opcode)) 2443 .addOperand(*VData) 2444 .addReg(AMDGPU::NoRegister) // Dummy value for vaddr. 2445 // This will be replaced later 2446 // with the new value of vaddr. 2447 .addOperand(*SRsrc) 2448 .addOperand(*SOffset) 2449 .addOperand(*Offset); 2450 2451 // Atomics do not have this operand. 2452 if (const MachineOperand *GLC = 2453 getNamedOperand(MI, AMDGPU::OpName::glc)) { 2454 MIB.addImm(GLC->getImm()); 2455 } 2456 2457 MIB.addImm(getNamedImmOperand(MI, AMDGPU::OpName::slc)); 2458 2459 if (const MachineOperand *TFE = 2460 getNamedOperand(MI, AMDGPU::OpName::tfe)) { 2461 MIB.addImm(TFE->getImm()); 2462 } 2463 2464 MIB.setMemRefs(MI.memoperands_begin(), MI.memoperands_end()); 2465 Addr64 = MIB; 2466 } else { 2467 // Atomics with return. 2468 Addr64 = BuildMI(MBB, MI, MI.getDebugLoc(), get(Addr64Opcode)) 2469 .addOperand(*VData) 2470 .addOperand(*VDataIn) 2471 .addReg(AMDGPU::NoRegister) // Dummy value for vaddr. 2472 // This will be replaced later 2473 // with the new value of vaddr. 2474 .addOperand(*SRsrc) 2475 .addOperand(*SOffset) 2476 .addOperand(*Offset) 2477 .addImm(getNamedImmOperand(MI, AMDGPU::OpName::slc)) 2478 .setMemRefs(MI.memoperands_begin(), MI.memoperands_end()); 2479 } 2480 2481 MI.removeFromParent(); 2482 2483 // NewVaddr = {NewVaddrHi, NewVaddrLo} 2484 BuildMI(MBB, Addr64, Addr64->getDebugLoc(), get(AMDGPU::REG_SEQUENCE), 2485 NewVAddr) 2486 .addReg(SRsrcPtr, 0, AMDGPU::sub0) 2487 .addImm(AMDGPU::sub0) 2488 .addReg(SRsrcPtr, 0, AMDGPU::sub1) 2489 .addImm(AMDGPU::sub1); 2490 2491 VAddr = getNamedOperand(*Addr64, AMDGPU::OpName::vaddr); 2492 SRsrc = getNamedOperand(*Addr64, AMDGPU::OpName::srsrc); 2493 } 2494 2495 // Update the instruction to use NewVaddr 2496 VAddr->setReg(NewVAddr); 2497 // Update the instruction to use NewSRsrc 2498 SRsrc->setReg(NewSRsrc); 2499 } 2500 } 2501 2502 void SIInstrInfo::moveToVALU(MachineInstr &TopInst) const { 2503 SmallVector<MachineInstr *, 128> Worklist; 2504 Worklist.push_back(&TopInst); 2505 2506 while (!Worklist.empty()) { 2507 MachineInstr &Inst = *Worklist.pop_back_val(); 2508 MachineBasicBlock *MBB = Inst.getParent(); 2509 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo(); 2510 2511 unsigned Opcode = Inst.getOpcode(); 2512 unsigned NewOpcode = getVALUOp(Inst); 2513 2514 // Handle some special cases 2515 switch (Opcode) { 2516 default: 2517 break; 2518 case AMDGPU::S_AND_B64: 2519 splitScalar64BitBinaryOp(Worklist, Inst, AMDGPU::V_AND_B32_e64); 2520 Inst.eraseFromParent(); 2521 continue; 2522 2523 case AMDGPU::S_OR_B64: 2524 splitScalar64BitBinaryOp(Worklist, Inst, AMDGPU::V_OR_B32_e64); 2525 Inst.eraseFromParent(); 2526 continue; 2527 2528 case AMDGPU::S_XOR_B64: 2529 splitScalar64BitBinaryOp(Worklist, Inst, AMDGPU::V_XOR_B32_e64); 2530 Inst.eraseFromParent(); 2531 continue; 2532 2533 case AMDGPU::S_NOT_B64: 2534 splitScalar64BitUnaryOp(Worklist, Inst, AMDGPU::V_NOT_B32_e32); 2535 Inst.eraseFromParent(); 2536 continue; 2537 2538 case AMDGPU::S_BCNT1_I32_B64: 2539 splitScalar64BitBCNT(Worklist, Inst); 2540 Inst.eraseFromParent(); 2541 continue; 2542 2543 case AMDGPU::S_BFE_I64: { 2544 splitScalar64BitBFE(Worklist, Inst); 2545 Inst.eraseFromParent(); 2546 continue; 2547 } 2548 2549 case AMDGPU::S_LSHL_B32: 2550 if (ST.getGeneration() >= SISubtarget::VOLCANIC_ISLANDS) { 2551 NewOpcode = AMDGPU::V_LSHLREV_B32_e64; 2552 swapOperands(Inst); 2553 } 2554 break; 2555 case AMDGPU::S_ASHR_I32: 2556 if (ST.getGeneration() >= SISubtarget::VOLCANIC_ISLANDS) { 2557 NewOpcode = AMDGPU::V_ASHRREV_I32_e64; 2558 swapOperands(Inst); 2559 } 2560 break; 2561 case AMDGPU::S_LSHR_B32: 2562 if (ST.getGeneration() >= SISubtarget::VOLCANIC_ISLANDS) { 2563 NewOpcode = AMDGPU::V_LSHRREV_B32_e64; 2564 swapOperands(Inst); 2565 } 2566 break; 2567 case AMDGPU::S_LSHL_B64: 2568 if (ST.getGeneration() >= SISubtarget::VOLCANIC_ISLANDS) { 2569 NewOpcode = AMDGPU::V_LSHLREV_B64; 2570 swapOperands(Inst); 2571 } 2572 break; 2573 case AMDGPU::S_ASHR_I64: 2574 if (ST.getGeneration() >= SISubtarget::VOLCANIC_ISLANDS) { 2575 NewOpcode = AMDGPU::V_ASHRREV_I64; 2576 swapOperands(Inst); 2577 } 2578 break; 2579 case AMDGPU::S_LSHR_B64: 2580 if (ST.getGeneration() >= SISubtarget::VOLCANIC_ISLANDS) { 2581 NewOpcode = AMDGPU::V_LSHRREV_B64; 2582 swapOperands(Inst); 2583 } 2584 break; 2585 2586 case AMDGPU::S_ABS_I32: 2587 lowerScalarAbs(Worklist, Inst); 2588 Inst.eraseFromParent(); 2589 continue; 2590 2591 case AMDGPU::S_CBRANCH_SCC0: 2592 case AMDGPU::S_CBRANCH_SCC1: 2593 // Clear unused bits of vcc 2594 BuildMI(*MBB, Inst, Inst.getDebugLoc(), get(AMDGPU::S_AND_B64), 2595 AMDGPU::VCC) 2596 .addReg(AMDGPU::EXEC) 2597 .addReg(AMDGPU::VCC); 2598 break; 2599 2600 case AMDGPU::S_BFE_U64: 2601 case AMDGPU::S_BFM_B64: 2602 llvm_unreachable("Moving this op to VALU not implemented"); 2603 } 2604 2605 if (NewOpcode == AMDGPU::INSTRUCTION_LIST_END) { 2606 // We cannot move this instruction to the VALU, so we should try to 2607 // legalize its operands instead. 2608 legalizeOperands(Inst); 2609 continue; 2610 } 2611 2612 // Use the new VALU Opcode. 2613 const MCInstrDesc &NewDesc = get(NewOpcode); 2614 Inst.setDesc(NewDesc); 2615 2616 // Remove any references to SCC. Vector instructions can't read from it, and 2617 // We're just about to add the implicit use / defs of VCC, and we don't want 2618 // both. 2619 for (unsigned i = Inst.getNumOperands() - 1; i > 0; --i) { 2620 MachineOperand &Op = Inst.getOperand(i); 2621 if (Op.isReg() && Op.getReg() == AMDGPU::SCC) { 2622 Inst.RemoveOperand(i); 2623 addSCCDefUsersToVALUWorklist(Inst, Worklist); 2624 } 2625 } 2626 2627 if (Opcode == AMDGPU::S_SEXT_I32_I8 || Opcode == AMDGPU::S_SEXT_I32_I16) { 2628 // We are converting these to a BFE, so we need to add the missing 2629 // operands for the size and offset. 2630 unsigned Size = (Opcode == AMDGPU::S_SEXT_I32_I8) ? 8 : 16; 2631 Inst.addOperand(MachineOperand::CreateImm(0)); 2632 Inst.addOperand(MachineOperand::CreateImm(Size)); 2633 2634 } else if (Opcode == AMDGPU::S_BCNT1_I32_B32) { 2635 // The VALU version adds the second operand to the result, so insert an 2636 // extra 0 operand. 2637 Inst.addOperand(MachineOperand::CreateImm(0)); 2638 } 2639 2640 Inst.addImplicitDefUseOperands(*Inst.getParent()->getParent()); 2641 2642 if (Opcode == AMDGPU::S_BFE_I32 || Opcode == AMDGPU::S_BFE_U32) { 2643 const MachineOperand &OffsetWidthOp = Inst.getOperand(2); 2644 // If we need to move this to VGPRs, we need to unpack the second operand 2645 // back into the 2 separate ones for bit offset and width. 2646 assert(OffsetWidthOp.isImm() && 2647 "Scalar BFE is only implemented for constant width and offset"); 2648 uint32_t Imm = OffsetWidthOp.getImm(); 2649 2650 uint32_t Offset = Imm & 0x3f; // Extract bits [5:0]. 2651 uint32_t BitWidth = (Imm & 0x7f0000) >> 16; // Extract bits [22:16]. 2652 Inst.RemoveOperand(2); // Remove old immediate. 2653 Inst.addOperand(MachineOperand::CreateImm(Offset)); 2654 Inst.addOperand(MachineOperand::CreateImm(BitWidth)); 2655 } 2656 2657 bool HasDst = Inst.getOperand(0).isReg() && Inst.getOperand(0).isDef(); 2658 unsigned NewDstReg = AMDGPU::NoRegister; 2659 if (HasDst) { 2660 // Update the destination register class. 2661 const TargetRegisterClass *NewDstRC = getDestEquivalentVGPRClass(Inst); 2662 if (!NewDstRC) 2663 continue; 2664 2665 unsigned DstReg = Inst.getOperand(0).getReg(); 2666 NewDstReg = MRI.createVirtualRegister(NewDstRC); 2667 MRI.replaceRegWith(DstReg, NewDstReg); 2668 } 2669 2670 // Legalize the operands 2671 legalizeOperands(Inst); 2672 2673 if (HasDst) 2674 addUsersToMoveToVALUWorklist(NewDstReg, MRI, Worklist); 2675 } 2676 } 2677 2678 //===----------------------------------------------------------------------===// 2679 // Indirect addressing callbacks 2680 //===----------------------------------------------------------------------===// 2681 2682 const TargetRegisterClass *SIInstrInfo::getIndirectAddrRegClass() const { 2683 return &AMDGPU::VGPR_32RegClass; 2684 } 2685 2686 void SIInstrInfo::lowerScalarAbs(SmallVectorImpl<MachineInstr *> &Worklist, 2687 MachineInstr &Inst) const { 2688 MachineBasicBlock &MBB = *Inst.getParent(); 2689 MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo(); 2690 MachineBasicBlock::iterator MII = Inst; 2691 DebugLoc DL = Inst.getDebugLoc(); 2692 2693 MachineOperand &Dest = Inst.getOperand(0); 2694 MachineOperand &Src = Inst.getOperand(1); 2695 unsigned TmpReg = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass); 2696 unsigned ResultReg = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass); 2697 2698 BuildMI(MBB, MII, DL, get(AMDGPU::V_SUB_I32_e32), TmpReg) 2699 .addImm(0) 2700 .addReg(Src.getReg()); 2701 2702 BuildMI(MBB, MII, DL, get(AMDGPU::V_MAX_I32_e64), ResultReg) 2703 .addReg(Src.getReg()) 2704 .addReg(TmpReg); 2705 2706 MRI.replaceRegWith(Dest.getReg(), ResultReg); 2707 addUsersToMoveToVALUWorklist(ResultReg, MRI, Worklist); 2708 } 2709 2710 void SIInstrInfo::splitScalar64BitUnaryOp( 2711 SmallVectorImpl<MachineInstr *> &Worklist, MachineInstr &Inst, 2712 unsigned Opcode) const { 2713 MachineBasicBlock &MBB = *Inst.getParent(); 2714 MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo(); 2715 2716 MachineOperand &Dest = Inst.getOperand(0); 2717 MachineOperand &Src0 = Inst.getOperand(1); 2718 DebugLoc DL = Inst.getDebugLoc(); 2719 2720 MachineBasicBlock::iterator MII = Inst; 2721 2722 const MCInstrDesc &InstDesc = get(Opcode); 2723 const TargetRegisterClass *Src0RC = Src0.isReg() ? 2724 MRI.getRegClass(Src0.getReg()) : 2725 &AMDGPU::SGPR_32RegClass; 2726 2727 const TargetRegisterClass *Src0SubRC = RI.getSubRegClass(Src0RC, AMDGPU::sub0); 2728 2729 MachineOperand SrcReg0Sub0 = buildExtractSubRegOrImm(MII, MRI, Src0, Src0RC, 2730 AMDGPU::sub0, Src0SubRC); 2731 2732 const TargetRegisterClass *DestRC = MRI.getRegClass(Dest.getReg()); 2733 const TargetRegisterClass *NewDestRC = RI.getEquivalentVGPRClass(DestRC); 2734 const TargetRegisterClass *NewDestSubRC = RI.getSubRegClass(NewDestRC, AMDGPU::sub0); 2735 2736 unsigned DestSub0 = MRI.createVirtualRegister(NewDestSubRC); 2737 BuildMI(MBB, MII, DL, InstDesc, DestSub0) 2738 .addOperand(SrcReg0Sub0); 2739 2740 MachineOperand SrcReg0Sub1 = buildExtractSubRegOrImm(MII, MRI, Src0, Src0RC, 2741 AMDGPU::sub1, Src0SubRC); 2742 2743 unsigned DestSub1 = MRI.createVirtualRegister(NewDestSubRC); 2744 BuildMI(MBB, MII, DL, InstDesc, DestSub1) 2745 .addOperand(SrcReg0Sub1); 2746 2747 unsigned FullDestReg = MRI.createVirtualRegister(NewDestRC); 2748 BuildMI(MBB, MII, DL, get(TargetOpcode::REG_SEQUENCE), FullDestReg) 2749 .addReg(DestSub0) 2750 .addImm(AMDGPU::sub0) 2751 .addReg(DestSub1) 2752 .addImm(AMDGPU::sub1); 2753 2754 MRI.replaceRegWith(Dest.getReg(), FullDestReg); 2755 2756 // We don't need to legalizeOperands here because for a single operand, src0 2757 // will support any kind of input. 2758 2759 // Move all users of this moved value. 2760 addUsersToMoveToVALUWorklist(FullDestReg, MRI, Worklist); 2761 } 2762 2763 void SIInstrInfo::splitScalar64BitBinaryOp( 2764 SmallVectorImpl<MachineInstr *> &Worklist, MachineInstr &Inst, 2765 unsigned Opcode) const { 2766 MachineBasicBlock &MBB = *Inst.getParent(); 2767 MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo(); 2768 2769 MachineOperand &Dest = Inst.getOperand(0); 2770 MachineOperand &Src0 = Inst.getOperand(1); 2771 MachineOperand &Src1 = Inst.getOperand(2); 2772 DebugLoc DL = Inst.getDebugLoc(); 2773 2774 MachineBasicBlock::iterator MII = Inst; 2775 2776 const MCInstrDesc &InstDesc = get(Opcode); 2777 const TargetRegisterClass *Src0RC = Src0.isReg() ? 2778 MRI.getRegClass(Src0.getReg()) : 2779 &AMDGPU::SGPR_32RegClass; 2780 2781 const TargetRegisterClass *Src0SubRC = RI.getSubRegClass(Src0RC, AMDGPU::sub0); 2782 const TargetRegisterClass *Src1RC = Src1.isReg() ? 2783 MRI.getRegClass(Src1.getReg()) : 2784 &AMDGPU::SGPR_32RegClass; 2785 2786 const TargetRegisterClass *Src1SubRC = RI.getSubRegClass(Src1RC, AMDGPU::sub0); 2787 2788 MachineOperand SrcReg0Sub0 = buildExtractSubRegOrImm(MII, MRI, Src0, Src0RC, 2789 AMDGPU::sub0, Src0SubRC); 2790 MachineOperand SrcReg1Sub0 = buildExtractSubRegOrImm(MII, MRI, Src1, Src1RC, 2791 AMDGPU::sub0, Src1SubRC); 2792 2793 const TargetRegisterClass *DestRC = MRI.getRegClass(Dest.getReg()); 2794 const TargetRegisterClass *NewDestRC = RI.getEquivalentVGPRClass(DestRC); 2795 const TargetRegisterClass *NewDestSubRC = RI.getSubRegClass(NewDestRC, AMDGPU::sub0); 2796 2797 unsigned DestSub0 = MRI.createVirtualRegister(NewDestSubRC); 2798 MachineInstr &LoHalf = *BuildMI(MBB, MII, DL, InstDesc, DestSub0) 2799 .addOperand(SrcReg0Sub0) 2800 .addOperand(SrcReg1Sub0); 2801 2802 MachineOperand SrcReg0Sub1 = buildExtractSubRegOrImm(MII, MRI, Src0, Src0RC, 2803 AMDGPU::sub1, Src0SubRC); 2804 MachineOperand SrcReg1Sub1 = buildExtractSubRegOrImm(MII, MRI, Src1, Src1RC, 2805 AMDGPU::sub1, Src1SubRC); 2806 2807 unsigned DestSub1 = MRI.createVirtualRegister(NewDestSubRC); 2808 MachineInstr &HiHalf = *BuildMI(MBB, MII, DL, InstDesc, DestSub1) 2809 .addOperand(SrcReg0Sub1) 2810 .addOperand(SrcReg1Sub1); 2811 2812 unsigned FullDestReg = MRI.createVirtualRegister(NewDestRC); 2813 BuildMI(MBB, MII, DL, get(TargetOpcode::REG_SEQUENCE), FullDestReg) 2814 .addReg(DestSub0) 2815 .addImm(AMDGPU::sub0) 2816 .addReg(DestSub1) 2817 .addImm(AMDGPU::sub1); 2818 2819 MRI.replaceRegWith(Dest.getReg(), FullDestReg); 2820 2821 // Try to legalize the operands in case we need to swap the order to keep it 2822 // valid. 2823 legalizeOperands(LoHalf); 2824 legalizeOperands(HiHalf); 2825 2826 // Move all users of this moved vlaue. 2827 addUsersToMoveToVALUWorklist(FullDestReg, MRI, Worklist); 2828 } 2829 2830 void SIInstrInfo::splitScalar64BitBCNT( 2831 SmallVectorImpl<MachineInstr *> &Worklist, MachineInstr &Inst) const { 2832 MachineBasicBlock &MBB = *Inst.getParent(); 2833 MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo(); 2834 2835 MachineBasicBlock::iterator MII = Inst; 2836 DebugLoc DL = Inst.getDebugLoc(); 2837 2838 MachineOperand &Dest = Inst.getOperand(0); 2839 MachineOperand &Src = Inst.getOperand(1); 2840 2841 const MCInstrDesc &InstDesc = get(AMDGPU::V_BCNT_U32_B32_e64); 2842 const TargetRegisterClass *SrcRC = Src.isReg() ? 2843 MRI.getRegClass(Src.getReg()) : 2844 &AMDGPU::SGPR_32RegClass; 2845 2846 unsigned MidReg = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass); 2847 unsigned ResultReg = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass); 2848 2849 const TargetRegisterClass *SrcSubRC = RI.getSubRegClass(SrcRC, AMDGPU::sub0); 2850 2851 MachineOperand SrcRegSub0 = buildExtractSubRegOrImm(MII, MRI, Src, SrcRC, 2852 AMDGPU::sub0, SrcSubRC); 2853 MachineOperand SrcRegSub1 = buildExtractSubRegOrImm(MII, MRI, Src, SrcRC, 2854 AMDGPU::sub1, SrcSubRC); 2855 2856 BuildMI(MBB, MII, DL, InstDesc, MidReg) 2857 .addOperand(SrcRegSub0) 2858 .addImm(0); 2859 2860 BuildMI(MBB, MII, DL, InstDesc, ResultReg) 2861 .addOperand(SrcRegSub1) 2862 .addReg(MidReg); 2863 2864 MRI.replaceRegWith(Dest.getReg(), ResultReg); 2865 2866 // We don't need to legalize operands here. src0 for etiher instruction can be 2867 // an SGPR, and the second input is unused or determined here. 2868 addUsersToMoveToVALUWorklist(ResultReg, MRI, Worklist); 2869 } 2870 2871 void SIInstrInfo::splitScalar64BitBFE(SmallVectorImpl<MachineInstr *> &Worklist, 2872 MachineInstr &Inst) const { 2873 MachineBasicBlock &MBB = *Inst.getParent(); 2874 MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo(); 2875 MachineBasicBlock::iterator MII = Inst; 2876 DebugLoc DL = Inst.getDebugLoc(); 2877 2878 MachineOperand &Dest = Inst.getOperand(0); 2879 uint32_t Imm = Inst.getOperand(2).getImm(); 2880 uint32_t Offset = Imm & 0x3f; // Extract bits [5:0]. 2881 uint32_t BitWidth = (Imm & 0x7f0000) >> 16; // Extract bits [22:16]. 2882 2883 (void) Offset; 2884 2885 // Only sext_inreg cases handled. 2886 assert(Inst.getOpcode() == AMDGPU::S_BFE_I64 && BitWidth <= 32 && 2887 Offset == 0 && "Not implemented"); 2888 2889 if (BitWidth < 32) { 2890 unsigned MidRegLo = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass); 2891 unsigned MidRegHi = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass); 2892 unsigned ResultReg = MRI.createVirtualRegister(&AMDGPU::VReg_64RegClass); 2893 2894 BuildMI(MBB, MII, DL, get(AMDGPU::V_BFE_I32), MidRegLo) 2895 .addReg(Inst.getOperand(1).getReg(), 0, AMDGPU::sub0) 2896 .addImm(0) 2897 .addImm(BitWidth); 2898 2899 BuildMI(MBB, MII, DL, get(AMDGPU::V_ASHRREV_I32_e32), MidRegHi) 2900 .addImm(31) 2901 .addReg(MidRegLo); 2902 2903 BuildMI(MBB, MII, DL, get(TargetOpcode::REG_SEQUENCE), ResultReg) 2904 .addReg(MidRegLo) 2905 .addImm(AMDGPU::sub0) 2906 .addReg(MidRegHi) 2907 .addImm(AMDGPU::sub1); 2908 2909 MRI.replaceRegWith(Dest.getReg(), ResultReg); 2910 addUsersToMoveToVALUWorklist(ResultReg, MRI, Worklist); 2911 return; 2912 } 2913 2914 MachineOperand &Src = Inst.getOperand(1); 2915 unsigned TmpReg = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass); 2916 unsigned ResultReg = MRI.createVirtualRegister(&AMDGPU::VReg_64RegClass); 2917 2918 BuildMI(MBB, MII, DL, get(AMDGPU::V_ASHRREV_I32_e64), TmpReg) 2919 .addImm(31) 2920 .addReg(Src.getReg(), 0, AMDGPU::sub0); 2921 2922 BuildMI(MBB, MII, DL, get(TargetOpcode::REG_SEQUENCE), ResultReg) 2923 .addReg(Src.getReg(), 0, AMDGPU::sub0) 2924 .addImm(AMDGPU::sub0) 2925 .addReg(TmpReg) 2926 .addImm(AMDGPU::sub1); 2927 2928 MRI.replaceRegWith(Dest.getReg(), ResultReg); 2929 addUsersToMoveToVALUWorklist(ResultReg, MRI, Worklist); 2930 } 2931 2932 void SIInstrInfo::addUsersToMoveToVALUWorklist( 2933 unsigned DstReg, 2934 MachineRegisterInfo &MRI, 2935 SmallVectorImpl<MachineInstr *> &Worklist) const { 2936 for (MachineRegisterInfo::use_iterator I = MRI.use_begin(DstReg), 2937 E = MRI.use_end(); I != E; ++I) { 2938 MachineInstr &UseMI = *I->getParent(); 2939 if (!canReadVGPR(UseMI, I.getOperandNo())) { 2940 Worklist.push_back(&UseMI); 2941 } 2942 } 2943 } 2944 2945 void SIInstrInfo::addSCCDefUsersToVALUWorklist( 2946 MachineInstr &SCCDefInst, SmallVectorImpl<MachineInstr *> &Worklist) const { 2947 // This assumes that all the users of SCC are in the same block 2948 // as the SCC def. 2949 for (MachineBasicBlock::iterator I = SCCDefInst, 2950 E = SCCDefInst.getParent()->end(); 2951 I != E; ++I) { 2952 // Exit if we find another SCC def. 2953 if (I->findRegisterDefOperandIdx(AMDGPU::SCC) != -1) 2954 return; 2955 2956 if (I->findRegisterUseOperandIdx(AMDGPU::SCC) != -1) 2957 Worklist.push_back(I); 2958 } 2959 } 2960 2961 const TargetRegisterClass *SIInstrInfo::getDestEquivalentVGPRClass( 2962 const MachineInstr &Inst) const { 2963 const TargetRegisterClass *NewDstRC = getOpRegClass(Inst, 0); 2964 2965 switch (Inst.getOpcode()) { 2966 // For target instructions, getOpRegClass just returns the virtual register 2967 // class associated with the operand, so we need to find an equivalent VGPR 2968 // register class in order to move the instruction to the VALU. 2969 case AMDGPU::COPY: 2970 case AMDGPU::PHI: 2971 case AMDGPU::REG_SEQUENCE: 2972 case AMDGPU::INSERT_SUBREG: 2973 if (RI.hasVGPRs(NewDstRC)) 2974 return nullptr; 2975 2976 NewDstRC = RI.getEquivalentVGPRClass(NewDstRC); 2977 if (!NewDstRC) 2978 return nullptr; 2979 return NewDstRC; 2980 default: 2981 return NewDstRC; 2982 } 2983 } 2984 2985 // Find the one SGPR operand we are allowed to use. 2986 unsigned SIInstrInfo::findUsedSGPR(const MachineInstr &MI, 2987 int OpIndices[3]) const { 2988 const MCInstrDesc &Desc = MI.getDesc(); 2989 2990 // Find the one SGPR operand we are allowed to use. 2991 // 2992 // First we need to consider the instruction's operand requirements before 2993 // legalizing. Some operands are required to be SGPRs, such as implicit uses 2994 // of VCC, but we are still bound by the constant bus requirement to only use 2995 // one. 2996 // 2997 // If the operand's class is an SGPR, we can never move it. 2998 2999 unsigned SGPRReg = findImplicitSGPRRead(MI); 3000 if (SGPRReg != AMDGPU::NoRegister) 3001 return SGPRReg; 3002 3003 unsigned UsedSGPRs[3] = { AMDGPU::NoRegister }; 3004 const MachineRegisterInfo &MRI = MI.getParent()->getParent()->getRegInfo(); 3005 3006 for (unsigned i = 0; i < 3; ++i) { 3007 int Idx = OpIndices[i]; 3008 if (Idx == -1) 3009 break; 3010 3011 const MachineOperand &MO = MI.getOperand(Idx); 3012 if (!MO.isReg()) 3013 continue; 3014 3015 // Is this operand statically required to be an SGPR based on the operand 3016 // constraints? 3017 const TargetRegisterClass *OpRC = RI.getRegClass(Desc.OpInfo[Idx].RegClass); 3018 bool IsRequiredSGPR = RI.isSGPRClass(OpRC); 3019 if (IsRequiredSGPR) 3020 return MO.getReg(); 3021 3022 // If this could be a VGPR or an SGPR, Check the dynamic register class. 3023 unsigned Reg = MO.getReg(); 3024 const TargetRegisterClass *RegRC = MRI.getRegClass(Reg); 3025 if (RI.isSGPRClass(RegRC)) 3026 UsedSGPRs[i] = Reg; 3027 } 3028 3029 // We don't have a required SGPR operand, so we have a bit more freedom in 3030 // selecting operands to move. 3031 3032 // Try to select the most used SGPR. If an SGPR is equal to one of the 3033 // others, we choose that. 3034 // 3035 // e.g. 3036 // V_FMA_F32 v0, s0, s0, s0 -> No moves 3037 // V_FMA_F32 v0, s0, s1, s0 -> Move s1 3038 3039 // TODO: If some of the operands are 64-bit SGPRs and some 32, we should 3040 // prefer those. 3041 3042 if (UsedSGPRs[0] != AMDGPU::NoRegister) { 3043 if (UsedSGPRs[0] == UsedSGPRs[1] || UsedSGPRs[0] == UsedSGPRs[2]) 3044 SGPRReg = UsedSGPRs[0]; 3045 } 3046 3047 if (SGPRReg == AMDGPU::NoRegister && UsedSGPRs[1] != AMDGPU::NoRegister) { 3048 if (UsedSGPRs[1] == UsedSGPRs[2]) 3049 SGPRReg = UsedSGPRs[1]; 3050 } 3051 3052 return SGPRReg; 3053 } 3054 3055 MachineOperand *SIInstrInfo::getNamedOperand(MachineInstr &MI, 3056 unsigned OperandName) const { 3057 int Idx = AMDGPU::getNamedOperandIdx(MI.getOpcode(), OperandName); 3058 if (Idx == -1) 3059 return nullptr; 3060 3061 return &MI.getOperand(Idx); 3062 } 3063 3064 uint64_t SIInstrInfo::getDefaultRsrcDataFormat() const { 3065 uint64_t RsrcDataFormat = AMDGPU::RSRC_DATA_FORMAT; 3066 if (ST.isAmdHsaOS()) { 3067 RsrcDataFormat |= (1ULL << 56); 3068 3069 if (ST.getGeneration() >= SISubtarget::VOLCANIC_ISLANDS) 3070 // Set MTYPE = 2 3071 RsrcDataFormat |= (2ULL << 59); 3072 } 3073 3074 return RsrcDataFormat; 3075 } 3076 3077 uint64_t SIInstrInfo::getScratchRsrcWords23() const { 3078 uint64_t Rsrc23 = getDefaultRsrcDataFormat() | 3079 AMDGPU::RSRC_TID_ENABLE | 3080 0xffffffff; // Size; 3081 3082 uint64_t EltSizeValue = Log2_32(ST.getMaxPrivateElementSize()) - 1; 3083 3084 Rsrc23 |= (EltSizeValue << AMDGPU::RSRC_ELEMENT_SIZE_SHIFT) | 3085 // IndexStride = 64 3086 (UINT64_C(3) << AMDGPU::RSRC_INDEX_STRIDE_SHIFT); 3087 3088 // If TID_ENABLE is set, DATA_FORMAT specifies stride bits [14:17]. 3089 // Clear them unless we want a huge stride. 3090 if (ST.getGeneration() >= SISubtarget::VOLCANIC_ISLANDS) 3091 Rsrc23 &= ~AMDGPU::RSRC_DATA_FORMAT; 3092 3093 return Rsrc23; 3094 } 3095 3096 bool SIInstrInfo::isLowLatencyInstruction(const MachineInstr &MI) const { 3097 unsigned Opc = MI.getOpcode(); 3098 3099 return isSMRD(Opc); 3100 } 3101 3102 bool SIInstrInfo::isHighLatencyInstruction(const MachineInstr &MI) const { 3103 unsigned Opc = MI.getOpcode(); 3104 3105 return isMUBUF(Opc) || isMTBUF(Opc) || isMIMG(Opc); 3106 } 3107 3108 unsigned SIInstrInfo::getInstSizeInBytes(const MachineInstr &MI) const { 3109 unsigned Opc = MI.getOpcode(); 3110 const MCInstrDesc &Desc = getMCOpcodeFromPseudo(Opc); 3111 unsigned DescSize = Desc.getSize(); 3112 3113 // If we have a definitive size, we can use it. Otherwise we need to inspect 3114 // the operands to know the size. 3115 if (DescSize == 8 || DescSize == 4) 3116 return DescSize; 3117 3118 assert(DescSize == 0); 3119 3120 // 4-byte instructions may have a 32-bit literal encoded after them. Check 3121 // operands that coud ever be literals. 3122 if (isVALU(MI) || isSALU(MI)) { 3123 int Src0Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src0); 3124 if (Src0Idx == -1) 3125 return 4; // No operands. 3126 3127 if (isLiteralConstant(MI.getOperand(Src0Idx), getOpSize(MI, Src0Idx))) 3128 return 8; 3129 3130 int Src1Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src1); 3131 if (Src1Idx == -1) 3132 return 4; 3133 3134 if (isLiteralConstant(MI.getOperand(Src1Idx), getOpSize(MI, Src1Idx))) 3135 return 8; 3136 3137 return 4; 3138 } 3139 3140 switch (Opc) { 3141 case TargetOpcode::IMPLICIT_DEF: 3142 case TargetOpcode::KILL: 3143 case TargetOpcode::DBG_VALUE: 3144 case TargetOpcode::BUNDLE: 3145 case TargetOpcode::EH_LABEL: 3146 return 0; 3147 case TargetOpcode::INLINEASM: { 3148 const MachineFunction *MF = MI.getParent()->getParent(); 3149 const char *AsmStr = MI.getOperand(0).getSymbolName(); 3150 return getInlineAsmLength(AsmStr, *MF->getTarget().getMCAsmInfo()); 3151 } 3152 default: 3153 llvm_unreachable("unable to find instruction size"); 3154 } 3155 } 3156 3157 ArrayRef<std::pair<int, const char *>> 3158 SIInstrInfo::getSerializableTargetIndices() const { 3159 static const std::pair<int, const char *> TargetIndices[] = { 3160 {AMDGPU::TI_CONSTDATA_START, "amdgpu-constdata-start"}, 3161 {AMDGPU::TI_SCRATCH_RSRC_DWORD0, "amdgpu-scratch-rsrc-dword0"}, 3162 {AMDGPU::TI_SCRATCH_RSRC_DWORD1, "amdgpu-scratch-rsrc-dword1"}, 3163 {AMDGPU::TI_SCRATCH_RSRC_DWORD2, "amdgpu-scratch-rsrc-dword2"}, 3164 {AMDGPU::TI_SCRATCH_RSRC_DWORD3, "amdgpu-scratch-rsrc-dword3"}}; 3165 return makeArrayRef(TargetIndices); 3166 } 3167 3168 /// This is used by the post-RA scheduler (SchedulePostRAList.cpp). The 3169 /// post-RA version of misched uses CreateTargetMIHazardRecognizer. 3170 ScheduleHazardRecognizer * 3171 SIInstrInfo::CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II, 3172 const ScheduleDAG *DAG) const { 3173 return new GCNHazardRecognizer(DAG->MF); 3174 } 3175 3176 /// This is the hazard recognizer used at -O0 by the PostRAHazardRecognizer 3177 /// pass. 3178 ScheduleHazardRecognizer * 3179 SIInstrInfo::CreateTargetPostRAHazardRecognizer(const MachineFunction &MF) const { 3180 return new GCNHazardRecognizer(MF); 3181 } 3182