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/RegisterScavenging.h"
24 #include "llvm/CodeGen/ScheduleDAG.h"
25 #include "llvm/IR/DiagnosticInfo.h"
26 #include "llvm/IR/Function.h"
27 #include "llvm/MC/MCInstrDesc.h"
28 #include "llvm/Support/Debug.h"
29 
30 using namespace llvm;
31 
32 // Must be at least 4 to be able to branch over minimum unconditional branch
33 // code. This is only for making it possible to write reasonably small tests for
34 // long branches.
35 static cl::opt<unsigned>
36 BranchOffsetBits("amdgpu-s-branch-bits", cl::ReallyHidden, cl::init(16),
37                  cl::desc("Restrict range of branch instructions (DEBUG)"));
38 
39 SIInstrInfo::SIInstrInfo(const SISubtarget &ST)
40   : AMDGPUInstrInfo(ST), RI(ST), ST(ST) {}
41 
42 //===----------------------------------------------------------------------===//
43 // TargetInstrInfo callbacks
44 //===----------------------------------------------------------------------===//
45 
46 static unsigned getNumOperandsNoGlue(SDNode *Node) {
47   unsigned N = Node->getNumOperands();
48   while (N && Node->getOperand(N - 1).getValueType() == MVT::Glue)
49     --N;
50   return N;
51 }
52 
53 static SDValue findChainOperand(SDNode *Load) {
54   SDValue LastOp = Load->getOperand(getNumOperandsNoGlue(Load) - 1);
55   assert(LastOp.getValueType() == MVT::Other && "Chain missing from load node");
56   return LastOp;
57 }
58 
59 /// \brief Returns true if both nodes have the same value for the given
60 ///        operand \p Op, or if both nodes do not have this operand.
61 static bool nodesHaveSameOperandValue(SDNode *N0, SDNode* N1, unsigned OpName) {
62   unsigned Opc0 = N0->getMachineOpcode();
63   unsigned Opc1 = N1->getMachineOpcode();
64 
65   int Op0Idx = AMDGPU::getNamedOperandIdx(Opc0, OpName);
66   int Op1Idx = AMDGPU::getNamedOperandIdx(Opc1, OpName);
67 
68   if (Op0Idx == -1 && Op1Idx == -1)
69     return true;
70 
71 
72   if ((Op0Idx == -1 && Op1Idx != -1) ||
73       (Op1Idx == -1 && Op0Idx != -1))
74     return false;
75 
76   // getNamedOperandIdx returns the index for the MachineInstr's operands,
77   // which includes the result as the first operand. We are indexing into the
78   // MachineSDNode's operands, so we need to skip the result operand to get
79   // the real index.
80   --Op0Idx;
81   --Op1Idx;
82 
83   return N0->getOperand(Op0Idx) == N1->getOperand(Op1Idx);
84 }
85 
86 bool SIInstrInfo::isReallyTriviallyReMaterializable(const MachineInstr &MI,
87                                                     AliasAnalysis *AA) const {
88   // TODO: The generic check fails for VALU instructions that should be
89   // rematerializable due to implicit reads of exec. We really want all of the
90   // generic logic for this except for this.
91   switch (MI.getOpcode()) {
92   case AMDGPU::V_MOV_B32_e32:
93   case AMDGPU::V_MOV_B32_e64:
94   case AMDGPU::V_MOV_B64_PSEUDO:
95     return true;
96   default:
97     return false;
98   }
99 }
100 
101 bool SIInstrInfo::areLoadsFromSameBasePtr(SDNode *Load0, SDNode *Load1,
102                                           int64_t &Offset0,
103                                           int64_t &Offset1) const {
104   if (!Load0->isMachineOpcode() || !Load1->isMachineOpcode())
105     return false;
106 
107   unsigned Opc0 = Load0->getMachineOpcode();
108   unsigned Opc1 = Load1->getMachineOpcode();
109 
110   // Make sure both are actually loads.
111   if (!get(Opc0).mayLoad() || !get(Opc1).mayLoad())
112     return false;
113 
114   if (isDS(Opc0) && isDS(Opc1)) {
115 
116     // FIXME: Handle this case:
117     if (getNumOperandsNoGlue(Load0) != getNumOperandsNoGlue(Load1))
118       return false;
119 
120     // Check base reg.
121     if (Load0->getOperand(1) != Load1->getOperand(1))
122       return false;
123 
124     // Check chain.
125     if (findChainOperand(Load0) != findChainOperand(Load1))
126       return false;
127 
128     // Skip read2 / write2 variants for simplicity.
129     // TODO: We should report true if the used offsets are adjacent (excluded
130     // st64 versions).
131     if (AMDGPU::getNamedOperandIdx(Opc0, AMDGPU::OpName::data1) != -1 ||
132         AMDGPU::getNamedOperandIdx(Opc1, AMDGPU::OpName::data1) != -1)
133       return false;
134 
135     Offset0 = cast<ConstantSDNode>(Load0->getOperand(2))->getZExtValue();
136     Offset1 = cast<ConstantSDNode>(Load1->getOperand(2))->getZExtValue();
137     return true;
138   }
139 
140   if (isSMRD(Opc0) && isSMRD(Opc1)) {
141     // Skip time and cache invalidation instructions.
142     if (AMDGPU::getNamedOperandIdx(Opc0, AMDGPU::OpName::sbase) == -1 ||
143         AMDGPU::getNamedOperandIdx(Opc1, AMDGPU::OpName::sbase) == -1)
144       return false;
145 
146     assert(getNumOperandsNoGlue(Load0) == getNumOperandsNoGlue(Load1));
147 
148     // Check base reg.
149     if (Load0->getOperand(0) != Load1->getOperand(0))
150       return false;
151 
152     const ConstantSDNode *Load0Offset =
153         dyn_cast<ConstantSDNode>(Load0->getOperand(1));
154     const ConstantSDNode *Load1Offset =
155         dyn_cast<ConstantSDNode>(Load1->getOperand(1));
156 
157     if (!Load0Offset || !Load1Offset)
158       return false;
159 
160     // Check chain.
161     if (findChainOperand(Load0) != findChainOperand(Load1))
162       return false;
163 
164     Offset0 = Load0Offset->getZExtValue();
165     Offset1 = Load1Offset->getZExtValue();
166     return true;
167   }
168 
169   // MUBUF and MTBUF can access the same addresses.
170   if ((isMUBUF(Opc0) || isMTBUF(Opc0)) && (isMUBUF(Opc1) || isMTBUF(Opc1))) {
171 
172     // MUBUF and MTBUF have vaddr at different indices.
173     if (!nodesHaveSameOperandValue(Load0, Load1, AMDGPU::OpName::soffset) ||
174         findChainOperand(Load0) != findChainOperand(Load1) ||
175         !nodesHaveSameOperandValue(Load0, Load1, AMDGPU::OpName::vaddr) ||
176         !nodesHaveSameOperandValue(Load0, Load1, AMDGPU::OpName::srsrc))
177       return false;
178 
179     int OffIdx0 = AMDGPU::getNamedOperandIdx(Opc0, AMDGPU::OpName::offset);
180     int OffIdx1 = AMDGPU::getNamedOperandIdx(Opc1, AMDGPU::OpName::offset);
181 
182     if (OffIdx0 == -1 || OffIdx1 == -1)
183       return false;
184 
185     // getNamedOperandIdx returns the index for MachineInstrs.  Since they
186     // inlcude the output in the operand list, but SDNodes don't, we need to
187     // subtract the index by one.
188     --OffIdx0;
189     --OffIdx1;
190 
191     SDValue Off0 = Load0->getOperand(OffIdx0);
192     SDValue Off1 = Load1->getOperand(OffIdx1);
193 
194     // The offset might be a FrameIndexSDNode.
195     if (!isa<ConstantSDNode>(Off0) || !isa<ConstantSDNode>(Off1))
196       return false;
197 
198     Offset0 = cast<ConstantSDNode>(Off0)->getZExtValue();
199     Offset1 = cast<ConstantSDNode>(Off1)->getZExtValue();
200     return true;
201   }
202 
203   return false;
204 }
205 
206 static bool isStride64(unsigned Opc) {
207   switch (Opc) {
208   case AMDGPU::DS_READ2ST64_B32:
209   case AMDGPU::DS_READ2ST64_B64:
210   case AMDGPU::DS_WRITE2ST64_B32:
211   case AMDGPU::DS_WRITE2ST64_B64:
212     return true;
213   default:
214     return false;
215   }
216 }
217 
218 bool SIInstrInfo::getMemOpBaseRegImmOfs(MachineInstr &LdSt, unsigned &BaseReg,
219                                         int64_t &Offset,
220                                         const TargetRegisterInfo *TRI) const {
221   unsigned Opc = LdSt.getOpcode();
222 
223   if (isDS(LdSt)) {
224     const MachineOperand *OffsetImm =
225         getNamedOperand(LdSt, AMDGPU::OpName::offset);
226     if (OffsetImm) {
227       // Normal, single offset LDS instruction.
228       const MachineOperand *AddrReg =
229           getNamedOperand(LdSt, AMDGPU::OpName::addr);
230 
231       BaseReg = AddrReg->getReg();
232       Offset = OffsetImm->getImm();
233       return true;
234     }
235 
236     // The 2 offset instructions use offset0 and offset1 instead. We can treat
237     // these as a load with a single offset if the 2 offsets are consecutive. We
238     // will use this for some partially aligned loads.
239     const MachineOperand *Offset0Imm =
240         getNamedOperand(LdSt, AMDGPU::OpName::offset0);
241     const MachineOperand *Offset1Imm =
242         getNamedOperand(LdSt, AMDGPU::OpName::offset1);
243 
244     uint8_t Offset0 = Offset0Imm->getImm();
245     uint8_t Offset1 = Offset1Imm->getImm();
246 
247     if (Offset1 > Offset0 && Offset1 - Offset0 == 1) {
248       // Each of these offsets is in element sized units, so we need to convert
249       // to bytes of the individual reads.
250 
251       unsigned EltSize;
252       if (LdSt.mayLoad())
253         EltSize = TRI->getRegSizeInBits(*getOpRegClass(LdSt, 0)) / 16;
254       else {
255         assert(LdSt.mayStore());
256         int Data0Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::data0);
257         EltSize = TRI->getRegSizeInBits(*getOpRegClass(LdSt, Data0Idx)) / 8;
258       }
259 
260       if (isStride64(Opc))
261         EltSize *= 64;
262 
263       const MachineOperand *AddrReg =
264           getNamedOperand(LdSt, AMDGPU::OpName::addr);
265       BaseReg = AddrReg->getReg();
266       Offset = EltSize * Offset0;
267       return true;
268     }
269 
270     return false;
271   }
272 
273   if (isMUBUF(LdSt) || isMTBUF(LdSt)) {
274     const MachineOperand *SOffset = getNamedOperand(LdSt, AMDGPU::OpName::soffset);
275     if (SOffset && SOffset->isReg())
276       return false;
277 
278     const MachineOperand *AddrReg =
279         getNamedOperand(LdSt, AMDGPU::OpName::vaddr);
280     if (!AddrReg)
281       return false;
282 
283     const MachineOperand *OffsetImm =
284         getNamedOperand(LdSt, AMDGPU::OpName::offset);
285     BaseReg = AddrReg->getReg();
286     Offset = OffsetImm->getImm();
287 
288     if (SOffset) // soffset can be an inline immediate.
289       Offset += SOffset->getImm();
290 
291     return true;
292   }
293 
294   if (isSMRD(LdSt)) {
295     const MachineOperand *OffsetImm =
296         getNamedOperand(LdSt, AMDGPU::OpName::offset);
297     if (!OffsetImm)
298       return false;
299 
300     const MachineOperand *SBaseReg =
301         getNamedOperand(LdSt, AMDGPU::OpName::sbase);
302     BaseReg = SBaseReg->getReg();
303     Offset = OffsetImm->getImm();
304     return true;
305   }
306 
307   if (isFLAT(LdSt)) {
308     const MachineOperand *AddrReg = getNamedOperand(LdSt, AMDGPU::OpName::vaddr);
309     BaseReg = AddrReg->getReg();
310     Offset = 0;
311     return true;
312   }
313 
314   return false;
315 }
316 
317 bool SIInstrInfo::shouldClusterMemOps(MachineInstr &FirstLdSt,
318                                       MachineInstr &SecondLdSt,
319                                       unsigned NumLoads) const {
320   const MachineOperand *FirstDst = nullptr;
321   const MachineOperand *SecondDst = nullptr;
322 
323   if ((isMUBUF(FirstLdSt) && isMUBUF(SecondLdSt)) ||
324       (isMTBUF(FirstLdSt) && isMTBUF(SecondLdSt)) ||
325       (isFLAT(FirstLdSt) && isFLAT(SecondLdSt))) {
326     FirstDst = getNamedOperand(FirstLdSt, AMDGPU::OpName::vdata);
327     SecondDst = getNamedOperand(SecondLdSt, AMDGPU::OpName::vdata);
328   } else if (isSMRD(FirstLdSt) && isSMRD(SecondLdSt)) {
329     FirstDst = getNamedOperand(FirstLdSt, AMDGPU::OpName::sdst);
330     SecondDst = getNamedOperand(SecondLdSt, AMDGPU::OpName::sdst);
331   } else if (isDS(FirstLdSt) && isDS(SecondLdSt)) {
332     FirstDst = getNamedOperand(FirstLdSt, AMDGPU::OpName::vdst);
333     SecondDst = getNamedOperand(SecondLdSt, AMDGPU::OpName::vdst);
334   }
335 
336   if (!FirstDst || !SecondDst)
337     return false;
338 
339   // Try to limit clustering based on the total number of bytes loaded
340   // rather than the number of instructions.  This is done to help reduce
341   // register pressure.  The method used is somewhat inexact, though,
342   // because it assumes that all loads in the cluster will load the
343   // same number of bytes as FirstLdSt.
344 
345   // The unit of this value is bytes.
346   // FIXME: This needs finer tuning.
347   unsigned LoadClusterThreshold = 16;
348 
349   const MachineRegisterInfo &MRI =
350       FirstLdSt.getParent()->getParent()->getRegInfo();
351   const TargetRegisterClass *DstRC = MRI.getRegClass(FirstDst->getReg());
352 
353   return (NumLoads * (RI.getRegSizeInBits(*DstRC) / 8)) <= LoadClusterThreshold;
354 }
355 
356 static void reportIllegalCopy(const SIInstrInfo *TII, MachineBasicBlock &MBB,
357                               MachineBasicBlock::iterator MI,
358                               const DebugLoc &DL, unsigned DestReg,
359                               unsigned SrcReg, bool KillSrc) {
360   MachineFunction *MF = MBB.getParent();
361   DiagnosticInfoUnsupported IllegalCopy(*MF->getFunction(),
362                                         "illegal SGPR to VGPR copy",
363                                         DL, DS_Error);
364   LLVMContext &C = MF->getFunction()->getContext();
365   C.diagnose(IllegalCopy);
366 
367   BuildMI(MBB, MI, DL, TII->get(AMDGPU::SI_ILLEGAL_COPY), DestReg)
368     .addReg(SrcReg, getKillRegState(KillSrc));
369 }
370 
371 void SIInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
372                               MachineBasicBlock::iterator MI,
373                               const DebugLoc &DL, unsigned DestReg,
374                               unsigned SrcReg, bool KillSrc) const {
375   const TargetRegisterClass *RC = RI.getPhysRegClass(DestReg);
376 
377   if (RC == &AMDGPU::VGPR_32RegClass) {
378     assert(AMDGPU::VGPR_32RegClass.contains(SrcReg) ||
379            AMDGPU::SReg_32RegClass.contains(SrcReg));
380     BuildMI(MBB, MI, DL, get(AMDGPU::V_MOV_B32_e32), DestReg)
381       .addReg(SrcReg, getKillRegState(KillSrc));
382     return;
383   }
384 
385   if (RC == &AMDGPU::SReg_32_XM0RegClass ||
386       RC == &AMDGPU::SReg_32RegClass) {
387     if (SrcReg == AMDGPU::SCC) {
388       BuildMI(MBB, MI, DL, get(AMDGPU::S_CSELECT_B32), DestReg)
389           .addImm(-1)
390           .addImm(0);
391       return;
392     }
393 
394     if (!AMDGPU::SReg_32RegClass.contains(SrcReg)) {
395       reportIllegalCopy(this, MBB, MI, DL, DestReg, SrcReg, KillSrc);
396       return;
397     }
398 
399     BuildMI(MBB, MI, DL, get(AMDGPU::S_MOV_B32), DestReg)
400             .addReg(SrcReg, getKillRegState(KillSrc));
401     return;
402   }
403 
404   if (RC == &AMDGPU::SReg_64RegClass) {
405     if (DestReg == AMDGPU::VCC) {
406       if (AMDGPU::SReg_64RegClass.contains(SrcReg)) {
407         BuildMI(MBB, MI, DL, get(AMDGPU::S_MOV_B64), AMDGPU::VCC)
408           .addReg(SrcReg, getKillRegState(KillSrc));
409       } else {
410         // FIXME: Hack until VReg_1 removed.
411         assert(AMDGPU::VGPR_32RegClass.contains(SrcReg));
412         BuildMI(MBB, MI, DL, get(AMDGPU::V_CMP_NE_U32_e32))
413           .addImm(0)
414           .addReg(SrcReg, getKillRegState(KillSrc));
415       }
416 
417       return;
418     }
419 
420     if (!AMDGPU::SReg_64RegClass.contains(SrcReg)) {
421       reportIllegalCopy(this, MBB, MI, DL, DestReg, SrcReg, KillSrc);
422       return;
423     }
424 
425     BuildMI(MBB, MI, DL, get(AMDGPU::S_MOV_B64), DestReg)
426             .addReg(SrcReg, getKillRegState(KillSrc));
427     return;
428   }
429 
430   if (DestReg == AMDGPU::SCC) {
431     assert(AMDGPU::SReg_32RegClass.contains(SrcReg));
432     BuildMI(MBB, MI, DL, get(AMDGPU::S_CMP_LG_U32))
433       .addReg(SrcReg, getKillRegState(KillSrc))
434       .addImm(0);
435     return;
436   }
437 
438   unsigned EltSize = 4;
439   unsigned Opcode = AMDGPU::V_MOV_B32_e32;
440   if (RI.isSGPRClass(RC)) {
441     if (RI.getRegSizeInBits(*RC) > 32) {
442       Opcode =  AMDGPU::S_MOV_B64;
443       EltSize = 8;
444     } else {
445       Opcode = AMDGPU::S_MOV_B32;
446       EltSize = 4;
447     }
448 
449     if (!RI.isSGPRClass(RI.getPhysRegClass(SrcReg))) {
450       reportIllegalCopy(this, MBB, MI, DL, DestReg, SrcReg, KillSrc);
451       return;
452     }
453   }
454 
455 
456   ArrayRef<int16_t> SubIndices = RI.getRegSplitParts(RC, EltSize);
457   bool Forward = RI.getHWRegIndex(DestReg) <= RI.getHWRegIndex(SrcReg);
458 
459   for (unsigned Idx = 0; Idx < SubIndices.size(); ++Idx) {
460     unsigned SubIdx;
461     if (Forward)
462       SubIdx = SubIndices[Idx];
463     else
464       SubIdx = SubIndices[SubIndices.size() - Idx - 1];
465 
466     MachineInstrBuilder Builder = BuildMI(MBB, MI, DL,
467       get(Opcode), RI.getSubReg(DestReg, SubIdx));
468 
469     Builder.addReg(RI.getSubReg(SrcReg, SubIdx));
470 
471     if (Idx == 0)
472       Builder.addReg(DestReg, RegState::Define | RegState::Implicit);
473 
474     bool UseKill = KillSrc && Idx == SubIndices.size() - 1;
475     Builder.addReg(SrcReg, getKillRegState(UseKill) | RegState::Implicit);
476   }
477 }
478 
479 int SIInstrInfo::commuteOpcode(unsigned Opcode) const {
480   int NewOpc;
481 
482   // Try to map original to commuted opcode
483   NewOpc = AMDGPU::getCommuteRev(Opcode);
484   if (NewOpc != -1)
485     // Check if the commuted (REV) opcode exists on the target.
486     return pseudoToMCOpcode(NewOpc) != -1 ? NewOpc : -1;
487 
488   // Try to map commuted to original opcode
489   NewOpc = AMDGPU::getCommuteOrig(Opcode);
490   if (NewOpc != -1)
491     // Check if the original (non-REV) opcode exists on the target.
492     return pseudoToMCOpcode(NewOpc) != -1 ? NewOpc : -1;
493 
494   return Opcode;
495 }
496 
497 void SIInstrInfo::materializeImmediate(MachineBasicBlock &MBB,
498                                        MachineBasicBlock::iterator MI,
499                                        const DebugLoc &DL, unsigned DestReg,
500                                        int64_t Value) const {
501   MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
502   const TargetRegisterClass *RegClass = MRI.getRegClass(DestReg);
503   if (RegClass == &AMDGPU::SReg_32RegClass ||
504       RegClass == &AMDGPU::SGPR_32RegClass ||
505       RegClass == &AMDGPU::SReg_32_XM0RegClass ||
506       RegClass == &AMDGPU::SReg_32_XM0_XEXECRegClass) {
507     BuildMI(MBB, MI, DL, get(AMDGPU::S_MOV_B32), DestReg)
508       .addImm(Value);
509     return;
510   }
511 
512   if (RegClass == &AMDGPU::SReg_64RegClass ||
513       RegClass == &AMDGPU::SGPR_64RegClass ||
514       RegClass == &AMDGPU::SReg_64_XEXECRegClass) {
515     BuildMI(MBB, MI, DL, get(AMDGPU::S_MOV_B64), DestReg)
516       .addImm(Value);
517     return;
518   }
519 
520   if (RegClass == &AMDGPU::VGPR_32RegClass) {
521     BuildMI(MBB, MI, DL, get(AMDGPU::V_MOV_B32_e32), DestReg)
522       .addImm(Value);
523     return;
524   }
525   if (RegClass == &AMDGPU::VReg_64RegClass) {
526     BuildMI(MBB, MI, DL, get(AMDGPU::V_MOV_B64_PSEUDO), DestReg)
527       .addImm(Value);
528     return;
529   }
530 
531   unsigned EltSize = 4;
532   unsigned Opcode = AMDGPU::V_MOV_B32_e32;
533   if (RI.isSGPRClass(RegClass)) {
534     if (RI.getRegSizeInBits(*RegClass) > 32) {
535       Opcode =  AMDGPU::S_MOV_B64;
536       EltSize = 8;
537     } else {
538       Opcode = AMDGPU::S_MOV_B32;
539       EltSize = 4;
540     }
541   }
542 
543   ArrayRef<int16_t> SubIndices = RI.getRegSplitParts(RegClass, EltSize);
544   for (unsigned Idx = 0; Idx < SubIndices.size(); ++Idx) {
545     int64_t IdxValue = Idx == 0 ? Value : 0;
546 
547     MachineInstrBuilder Builder = BuildMI(MBB, MI, DL,
548       get(Opcode), RI.getSubReg(DestReg, Idx));
549     Builder.addImm(IdxValue);
550   }
551 }
552 
553 const TargetRegisterClass *
554 SIInstrInfo::getPreferredSelectRegClass(unsigned Size) const {
555   return &AMDGPU::VGPR_32RegClass;
556 }
557 
558 void SIInstrInfo::insertVectorSelect(MachineBasicBlock &MBB,
559                                      MachineBasicBlock::iterator I,
560                                      const DebugLoc &DL, unsigned DstReg,
561                                      ArrayRef<MachineOperand> Cond,
562                                      unsigned TrueReg,
563                                      unsigned FalseReg) const {
564   MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
565   assert(MRI.getRegClass(DstReg) == &AMDGPU::VGPR_32RegClass &&
566          "Not a VGPR32 reg");
567 
568   if (Cond.size() == 1) {
569     BuildMI(MBB, I, DL, get(AMDGPU::V_CNDMASK_B32_e64), DstReg)
570       .addReg(FalseReg)
571       .addReg(TrueReg)
572       .add(Cond[0]);
573   } else if (Cond.size() == 2) {
574     assert(Cond[0].isImm() && "Cond[0] is not an immediate");
575     switch (Cond[0].getImm()) {
576     case SIInstrInfo::SCC_TRUE: {
577       unsigned SReg = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
578       BuildMI(MBB, I, DL, get(AMDGPU::S_CSELECT_B64), SReg)
579         .addImm(-1)
580         .addImm(0);
581       BuildMI(MBB, I, DL, get(AMDGPU::V_CNDMASK_B32_e64), DstReg)
582         .addReg(FalseReg)
583         .addReg(TrueReg)
584         .addReg(SReg);
585       break;
586     }
587     case SIInstrInfo::SCC_FALSE: {
588       unsigned SReg = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
589       BuildMI(MBB, I, DL, get(AMDGPU::S_CSELECT_B64), SReg)
590         .addImm(0)
591         .addImm(-1);
592       BuildMI(MBB, I, DL, get(AMDGPU::V_CNDMASK_B32_e64), DstReg)
593         .addReg(FalseReg)
594         .addReg(TrueReg)
595         .addReg(SReg);
596       break;
597     }
598     case SIInstrInfo::VCCNZ: {
599       MachineOperand RegOp = Cond[1];
600       RegOp.setImplicit(false);
601       BuildMI(MBB, I, DL, get(AMDGPU::V_CNDMASK_B32_e64), DstReg)
602           .addReg(FalseReg)
603           .addReg(TrueReg)
604           .add(RegOp);
605       break;
606     }
607     case SIInstrInfo::VCCZ: {
608       MachineOperand RegOp = Cond[1];
609       RegOp.setImplicit(false);
610       BuildMI(MBB, I, DL, get(AMDGPU::V_CNDMASK_B32_e64), DstReg)
611           .addReg(TrueReg)
612           .addReg(FalseReg)
613           .add(RegOp);
614       break;
615     }
616     case SIInstrInfo::EXECNZ: {
617       unsigned SReg = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
618       unsigned SReg2 = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
619       BuildMI(MBB, I, DL, get(AMDGPU::S_OR_SAVEEXEC_B64), SReg2)
620         .addImm(0);
621       BuildMI(MBB, I, DL, get(AMDGPU::S_CSELECT_B64), SReg)
622         .addImm(-1)
623         .addImm(0);
624       BuildMI(MBB, I, DL, get(AMDGPU::V_CNDMASK_B32_e64), DstReg)
625         .addReg(FalseReg)
626         .addReg(TrueReg)
627         .addReg(SReg);
628       break;
629     }
630     case SIInstrInfo::EXECZ: {
631       unsigned SReg = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
632       unsigned SReg2 = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
633       BuildMI(MBB, I, DL, get(AMDGPU::S_OR_SAVEEXEC_B64), SReg2)
634         .addImm(0);
635       BuildMI(MBB, I, DL, get(AMDGPU::S_CSELECT_B64), SReg)
636         .addImm(0)
637         .addImm(-1);
638       BuildMI(MBB, I, DL, get(AMDGPU::V_CNDMASK_B32_e64), DstReg)
639         .addReg(FalseReg)
640         .addReg(TrueReg)
641         .addReg(SReg);
642       llvm_unreachable("Unhandled branch predicate EXECZ");
643       break;
644     }
645     default:
646       llvm_unreachable("invalid branch predicate");
647     }
648   } else {
649     llvm_unreachable("Can only handle Cond size 1 or 2");
650   }
651 }
652 
653 unsigned SIInstrInfo::insertEQ(MachineBasicBlock *MBB,
654                                MachineBasicBlock::iterator I,
655                                const DebugLoc &DL,
656                                unsigned SrcReg, int Value) const {
657   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
658   unsigned Reg = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
659   BuildMI(*MBB, I, DL, get(AMDGPU::V_CMP_EQ_I32_e64), Reg)
660     .addImm(Value)
661     .addReg(SrcReg);
662 
663   return Reg;
664 }
665 
666 unsigned SIInstrInfo::insertNE(MachineBasicBlock *MBB,
667                                MachineBasicBlock::iterator I,
668                                const DebugLoc &DL,
669                                unsigned SrcReg, int Value) const {
670   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
671   unsigned Reg = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
672   BuildMI(*MBB, I, DL, get(AMDGPU::V_CMP_NE_I32_e64), Reg)
673     .addImm(Value)
674     .addReg(SrcReg);
675 
676   return Reg;
677 }
678 
679 unsigned SIInstrInfo::getMovOpcode(const TargetRegisterClass *DstRC) const {
680 
681   if (RI.getRegSizeInBits(*DstRC) == 32) {
682     return RI.isSGPRClass(DstRC) ? AMDGPU::S_MOV_B32 : AMDGPU::V_MOV_B32_e32;
683   } else if (RI.getRegSizeInBits(*DstRC) == 64 && RI.isSGPRClass(DstRC)) {
684     return AMDGPU::S_MOV_B64;
685   } else if (RI.getRegSizeInBits(*DstRC) == 64 && !RI.isSGPRClass(DstRC)) {
686     return  AMDGPU::V_MOV_B64_PSEUDO;
687   }
688   return AMDGPU::COPY;
689 }
690 
691 static unsigned getSGPRSpillSaveOpcode(unsigned Size) {
692   switch (Size) {
693   case 4:
694     return AMDGPU::SI_SPILL_S32_SAVE;
695   case 8:
696     return AMDGPU::SI_SPILL_S64_SAVE;
697   case 16:
698     return AMDGPU::SI_SPILL_S128_SAVE;
699   case 32:
700     return AMDGPU::SI_SPILL_S256_SAVE;
701   case 64:
702     return AMDGPU::SI_SPILL_S512_SAVE;
703   default:
704     llvm_unreachable("unknown register size");
705   }
706 }
707 
708 static unsigned getVGPRSpillSaveOpcode(unsigned Size) {
709   switch (Size) {
710   case 4:
711     return AMDGPU::SI_SPILL_V32_SAVE;
712   case 8:
713     return AMDGPU::SI_SPILL_V64_SAVE;
714   case 12:
715     return AMDGPU::SI_SPILL_V96_SAVE;
716   case 16:
717     return AMDGPU::SI_SPILL_V128_SAVE;
718   case 32:
719     return AMDGPU::SI_SPILL_V256_SAVE;
720   case 64:
721     return AMDGPU::SI_SPILL_V512_SAVE;
722   default:
723     llvm_unreachable("unknown register size");
724   }
725 }
726 
727 void SIInstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB,
728                                       MachineBasicBlock::iterator MI,
729                                       unsigned SrcReg, bool isKill,
730                                       int FrameIndex,
731                                       const TargetRegisterClass *RC,
732                                       const TargetRegisterInfo *TRI) const {
733   MachineFunction *MF = MBB.getParent();
734   SIMachineFunctionInfo *MFI = MF->getInfo<SIMachineFunctionInfo>();
735   MachineFrameInfo &FrameInfo = MF->getFrameInfo();
736   DebugLoc DL = MBB.findDebugLoc(MI);
737 
738   unsigned Size = FrameInfo.getObjectSize(FrameIndex);
739   unsigned Align = FrameInfo.getObjectAlignment(FrameIndex);
740   MachinePointerInfo PtrInfo
741     = MachinePointerInfo::getFixedStack(*MF, FrameIndex);
742   MachineMemOperand *MMO
743     = MF->getMachineMemOperand(PtrInfo, MachineMemOperand::MOStore,
744                                Size, Align);
745   unsigned SpillSize = TRI->getSpillSize(*RC);
746 
747   if (RI.isSGPRClass(RC)) {
748     MFI->setHasSpilledSGPRs();
749 
750     // We are only allowed to create one new instruction when spilling
751     // registers, so we need to use pseudo instruction for spilling SGPRs.
752     const MCInstrDesc &OpDesc = get(getSGPRSpillSaveOpcode(SpillSize));
753 
754     // The SGPR spill/restore instructions only work on number sgprs, so we need
755     // to make sure we are using the correct register class.
756     if (TargetRegisterInfo::isVirtualRegister(SrcReg) && SpillSize == 4) {
757       MachineRegisterInfo &MRI = MF->getRegInfo();
758       MRI.constrainRegClass(SrcReg, &AMDGPU::SReg_32_XM0RegClass);
759     }
760 
761     MachineInstrBuilder Spill = BuildMI(MBB, MI, DL, OpDesc)
762       .addReg(SrcReg, getKillRegState(isKill)) // data
763       .addFrameIndex(FrameIndex)               // addr
764       .addMemOperand(MMO)
765       .addReg(MFI->getScratchRSrcReg(), RegState::Implicit)
766       .addReg(MFI->getFrameOffsetReg(), RegState::Implicit);
767     // Add the scratch resource registers as implicit uses because we may end up
768     // needing them, and need to ensure that the reserved registers are
769     // correctly handled.
770 
771     if (ST.hasScalarStores()) {
772       // m0 is used for offset to scalar stores if used to spill.
773       Spill.addReg(AMDGPU::M0, RegState::ImplicitDefine);
774     }
775 
776     return;
777   }
778 
779   if (!ST.isVGPRSpillingEnabled(*MF->getFunction())) {
780     LLVMContext &Ctx = MF->getFunction()->getContext();
781     Ctx.emitError("SIInstrInfo::storeRegToStackSlot - Do not know how to"
782                   " spill register");
783     BuildMI(MBB, MI, DL, get(AMDGPU::KILL))
784       .addReg(SrcReg);
785 
786     return;
787   }
788 
789   assert(RI.hasVGPRs(RC) && "Only VGPR spilling expected");
790 
791   unsigned Opcode = getVGPRSpillSaveOpcode(SpillSize);
792   MFI->setHasSpilledVGPRs();
793   BuildMI(MBB, MI, DL, get(Opcode))
794     .addReg(SrcReg, getKillRegState(isKill)) // data
795     .addFrameIndex(FrameIndex)               // addr
796     .addReg(MFI->getScratchRSrcReg())        // scratch_rsrc
797     .addReg(MFI->getFrameOffsetReg())        // scratch_offset
798     .addImm(0)                               // offset
799     .addMemOperand(MMO);
800 }
801 
802 static unsigned getSGPRSpillRestoreOpcode(unsigned Size) {
803   switch (Size) {
804   case 4:
805     return AMDGPU::SI_SPILL_S32_RESTORE;
806   case 8:
807     return AMDGPU::SI_SPILL_S64_RESTORE;
808   case 16:
809     return AMDGPU::SI_SPILL_S128_RESTORE;
810   case 32:
811     return AMDGPU::SI_SPILL_S256_RESTORE;
812   case 64:
813     return AMDGPU::SI_SPILL_S512_RESTORE;
814   default:
815     llvm_unreachable("unknown register size");
816   }
817 }
818 
819 static unsigned getVGPRSpillRestoreOpcode(unsigned Size) {
820   switch (Size) {
821   case 4:
822     return AMDGPU::SI_SPILL_V32_RESTORE;
823   case 8:
824     return AMDGPU::SI_SPILL_V64_RESTORE;
825   case 12:
826     return AMDGPU::SI_SPILL_V96_RESTORE;
827   case 16:
828     return AMDGPU::SI_SPILL_V128_RESTORE;
829   case 32:
830     return AMDGPU::SI_SPILL_V256_RESTORE;
831   case 64:
832     return AMDGPU::SI_SPILL_V512_RESTORE;
833   default:
834     llvm_unreachable("unknown register size");
835   }
836 }
837 
838 void SIInstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
839                                        MachineBasicBlock::iterator MI,
840                                        unsigned DestReg, int FrameIndex,
841                                        const TargetRegisterClass *RC,
842                                        const TargetRegisterInfo *TRI) const {
843   MachineFunction *MF = MBB.getParent();
844   const SIMachineFunctionInfo *MFI = MF->getInfo<SIMachineFunctionInfo>();
845   MachineFrameInfo &FrameInfo = MF->getFrameInfo();
846   DebugLoc DL = MBB.findDebugLoc(MI);
847   unsigned Align = FrameInfo.getObjectAlignment(FrameIndex);
848   unsigned Size = FrameInfo.getObjectSize(FrameIndex);
849   unsigned SpillSize = TRI->getSpillSize(*RC);
850 
851   MachinePointerInfo PtrInfo
852     = MachinePointerInfo::getFixedStack(*MF, FrameIndex);
853 
854   MachineMemOperand *MMO = MF->getMachineMemOperand(
855     PtrInfo, MachineMemOperand::MOLoad, Size, Align);
856 
857   if (RI.isSGPRClass(RC)) {
858     // FIXME: Maybe this should not include a memoperand because it will be
859     // lowered to non-memory instructions.
860     const MCInstrDesc &OpDesc = get(getSGPRSpillRestoreOpcode(SpillSize));
861     if (TargetRegisterInfo::isVirtualRegister(DestReg) && SpillSize == 4) {
862       MachineRegisterInfo &MRI = MF->getRegInfo();
863       MRI.constrainRegClass(DestReg, &AMDGPU::SReg_32_XM0RegClass);
864     }
865 
866     MachineInstrBuilder Spill = BuildMI(MBB, MI, DL, OpDesc, DestReg)
867       .addFrameIndex(FrameIndex) // addr
868       .addMemOperand(MMO)
869       .addReg(MFI->getScratchRSrcReg(), RegState::Implicit)
870       .addReg(MFI->getFrameOffsetReg(), RegState::Implicit);
871 
872     if (ST.hasScalarStores()) {
873       // m0 is used for offset to scalar stores if used to spill.
874       Spill.addReg(AMDGPU::M0, RegState::ImplicitDefine);
875     }
876 
877     return;
878   }
879 
880   if (!ST.isVGPRSpillingEnabled(*MF->getFunction())) {
881     LLVMContext &Ctx = MF->getFunction()->getContext();
882     Ctx.emitError("SIInstrInfo::loadRegFromStackSlot - Do not know how to"
883                   " restore register");
884     BuildMI(MBB, MI, DL, get(AMDGPU::IMPLICIT_DEF), DestReg);
885 
886     return;
887   }
888 
889   assert(RI.hasVGPRs(RC) && "Only VGPR spilling expected");
890 
891   unsigned Opcode = getVGPRSpillRestoreOpcode(SpillSize);
892   BuildMI(MBB, MI, DL, get(Opcode), DestReg)
893     .addFrameIndex(FrameIndex)        // vaddr
894     .addReg(MFI->getScratchRSrcReg()) // scratch_rsrc
895     .addReg(MFI->getFrameOffsetReg()) // scratch_offset
896     .addImm(0)                        // offset
897     .addMemOperand(MMO);
898 }
899 
900 /// \param @Offset Offset in bytes of the FrameIndex being spilled
901 unsigned SIInstrInfo::calculateLDSSpillAddress(
902     MachineBasicBlock &MBB, MachineInstr &MI, RegScavenger *RS, unsigned TmpReg,
903     unsigned FrameOffset, unsigned Size) const {
904   MachineFunction *MF = MBB.getParent();
905   SIMachineFunctionInfo *MFI = MF->getInfo<SIMachineFunctionInfo>();
906   const SISubtarget &ST = MF->getSubtarget<SISubtarget>();
907   const SIRegisterInfo *TRI = ST.getRegisterInfo();
908   DebugLoc DL = MBB.findDebugLoc(MI);
909   unsigned WorkGroupSize = MFI->getMaxFlatWorkGroupSize();
910   unsigned WavefrontSize = ST.getWavefrontSize();
911 
912   unsigned TIDReg = MFI->getTIDReg();
913   if (!MFI->hasCalculatedTID()) {
914     MachineBasicBlock &Entry = MBB.getParent()->front();
915     MachineBasicBlock::iterator Insert = Entry.front();
916     DebugLoc DL = Insert->getDebugLoc();
917 
918     TIDReg = RI.findUnusedRegister(MF->getRegInfo(), &AMDGPU::VGPR_32RegClass,
919                                    *MF);
920     if (TIDReg == AMDGPU::NoRegister)
921       return TIDReg;
922 
923     if (!AMDGPU::isShader(MF->getFunction()->getCallingConv()) &&
924         WorkGroupSize > WavefrontSize) {
925 
926       unsigned TIDIGXReg
927         = TRI->getPreloadedValue(*MF, SIRegisterInfo::WORKGROUP_ID_X);
928       unsigned TIDIGYReg
929         = TRI->getPreloadedValue(*MF, SIRegisterInfo::WORKGROUP_ID_Y);
930       unsigned TIDIGZReg
931         = TRI->getPreloadedValue(*MF, SIRegisterInfo::WORKGROUP_ID_Z);
932       unsigned InputPtrReg =
933           TRI->getPreloadedValue(*MF, SIRegisterInfo::KERNARG_SEGMENT_PTR);
934       for (unsigned Reg : {TIDIGXReg, TIDIGYReg, TIDIGZReg}) {
935         if (!Entry.isLiveIn(Reg))
936           Entry.addLiveIn(Reg);
937       }
938 
939       RS->enterBasicBlock(Entry);
940       // FIXME: Can we scavenge an SReg_64 and access the subregs?
941       unsigned STmp0 = RS->scavengeRegister(&AMDGPU::SGPR_32RegClass, 0);
942       unsigned STmp1 = RS->scavengeRegister(&AMDGPU::SGPR_32RegClass, 0);
943       BuildMI(Entry, Insert, DL, get(AMDGPU::S_LOAD_DWORD_IMM), STmp0)
944               .addReg(InputPtrReg)
945               .addImm(SI::KernelInputOffsets::NGROUPS_Z);
946       BuildMI(Entry, Insert, DL, get(AMDGPU::S_LOAD_DWORD_IMM), STmp1)
947               .addReg(InputPtrReg)
948               .addImm(SI::KernelInputOffsets::NGROUPS_Y);
949 
950       // NGROUPS.X * NGROUPS.Y
951       BuildMI(Entry, Insert, DL, get(AMDGPU::S_MUL_I32), STmp1)
952               .addReg(STmp1)
953               .addReg(STmp0);
954       // (NGROUPS.X * NGROUPS.Y) * TIDIG.X
955       BuildMI(Entry, Insert, DL, get(AMDGPU::V_MUL_U32_U24_e32), TIDReg)
956               .addReg(STmp1)
957               .addReg(TIDIGXReg);
958       // NGROUPS.Z * TIDIG.Y + (NGROUPS.X * NGROPUS.Y * TIDIG.X)
959       BuildMI(Entry, Insert, DL, get(AMDGPU::V_MAD_U32_U24), TIDReg)
960               .addReg(STmp0)
961               .addReg(TIDIGYReg)
962               .addReg(TIDReg);
963       // (NGROUPS.Z * TIDIG.Y + (NGROUPS.X * NGROPUS.Y * TIDIG.X)) + TIDIG.Z
964       BuildMI(Entry, Insert, DL, get(AMDGPU::V_ADD_I32_e32), TIDReg)
965               .addReg(TIDReg)
966               .addReg(TIDIGZReg);
967     } else {
968       // Get the wave id
969       BuildMI(Entry, Insert, DL, get(AMDGPU::V_MBCNT_LO_U32_B32_e64),
970               TIDReg)
971               .addImm(-1)
972               .addImm(0);
973 
974       BuildMI(Entry, Insert, DL, get(AMDGPU::V_MBCNT_HI_U32_B32_e64),
975               TIDReg)
976               .addImm(-1)
977               .addReg(TIDReg);
978     }
979 
980     BuildMI(Entry, Insert, DL, get(AMDGPU::V_LSHLREV_B32_e32),
981             TIDReg)
982             .addImm(2)
983             .addReg(TIDReg);
984     MFI->setTIDReg(TIDReg);
985   }
986 
987   // Add FrameIndex to LDS offset
988   unsigned LDSOffset = MFI->getLDSSize() + (FrameOffset * WorkGroupSize);
989   BuildMI(MBB, MI, DL, get(AMDGPU::V_ADD_I32_e32), TmpReg)
990           .addImm(LDSOffset)
991           .addReg(TIDReg);
992 
993   return TmpReg;
994 }
995 
996 void SIInstrInfo::insertWaitStates(MachineBasicBlock &MBB,
997                                    MachineBasicBlock::iterator MI,
998                                    int Count) const {
999   DebugLoc DL = MBB.findDebugLoc(MI);
1000   while (Count > 0) {
1001     int Arg;
1002     if (Count >= 8)
1003       Arg = 7;
1004     else
1005       Arg = Count - 1;
1006     Count -= 8;
1007     BuildMI(MBB, MI, DL, get(AMDGPU::S_NOP))
1008             .addImm(Arg);
1009   }
1010 }
1011 
1012 void SIInstrInfo::insertNoop(MachineBasicBlock &MBB,
1013                              MachineBasicBlock::iterator MI) const {
1014   insertWaitStates(MBB, MI, 1);
1015 }
1016 
1017 void SIInstrInfo::insertReturn(MachineBasicBlock &MBB) const {
1018   auto MF = MBB.getParent();
1019   SIMachineFunctionInfo *Info = MF->getInfo<SIMachineFunctionInfo>();
1020 
1021   assert(Info->isEntryFunction());
1022 
1023   if (MBB.succ_empty()) {
1024     bool HasNoTerminator = MBB.getFirstTerminator() == MBB.end();
1025     if (HasNoTerminator)
1026       BuildMI(MBB, MBB.end(), DebugLoc(),
1027               get(Info->returnsVoid() ? AMDGPU::S_ENDPGM : AMDGPU::SI_RETURN_TO_EPILOG));
1028   }
1029 }
1030 
1031 unsigned SIInstrInfo::getNumWaitStates(const MachineInstr &MI) const {
1032   switch (MI.getOpcode()) {
1033   default: return 1; // FIXME: Do wait states equal cycles?
1034 
1035   case AMDGPU::S_NOP:
1036     return MI.getOperand(0).getImm() + 1;
1037   }
1038 }
1039 
1040 bool SIInstrInfo::expandPostRAPseudo(MachineInstr &MI) const {
1041   MachineBasicBlock &MBB = *MI.getParent();
1042   DebugLoc DL = MBB.findDebugLoc(MI);
1043   switch (MI.getOpcode()) {
1044   default: return AMDGPUInstrInfo::expandPostRAPseudo(MI);
1045   case AMDGPU::S_MOV_B64_term: {
1046     // This is only a terminator to get the correct spill code placement during
1047     // register allocation.
1048     MI.setDesc(get(AMDGPU::S_MOV_B64));
1049     break;
1050   }
1051   case AMDGPU::S_XOR_B64_term: {
1052     // This is only a terminator to get the correct spill code placement during
1053     // register allocation.
1054     MI.setDesc(get(AMDGPU::S_XOR_B64));
1055     break;
1056   }
1057   case AMDGPU::S_ANDN2_B64_term: {
1058     // This is only a terminator to get the correct spill code placement during
1059     // register allocation.
1060     MI.setDesc(get(AMDGPU::S_ANDN2_B64));
1061     break;
1062   }
1063   case AMDGPU::V_MOV_B64_PSEUDO: {
1064     unsigned Dst = MI.getOperand(0).getReg();
1065     unsigned DstLo = RI.getSubReg(Dst, AMDGPU::sub0);
1066     unsigned DstHi = RI.getSubReg(Dst, AMDGPU::sub1);
1067 
1068     const MachineOperand &SrcOp = MI.getOperand(1);
1069     // FIXME: Will this work for 64-bit floating point immediates?
1070     assert(!SrcOp.isFPImm());
1071     if (SrcOp.isImm()) {
1072       APInt Imm(64, SrcOp.getImm());
1073       BuildMI(MBB, MI, DL, get(AMDGPU::V_MOV_B32_e32), DstLo)
1074         .addImm(Imm.getLoBits(32).getZExtValue())
1075         .addReg(Dst, RegState::Implicit | RegState::Define);
1076       BuildMI(MBB, MI, DL, get(AMDGPU::V_MOV_B32_e32), DstHi)
1077         .addImm(Imm.getHiBits(32).getZExtValue())
1078         .addReg(Dst, RegState::Implicit | RegState::Define);
1079     } else {
1080       assert(SrcOp.isReg());
1081       BuildMI(MBB, MI, DL, get(AMDGPU::V_MOV_B32_e32), DstLo)
1082         .addReg(RI.getSubReg(SrcOp.getReg(), AMDGPU::sub0))
1083         .addReg(Dst, RegState::Implicit | RegState::Define);
1084       BuildMI(MBB, MI, DL, get(AMDGPU::V_MOV_B32_e32), DstHi)
1085         .addReg(RI.getSubReg(SrcOp.getReg(), AMDGPU::sub1))
1086         .addReg(Dst, RegState::Implicit | RegState::Define);
1087     }
1088     MI.eraseFromParent();
1089     break;
1090   }
1091   case AMDGPU::V_MOVRELD_B32_V1:
1092   case AMDGPU::V_MOVRELD_B32_V2:
1093   case AMDGPU::V_MOVRELD_B32_V4:
1094   case AMDGPU::V_MOVRELD_B32_V8:
1095   case AMDGPU::V_MOVRELD_B32_V16: {
1096     const MCInstrDesc &MovRelDesc = get(AMDGPU::V_MOVRELD_B32_e32);
1097     unsigned VecReg = MI.getOperand(0).getReg();
1098     bool IsUndef = MI.getOperand(1).isUndef();
1099     unsigned SubReg = AMDGPU::sub0 + MI.getOperand(3).getImm();
1100     assert(VecReg == MI.getOperand(1).getReg());
1101 
1102     MachineInstr *MovRel =
1103         BuildMI(MBB, MI, DL, MovRelDesc)
1104             .addReg(RI.getSubReg(VecReg, SubReg), RegState::Undef)
1105             .add(MI.getOperand(2))
1106             .addReg(VecReg, RegState::ImplicitDefine)
1107             .addReg(VecReg,
1108                     RegState::Implicit | (IsUndef ? RegState::Undef : 0));
1109 
1110     const int ImpDefIdx =
1111         MovRelDesc.getNumOperands() + MovRelDesc.getNumImplicitUses();
1112     const int ImpUseIdx = ImpDefIdx + 1;
1113     MovRel->tieOperands(ImpDefIdx, ImpUseIdx);
1114 
1115     MI.eraseFromParent();
1116     break;
1117   }
1118   case AMDGPU::SI_PC_ADD_REL_OFFSET: {
1119     MachineFunction &MF = *MBB.getParent();
1120     unsigned Reg = MI.getOperand(0).getReg();
1121     unsigned RegLo = RI.getSubReg(Reg, AMDGPU::sub0);
1122     unsigned RegHi = RI.getSubReg(Reg, AMDGPU::sub1);
1123 
1124     // Create a bundle so these instructions won't be re-ordered by the
1125     // post-RA scheduler.
1126     MIBundleBuilder Bundler(MBB, MI);
1127     Bundler.append(BuildMI(MF, DL, get(AMDGPU::S_GETPC_B64), Reg));
1128 
1129     // Add 32-bit offset from this instruction to the start of the
1130     // constant data.
1131     Bundler.append(BuildMI(MF, DL, get(AMDGPU::S_ADD_U32), RegLo)
1132                        .addReg(RegLo)
1133                        .add(MI.getOperand(1)));
1134 
1135     MachineInstrBuilder MIB = BuildMI(MF, DL, get(AMDGPU::S_ADDC_U32), RegHi)
1136                                   .addReg(RegHi);
1137     if (MI.getOperand(2).getTargetFlags() == SIInstrInfo::MO_NONE)
1138       MIB.addImm(0);
1139     else
1140       MIB.add(MI.getOperand(2));
1141 
1142     Bundler.append(MIB);
1143     llvm::finalizeBundle(MBB, Bundler.begin());
1144 
1145     MI.eraseFromParent();
1146     break;
1147   }
1148   }
1149   return true;
1150 }
1151 
1152 bool SIInstrInfo::swapSourceModifiers(MachineInstr &MI,
1153                                       MachineOperand &Src0,
1154                                       unsigned Src0OpName,
1155                                       MachineOperand &Src1,
1156                                       unsigned Src1OpName) const {
1157   MachineOperand *Src0Mods = getNamedOperand(MI, Src0OpName);
1158   if (!Src0Mods)
1159     return false;
1160 
1161   MachineOperand *Src1Mods = getNamedOperand(MI, Src1OpName);
1162   assert(Src1Mods &&
1163          "All commutable instructions have both src0 and src1 modifiers");
1164 
1165   int Src0ModsVal = Src0Mods->getImm();
1166   int Src1ModsVal = Src1Mods->getImm();
1167 
1168   Src1Mods->setImm(Src0ModsVal);
1169   Src0Mods->setImm(Src1ModsVal);
1170   return true;
1171 }
1172 
1173 static MachineInstr *swapRegAndNonRegOperand(MachineInstr &MI,
1174                                              MachineOperand &RegOp,
1175                                              MachineOperand &NonRegOp) {
1176   unsigned Reg = RegOp.getReg();
1177   unsigned SubReg = RegOp.getSubReg();
1178   bool IsKill = RegOp.isKill();
1179   bool IsDead = RegOp.isDead();
1180   bool IsUndef = RegOp.isUndef();
1181   bool IsDebug = RegOp.isDebug();
1182 
1183   if (NonRegOp.isImm())
1184     RegOp.ChangeToImmediate(NonRegOp.getImm());
1185   else if (NonRegOp.isFI())
1186     RegOp.ChangeToFrameIndex(NonRegOp.getIndex());
1187   else
1188     return nullptr;
1189 
1190   NonRegOp.ChangeToRegister(Reg, false, false, IsKill, IsDead, IsUndef, IsDebug);
1191   NonRegOp.setSubReg(SubReg);
1192 
1193   return &MI;
1194 }
1195 
1196 MachineInstr *SIInstrInfo::commuteInstructionImpl(MachineInstr &MI, bool NewMI,
1197                                                   unsigned Src0Idx,
1198                                                   unsigned Src1Idx) const {
1199   assert(!NewMI && "this should never be used");
1200 
1201   unsigned Opc = MI.getOpcode();
1202   int CommutedOpcode = commuteOpcode(Opc);
1203   if (CommutedOpcode == -1)
1204     return nullptr;
1205 
1206   assert(AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src0) ==
1207            static_cast<int>(Src0Idx) &&
1208          AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src1) ==
1209            static_cast<int>(Src1Idx) &&
1210          "inconsistency with findCommutedOpIndices");
1211 
1212   MachineOperand &Src0 = MI.getOperand(Src0Idx);
1213   MachineOperand &Src1 = MI.getOperand(Src1Idx);
1214 
1215   MachineInstr *CommutedMI = nullptr;
1216   if (Src0.isReg() && Src1.isReg()) {
1217     if (isOperandLegal(MI, Src1Idx, &Src0)) {
1218       // Be sure to copy the source modifiers to the right place.
1219       CommutedMI
1220         = TargetInstrInfo::commuteInstructionImpl(MI, NewMI, Src0Idx, Src1Idx);
1221     }
1222 
1223   } else if (Src0.isReg() && !Src1.isReg()) {
1224     // src0 should always be able to support any operand type, so no need to
1225     // check operand legality.
1226     CommutedMI = swapRegAndNonRegOperand(MI, Src0, Src1);
1227   } else if (!Src0.isReg() && Src1.isReg()) {
1228     if (isOperandLegal(MI, Src1Idx, &Src0))
1229       CommutedMI = swapRegAndNonRegOperand(MI, Src1, Src0);
1230   } else {
1231     // FIXME: Found two non registers to commute. This does happen.
1232     return nullptr;
1233   }
1234 
1235 
1236   if (CommutedMI) {
1237     swapSourceModifiers(MI, Src0, AMDGPU::OpName::src0_modifiers,
1238                         Src1, AMDGPU::OpName::src1_modifiers);
1239 
1240     CommutedMI->setDesc(get(CommutedOpcode));
1241   }
1242 
1243   return CommutedMI;
1244 }
1245 
1246 // This needs to be implemented because the source modifiers may be inserted
1247 // between the true commutable operands, and the base
1248 // TargetInstrInfo::commuteInstruction uses it.
1249 bool SIInstrInfo::findCommutedOpIndices(MachineInstr &MI, unsigned &SrcOpIdx0,
1250                                         unsigned &SrcOpIdx1) const {
1251   if (!MI.isCommutable())
1252     return false;
1253 
1254   unsigned Opc = MI.getOpcode();
1255   int Src0Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src0);
1256   if (Src0Idx == -1)
1257     return false;
1258 
1259   int Src1Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src1);
1260   if (Src1Idx == -1)
1261     return false;
1262 
1263   return fixCommutedOpIndices(SrcOpIdx0, SrcOpIdx1, Src0Idx, Src1Idx);
1264 }
1265 
1266 bool SIInstrInfo::isBranchOffsetInRange(unsigned BranchOp,
1267                                         int64_t BrOffset) const {
1268   // BranchRelaxation should never have to check s_setpc_b64 because its dest
1269   // block is unanalyzable.
1270   assert(BranchOp != AMDGPU::S_SETPC_B64);
1271 
1272   // Convert to dwords.
1273   BrOffset /= 4;
1274 
1275   // The branch instructions do PC += signext(SIMM16 * 4) + 4, so the offset is
1276   // from the next instruction.
1277   BrOffset -= 1;
1278 
1279   return isIntN(BranchOffsetBits, BrOffset);
1280 }
1281 
1282 MachineBasicBlock *SIInstrInfo::getBranchDestBlock(
1283   const MachineInstr &MI) const {
1284   if (MI.getOpcode() == AMDGPU::S_SETPC_B64) {
1285     // This would be a difficult analysis to perform, but can always be legal so
1286     // there's no need to analyze it.
1287     return nullptr;
1288   }
1289 
1290   return MI.getOperand(0).getMBB();
1291 }
1292 
1293 unsigned SIInstrInfo::insertIndirectBranch(MachineBasicBlock &MBB,
1294                                            MachineBasicBlock &DestBB,
1295                                            const DebugLoc &DL,
1296                                            int64_t BrOffset,
1297                                            RegScavenger *RS) const {
1298   assert(RS && "RegScavenger required for long branching");
1299   assert(MBB.empty() &&
1300          "new block should be inserted for expanding unconditional branch");
1301   assert(MBB.pred_size() == 1);
1302 
1303   MachineFunction *MF = MBB.getParent();
1304   MachineRegisterInfo &MRI = MF->getRegInfo();
1305 
1306   // FIXME: Virtual register workaround for RegScavenger not working with empty
1307   // blocks.
1308   unsigned PCReg = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
1309 
1310   auto I = MBB.end();
1311 
1312   // We need to compute the offset relative to the instruction immediately after
1313   // s_getpc_b64. Insert pc arithmetic code before last terminator.
1314   MachineInstr *GetPC = BuildMI(MBB, I, DL, get(AMDGPU::S_GETPC_B64), PCReg);
1315 
1316   // TODO: Handle > 32-bit block address.
1317   if (BrOffset >= 0) {
1318     BuildMI(MBB, I, DL, get(AMDGPU::S_ADD_U32))
1319       .addReg(PCReg, RegState::Define, AMDGPU::sub0)
1320       .addReg(PCReg, 0, AMDGPU::sub0)
1321       .addMBB(&DestBB, AMDGPU::TF_LONG_BRANCH_FORWARD);
1322     BuildMI(MBB, I, DL, get(AMDGPU::S_ADDC_U32))
1323       .addReg(PCReg, RegState::Define, AMDGPU::sub1)
1324       .addReg(PCReg, 0, AMDGPU::sub1)
1325       .addImm(0);
1326   } else {
1327     // Backwards branch.
1328     BuildMI(MBB, I, DL, get(AMDGPU::S_SUB_U32))
1329       .addReg(PCReg, RegState::Define, AMDGPU::sub0)
1330       .addReg(PCReg, 0, AMDGPU::sub0)
1331       .addMBB(&DestBB, AMDGPU::TF_LONG_BRANCH_BACKWARD);
1332     BuildMI(MBB, I, DL, get(AMDGPU::S_SUBB_U32))
1333       .addReg(PCReg, RegState::Define, AMDGPU::sub1)
1334       .addReg(PCReg, 0, AMDGPU::sub1)
1335       .addImm(0);
1336   }
1337 
1338   // Insert the indirect branch after the other terminator.
1339   BuildMI(&MBB, DL, get(AMDGPU::S_SETPC_B64))
1340     .addReg(PCReg);
1341 
1342   // FIXME: If spilling is necessary, this will fail because this scavenger has
1343   // no emergency stack slots. It is non-trivial to spill in this situation,
1344   // because the restore code needs to be specially placed after the
1345   // jump. BranchRelaxation then needs to be made aware of the newly inserted
1346   // block.
1347   //
1348   // If a spill is needed for the pc register pair, we need to insert a spill
1349   // restore block right before the destination block, and insert a short branch
1350   // into the old destination block's fallthrough predecessor.
1351   // e.g.:
1352   //
1353   // s_cbranch_scc0 skip_long_branch:
1354   //
1355   // long_branch_bb:
1356   //   spill s[8:9]
1357   //   s_getpc_b64 s[8:9]
1358   //   s_add_u32 s8, s8, restore_bb
1359   //   s_addc_u32 s9, s9, 0
1360   //   s_setpc_b64 s[8:9]
1361   //
1362   // skip_long_branch:
1363   //   foo;
1364   //
1365   // .....
1366   //
1367   // dest_bb_fallthrough_predecessor:
1368   // bar;
1369   // s_branch dest_bb
1370   //
1371   // restore_bb:
1372   //  restore s[8:9]
1373   //  fallthrough dest_bb
1374   ///
1375   // dest_bb:
1376   //   buzz;
1377 
1378   RS->enterBasicBlockEnd(MBB);
1379   unsigned Scav = RS->scavengeRegister(&AMDGPU::SReg_64RegClass,
1380                                        MachineBasicBlock::iterator(GetPC), 0);
1381   MRI.replaceRegWith(PCReg, Scav);
1382   MRI.clearVirtRegs();
1383   RS->setRegUsed(Scav);
1384 
1385   return 4 + 8 + 4 + 4;
1386 }
1387 
1388 unsigned SIInstrInfo::getBranchOpcode(SIInstrInfo::BranchPredicate Cond) {
1389   switch (Cond) {
1390   case SIInstrInfo::SCC_TRUE:
1391     return AMDGPU::S_CBRANCH_SCC1;
1392   case SIInstrInfo::SCC_FALSE:
1393     return AMDGPU::S_CBRANCH_SCC0;
1394   case SIInstrInfo::VCCNZ:
1395     return AMDGPU::S_CBRANCH_VCCNZ;
1396   case SIInstrInfo::VCCZ:
1397     return AMDGPU::S_CBRANCH_VCCZ;
1398   case SIInstrInfo::EXECNZ:
1399     return AMDGPU::S_CBRANCH_EXECNZ;
1400   case SIInstrInfo::EXECZ:
1401     return AMDGPU::S_CBRANCH_EXECZ;
1402   default:
1403     llvm_unreachable("invalid branch predicate");
1404   }
1405 }
1406 
1407 SIInstrInfo::BranchPredicate SIInstrInfo::getBranchPredicate(unsigned Opcode) {
1408   switch (Opcode) {
1409   case AMDGPU::S_CBRANCH_SCC0:
1410     return SCC_FALSE;
1411   case AMDGPU::S_CBRANCH_SCC1:
1412     return SCC_TRUE;
1413   case AMDGPU::S_CBRANCH_VCCNZ:
1414     return VCCNZ;
1415   case AMDGPU::S_CBRANCH_VCCZ:
1416     return VCCZ;
1417   case AMDGPU::S_CBRANCH_EXECNZ:
1418     return EXECNZ;
1419   case AMDGPU::S_CBRANCH_EXECZ:
1420     return EXECZ;
1421   default:
1422     return INVALID_BR;
1423   }
1424 }
1425 
1426 bool SIInstrInfo::analyzeBranchImpl(MachineBasicBlock &MBB,
1427                                     MachineBasicBlock::iterator I,
1428                                     MachineBasicBlock *&TBB,
1429                                     MachineBasicBlock *&FBB,
1430                                     SmallVectorImpl<MachineOperand> &Cond,
1431                                     bool AllowModify) const {
1432   if (I->getOpcode() == AMDGPU::S_BRANCH) {
1433     // Unconditional Branch
1434     TBB = I->getOperand(0).getMBB();
1435     return false;
1436   }
1437 
1438   MachineBasicBlock *CondBB = nullptr;
1439 
1440   if (I->getOpcode() == AMDGPU::SI_NON_UNIFORM_BRCOND_PSEUDO) {
1441     CondBB = I->getOperand(1).getMBB();
1442     Cond.push_back(I->getOperand(0));
1443   } else {
1444     BranchPredicate Pred = getBranchPredicate(I->getOpcode());
1445     if (Pred == INVALID_BR)
1446       return true;
1447 
1448     CondBB = I->getOperand(0).getMBB();
1449     Cond.push_back(MachineOperand::CreateImm(Pred));
1450     Cond.push_back(I->getOperand(1)); // Save the branch register.
1451   }
1452   ++I;
1453 
1454   if (I == MBB.end()) {
1455     // Conditional branch followed by fall-through.
1456     TBB = CondBB;
1457     return false;
1458   }
1459 
1460   if (I->getOpcode() == AMDGPU::S_BRANCH) {
1461     TBB = CondBB;
1462     FBB = I->getOperand(0).getMBB();
1463     return false;
1464   }
1465 
1466   return true;
1467 }
1468 
1469 bool SIInstrInfo::analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
1470                                 MachineBasicBlock *&FBB,
1471                                 SmallVectorImpl<MachineOperand> &Cond,
1472                                 bool AllowModify) const {
1473   MachineBasicBlock::iterator I = MBB.getFirstTerminator();
1474   if (I == MBB.end())
1475     return false;
1476 
1477   if (I->getOpcode() != AMDGPU::SI_MASK_BRANCH)
1478     return analyzeBranchImpl(MBB, I, TBB, FBB, Cond, AllowModify);
1479 
1480   ++I;
1481 
1482   // TODO: Should be able to treat as fallthrough?
1483   if (I == MBB.end())
1484     return true;
1485 
1486   if (analyzeBranchImpl(MBB, I, TBB, FBB, Cond, AllowModify))
1487     return true;
1488 
1489   MachineBasicBlock *MaskBrDest = I->getOperand(0).getMBB();
1490 
1491   // Specifically handle the case where the conditional branch is to the same
1492   // destination as the mask branch. e.g.
1493   //
1494   // si_mask_branch BB8
1495   // s_cbranch_execz BB8
1496   // s_cbranch BB9
1497   //
1498   // This is required to understand divergent loops which may need the branches
1499   // to be relaxed.
1500   if (TBB != MaskBrDest || Cond.empty())
1501     return true;
1502 
1503   auto Pred = Cond[0].getImm();
1504   return (Pred != EXECZ && Pred != EXECNZ);
1505 }
1506 
1507 unsigned SIInstrInfo::removeBranch(MachineBasicBlock &MBB,
1508                                    int *BytesRemoved) const {
1509   MachineBasicBlock::iterator I = MBB.getFirstTerminator();
1510 
1511   unsigned Count = 0;
1512   unsigned RemovedSize = 0;
1513   while (I != MBB.end()) {
1514     MachineBasicBlock::iterator Next = std::next(I);
1515     if (I->getOpcode() == AMDGPU::SI_MASK_BRANCH) {
1516       I = Next;
1517       continue;
1518     }
1519 
1520     RemovedSize += getInstSizeInBytes(*I);
1521     I->eraseFromParent();
1522     ++Count;
1523     I = Next;
1524   }
1525 
1526   if (BytesRemoved)
1527     *BytesRemoved = RemovedSize;
1528 
1529   return Count;
1530 }
1531 
1532 // Copy the flags onto the implicit condition register operand.
1533 static void preserveCondRegFlags(MachineOperand &CondReg,
1534                                  const MachineOperand &OrigCond) {
1535   CondReg.setIsUndef(OrigCond.isUndef());
1536   CondReg.setIsKill(OrigCond.isKill());
1537 }
1538 
1539 unsigned SIInstrInfo::insertBranch(MachineBasicBlock &MBB,
1540                                    MachineBasicBlock *TBB,
1541                                    MachineBasicBlock *FBB,
1542                                    ArrayRef<MachineOperand> Cond,
1543                                    const DebugLoc &DL,
1544                                    int *BytesAdded) const {
1545 
1546   if (!FBB && Cond.empty()) {
1547     BuildMI(&MBB, DL, get(AMDGPU::S_BRANCH))
1548       .addMBB(TBB);
1549     if (BytesAdded)
1550       *BytesAdded = 4;
1551     return 1;
1552   }
1553 
1554   if(Cond.size() == 1 && Cond[0].isReg()) {
1555      BuildMI(&MBB, DL, get(AMDGPU::SI_NON_UNIFORM_BRCOND_PSEUDO))
1556        .add(Cond[0])
1557        .addMBB(TBB);
1558      return 1;
1559   }
1560 
1561   assert(TBB && Cond[0].isImm());
1562 
1563   unsigned Opcode
1564     = getBranchOpcode(static_cast<BranchPredicate>(Cond[0].getImm()));
1565 
1566   if (!FBB) {
1567     Cond[1].isUndef();
1568     MachineInstr *CondBr =
1569       BuildMI(&MBB, DL, get(Opcode))
1570       .addMBB(TBB);
1571 
1572     // Copy the flags onto the implicit condition register operand.
1573     preserveCondRegFlags(CondBr->getOperand(1), Cond[1]);
1574 
1575     if (BytesAdded)
1576       *BytesAdded = 4;
1577     return 1;
1578   }
1579 
1580   assert(TBB && FBB);
1581 
1582   MachineInstr *CondBr =
1583     BuildMI(&MBB, DL, get(Opcode))
1584     .addMBB(TBB);
1585   BuildMI(&MBB, DL, get(AMDGPU::S_BRANCH))
1586     .addMBB(FBB);
1587 
1588   MachineOperand &CondReg = CondBr->getOperand(1);
1589   CondReg.setIsUndef(Cond[1].isUndef());
1590   CondReg.setIsKill(Cond[1].isKill());
1591 
1592   if (BytesAdded)
1593       *BytesAdded = 8;
1594 
1595   return 2;
1596 }
1597 
1598 bool SIInstrInfo::reverseBranchCondition(
1599   SmallVectorImpl<MachineOperand> &Cond) const {
1600   if (Cond.size() != 2) {
1601     return true;
1602   }
1603 
1604   if (Cond[0].isImm()) {
1605     Cond[0].setImm(-Cond[0].getImm());
1606     return false;
1607   }
1608 
1609   return true;
1610 }
1611 
1612 bool SIInstrInfo::canInsertSelect(const MachineBasicBlock &MBB,
1613                                   ArrayRef<MachineOperand> Cond,
1614                                   unsigned TrueReg, unsigned FalseReg,
1615                                   int &CondCycles,
1616                                   int &TrueCycles, int &FalseCycles) const {
1617   switch (Cond[0].getImm()) {
1618   case VCCNZ:
1619   case VCCZ: {
1620     const MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
1621     const TargetRegisterClass *RC = MRI.getRegClass(TrueReg);
1622     assert(MRI.getRegClass(FalseReg) == RC);
1623 
1624     int NumInsts = AMDGPU::getRegBitWidth(RC->getID()) / 32;
1625     CondCycles = TrueCycles = FalseCycles = NumInsts; // ???
1626 
1627     // Limit to equal cost for branch vs. N v_cndmask_b32s.
1628     return !RI.isSGPRClass(RC) && NumInsts <= 6;
1629   }
1630   case SCC_TRUE:
1631   case SCC_FALSE: {
1632     // FIXME: We could insert for VGPRs if we could replace the original compare
1633     // with a vector one.
1634     const MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
1635     const TargetRegisterClass *RC = MRI.getRegClass(TrueReg);
1636     assert(MRI.getRegClass(FalseReg) == RC);
1637 
1638     int NumInsts = AMDGPU::getRegBitWidth(RC->getID()) / 32;
1639 
1640     // Multiples of 8 can do s_cselect_b64
1641     if (NumInsts % 2 == 0)
1642       NumInsts /= 2;
1643 
1644     CondCycles = TrueCycles = FalseCycles = NumInsts; // ???
1645     return RI.isSGPRClass(RC);
1646   }
1647   default:
1648     return false;
1649   }
1650 }
1651 
1652 void SIInstrInfo::insertSelect(MachineBasicBlock &MBB,
1653                                MachineBasicBlock::iterator I, const DebugLoc &DL,
1654                                unsigned DstReg, ArrayRef<MachineOperand> Cond,
1655                                unsigned TrueReg, unsigned FalseReg) const {
1656   BranchPredicate Pred = static_cast<BranchPredicate>(Cond[0].getImm());
1657   if (Pred == VCCZ || Pred == SCC_FALSE) {
1658     Pred = static_cast<BranchPredicate>(-Pred);
1659     std::swap(TrueReg, FalseReg);
1660   }
1661 
1662   MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
1663   const TargetRegisterClass *DstRC = MRI.getRegClass(DstReg);
1664   unsigned DstSize = RI.getRegSizeInBits(*DstRC);
1665 
1666   if (DstSize == 32) {
1667     unsigned SelOp = Pred == SCC_TRUE ?
1668       AMDGPU::S_CSELECT_B32 : AMDGPU::V_CNDMASK_B32_e32;
1669 
1670     // Instruction's operands are backwards from what is expected.
1671     MachineInstr *Select =
1672       BuildMI(MBB, I, DL, get(SelOp), DstReg)
1673       .addReg(FalseReg)
1674       .addReg(TrueReg);
1675 
1676     preserveCondRegFlags(Select->getOperand(3), Cond[1]);
1677     return;
1678   }
1679 
1680   if (DstSize == 64 && Pred == SCC_TRUE) {
1681     MachineInstr *Select =
1682       BuildMI(MBB, I, DL, get(AMDGPU::S_CSELECT_B64), DstReg)
1683       .addReg(FalseReg)
1684       .addReg(TrueReg);
1685 
1686     preserveCondRegFlags(Select->getOperand(3), Cond[1]);
1687     return;
1688   }
1689 
1690   static const int16_t Sub0_15[] = {
1691     AMDGPU::sub0, AMDGPU::sub1, AMDGPU::sub2, AMDGPU::sub3,
1692     AMDGPU::sub4, AMDGPU::sub5, AMDGPU::sub6, AMDGPU::sub7,
1693     AMDGPU::sub8, AMDGPU::sub9, AMDGPU::sub10, AMDGPU::sub11,
1694     AMDGPU::sub12, AMDGPU::sub13, AMDGPU::sub14, AMDGPU::sub15,
1695   };
1696 
1697   static const int16_t Sub0_15_64[] = {
1698     AMDGPU::sub0_sub1, AMDGPU::sub2_sub3,
1699     AMDGPU::sub4_sub5, AMDGPU::sub6_sub7,
1700     AMDGPU::sub8_sub9, AMDGPU::sub10_sub11,
1701     AMDGPU::sub12_sub13, AMDGPU::sub14_sub15,
1702   };
1703 
1704   unsigned SelOp = AMDGPU::V_CNDMASK_B32_e32;
1705   const TargetRegisterClass *EltRC = &AMDGPU::VGPR_32RegClass;
1706   const int16_t *SubIndices = Sub0_15;
1707   int NElts = DstSize / 32;
1708 
1709   // 64-bit select is only avaialble for SALU.
1710   if (Pred == SCC_TRUE) {
1711     SelOp = AMDGPU::S_CSELECT_B64;
1712     EltRC = &AMDGPU::SGPR_64RegClass;
1713     SubIndices = Sub0_15_64;
1714 
1715     assert(NElts % 2 == 0);
1716     NElts /= 2;
1717   }
1718 
1719   MachineInstrBuilder MIB = BuildMI(
1720     MBB, I, DL, get(AMDGPU::REG_SEQUENCE), DstReg);
1721 
1722   I = MIB->getIterator();
1723 
1724   SmallVector<unsigned, 8> Regs;
1725   for (int Idx = 0; Idx != NElts; ++Idx) {
1726     unsigned DstElt = MRI.createVirtualRegister(EltRC);
1727     Regs.push_back(DstElt);
1728 
1729     unsigned SubIdx = SubIndices[Idx];
1730 
1731     MachineInstr *Select =
1732       BuildMI(MBB, I, DL, get(SelOp), DstElt)
1733       .addReg(FalseReg, 0, SubIdx)
1734       .addReg(TrueReg, 0, SubIdx);
1735     preserveCondRegFlags(Select->getOperand(3), Cond[1]);
1736 
1737     MIB.addReg(DstElt)
1738        .addImm(SubIdx);
1739   }
1740 }
1741 
1742 bool SIInstrInfo::isFoldableCopy(const MachineInstr &MI) const {
1743   switch (MI.getOpcode()) {
1744   case AMDGPU::V_MOV_B32_e32:
1745   case AMDGPU::V_MOV_B32_e64:
1746   case AMDGPU::V_MOV_B64_PSEUDO: {
1747     // If there are additional implicit register operands, this may be used for
1748     // register indexing so the source register operand isn't simply copied.
1749     unsigned NumOps = MI.getDesc().getNumOperands() +
1750       MI.getDesc().getNumImplicitUses();
1751 
1752     return MI.getNumOperands() == NumOps;
1753   }
1754   case AMDGPU::S_MOV_B32:
1755   case AMDGPU::S_MOV_B64:
1756   case AMDGPU::COPY:
1757     return true;
1758   default:
1759     return false;
1760   }
1761 }
1762 
1763 static void removeModOperands(MachineInstr &MI) {
1764   unsigned Opc = MI.getOpcode();
1765   int Src0ModIdx = AMDGPU::getNamedOperandIdx(Opc,
1766                                               AMDGPU::OpName::src0_modifiers);
1767   int Src1ModIdx = AMDGPU::getNamedOperandIdx(Opc,
1768                                               AMDGPU::OpName::src1_modifiers);
1769   int Src2ModIdx = AMDGPU::getNamedOperandIdx(Opc,
1770                                               AMDGPU::OpName::src2_modifiers);
1771 
1772   MI.RemoveOperand(Src2ModIdx);
1773   MI.RemoveOperand(Src1ModIdx);
1774   MI.RemoveOperand(Src0ModIdx);
1775 }
1776 
1777 bool SIInstrInfo::FoldImmediate(MachineInstr &UseMI, MachineInstr &DefMI,
1778                                 unsigned Reg, MachineRegisterInfo *MRI) const {
1779   if (!MRI->hasOneNonDBGUse(Reg))
1780     return false;
1781 
1782   unsigned Opc = UseMI.getOpcode();
1783   if (Opc == AMDGPU::COPY) {
1784     bool isVGPRCopy = RI.isVGPR(*MRI, UseMI.getOperand(0).getReg());
1785     switch (DefMI.getOpcode()) {
1786     default:
1787       return false;
1788     case AMDGPU::S_MOV_B64:
1789       // TODO: We could fold 64-bit immediates, but this get compilicated
1790       // when there are sub-registers.
1791       return false;
1792 
1793     case AMDGPU::V_MOV_B32_e32:
1794     case AMDGPU::S_MOV_B32:
1795       break;
1796     }
1797     unsigned NewOpc = isVGPRCopy ? AMDGPU::V_MOV_B32_e32 : AMDGPU::S_MOV_B32;
1798     const MachineOperand *ImmOp = getNamedOperand(DefMI, AMDGPU::OpName::src0);
1799     assert(ImmOp);
1800     // FIXME: We could handle FrameIndex values here.
1801     if (!ImmOp->isImm()) {
1802       return false;
1803     }
1804     UseMI.setDesc(get(NewOpc));
1805     UseMI.getOperand(1).ChangeToImmediate(ImmOp->getImm());
1806     UseMI.addImplicitDefUseOperands(*UseMI.getParent()->getParent());
1807     return true;
1808   }
1809 
1810   if (Opc == AMDGPU::V_MAD_F32 || Opc == AMDGPU::V_MAC_F32_e64 ||
1811       Opc == AMDGPU::V_MAD_F16 || Opc == AMDGPU::V_MAC_F16_e64) {
1812     // Don't fold if we are using source or output modifiers. The new VOP2
1813     // instructions don't have them.
1814     if (hasAnyModifiersSet(UseMI))
1815       return false;
1816 
1817     const MachineOperand &ImmOp = DefMI.getOperand(1);
1818 
1819     // If this is a free constant, there's no reason to do this.
1820     // TODO: We could fold this here instead of letting SIFoldOperands do it
1821     // later.
1822     MachineOperand *Src0 = getNamedOperand(UseMI, AMDGPU::OpName::src0);
1823 
1824     // Any src operand can be used for the legality check.
1825     if (isInlineConstant(UseMI, *Src0, ImmOp))
1826       return false;
1827 
1828     bool IsF32 = Opc == AMDGPU::V_MAD_F32 || Opc == AMDGPU::V_MAC_F32_e64;
1829     MachineOperand *Src1 = getNamedOperand(UseMI, AMDGPU::OpName::src1);
1830     MachineOperand *Src2 = getNamedOperand(UseMI, AMDGPU::OpName::src2);
1831 
1832     // Multiplied part is the constant: Use v_madmk_{f16, f32}.
1833     // We should only expect these to be on src0 due to canonicalizations.
1834     if (Src0->isReg() && Src0->getReg() == Reg) {
1835       if (!Src1->isReg() || RI.isSGPRClass(MRI->getRegClass(Src1->getReg())))
1836         return false;
1837 
1838       if (!Src2->isReg() || RI.isSGPRClass(MRI->getRegClass(Src2->getReg())))
1839         return false;
1840 
1841       // We need to swap operands 0 and 1 since madmk constant is at operand 1.
1842 
1843       const int64_t Imm = DefMI.getOperand(1).getImm();
1844 
1845       // FIXME: This would be a lot easier if we could return a new instruction
1846       // instead of having to modify in place.
1847 
1848       // Remove these first since they are at the end.
1849       UseMI.RemoveOperand(
1850           AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::omod));
1851       UseMI.RemoveOperand(
1852           AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::clamp));
1853 
1854       unsigned Src1Reg = Src1->getReg();
1855       unsigned Src1SubReg = Src1->getSubReg();
1856       Src0->setReg(Src1Reg);
1857       Src0->setSubReg(Src1SubReg);
1858       Src0->setIsKill(Src1->isKill());
1859 
1860       if (Opc == AMDGPU::V_MAC_F32_e64 ||
1861           Opc == AMDGPU::V_MAC_F16_e64)
1862         UseMI.untieRegOperand(
1863             AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src2));
1864 
1865       Src1->ChangeToImmediate(Imm);
1866 
1867       removeModOperands(UseMI);
1868       UseMI.setDesc(get(IsF32 ? AMDGPU::V_MADMK_F32 : AMDGPU::V_MADMK_F16));
1869 
1870       bool DeleteDef = MRI->hasOneNonDBGUse(Reg);
1871       if (DeleteDef)
1872         DefMI.eraseFromParent();
1873 
1874       return true;
1875     }
1876 
1877     // Added part is the constant: Use v_madak_{f16, f32}.
1878     if (Src2->isReg() && Src2->getReg() == Reg) {
1879       // Not allowed to use constant bus for another operand.
1880       // We can however allow an inline immediate as src0.
1881       if (!Src0->isImm() &&
1882           (Src0->isReg() && RI.isSGPRClass(MRI->getRegClass(Src0->getReg()))))
1883         return false;
1884 
1885       if (!Src1->isReg() || RI.isSGPRClass(MRI->getRegClass(Src1->getReg())))
1886         return false;
1887 
1888       const int64_t Imm = DefMI.getOperand(1).getImm();
1889 
1890       // FIXME: This would be a lot easier if we could return a new instruction
1891       // instead of having to modify in place.
1892 
1893       // Remove these first since they are at the end.
1894       UseMI.RemoveOperand(
1895           AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::omod));
1896       UseMI.RemoveOperand(
1897           AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::clamp));
1898 
1899       if (Opc == AMDGPU::V_MAC_F32_e64 ||
1900           Opc == AMDGPU::V_MAC_F16_e64)
1901         UseMI.untieRegOperand(
1902             AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src2));
1903 
1904       // ChangingToImmediate adds Src2 back to the instruction.
1905       Src2->ChangeToImmediate(Imm);
1906 
1907       // These come before src2.
1908       removeModOperands(UseMI);
1909       UseMI.setDesc(get(IsF32 ? AMDGPU::V_MADAK_F32 : AMDGPU::V_MADAK_F16));
1910 
1911       bool DeleteDef = MRI->hasOneNonDBGUse(Reg);
1912       if (DeleteDef)
1913         DefMI.eraseFromParent();
1914 
1915       return true;
1916     }
1917   }
1918 
1919   return false;
1920 }
1921 
1922 static bool offsetsDoNotOverlap(int WidthA, int OffsetA,
1923                                 int WidthB, int OffsetB) {
1924   int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB;
1925   int HighOffset = OffsetA < OffsetB ? OffsetB : OffsetA;
1926   int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
1927   return LowOffset + LowWidth <= HighOffset;
1928 }
1929 
1930 bool SIInstrInfo::checkInstOffsetsDoNotOverlap(MachineInstr &MIa,
1931                                                MachineInstr &MIb) const {
1932   unsigned BaseReg0, BaseReg1;
1933   int64_t Offset0, Offset1;
1934 
1935   if (getMemOpBaseRegImmOfs(MIa, BaseReg0, Offset0, &RI) &&
1936       getMemOpBaseRegImmOfs(MIb, BaseReg1, Offset1, &RI)) {
1937 
1938     if (!MIa.hasOneMemOperand() || !MIb.hasOneMemOperand()) {
1939       // FIXME: Handle ds_read2 / ds_write2.
1940       return false;
1941     }
1942     unsigned Width0 = (*MIa.memoperands_begin())->getSize();
1943     unsigned Width1 = (*MIb.memoperands_begin())->getSize();
1944     if (BaseReg0 == BaseReg1 &&
1945         offsetsDoNotOverlap(Width0, Offset0, Width1, Offset1)) {
1946       return true;
1947     }
1948   }
1949 
1950   return false;
1951 }
1952 
1953 bool SIInstrInfo::areMemAccessesTriviallyDisjoint(MachineInstr &MIa,
1954                                                   MachineInstr &MIb,
1955                                                   AliasAnalysis *AA) const {
1956   assert((MIa.mayLoad() || MIa.mayStore()) &&
1957          "MIa must load from or modify a memory location");
1958   assert((MIb.mayLoad() || MIb.mayStore()) &&
1959          "MIb must load from or modify a memory location");
1960 
1961   if (MIa.hasUnmodeledSideEffects() || MIb.hasUnmodeledSideEffects())
1962     return false;
1963 
1964   // XXX - Can we relax this between address spaces?
1965   if (MIa.hasOrderedMemoryRef() || MIb.hasOrderedMemoryRef())
1966     return false;
1967 
1968   if (AA && MIa.hasOneMemOperand() && MIb.hasOneMemOperand()) {
1969     const MachineMemOperand *MMOa = *MIa.memoperands_begin();
1970     const MachineMemOperand *MMOb = *MIb.memoperands_begin();
1971     if (MMOa->getValue() && MMOb->getValue()) {
1972       MemoryLocation LocA(MMOa->getValue(), MMOa->getSize(), MMOa->getAAInfo());
1973       MemoryLocation LocB(MMOb->getValue(), MMOb->getSize(), MMOb->getAAInfo());
1974       if (!AA->alias(LocA, LocB))
1975         return true;
1976     }
1977   }
1978 
1979   // TODO: Should we check the address space from the MachineMemOperand? That
1980   // would allow us to distinguish objects we know don't alias based on the
1981   // underlying address space, even if it was lowered to a different one,
1982   // e.g. private accesses lowered to use MUBUF instructions on a scratch
1983   // buffer.
1984   if (isDS(MIa)) {
1985     if (isDS(MIb))
1986       return checkInstOffsetsDoNotOverlap(MIa, MIb);
1987 
1988     return !isFLAT(MIb);
1989   }
1990 
1991   if (isMUBUF(MIa) || isMTBUF(MIa)) {
1992     if (isMUBUF(MIb) || isMTBUF(MIb))
1993       return checkInstOffsetsDoNotOverlap(MIa, MIb);
1994 
1995     return !isFLAT(MIb) && !isSMRD(MIb);
1996   }
1997 
1998   if (isSMRD(MIa)) {
1999     if (isSMRD(MIb))
2000       return checkInstOffsetsDoNotOverlap(MIa, MIb);
2001 
2002     return !isFLAT(MIb) && !isMUBUF(MIa) && !isMTBUF(MIa);
2003   }
2004 
2005   if (isFLAT(MIa)) {
2006     if (isFLAT(MIb))
2007       return checkInstOffsetsDoNotOverlap(MIa, MIb);
2008 
2009     return false;
2010   }
2011 
2012   return false;
2013 }
2014 
2015 MachineInstr *SIInstrInfo::convertToThreeAddress(MachineFunction::iterator &MBB,
2016                                                  MachineInstr &MI,
2017                                                  LiveVariables *LV) const {
2018   bool IsF16 = false;
2019 
2020   switch (MI.getOpcode()) {
2021   default:
2022     return nullptr;
2023   case AMDGPU::V_MAC_F16_e64:
2024     IsF16 = true;
2025   case AMDGPU::V_MAC_F32_e64:
2026     break;
2027   case AMDGPU::V_MAC_F16_e32:
2028     IsF16 = true;
2029   case AMDGPU::V_MAC_F32_e32: {
2030     int Src0Idx = AMDGPU::getNamedOperandIdx(MI.getOpcode(),
2031                                              AMDGPU::OpName::src0);
2032     const MachineOperand *Src0 = &MI.getOperand(Src0Idx);
2033     if (Src0->isImm() && !isInlineConstant(MI, Src0Idx, *Src0))
2034       return nullptr;
2035     break;
2036   }
2037   }
2038 
2039   const MachineOperand *Dst = getNamedOperand(MI, AMDGPU::OpName::vdst);
2040   const MachineOperand *Src0 = getNamedOperand(MI, AMDGPU::OpName::src0);
2041   const MachineOperand *Src0Mods =
2042     getNamedOperand(MI, AMDGPU::OpName::src0_modifiers);
2043   const MachineOperand *Src1 = getNamedOperand(MI, AMDGPU::OpName::src1);
2044   const MachineOperand *Src1Mods =
2045     getNamedOperand(MI, AMDGPU::OpName::src1_modifiers);
2046   const MachineOperand *Src2 = getNamedOperand(MI, AMDGPU::OpName::src2);
2047   const MachineOperand *Clamp = getNamedOperand(MI, AMDGPU::OpName::clamp);
2048   const MachineOperand *Omod = getNamedOperand(MI, AMDGPU::OpName::omod);
2049 
2050   return BuildMI(*MBB, MI, MI.getDebugLoc(),
2051                  get(IsF16 ? AMDGPU::V_MAD_F16 : AMDGPU::V_MAD_F32))
2052       .add(*Dst)
2053       .addImm(Src0Mods ? Src0Mods->getImm() : 0)
2054       .add(*Src0)
2055       .addImm(Src1Mods ? Src1Mods->getImm() : 0)
2056       .add(*Src1)
2057       .addImm(0) // Src mods
2058       .add(*Src2)
2059       .addImm(Clamp ? Clamp->getImm() : 0)
2060       .addImm(Omod ? Omod->getImm() : 0);
2061 }
2062 
2063 // It's not generally safe to move VALU instructions across these since it will
2064 // start using the register as a base index rather than directly.
2065 // XXX - Why isn't hasSideEffects sufficient for these?
2066 static bool changesVGPRIndexingMode(const MachineInstr &MI) {
2067   switch (MI.getOpcode()) {
2068   case AMDGPU::S_SET_GPR_IDX_ON:
2069   case AMDGPU::S_SET_GPR_IDX_MODE:
2070   case AMDGPU::S_SET_GPR_IDX_OFF:
2071     return true;
2072   default:
2073     return false;
2074   }
2075 }
2076 
2077 bool SIInstrInfo::isSchedulingBoundary(const MachineInstr &MI,
2078                                        const MachineBasicBlock *MBB,
2079                                        const MachineFunction &MF) const {
2080   // XXX - Do we want the SP check in the base implementation?
2081 
2082   // Target-independent instructions do not have an implicit-use of EXEC, even
2083   // when they operate on VGPRs. Treating EXEC modifications as scheduling
2084   // boundaries prevents incorrect movements of such instructions.
2085   return TargetInstrInfo::isSchedulingBoundary(MI, MBB, MF) ||
2086          MI.modifiesRegister(AMDGPU::EXEC, &RI) ||
2087          MI.getOpcode() == AMDGPU::S_SETREG_IMM32_B32 ||
2088          MI.getOpcode() == AMDGPU::S_SETREG_B32 ||
2089          changesVGPRIndexingMode(MI);
2090 }
2091 
2092 bool SIInstrInfo::isInlineConstant(const APInt &Imm) const {
2093   switch (Imm.getBitWidth()) {
2094   case 32:
2095     return AMDGPU::isInlinableLiteral32(Imm.getSExtValue(),
2096                                         ST.hasInv2PiInlineImm());
2097   case 64:
2098     return AMDGPU::isInlinableLiteral64(Imm.getSExtValue(),
2099                                         ST.hasInv2PiInlineImm());
2100   case 16:
2101     return ST.has16BitInsts() &&
2102            AMDGPU::isInlinableLiteral16(Imm.getSExtValue(),
2103                                         ST.hasInv2PiInlineImm());
2104   default:
2105     llvm_unreachable("invalid bitwidth");
2106   }
2107 }
2108 
2109 bool SIInstrInfo::isInlineConstant(const MachineOperand &MO,
2110                                    uint8_t OperandType) const {
2111   if (!MO.isImm() ||
2112       OperandType < AMDGPU::OPERAND_SRC_FIRST ||
2113       OperandType > AMDGPU::OPERAND_SRC_LAST)
2114     return false;
2115 
2116   // MachineOperand provides no way to tell the true operand size, since it only
2117   // records a 64-bit value. We need to know the size to determine if a 32-bit
2118   // floating point immediate bit pattern is legal for an integer immediate. It
2119   // would be for any 32-bit integer operand, but would not be for a 64-bit one.
2120 
2121   int64_t Imm = MO.getImm();
2122   switch (OperandType) {
2123   case AMDGPU::OPERAND_REG_IMM_INT32:
2124   case AMDGPU::OPERAND_REG_IMM_FP32:
2125   case AMDGPU::OPERAND_REG_INLINE_C_INT32:
2126   case AMDGPU::OPERAND_REG_INLINE_C_FP32: {
2127     int32_t Trunc = static_cast<int32_t>(Imm);
2128     return Trunc == Imm &&
2129            AMDGPU::isInlinableLiteral32(Trunc, ST.hasInv2PiInlineImm());
2130   }
2131   case AMDGPU::OPERAND_REG_IMM_INT64:
2132   case AMDGPU::OPERAND_REG_IMM_FP64:
2133   case AMDGPU::OPERAND_REG_INLINE_C_INT64:
2134   case AMDGPU::OPERAND_REG_INLINE_C_FP64: {
2135     return AMDGPU::isInlinableLiteral64(MO.getImm(),
2136                                         ST.hasInv2PiInlineImm());
2137   }
2138   case AMDGPU::OPERAND_REG_IMM_INT16:
2139   case AMDGPU::OPERAND_REG_IMM_FP16:
2140   case AMDGPU::OPERAND_REG_INLINE_C_INT16:
2141   case AMDGPU::OPERAND_REG_INLINE_C_FP16: {
2142     if (isInt<16>(Imm) || isUInt<16>(Imm)) {
2143       // A few special case instructions have 16-bit operands on subtargets
2144       // where 16-bit instructions are not legal.
2145       // TODO: Do the 32-bit immediates work? We shouldn't really need to handle
2146       // constants in these cases
2147       int16_t Trunc = static_cast<int16_t>(Imm);
2148       return ST.has16BitInsts() &&
2149              AMDGPU::isInlinableLiteral16(Trunc, ST.hasInv2PiInlineImm());
2150     }
2151 
2152     return false;
2153   }
2154   case AMDGPU::OPERAND_REG_INLINE_C_V2INT16:
2155   case AMDGPU::OPERAND_REG_INLINE_C_V2FP16: {
2156     uint32_t Trunc = static_cast<uint32_t>(Imm);
2157     return  AMDGPU::isInlinableLiteralV216(Trunc, ST.hasInv2PiInlineImm());
2158   }
2159   default:
2160     llvm_unreachable("invalid bitwidth");
2161   }
2162 }
2163 
2164 bool SIInstrInfo::isLiteralConstantLike(const MachineOperand &MO,
2165                                         const MCOperandInfo &OpInfo) const {
2166   switch (MO.getType()) {
2167   case MachineOperand::MO_Register:
2168     return false;
2169   case MachineOperand::MO_Immediate:
2170     return !isInlineConstant(MO, OpInfo);
2171   case MachineOperand::MO_FrameIndex:
2172   case MachineOperand::MO_MachineBasicBlock:
2173   case MachineOperand::MO_ExternalSymbol:
2174   case MachineOperand::MO_GlobalAddress:
2175   case MachineOperand::MO_MCSymbol:
2176     return true;
2177   default:
2178     llvm_unreachable("unexpected operand type");
2179   }
2180 }
2181 
2182 static bool compareMachineOp(const MachineOperand &Op0,
2183                              const MachineOperand &Op1) {
2184   if (Op0.getType() != Op1.getType())
2185     return false;
2186 
2187   switch (Op0.getType()) {
2188   case MachineOperand::MO_Register:
2189     return Op0.getReg() == Op1.getReg();
2190   case MachineOperand::MO_Immediate:
2191     return Op0.getImm() == Op1.getImm();
2192   default:
2193     llvm_unreachable("Didn't expect to be comparing these operand types");
2194   }
2195 }
2196 
2197 bool SIInstrInfo::isImmOperandLegal(const MachineInstr &MI, unsigned OpNo,
2198                                     const MachineOperand &MO) const {
2199   const MCOperandInfo &OpInfo = get(MI.getOpcode()).OpInfo[OpNo];
2200 
2201   assert(MO.isImm() || MO.isTargetIndex() || MO.isFI());
2202 
2203   if (OpInfo.OperandType == MCOI::OPERAND_IMMEDIATE)
2204     return true;
2205 
2206   if (OpInfo.RegClass < 0)
2207     return false;
2208 
2209   if (MO.isImm() && isInlineConstant(MO, OpInfo))
2210     return RI.opCanUseInlineConstant(OpInfo.OperandType);
2211 
2212   return RI.opCanUseLiteralConstant(OpInfo.OperandType);
2213 }
2214 
2215 bool SIInstrInfo::hasVALU32BitEncoding(unsigned Opcode) const {
2216   int Op32 = AMDGPU::getVOPe32(Opcode);
2217   if (Op32 == -1)
2218     return false;
2219 
2220   return pseudoToMCOpcode(Op32) != -1;
2221 }
2222 
2223 bool SIInstrInfo::hasModifiers(unsigned Opcode) const {
2224   // The src0_modifier operand is present on all instructions
2225   // that have modifiers.
2226 
2227   return AMDGPU::getNamedOperandIdx(Opcode,
2228                                     AMDGPU::OpName::src0_modifiers) != -1;
2229 }
2230 
2231 bool SIInstrInfo::hasModifiersSet(const MachineInstr &MI,
2232                                   unsigned OpName) const {
2233   const MachineOperand *Mods = getNamedOperand(MI, OpName);
2234   return Mods && Mods->getImm();
2235 }
2236 
2237 bool SIInstrInfo::hasAnyModifiersSet(const MachineInstr &MI) const {
2238   return hasModifiersSet(MI, AMDGPU::OpName::src0_modifiers) ||
2239          hasModifiersSet(MI, AMDGPU::OpName::src1_modifiers) ||
2240          hasModifiersSet(MI, AMDGPU::OpName::src2_modifiers) ||
2241          hasModifiersSet(MI, AMDGPU::OpName::clamp) ||
2242          hasModifiersSet(MI, AMDGPU::OpName::omod);
2243 }
2244 
2245 bool SIInstrInfo::usesConstantBus(const MachineRegisterInfo &MRI,
2246                                   const MachineOperand &MO,
2247                                   const MCOperandInfo &OpInfo) const {
2248   // Literal constants use the constant bus.
2249   //if (isLiteralConstantLike(MO, OpInfo))
2250   // return true;
2251   if (MO.isImm())
2252     return !isInlineConstant(MO, OpInfo);
2253 
2254   if (!MO.isReg())
2255     return true; // Misc other operands like FrameIndex
2256 
2257   if (!MO.isUse())
2258     return false;
2259 
2260   if (TargetRegisterInfo::isVirtualRegister(MO.getReg()))
2261     return RI.isSGPRClass(MRI.getRegClass(MO.getReg()));
2262 
2263   // FLAT_SCR is just an SGPR pair.
2264   if (!MO.isImplicit() && (MO.getReg() == AMDGPU::FLAT_SCR))
2265     return true;
2266 
2267   // EXEC register uses the constant bus.
2268   if (!MO.isImplicit() && MO.getReg() == AMDGPU::EXEC)
2269     return true;
2270 
2271   // SGPRs use the constant bus
2272   return (MO.getReg() == AMDGPU::VCC || MO.getReg() == AMDGPU::M0 ||
2273           (!MO.isImplicit() &&
2274            (AMDGPU::SGPR_32RegClass.contains(MO.getReg()) ||
2275             AMDGPU::SGPR_64RegClass.contains(MO.getReg()))));
2276 }
2277 
2278 static unsigned findImplicitSGPRRead(const MachineInstr &MI) {
2279   for (const MachineOperand &MO : MI.implicit_operands()) {
2280     // We only care about reads.
2281     if (MO.isDef())
2282       continue;
2283 
2284     switch (MO.getReg()) {
2285     case AMDGPU::VCC:
2286     case AMDGPU::M0:
2287     case AMDGPU::FLAT_SCR:
2288       return MO.getReg();
2289 
2290     default:
2291       break;
2292     }
2293   }
2294 
2295   return AMDGPU::NoRegister;
2296 }
2297 
2298 static bool shouldReadExec(const MachineInstr &MI) {
2299   if (SIInstrInfo::isVALU(MI)) {
2300     switch (MI.getOpcode()) {
2301     case AMDGPU::V_READLANE_B32:
2302     case AMDGPU::V_READLANE_B32_si:
2303     case AMDGPU::V_READLANE_B32_vi:
2304     case AMDGPU::V_WRITELANE_B32:
2305     case AMDGPU::V_WRITELANE_B32_si:
2306     case AMDGPU::V_WRITELANE_B32_vi:
2307       return false;
2308     }
2309 
2310     return true;
2311   }
2312 
2313   if (SIInstrInfo::isGenericOpcode(MI.getOpcode()) ||
2314       SIInstrInfo::isSALU(MI) ||
2315       SIInstrInfo::isSMRD(MI))
2316     return false;
2317 
2318   return true;
2319 }
2320 
2321 static bool isSubRegOf(const SIRegisterInfo &TRI,
2322                        const MachineOperand &SuperVec,
2323                        const MachineOperand &SubReg) {
2324   if (TargetRegisterInfo::isPhysicalRegister(SubReg.getReg()))
2325     return TRI.isSubRegister(SuperVec.getReg(), SubReg.getReg());
2326 
2327   return SubReg.getSubReg() != AMDGPU::NoSubRegister &&
2328          SubReg.getReg() == SuperVec.getReg();
2329 }
2330 
2331 bool SIInstrInfo::verifyInstruction(const MachineInstr &MI,
2332                                     StringRef &ErrInfo) const {
2333   uint16_t Opcode = MI.getOpcode();
2334   if (SIInstrInfo::isGenericOpcode(MI.getOpcode()))
2335     return true;
2336 
2337   const MachineFunction *MF = MI.getParent()->getParent();
2338   const MachineRegisterInfo &MRI = MF->getRegInfo();
2339 
2340   int Src0Idx = AMDGPU::getNamedOperandIdx(Opcode, AMDGPU::OpName::src0);
2341   int Src1Idx = AMDGPU::getNamedOperandIdx(Opcode, AMDGPU::OpName::src1);
2342   int Src2Idx = AMDGPU::getNamedOperandIdx(Opcode, AMDGPU::OpName::src2);
2343 
2344   // Make sure the number of operands is correct.
2345   const MCInstrDesc &Desc = get(Opcode);
2346   if (!Desc.isVariadic() &&
2347       Desc.getNumOperands() != MI.getNumExplicitOperands()) {
2348     ErrInfo = "Instruction has wrong number of operands.";
2349     return false;
2350   }
2351 
2352   if (MI.isInlineAsm()) {
2353     // Verify register classes for inlineasm constraints.
2354     for (unsigned I = InlineAsm::MIOp_FirstOperand, E = MI.getNumOperands();
2355          I != E; ++I) {
2356       const TargetRegisterClass *RC = MI.getRegClassConstraint(I, this, &RI);
2357       if (!RC)
2358         continue;
2359 
2360       const MachineOperand &Op = MI.getOperand(I);
2361       if (!Op.isReg())
2362         continue;
2363 
2364       unsigned Reg = Op.getReg();
2365       if (!TargetRegisterInfo::isVirtualRegister(Reg) && !RC->contains(Reg)) {
2366         ErrInfo = "inlineasm operand has incorrect register class.";
2367         return false;
2368       }
2369     }
2370 
2371     return true;
2372   }
2373 
2374   // Make sure the register classes are correct.
2375   for (int i = 0, e = Desc.getNumOperands(); i != e; ++i) {
2376     if (MI.getOperand(i).isFPImm()) {
2377       ErrInfo = "FPImm Machine Operands are not supported. ISel should bitcast "
2378                 "all fp values to integers.";
2379       return false;
2380     }
2381 
2382     int RegClass = Desc.OpInfo[i].RegClass;
2383 
2384     switch (Desc.OpInfo[i].OperandType) {
2385     case MCOI::OPERAND_REGISTER:
2386       if (MI.getOperand(i).isImm()) {
2387         ErrInfo = "Illegal immediate value for operand.";
2388         return false;
2389       }
2390       break;
2391     case AMDGPU::OPERAND_REG_IMM_INT32:
2392     case AMDGPU::OPERAND_REG_IMM_FP32:
2393       break;
2394     case AMDGPU::OPERAND_REG_INLINE_C_INT32:
2395     case AMDGPU::OPERAND_REG_INLINE_C_FP32:
2396     case AMDGPU::OPERAND_REG_INLINE_C_INT64:
2397     case AMDGPU::OPERAND_REG_INLINE_C_FP64:
2398     case AMDGPU::OPERAND_REG_INLINE_C_INT16:
2399     case AMDGPU::OPERAND_REG_INLINE_C_FP16: {
2400       const MachineOperand &MO = MI.getOperand(i);
2401       if (!MO.isReg() && (!MO.isImm() || !isInlineConstant(MI, i))) {
2402         ErrInfo = "Illegal immediate value for operand.";
2403         return false;
2404       }
2405       break;
2406     }
2407     case MCOI::OPERAND_IMMEDIATE:
2408     case AMDGPU::OPERAND_KIMM32:
2409       // Check if this operand is an immediate.
2410       // FrameIndex operands will be replaced by immediates, so they are
2411       // allowed.
2412       if (!MI.getOperand(i).isImm() && !MI.getOperand(i).isFI()) {
2413         ErrInfo = "Expected immediate, but got non-immediate";
2414         return false;
2415       }
2416       LLVM_FALLTHROUGH;
2417     default:
2418       continue;
2419     }
2420 
2421     if (!MI.getOperand(i).isReg())
2422       continue;
2423 
2424     if (RegClass != -1) {
2425       unsigned Reg = MI.getOperand(i).getReg();
2426       if (Reg == AMDGPU::NoRegister ||
2427           TargetRegisterInfo::isVirtualRegister(Reg))
2428         continue;
2429 
2430       const TargetRegisterClass *RC = RI.getRegClass(RegClass);
2431       if (!RC->contains(Reg)) {
2432         ErrInfo = "Operand has incorrect register class.";
2433         return false;
2434       }
2435     }
2436   }
2437 
2438   // Verify SDWA
2439   if (isSDWA(MI)) {
2440 
2441     if (!ST.hasSDWA()) {
2442       ErrInfo = "SDWA is not supported on this target";
2443       return false;
2444     }
2445 
2446     int DstIdx = AMDGPU::getNamedOperandIdx(Opcode, AMDGPU::OpName::vdst);
2447     if ( DstIdx == -1)
2448       DstIdx = AMDGPU::getNamedOperandIdx(Opcode, AMDGPU::OpName::sdst);
2449 
2450     const int OpIndicies[] = { DstIdx, Src0Idx, Src1Idx, Src2Idx };
2451 
2452     for (int OpIdx: OpIndicies) {
2453       if (OpIdx == -1)
2454         continue;
2455       const MachineOperand &MO = MI.getOperand(OpIdx);
2456 
2457       if (!ST.hasSDWAScalar()) {
2458         // Only VGPRS on VI
2459         if (!MO.isReg() || !RI.hasVGPRs(RI.getRegClassForReg(MRI, MO.getReg()))) {
2460           ErrInfo = "Only VGPRs allowed as operands in SDWA instructions on VI";
2461           return false;
2462         }
2463       } else {
2464         // No immediates on GFX9
2465         if (!MO.isReg()) {
2466           ErrInfo = "Only reg allowed as operands in SDWA instructions on GFX9";
2467           return false;
2468         }
2469       }
2470     }
2471 
2472     if (!ST.hasSDWAOmod()) {
2473       // No omod allowed on VI
2474       const MachineOperand *OMod = getNamedOperand(MI, AMDGPU::OpName::omod);
2475       if (OMod != nullptr &&
2476         (!OMod->isImm() || OMod->getImm() != 0)) {
2477         ErrInfo = "OMod not allowed in SDWA instructions on VI";
2478         return false;
2479       }
2480     }
2481 
2482     uint16_t BasicOpcode = AMDGPU::getBasicFromSDWAOp(Opcode);
2483     if (isVOPC(BasicOpcode)) {
2484       if (!ST.hasSDWASdst() && DstIdx != -1) {
2485         // Only vcc allowed as dst on VI for VOPC
2486         const MachineOperand &Dst = MI.getOperand(DstIdx);
2487         if (!Dst.isReg() || Dst.getReg() != AMDGPU::VCC) {
2488           ErrInfo = "Only VCC allowed as dst in SDWA instructions on VI";
2489           return false;
2490         }
2491       } else if (!ST.hasSDWAClampVOPC()) {
2492         // No clamp allowed on GFX9 for VOPC
2493         const MachineOperand *Clamp = getNamedOperand(MI, AMDGPU::OpName::clamp);
2494         if (Clamp != nullptr &&
2495           (!Clamp->isImm() || Clamp->getImm() != 0)) {
2496           ErrInfo = "Clamp not allowed in VOPC SDWA instructions on VI";
2497           return false;
2498         }
2499       }
2500     }
2501   }
2502 
2503   // Verify VOP*
2504   if (isVOP1(MI) || isVOP2(MI) || isVOP3(MI) || isVOPC(MI) || isSDWA(MI)) {
2505     // Only look at the true operands. Only a real operand can use the constant
2506     // bus, and we don't want to check pseudo-operands like the source modifier
2507     // flags.
2508     const int OpIndices[] = { Src0Idx, Src1Idx, Src2Idx };
2509 
2510     unsigned ConstantBusCount = 0;
2511 
2512     if (AMDGPU::getNamedOperandIdx(Opcode, AMDGPU::OpName::imm) != -1)
2513       ++ConstantBusCount;
2514 
2515     unsigned SGPRUsed = findImplicitSGPRRead(MI);
2516     if (SGPRUsed != AMDGPU::NoRegister)
2517       ++ConstantBusCount;
2518 
2519     for (int OpIdx : OpIndices) {
2520       if (OpIdx == -1)
2521         break;
2522       const MachineOperand &MO = MI.getOperand(OpIdx);
2523       if (usesConstantBus(MRI, MO, MI.getDesc().OpInfo[OpIdx])) {
2524         if (MO.isReg()) {
2525           if (MO.getReg() != SGPRUsed)
2526             ++ConstantBusCount;
2527           SGPRUsed = MO.getReg();
2528         } else {
2529           ++ConstantBusCount;
2530         }
2531       }
2532     }
2533     if (ConstantBusCount > 1) {
2534       ErrInfo = "VOP* instruction uses the constant bus more than once";
2535       return false;
2536     }
2537   }
2538 
2539   // Verify misc. restrictions on specific instructions.
2540   if (Desc.getOpcode() == AMDGPU::V_DIV_SCALE_F32 ||
2541       Desc.getOpcode() == AMDGPU::V_DIV_SCALE_F64) {
2542     const MachineOperand &Src0 = MI.getOperand(Src0Idx);
2543     const MachineOperand &Src1 = MI.getOperand(Src1Idx);
2544     const MachineOperand &Src2 = MI.getOperand(Src2Idx);
2545     if (Src0.isReg() && Src1.isReg() && Src2.isReg()) {
2546       if (!compareMachineOp(Src0, Src1) &&
2547           !compareMachineOp(Src0, Src2)) {
2548         ErrInfo = "v_div_scale_{f32|f64} require src0 = src1 or src2";
2549         return false;
2550       }
2551     }
2552   }
2553 
2554   if (isSOPK(MI)) {
2555     int64_t Imm = getNamedOperand(MI, AMDGPU::OpName::simm16)->getImm();
2556     if (sopkIsZext(MI)) {
2557       if (!isUInt<16>(Imm)) {
2558         ErrInfo = "invalid immediate for SOPK instruction";
2559         return false;
2560       }
2561     } else {
2562       if (!isInt<16>(Imm)) {
2563         ErrInfo = "invalid immediate for SOPK instruction";
2564         return false;
2565       }
2566     }
2567   }
2568 
2569   if (Desc.getOpcode() == AMDGPU::V_MOVRELS_B32_e32 ||
2570       Desc.getOpcode() == AMDGPU::V_MOVRELS_B32_e64 ||
2571       Desc.getOpcode() == AMDGPU::V_MOVRELD_B32_e32 ||
2572       Desc.getOpcode() == AMDGPU::V_MOVRELD_B32_e64) {
2573     const bool IsDst = Desc.getOpcode() == AMDGPU::V_MOVRELD_B32_e32 ||
2574                        Desc.getOpcode() == AMDGPU::V_MOVRELD_B32_e64;
2575 
2576     const unsigned StaticNumOps = Desc.getNumOperands() +
2577       Desc.getNumImplicitUses();
2578     const unsigned NumImplicitOps = IsDst ? 2 : 1;
2579 
2580     // Allow additional implicit operands. This allows a fixup done by the post
2581     // RA scheduler where the main implicit operand is killed and implicit-defs
2582     // are added for sub-registers that remain live after this instruction.
2583     if (MI.getNumOperands() < StaticNumOps + NumImplicitOps) {
2584       ErrInfo = "missing implicit register operands";
2585       return false;
2586     }
2587 
2588     const MachineOperand *Dst = getNamedOperand(MI, AMDGPU::OpName::vdst);
2589     if (IsDst) {
2590       if (!Dst->isUse()) {
2591         ErrInfo = "v_movreld_b32 vdst should be a use operand";
2592         return false;
2593       }
2594 
2595       unsigned UseOpIdx;
2596       if (!MI.isRegTiedToUseOperand(StaticNumOps, &UseOpIdx) ||
2597           UseOpIdx != StaticNumOps + 1) {
2598         ErrInfo = "movrel implicit operands should be tied";
2599         return false;
2600       }
2601     }
2602 
2603     const MachineOperand &Src0 = MI.getOperand(Src0Idx);
2604     const MachineOperand &ImpUse
2605       = MI.getOperand(StaticNumOps + NumImplicitOps - 1);
2606     if (!ImpUse.isReg() || !ImpUse.isUse() ||
2607         !isSubRegOf(RI, ImpUse, IsDst ? *Dst : Src0)) {
2608       ErrInfo = "src0 should be subreg of implicit vector use";
2609       return false;
2610     }
2611   }
2612 
2613   // Make sure we aren't losing exec uses in the td files. This mostly requires
2614   // being careful when using let Uses to try to add other use registers.
2615   if (shouldReadExec(MI)) {
2616     if (!MI.hasRegisterImplicitUseOperand(AMDGPU::EXEC)) {
2617       ErrInfo = "VALU instruction does not implicitly read exec mask";
2618       return false;
2619     }
2620   }
2621 
2622   if (isSMRD(MI)) {
2623     if (MI.mayStore()) {
2624       // The register offset form of scalar stores may only use m0 as the
2625       // soffset register.
2626       const MachineOperand *Soff = getNamedOperand(MI, AMDGPU::OpName::soff);
2627       if (Soff && Soff->getReg() != AMDGPU::M0) {
2628         ErrInfo = "scalar stores must use m0 as offset register";
2629         return false;
2630       }
2631     }
2632   }
2633 
2634   if (isFLAT(MI) && !MF->getSubtarget<SISubtarget>().hasFlatInstOffsets()) {
2635     const MachineOperand *Offset = getNamedOperand(MI, AMDGPU::OpName::offset);
2636     if (Offset->getImm() != 0) {
2637       ErrInfo = "subtarget does not support offsets in flat instructions";
2638       return false;
2639     }
2640   }
2641 
2642   return true;
2643 }
2644 
2645 unsigned SIInstrInfo::getVALUOp(const MachineInstr &MI) {
2646   switch (MI.getOpcode()) {
2647   default: return AMDGPU::INSTRUCTION_LIST_END;
2648   case AMDGPU::REG_SEQUENCE: return AMDGPU::REG_SEQUENCE;
2649   case AMDGPU::COPY: return AMDGPU::COPY;
2650   case AMDGPU::PHI: return AMDGPU::PHI;
2651   case AMDGPU::INSERT_SUBREG: return AMDGPU::INSERT_SUBREG;
2652   case AMDGPU::S_MOV_B32:
2653     return MI.getOperand(1).isReg() ?
2654            AMDGPU::COPY : AMDGPU::V_MOV_B32_e32;
2655   case AMDGPU::S_ADD_I32:
2656   case AMDGPU::S_ADD_U32: return AMDGPU::V_ADD_I32_e32;
2657   case AMDGPU::S_ADDC_U32: return AMDGPU::V_ADDC_U32_e32;
2658   case AMDGPU::S_SUB_I32:
2659   case AMDGPU::S_SUB_U32: return AMDGPU::V_SUB_I32_e32;
2660   case AMDGPU::S_SUBB_U32: return AMDGPU::V_SUBB_U32_e32;
2661   case AMDGPU::S_MUL_I32: return AMDGPU::V_MUL_LO_I32;
2662   case AMDGPU::S_AND_B32: return AMDGPU::V_AND_B32_e64;
2663   case AMDGPU::S_OR_B32: return AMDGPU::V_OR_B32_e64;
2664   case AMDGPU::S_XOR_B32: return AMDGPU::V_XOR_B32_e64;
2665   case AMDGPU::S_MIN_I32: return AMDGPU::V_MIN_I32_e64;
2666   case AMDGPU::S_MIN_U32: return AMDGPU::V_MIN_U32_e64;
2667   case AMDGPU::S_MAX_I32: return AMDGPU::V_MAX_I32_e64;
2668   case AMDGPU::S_MAX_U32: return AMDGPU::V_MAX_U32_e64;
2669   case AMDGPU::S_ASHR_I32: return AMDGPU::V_ASHR_I32_e32;
2670   case AMDGPU::S_ASHR_I64: return AMDGPU::V_ASHR_I64;
2671   case AMDGPU::S_LSHL_B32: return AMDGPU::V_LSHL_B32_e32;
2672   case AMDGPU::S_LSHL_B64: return AMDGPU::V_LSHL_B64;
2673   case AMDGPU::S_LSHR_B32: return AMDGPU::V_LSHR_B32_e32;
2674   case AMDGPU::S_LSHR_B64: return AMDGPU::V_LSHR_B64;
2675   case AMDGPU::S_SEXT_I32_I8: return AMDGPU::V_BFE_I32;
2676   case AMDGPU::S_SEXT_I32_I16: return AMDGPU::V_BFE_I32;
2677   case AMDGPU::S_BFE_U32: return AMDGPU::V_BFE_U32;
2678   case AMDGPU::S_BFE_I32: return AMDGPU::V_BFE_I32;
2679   case AMDGPU::S_BFM_B32: return AMDGPU::V_BFM_B32_e64;
2680   case AMDGPU::S_BREV_B32: return AMDGPU::V_BFREV_B32_e32;
2681   case AMDGPU::S_NOT_B32: return AMDGPU::V_NOT_B32_e32;
2682   case AMDGPU::S_NOT_B64: return AMDGPU::V_NOT_B32_e32;
2683   case AMDGPU::S_CMP_EQ_I32: return AMDGPU::V_CMP_EQ_I32_e32;
2684   case AMDGPU::S_CMP_LG_I32: return AMDGPU::V_CMP_NE_I32_e32;
2685   case AMDGPU::S_CMP_GT_I32: return AMDGPU::V_CMP_GT_I32_e32;
2686   case AMDGPU::S_CMP_GE_I32: return AMDGPU::V_CMP_GE_I32_e32;
2687   case AMDGPU::S_CMP_LT_I32: return AMDGPU::V_CMP_LT_I32_e32;
2688   case AMDGPU::S_CMP_LE_I32: return AMDGPU::V_CMP_LE_I32_e32;
2689   case AMDGPU::S_CMP_EQ_U32: return AMDGPU::V_CMP_EQ_U32_e32;
2690   case AMDGPU::S_CMP_LG_U32: return AMDGPU::V_CMP_NE_U32_e32;
2691   case AMDGPU::S_CMP_GT_U32: return AMDGPU::V_CMP_GT_U32_e32;
2692   case AMDGPU::S_CMP_GE_U32: return AMDGPU::V_CMP_GE_U32_e32;
2693   case AMDGPU::S_CMP_LT_U32: return AMDGPU::V_CMP_LT_U32_e32;
2694   case AMDGPU::S_CMP_LE_U32: return AMDGPU::V_CMP_LE_U32_e32;
2695   case AMDGPU::S_CMP_EQ_U64: return AMDGPU::V_CMP_EQ_U64_e32;
2696   case AMDGPU::S_CMP_LG_U64: return AMDGPU::V_CMP_NE_U64_e32;
2697   case AMDGPU::S_BCNT1_I32_B32: return AMDGPU::V_BCNT_U32_B32_e64;
2698   case AMDGPU::S_FF1_I32_B32: return AMDGPU::V_FFBL_B32_e32;
2699   case AMDGPU::S_FLBIT_I32_B32: return AMDGPU::V_FFBH_U32_e32;
2700   case AMDGPU::S_FLBIT_I32: return AMDGPU::V_FFBH_I32_e64;
2701   case AMDGPU::S_CBRANCH_SCC0: return AMDGPU::S_CBRANCH_VCCZ;
2702   case AMDGPU::S_CBRANCH_SCC1: return AMDGPU::S_CBRANCH_VCCNZ;
2703   }
2704 }
2705 
2706 bool SIInstrInfo::isSALUOpSupportedOnVALU(const MachineInstr &MI) const {
2707   return getVALUOp(MI) != AMDGPU::INSTRUCTION_LIST_END;
2708 }
2709 
2710 const TargetRegisterClass *SIInstrInfo::getOpRegClass(const MachineInstr &MI,
2711                                                       unsigned OpNo) const {
2712   const MachineRegisterInfo &MRI = MI.getParent()->getParent()->getRegInfo();
2713   const MCInstrDesc &Desc = get(MI.getOpcode());
2714   if (MI.isVariadic() || OpNo >= Desc.getNumOperands() ||
2715       Desc.OpInfo[OpNo].RegClass == -1) {
2716     unsigned Reg = MI.getOperand(OpNo).getReg();
2717 
2718     if (TargetRegisterInfo::isVirtualRegister(Reg))
2719       return MRI.getRegClass(Reg);
2720     return RI.getPhysRegClass(Reg);
2721   }
2722 
2723   unsigned RCID = Desc.OpInfo[OpNo].RegClass;
2724   return RI.getRegClass(RCID);
2725 }
2726 
2727 bool SIInstrInfo::canReadVGPR(const MachineInstr &MI, unsigned OpNo) const {
2728   switch (MI.getOpcode()) {
2729   case AMDGPU::COPY:
2730   case AMDGPU::REG_SEQUENCE:
2731   case AMDGPU::PHI:
2732   case AMDGPU::INSERT_SUBREG:
2733     return RI.hasVGPRs(getOpRegClass(MI, 0));
2734   default:
2735     return RI.hasVGPRs(getOpRegClass(MI, OpNo));
2736   }
2737 }
2738 
2739 void SIInstrInfo::legalizeOpWithMove(MachineInstr &MI, unsigned OpIdx) const {
2740   MachineBasicBlock::iterator I = MI;
2741   MachineBasicBlock *MBB = MI.getParent();
2742   MachineOperand &MO = MI.getOperand(OpIdx);
2743   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
2744   unsigned RCID = get(MI.getOpcode()).OpInfo[OpIdx].RegClass;
2745   const TargetRegisterClass *RC = RI.getRegClass(RCID);
2746   unsigned Opcode = AMDGPU::V_MOV_B32_e32;
2747   if (MO.isReg())
2748     Opcode = AMDGPU::COPY;
2749   else if (RI.isSGPRClass(RC))
2750     Opcode = AMDGPU::S_MOV_B32;
2751 
2752   const TargetRegisterClass *VRC = RI.getEquivalentVGPRClass(RC);
2753   if (RI.getCommonSubClass(&AMDGPU::VReg_64RegClass, VRC))
2754     VRC = &AMDGPU::VReg_64RegClass;
2755   else
2756     VRC = &AMDGPU::VGPR_32RegClass;
2757 
2758   unsigned Reg = MRI.createVirtualRegister(VRC);
2759   DebugLoc DL = MBB->findDebugLoc(I);
2760   BuildMI(*MI.getParent(), I, DL, get(Opcode), Reg).add(MO);
2761   MO.ChangeToRegister(Reg, false);
2762 }
2763 
2764 unsigned SIInstrInfo::buildExtractSubReg(MachineBasicBlock::iterator MI,
2765                                          MachineRegisterInfo &MRI,
2766                                          MachineOperand &SuperReg,
2767                                          const TargetRegisterClass *SuperRC,
2768                                          unsigned SubIdx,
2769                                          const TargetRegisterClass *SubRC)
2770                                          const {
2771   MachineBasicBlock *MBB = MI->getParent();
2772   DebugLoc DL = MI->getDebugLoc();
2773   unsigned SubReg = MRI.createVirtualRegister(SubRC);
2774 
2775   if (SuperReg.getSubReg() == AMDGPU::NoSubRegister) {
2776     BuildMI(*MBB, MI, DL, get(TargetOpcode::COPY), SubReg)
2777       .addReg(SuperReg.getReg(), 0, SubIdx);
2778     return SubReg;
2779   }
2780 
2781   // Just in case the super register is itself a sub-register, copy it to a new
2782   // value so we don't need to worry about merging its subreg index with the
2783   // SubIdx passed to this function. The register coalescer should be able to
2784   // eliminate this extra copy.
2785   unsigned NewSuperReg = MRI.createVirtualRegister(SuperRC);
2786 
2787   BuildMI(*MBB, MI, DL, get(TargetOpcode::COPY), NewSuperReg)
2788     .addReg(SuperReg.getReg(), 0, SuperReg.getSubReg());
2789 
2790   BuildMI(*MBB, MI, DL, get(TargetOpcode::COPY), SubReg)
2791     .addReg(NewSuperReg, 0, SubIdx);
2792 
2793   return SubReg;
2794 }
2795 
2796 MachineOperand SIInstrInfo::buildExtractSubRegOrImm(
2797   MachineBasicBlock::iterator MII,
2798   MachineRegisterInfo &MRI,
2799   MachineOperand &Op,
2800   const TargetRegisterClass *SuperRC,
2801   unsigned SubIdx,
2802   const TargetRegisterClass *SubRC) const {
2803   if (Op.isImm()) {
2804     if (SubIdx == AMDGPU::sub0)
2805       return MachineOperand::CreateImm(static_cast<int32_t>(Op.getImm()));
2806     if (SubIdx == AMDGPU::sub1)
2807       return MachineOperand::CreateImm(static_cast<int32_t>(Op.getImm() >> 32));
2808 
2809     llvm_unreachable("Unhandled register index for immediate");
2810   }
2811 
2812   unsigned SubReg = buildExtractSubReg(MII, MRI, Op, SuperRC,
2813                                        SubIdx, SubRC);
2814   return MachineOperand::CreateReg(SubReg, false);
2815 }
2816 
2817 // Change the order of operands from (0, 1, 2) to (0, 2, 1)
2818 void SIInstrInfo::swapOperands(MachineInstr &Inst) const {
2819   assert(Inst.getNumExplicitOperands() == 3);
2820   MachineOperand Op1 = Inst.getOperand(1);
2821   Inst.RemoveOperand(1);
2822   Inst.addOperand(Op1);
2823 }
2824 
2825 bool SIInstrInfo::isLegalRegOperand(const MachineRegisterInfo &MRI,
2826                                     const MCOperandInfo &OpInfo,
2827                                     const MachineOperand &MO) const {
2828   if (!MO.isReg())
2829     return false;
2830 
2831   unsigned Reg = MO.getReg();
2832   const TargetRegisterClass *RC =
2833     TargetRegisterInfo::isVirtualRegister(Reg) ?
2834     MRI.getRegClass(Reg) :
2835     RI.getPhysRegClass(Reg);
2836 
2837   const SIRegisterInfo *TRI =
2838       static_cast<const SIRegisterInfo*>(MRI.getTargetRegisterInfo());
2839   RC = TRI->getSubRegClass(RC, MO.getSubReg());
2840 
2841   // In order to be legal, the common sub-class must be equal to the
2842   // class of the current operand.  For example:
2843   //
2844   // v_mov_b32 s0 ; Operand defined as vsrc_b32
2845   //              ; RI.getCommonSubClass(s0,vsrc_b32) = sgpr ; LEGAL
2846   //
2847   // s_sendmsg 0, s0 ; Operand defined as m0reg
2848   //                 ; RI.getCommonSubClass(s0,m0reg) = m0reg ; NOT LEGAL
2849 
2850   return RI.getCommonSubClass(RC, RI.getRegClass(OpInfo.RegClass)) == RC;
2851 }
2852 
2853 bool SIInstrInfo::isLegalVSrcOperand(const MachineRegisterInfo &MRI,
2854                                      const MCOperandInfo &OpInfo,
2855                                      const MachineOperand &MO) const {
2856   if (MO.isReg())
2857     return isLegalRegOperand(MRI, OpInfo, MO);
2858 
2859   // Handle non-register types that are treated like immediates.
2860   assert(MO.isImm() || MO.isTargetIndex() || MO.isFI());
2861   return true;
2862 }
2863 
2864 bool SIInstrInfo::isOperandLegal(const MachineInstr &MI, unsigned OpIdx,
2865                                  const MachineOperand *MO) const {
2866   const MachineRegisterInfo &MRI = MI.getParent()->getParent()->getRegInfo();
2867   const MCInstrDesc &InstDesc = MI.getDesc();
2868   const MCOperandInfo &OpInfo = InstDesc.OpInfo[OpIdx];
2869   const TargetRegisterClass *DefinedRC =
2870       OpInfo.RegClass != -1 ? RI.getRegClass(OpInfo.RegClass) : nullptr;
2871   if (!MO)
2872     MO = &MI.getOperand(OpIdx);
2873 
2874   if (isVALU(MI) && usesConstantBus(MRI, *MO, OpInfo)) {
2875 
2876     RegSubRegPair SGPRUsed;
2877     if (MO->isReg())
2878       SGPRUsed = RegSubRegPair(MO->getReg(), MO->getSubReg());
2879 
2880     for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
2881       if (i == OpIdx)
2882         continue;
2883       const MachineOperand &Op = MI.getOperand(i);
2884       if (Op.isReg()) {
2885         if ((Op.getReg() != SGPRUsed.Reg || Op.getSubReg() != SGPRUsed.SubReg) &&
2886             usesConstantBus(MRI, Op, InstDesc.OpInfo[i])) {
2887           return false;
2888         }
2889       } else if (InstDesc.OpInfo[i].OperandType == AMDGPU::OPERAND_KIMM32) {
2890         return false;
2891       }
2892     }
2893   }
2894 
2895   if (MO->isReg()) {
2896     assert(DefinedRC);
2897     return isLegalRegOperand(MRI, OpInfo, *MO);
2898   }
2899 
2900   // Handle non-register types that are treated like immediates.
2901   assert(MO->isImm() || MO->isTargetIndex() || MO->isFI());
2902 
2903   if (!DefinedRC) {
2904     // This operand expects an immediate.
2905     return true;
2906   }
2907 
2908   return isImmOperandLegal(MI, OpIdx, *MO);
2909 }
2910 
2911 void SIInstrInfo::legalizeOperandsVOP2(MachineRegisterInfo &MRI,
2912                                        MachineInstr &MI) const {
2913   unsigned Opc = MI.getOpcode();
2914   const MCInstrDesc &InstrDesc = get(Opc);
2915 
2916   int Src1Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src1);
2917   MachineOperand &Src1 = MI.getOperand(Src1Idx);
2918 
2919   // If there is an implicit SGPR use such as VCC use for v_addc_u32/v_subb_u32
2920   // we need to only have one constant bus use.
2921   //
2922   // Note we do not need to worry about literal constants here. They are
2923   // disabled for the operand type for instructions because they will always
2924   // violate the one constant bus use rule.
2925   bool HasImplicitSGPR = findImplicitSGPRRead(MI) != AMDGPU::NoRegister;
2926   if (HasImplicitSGPR) {
2927     int Src0Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src0);
2928     MachineOperand &Src0 = MI.getOperand(Src0Idx);
2929 
2930     if (Src0.isReg() && RI.isSGPRReg(MRI, Src0.getReg()))
2931       legalizeOpWithMove(MI, Src0Idx);
2932   }
2933 
2934   // VOP2 src0 instructions support all operand types, so we don't need to check
2935   // their legality. If src1 is already legal, we don't need to do anything.
2936   if (isLegalRegOperand(MRI, InstrDesc.OpInfo[Src1Idx], Src1))
2937     return;
2938 
2939   // Special case: V_READLANE_B32 accepts only immediate or SGPR operands for
2940   // lane select. Fix up using V_READFIRSTLANE, since we assume that the lane
2941   // select is uniform.
2942   if (Opc == AMDGPU::V_READLANE_B32 && Src1.isReg() &&
2943       RI.isVGPR(MRI, Src1.getReg())) {
2944     unsigned Reg = MRI.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass);
2945     const DebugLoc &DL = MI.getDebugLoc();
2946     BuildMI(*MI.getParent(), MI, DL, get(AMDGPU::V_READFIRSTLANE_B32), Reg)
2947         .add(Src1);
2948     Src1.ChangeToRegister(Reg, false);
2949     return;
2950   }
2951 
2952   // We do not use commuteInstruction here because it is too aggressive and will
2953   // commute if it is possible. We only want to commute here if it improves
2954   // legality. This can be called a fairly large number of times so don't waste
2955   // compile time pointlessly swapping and checking legality again.
2956   if (HasImplicitSGPR || !MI.isCommutable()) {
2957     legalizeOpWithMove(MI, Src1Idx);
2958     return;
2959   }
2960 
2961   int Src0Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src0);
2962   MachineOperand &Src0 = MI.getOperand(Src0Idx);
2963 
2964   // If src0 can be used as src1, commuting will make the operands legal.
2965   // Otherwise we have to give up and insert a move.
2966   //
2967   // TODO: Other immediate-like operand kinds could be commuted if there was a
2968   // MachineOperand::ChangeTo* for them.
2969   if ((!Src1.isImm() && !Src1.isReg()) ||
2970       !isLegalRegOperand(MRI, InstrDesc.OpInfo[Src1Idx], Src0)) {
2971     legalizeOpWithMove(MI, Src1Idx);
2972     return;
2973   }
2974 
2975   int CommutedOpc = commuteOpcode(MI);
2976   if (CommutedOpc == -1) {
2977     legalizeOpWithMove(MI, Src1Idx);
2978     return;
2979   }
2980 
2981   MI.setDesc(get(CommutedOpc));
2982 
2983   unsigned Src0Reg = Src0.getReg();
2984   unsigned Src0SubReg = Src0.getSubReg();
2985   bool Src0Kill = Src0.isKill();
2986 
2987   if (Src1.isImm())
2988     Src0.ChangeToImmediate(Src1.getImm());
2989   else if (Src1.isReg()) {
2990     Src0.ChangeToRegister(Src1.getReg(), false, false, Src1.isKill());
2991     Src0.setSubReg(Src1.getSubReg());
2992   } else
2993     llvm_unreachable("Should only have register or immediate operands");
2994 
2995   Src1.ChangeToRegister(Src0Reg, false, false, Src0Kill);
2996   Src1.setSubReg(Src0SubReg);
2997 }
2998 
2999 // Legalize VOP3 operands. Because all operand types are supported for any
3000 // operand, and since literal constants are not allowed and should never be
3001 // seen, we only need to worry about inserting copies if we use multiple SGPR
3002 // operands.
3003 void SIInstrInfo::legalizeOperandsVOP3(MachineRegisterInfo &MRI,
3004                                        MachineInstr &MI) const {
3005   unsigned Opc = MI.getOpcode();
3006 
3007   int VOP3Idx[3] = {
3008     AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src0),
3009     AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src1),
3010     AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src2)
3011   };
3012 
3013   // Find the one SGPR operand we are allowed to use.
3014   unsigned SGPRReg = findUsedSGPR(MI, VOP3Idx);
3015 
3016   for (unsigned i = 0; i < 3; ++i) {
3017     int Idx = VOP3Idx[i];
3018     if (Idx == -1)
3019       break;
3020     MachineOperand &MO = MI.getOperand(Idx);
3021 
3022     // We should never see a VOP3 instruction with an illegal immediate operand.
3023     if (!MO.isReg())
3024       continue;
3025 
3026     if (!RI.isSGPRClass(MRI.getRegClass(MO.getReg())))
3027       continue; // VGPRs are legal
3028 
3029     if (SGPRReg == AMDGPU::NoRegister || SGPRReg == MO.getReg()) {
3030       SGPRReg = MO.getReg();
3031       // We can use one SGPR in each VOP3 instruction.
3032       continue;
3033     }
3034 
3035     // If we make it this far, then the operand is not legal and we must
3036     // legalize it.
3037     legalizeOpWithMove(MI, Idx);
3038   }
3039 }
3040 
3041 unsigned SIInstrInfo::readlaneVGPRToSGPR(unsigned SrcReg, MachineInstr &UseMI,
3042                                          MachineRegisterInfo &MRI) const {
3043   const TargetRegisterClass *VRC = MRI.getRegClass(SrcReg);
3044   const TargetRegisterClass *SRC = RI.getEquivalentSGPRClass(VRC);
3045   unsigned DstReg = MRI.createVirtualRegister(SRC);
3046   unsigned SubRegs = RI.getRegSizeInBits(*VRC) / 32;
3047 
3048   SmallVector<unsigned, 8> SRegs;
3049   for (unsigned i = 0; i < SubRegs; ++i) {
3050     unsigned SGPR = MRI.createVirtualRegister(&AMDGPU::SGPR_32RegClass);
3051     BuildMI(*UseMI.getParent(), UseMI, UseMI.getDebugLoc(),
3052             get(AMDGPU::V_READFIRSTLANE_B32), SGPR)
3053         .addReg(SrcReg, 0, RI.getSubRegFromChannel(i));
3054     SRegs.push_back(SGPR);
3055   }
3056 
3057   MachineInstrBuilder MIB =
3058       BuildMI(*UseMI.getParent(), UseMI, UseMI.getDebugLoc(),
3059               get(AMDGPU::REG_SEQUENCE), DstReg);
3060   for (unsigned i = 0; i < SubRegs; ++i) {
3061     MIB.addReg(SRegs[i]);
3062     MIB.addImm(RI.getSubRegFromChannel(i));
3063   }
3064   return DstReg;
3065 }
3066 
3067 void SIInstrInfo::legalizeOperandsSMRD(MachineRegisterInfo &MRI,
3068                                        MachineInstr &MI) const {
3069 
3070   // If the pointer is store in VGPRs, then we need to move them to
3071   // SGPRs using v_readfirstlane.  This is safe because we only select
3072   // loads with uniform pointers to SMRD instruction so we know the
3073   // pointer value is uniform.
3074   MachineOperand *SBase = getNamedOperand(MI, AMDGPU::OpName::sbase);
3075   if (SBase && !RI.isSGPRClass(MRI.getRegClass(SBase->getReg()))) {
3076       unsigned SGPR = readlaneVGPRToSGPR(SBase->getReg(), MI, MRI);
3077       SBase->setReg(SGPR);
3078   }
3079 }
3080 
3081 void SIInstrInfo::legalizeGenericOperand(MachineBasicBlock &InsertMBB,
3082                                          MachineBasicBlock::iterator I,
3083                                          const TargetRegisterClass *DstRC,
3084                                          MachineOperand &Op,
3085                                          MachineRegisterInfo &MRI,
3086                                          const DebugLoc &DL) const {
3087 
3088   unsigned OpReg = Op.getReg();
3089   unsigned OpSubReg = Op.getSubReg();
3090 
3091   const TargetRegisterClass *OpRC = RI.getSubClassWithSubReg(
3092       RI.getRegClassForReg(MRI, OpReg), OpSubReg);
3093 
3094   // Check if operand is already the correct register class.
3095   if (DstRC == OpRC)
3096     return;
3097 
3098   unsigned DstReg = MRI.createVirtualRegister(DstRC);
3099   MachineInstr *Copy =
3100       BuildMI(InsertMBB, I, DL, get(AMDGPU::COPY), DstReg).add(Op);
3101 
3102   Op.setReg(DstReg);
3103   Op.setSubReg(0);
3104 
3105   MachineInstr *Def = MRI.getVRegDef(OpReg);
3106   if (!Def)
3107     return;
3108 
3109   // Try to eliminate the copy if it is copying an immediate value.
3110   if (Def->isMoveImmediate())
3111     FoldImmediate(*Copy, *Def, OpReg, &MRI);
3112 }
3113 
3114 void SIInstrInfo::legalizeOperands(MachineInstr &MI) const {
3115   MachineFunction &MF = *MI.getParent()->getParent();
3116   MachineRegisterInfo &MRI = MF.getRegInfo();
3117 
3118   // Legalize VOP2
3119   if (isVOP2(MI) || isVOPC(MI)) {
3120     legalizeOperandsVOP2(MRI, MI);
3121     return;
3122   }
3123 
3124   // Legalize VOP3
3125   if (isVOP3(MI)) {
3126     legalizeOperandsVOP3(MRI, MI);
3127     return;
3128   }
3129 
3130   // Legalize SMRD
3131   if (isSMRD(MI)) {
3132     legalizeOperandsSMRD(MRI, MI);
3133     return;
3134   }
3135 
3136   // Legalize REG_SEQUENCE and PHI
3137   // The register class of the operands much be the same type as the register
3138   // class of the output.
3139   if (MI.getOpcode() == AMDGPU::PHI) {
3140     const TargetRegisterClass *RC = nullptr, *SRC = nullptr, *VRC = nullptr;
3141     for (unsigned i = 1, e = MI.getNumOperands(); i != e; i += 2) {
3142       if (!MI.getOperand(i).isReg() ||
3143           !TargetRegisterInfo::isVirtualRegister(MI.getOperand(i).getReg()))
3144         continue;
3145       const TargetRegisterClass *OpRC =
3146           MRI.getRegClass(MI.getOperand(i).getReg());
3147       if (RI.hasVGPRs(OpRC)) {
3148         VRC = OpRC;
3149       } else {
3150         SRC = OpRC;
3151       }
3152     }
3153 
3154     // If any of the operands are VGPR registers, then they all most be
3155     // otherwise we will create illegal VGPR->SGPR copies when legalizing
3156     // them.
3157     if (VRC || !RI.isSGPRClass(getOpRegClass(MI, 0))) {
3158       if (!VRC) {
3159         assert(SRC);
3160         VRC = RI.getEquivalentVGPRClass(SRC);
3161       }
3162       RC = VRC;
3163     } else {
3164       RC = SRC;
3165     }
3166 
3167     // Update all the operands so they have the same type.
3168     for (unsigned I = 1, E = MI.getNumOperands(); I != E; I += 2) {
3169       MachineOperand &Op = MI.getOperand(I);
3170       if (!Op.isReg() || !TargetRegisterInfo::isVirtualRegister(Op.getReg()))
3171         continue;
3172 
3173       // MI is a PHI instruction.
3174       MachineBasicBlock *InsertBB = MI.getOperand(I + 1).getMBB();
3175       MachineBasicBlock::iterator Insert = InsertBB->getFirstTerminator();
3176 
3177       // Avoid creating no-op copies with the same src and dst reg class.  These
3178       // confuse some of the machine passes.
3179       legalizeGenericOperand(*InsertBB, Insert, RC, Op, MRI, MI.getDebugLoc());
3180     }
3181   }
3182 
3183   // REG_SEQUENCE doesn't really require operand legalization, but if one has a
3184   // VGPR dest type and SGPR sources, insert copies so all operands are
3185   // VGPRs. This seems to help operand folding / the register coalescer.
3186   if (MI.getOpcode() == AMDGPU::REG_SEQUENCE) {
3187     MachineBasicBlock *MBB = MI.getParent();
3188     const TargetRegisterClass *DstRC = getOpRegClass(MI, 0);
3189     if (RI.hasVGPRs(DstRC)) {
3190       // Update all the operands so they are VGPR register classes. These may
3191       // not be the same register class because REG_SEQUENCE supports mixing
3192       // subregister index types e.g. sub0_sub1 + sub2 + sub3
3193       for (unsigned I = 1, E = MI.getNumOperands(); I != E; I += 2) {
3194         MachineOperand &Op = MI.getOperand(I);
3195         if (!Op.isReg() || !TargetRegisterInfo::isVirtualRegister(Op.getReg()))
3196           continue;
3197 
3198         const TargetRegisterClass *OpRC = MRI.getRegClass(Op.getReg());
3199         const TargetRegisterClass *VRC = RI.getEquivalentVGPRClass(OpRC);
3200         if (VRC == OpRC)
3201           continue;
3202 
3203         legalizeGenericOperand(*MBB, MI, VRC, Op, MRI, MI.getDebugLoc());
3204         Op.setIsKill();
3205       }
3206     }
3207 
3208     return;
3209   }
3210 
3211   // Legalize INSERT_SUBREG
3212   // src0 must have the same register class as dst
3213   if (MI.getOpcode() == AMDGPU::INSERT_SUBREG) {
3214     unsigned Dst = MI.getOperand(0).getReg();
3215     unsigned Src0 = MI.getOperand(1).getReg();
3216     const TargetRegisterClass *DstRC = MRI.getRegClass(Dst);
3217     const TargetRegisterClass *Src0RC = MRI.getRegClass(Src0);
3218     if (DstRC != Src0RC) {
3219       MachineBasicBlock *MBB = MI.getParent();
3220       MachineOperand &Op = MI.getOperand(1);
3221       legalizeGenericOperand(*MBB, MI, DstRC, Op, MRI, MI.getDebugLoc());
3222     }
3223     return;
3224   }
3225 
3226   // Legalize MIMG and MUBUF/MTBUF for shaders.
3227   //
3228   // Shaders only generate MUBUF/MTBUF instructions via intrinsics or via
3229   // scratch memory access. In both cases, the legalization never involves
3230   // conversion to the addr64 form.
3231   if (isMIMG(MI) ||
3232       (AMDGPU::isShader(MF.getFunction()->getCallingConv()) &&
3233        (isMUBUF(MI) || isMTBUF(MI)))) {
3234     MachineOperand *SRsrc = getNamedOperand(MI, AMDGPU::OpName::srsrc);
3235     if (SRsrc && !RI.isSGPRClass(MRI.getRegClass(SRsrc->getReg()))) {
3236       unsigned SGPR = readlaneVGPRToSGPR(SRsrc->getReg(), MI, MRI);
3237       SRsrc->setReg(SGPR);
3238     }
3239 
3240     MachineOperand *SSamp = getNamedOperand(MI, AMDGPU::OpName::ssamp);
3241     if (SSamp && !RI.isSGPRClass(MRI.getRegClass(SSamp->getReg()))) {
3242       unsigned SGPR = readlaneVGPRToSGPR(SSamp->getReg(), MI, MRI);
3243       SSamp->setReg(SGPR);
3244     }
3245     return;
3246   }
3247 
3248   // Legalize MUBUF* instructions by converting to addr64 form.
3249   // FIXME: If we start using the non-addr64 instructions for compute, we
3250   // may need to legalize them as above. This especially applies to the
3251   // buffer_load_format_* variants and variants with idxen (or bothen).
3252   int SRsrcIdx =
3253       AMDGPU::getNamedOperandIdx(MI.getOpcode(), AMDGPU::OpName::srsrc);
3254   if (SRsrcIdx != -1) {
3255     // We have an MUBUF instruction
3256     MachineOperand *SRsrc = &MI.getOperand(SRsrcIdx);
3257     unsigned SRsrcRC = get(MI.getOpcode()).OpInfo[SRsrcIdx].RegClass;
3258     if (RI.getCommonSubClass(MRI.getRegClass(SRsrc->getReg()),
3259                                              RI.getRegClass(SRsrcRC))) {
3260       // The operands are legal.
3261       // FIXME: We may need to legalize operands besided srsrc.
3262       return;
3263     }
3264 
3265     MachineBasicBlock &MBB = *MI.getParent();
3266 
3267     // Extract the ptr from the resource descriptor.
3268     unsigned SRsrcPtr = buildExtractSubReg(MI, MRI, *SRsrc,
3269       &AMDGPU::VReg_128RegClass, AMDGPU::sub0_sub1, &AMDGPU::VReg_64RegClass);
3270 
3271     // Create an empty resource descriptor
3272     unsigned Zero64 = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
3273     unsigned SRsrcFormatLo = MRI.createVirtualRegister(&AMDGPU::SGPR_32RegClass);
3274     unsigned SRsrcFormatHi = MRI.createVirtualRegister(&AMDGPU::SGPR_32RegClass);
3275     unsigned NewSRsrc = MRI.createVirtualRegister(&AMDGPU::SReg_128RegClass);
3276     uint64_t RsrcDataFormat = getDefaultRsrcDataFormat();
3277 
3278     // Zero64 = 0
3279     BuildMI(MBB, MI, MI.getDebugLoc(), get(AMDGPU::S_MOV_B64), Zero64)
3280         .addImm(0);
3281 
3282     // SRsrcFormatLo = RSRC_DATA_FORMAT{31-0}
3283     BuildMI(MBB, MI, MI.getDebugLoc(), get(AMDGPU::S_MOV_B32), SRsrcFormatLo)
3284         .addImm(RsrcDataFormat & 0xFFFFFFFF);
3285 
3286     // SRsrcFormatHi = RSRC_DATA_FORMAT{63-32}
3287     BuildMI(MBB, MI, MI.getDebugLoc(), get(AMDGPU::S_MOV_B32), SRsrcFormatHi)
3288         .addImm(RsrcDataFormat >> 32);
3289 
3290     // NewSRsrc = {Zero64, SRsrcFormat}
3291     BuildMI(MBB, MI, MI.getDebugLoc(), get(AMDGPU::REG_SEQUENCE), NewSRsrc)
3292         .addReg(Zero64)
3293         .addImm(AMDGPU::sub0_sub1)
3294         .addReg(SRsrcFormatLo)
3295         .addImm(AMDGPU::sub2)
3296         .addReg(SRsrcFormatHi)
3297         .addImm(AMDGPU::sub3);
3298 
3299     MachineOperand *VAddr = getNamedOperand(MI, AMDGPU::OpName::vaddr);
3300     unsigned NewVAddr = MRI.createVirtualRegister(&AMDGPU::VReg_64RegClass);
3301     if (VAddr) {
3302       // This is already an ADDR64 instruction so we need to add the pointer
3303       // extracted from the resource descriptor to the current value of VAddr.
3304       unsigned NewVAddrLo = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
3305       unsigned NewVAddrHi = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
3306 
3307       // NewVaddrLo = SRsrcPtr:sub0 + VAddr:sub0
3308       DebugLoc DL = MI.getDebugLoc();
3309       BuildMI(MBB, MI, DL, get(AMDGPU::V_ADD_I32_e32), NewVAddrLo)
3310         .addReg(SRsrcPtr, 0, AMDGPU::sub0)
3311         .addReg(VAddr->getReg(), 0, AMDGPU::sub0);
3312 
3313       // NewVaddrHi = SRsrcPtr:sub1 + VAddr:sub1
3314       BuildMI(MBB, MI, DL, get(AMDGPU::V_ADDC_U32_e32), NewVAddrHi)
3315         .addReg(SRsrcPtr, 0, AMDGPU::sub1)
3316         .addReg(VAddr->getReg(), 0, AMDGPU::sub1);
3317 
3318       // NewVaddr = {NewVaddrHi, NewVaddrLo}
3319       BuildMI(MBB, MI, MI.getDebugLoc(), get(AMDGPU::REG_SEQUENCE), NewVAddr)
3320           .addReg(NewVAddrLo)
3321           .addImm(AMDGPU::sub0)
3322           .addReg(NewVAddrHi)
3323           .addImm(AMDGPU::sub1);
3324     } else {
3325       // This instructions is the _OFFSET variant, so we need to convert it to
3326       // ADDR64.
3327       assert(MBB.getParent()->getSubtarget<SISubtarget>().getGeneration()
3328              < SISubtarget::VOLCANIC_ISLANDS &&
3329              "FIXME: Need to emit flat atomics here");
3330 
3331       MachineOperand *VData = getNamedOperand(MI, AMDGPU::OpName::vdata);
3332       MachineOperand *Offset = getNamedOperand(MI, AMDGPU::OpName::offset);
3333       MachineOperand *SOffset = getNamedOperand(MI, AMDGPU::OpName::soffset);
3334       unsigned Addr64Opcode = AMDGPU::getAddr64Inst(MI.getOpcode());
3335 
3336       // Atomics rith return have have an additional tied operand and are
3337       // missing some of the special bits.
3338       MachineOperand *VDataIn = getNamedOperand(MI, AMDGPU::OpName::vdata_in);
3339       MachineInstr *Addr64;
3340 
3341       if (!VDataIn) {
3342         // Regular buffer load / store.
3343         MachineInstrBuilder MIB =
3344             BuildMI(MBB, MI, MI.getDebugLoc(), get(Addr64Opcode))
3345                 .add(*VData)
3346                 .addReg(AMDGPU::NoRegister) // Dummy value for vaddr.
3347                 // This will be replaced later
3348                 // with the new value of vaddr.
3349                 .add(*SRsrc)
3350                 .add(*SOffset)
3351                 .add(*Offset);
3352 
3353         // Atomics do not have this operand.
3354         if (const MachineOperand *GLC =
3355                 getNamedOperand(MI, AMDGPU::OpName::glc)) {
3356           MIB.addImm(GLC->getImm());
3357         }
3358 
3359         MIB.addImm(getNamedImmOperand(MI, AMDGPU::OpName::slc));
3360 
3361         if (const MachineOperand *TFE =
3362                 getNamedOperand(MI, AMDGPU::OpName::tfe)) {
3363           MIB.addImm(TFE->getImm());
3364         }
3365 
3366         MIB.setMemRefs(MI.memoperands_begin(), MI.memoperands_end());
3367         Addr64 = MIB;
3368       } else {
3369         // Atomics with return.
3370         Addr64 = BuildMI(MBB, MI, MI.getDebugLoc(), get(Addr64Opcode))
3371                      .add(*VData)
3372                      .add(*VDataIn)
3373                      .addReg(AMDGPU::NoRegister) // Dummy value for vaddr.
3374                      // This will be replaced later
3375                      // with the new value of vaddr.
3376                      .add(*SRsrc)
3377                      .add(*SOffset)
3378                      .add(*Offset)
3379                      .addImm(getNamedImmOperand(MI, AMDGPU::OpName::slc))
3380                      .setMemRefs(MI.memoperands_begin(), MI.memoperands_end());
3381       }
3382 
3383       MI.removeFromParent();
3384 
3385       // NewVaddr = {NewVaddrHi, NewVaddrLo}
3386       BuildMI(MBB, Addr64, Addr64->getDebugLoc(), get(AMDGPU::REG_SEQUENCE),
3387               NewVAddr)
3388           .addReg(SRsrcPtr, 0, AMDGPU::sub0)
3389           .addImm(AMDGPU::sub0)
3390           .addReg(SRsrcPtr, 0, AMDGPU::sub1)
3391           .addImm(AMDGPU::sub1);
3392 
3393       VAddr = getNamedOperand(*Addr64, AMDGPU::OpName::vaddr);
3394       SRsrc = getNamedOperand(*Addr64, AMDGPU::OpName::srsrc);
3395     }
3396 
3397     // Update the instruction to use NewVaddr
3398     VAddr->setReg(NewVAddr);
3399     // Update the instruction to use NewSRsrc
3400     SRsrc->setReg(NewSRsrc);
3401   }
3402 }
3403 
3404 void SIInstrInfo::moveToVALU(MachineInstr &TopInst) const {
3405   SmallVector<MachineInstr *, 128> Worklist;
3406   Worklist.push_back(&TopInst);
3407 
3408   while (!Worklist.empty()) {
3409     MachineInstr &Inst = *Worklist.pop_back_val();
3410     MachineBasicBlock *MBB = Inst.getParent();
3411     MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
3412 
3413     unsigned Opcode = Inst.getOpcode();
3414     unsigned NewOpcode = getVALUOp(Inst);
3415 
3416     // Handle some special cases
3417     switch (Opcode) {
3418     default:
3419       break;
3420     case AMDGPU::S_AND_B64:
3421       splitScalar64BitBinaryOp(Worklist, Inst, AMDGPU::V_AND_B32_e64);
3422       Inst.eraseFromParent();
3423       continue;
3424 
3425     case AMDGPU::S_OR_B64:
3426       splitScalar64BitBinaryOp(Worklist, Inst, AMDGPU::V_OR_B32_e64);
3427       Inst.eraseFromParent();
3428       continue;
3429 
3430     case AMDGPU::S_XOR_B64:
3431       splitScalar64BitBinaryOp(Worklist, Inst, AMDGPU::V_XOR_B32_e64);
3432       Inst.eraseFromParent();
3433       continue;
3434 
3435     case AMDGPU::S_NOT_B64:
3436       splitScalar64BitUnaryOp(Worklist, Inst, AMDGPU::V_NOT_B32_e32);
3437       Inst.eraseFromParent();
3438       continue;
3439 
3440     case AMDGPU::S_BCNT1_I32_B64:
3441       splitScalar64BitBCNT(Worklist, Inst);
3442       Inst.eraseFromParent();
3443       continue;
3444 
3445     case AMDGPU::S_BFE_I64: {
3446       splitScalar64BitBFE(Worklist, Inst);
3447       Inst.eraseFromParent();
3448       continue;
3449     }
3450 
3451     case AMDGPU::S_LSHL_B32:
3452       if (ST.getGeneration() >= SISubtarget::VOLCANIC_ISLANDS) {
3453         NewOpcode = AMDGPU::V_LSHLREV_B32_e64;
3454         swapOperands(Inst);
3455       }
3456       break;
3457     case AMDGPU::S_ASHR_I32:
3458       if (ST.getGeneration() >= SISubtarget::VOLCANIC_ISLANDS) {
3459         NewOpcode = AMDGPU::V_ASHRREV_I32_e64;
3460         swapOperands(Inst);
3461       }
3462       break;
3463     case AMDGPU::S_LSHR_B32:
3464       if (ST.getGeneration() >= SISubtarget::VOLCANIC_ISLANDS) {
3465         NewOpcode = AMDGPU::V_LSHRREV_B32_e64;
3466         swapOperands(Inst);
3467       }
3468       break;
3469     case AMDGPU::S_LSHL_B64:
3470       if (ST.getGeneration() >= SISubtarget::VOLCANIC_ISLANDS) {
3471         NewOpcode = AMDGPU::V_LSHLREV_B64;
3472         swapOperands(Inst);
3473       }
3474       break;
3475     case AMDGPU::S_ASHR_I64:
3476       if (ST.getGeneration() >= SISubtarget::VOLCANIC_ISLANDS) {
3477         NewOpcode = AMDGPU::V_ASHRREV_I64;
3478         swapOperands(Inst);
3479       }
3480       break;
3481     case AMDGPU::S_LSHR_B64:
3482       if (ST.getGeneration() >= SISubtarget::VOLCANIC_ISLANDS) {
3483         NewOpcode = AMDGPU::V_LSHRREV_B64;
3484         swapOperands(Inst);
3485       }
3486       break;
3487 
3488     case AMDGPU::S_ABS_I32:
3489       lowerScalarAbs(Worklist, Inst);
3490       Inst.eraseFromParent();
3491       continue;
3492 
3493     case AMDGPU::S_CBRANCH_SCC0:
3494     case AMDGPU::S_CBRANCH_SCC1:
3495       // Clear unused bits of vcc
3496       BuildMI(*MBB, Inst, Inst.getDebugLoc(), get(AMDGPU::S_AND_B64),
3497               AMDGPU::VCC)
3498           .addReg(AMDGPU::EXEC)
3499           .addReg(AMDGPU::VCC);
3500       break;
3501 
3502     case AMDGPU::S_BFE_U64:
3503     case AMDGPU::S_BFM_B64:
3504       llvm_unreachable("Moving this op to VALU not implemented");
3505 
3506     case AMDGPU::S_PACK_LL_B32_B16:
3507     case AMDGPU::S_PACK_LH_B32_B16:
3508     case AMDGPU::S_PACK_HH_B32_B16: {
3509       movePackToVALU(Worklist, MRI, Inst);
3510       Inst.eraseFromParent();
3511       continue;
3512     }
3513     }
3514 
3515     if (NewOpcode == AMDGPU::INSTRUCTION_LIST_END) {
3516       // We cannot move this instruction to the VALU, so we should try to
3517       // legalize its operands instead.
3518       legalizeOperands(Inst);
3519       continue;
3520     }
3521 
3522     // Use the new VALU Opcode.
3523     const MCInstrDesc &NewDesc = get(NewOpcode);
3524     Inst.setDesc(NewDesc);
3525 
3526     // Remove any references to SCC. Vector instructions can't read from it, and
3527     // We're just about to add the implicit use / defs of VCC, and we don't want
3528     // both.
3529     for (unsigned i = Inst.getNumOperands() - 1; i > 0; --i) {
3530       MachineOperand &Op = Inst.getOperand(i);
3531       if (Op.isReg() && Op.getReg() == AMDGPU::SCC) {
3532         Inst.RemoveOperand(i);
3533         addSCCDefUsersToVALUWorklist(Inst, Worklist);
3534       }
3535     }
3536 
3537     if (Opcode == AMDGPU::S_SEXT_I32_I8 || Opcode == AMDGPU::S_SEXT_I32_I16) {
3538       // We are converting these to a BFE, so we need to add the missing
3539       // operands for the size and offset.
3540       unsigned Size = (Opcode == AMDGPU::S_SEXT_I32_I8) ? 8 : 16;
3541       Inst.addOperand(MachineOperand::CreateImm(0));
3542       Inst.addOperand(MachineOperand::CreateImm(Size));
3543 
3544     } else if (Opcode == AMDGPU::S_BCNT1_I32_B32) {
3545       // The VALU version adds the second operand to the result, so insert an
3546       // extra 0 operand.
3547       Inst.addOperand(MachineOperand::CreateImm(0));
3548     }
3549 
3550     Inst.addImplicitDefUseOperands(*Inst.getParent()->getParent());
3551 
3552     if (Opcode == AMDGPU::S_BFE_I32 || Opcode == AMDGPU::S_BFE_U32) {
3553       const MachineOperand &OffsetWidthOp = Inst.getOperand(2);
3554       // If we need to move this to VGPRs, we need to unpack the second operand
3555       // back into the 2 separate ones for bit offset and width.
3556       assert(OffsetWidthOp.isImm() &&
3557              "Scalar BFE is only implemented for constant width and offset");
3558       uint32_t Imm = OffsetWidthOp.getImm();
3559 
3560       uint32_t Offset = Imm & 0x3f; // Extract bits [5:0].
3561       uint32_t BitWidth = (Imm & 0x7f0000) >> 16; // Extract bits [22:16].
3562       Inst.RemoveOperand(2);                     // Remove old immediate.
3563       Inst.addOperand(MachineOperand::CreateImm(Offset));
3564       Inst.addOperand(MachineOperand::CreateImm(BitWidth));
3565     }
3566 
3567     bool HasDst = Inst.getOperand(0).isReg() && Inst.getOperand(0).isDef();
3568     unsigned NewDstReg = AMDGPU::NoRegister;
3569     if (HasDst) {
3570       unsigned DstReg = Inst.getOperand(0).getReg();
3571       if (TargetRegisterInfo::isPhysicalRegister(DstReg))
3572         continue;
3573 
3574       // Update the destination register class.
3575       const TargetRegisterClass *NewDstRC = getDestEquivalentVGPRClass(Inst);
3576       if (!NewDstRC)
3577         continue;
3578 
3579       if (Inst.isCopy() &&
3580           TargetRegisterInfo::isVirtualRegister(Inst.getOperand(1).getReg()) &&
3581           NewDstRC == RI.getRegClassForReg(MRI, Inst.getOperand(1).getReg())) {
3582         // Instead of creating a copy where src and dst are the same register
3583         // class, we just replace all uses of dst with src.  These kinds of
3584         // copies interfere with the heuristics MachineSink uses to decide
3585         // whether or not to split a critical edge.  Since the pass assumes
3586         // that copies will end up as machine instructions and not be
3587         // eliminated.
3588         addUsersToMoveToVALUWorklist(DstReg, MRI, Worklist);
3589         MRI.replaceRegWith(DstReg, Inst.getOperand(1).getReg());
3590         MRI.clearKillFlags(Inst.getOperand(1).getReg());
3591         Inst.getOperand(0).setReg(DstReg);
3592         continue;
3593       }
3594 
3595       NewDstReg = MRI.createVirtualRegister(NewDstRC);
3596       MRI.replaceRegWith(DstReg, NewDstReg);
3597     }
3598 
3599     // Legalize the operands
3600     legalizeOperands(Inst);
3601 
3602     if (HasDst)
3603      addUsersToMoveToVALUWorklist(NewDstReg, MRI, Worklist);
3604   }
3605 }
3606 
3607 void SIInstrInfo::lowerScalarAbs(SmallVectorImpl<MachineInstr *> &Worklist,
3608                                  MachineInstr &Inst) const {
3609   MachineBasicBlock &MBB = *Inst.getParent();
3610   MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
3611   MachineBasicBlock::iterator MII = Inst;
3612   DebugLoc DL = Inst.getDebugLoc();
3613 
3614   MachineOperand &Dest = Inst.getOperand(0);
3615   MachineOperand &Src = Inst.getOperand(1);
3616   unsigned TmpReg = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
3617   unsigned ResultReg = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
3618 
3619   BuildMI(MBB, MII, DL, get(AMDGPU::V_SUB_I32_e32), TmpReg)
3620     .addImm(0)
3621     .addReg(Src.getReg());
3622 
3623   BuildMI(MBB, MII, DL, get(AMDGPU::V_MAX_I32_e64), ResultReg)
3624     .addReg(Src.getReg())
3625     .addReg(TmpReg);
3626 
3627   MRI.replaceRegWith(Dest.getReg(), ResultReg);
3628   addUsersToMoveToVALUWorklist(ResultReg, MRI, Worklist);
3629 }
3630 
3631 void SIInstrInfo::splitScalar64BitUnaryOp(
3632     SmallVectorImpl<MachineInstr *> &Worklist, MachineInstr &Inst,
3633     unsigned Opcode) const {
3634   MachineBasicBlock &MBB = *Inst.getParent();
3635   MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
3636 
3637   MachineOperand &Dest = Inst.getOperand(0);
3638   MachineOperand &Src0 = Inst.getOperand(1);
3639   DebugLoc DL = Inst.getDebugLoc();
3640 
3641   MachineBasicBlock::iterator MII = Inst;
3642 
3643   const MCInstrDesc &InstDesc = get(Opcode);
3644   const TargetRegisterClass *Src0RC = Src0.isReg() ?
3645     MRI.getRegClass(Src0.getReg()) :
3646     &AMDGPU::SGPR_32RegClass;
3647 
3648   const TargetRegisterClass *Src0SubRC = RI.getSubRegClass(Src0RC, AMDGPU::sub0);
3649 
3650   MachineOperand SrcReg0Sub0 = buildExtractSubRegOrImm(MII, MRI, Src0, Src0RC,
3651                                                        AMDGPU::sub0, Src0SubRC);
3652 
3653   const TargetRegisterClass *DestRC = MRI.getRegClass(Dest.getReg());
3654   const TargetRegisterClass *NewDestRC = RI.getEquivalentVGPRClass(DestRC);
3655   const TargetRegisterClass *NewDestSubRC = RI.getSubRegClass(NewDestRC, AMDGPU::sub0);
3656 
3657   unsigned DestSub0 = MRI.createVirtualRegister(NewDestSubRC);
3658   BuildMI(MBB, MII, DL, InstDesc, DestSub0).add(SrcReg0Sub0);
3659 
3660   MachineOperand SrcReg0Sub1 = buildExtractSubRegOrImm(MII, MRI, Src0, Src0RC,
3661                                                        AMDGPU::sub1, Src0SubRC);
3662 
3663   unsigned DestSub1 = MRI.createVirtualRegister(NewDestSubRC);
3664   BuildMI(MBB, MII, DL, InstDesc, DestSub1).add(SrcReg0Sub1);
3665 
3666   unsigned FullDestReg = MRI.createVirtualRegister(NewDestRC);
3667   BuildMI(MBB, MII, DL, get(TargetOpcode::REG_SEQUENCE), FullDestReg)
3668     .addReg(DestSub0)
3669     .addImm(AMDGPU::sub0)
3670     .addReg(DestSub1)
3671     .addImm(AMDGPU::sub1);
3672 
3673   MRI.replaceRegWith(Dest.getReg(), FullDestReg);
3674 
3675   // We don't need to legalizeOperands here because for a single operand, src0
3676   // will support any kind of input.
3677 
3678   // Move all users of this moved value.
3679   addUsersToMoveToVALUWorklist(FullDestReg, MRI, Worklist);
3680 }
3681 
3682 void SIInstrInfo::splitScalar64BitBinaryOp(
3683     SmallVectorImpl<MachineInstr *> &Worklist, MachineInstr &Inst,
3684     unsigned Opcode) const {
3685   MachineBasicBlock &MBB = *Inst.getParent();
3686   MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
3687 
3688   MachineOperand &Dest = Inst.getOperand(0);
3689   MachineOperand &Src0 = Inst.getOperand(1);
3690   MachineOperand &Src1 = Inst.getOperand(2);
3691   DebugLoc DL = Inst.getDebugLoc();
3692 
3693   MachineBasicBlock::iterator MII = Inst;
3694 
3695   const MCInstrDesc &InstDesc = get(Opcode);
3696   const TargetRegisterClass *Src0RC = Src0.isReg() ?
3697     MRI.getRegClass(Src0.getReg()) :
3698     &AMDGPU::SGPR_32RegClass;
3699 
3700   const TargetRegisterClass *Src0SubRC = RI.getSubRegClass(Src0RC, AMDGPU::sub0);
3701   const TargetRegisterClass *Src1RC = Src1.isReg() ?
3702     MRI.getRegClass(Src1.getReg()) :
3703     &AMDGPU::SGPR_32RegClass;
3704 
3705   const TargetRegisterClass *Src1SubRC = RI.getSubRegClass(Src1RC, AMDGPU::sub0);
3706 
3707   MachineOperand SrcReg0Sub0 = buildExtractSubRegOrImm(MII, MRI, Src0, Src0RC,
3708                                                        AMDGPU::sub0, Src0SubRC);
3709   MachineOperand SrcReg1Sub0 = buildExtractSubRegOrImm(MII, MRI, Src1, Src1RC,
3710                                                        AMDGPU::sub0, Src1SubRC);
3711 
3712   const TargetRegisterClass *DestRC = MRI.getRegClass(Dest.getReg());
3713   const TargetRegisterClass *NewDestRC = RI.getEquivalentVGPRClass(DestRC);
3714   const TargetRegisterClass *NewDestSubRC = RI.getSubRegClass(NewDestRC, AMDGPU::sub0);
3715 
3716   unsigned DestSub0 = MRI.createVirtualRegister(NewDestSubRC);
3717   MachineInstr &LoHalf = *BuildMI(MBB, MII, DL, InstDesc, DestSub0)
3718                               .add(SrcReg0Sub0)
3719                               .add(SrcReg1Sub0);
3720 
3721   MachineOperand SrcReg0Sub1 = buildExtractSubRegOrImm(MII, MRI, Src0, Src0RC,
3722                                                        AMDGPU::sub1, Src0SubRC);
3723   MachineOperand SrcReg1Sub1 = buildExtractSubRegOrImm(MII, MRI, Src1, Src1RC,
3724                                                        AMDGPU::sub1, Src1SubRC);
3725 
3726   unsigned DestSub1 = MRI.createVirtualRegister(NewDestSubRC);
3727   MachineInstr &HiHalf = *BuildMI(MBB, MII, DL, InstDesc, DestSub1)
3728                               .add(SrcReg0Sub1)
3729                               .add(SrcReg1Sub1);
3730 
3731   unsigned FullDestReg = MRI.createVirtualRegister(NewDestRC);
3732   BuildMI(MBB, MII, DL, get(TargetOpcode::REG_SEQUENCE), FullDestReg)
3733     .addReg(DestSub0)
3734     .addImm(AMDGPU::sub0)
3735     .addReg(DestSub1)
3736     .addImm(AMDGPU::sub1);
3737 
3738   MRI.replaceRegWith(Dest.getReg(), FullDestReg);
3739 
3740   // Try to legalize the operands in case we need to swap the order to keep it
3741   // valid.
3742   legalizeOperands(LoHalf);
3743   legalizeOperands(HiHalf);
3744 
3745   // Move all users of this moved vlaue.
3746   addUsersToMoveToVALUWorklist(FullDestReg, MRI, Worklist);
3747 }
3748 
3749 void SIInstrInfo::splitScalar64BitBCNT(
3750     SmallVectorImpl<MachineInstr *> &Worklist, MachineInstr &Inst) const {
3751   MachineBasicBlock &MBB = *Inst.getParent();
3752   MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
3753 
3754   MachineBasicBlock::iterator MII = Inst;
3755   DebugLoc DL = Inst.getDebugLoc();
3756 
3757   MachineOperand &Dest = Inst.getOperand(0);
3758   MachineOperand &Src = Inst.getOperand(1);
3759 
3760   const MCInstrDesc &InstDesc = get(AMDGPU::V_BCNT_U32_B32_e64);
3761   const TargetRegisterClass *SrcRC = Src.isReg() ?
3762     MRI.getRegClass(Src.getReg()) :
3763     &AMDGPU::SGPR_32RegClass;
3764 
3765   unsigned MidReg = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
3766   unsigned ResultReg = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
3767 
3768   const TargetRegisterClass *SrcSubRC = RI.getSubRegClass(SrcRC, AMDGPU::sub0);
3769 
3770   MachineOperand SrcRegSub0 = buildExtractSubRegOrImm(MII, MRI, Src, SrcRC,
3771                                                       AMDGPU::sub0, SrcSubRC);
3772   MachineOperand SrcRegSub1 = buildExtractSubRegOrImm(MII, MRI, Src, SrcRC,
3773                                                       AMDGPU::sub1, SrcSubRC);
3774 
3775   BuildMI(MBB, MII, DL, InstDesc, MidReg).add(SrcRegSub0).addImm(0);
3776 
3777   BuildMI(MBB, MII, DL, InstDesc, ResultReg).add(SrcRegSub1).addReg(MidReg);
3778 
3779   MRI.replaceRegWith(Dest.getReg(), ResultReg);
3780 
3781   // We don't need to legalize operands here. src0 for etiher instruction can be
3782   // an SGPR, and the second input is unused or determined here.
3783   addUsersToMoveToVALUWorklist(ResultReg, MRI, Worklist);
3784 }
3785 
3786 void SIInstrInfo::splitScalar64BitBFE(SmallVectorImpl<MachineInstr *> &Worklist,
3787                                       MachineInstr &Inst) const {
3788   MachineBasicBlock &MBB = *Inst.getParent();
3789   MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
3790   MachineBasicBlock::iterator MII = Inst;
3791   DebugLoc DL = Inst.getDebugLoc();
3792 
3793   MachineOperand &Dest = Inst.getOperand(0);
3794   uint32_t Imm = Inst.getOperand(2).getImm();
3795   uint32_t Offset = Imm & 0x3f; // Extract bits [5:0].
3796   uint32_t BitWidth = (Imm & 0x7f0000) >> 16; // Extract bits [22:16].
3797 
3798   (void) Offset;
3799 
3800   // Only sext_inreg cases handled.
3801   assert(Inst.getOpcode() == AMDGPU::S_BFE_I64 && BitWidth <= 32 &&
3802          Offset == 0 && "Not implemented");
3803 
3804   if (BitWidth < 32) {
3805     unsigned MidRegLo = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
3806     unsigned MidRegHi = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
3807     unsigned ResultReg = MRI.createVirtualRegister(&AMDGPU::VReg_64RegClass);
3808 
3809     BuildMI(MBB, MII, DL, get(AMDGPU::V_BFE_I32), MidRegLo)
3810         .addReg(Inst.getOperand(1).getReg(), 0, AMDGPU::sub0)
3811         .addImm(0)
3812         .addImm(BitWidth);
3813 
3814     BuildMI(MBB, MII, DL, get(AMDGPU::V_ASHRREV_I32_e32), MidRegHi)
3815       .addImm(31)
3816       .addReg(MidRegLo);
3817 
3818     BuildMI(MBB, MII, DL, get(TargetOpcode::REG_SEQUENCE), ResultReg)
3819       .addReg(MidRegLo)
3820       .addImm(AMDGPU::sub0)
3821       .addReg(MidRegHi)
3822       .addImm(AMDGPU::sub1);
3823 
3824     MRI.replaceRegWith(Dest.getReg(), ResultReg);
3825     addUsersToMoveToVALUWorklist(ResultReg, MRI, Worklist);
3826     return;
3827   }
3828 
3829   MachineOperand &Src = Inst.getOperand(1);
3830   unsigned TmpReg = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
3831   unsigned ResultReg = MRI.createVirtualRegister(&AMDGPU::VReg_64RegClass);
3832 
3833   BuildMI(MBB, MII, DL, get(AMDGPU::V_ASHRREV_I32_e64), TmpReg)
3834     .addImm(31)
3835     .addReg(Src.getReg(), 0, AMDGPU::sub0);
3836 
3837   BuildMI(MBB, MII, DL, get(TargetOpcode::REG_SEQUENCE), ResultReg)
3838     .addReg(Src.getReg(), 0, AMDGPU::sub0)
3839     .addImm(AMDGPU::sub0)
3840     .addReg(TmpReg)
3841     .addImm(AMDGPU::sub1);
3842 
3843   MRI.replaceRegWith(Dest.getReg(), ResultReg);
3844   addUsersToMoveToVALUWorklist(ResultReg, MRI, Worklist);
3845 }
3846 
3847 void SIInstrInfo::addUsersToMoveToVALUWorklist(
3848   unsigned DstReg,
3849   MachineRegisterInfo &MRI,
3850   SmallVectorImpl<MachineInstr *> &Worklist) const {
3851   for (MachineRegisterInfo::use_iterator I = MRI.use_begin(DstReg),
3852          E = MRI.use_end(); I != E;) {
3853     MachineInstr &UseMI = *I->getParent();
3854     if (!canReadVGPR(UseMI, I.getOperandNo())) {
3855       Worklist.push_back(&UseMI);
3856 
3857       do {
3858         ++I;
3859       } while (I != E && I->getParent() == &UseMI);
3860     } else {
3861       ++I;
3862     }
3863   }
3864 }
3865 
3866 void SIInstrInfo::movePackToVALU(SmallVectorImpl<MachineInstr *> &Worklist,
3867                                  MachineRegisterInfo &MRI,
3868                                  MachineInstr &Inst) const {
3869   unsigned ResultReg = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
3870   MachineBasicBlock *MBB = Inst.getParent();
3871   MachineOperand &Src0 = Inst.getOperand(1);
3872   MachineOperand &Src1 = Inst.getOperand(2);
3873   const DebugLoc &DL = Inst.getDebugLoc();
3874 
3875   switch (Inst.getOpcode()) {
3876   case AMDGPU::S_PACK_LL_B32_B16: {
3877     unsigned ImmReg = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
3878     unsigned TmpReg = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
3879 
3880     // FIXME: Can do a lot better if we know the high bits of src0 or src1 are
3881     // 0.
3882     BuildMI(*MBB, Inst, DL, get(AMDGPU::V_MOV_B32_e32), ImmReg)
3883       .addImm(0xffff);
3884 
3885     BuildMI(*MBB, Inst, DL, get(AMDGPU::V_AND_B32_e64), TmpReg)
3886       .addReg(ImmReg, RegState::Kill)
3887       .add(Src0);
3888 
3889     BuildMI(*MBB, Inst, DL, get(AMDGPU::V_LSHL_OR_B32), ResultReg)
3890       .add(Src1)
3891       .addImm(16)
3892       .addReg(TmpReg, RegState::Kill);
3893     break;
3894   }
3895   case AMDGPU::S_PACK_LH_B32_B16: {
3896     unsigned ImmReg = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
3897     BuildMI(*MBB, Inst, DL, get(AMDGPU::V_MOV_B32_e32), ImmReg)
3898       .addImm(0xffff);
3899     BuildMI(*MBB, Inst, DL, get(AMDGPU::V_BFI_B32), ResultReg)
3900       .addReg(ImmReg, RegState::Kill)
3901       .add(Src0)
3902       .add(Src1);
3903     break;
3904   }
3905   case AMDGPU::S_PACK_HH_B32_B16: {
3906     unsigned ImmReg = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
3907     unsigned TmpReg = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
3908     BuildMI(*MBB, Inst, DL, get(AMDGPU::V_LSHRREV_B32_e64), TmpReg)
3909       .addImm(16)
3910       .add(Src0);
3911     BuildMI(*MBB, Inst, DL, get(AMDGPU::V_MOV_B32_e32), ImmReg)
3912       .addImm(0xffff0000);
3913     BuildMI(*MBB, Inst, DL, get(AMDGPU::V_AND_OR_B32), ResultReg)
3914       .add(Src1)
3915       .addReg(ImmReg, RegState::Kill)
3916       .addReg(TmpReg, RegState::Kill);
3917     break;
3918   }
3919   default:
3920     llvm_unreachable("unhandled s_pack_* instruction");
3921   }
3922 
3923   MachineOperand &Dest = Inst.getOperand(0);
3924   MRI.replaceRegWith(Dest.getReg(), ResultReg);
3925   addUsersToMoveToVALUWorklist(ResultReg, MRI, Worklist);
3926 }
3927 
3928 void SIInstrInfo::addSCCDefUsersToVALUWorklist(
3929     MachineInstr &SCCDefInst, SmallVectorImpl<MachineInstr *> &Worklist) const {
3930   // This assumes that all the users of SCC are in the same block
3931   // as the SCC def.
3932   for (MachineInstr &MI :
3933        llvm::make_range(MachineBasicBlock::iterator(SCCDefInst),
3934                         SCCDefInst.getParent()->end())) {
3935     // Exit if we find another SCC def.
3936     if (MI.findRegisterDefOperandIdx(AMDGPU::SCC) != -1)
3937       return;
3938 
3939     if (MI.findRegisterUseOperandIdx(AMDGPU::SCC) != -1)
3940       Worklist.push_back(&MI);
3941   }
3942 }
3943 
3944 const TargetRegisterClass *SIInstrInfo::getDestEquivalentVGPRClass(
3945   const MachineInstr &Inst) const {
3946   const TargetRegisterClass *NewDstRC = getOpRegClass(Inst, 0);
3947 
3948   switch (Inst.getOpcode()) {
3949   // For target instructions, getOpRegClass just returns the virtual register
3950   // class associated with the operand, so we need to find an equivalent VGPR
3951   // register class in order to move the instruction to the VALU.
3952   case AMDGPU::COPY:
3953   case AMDGPU::PHI:
3954   case AMDGPU::REG_SEQUENCE:
3955   case AMDGPU::INSERT_SUBREG:
3956     if (RI.hasVGPRs(NewDstRC))
3957       return nullptr;
3958 
3959     NewDstRC = RI.getEquivalentVGPRClass(NewDstRC);
3960     if (!NewDstRC)
3961       return nullptr;
3962     return NewDstRC;
3963   default:
3964     return NewDstRC;
3965   }
3966 }
3967 
3968 // Find the one SGPR operand we are allowed to use.
3969 unsigned SIInstrInfo::findUsedSGPR(const MachineInstr &MI,
3970                                    int OpIndices[3]) const {
3971   const MCInstrDesc &Desc = MI.getDesc();
3972 
3973   // Find the one SGPR operand we are allowed to use.
3974   //
3975   // First we need to consider the instruction's operand requirements before
3976   // legalizing. Some operands are required to be SGPRs, such as implicit uses
3977   // of VCC, but we are still bound by the constant bus requirement to only use
3978   // one.
3979   //
3980   // If the operand's class is an SGPR, we can never move it.
3981 
3982   unsigned SGPRReg = findImplicitSGPRRead(MI);
3983   if (SGPRReg != AMDGPU::NoRegister)
3984     return SGPRReg;
3985 
3986   unsigned UsedSGPRs[3] = { AMDGPU::NoRegister };
3987   const MachineRegisterInfo &MRI = MI.getParent()->getParent()->getRegInfo();
3988 
3989   for (unsigned i = 0; i < 3; ++i) {
3990     int Idx = OpIndices[i];
3991     if (Idx == -1)
3992       break;
3993 
3994     const MachineOperand &MO = MI.getOperand(Idx);
3995     if (!MO.isReg())
3996       continue;
3997 
3998     // Is this operand statically required to be an SGPR based on the operand
3999     // constraints?
4000     const TargetRegisterClass *OpRC = RI.getRegClass(Desc.OpInfo[Idx].RegClass);
4001     bool IsRequiredSGPR = RI.isSGPRClass(OpRC);
4002     if (IsRequiredSGPR)
4003       return MO.getReg();
4004 
4005     // If this could be a VGPR or an SGPR, Check the dynamic register class.
4006     unsigned Reg = MO.getReg();
4007     const TargetRegisterClass *RegRC = MRI.getRegClass(Reg);
4008     if (RI.isSGPRClass(RegRC))
4009       UsedSGPRs[i] = Reg;
4010   }
4011 
4012   // We don't have a required SGPR operand, so we have a bit more freedom in
4013   // selecting operands to move.
4014 
4015   // Try to select the most used SGPR. If an SGPR is equal to one of the
4016   // others, we choose that.
4017   //
4018   // e.g.
4019   // V_FMA_F32 v0, s0, s0, s0 -> No moves
4020   // V_FMA_F32 v0, s0, s1, s0 -> Move s1
4021 
4022   // TODO: If some of the operands are 64-bit SGPRs and some 32, we should
4023   // prefer those.
4024 
4025   if (UsedSGPRs[0] != AMDGPU::NoRegister) {
4026     if (UsedSGPRs[0] == UsedSGPRs[1] || UsedSGPRs[0] == UsedSGPRs[2])
4027       SGPRReg = UsedSGPRs[0];
4028   }
4029 
4030   if (SGPRReg == AMDGPU::NoRegister && UsedSGPRs[1] != AMDGPU::NoRegister) {
4031     if (UsedSGPRs[1] == UsedSGPRs[2])
4032       SGPRReg = UsedSGPRs[1];
4033   }
4034 
4035   return SGPRReg;
4036 }
4037 
4038 MachineOperand *SIInstrInfo::getNamedOperand(MachineInstr &MI,
4039                                              unsigned OperandName) const {
4040   int Idx = AMDGPU::getNamedOperandIdx(MI.getOpcode(), OperandName);
4041   if (Idx == -1)
4042     return nullptr;
4043 
4044   return &MI.getOperand(Idx);
4045 }
4046 
4047 uint64_t SIInstrInfo::getDefaultRsrcDataFormat() const {
4048   uint64_t RsrcDataFormat = AMDGPU::RSRC_DATA_FORMAT;
4049   if (ST.isAmdHsaOS()) {
4050     // Set ATC = 1. GFX9 doesn't have this bit.
4051     if (ST.getGeneration() <= SISubtarget::VOLCANIC_ISLANDS)
4052       RsrcDataFormat |= (1ULL << 56);
4053 
4054     // Set MTYPE = 2 (MTYPE_UC = uncached). GFX9 doesn't have this.
4055     // BTW, it disables TC L2 and therefore decreases performance.
4056     if (ST.getGeneration() == SISubtarget::VOLCANIC_ISLANDS)
4057       RsrcDataFormat |= (2ULL << 59);
4058   }
4059 
4060   return RsrcDataFormat;
4061 }
4062 
4063 uint64_t SIInstrInfo::getScratchRsrcWords23() const {
4064   uint64_t Rsrc23 = getDefaultRsrcDataFormat() |
4065                     AMDGPU::RSRC_TID_ENABLE |
4066                     0xffffffff; // Size;
4067 
4068   // GFX9 doesn't have ELEMENT_SIZE.
4069   if (ST.getGeneration() <= SISubtarget::VOLCANIC_ISLANDS) {
4070     uint64_t EltSizeValue = Log2_32(ST.getMaxPrivateElementSize()) - 1;
4071     Rsrc23 |= EltSizeValue << AMDGPU::RSRC_ELEMENT_SIZE_SHIFT;
4072   }
4073 
4074   // IndexStride = 64.
4075   Rsrc23 |= UINT64_C(3) << AMDGPU::RSRC_INDEX_STRIDE_SHIFT;
4076 
4077   // If TID_ENABLE is set, DATA_FORMAT specifies stride bits [14:17].
4078   // Clear them unless we want a huge stride.
4079   if (ST.getGeneration() >= SISubtarget::VOLCANIC_ISLANDS)
4080     Rsrc23 &= ~AMDGPU::RSRC_DATA_FORMAT;
4081 
4082   return Rsrc23;
4083 }
4084 
4085 bool SIInstrInfo::isLowLatencyInstruction(const MachineInstr &MI) const {
4086   unsigned Opc = MI.getOpcode();
4087 
4088   return isSMRD(Opc);
4089 }
4090 
4091 bool SIInstrInfo::isHighLatencyInstruction(const MachineInstr &MI) const {
4092   unsigned Opc = MI.getOpcode();
4093 
4094   return isMUBUF(Opc) || isMTBUF(Opc) || isMIMG(Opc);
4095 }
4096 
4097 unsigned SIInstrInfo::isStackAccess(const MachineInstr &MI,
4098                                     int &FrameIndex) const {
4099   const MachineOperand *Addr = getNamedOperand(MI, AMDGPU::OpName::vaddr);
4100   if (!Addr || !Addr->isFI())
4101     return AMDGPU::NoRegister;
4102 
4103   assert(!MI.memoperands_empty() &&
4104          (*MI.memoperands_begin())->getAddrSpace() == AMDGPUASI.PRIVATE_ADDRESS);
4105 
4106   FrameIndex = Addr->getIndex();
4107   return getNamedOperand(MI, AMDGPU::OpName::vdata)->getReg();
4108 }
4109 
4110 unsigned SIInstrInfo::isSGPRStackAccess(const MachineInstr &MI,
4111                                         int &FrameIndex) const {
4112   const MachineOperand *Addr = getNamedOperand(MI, AMDGPU::OpName::addr);
4113   assert(Addr && Addr->isFI());
4114   FrameIndex = Addr->getIndex();
4115   return getNamedOperand(MI, AMDGPU::OpName::data)->getReg();
4116 }
4117 
4118 unsigned SIInstrInfo::isLoadFromStackSlot(const MachineInstr &MI,
4119                                           int &FrameIndex) const {
4120 
4121   if (!MI.mayLoad())
4122     return AMDGPU::NoRegister;
4123 
4124   if (isMUBUF(MI) || isVGPRSpill(MI))
4125     return isStackAccess(MI, FrameIndex);
4126 
4127   if (isSGPRSpill(MI))
4128     return isSGPRStackAccess(MI, FrameIndex);
4129 
4130   return AMDGPU::NoRegister;
4131 }
4132 
4133 unsigned SIInstrInfo::isStoreToStackSlot(const MachineInstr &MI,
4134                                          int &FrameIndex) const {
4135   if (!MI.mayStore())
4136     return AMDGPU::NoRegister;
4137 
4138   if (isMUBUF(MI) || isVGPRSpill(MI))
4139     return isStackAccess(MI, FrameIndex);
4140 
4141   if (isSGPRSpill(MI))
4142     return isSGPRStackAccess(MI, FrameIndex);
4143 
4144   return AMDGPU::NoRegister;
4145 }
4146 
4147 unsigned SIInstrInfo::getInstSizeInBytes(const MachineInstr &MI) const {
4148   unsigned Opc = MI.getOpcode();
4149   const MCInstrDesc &Desc = getMCOpcodeFromPseudo(Opc);
4150   unsigned DescSize = Desc.getSize();
4151 
4152   // If we have a definitive size, we can use it. Otherwise we need to inspect
4153   // the operands to know the size.
4154   //
4155   // FIXME: Instructions that have a base 32-bit encoding report their size as
4156   // 4, even though they are really 8 bytes if they have a literal operand.
4157   if (DescSize != 0 && DescSize != 4)
4158     return DescSize;
4159 
4160   // 4-byte instructions may have a 32-bit literal encoded after them. Check
4161   // operands that coud ever be literals.
4162   if (isVALU(MI) || isSALU(MI)) {
4163     if (isFixedSize(MI))
4164       return DescSize;
4165 
4166     int Src0Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src0);
4167     if (Src0Idx == -1)
4168       return 4; // No operands.
4169 
4170     if (isLiteralConstantLike(MI.getOperand(Src0Idx), Desc.OpInfo[Src0Idx]))
4171       return 8;
4172 
4173     int Src1Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src1);
4174     if (Src1Idx == -1)
4175       return 4;
4176 
4177     if (isLiteralConstantLike(MI.getOperand(Src1Idx), Desc.OpInfo[Src1Idx]))
4178       return 8;
4179 
4180     return 4;
4181   }
4182 
4183   if (DescSize == 4)
4184     return 4;
4185 
4186   switch (Opc) {
4187   case TargetOpcode::IMPLICIT_DEF:
4188   case TargetOpcode::KILL:
4189   case TargetOpcode::DBG_VALUE:
4190   case TargetOpcode::BUNDLE:
4191   case TargetOpcode::EH_LABEL:
4192     return 0;
4193   case TargetOpcode::INLINEASM: {
4194     const MachineFunction *MF = MI.getParent()->getParent();
4195     const char *AsmStr = MI.getOperand(0).getSymbolName();
4196     return getInlineAsmLength(AsmStr, *MF->getTarget().getMCAsmInfo());
4197   }
4198   default:
4199     llvm_unreachable("unable to find instruction size");
4200   }
4201 }
4202 
4203 bool SIInstrInfo::mayAccessFlatAddressSpace(const MachineInstr &MI) const {
4204   if (!isFLAT(MI))
4205     return false;
4206 
4207   if (MI.memoperands_empty())
4208     return true;
4209 
4210   for (const MachineMemOperand *MMO : MI.memoperands()) {
4211     if (MMO->getAddrSpace() == AMDGPUASI.FLAT_ADDRESS)
4212       return true;
4213   }
4214   return false;
4215 }
4216 
4217 bool SIInstrInfo::isNonUniformBranchInstr(MachineInstr &Branch) const {
4218   return Branch.getOpcode() == AMDGPU::SI_NON_UNIFORM_BRCOND_PSEUDO;
4219 }
4220 
4221 void SIInstrInfo::convertNonUniformIfRegion(MachineBasicBlock *IfEntry,
4222                                             MachineBasicBlock *IfEnd) const {
4223   MachineBasicBlock::iterator TI = IfEntry->getFirstTerminator();
4224   assert(TI != IfEntry->end());
4225 
4226   MachineInstr *Branch = &(*TI);
4227   MachineFunction *MF = IfEntry->getParent();
4228   MachineRegisterInfo &MRI = IfEntry->getParent()->getRegInfo();
4229 
4230   if (Branch->getOpcode() == AMDGPU::SI_NON_UNIFORM_BRCOND_PSEUDO) {
4231     unsigned DstReg = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
4232     MachineInstr *SIIF =
4233         BuildMI(*MF, Branch->getDebugLoc(), get(AMDGPU::SI_IF), DstReg)
4234             .add(Branch->getOperand(0))
4235             .add(Branch->getOperand(1));
4236     MachineInstr *SIEND =
4237         BuildMI(*MF, Branch->getDebugLoc(), get(AMDGPU::SI_END_CF))
4238             .addReg(DstReg);
4239 
4240     IfEntry->erase(TI);
4241     IfEntry->insert(IfEntry->end(), SIIF);
4242     IfEnd->insert(IfEnd->getFirstNonPHI(), SIEND);
4243   }
4244 }
4245 
4246 void SIInstrInfo::convertNonUniformLoopRegion(
4247     MachineBasicBlock *LoopEntry, MachineBasicBlock *LoopEnd) const {
4248   MachineBasicBlock::iterator TI = LoopEnd->getFirstTerminator();
4249   // We expect 2 terminators, one conditional and one unconditional.
4250   assert(TI != LoopEnd->end());
4251 
4252   MachineInstr *Branch = &(*TI);
4253   MachineFunction *MF = LoopEnd->getParent();
4254   MachineRegisterInfo &MRI = LoopEnd->getParent()->getRegInfo();
4255 
4256   if (Branch->getOpcode() == AMDGPU::SI_NON_UNIFORM_BRCOND_PSEUDO) {
4257 
4258     unsigned DstReg = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
4259     unsigned BackEdgeReg = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
4260     MachineInstrBuilder HeaderPHIBuilder =
4261         BuildMI(*(MF), Branch->getDebugLoc(), get(TargetOpcode::PHI), DstReg);
4262     for (MachineBasicBlock::pred_iterator PI = LoopEntry->pred_begin(),
4263                                           E = LoopEntry->pred_end();
4264          PI != E; ++PI) {
4265       if (*PI == LoopEnd) {
4266         HeaderPHIBuilder.addReg(BackEdgeReg);
4267       } else {
4268         MachineBasicBlock *PMBB = *PI;
4269         unsigned ZeroReg = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
4270         materializeImmediate(*PMBB, PMBB->getFirstTerminator(), DebugLoc(),
4271                              ZeroReg, 0);
4272         HeaderPHIBuilder.addReg(ZeroReg);
4273       }
4274       HeaderPHIBuilder.addMBB(*PI);
4275     }
4276     MachineInstr *HeaderPhi = HeaderPHIBuilder;
4277     MachineInstr *SIIFBREAK = BuildMI(*(MF), Branch->getDebugLoc(),
4278                                       get(AMDGPU::SI_IF_BREAK), BackEdgeReg)
4279                                   .addReg(DstReg)
4280                                   .add(Branch->getOperand(0));
4281     MachineInstr *SILOOP =
4282         BuildMI(*(MF), Branch->getDebugLoc(), get(AMDGPU::SI_LOOP))
4283             .addReg(BackEdgeReg)
4284             .addMBB(LoopEntry);
4285 
4286     LoopEntry->insert(LoopEntry->begin(), HeaderPhi);
4287     LoopEnd->erase(TI);
4288     LoopEnd->insert(LoopEnd->end(), SIIFBREAK);
4289     LoopEnd->insert(LoopEnd->end(), SILOOP);
4290   }
4291 }
4292 
4293 ArrayRef<std::pair<int, const char *>>
4294 SIInstrInfo::getSerializableTargetIndices() const {
4295   static const std::pair<int, const char *> TargetIndices[] = {
4296       {AMDGPU::TI_CONSTDATA_START, "amdgpu-constdata-start"},
4297       {AMDGPU::TI_SCRATCH_RSRC_DWORD0, "amdgpu-scratch-rsrc-dword0"},
4298       {AMDGPU::TI_SCRATCH_RSRC_DWORD1, "amdgpu-scratch-rsrc-dword1"},
4299       {AMDGPU::TI_SCRATCH_RSRC_DWORD2, "amdgpu-scratch-rsrc-dword2"},
4300       {AMDGPU::TI_SCRATCH_RSRC_DWORD3, "amdgpu-scratch-rsrc-dword3"}};
4301   return makeArrayRef(TargetIndices);
4302 }
4303 
4304 /// This is used by the post-RA scheduler (SchedulePostRAList.cpp).  The
4305 /// post-RA version of misched uses CreateTargetMIHazardRecognizer.
4306 ScheduleHazardRecognizer *
4307 SIInstrInfo::CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II,
4308                                             const ScheduleDAG *DAG) const {
4309   return new GCNHazardRecognizer(DAG->MF);
4310 }
4311 
4312 /// This is the hazard recognizer used at -O0 by the PostRAHazardRecognizer
4313 /// pass.
4314 ScheduleHazardRecognizer *
4315 SIInstrInfo::CreateTargetPostRAHazardRecognizer(const MachineFunction &MF) const {
4316   return new GCNHazardRecognizer(MF);
4317 }
4318 
4319 bool SIInstrInfo::isBasicBlockPrologue(const MachineInstr &MI) const {
4320   return !MI.isTerminator() && MI.getOpcode() != AMDGPU::COPY &&
4321          MI.modifiesRegister(AMDGPU::EXEC, &RI);
4322 }
4323 
4324 MachineInstrBuilder
4325 SIInstrInfo::getAddNoCarry(MachineBasicBlock &MBB,
4326                            MachineBasicBlock::iterator I,
4327                            const DebugLoc &DL,
4328                            unsigned DestReg) const {
4329   MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
4330 
4331   unsigned UnusedCarry = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
4332 
4333   return BuildMI(MBB, I, DL, get(AMDGPU::V_ADD_I32_e64), DestReg)
4334            .addReg(UnusedCarry, RegState::Define | RegState::Dead);
4335 }
4336