1 //===- SIInstrInfo.cpp - SI Instruction Information ----------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 /// SI Implementation of TargetInstrInfo.
12 //===----------------------------------------------------------------------===//
14 #include "SIInstrInfo.h"
16 #include "AMDGPUSubtarget.h"
17 #include "GCNHazardRecognizer.h"
18 #include "SIDefines.h"
19 #include "SIMachineFunctionInfo.h"
20 #include "SIRegisterInfo.h"
21 #include "MCTargetDesc/AMDGPUMCTargetDesc.h"
22 #include "Utils/AMDGPUBaseInfo.h"
23 #include "llvm/ADT/APInt.h"
24 #include "llvm/ADT/ArrayRef.h"
25 #include "llvm/ADT/SmallVector.h"
26 #include "llvm/ADT/StringRef.h"
27 #include "llvm/ADT/iterator_range.h"
28 #include "llvm/Analysis/AliasAnalysis.h"
29 #include "llvm/Analysis/MemoryLocation.h"
30 #include "llvm/Analysis/ValueTracking.h"
31 #include "llvm/CodeGen/MachineBasicBlock.h"
32 #include "llvm/CodeGen/MachineDominators.h"
33 #include "llvm/CodeGen/MachineFrameInfo.h"
34 #include "llvm/CodeGen/MachineFunction.h"
35 #include "llvm/CodeGen/MachineInstr.h"
36 #include "llvm/CodeGen/MachineInstrBuilder.h"
37 #include "llvm/CodeGen/MachineInstrBundle.h"
38 #include "llvm/CodeGen/MachineMemOperand.h"
39 #include "llvm/CodeGen/MachineOperand.h"
40 #include "llvm/CodeGen/MachineRegisterInfo.h"
41 #include "llvm/CodeGen/RegisterScavenging.h"
42 #include "llvm/CodeGen/ScheduleDAG.h"
43 #include "llvm/CodeGen/SelectionDAGNodes.h"
44 #include "llvm/CodeGen/TargetOpcodes.h"
45 #include "llvm/CodeGen/TargetRegisterInfo.h"
46 #include "llvm/IR/DebugLoc.h"
47 #include "llvm/IR/DiagnosticInfo.h"
48 #include "llvm/IR/Function.h"
49 #include "llvm/IR/InlineAsm.h"
50 #include "llvm/IR/LLVMContext.h"
51 #include "llvm/MC/MCInstrDesc.h"
52 #include "llvm/Support/Casting.h"
53 #include "llvm/Support/CommandLine.h"
54 #include "llvm/Support/Compiler.h"
55 #include "llvm/Support/ErrorHandling.h"
56 #include "llvm/Support/MachineValueType.h"
57 #include "llvm/Support/MathExtras.h"
58 #include "llvm/Target/TargetMachine.h"
66 #define GET_INSTRINFO_CTOR_DTOR
67 #include "AMDGPUGenInstrInfo.inc"
71 #define GET_D16ImageDimIntrinsics_IMPL
72 #define GET_ImageDimIntrinsicTable_IMPL
73 #define GET_RsrcIntrinsics_IMPL
74 #include "AMDGPUGenSearchableTables.inc"
79 // Must be at least 4 to be able to branch over minimum unconditional branch
80 // code. This is only for making it possible to write reasonably small tests for
82 static cl::opt
<unsigned>
83 BranchOffsetBits("amdgpu-s-branch-bits", cl::ReallyHidden
, cl::init(16),
84 cl::desc("Restrict range of branch instructions (DEBUG)"));
86 SIInstrInfo::SIInstrInfo(const GCNSubtarget
&ST
)
87 : AMDGPUGenInstrInfo(AMDGPU::ADJCALLSTACKUP
, AMDGPU::ADJCALLSTACKDOWN
),
90 //===----------------------------------------------------------------------===//
91 // TargetInstrInfo callbacks
92 //===----------------------------------------------------------------------===//
94 static unsigned getNumOperandsNoGlue(SDNode
*Node
) {
95 unsigned N
= Node
->getNumOperands();
96 while (N
&& Node
->getOperand(N
- 1).getValueType() == MVT::Glue
)
101 /// Returns true if both nodes have the same value for the given
102 /// operand \p Op, or if both nodes do not have this operand.
103 static bool nodesHaveSameOperandValue(SDNode
*N0
, SDNode
* N1
, unsigned OpName
) {
104 unsigned Opc0
= N0
->getMachineOpcode();
105 unsigned Opc1
= N1
->getMachineOpcode();
107 int Op0Idx
= AMDGPU::getNamedOperandIdx(Opc0
, OpName
);
108 int Op1Idx
= AMDGPU::getNamedOperandIdx(Opc1
, OpName
);
110 if (Op0Idx
== -1 && Op1Idx
== -1)
114 if ((Op0Idx
== -1 && Op1Idx
!= -1) ||
115 (Op1Idx
== -1 && Op0Idx
!= -1))
118 // getNamedOperandIdx returns the index for the MachineInstr's operands,
119 // which includes the result as the first operand. We are indexing into the
120 // MachineSDNode's operands, so we need to skip the result operand to get
125 return N0
->getOperand(Op0Idx
) == N1
->getOperand(Op1Idx
);
128 bool SIInstrInfo::isReallyTriviallyReMaterializable(const MachineInstr
&MI
,
129 AliasAnalysis
*AA
) const {
130 // TODO: The generic check fails for VALU instructions that should be
131 // rematerializable due to implicit reads of exec. We really want all of the
132 // generic logic for this except for this.
133 switch (MI
.getOpcode()) {
134 case AMDGPU::V_MOV_B32_e32
:
135 case AMDGPU::V_MOV_B32_e64
:
136 case AMDGPU::V_MOV_B64_PSEUDO
:
137 // No implicit operands.
138 return MI
.getNumOperands() == MI
.getDesc().getNumOperands();
144 bool SIInstrInfo::areLoadsFromSameBasePtr(SDNode
*Load0
, SDNode
*Load1
,
146 int64_t &Offset1
) const {
147 if (!Load0
->isMachineOpcode() || !Load1
->isMachineOpcode())
150 unsigned Opc0
= Load0
->getMachineOpcode();
151 unsigned Opc1
= Load1
->getMachineOpcode();
153 // Make sure both are actually loads.
154 if (!get(Opc0
).mayLoad() || !get(Opc1
).mayLoad())
157 if (isDS(Opc0
) && isDS(Opc1
)) {
159 // FIXME: Handle this case:
160 if (getNumOperandsNoGlue(Load0
) != getNumOperandsNoGlue(Load1
))
164 if (Load0
->getOperand(0) != Load1
->getOperand(0))
167 // Skip read2 / write2 variants for simplicity.
168 // TODO: We should report true if the used offsets are adjacent (excluded
170 int Offset0Idx
= AMDGPU::getNamedOperandIdx(Opc0
, AMDGPU::OpName::offset
);
171 int Offset1Idx
= AMDGPU::getNamedOperandIdx(Opc1
, AMDGPU::OpName::offset
);
172 if (Offset0Idx
== -1 || Offset1Idx
== -1)
175 // XXX - be careful of datalesss loads
176 // getNamedOperandIdx returns the index for MachineInstrs. Since they
177 // include the output in the operand list, but SDNodes don't, we need to
178 // subtract the index by one.
179 Offset0Idx
-= get(Opc0
).NumDefs
;
180 Offset1Idx
-= get(Opc1
).NumDefs
;
181 Offset0
= cast
<ConstantSDNode
>(Load0
->getOperand(Offset0Idx
))->getZExtValue();
182 Offset1
= cast
<ConstantSDNode
>(Load1
->getOperand(Offset1Idx
))->getZExtValue();
186 if (isSMRD(Opc0
) && isSMRD(Opc1
)) {
187 // Skip time and cache invalidation instructions.
188 if (AMDGPU::getNamedOperandIdx(Opc0
, AMDGPU::OpName::sbase
) == -1 ||
189 AMDGPU::getNamedOperandIdx(Opc1
, AMDGPU::OpName::sbase
) == -1)
192 assert(getNumOperandsNoGlue(Load0
) == getNumOperandsNoGlue(Load1
));
195 if (Load0
->getOperand(0) != Load1
->getOperand(0))
198 const ConstantSDNode
*Load0Offset
=
199 dyn_cast
<ConstantSDNode
>(Load0
->getOperand(1));
200 const ConstantSDNode
*Load1Offset
=
201 dyn_cast
<ConstantSDNode
>(Load1
->getOperand(1));
203 if (!Load0Offset
|| !Load1Offset
)
206 Offset0
= Load0Offset
->getZExtValue();
207 Offset1
= Load1Offset
->getZExtValue();
211 // MUBUF and MTBUF can access the same addresses.
212 if ((isMUBUF(Opc0
) || isMTBUF(Opc0
)) && (isMUBUF(Opc1
) || isMTBUF(Opc1
))) {
214 // MUBUF and MTBUF have vaddr at different indices.
215 if (!nodesHaveSameOperandValue(Load0
, Load1
, AMDGPU::OpName::soffset
) ||
216 !nodesHaveSameOperandValue(Load0
, Load1
, AMDGPU::OpName::vaddr
) ||
217 !nodesHaveSameOperandValue(Load0
, Load1
, AMDGPU::OpName::srsrc
))
220 int OffIdx0
= AMDGPU::getNamedOperandIdx(Opc0
, AMDGPU::OpName::offset
);
221 int OffIdx1
= AMDGPU::getNamedOperandIdx(Opc1
, AMDGPU::OpName::offset
);
223 if (OffIdx0
== -1 || OffIdx1
== -1)
226 // getNamedOperandIdx returns the index for MachineInstrs. Since they
227 // include the output in the operand list, but SDNodes don't, we need to
228 // subtract the index by one.
229 OffIdx0
-= get(Opc0
).NumDefs
;
230 OffIdx1
-= get(Opc1
).NumDefs
;
232 SDValue Off0
= Load0
->getOperand(OffIdx0
);
233 SDValue Off1
= Load1
->getOperand(OffIdx1
);
235 // The offset might be a FrameIndexSDNode.
236 if (!isa
<ConstantSDNode
>(Off0
) || !isa
<ConstantSDNode
>(Off1
))
239 Offset0
= cast
<ConstantSDNode
>(Off0
)->getZExtValue();
240 Offset1
= cast
<ConstantSDNode
>(Off1
)->getZExtValue();
247 static bool isStride64(unsigned Opc
) {
249 case AMDGPU::DS_READ2ST64_B32
:
250 case AMDGPU::DS_READ2ST64_B64
:
251 case AMDGPU::DS_WRITE2ST64_B32
:
252 case AMDGPU::DS_WRITE2ST64_B64
:
259 bool SIInstrInfo::getMemOperandWithOffset(const MachineInstr
&LdSt
,
260 const MachineOperand
*&BaseOp
,
262 const TargetRegisterInfo
*TRI
) const {
263 unsigned Opc
= LdSt
.getOpcode();
266 const MachineOperand
*OffsetImm
=
267 getNamedOperand(LdSt
, AMDGPU::OpName::offset
);
269 // Normal, single offset LDS instruction.
270 BaseOp
= getNamedOperand(LdSt
, AMDGPU::OpName::addr
);
271 // TODO: ds_consume/ds_append use M0 for the base address. Is it safe to
276 Offset
= OffsetImm
->getImm();
277 assert(BaseOp
->isReg() && "getMemOperandWithOffset only supports base "
278 "operands of type register.");
282 // The 2 offset instructions use offset0 and offset1 instead. We can treat
283 // these as a load with a single offset if the 2 offsets are consecutive. We
284 // will use this for some partially aligned loads.
285 const MachineOperand
*Offset0Imm
=
286 getNamedOperand(LdSt
, AMDGPU::OpName::offset0
);
287 const MachineOperand
*Offset1Imm
=
288 getNamedOperand(LdSt
, AMDGPU::OpName::offset1
);
290 uint8_t Offset0
= Offset0Imm
->getImm();
291 uint8_t Offset1
= Offset1Imm
->getImm();
293 if (Offset1
> Offset0
&& Offset1
- Offset0
== 1) {
294 // Each of these offsets is in element sized units, so we need to convert
295 // to bytes of the individual reads.
299 EltSize
= TRI
->getRegSizeInBits(*getOpRegClass(LdSt
, 0)) / 16;
301 assert(LdSt
.mayStore());
302 int Data0Idx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::data0
);
303 EltSize
= TRI
->getRegSizeInBits(*getOpRegClass(LdSt
, Data0Idx
)) / 8;
309 BaseOp
= getNamedOperand(LdSt
, AMDGPU::OpName::addr
);
310 Offset
= EltSize
* Offset0
;
311 assert(BaseOp
->isReg() && "getMemOperandWithOffset only supports base "
312 "operands of type register.");
319 if (isMUBUF(LdSt
) || isMTBUF(LdSt
)) {
320 const MachineOperand
*SOffset
= getNamedOperand(LdSt
, AMDGPU::OpName::soffset
);
321 if (SOffset
&& SOffset
->isReg()) {
322 // We can only handle this if it's a stack access, as any other resource
323 // would require reporting multiple base registers.
324 const MachineOperand
*AddrReg
= getNamedOperand(LdSt
, AMDGPU::OpName::vaddr
);
325 if (AddrReg
&& !AddrReg
->isFI())
328 const MachineOperand
*RSrc
= getNamedOperand(LdSt
, AMDGPU::OpName::srsrc
);
329 const SIMachineFunctionInfo
*MFI
330 = LdSt
.getParent()->getParent()->getInfo
<SIMachineFunctionInfo
>();
331 if (RSrc
->getReg() != MFI
->getScratchRSrcReg())
334 const MachineOperand
*OffsetImm
=
335 getNamedOperand(LdSt
, AMDGPU::OpName::offset
);
337 Offset
= OffsetImm
->getImm();
341 const MachineOperand
*AddrReg
= getNamedOperand(LdSt
, AMDGPU::OpName::vaddr
);
345 const MachineOperand
*OffsetImm
=
346 getNamedOperand(LdSt
, AMDGPU::OpName::offset
);
348 Offset
= OffsetImm
->getImm();
350 if (SOffset
) // soffset can be an inline immediate.
351 Offset
+= SOffset
->getImm();
353 assert(BaseOp
->isReg() && "getMemOperandWithOffset only supports base "
354 "operands of type register.");
359 const MachineOperand
*OffsetImm
=
360 getNamedOperand(LdSt
, AMDGPU::OpName::offset
);
364 const MachineOperand
*SBaseReg
= getNamedOperand(LdSt
, AMDGPU::OpName::sbase
);
366 Offset
= OffsetImm
->getImm();
367 assert(BaseOp
->isReg() && "getMemOperandWithOffset only supports base "
368 "operands of type register.");
373 const MachineOperand
*VAddr
= getNamedOperand(LdSt
, AMDGPU::OpName::vaddr
);
375 // Can't analyze 2 offsets.
376 if (getNamedOperand(LdSt
, AMDGPU::OpName::saddr
))
381 // scratch instructions have either vaddr or saddr.
382 BaseOp
= getNamedOperand(LdSt
, AMDGPU::OpName::saddr
);
385 Offset
= getNamedOperand(LdSt
, AMDGPU::OpName::offset
)->getImm();
386 assert(BaseOp
->isReg() && "getMemOperandWithOffset only supports base "
387 "operands of type register.");
394 static bool memOpsHaveSameBasePtr(const MachineInstr
&MI1
,
395 const MachineOperand
&BaseOp1
,
396 const MachineInstr
&MI2
,
397 const MachineOperand
&BaseOp2
) {
398 // Support only base operands with base registers.
399 // Note: this could be extended to support FI operands.
400 if (!BaseOp1
.isReg() || !BaseOp2
.isReg())
403 if (BaseOp1
.isIdenticalTo(BaseOp2
))
406 if (!MI1
.hasOneMemOperand() || !MI2
.hasOneMemOperand())
409 auto MO1
= *MI1
.memoperands_begin();
410 auto MO2
= *MI2
.memoperands_begin();
411 if (MO1
->getAddrSpace() != MO2
->getAddrSpace())
414 auto Base1
= MO1
->getValue();
415 auto Base2
= MO2
->getValue();
416 if (!Base1
|| !Base2
)
418 const MachineFunction
&MF
= *MI1
.getParent()->getParent();
419 const DataLayout
&DL
= MF
.getFunction().getParent()->getDataLayout();
420 Base1
= GetUnderlyingObject(Base1
, DL
);
421 Base2
= GetUnderlyingObject(Base1
, DL
);
423 if (isa
<UndefValue
>(Base1
) || isa
<UndefValue
>(Base2
))
426 return Base1
== Base2
;
429 bool SIInstrInfo::shouldClusterMemOps(const MachineOperand
&BaseOp1
,
430 const MachineOperand
&BaseOp2
,
431 unsigned NumLoads
) const {
432 const MachineInstr
&FirstLdSt
= *BaseOp1
.getParent();
433 const MachineInstr
&SecondLdSt
= *BaseOp2
.getParent();
435 if (!memOpsHaveSameBasePtr(FirstLdSt
, BaseOp1
, SecondLdSt
, BaseOp2
))
438 const MachineOperand
*FirstDst
= nullptr;
439 const MachineOperand
*SecondDst
= nullptr;
441 if ((isMUBUF(FirstLdSt
) && isMUBUF(SecondLdSt
)) ||
442 (isMTBUF(FirstLdSt
) && isMTBUF(SecondLdSt
)) ||
443 (isFLAT(FirstLdSt
) && isFLAT(SecondLdSt
))) {
444 const unsigned MaxGlobalLoadCluster
= 6;
445 if (NumLoads
> MaxGlobalLoadCluster
)
448 FirstDst
= getNamedOperand(FirstLdSt
, AMDGPU::OpName::vdata
);
450 FirstDst
= getNamedOperand(FirstLdSt
, AMDGPU::OpName::vdst
);
451 SecondDst
= getNamedOperand(SecondLdSt
, AMDGPU::OpName::vdata
);
453 SecondDst
= getNamedOperand(SecondLdSt
, AMDGPU::OpName::vdst
);
454 } else if (isSMRD(FirstLdSt
) && isSMRD(SecondLdSt
)) {
455 FirstDst
= getNamedOperand(FirstLdSt
, AMDGPU::OpName::sdst
);
456 SecondDst
= getNamedOperand(SecondLdSt
, AMDGPU::OpName::sdst
);
457 } else if (isDS(FirstLdSt
) && isDS(SecondLdSt
)) {
458 FirstDst
= getNamedOperand(FirstLdSt
, AMDGPU::OpName::vdst
);
459 SecondDst
= getNamedOperand(SecondLdSt
, AMDGPU::OpName::vdst
);
462 if (!FirstDst
|| !SecondDst
)
465 // Try to limit clustering based on the total number of bytes loaded
466 // rather than the number of instructions. This is done to help reduce
467 // register pressure. The method used is somewhat inexact, though,
468 // because it assumes that all loads in the cluster will load the
469 // same number of bytes as FirstLdSt.
471 // The unit of this value is bytes.
472 // FIXME: This needs finer tuning.
473 unsigned LoadClusterThreshold
= 16;
475 const MachineRegisterInfo
&MRI
=
476 FirstLdSt
.getParent()->getParent()->getRegInfo();
478 const Register Reg
= FirstDst
->getReg();
480 const TargetRegisterClass
*DstRC
= Register::isVirtualRegister(Reg
)
481 ? MRI
.getRegClass(Reg
)
482 : RI
.getPhysRegClass(Reg
);
484 return (NumLoads
* (RI
.getRegSizeInBits(*DstRC
) / 8)) <= LoadClusterThreshold
;
487 // FIXME: This behaves strangely. If, for example, you have 32 load + stores,
488 // the first 16 loads will be interleaved with the stores, and the next 16 will
489 // be clustered as expected. It should really split into 2 16 store batches.
491 // Loads are clustered until this returns false, rather than trying to schedule
492 // groups of stores. This also means we have to deal with saying different
493 // address space loads should be clustered, and ones which might cause bank
496 // This might be deprecated so it might not be worth that much effort to fix.
497 bool SIInstrInfo::shouldScheduleLoadsNear(SDNode
*Load0
, SDNode
*Load1
,
498 int64_t Offset0
, int64_t Offset1
,
499 unsigned NumLoads
) const {
500 assert(Offset1
> Offset0
&&
501 "Second offset should be larger than first offset!");
502 // If we have less than 16 loads in a row, and the offsets are within 64
503 // bytes, then schedule together.
505 // A cacheline is 64 bytes (for global memory).
506 return (NumLoads
<= 16 && (Offset1
- Offset0
) < 64);
509 static void reportIllegalCopy(const SIInstrInfo
*TII
, MachineBasicBlock
&MBB
,
510 MachineBasicBlock::iterator MI
,
511 const DebugLoc
&DL
, unsigned DestReg
,
512 unsigned SrcReg
, bool KillSrc
) {
513 MachineFunction
*MF
= MBB
.getParent();
514 DiagnosticInfoUnsupported
IllegalCopy(MF
->getFunction(),
515 "illegal SGPR to VGPR copy",
517 LLVMContext
&C
= MF
->getFunction().getContext();
518 C
.diagnose(IllegalCopy
);
520 BuildMI(MBB
, MI
, DL
, TII
->get(AMDGPU::SI_ILLEGAL_COPY
), DestReg
)
521 .addReg(SrcReg
, getKillRegState(KillSrc
));
524 void SIInstrInfo::copyPhysReg(MachineBasicBlock
&MBB
,
525 MachineBasicBlock::iterator MI
,
526 const DebugLoc
&DL
, unsigned DestReg
,
527 unsigned SrcReg
, bool KillSrc
) const {
528 const TargetRegisterClass
*RC
= RI
.getPhysRegClass(DestReg
);
530 if (RC
== &AMDGPU::VGPR_32RegClass
) {
531 assert(AMDGPU::VGPR_32RegClass
.contains(SrcReg
) ||
532 AMDGPU::SReg_32RegClass
.contains(SrcReg
) ||
533 AMDGPU::AGPR_32RegClass
.contains(SrcReg
));
534 unsigned Opc
= AMDGPU::AGPR_32RegClass
.contains(SrcReg
) ?
535 AMDGPU::V_ACCVGPR_READ_B32
: AMDGPU::V_MOV_B32_e32
;
536 BuildMI(MBB
, MI
, DL
, get(Opc
), DestReg
)
537 .addReg(SrcReg
, getKillRegState(KillSrc
));
541 if (RC
== &AMDGPU::SReg_32_XM0RegClass
||
542 RC
== &AMDGPU::SReg_32RegClass
) {
543 if (SrcReg
== AMDGPU::SCC
) {
544 BuildMI(MBB
, MI
, DL
, get(AMDGPU::S_CSELECT_B32
), DestReg
)
550 if (DestReg
== AMDGPU::VCC_LO
) {
551 if (AMDGPU::SReg_32RegClass
.contains(SrcReg
)) {
552 BuildMI(MBB
, MI
, DL
, get(AMDGPU::S_MOV_B32
), AMDGPU::VCC_LO
)
553 .addReg(SrcReg
, getKillRegState(KillSrc
));
555 // FIXME: Hack until VReg_1 removed.
556 assert(AMDGPU::VGPR_32RegClass
.contains(SrcReg
));
557 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_CMP_NE_U32_e32
))
559 .addReg(SrcReg
, getKillRegState(KillSrc
));
565 if (!AMDGPU::SReg_32RegClass
.contains(SrcReg
)) {
566 reportIllegalCopy(this, MBB
, MI
, DL
, DestReg
, SrcReg
, KillSrc
);
570 BuildMI(MBB
, MI
, DL
, get(AMDGPU::S_MOV_B32
), DestReg
)
571 .addReg(SrcReg
, getKillRegState(KillSrc
));
575 if (RC
== &AMDGPU::SReg_64RegClass
) {
576 if (DestReg
== AMDGPU::VCC
) {
577 if (AMDGPU::SReg_64RegClass
.contains(SrcReg
)) {
578 BuildMI(MBB
, MI
, DL
, get(AMDGPU::S_MOV_B64
), AMDGPU::VCC
)
579 .addReg(SrcReg
, getKillRegState(KillSrc
));
581 // FIXME: Hack until VReg_1 removed.
582 assert(AMDGPU::VGPR_32RegClass
.contains(SrcReg
));
583 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_CMP_NE_U32_e32
))
585 .addReg(SrcReg
, getKillRegState(KillSrc
));
591 if (!AMDGPU::SReg_64RegClass
.contains(SrcReg
)) {
592 reportIllegalCopy(this, MBB
, MI
, DL
, DestReg
, SrcReg
, KillSrc
);
596 BuildMI(MBB
, MI
, DL
, get(AMDGPU::S_MOV_B64
), DestReg
)
597 .addReg(SrcReg
, getKillRegState(KillSrc
));
601 if (DestReg
== AMDGPU::SCC
) {
602 assert(AMDGPU::SReg_32RegClass
.contains(SrcReg
));
603 BuildMI(MBB
, MI
, DL
, get(AMDGPU::S_CMP_LG_U32
))
604 .addReg(SrcReg
, getKillRegState(KillSrc
))
609 if (RC
== &AMDGPU::AGPR_32RegClass
) {
610 assert(AMDGPU::VGPR_32RegClass
.contains(SrcReg
) ||
611 AMDGPU::SReg_32RegClass
.contains(SrcReg
) ||
612 AMDGPU::AGPR_32RegClass
.contains(SrcReg
));
613 if (!AMDGPU::VGPR_32RegClass
.contains(SrcReg
)) {
614 // First try to find defining accvgpr_write to avoid temporary registers.
615 for (auto Def
= MI
, E
= MBB
.begin(); Def
!= E
; ) {
617 if (!Def
->definesRegister(SrcReg
, &RI
))
619 if (Def
->getOpcode() != AMDGPU::V_ACCVGPR_WRITE_B32
)
622 MachineOperand
&DefOp
= Def
->getOperand(1);
623 assert(DefOp
.isReg() || DefOp
.isImm());
626 // Check that register source operand if not clobbered before MI.
627 // Immediate operands are always safe to propagate.
628 bool SafeToPropagate
= true;
629 for (auto I
= Def
; I
!= MI
&& SafeToPropagate
; ++I
)
630 if (I
->modifiesRegister(DefOp
.getReg(), &RI
))
631 SafeToPropagate
= false;
633 if (!SafeToPropagate
)
636 DefOp
.setIsKill(false);
639 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_ACCVGPR_WRITE_B32
), DestReg
)
645 RS
.enterBasicBlock(MBB
);
648 // Ideally we want to have three registers for a long reg_sequence copy
649 // to hide 2 waitstates between v_mov_b32 and accvgpr_write.
650 unsigned MaxVGPRs
= RI
.getRegPressureLimit(&AMDGPU::VGPR_32RegClass
,
653 // Registers in the sequence are allocated contiguously so we can just
654 // use register number to pick one of three round-robin temps.
655 unsigned RegNo
= DestReg
% 3;
656 unsigned Tmp
= RS
.scavengeRegister(&AMDGPU::VGPR_32RegClass
, 0);
658 report_fatal_error("Cannot scavenge VGPR to copy to AGPR");
660 // Only loop through if there are any free registers left, otherwise
661 // scavenger may report a fatal error without emergency spill slot
662 // or spill with the slot.
663 while (RegNo
-- && RS
.FindUnusedReg(&AMDGPU::VGPR_32RegClass
)) {
664 unsigned Tmp2
= RS
.scavengeRegister(&AMDGPU::VGPR_32RegClass
, 0);
665 if (!Tmp2
|| RI
.getHWRegIndex(Tmp2
) >= MaxVGPRs
)
670 copyPhysReg(MBB
, MI
, DL
, Tmp
, SrcReg
, KillSrc
);
671 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_ACCVGPR_WRITE_B32
), DestReg
)
672 .addReg(Tmp
, RegState::Kill
);
676 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_ACCVGPR_WRITE_B32
), DestReg
)
677 .addReg(SrcReg
, getKillRegState(KillSrc
));
681 unsigned EltSize
= 4;
682 unsigned Opcode
= AMDGPU::V_MOV_B32_e32
;
683 if (RI
.isSGPRClass(RC
)) {
684 // TODO: Copy vec3/vec5 with s_mov_b64s then final s_mov_b32.
685 if (!(RI
.getRegSizeInBits(*RC
) % 64)) {
686 Opcode
= AMDGPU::S_MOV_B64
;
689 Opcode
= AMDGPU::S_MOV_B32
;
693 if (!RI
.isSGPRClass(RI
.getPhysRegClass(SrcReg
))) {
694 reportIllegalCopy(this, MBB
, MI
, DL
, DestReg
, SrcReg
, KillSrc
);
697 } else if (RI
.hasAGPRs(RC
)) {
698 Opcode
= RI
.hasVGPRs(RI
.getPhysRegClass(SrcReg
)) ?
699 AMDGPU::V_ACCVGPR_WRITE_B32
: AMDGPU::COPY
;
700 } else if (RI
.hasVGPRs(RC
) && RI
.hasAGPRs(RI
.getPhysRegClass(SrcReg
))) {
701 Opcode
= AMDGPU::V_ACCVGPR_READ_B32
;
704 ArrayRef
<int16_t> SubIndices
= RI
.getRegSplitParts(RC
, EltSize
);
705 bool Forward
= RI
.getHWRegIndex(DestReg
) <= RI
.getHWRegIndex(SrcReg
);
707 for (unsigned Idx
= 0; Idx
< SubIndices
.size(); ++Idx
) {
710 SubIdx
= SubIndices
[Idx
];
712 SubIdx
= SubIndices
[SubIndices
.size() - Idx
- 1];
714 if (Opcode
== TargetOpcode::COPY
) {
715 copyPhysReg(MBB
, MI
, DL
, RI
.getSubReg(DestReg
, SubIdx
),
716 RI
.getSubReg(SrcReg
, SubIdx
), KillSrc
);
720 MachineInstrBuilder Builder
= BuildMI(MBB
, MI
, DL
,
721 get(Opcode
), RI
.getSubReg(DestReg
, SubIdx
));
723 Builder
.addReg(RI
.getSubReg(SrcReg
, SubIdx
));
726 Builder
.addReg(DestReg
, RegState::Define
| RegState::Implicit
);
728 bool UseKill
= KillSrc
&& Idx
== SubIndices
.size() - 1;
729 Builder
.addReg(SrcReg
, getKillRegState(UseKill
) | RegState::Implicit
);
733 int SIInstrInfo::commuteOpcode(unsigned Opcode
) const {
736 // Try to map original to commuted opcode
737 NewOpc
= AMDGPU::getCommuteRev(Opcode
);
739 // Check if the commuted (REV) opcode exists on the target.
740 return pseudoToMCOpcode(NewOpc
) != -1 ? NewOpc
: -1;
742 // Try to map commuted to original opcode
743 NewOpc
= AMDGPU::getCommuteOrig(Opcode
);
745 // Check if the original (non-REV) opcode exists on the target.
746 return pseudoToMCOpcode(NewOpc
) != -1 ? NewOpc
: -1;
751 void SIInstrInfo::materializeImmediate(MachineBasicBlock
&MBB
,
752 MachineBasicBlock::iterator MI
,
753 const DebugLoc
&DL
, unsigned DestReg
,
754 int64_t Value
) const {
755 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
756 const TargetRegisterClass
*RegClass
= MRI
.getRegClass(DestReg
);
757 if (RegClass
== &AMDGPU::SReg_32RegClass
||
758 RegClass
== &AMDGPU::SGPR_32RegClass
||
759 RegClass
== &AMDGPU::SReg_32_XM0RegClass
||
760 RegClass
== &AMDGPU::SReg_32_XM0_XEXECRegClass
) {
761 BuildMI(MBB
, MI
, DL
, get(AMDGPU::S_MOV_B32
), DestReg
)
766 if (RegClass
== &AMDGPU::SReg_64RegClass
||
767 RegClass
== &AMDGPU::SGPR_64RegClass
||
768 RegClass
== &AMDGPU::SReg_64_XEXECRegClass
) {
769 BuildMI(MBB
, MI
, DL
, get(AMDGPU::S_MOV_B64
), DestReg
)
774 if (RegClass
== &AMDGPU::VGPR_32RegClass
) {
775 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_MOV_B32_e32
), DestReg
)
779 if (RegClass
== &AMDGPU::VReg_64RegClass
) {
780 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_MOV_B64_PSEUDO
), DestReg
)
785 unsigned EltSize
= 4;
786 unsigned Opcode
= AMDGPU::V_MOV_B32_e32
;
787 if (RI
.isSGPRClass(RegClass
)) {
788 if (RI
.getRegSizeInBits(*RegClass
) > 32) {
789 Opcode
= AMDGPU::S_MOV_B64
;
792 Opcode
= AMDGPU::S_MOV_B32
;
797 ArrayRef
<int16_t> SubIndices
= RI
.getRegSplitParts(RegClass
, EltSize
);
798 for (unsigned Idx
= 0; Idx
< SubIndices
.size(); ++Idx
) {
799 int64_t IdxValue
= Idx
== 0 ? Value
: 0;
801 MachineInstrBuilder Builder
= BuildMI(MBB
, MI
, DL
,
802 get(Opcode
), RI
.getSubReg(DestReg
, Idx
));
803 Builder
.addImm(IdxValue
);
807 const TargetRegisterClass
*
808 SIInstrInfo::getPreferredSelectRegClass(unsigned Size
) const {
809 return &AMDGPU::VGPR_32RegClass
;
812 void SIInstrInfo::insertVectorSelect(MachineBasicBlock
&MBB
,
813 MachineBasicBlock::iterator I
,
814 const DebugLoc
&DL
, unsigned DstReg
,
815 ArrayRef
<MachineOperand
> Cond
,
817 unsigned FalseReg
) const {
818 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
819 MachineFunction
*MF
= MBB
.getParent();
820 const GCNSubtarget
&ST
= MF
->getSubtarget
<GCNSubtarget
>();
821 const TargetRegisterClass
*BoolXExecRC
=
822 RI
.getRegClass(AMDGPU::SReg_1_XEXECRegClassID
);
823 assert(MRI
.getRegClass(DstReg
) == &AMDGPU::VGPR_32RegClass
&&
826 if (Cond
.size() == 1) {
827 Register SReg
= MRI
.createVirtualRegister(BoolXExecRC
);
828 BuildMI(MBB
, I
, DL
, get(AMDGPU::COPY
), SReg
)
830 BuildMI(MBB
, I
, DL
, get(AMDGPU::V_CNDMASK_B32_e64
), DstReg
)
836 } else if (Cond
.size() == 2) {
837 assert(Cond
[0].isImm() && "Cond[0] is not an immediate");
838 switch (Cond
[0].getImm()) {
839 case SIInstrInfo::SCC_TRUE
: {
840 Register SReg
= MRI
.createVirtualRegister(BoolXExecRC
);
841 BuildMI(MBB
, I
, DL
, get(ST
.isWave32() ? AMDGPU::S_CSELECT_B32
842 : AMDGPU::S_CSELECT_B64
), SReg
)
845 BuildMI(MBB
, I
, DL
, get(AMDGPU::V_CNDMASK_B32_e64
), DstReg
)
853 case SIInstrInfo::SCC_FALSE
: {
854 Register SReg
= MRI
.createVirtualRegister(BoolXExecRC
);
855 BuildMI(MBB
, I
, DL
, get(ST
.isWave32() ? AMDGPU::S_CSELECT_B32
856 : AMDGPU::S_CSELECT_B64
), SReg
)
859 BuildMI(MBB
, I
, DL
, get(AMDGPU::V_CNDMASK_B32_e64
), DstReg
)
867 case SIInstrInfo::VCCNZ
: {
868 MachineOperand RegOp
= Cond
[1];
869 RegOp
.setImplicit(false);
870 Register SReg
= MRI
.createVirtualRegister(BoolXExecRC
);
871 BuildMI(MBB
, I
, DL
, get(AMDGPU::COPY
), SReg
)
873 BuildMI(MBB
, I
, DL
, get(AMDGPU::V_CNDMASK_B32_e64
), DstReg
)
881 case SIInstrInfo::VCCZ
: {
882 MachineOperand RegOp
= Cond
[1];
883 RegOp
.setImplicit(false);
884 Register SReg
= MRI
.createVirtualRegister(BoolXExecRC
);
885 BuildMI(MBB
, I
, DL
, get(AMDGPU::COPY
), SReg
)
887 BuildMI(MBB
, I
, DL
, get(AMDGPU::V_CNDMASK_B32_e64
), DstReg
)
895 case SIInstrInfo::EXECNZ
: {
896 Register SReg
= MRI
.createVirtualRegister(BoolXExecRC
);
897 Register SReg2
= MRI
.createVirtualRegister(RI
.getBoolRC());
898 BuildMI(MBB
, I
, DL
, get(ST
.isWave32() ? AMDGPU::S_OR_SAVEEXEC_B32
899 : AMDGPU::S_OR_SAVEEXEC_B64
), SReg2
)
901 BuildMI(MBB
, I
, DL
, get(ST
.isWave32() ? AMDGPU::S_CSELECT_B32
902 : AMDGPU::S_CSELECT_B64
), SReg
)
905 BuildMI(MBB
, I
, DL
, get(AMDGPU::V_CNDMASK_B32_e64
), DstReg
)
913 case SIInstrInfo::EXECZ
: {
914 Register SReg
= MRI
.createVirtualRegister(BoolXExecRC
);
915 Register SReg2
= MRI
.createVirtualRegister(RI
.getBoolRC());
916 BuildMI(MBB
, I
, DL
, get(ST
.isWave32() ? AMDGPU::S_OR_SAVEEXEC_B32
917 : AMDGPU::S_OR_SAVEEXEC_B64
), SReg2
)
919 BuildMI(MBB
, I
, DL
, get(ST
.isWave32() ? AMDGPU::S_CSELECT_B32
920 : AMDGPU::S_CSELECT_B64
), SReg
)
923 BuildMI(MBB
, I
, DL
, get(AMDGPU::V_CNDMASK_B32_e64
), DstReg
)
929 llvm_unreachable("Unhandled branch predicate EXECZ");
933 llvm_unreachable("invalid branch predicate");
936 llvm_unreachable("Can only handle Cond size 1 or 2");
940 unsigned SIInstrInfo::insertEQ(MachineBasicBlock
*MBB
,
941 MachineBasicBlock::iterator I
,
943 unsigned SrcReg
, int Value
) const {
944 MachineRegisterInfo
&MRI
= MBB
->getParent()->getRegInfo();
945 Register Reg
= MRI
.createVirtualRegister(RI
.getBoolRC());
946 BuildMI(*MBB
, I
, DL
, get(AMDGPU::V_CMP_EQ_I32_e64
), Reg
)
953 unsigned SIInstrInfo::insertNE(MachineBasicBlock
*MBB
,
954 MachineBasicBlock::iterator I
,
956 unsigned SrcReg
, int Value
) const {
957 MachineRegisterInfo
&MRI
= MBB
->getParent()->getRegInfo();
958 Register Reg
= MRI
.createVirtualRegister(RI
.getBoolRC());
959 BuildMI(*MBB
, I
, DL
, get(AMDGPU::V_CMP_NE_I32_e64
), Reg
)
966 unsigned SIInstrInfo::getMovOpcode(const TargetRegisterClass
*DstRC
) const {
968 if (RI
.hasAGPRs(DstRC
))
970 if (RI
.getRegSizeInBits(*DstRC
) == 32) {
971 return RI
.isSGPRClass(DstRC
) ? AMDGPU::S_MOV_B32
: AMDGPU::V_MOV_B32_e32
;
972 } else if (RI
.getRegSizeInBits(*DstRC
) == 64 && RI
.isSGPRClass(DstRC
)) {
973 return AMDGPU::S_MOV_B64
;
974 } else if (RI
.getRegSizeInBits(*DstRC
) == 64 && !RI
.isSGPRClass(DstRC
)) {
975 return AMDGPU::V_MOV_B64_PSEUDO
;
980 static unsigned getSGPRSpillSaveOpcode(unsigned Size
) {
983 return AMDGPU::SI_SPILL_S32_SAVE
;
985 return AMDGPU::SI_SPILL_S64_SAVE
;
987 return AMDGPU::SI_SPILL_S96_SAVE
;
989 return AMDGPU::SI_SPILL_S128_SAVE
;
991 return AMDGPU::SI_SPILL_S160_SAVE
;
993 return AMDGPU::SI_SPILL_S256_SAVE
;
995 return AMDGPU::SI_SPILL_S512_SAVE
;
997 return AMDGPU::SI_SPILL_S1024_SAVE
;
999 llvm_unreachable("unknown register size");
1003 static unsigned getVGPRSpillSaveOpcode(unsigned Size
) {
1006 return AMDGPU::SI_SPILL_V32_SAVE
;
1008 return AMDGPU::SI_SPILL_V64_SAVE
;
1010 return AMDGPU::SI_SPILL_V96_SAVE
;
1012 return AMDGPU::SI_SPILL_V128_SAVE
;
1014 return AMDGPU::SI_SPILL_V160_SAVE
;
1016 return AMDGPU::SI_SPILL_V256_SAVE
;
1018 return AMDGPU::SI_SPILL_V512_SAVE
;
1020 return AMDGPU::SI_SPILL_V1024_SAVE
;
1022 llvm_unreachable("unknown register size");
1026 static unsigned getAGPRSpillSaveOpcode(unsigned Size
) {
1029 return AMDGPU::SI_SPILL_A32_SAVE
;
1031 return AMDGPU::SI_SPILL_A64_SAVE
;
1033 return AMDGPU::SI_SPILL_A128_SAVE
;
1035 return AMDGPU::SI_SPILL_A512_SAVE
;
1037 return AMDGPU::SI_SPILL_A1024_SAVE
;
1039 llvm_unreachable("unknown register size");
1043 void SIInstrInfo::storeRegToStackSlot(MachineBasicBlock
&MBB
,
1044 MachineBasicBlock::iterator MI
,
1045 unsigned SrcReg
, bool isKill
,
1047 const TargetRegisterClass
*RC
,
1048 const TargetRegisterInfo
*TRI
) const {
1049 MachineFunction
*MF
= MBB
.getParent();
1050 SIMachineFunctionInfo
*MFI
= MF
->getInfo
<SIMachineFunctionInfo
>();
1051 MachineFrameInfo
&FrameInfo
= MF
->getFrameInfo();
1052 const DebugLoc
&DL
= MBB
.findDebugLoc(MI
);
1054 unsigned Size
= FrameInfo
.getObjectSize(FrameIndex
);
1055 unsigned Align
= FrameInfo
.getObjectAlignment(FrameIndex
);
1056 MachinePointerInfo PtrInfo
1057 = MachinePointerInfo::getFixedStack(*MF
, FrameIndex
);
1058 MachineMemOperand
*MMO
1059 = MF
->getMachineMemOperand(PtrInfo
, MachineMemOperand::MOStore
,
1061 unsigned SpillSize
= TRI
->getSpillSize(*RC
);
1063 if (RI
.isSGPRClass(RC
)) {
1064 MFI
->setHasSpilledSGPRs();
1066 // We are only allowed to create one new instruction when spilling
1067 // registers, so we need to use pseudo instruction for spilling SGPRs.
1068 const MCInstrDesc
&OpDesc
= get(getSGPRSpillSaveOpcode(SpillSize
));
1070 // The SGPR spill/restore instructions only work on number sgprs, so we need
1071 // to make sure we are using the correct register class.
1072 if (Register::isVirtualRegister(SrcReg
) && SpillSize
== 4) {
1073 MachineRegisterInfo
&MRI
= MF
->getRegInfo();
1074 MRI
.constrainRegClass(SrcReg
, &AMDGPU::SReg_32_XM0RegClass
);
1077 BuildMI(MBB
, MI
, DL
, OpDesc
)
1078 .addReg(SrcReg
, getKillRegState(isKill
)) // data
1079 .addFrameIndex(FrameIndex
) // addr
1081 .addReg(MFI
->getScratchRSrcReg(), RegState::Implicit
)
1082 .addReg(MFI
->getStackPtrOffsetReg(), RegState::Implicit
);
1083 // Add the scratch resource registers as implicit uses because we may end up
1084 // needing them, and need to ensure that the reserved registers are
1085 // correctly handled.
1086 if (RI
.spillSGPRToVGPR())
1087 FrameInfo
.setStackID(FrameIndex
, TargetStackID::SGPRSpill
);
1091 unsigned Opcode
= RI
.hasAGPRs(RC
) ? getAGPRSpillSaveOpcode(SpillSize
)
1092 : getVGPRSpillSaveOpcode(SpillSize
);
1093 MFI
->setHasSpilledVGPRs();
1095 auto MIB
= BuildMI(MBB
, MI
, DL
, get(Opcode
));
1096 if (RI
.hasAGPRs(RC
)) {
1097 MachineRegisterInfo
&MRI
= MF
->getRegInfo();
1098 Register Tmp
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
1099 MIB
.addReg(Tmp
, RegState::Define
);
1101 MIB
.addReg(SrcReg
, getKillRegState(isKill
)) // data
1102 .addFrameIndex(FrameIndex
) // addr
1103 .addReg(MFI
->getScratchRSrcReg()) // scratch_rsrc
1104 .addReg(MFI
->getStackPtrOffsetReg()) // scratch_offset
1105 .addImm(0) // offset
1106 .addMemOperand(MMO
);
1109 static unsigned getSGPRSpillRestoreOpcode(unsigned Size
) {
1112 return AMDGPU::SI_SPILL_S32_RESTORE
;
1114 return AMDGPU::SI_SPILL_S64_RESTORE
;
1116 return AMDGPU::SI_SPILL_S96_RESTORE
;
1118 return AMDGPU::SI_SPILL_S128_RESTORE
;
1120 return AMDGPU::SI_SPILL_S160_RESTORE
;
1122 return AMDGPU::SI_SPILL_S256_RESTORE
;
1124 return AMDGPU::SI_SPILL_S512_RESTORE
;
1126 return AMDGPU::SI_SPILL_S1024_RESTORE
;
1128 llvm_unreachable("unknown register size");
1132 static unsigned getVGPRSpillRestoreOpcode(unsigned Size
) {
1135 return AMDGPU::SI_SPILL_V32_RESTORE
;
1137 return AMDGPU::SI_SPILL_V64_RESTORE
;
1139 return AMDGPU::SI_SPILL_V96_RESTORE
;
1141 return AMDGPU::SI_SPILL_V128_RESTORE
;
1143 return AMDGPU::SI_SPILL_V160_RESTORE
;
1145 return AMDGPU::SI_SPILL_V256_RESTORE
;
1147 return AMDGPU::SI_SPILL_V512_RESTORE
;
1149 return AMDGPU::SI_SPILL_V1024_RESTORE
;
1151 llvm_unreachable("unknown register size");
1155 static unsigned getAGPRSpillRestoreOpcode(unsigned Size
) {
1158 return AMDGPU::SI_SPILL_A32_RESTORE
;
1160 return AMDGPU::SI_SPILL_A64_RESTORE
;
1162 return AMDGPU::SI_SPILL_A128_RESTORE
;
1164 return AMDGPU::SI_SPILL_A512_RESTORE
;
1166 return AMDGPU::SI_SPILL_A1024_RESTORE
;
1168 llvm_unreachable("unknown register size");
1172 void SIInstrInfo::loadRegFromStackSlot(MachineBasicBlock
&MBB
,
1173 MachineBasicBlock::iterator MI
,
1174 unsigned DestReg
, int FrameIndex
,
1175 const TargetRegisterClass
*RC
,
1176 const TargetRegisterInfo
*TRI
) const {
1177 MachineFunction
*MF
= MBB
.getParent();
1178 SIMachineFunctionInfo
*MFI
= MF
->getInfo
<SIMachineFunctionInfo
>();
1179 MachineFrameInfo
&FrameInfo
= MF
->getFrameInfo();
1180 const DebugLoc
&DL
= MBB
.findDebugLoc(MI
);
1181 unsigned Align
= FrameInfo
.getObjectAlignment(FrameIndex
);
1182 unsigned Size
= FrameInfo
.getObjectSize(FrameIndex
);
1183 unsigned SpillSize
= TRI
->getSpillSize(*RC
);
1185 MachinePointerInfo PtrInfo
1186 = MachinePointerInfo::getFixedStack(*MF
, FrameIndex
);
1188 MachineMemOperand
*MMO
= MF
->getMachineMemOperand(
1189 PtrInfo
, MachineMemOperand::MOLoad
, Size
, Align
);
1191 if (RI
.isSGPRClass(RC
)) {
1192 MFI
->setHasSpilledSGPRs();
1194 // FIXME: Maybe this should not include a memoperand because it will be
1195 // lowered to non-memory instructions.
1196 const MCInstrDesc
&OpDesc
= get(getSGPRSpillRestoreOpcode(SpillSize
));
1197 if (Register::isVirtualRegister(DestReg
) && SpillSize
== 4) {
1198 MachineRegisterInfo
&MRI
= MF
->getRegInfo();
1199 MRI
.constrainRegClass(DestReg
, &AMDGPU::SReg_32_XM0RegClass
);
1202 if (RI
.spillSGPRToVGPR())
1203 FrameInfo
.setStackID(FrameIndex
, TargetStackID::SGPRSpill
);
1204 BuildMI(MBB
, MI
, DL
, OpDesc
, DestReg
)
1205 .addFrameIndex(FrameIndex
) // addr
1207 .addReg(MFI
->getScratchRSrcReg(), RegState::Implicit
)
1208 .addReg(MFI
->getStackPtrOffsetReg(), RegState::Implicit
);
1212 unsigned Opcode
= RI
.hasAGPRs(RC
) ? getAGPRSpillRestoreOpcode(SpillSize
)
1213 : getVGPRSpillRestoreOpcode(SpillSize
);
1214 auto MIB
= BuildMI(MBB
, MI
, DL
, get(Opcode
), DestReg
);
1215 if (RI
.hasAGPRs(RC
)) {
1216 MachineRegisterInfo
&MRI
= MF
->getRegInfo();
1217 Register Tmp
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
1218 MIB
.addReg(Tmp
, RegState::Define
);
1220 MIB
.addFrameIndex(FrameIndex
) // vaddr
1221 .addReg(MFI
->getScratchRSrcReg()) // scratch_rsrc
1222 .addReg(MFI
->getStackPtrOffsetReg()) // scratch_offset
1223 .addImm(0) // offset
1224 .addMemOperand(MMO
);
1227 /// \param @Offset Offset in bytes of the FrameIndex being spilled
1228 unsigned SIInstrInfo::calculateLDSSpillAddress(
1229 MachineBasicBlock
&MBB
, MachineInstr
&MI
, RegScavenger
*RS
, unsigned TmpReg
,
1230 unsigned FrameOffset
, unsigned Size
) const {
1231 MachineFunction
*MF
= MBB
.getParent();
1232 SIMachineFunctionInfo
*MFI
= MF
->getInfo
<SIMachineFunctionInfo
>();
1233 const GCNSubtarget
&ST
= MF
->getSubtarget
<GCNSubtarget
>();
1234 const DebugLoc
&DL
= MBB
.findDebugLoc(MI
);
1235 unsigned WorkGroupSize
= MFI
->getMaxFlatWorkGroupSize();
1236 unsigned WavefrontSize
= ST
.getWavefrontSize();
1238 unsigned TIDReg
= MFI
->getTIDReg();
1239 if (!MFI
->hasCalculatedTID()) {
1240 MachineBasicBlock
&Entry
= MBB
.getParent()->front();
1241 MachineBasicBlock::iterator Insert
= Entry
.front();
1242 const DebugLoc
&DL
= Insert
->getDebugLoc();
1244 TIDReg
= RI
.findUnusedRegister(MF
->getRegInfo(), &AMDGPU::VGPR_32RegClass
,
1246 if (TIDReg
== AMDGPU::NoRegister
)
1249 if (!AMDGPU::isShader(MF
->getFunction().getCallingConv()) &&
1250 WorkGroupSize
> WavefrontSize
) {
1251 Register TIDIGXReg
=
1252 MFI
->getPreloadedReg(AMDGPUFunctionArgInfo::WORKGROUP_ID_X
);
1253 Register TIDIGYReg
=
1254 MFI
->getPreloadedReg(AMDGPUFunctionArgInfo::WORKGROUP_ID_Y
);
1255 Register TIDIGZReg
=
1256 MFI
->getPreloadedReg(AMDGPUFunctionArgInfo::WORKGROUP_ID_Z
);
1257 Register InputPtrReg
=
1258 MFI
->getPreloadedReg(AMDGPUFunctionArgInfo::KERNARG_SEGMENT_PTR
);
1259 for (unsigned Reg
: {TIDIGXReg
, TIDIGYReg
, TIDIGZReg
}) {
1260 if (!Entry
.isLiveIn(Reg
))
1261 Entry
.addLiveIn(Reg
);
1264 RS
->enterBasicBlock(Entry
);
1265 // FIXME: Can we scavenge an SReg_64 and access the subregs?
1266 unsigned STmp0
= RS
->scavengeRegister(&AMDGPU::SGPR_32RegClass
, 0);
1267 unsigned STmp1
= RS
->scavengeRegister(&AMDGPU::SGPR_32RegClass
, 0);
1268 BuildMI(Entry
, Insert
, DL
, get(AMDGPU::S_LOAD_DWORD_IMM
), STmp0
)
1269 .addReg(InputPtrReg
)
1270 .addImm(SI::KernelInputOffsets::NGROUPS_Z
);
1271 BuildMI(Entry
, Insert
, DL
, get(AMDGPU::S_LOAD_DWORD_IMM
), STmp1
)
1272 .addReg(InputPtrReg
)
1273 .addImm(SI::KernelInputOffsets::NGROUPS_Y
);
1275 // NGROUPS.X * NGROUPS.Y
1276 BuildMI(Entry
, Insert
, DL
, get(AMDGPU::S_MUL_I32
), STmp1
)
1279 // (NGROUPS.X * NGROUPS.Y) * TIDIG.X
1280 BuildMI(Entry
, Insert
, DL
, get(AMDGPU::V_MUL_U32_U24_e32
), TIDReg
)
1283 // NGROUPS.Z * TIDIG.Y + (NGROUPS.X * NGROPUS.Y * TIDIG.X)
1284 BuildMI(Entry
, Insert
, DL
, get(AMDGPU::V_MAD_U32_U24
), TIDReg
)
1288 // (NGROUPS.Z * TIDIG.Y + (NGROUPS.X * NGROPUS.Y * TIDIG.X)) + TIDIG.Z
1289 getAddNoCarry(Entry
, Insert
, DL
, TIDReg
)
1292 .addImm(0); // clamp bit
1295 BuildMI(Entry
, Insert
, DL
, get(AMDGPU::V_MBCNT_LO_U32_B32_e64
),
1300 BuildMI(Entry
, Insert
, DL
, get(AMDGPU::V_MBCNT_HI_U32_B32_e64
),
1306 BuildMI(Entry
, Insert
, DL
, get(AMDGPU::V_LSHLREV_B32_e32
),
1310 MFI
->setTIDReg(TIDReg
);
1313 // Add FrameIndex to LDS offset
1314 unsigned LDSOffset
= MFI
->getLDSSize() + (FrameOffset
* WorkGroupSize
);
1315 getAddNoCarry(MBB
, MI
, DL
, TmpReg
)
1318 .addImm(0); // clamp bit
1323 void SIInstrInfo::insertWaitStates(MachineBasicBlock
&MBB
,
1324 MachineBasicBlock::iterator MI
,
1326 DebugLoc DL
= MBB
.findDebugLoc(MI
);
1334 BuildMI(MBB
, MI
, DL
, get(AMDGPU::S_NOP
))
1339 void SIInstrInfo::insertNoop(MachineBasicBlock
&MBB
,
1340 MachineBasicBlock::iterator MI
) const {
1341 insertWaitStates(MBB
, MI
, 1);
1344 void SIInstrInfo::insertReturn(MachineBasicBlock
&MBB
) const {
1345 auto MF
= MBB
.getParent();
1346 SIMachineFunctionInfo
*Info
= MF
->getInfo
<SIMachineFunctionInfo
>();
1348 assert(Info
->isEntryFunction());
1350 if (MBB
.succ_empty()) {
1351 bool HasNoTerminator
= MBB
.getFirstTerminator() == MBB
.end();
1352 if (HasNoTerminator
) {
1353 if (Info
->returnsVoid()) {
1354 BuildMI(MBB
, MBB
.end(), DebugLoc(), get(AMDGPU::S_ENDPGM
)).addImm(0);
1356 BuildMI(MBB
, MBB
.end(), DebugLoc(), get(AMDGPU::SI_RETURN_TO_EPILOG
));
1362 unsigned SIInstrInfo::getNumWaitStates(const MachineInstr
&MI
) {
1363 switch (MI
.getOpcode()) {
1364 default: return 1; // FIXME: Do wait states equal cycles?
1367 return MI
.getOperand(0).getImm() + 1;
1371 bool SIInstrInfo::expandPostRAPseudo(MachineInstr
&MI
) const {
1372 MachineBasicBlock
&MBB
= *MI
.getParent();
1373 DebugLoc DL
= MBB
.findDebugLoc(MI
);
1374 switch (MI
.getOpcode()) {
1375 default: return TargetInstrInfo::expandPostRAPseudo(MI
);
1376 case AMDGPU::S_MOV_B64_term
:
1377 // This is only a terminator to get the correct spill code placement during
1378 // register allocation.
1379 MI
.setDesc(get(AMDGPU::S_MOV_B64
));
1382 case AMDGPU::S_MOV_B32_term
:
1383 // This is only a terminator to get the correct spill code placement during
1384 // register allocation.
1385 MI
.setDesc(get(AMDGPU::S_MOV_B32
));
1388 case AMDGPU::S_XOR_B64_term
:
1389 // This is only a terminator to get the correct spill code placement during
1390 // register allocation.
1391 MI
.setDesc(get(AMDGPU::S_XOR_B64
));
1394 case AMDGPU::S_XOR_B32_term
:
1395 // This is only a terminator to get the correct spill code placement during
1396 // register allocation.
1397 MI
.setDesc(get(AMDGPU::S_XOR_B32
));
1400 case AMDGPU::S_OR_B32_term
:
1401 // This is only a terminator to get the correct spill code placement during
1402 // register allocation.
1403 MI
.setDesc(get(AMDGPU::S_OR_B32
));
1406 case AMDGPU::S_ANDN2_B64_term
:
1407 // This is only a terminator to get the correct spill code placement during
1408 // register allocation.
1409 MI
.setDesc(get(AMDGPU::S_ANDN2_B64
));
1412 case AMDGPU::S_ANDN2_B32_term
:
1413 // This is only a terminator to get the correct spill code placement during
1414 // register allocation.
1415 MI
.setDesc(get(AMDGPU::S_ANDN2_B32
));
1418 case AMDGPU::V_MOV_B64_PSEUDO
: {
1419 Register Dst
= MI
.getOperand(0).getReg();
1420 Register DstLo
= RI
.getSubReg(Dst
, AMDGPU::sub0
);
1421 Register DstHi
= RI
.getSubReg(Dst
, AMDGPU::sub1
);
1423 const MachineOperand
&SrcOp
= MI
.getOperand(1);
1424 // FIXME: Will this work for 64-bit floating point immediates?
1425 assert(!SrcOp
.isFPImm());
1426 if (SrcOp
.isImm()) {
1427 APInt
Imm(64, SrcOp
.getImm());
1428 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_MOV_B32_e32
), DstLo
)
1429 .addImm(Imm
.getLoBits(32).getZExtValue())
1430 .addReg(Dst
, RegState::Implicit
| RegState::Define
);
1431 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_MOV_B32_e32
), DstHi
)
1432 .addImm(Imm
.getHiBits(32).getZExtValue())
1433 .addReg(Dst
, RegState::Implicit
| RegState::Define
);
1435 assert(SrcOp
.isReg());
1436 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_MOV_B32_e32
), DstLo
)
1437 .addReg(RI
.getSubReg(SrcOp
.getReg(), AMDGPU::sub0
))
1438 .addReg(Dst
, RegState::Implicit
| RegState::Define
);
1439 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_MOV_B32_e32
), DstHi
)
1440 .addReg(RI
.getSubReg(SrcOp
.getReg(), AMDGPU::sub1
))
1441 .addReg(Dst
, RegState::Implicit
| RegState::Define
);
1443 MI
.eraseFromParent();
1446 case AMDGPU::V_MOV_B64_DPP_PSEUDO
: {
1450 case AMDGPU::V_SET_INACTIVE_B32
: {
1451 unsigned NotOpc
= ST
.isWave32() ? AMDGPU::S_NOT_B32
: AMDGPU::S_NOT_B64
;
1452 unsigned Exec
= ST
.isWave32() ? AMDGPU::EXEC_LO
: AMDGPU::EXEC
;
1453 BuildMI(MBB
, MI
, DL
, get(NotOpc
), Exec
)
1455 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_MOV_B32_e32
), MI
.getOperand(0).getReg())
1456 .add(MI
.getOperand(2));
1457 BuildMI(MBB
, MI
, DL
, get(NotOpc
), Exec
)
1459 MI
.eraseFromParent();
1462 case AMDGPU::V_SET_INACTIVE_B64
: {
1463 unsigned NotOpc
= ST
.isWave32() ? AMDGPU::S_NOT_B32
: AMDGPU::S_NOT_B64
;
1464 unsigned Exec
= ST
.isWave32() ? AMDGPU::EXEC_LO
: AMDGPU::EXEC
;
1465 BuildMI(MBB
, MI
, DL
, get(NotOpc
), Exec
)
1467 MachineInstr
*Copy
= BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_MOV_B64_PSEUDO
),
1468 MI
.getOperand(0).getReg())
1469 .add(MI
.getOperand(2));
1470 expandPostRAPseudo(*Copy
);
1471 BuildMI(MBB
, MI
, DL
, get(NotOpc
), Exec
)
1473 MI
.eraseFromParent();
1476 case AMDGPU::V_MOVRELD_B32_V1
:
1477 case AMDGPU::V_MOVRELD_B32_V2
:
1478 case AMDGPU::V_MOVRELD_B32_V4
:
1479 case AMDGPU::V_MOVRELD_B32_V8
:
1480 case AMDGPU::V_MOVRELD_B32_V16
: {
1481 const MCInstrDesc
&MovRelDesc
= get(AMDGPU::V_MOVRELD_B32_e32
);
1482 Register VecReg
= MI
.getOperand(0).getReg();
1483 bool IsUndef
= MI
.getOperand(1).isUndef();
1484 unsigned SubReg
= AMDGPU::sub0
+ MI
.getOperand(3).getImm();
1485 assert(VecReg
== MI
.getOperand(1).getReg());
1487 MachineInstr
*MovRel
=
1488 BuildMI(MBB
, MI
, DL
, MovRelDesc
)
1489 .addReg(RI
.getSubReg(VecReg
, SubReg
), RegState::Undef
)
1490 .add(MI
.getOperand(2))
1491 .addReg(VecReg
, RegState::ImplicitDefine
)
1493 RegState::Implicit
| (IsUndef
? RegState::Undef
: 0));
1495 const int ImpDefIdx
=
1496 MovRelDesc
.getNumOperands() + MovRelDesc
.getNumImplicitUses();
1497 const int ImpUseIdx
= ImpDefIdx
+ 1;
1498 MovRel
->tieOperands(ImpDefIdx
, ImpUseIdx
);
1500 MI
.eraseFromParent();
1503 case AMDGPU::SI_PC_ADD_REL_OFFSET
: {
1504 MachineFunction
&MF
= *MBB
.getParent();
1505 Register Reg
= MI
.getOperand(0).getReg();
1506 Register RegLo
= RI
.getSubReg(Reg
, AMDGPU::sub0
);
1507 Register RegHi
= RI
.getSubReg(Reg
, AMDGPU::sub1
);
1509 // Create a bundle so these instructions won't be re-ordered by the
1510 // post-RA scheduler.
1511 MIBundleBuilder
Bundler(MBB
, MI
);
1512 Bundler
.append(BuildMI(MF
, DL
, get(AMDGPU::S_GETPC_B64
), Reg
));
1514 // Add 32-bit offset from this instruction to the start of the
1516 Bundler
.append(BuildMI(MF
, DL
, get(AMDGPU::S_ADD_U32
), RegLo
)
1518 .add(MI
.getOperand(1)));
1520 MachineInstrBuilder MIB
= BuildMI(MF
, DL
, get(AMDGPU::S_ADDC_U32
), RegHi
)
1522 MIB
.add(MI
.getOperand(2));
1524 Bundler
.append(MIB
);
1525 finalizeBundle(MBB
, Bundler
.begin());
1527 MI
.eraseFromParent();
1530 case AMDGPU::ENTER_WWM
: {
1531 // This only gets its own opcode so that SIPreAllocateWWMRegs can tell when
1533 MI
.setDesc(get(ST
.isWave32() ? AMDGPU::S_OR_SAVEEXEC_B32
1534 : AMDGPU::S_OR_SAVEEXEC_B64
));
1537 case AMDGPU::EXIT_WWM
: {
1538 // This only gets its own opcode so that SIPreAllocateWWMRegs can tell when
1540 MI
.setDesc(get(ST
.isWave32() ? AMDGPU::S_MOV_B32
: AMDGPU::S_MOV_B64
));
1543 case TargetOpcode::BUNDLE
: {
1544 if (!MI
.mayLoad() || MI
.hasUnmodeledSideEffects())
1547 // If it is a load it must be a memory clause
1548 for (MachineBasicBlock::instr_iterator I
= MI
.getIterator();
1549 I
->isBundledWithSucc(); ++I
) {
1550 I
->unbundleFromSucc();
1551 for (MachineOperand
&MO
: I
->operands())
1553 MO
.setIsInternalRead(false);
1556 MI
.eraseFromParent();
1563 std::pair
<MachineInstr
*, MachineInstr
*>
1564 SIInstrInfo::expandMovDPP64(MachineInstr
&MI
) const {
1565 assert (MI
.getOpcode() == AMDGPU::V_MOV_B64_DPP_PSEUDO
);
1567 MachineBasicBlock
&MBB
= *MI
.getParent();
1568 DebugLoc DL
= MBB
.findDebugLoc(MI
);
1569 MachineFunction
*MF
= MBB
.getParent();
1570 MachineRegisterInfo
&MRI
= MF
->getRegInfo();
1571 Register Dst
= MI
.getOperand(0).getReg();
1573 MachineInstr
*Split
[2];
1576 for (auto Sub
: { AMDGPU::sub0
, AMDGPU::sub1
}) {
1577 auto MovDPP
= BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_MOV_B32_dpp
));
1578 if (Dst
.isPhysical()) {
1579 MovDPP
.addDef(RI
.getSubReg(Dst
, Sub
));
1581 assert(MRI
.isSSA());
1582 auto Tmp
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
1586 for (unsigned I
= 1; I
<= 2; ++I
) { // old and src operands.
1587 const MachineOperand
&SrcOp
= MI
.getOperand(I
);
1588 assert(!SrcOp
.isFPImm());
1589 if (SrcOp
.isImm()) {
1590 APInt
Imm(64, SrcOp
.getImm());
1591 Imm
.ashrInPlace(Part
* 32);
1592 MovDPP
.addImm(Imm
.getLoBits(32).getZExtValue());
1594 assert(SrcOp
.isReg());
1595 Register Src
= SrcOp
.getReg();
1596 if (Src
.isPhysical())
1597 MovDPP
.addReg(RI
.getSubReg(Src
, Sub
));
1599 MovDPP
.addReg(Src
, SrcOp
.isUndef() ? RegState::Undef
: 0, Sub
);
1603 for (unsigned I
= 3; I
< MI
.getNumExplicitOperands(); ++I
)
1604 MovDPP
.addImm(MI
.getOperand(I
).getImm());
1606 Split
[Part
] = MovDPP
;
1610 if (Dst
.isVirtual())
1611 BuildMI(MBB
, MI
, DL
, get(AMDGPU::REG_SEQUENCE
), Dst
)
1612 .addReg(Split
[0]->getOperand(0).getReg())
1613 .addImm(AMDGPU::sub0
)
1614 .addReg(Split
[1]->getOperand(0).getReg())
1615 .addImm(AMDGPU::sub1
);
1617 MI
.eraseFromParent();
1618 return std::make_pair(Split
[0], Split
[1]);
1621 bool SIInstrInfo::swapSourceModifiers(MachineInstr
&MI
,
1622 MachineOperand
&Src0
,
1623 unsigned Src0OpName
,
1624 MachineOperand
&Src1
,
1625 unsigned Src1OpName
) const {
1626 MachineOperand
*Src0Mods
= getNamedOperand(MI
, Src0OpName
);
1630 MachineOperand
*Src1Mods
= getNamedOperand(MI
, Src1OpName
);
1632 "All commutable instructions have both src0 and src1 modifiers");
1634 int Src0ModsVal
= Src0Mods
->getImm();
1635 int Src1ModsVal
= Src1Mods
->getImm();
1637 Src1Mods
->setImm(Src0ModsVal
);
1638 Src0Mods
->setImm(Src1ModsVal
);
1642 static MachineInstr
*swapRegAndNonRegOperand(MachineInstr
&MI
,
1643 MachineOperand
&RegOp
,
1644 MachineOperand
&NonRegOp
) {
1645 Register Reg
= RegOp
.getReg();
1646 unsigned SubReg
= RegOp
.getSubReg();
1647 bool IsKill
= RegOp
.isKill();
1648 bool IsDead
= RegOp
.isDead();
1649 bool IsUndef
= RegOp
.isUndef();
1650 bool IsDebug
= RegOp
.isDebug();
1652 if (NonRegOp
.isImm())
1653 RegOp
.ChangeToImmediate(NonRegOp
.getImm());
1654 else if (NonRegOp
.isFI())
1655 RegOp
.ChangeToFrameIndex(NonRegOp
.getIndex());
1659 NonRegOp
.ChangeToRegister(Reg
, false, false, IsKill
, IsDead
, IsUndef
, IsDebug
);
1660 NonRegOp
.setSubReg(SubReg
);
1665 MachineInstr
*SIInstrInfo::commuteInstructionImpl(MachineInstr
&MI
, bool NewMI
,
1667 unsigned Src1Idx
) const {
1668 assert(!NewMI
&& "this should never be used");
1670 unsigned Opc
= MI
.getOpcode();
1671 int CommutedOpcode
= commuteOpcode(Opc
);
1672 if (CommutedOpcode
== -1)
1675 assert(AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src0
) ==
1676 static_cast<int>(Src0Idx
) &&
1677 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src1
) ==
1678 static_cast<int>(Src1Idx
) &&
1679 "inconsistency with findCommutedOpIndices");
1681 MachineOperand
&Src0
= MI
.getOperand(Src0Idx
);
1682 MachineOperand
&Src1
= MI
.getOperand(Src1Idx
);
1684 MachineInstr
*CommutedMI
= nullptr;
1685 if (Src0
.isReg() && Src1
.isReg()) {
1686 if (isOperandLegal(MI
, Src1Idx
, &Src0
)) {
1687 // Be sure to copy the source modifiers to the right place.
1689 = TargetInstrInfo::commuteInstructionImpl(MI
, NewMI
, Src0Idx
, Src1Idx
);
1692 } else if (Src0
.isReg() && !Src1
.isReg()) {
1693 // src0 should always be able to support any operand type, so no need to
1694 // check operand legality.
1695 CommutedMI
= swapRegAndNonRegOperand(MI
, Src0
, Src1
);
1696 } else if (!Src0
.isReg() && Src1
.isReg()) {
1697 if (isOperandLegal(MI
, Src1Idx
, &Src0
))
1698 CommutedMI
= swapRegAndNonRegOperand(MI
, Src1
, Src0
);
1700 // FIXME: Found two non registers to commute. This does happen.
1705 swapSourceModifiers(MI
, Src0
, AMDGPU::OpName::src0_modifiers
,
1706 Src1
, AMDGPU::OpName::src1_modifiers
);
1708 CommutedMI
->setDesc(get(CommutedOpcode
));
1714 // This needs to be implemented because the source modifiers may be inserted
1715 // between the true commutable operands, and the base
1716 // TargetInstrInfo::commuteInstruction uses it.
1717 bool SIInstrInfo::findCommutedOpIndices(const MachineInstr
&MI
,
1718 unsigned &SrcOpIdx0
,
1719 unsigned &SrcOpIdx1
) const {
1720 return findCommutedOpIndices(MI
.getDesc(), SrcOpIdx0
, SrcOpIdx1
);
1723 bool SIInstrInfo::findCommutedOpIndices(MCInstrDesc Desc
, unsigned &SrcOpIdx0
,
1724 unsigned &SrcOpIdx1
) const {
1725 if (!Desc
.isCommutable())
1728 unsigned Opc
= Desc
.getOpcode();
1729 int Src0Idx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src0
);
1733 int Src1Idx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src1
);
1737 return fixCommutedOpIndices(SrcOpIdx0
, SrcOpIdx1
, Src0Idx
, Src1Idx
);
1740 bool SIInstrInfo::isBranchOffsetInRange(unsigned BranchOp
,
1741 int64_t BrOffset
) const {
1742 // BranchRelaxation should never have to check s_setpc_b64 because its dest
1743 // block is unanalyzable.
1744 assert(BranchOp
!= AMDGPU::S_SETPC_B64
);
1746 // Convert to dwords.
1749 // The branch instructions do PC += signext(SIMM16 * 4) + 4, so the offset is
1750 // from the next instruction.
1753 return isIntN(BranchOffsetBits
, BrOffset
);
1756 MachineBasicBlock
*SIInstrInfo::getBranchDestBlock(
1757 const MachineInstr
&MI
) const {
1758 if (MI
.getOpcode() == AMDGPU::S_SETPC_B64
) {
1759 // This would be a difficult analysis to perform, but can always be legal so
1760 // there's no need to analyze it.
1764 return MI
.getOperand(0).getMBB();
1767 unsigned SIInstrInfo::insertIndirectBranch(MachineBasicBlock
&MBB
,
1768 MachineBasicBlock
&DestBB
,
1771 RegScavenger
*RS
) const {
1772 assert(RS
&& "RegScavenger required for long branching");
1773 assert(MBB
.empty() &&
1774 "new block should be inserted for expanding unconditional branch");
1775 assert(MBB
.pred_size() == 1);
1777 MachineFunction
*MF
= MBB
.getParent();
1778 MachineRegisterInfo
&MRI
= MF
->getRegInfo();
1780 // FIXME: Virtual register workaround for RegScavenger not working with empty
1782 Register PCReg
= MRI
.createVirtualRegister(&AMDGPU::SReg_64RegClass
);
1786 // We need to compute the offset relative to the instruction immediately after
1787 // s_getpc_b64. Insert pc arithmetic code before last terminator.
1788 MachineInstr
*GetPC
= BuildMI(MBB
, I
, DL
, get(AMDGPU::S_GETPC_B64
), PCReg
);
1790 // TODO: Handle > 32-bit block address.
1791 if (BrOffset
>= 0) {
1792 BuildMI(MBB
, I
, DL
, get(AMDGPU::S_ADD_U32
))
1793 .addReg(PCReg
, RegState::Define
, AMDGPU::sub0
)
1794 .addReg(PCReg
, 0, AMDGPU::sub0
)
1795 .addMBB(&DestBB
, MO_LONG_BRANCH_FORWARD
);
1796 BuildMI(MBB
, I
, DL
, get(AMDGPU::S_ADDC_U32
))
1797 .addReg(PCReg
, RegState::Define
, AMDGPU::sub1
)
1798 .addReg(PCReg
, 0, AMDGPU::sub1
)
1801 // Backwards branch.
1802 BuildMI(MBB
, I
, DL
, get(AMDGPU::S_SUB_U32
))
1803 .addReg(PCReg
, RegState::Define
, AMDGPU::sub0
)
1804 .addReg(PCReg
, 0, AMDGPU::sub0
)
1805 .addMBB(&DestBB
, MO_LONG_BRANCH_BACKWARD
);
1806 BuildMI(MBB
, I
, DL
, get(AMDGPU::S_SUBB_U32
))
1807 .addReg(PCReg
, RegState::Define
, AMDGPU::sub1
)
1808 .addReg(PCReg
, 0, AMDGPU::sub1
)
1812 // Insert the indirect branch after the other terminator.
1813 BuildMI(&MBB
, DL
, get(AMDGPU::S_SETPC_B64
))
1816 // FIXME: If spilling is necessary, this will fail because this scavenger has
1817 // no emergency stack slots. It is non-trivial to spill in this situation,
1818 // because the restore code needs to be specially placed after the
1819 // jump. BranchRelaxation then needs to be made aware of the newly inserted
1822 // If a spill is needed for the pc register pair, we need to insert a spill
1823 // restore block right before the destination block, and insert a short branch
1824 // into the old destination block's fallthrough predecessor.
1827 // s_cbranch_scc0 skip_long_branch:
1831 // s_getpc_b64 s[8:9]
1832 // s_add_u32 s8, s8, restore_bb
1833 // s_addc_u32 s9, s9, 0
1834 // s_setpc_b64 s[8:9]
1836 // skip_long_branch:
1841 // dest_bb_fallthrough_predecessor:
1847 // fallthrough dest_bb
1852 RS
->enterBasicBlockEnd(MBB
);
1853 unsigned Scav
= RS
->scavengeRegisterBackwards(
1854 AMDGPU::SReg_64RegClass
,
1855 MachineBasicBlock::iterator(GetPC
), false, 0);
1856 MRI
.replaceRegWith(PCReg
, Scav
);
1857 MRI
.clearVirtRegs();
1858 RS
->setRegUsed(Scav
);
1860 return 4 + 8 + 4 + 4;
1863 unsigned SIInstrInfo::getBranchOpcode(SIInstrInfo::BranchPredicate Cond
) {
1865 case SIInstrInfo::SCC_TRUE
:
1866 return AMDGPU::S_CBRANCH_SCC1
;
1867 case SIInstrInfo::SCC_FALSE
:
1868 return AMDGPU::S_CBRANCH_SCC0
;
1869 case SIInstrInfo::VCCNZ
:
1870 return AMDGPU::S_CBRANCH_VCCNZ
;
1871 case SIInstrInfo::VCCZ
:
1872 return AMDGPU::S_CBRANCH_VCCZ
;
1873 case SIInstrInfo::EXECNZ
:
1874 return AMDGPU::S_CBRANCH_EXECNZ
;
1875 case SIInstrInfo::EXECZ
:
1876 return AMDGPU::S_CBRANCH_EXECZ
;
1878 llvm_unreachable("invalid branch predicate");
1882 SIInstrInfo::BranchPredicate
SIInstrInfo::getBranchPredicate(unsigned Opcode
) {
1884 case AMDGPU::S_CBRANCH_SCC0
:
1886 case AMDGPU::S_CBRANCH_SCC1
:
1888 case AMDGPU::S_CBRANCH_VCCNZ
:
1890 case AMDGPU::S_CBRANCH_VCCZ
:
1892 case AMDGPU::S_CBRANCH_EXECNZ
:
1894 case AMDGPU::S_CBRANCH_EXECZ
:
1901 bool SIInstrInfo::analyzeBranchImpl(MachineBasicBlock
&MBB
,
1902 MachineBasicBlock::iterator I
,
1903 MachineBasicBlock
*&TBB
,
1904 MachineBasicBlock
*&FBB
,
1905 SmallVectorImpl
<MachineOperand
> &Cond
,
1906 bool AllowModify
) const {
1907 if (I
->getOpcode() == AMDGPU::S_BRANCH
) {
1908 // Unconditional Branch
1909 TBB
= I
->getOperand(0).getMBB();
1913 MachineBasicBlock
*CondBB
= nullptr;
1915 if (I
->getOpcode() == AMDGPU::SI_NON_UNIFORM_BRCOND_PSEUDO
) {
1916 CondBB
= I
->getOperand(1).getMBB();
1917 Cond
.push_back(I
->getOperand(0));
1919 BranchPredicate Pred
= getBranchPredicate(I
->getOpcode());
1920 if (Pred
== INVALID_BR
)
1923 CondBB
= I
->getOperand(0).getMBB();
1924 Cond
.push_back(MachineOperand::CreateImm(Pred
));
1925 Cond
.push_back(I
->getOperand(1)); // Save the branch register.
1929 if (I
== MBB
.end()) {
1930 // Conditional branch followed by fall-through.
1935 if (I
->getOpcode() == AMDGPU::S_BRANCH
) {
1937 FBB
= I
->getOperand(0).getMBB();
1944 bool SIInstrInfo::analyzeBranch(MachineBasicBlock
&MBB
, MachineBasicBlock
*&TBB
,
1945 MachineBasicBlock
*&FBB
,
1946 SmallVectorImpl
<MachineOperand
> &Cond
,
1947 bool AllowModify
) const {
1948 MachineBasicBlock::iterator I
= MBB
.getFirstTerminator();
1953 // Skip over the instructions that are artificially terminators for special
1955 while (I
!= E
&& !I
->isBranch() && !I
->isReturn() &&
1956 I
->getOpcode() != AMDGPU::SI_MASK_BRANCH
) {
1957 switch (I
->getOpcode()) {
1958 case AMDGPU::SI_MASK_BRANCH
:
1959 case AMDGPU::S_MOV_B64_term
:
1960 case AMDGPU::S_XOR_B64_term
:
1961 case AMDGPU::S_ANDN2_B64_term
:
1962 case AMDGPU::S_MOV_B32_term
:
1963 case AMDGPU::S_XOR_B32_term
:
1964 case AMDGPU::S_OR_B32_term
:
1965 case AMDGPU::S_ANDN2_B32_term
:
1968 case AMDGPU::SI_ELSE
:
1969 case AMDGPU::SI_KILL_I1_TERMINATOR
:
1970 case AMDGPU::SI_KILL_F32_COND_IMM_TERMINATOR
:
1971 // FIXME: It's messy that these need to be considered here at all.
1974 llvm_unreachable("unexpected non-branch terminator inst");
1983 if (I
->getOpcode() != AMDGPU::SI_MASK_BRANCH
)
1984 return analyzeBranchImpl(MBB
, I
, TBB
, FBB
, Cond
, AllowModify
);
1988 // TODO: Should be able to treat as fallthrough?
1992 if (analyzeBranchImpl(MBB
, I
, TBB
, FBB
, Cond
, AllowModify
))
1995 MachineBasicBlock
*MaskBrDest
= I
->getOperand(0).getMBB();
1997 // Specifically handle the case where the conditional branch is to the same
1998 // destination as the mask branch. e.g.
2000 // si_mask_branch BB8
2001 // s_cbranch_execz BB8
2004 // This is required to understand divergent loops which may need the branches
2006 if (TBB
!= MaskBrDest
|| Cond
.empty())
2009 auto Pred
= Cond
[0].getImm();
2010 return (Pred
!= EXECZ
&& Pred
!= EXECNZ
);
2013 unsigned SIInstrInfo::removeBranch(MachineBasicBlock
&MBB
,
2014 int *BytesRemoved
) const {
2015 MachineBasicBlock::iterator I
= MBB
.getFirstTerminator();
2018 unsigned RemovedSize
= 0;
2019 while (I
!= MBB
.end()) {
2020 MachineBasicBlock::iterator Next
= std::next(I
);
2021 if (I
->getOpcode() == AMDGPU::SI_MASK_BRANCH
) {
2026 RemovedSize
+= getInstSizeInBytes(*I
);
2027 I
->eraseFromParent();
2033 *BytesRemoved
= RemovedSize
;
2038 // Copy the flags onto the implicit condition register operand.
2039 static void preserveCondRegFlags(MachineOperand
&CondReg
,
2040 const MachineOperand
&OrigCond
) {
2041 CondReg
.setIsUndef(OrigCond
.isUndef());
2042 CondReg
.setIsKill(OrigCond
.isKill());
2045 unsigned SIInstrInfo::insertBranch(MachineBasicBlock
&MBB
,
2046 MachineBasicBlock
*TBB
,
2047 MachineBasicBlock
*FBB
,
2048 ArrayRef
<MachineOperand
> Cond
,
2050 int *BytesAdded
) const {
2051 if (!FBB
&& Cond
.empty()) {
2052 BuildMI(&MBB
, DL
, get(AMDGPU::S_BRANCH
))
2059 if(Cond
.size() == 1 && Cond
[0].isReg()) {
2060 BuildMI(&MBB
, DL
, get(AMDGPU::SI_NON_UNIFORM_BRCOND_PSEUDO
))
2066 assert(TBB
&& Cond
[0].isImm());
2069 = getBranchOpcode(static_cast<BranchPredicate
>(Cond
[0].getImm()));
2073 MachineInstr
*CondBr
=
2074 BuildMI(&MBB
, DL
, get(Opcode
))
2077 // Copy the flags onto the implicit condition register operand.
2078 preserveCondRegFlags(CondBr
->getOperand(1), Cond
[1]);
2087 MachineInstr
*CondBr
=
2088 BuildMI(&MBB
, DL
, get(Opcode
))
2090 BuildMI(&MBB
, DL
, get(AMDGPU::S_BRANCH
))
2093 MachineOperand
&CondReg
= CondBr
->getOperand(1);
2094 CondReg
.setIsUndef(Cond
[1].isUndef());
2095 CondReg
.setIsKill(Cond
[1].isKill());
2103 bool SIInstrInfo::reverseBranchCondition(
2104 SmallVectorImpl
<MachineOperand
> &Cond
) const {
2105 if (Cond
.size() != 2) {
2109 if (Cond
[0].isImm()) {
2110 Cond
[0].setImm(-Cond
[0].getImm());
2117 bool SIInstrInfo::canInsertSelect(const MachineBasicBlock
&MBB
,
2118 ArrayRef
<MachineOperand
> Cond
,
2119 unsigned TrueReg
, unsigned FalseReg
,
2121 int &TrueCycles
, int &FalseCycles
) const {
2122 switch (Cond
[0].getImm()) {
2125 const MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
2126 const TargetRegisterClass
*RC
= MRI
.getRegClass(TrueReg
);
2127 assert(MRI
.getRegClass(FalseReg
) == RC
);
2129 int NumInsts
= AMDGPU::getRegBitWidth(RC
->getID()) / 32;
2130 CondCycles
= TrueCycles
= FalseCycles
= NumInsts
; // ???
2132 // Limit to equal cost for branch vs. N v_cndmask_b32s.
2133 return RI
.hasVGPRs(RC
) && NumInsts
<= 6;
2137 // FIXME: We could insert for VGPRs if we could replace the original compare
2138 // with a vector one.
2139 const MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
2140 const TargetRegisterClass
*RC
= MRI
.getRegClass(TrueReg
);
2141 assert(MRI
.getRegClass(FalseReg
) == RC
);
2143 int NumInsts
= AMDGPU::getRegBitWidth(RC
->getID()) / 32;
2145 // Multiples of 8 can do s_cselect_b64
2146 if (NumInsts
% 2 == 0)
2149 CondCycles
= TrueCycles
= FalseCycles
= NumInsts
; // ???
2150 return RI
.isSGPRClass(RC
);
2157 void SIInstrInfo::insertSelect(MachineBasicBlock
&MBB
,
2158 MachineBasicBlock::iterator I
, const DebugLoc
&DL
,
2159 unsigned DstReg
, ArrayRef
<MachineOperand
> Cond
,
2160 unsigned TrueReg
, unsigned FalseReg
) const {
2161 BranchPredicate Pred
= static_cast<BranchPredicate
>(Cond
[0].getImm());
2162 if (Pred
== VCCZ
|| Pred
== SCC_FALSE
) {
2163 Pred
= static_cast<BranchPredicate
>(-Pred
);
2164 std::swap(TrueReg
, FalseReg
);
2167 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
2168 const TargetRegisterClass
*DstRC
= MRI
.getRegClass(DstReg
);
2169 unsigned DstSize
= RI
.getRegSizeInBits(*DstRC
);
2171 if (DstSize
== 32) {
2172 unsigned SelOp
= Pred
== SCC_TRUE
?
2173 AMDGPU::S_CSELECT_B32
: AMDGPU::V_CNDMASK_B32_e32
;
2175 // Instruction's operands are backwards from what is expected.
2176 MachineInstr
*Select
=
2177 BuildMI(MBB
, I
, DL
, get(SelOp
), DstReg
)
2181 preserveCondRegFlags(Select
->getOperand(3), Cond
[1]);
2185 if (DstSize
== 64 && Pred
== SCC_TRUE
) {
2186 MachineInstr
*Select
=
2187 BuildMI(MBB
, I
, DL
, get(AMDGPU::S_CSELECT_B64
), DstReg
)
2191 preserveCondRegFlags(Select
->getOperand(3), Cond
[1]);
2195 static const int16_t Sub0_15
[] = {
2196 AMDGPU::sub0
, AMDGPU::sub1
, AMDGPU::sub2
, AMDGPU::sub3
,
2197 AMDGPU::sub4
, AMDGPU::sub5
, AMDGPU::sub6
, AMDGPU::sub7
,
2198 AMDGPU::sub8
, AMDGPU::sub9
, AMDGPU::sub10
, AMDGPU::sub11
,
2199 AMDGPU::sub12
, AMDGPU::sub13
, AMDGPU::sub14
, AMDGPU::sub15
,
2202 static const int16_t Sub0_15_64
[] = {
2203 AMDGPU::sub0_sub1
, AMDGPU::sub2_sub3
,
2204 AMDGPU::sub4_sub5
, AMDGPU::sub6_sub7
,
2205 AMDGPU::sub8_sub9
, AMDGPU::sub10_sub11
,
2206 AMDGPU::sub12_sub13
, AMDGPU::sub14_sub15
,
2209 unsigned SelOp
= AMDGPU::V_CNDMASK_B32_e32
;
2210 const TargetRegisterClass
*EltRC
= &AMDGPU::VGPR_32RegClass
;
2211 const int16_t *SubIndices
= Sub0_15
;
2212 int NElts
= DstSize
/ 32;
2214 // 64-bit select is only available for SALU.
2215 // TODO: Split 96-bit into 64-bit and 32-bit, not 3x 32-bit.
2216 if (Pred
== SCC_TRUE
) {
2218 SelOp
= AMDGPU::S_CSELECT_B32
;
2219 EltRC
= &AMDGPU::SGPR_32RegClass
;
2221 SelOp
= AMDGPU::S_CSELECT_B64
;
2222 EltRC
= &AMDGPU::SGPR_64RegClass
;
2223 SubIndices
= Sub0_15_64
;
2228 MachineInstrBuilder MIB
= BuildMI(
2229 MBB
, I
, DL
, get(AMDGPU::REG_SEQUENCE
), DstReg
);
2231 I
= MIB
->getIterator();
2233 SmallVector
<unsigned, 8> Regs
;
2234 for (int Idx
= 0; Idx
!= NElts
; ++Idx
) {
2235 Register DstElt
= MRI
.createVirtualRegister(EltRC
);
2236 Regs
.push_back(DstElt
);
2238 unsigned SubIdx
= SubIndices
[Idx
];
2240 MachineInstr
*Select
=
2241 BuildMI(MBB
, I
, DL
, get(SelOp
), DstElt
)
2242 .addReg(FalseReg
, 0, SubIdx
)
2243 .addReg(TrueReg
, 0, SubIdx
);
2244 preserveCondRegFlags(Select
->getOperand(3), Cond
[1]);
2245 fixImplicitOperands(*Select
);
2252 bool SIInstrInfo::isFoldableCopy(const MachineInstr
&MI
) const {
2253 switch (MI
.getOpcode()) {
2254 case AMDGPU::V_MOV_B32_e32
:
2255 case AMDGPU::V_MOV_B32_e64
:
2256 case AMDGPU::V_MOV_B64_PSEUDO
: {
2257 // If there are additional implicit register operands, this may be used for
2258 // register indexing so the source register operand isn't simply copied.
2259 unsigned NumOps
= MI
.getDesc().getNumOperands() +
2260 MI
.getDesc().getNumImplicitUses();
2262 return MI
.getNumOperands() == NumOps
;
2264 case AMDGPU::S_MOV_B32
:
2265 case AMDGPU::S_MOV_B64
:
2267 case AMDGPU::V_ACCVGPR_WRITE_B32
:
2268 case AMDGPU::V_ACCVGPR_READ_B32
:
2275 unsigned SIInstrInfo::getAddressSpaceForPseudoSourceKind(
2276 unsigned Kind
) const {
2278 case PseudoSourceValue::Stack
:
2279 case PseudoSourceValue::FixedStack
:
2280 return AMDGPUAS::PRIVATE_ADDRESS
;
2281 case PseudoSourceValue::ConstantPool
:
2282 case PseudoSourceValue::GOT
:
2283 case PseudoSourceValue::JumpTable
:
2284 case PseudoSourceValue::GlobalValueCallEntry
:
2285 case PseudoSourceValue::ExternalSymbolCallEntry
:
2286 case PseudoSourceValue::TargetCustom
:
2287 return AMDGPUAS::CONSTANT_ADDRESS
;
2289 return AMDGPUAS::FLAT_ADDRESS
;
2292 static void removeModOperands(MachineInstr
&MI
) {
2293 unsigned Opc
= MI
.getOpcode();
2294 int Src0ModIdx
= AMDGPU::getNamedOperandIdx(Opc
,
2295 AMDGPU::OpName::src0_modifiers
);
2296 int Src1ModIdx
= AMDGPU::getNamedOperandIdx(Opc
,
2297 AMDGPU::OpName::src1_modifiers
);
2298 int Src2ModIdx
= AMDGPU::getNamedOperandIdx(Opc
,
2299 AMDGPU::OpName::src2_modifiers
);
2301 MI
.RemoveOperand(Src2ModIdx
);
2302 MI
.RemoveOperand(Src1ModIdx
);
2303 MI
.RemoveOperand(Src0ModIdx
);
2306 bool SIInstrInfo::FoldImmediate(MachineInstr
&UseMI
, MachineInstr
&DefMI
,
2307 unsigned Reg
, MachineRegisterInfo
*MRI
) const {
2308 if (!MRI
->hasOneNonDBGUse(Reg
))
2311 switch (DefMI
.getOpcode()) {
2314 case AMDGPU::S_MOV_B64
:
2315 // TODO: We could fold 64-bit immediates, but this get compilicated
2316 // when there are sub-registers.
2319 case AMDGPU::V_MOV_B32_e32
:
2320 case AMDGPU::S_MOV_B32
:
2321 case AMDGPU::V_ACCVGPR_WRITE_B32
:
2325 const MachineOperand
*ImmOp
= getNamedOperand(DefMI
, AMDGPU::OpName::src0
);
2327 // FIXME: We could handle FrameIndex values here.
2328 if (!ImmOp
->isImm())
2331 unsigned Opc
= UseMI
.getOpcode();
2332 if (Opc
== AMDGPU::COPY
) {
2333 bool isVGPRCopy
= RI
.isVGPR(*MRI
, UseMI
.getOperand(0).getReg());
2334 unsigned NewOpc
= isVGPRCopy
? AMDGPU::V_MOV_B32_e32
: AMDGPU::S_MOV_B32
;
2335 if (RI
.isAGPR(*MRI
, UseMI
.getOperand(0).getReg())) {
2336 if (!isInlineConstant(*ImmOp
, AMDGPU::OPERAND_REG_INLINE_AC_INT32
))
2338 NewOpc
= AMDGPU::V_ACCVGPR_WRITE_B32
;
2340 UseMI
.setDesc(get(NewOpc
));
2341 UseMI
.getOperand(1).ChangeToImmediate(ImmOp
->getImm());
2342 UseMI
.addImplicitDefUseOperands(*UseMI
.getParent()->getParent());
2346 if (Opc
== AMDGPU::V_MAD_F32
|| Opc
== AMDGPU::V_MAC_F32_e64
||
2347 Opc
== AMDGPU::V_MAD_F16
|| Opc
== AMDGPU::V_MAC_F16_e64
||
2348 Opc
== AMDGPU::V_FMA_F32
|| Opc
== AMDGPU::V_FMAC_F32_e64
||
2349 Opc
== AMDGPU::V_FMA_F16
|| Opc
== AMDGPU::V_FMAC_F16_e64
) {
2350 // Don't fold if we are using source or output modifiers. The new VOP2
2351 // instructions don't have them.
2352 if (hasAnyModifiersSet(UseMI
))
2355 // If this is a free constant, there's no reason to do this.
2356 // TODO: We could fold this here instead of letting SIFoldOperands do it
2358 MachineOperand
*Src0
= getNamedOperand(UseMI
, AMDGPU::OpName::src0
);
2360 // Any src operand can be used for the legality check.
2361 if (isInlineConstant(UseMI
, *Src0
, *ImmOp
))
2364 bool IsF32
= Opc
== AMDGPU::V_MAD_F32
|| Opc
== AMDGPU::V_MAC_F32_e64
||
2365 Opc
== AMDGPU::V_FMA_F32
|| Opc
== AMDGPU::V_FMAC_F32_e64
;
2366 bool IsFMA
= Opc
== AMDGPU::V_FMA_F32
|| Opc
== AMDGPU::V_FMAC_F32_e64
||
2367 Opc
== AMDGPU::V_FMA_F16
|| Opc
== AMDGPU::V_FMAC_F16_e64
;
2368 MachineOperand
*Src1
= getNamedOperand(UseMI
, AMDGPU::OpName::src1
);
2369 MachineOperand
*Src2
= getNamedOperand(UseMI
, AMDGPU::OpName::src2
);
2371 // Multiplied part is the constant: Use v_madmk_{f16, f32}.
2372 // We should only expect these to be on src0 due to canonicalizations.
2373 if (Src0
->isReg() && Src0
->getReg() == Reg
) {
2374 if (!Src1
->isReg() || RI
.isSGPRClass(MRI
->getRegClass(Src1
->getReg())))
2377 if (!Src2
->isReg() || RI
.isSGPRClass(MRI
->getRegClass(Src2
->getReg())))
2381 IsFMA
? (IsF32
? AMDGPU::V_FMAMK_F32
: AMDGPU::V_FMAMK_F16
)
2382 : (IsF32
? AMDGPU::V_MADMK_F32
: AMDGPU::V_MADMK_F16
);
2383 if (pseudoToMCOpcode(NewOpc
) == -1)
2386 // We need to swap operands 0 and 1 since madmk constant is at operand 1.
2388 const int64_t Imm
= ImmOp
->getImm();
2390 // FIXME: This would be a lot easier if we could return a new instruction
2391 // instead of having to modify in place.
2393 // Remove these first since they are at the end.
2394 UseMI
.RemoveOperand(
2395 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::omod
));
2396 UseMI
.RemoveOperand(
2397 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::clamp
));
2399 Register Src1Reg
= Src1
->getReg();
2400 unsigned Src1SubReg
= Src1
->getSubReg();
2401 Src0
->setReg(Src1Reg
);
2402 Src0
->setSubReg(Src1SubReg
);
2403 Src0
->setIsKill(Src1
->isKill());
2405 if (Opc
== AMDGPU::V_MAC_F32_e64
||
2406 Opc
== AMDGPU::V_MAC_F16_e64
||
2407 Opc
== AMDGPU::V_FMAC_F32_e64
||
2408 Opc
== AMDGPU::V_FMAC_F16_e64
)
2409 UseMI
.untieRegOperand(
2410 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src2
));
2412 Src1
->ChangeToImmediate(Imm
);
2414 removeModOperands(UseMI
);
2415 UseMI
.setDesc(get(NewOpc
));
2417 bool DeleteDef
= MRI
->hasOneNonDBGUse(Reg
);
2419 DefMI
.eraseFromParent();
2424 // Added part is the constant: Use v_madak_{f16, f32}.
2425 if (Src2
->isReg() && Src2
->getReg() == Reg
) {
2426 // Not allowed to use constant bus for another operand.
2427 // We can however allow an inline immediate as src0.
2428 bool Src0Inlined
= false;
2429 if (Src0
->isReg()) {
2430 // Try to inline constant if possible.
2431 // If the Def moves immediate and the use is single
2432 // We are saving VGPR here.
2433 MachineInstr
*Def
= MRI
->getUniqueVRegDef(Src0
->getReg());
2434 if (Def
&& Def
->isMoveImmediate() &&
2435 isInlineConstant(Def
->getOperand(1)) &&
2436 MRI
->hasOneUse(Src0
->getReg())) {
2437 Src0
->ChangeToImmediate(Def
->getOperand(1).getImm());
2439 } else if ((Register::isPhysicalRegister(Src0
->getReg()) &&
2440 (ST
.getConstantBusLimit(Opc
) <= 1 &&
2441 RI
.isSGPRClass(RI
.getPhysRegClass(Src0
->getReg())))) ||
2442 (Register::isVirtualRegister(Src0
->getReg()) &&
2443 (ST
.getConstantBusLimit(Opc
) <= 1 &&
2444 RI
.isSGPRClass(MRI
->getRegClass(Src0
->getReg())))))
2446 // VGPR is okay as Src0 - fallthrough
2449 if (Src1
->isReg() && !Src0Inlined
) {
2450 // We have one slot for inlinable constant so far - try to fill it
2451 MachineInstr
*Def
= MRI
->getUniqueVRegDef(Src1
->getReg());
2452 if (Def
&& Def
->isMoveImmediate() &&
2453 isInlineConstant(Def
->getOperand(1)) &&
2454 MRI
->hasOneUse(Src1
->getReg()) &&
2455 commuteInstruction(UseMI
)) {
2456 Src0
->ChangeToImmediate(Def
->getOperand(1).getImm());
2457 } else if ((Register::isPhysicalRegister(Src1
->getReg()) &&
2458 RI
.isSGPRClass(RI
.getPhysRegClass(Src1
->getReg()))) ||
2459 (Register::isVirtualRegister(Src1
->getReg()) &&
2460 RI
.isSGPRClass(MRI
->getRegClass(Src1
->getReg()))))
2462 // VGPR is okay as Src1 - fallthrough
2466 IsFMA
? (IsF32
? AMDGPU::V_FMAAK_F32
: AMDGPU::V_FMAAK_F16
)
2467 : (IsF32
? AMDGPU::V_MADAK_F32
: AMDGPU::V_MADAK_F16
);
2468 if (pseudoToMCOpcode(NewOpc
) == -1)
2471 const int64_t Imm
= ImmOp
->getImm();
2473 // FIXME: This would be a lot easier if we could return a new instruction
2474 // instead of having to modify in place.
2476 // Remove these first since they are at the end.
2477 UseMI
.RemoveOperand(
2478 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::omod
));
2479 UseMI
.RemoveOperand(
2480 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::clamp
));
2482 if (Opc
== AMDGPU::V_MAC_F32_e64
||
2483 Opc
== AMDGPU::V_MAC_F16_e64
||
2484 Opc
== AMDGPU::V_FMAC_F32_e64
||
2485 Opc
== AMDGPU::V_FMAC_F16_e64
)
2486 UseMI
.untieRegOperand(
2487 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src2
));
2489 // ChangingToImmediate adds Src2 back to the instruction.
2490 Src2
->ChangeToImmediate(Imm
);
2492 // These come before src2.
2493 removeModOperands(UseMI
);
2494 UseMI
.setDesc(get(NewOpc
));
2495 // It might happen that UseMI was commuted
2496 // and we now have SGPR as SRC1. If so 2 inlined
2497 // constant and SGPR are illegal.
2498 legalizeOperands(UseMI
);
2500 bool DeleteDef
= MRI
->hasOneNonDBGUse(Reg
);
2502 DefMI
.eraseFromParent();
2511 static bool offsetsDoNotOverlap(int WidthA
, int OffsetA
,
2512 int WidthB
, int OffsetB
) {
2513 int LowOffset
= OffsetA
< OffsetB
? OffsetA
: OffsetB
;
2514 int HighOffset
= OffsetA
< OffsetB
? OffsetB
: OffsetA
;
2515 int LowWidth
= (LowOffset
== OffsetA
) ? WidthA
: WidthB
;
2516 return LowOffset
+ LowWidth
<= HighOffset
;
2519 bool SIInstrInfo::checkInstOffsetsDoNotOverlap(const MachineInstr
&MIa
,
2520 const MachineInstr
&MIb
) const {
2521 const MachineOperand
*BaseOp0
, *BaseOp1
;
2522 int64_t Offset0
, Offset1
;
2524 if (getMemOperandWithOffset(MIa
, BaseOp0
, Offset0
, &RI
) &&
2525 getMemOperandWithOffset(MIb
, BaseOp1
, Offset1
, &RI
)) {
2526 if (!BaseOp0
->isIdenticalTo(*BaseOp1
))
2529 if (!MIa
.hasOneMemOperand() || !MIb
.hasOneMemOperand()) {
2530 // FIXME: Handle ds_read2 / ds_write2.
2533 unsigned Width0
= (*MIa
.memoperands_begin())->getSize();
2534 unsigned Width1
= (*MIb
.memoperands_begin())->getSize();
2535 if (offsetsDoNotOverlap(Width0
, Offset0
, Width1
, Offset1
)) {
2543 bool SIInstrInfo::areMemAccessesTriviallyDisjoint(const MachineInstr
&MIa
,
2544 const MachineInstr
&MIb
) const {
2545 assert((MIa
.mayLoad() || MIa
.mayStore()) &&
2546 "MIa must load from or modify a memory location");
2547 assert((MIb
.mayLoad() || MIb
.mayStore()) &&
2548 "MIb must load from or modify a memory location");
2550 if (MIa
.hasUnmodeledSideEffects() || MIb
.hasUnmodeledSideEffects())
2553 // XXX - Can we relax this between address spaces?
2554 if (MIa
.hasOrderedMemoryRef() || MIb
.hasOrderedMemoryRef())
2557 // TODO: Should we check the address space from the MachineMemOperand? That
2558 // would allow us to distinguish objects we know don't alias based on the
2559 // underlying address space, even if it was lowered to a different one,
2560 // e.g. private accesses lowered to use MUBUF instructions on a scratch
2564 return checkInstOffsetsDoNotOverlap(MIa
, MIb
);
2566 return !isFLAT(MIb
) || isSegmentSpecificFLAT(MIb
);
2569 if (isMUBUF(MIa
) || isMTBUF(MIa
)) {
2570 if (isMUBUF(MIb
) || isMTBUF(MIb
))
2571 return checkInstOffsetsDoNotOverlap(MIa
, MIb
);
2573 return !isFLAT(MIb
) && !isSMRD(MIb
);
2578 return checkInstOffsetsDoNotOverlap(MIa
, MIb
);
2580 return !isFLAT(MIb
) && !isMUBUF(MIa
) && !isMTBUF(MIa
);
2585 return checkInstOffsetsDoNotOverlap(MIa
, MIb
);
2593 static int64_t getFoldableImm(const MachineOperand
* MO
) {
2596 const MachineFunction
*MF
= MO
->getParent()->getParent()->getParent();
2597 const MachineRegisterInfo
&MRI
= MF
->getRegInfo();
2598 auto Def
= MRI
.getUniqueVRegDef(MO
->getReg());
2599 if (Def
&& Def
->getOpcode() == AMDGPU::V_MOV_B32_e32
&&
2600 Def
->getOperand(1).isImm())
2601 return Def
->getOperand(1).getImm();
2602 return AMDGPU::NoRegister
;
2605 MachineInstr
*SIInstrInfo::convertToThreeAddress(MachineFunction::iterator
&MBB
,
2607 LiveVariables
*LV
) const {
2608 unsigned Opc
= MI
.getOpcode();
2610 bool IsFMA
= Opc
== AMDGPU::V_FMAC_F32_e32
|| Opc
== AMDGPU::V_FMAC_F32_e64
||
2611 Opc
== AMDGPU::V_FMAC_F16_e32
|| Opc
== AMDGPU::V_FMAC_F16_e64
;
2616 case AMDGPU::V_MAC_F16_e64
:
2617 case AMDGPU::V_FMAC_F16_e64
:
2620 case AMDGPU::V_MAC_F32_e64
:
2621 case AMDGPU::V_FMAC_F32_e64
:
2623 case AMDGPU::V_MAC_F16_e32
:
2624 case AMDGPU::V_FMAC_F16_e32
:
2627 case AMDGPU::V_MAC_F32_e32
:
2628 case AMDGPU::V_FMAC_F32_e32
: {
2629 int Src0Idx
= AMDGPU::getNamedOperandIdx(MI
.getOpcode(),
2630 AMDGPU::OpName::src0
);
2631 const MachineOperand
*Src0
= &MI
.getOperand(Src0Idx
);
2632 if (!Src0
->isReg() && !Src0
->isImm())
2635 if (Src0
->isImm() && !isInlineConstant(MI
, Src0Idx
, *Src0
))
2642 const MachineOperand
*Dst
= getNamedOperand(MI
, AMDGPU::OpName::vdst
);
2643 const MachineOperand
*Src0
= getNamedOperand(MI
, AMDGPU::OpName::src0
);
2644 const MachineOperand
*Src0Mods
=
2645 getNamedOperand(MI
, AMDGPU::OpName::src0_modifiers
);
2646 const MachineOperand
*Src1
= getNamedOperand(MI
, AMDGPU::OpName::src1
);
2647 const MachineOperand
*Src1Mods
=
2648 getNamedOperand(MI
, AMDGPU::OpName::src1_modifiers
);
2649 const MachineOperand
*Src2
= getNamedOperand(MI
, AMDGPU::OpName::src2
);
2650 const MachineOperand
*Clamp
= getNamedOperand(MI
, AMDGPU::OpName::clamp
);
2651 const MachineOperand
*Omod
= getNamedOperand(MI
, AMDGPU::OpName::omod
);
2653 if (!Src0Mods
&& !Src1Mods
&& !Clamp
&& !Omod
&&
2654 // If we have an SGPR input, we will violate the constant bus restriction.
2655 (ST
.getConstantBusLimit(Opc
) > 1 ||
2657 !RI
.isSGPRReg(MBB
->getParent()->getRegInfo(), Src0
->getReg()))) {
2658 if (auto Imm
= getFoldableImm(Src2
)) {
2660 IsFMA
? (IsF16
? AMDGPU::V_FMAAK_F16
: AMDGPU::V_FMAAK_F32
)
2661 : (IsF16
? AMDGPU::V_MADAK_F16
: AMDGPU::V_MADAK_F32
);
2662 if (pseudoToMCOpcode(NewOpc
) != -1)
2663 return BuildMI(*MBB
, MI
, MI
.getDebugLoc(), get(NewOpc
))
2670 IsFMA
? (IsF16
? AMDGPU::V_FMAMK_F16
: AMDGPU::V_FMAMK_F32
)
2671 : (IsF16
? AMDGPU::V_MADMK_F16
: AMDGPU::V_MADMK_F32
);
2672 if (auto Imm
= getFoldableImm(Src1
)) {
2673 if (pseudoToMCOpcode(NewOpc
) != -1)
2674 return BuildMI(*MBB
, MI
, MI
.getDebugLoc(), get(NewOpc
))
2680 if (auto Imm
= getFoldableImm(Src0
)) {
2681 if (pseudoToMCOpcode(NewOpc
) != -1 &&
2682 isOperandLegal(MI
, AMDGPU::getNamedOperandIdx(NewOpc
,
2683 AMDGPU::OpName::src0
), Src1
))
2684 return BuildMI(*MBB
, MI
, MI
.getDebugLoc(), get(NewOpc
))
2692 unsigned NewOpc
= IsFMA
? (IsF16
? AMDGPU::V_FMA_F16
: AMDGPU::V_FMA_F32
)
2693 : (IsF16
? AMDGPU::V_MAD_F16
: AMDGPU::V_MAD_F32
);
2694 if (pseudoToMCOpcode(NewOpc
) == -1)
2697 return BuildMI(*MBB
, MI
, MI
.getDebugLoc(), get(NewOpc
))
2699 .addImm(Src0Mods
? Src0Mods
->getImm() : 0)
2701 .addImm(Src1Mods
? Src1Mods
->getImm() : 0)
2703 .addImm(0) // Src mods
2705 .addImm(Clamp
? Clamp
->getImm() : 0)
2706 .addImm(Omod
? Omod
->getImm() : 0);
2709 // It's not generally safe to move VALU instructions across these since it will
2710 // start using the register as a base index rather than directly.
2711 // XXX - Why isn't hasSideEffects sufficient for these?
2712 static bool changesVGPRIndexingMode(const MachineInstr
&MI
) {
2713 switch (MI
.getOpcode()) {
2714 case AMDGPU::S_SET_GPR_IDX_ON
:
2715 case AMDGPU::S_SET_GPR_IDX_MODE
:
2716 case AMDGPU::S_SET_GPR_IDX_OFF
:
2723 bool SIInstrInfo::isSchedulingBoundary(const MachineInstr
&MI
,
2724 const MachineBasicBlock
*MBB
,
2725 const MachineFunction
&MF
) const {
2726 // XXX - Do we want the SP check in the base implementation?
2728 // Target-independent instructions do not have an implicit-use of EXEC, even
2729 // when they operate on VGPRs. Treating EXEC modifications as scheduling
2730 // boundaries prevents incorrect movements of such instructions.
2731 return TargetInstrInfo::isSchedulingBoundary(MI
, MBB
, MF
) ||
2732 MI
.modifiesRegister(AMDGPU::EXEC
, &RI
) ||
2733 MI
.getOpcode() == AMDGPU::S_SETREG_IMM32_B32
||
2734 MI
.getOpcode() == AMDGPU::S_SETREG_B32
||
2735 MI
.getOpcode() == AMDGPU::S_DENORM_MODE
||
2736 changesVGPRIndexingMode(MI
);
2739 bool SIInstrInfo::isAlwaysGDS(uint16_t Opcode
) const {
2740 return Opcode
== AMDGPU::DS_ORDERED_COUNT
||
2741 Opcode
== AMDGPU::DS_GWS_INIT
||
2742 Opcode
== AMDGPU::DS_GWS_SEMA_V
||
2743 Opcode
== AMDGPU::DS_GWS_SEMA_BR
||
2744 Opcode
== AMDGPU::DS_GWS_SEMA_P
||
2745 Opcode
== AMDGPU::DS_GWS_SEMA_RELEASE_ALL
||
2746 Opcode
== AMDGPU::DS_GWS_BARRIER
;
2749 bool SIInstrInfo::hasUnwantedEffectsWhenEXECEmpty(const MachineInstr
&MI
) const {
2750 unsigned Opcode
= MI
.getOpcode();
2752 if (MI
.mayStore() && isSMRD(MI
))
2753 return true; // scalar store or atomic
2755 // This will terminate the function when other lanes may need to continue.
2759 // These instructions cause shader I/O that may cause hardware lockups
2760 // when executed with an empty EXEC mask.
2762 // Note: exp with VM = DONE = 0 is automatically skipped by hardware when
2763 // EXEC = 0, but checking for that case here seems not worth it
2764 // given the typical code patterns.
2765 if (Opcode
== AMDGPU::S_SENDMSG
|| Opcode
== AMDGPU::S_SENDMSGHALT
||
2766 Opcode
== AMDGPU::EXP
|| Opcode
== AMDGPU::EXP_DONE
||
2767 Opcode
== AMDGPU::DS_ORDERED_COUNT
|| Opcode
== AMDGPU::S_TRAP
||
2768 Opcode
== AMDGPU::DS_GWS_INIT
|| Opcode
== AMDGPU::DS_GWS_BARRIER
)
2771 if (MI
.isCall() || MI
.isInlineAsm())
2772 return true; // conservative assumption
2774 // These are like SALU instructions in terms of effects, so it's questionable
2775 // whether we should return true for those.
2777 // However, executing them with EXEC = 0 causes them to operate on undefined
2778 // data, which we avoid by returning true here.
2779 if (Opcode
== AMDGPU::V_READFIRSTLANE_B32
|| Opcode
== AMDGPU::V_READLANE_B32
)
2785 bool SIInstrInfo::mayReadEXEC(const MachineRegisterInfo
&MRI
,
2786 const MachineInstr
&MI
) const {
2787 if (MI
.isMetaInstruction())
2790 // This won't read exec if this is an SGPR->SGPR copy.
2791 if (MI
.isCopyLike()) {
2792 if (!RI
.isSGPRReg(MRI
, MI
.getOperand(0).getReg()))
2795 // Make sure this isn't copying exec as a normal operand
2796 return MI
.readsRegister(AMDGPU::EXEC
, &RI
);
2799 // Make a conservative assumption about the callee.
2803 // Be conservative with any unhandled generic opcodes.
2804 if (!isTargetSpecificOpcode(MI
.getOpcode()))
2807 return !isSALU(MI
) || MI
.readsRegister(AMDGPU::EXEC
, &RI
);
2810 bool SIInstrInfo::isInlineConstant(const APInt
&Imm
) const {
2811 switch (Imm
.getBitWidth()) {
2812 case 1: // This likely will be a condition code mask.
2816 return AMDGPU::isInlinableLiteral32(Imm
.getSExtValue(),
2817 ST
.hasInv2PiInlineImm());
2819 return AMDGPU::isInlinableLiteral64(Imm
.getSExtValue(),
2820 ST
.hasInv2PiInlineImm());
2822 return ST
.has16BitInsts() &&
2823 AMDGPU::isInlinableLiteral16(Imm
.getSExtValue(),
2824 ST
.hasInv2PiInlineImm());
2826 llvm_unreachable("invalid bitwidth");
2830 bool SIInstrInfo::isInlineConstant(const MachineOperand
&MO
,
2831 uint8_t OperandType
) const {
2833 OperandType
< AMDGPU::OPERAND_SRC_FIRST
||
2834 OperandType
> AMDGPU::OPERAND_SRC_LAST
)
2837 // MachineOperand provides no way to tell the true operand size, since it only
2838 // records a 64-bit value. We need to know the size to determine if a 32-bit
2839 // floating point immediate bit pattern is legal for an integer immediate. It
2840 // would be for any 32-bit integer operand, but would not be for a 64-bit one.
2842 int64_t Imm
= MO
.getImm();
2843 switch (OperandType
) {
2844 case AMDGPU::OPERAND_REG_IMM_INT32
:
2845 case AMDGPU::OPERAND_REG_IMM_FP32
:
2846 case AMDGPU::OPERAND_REG_INLINE_C_INT32
:
2847 case AMDGPU::OPERAND_REG_INLINE_C_FP32
:
2848 case AMDGPU::OPERAND_REG_INLINE_AC_INT32
:
2849 case AMDGPU::OPERAND_REG_INLINE_AC_FP32
: {
2850 int32_t Trunc
= static_cast<int32_t>(Imm
);
2851 return AMDGPU::isInlinableLiteral32(Trunc
, ST
.hasInv2PiInlineImm());
2853 case AMDGPU::OPERAND_REG_IMM_INT64
:
2854 case AMDGPU::OPERAND_REG_IMM_FP64
:
2855 case AMDGPU::OPERAND_REG_INLINE_C_INT64
:
2856 case AMDGPU::OPERAND_REG_INLINE_C_FP64
:
2857 return AMDGPU::isInlinableLiteral64(MO
.getImm(),
2858 ST
.hasInv2PiInlineImm());
2859 case AMDGPU::OPERAND_REG_IMM_INT16
:
2860 case AMDGPU::OPERAND_REG_IMM_FP16
:
2861 case AMDGPU::OPERAND_REG_INLINE_C_INT16
:
2862 case AMDGPU::OPERAND_REG_INLINE_C_FP16
:
2863 case AMDGPU::OPERAND_REG_INLINE_AC_INT16
:
2864 case AMDGPU::OPERAND_REG_INLINE_AC_FP16
: {
2865 if (isInt
<16>(Imm
) || isUInt
<16>(Imm
)) {
2866 // A few special case instructions have 16-bit operands on subtargets
2867 // where 16-bit instructions are not legal.
2868 // TODO: Do the 32-bit immediates work? We shouldn't really need to handle
2869 // constants in these cases
2870 int16_t Trunc
= static_cast<int16_t>(Imm
);
2871 return ST
.has16BitInsts() &&
2872 AMDGPU::isInlinableLiteral16(Trunc
, ST
.hasInv2PiInlineImm());
2877 case AMDGPU::OPERAND_REG_IMM_V2INT16
:
2878 case AMDGPU::OPERAND_REG_IMM_V2FP16
:
2879 case AMDGPU::OPERAND_REG_INLINE_C_V2INT16
:
2880 case AMDGPU::OPERAND_REG_INLINE_C_V2FP16
:
2881 case AMDGPU::OPERAND_REG_INLINE_AC_V2INT16
:
2882 case AMDGPU::OPERAND_REG_INLINE_AC_V2FP16
: {
2883 uint32_t Trunc
= static_cast<uint32_t>(Imm
);
2884 return AMDGPU::isInlinableLiteralV216(Trunc
, ST
.hasInv2PiInlineImm());
2887 llvm_unreachable("invalid bitwidth");
2891 bool SIInstrInfo::isLiteralConstantLike(const MachineOperand
&MO
,
2892 const MCOperandInfo
&OpInfo
) const {
2893 switch (MO
.getType()) {
2894 case MachineOperand::MO_Register
:
2896 case MachineOperand::MO_Immediate
:
2897 return !isInlineConstant(MO
, OpInfo
);
2898 case MachineOperand::MO_FrameIndex
:
2899 case MachineOperand::MO_MachineBasicBlock
:
2900 case MachineOperand::MO_ExternalSymbol
:
2901 case MachineOperand::MO_GlobalAddress
:
2902 case MachineOperand::MO_MCSymbol
:
2905 llvm_unreachable("unexpected operand type");
2909 static bool compareMachineOp(const MachineOperand
&Op0
,
2910 const MachineOperand
&Op1
) {
2911 if (Op0
.getType() != Op1
.getType())
2914 switch (Op0
.getType()) {
2915 case MachineOperand::MO_Register
:
2916 return Op0
.getReg() == Op1
.getReg();
2917 case MachineOperand::MO_Immediate
:
2918 return Op0
.getImm() == Op1
.getImm();
2920 llvm_unreachable("Didn't expect to be comparing these operand types");
2924 bool SIInstrInfo::isImmOperandLegal(const MachineInstr
&MI
, unsigned OpNo
,
2925 const MachineOperand
&MO
) const {
2926 const MCInstrDesc
&InstDesc
= MI
.getDesc();
2927 const MCOperandInfo
&OpInfo
= InstDesc
.OpInfo
[OpNo
];
2929 assert(MO
.isImm() || MO
.isTargetIndex() || MO
.isFI() || MO
.isGlobal());
2931 if (OpInfo
.OperandType
== MCOI::OPERAND_IMMEDIATE
)
2934 if (OpInfo
.RegClass
< 0)
2937 const MachineFunction
*MF
= MI
.getParent()->getParent();
2938 const GCNSubtarget
&ST
= MF
->getSubtarget
<GCNSubtarget
>();
2940 if (MO
.isImm() && isInlineConstant(MO
, OpInfo
)) {
2941 if (isMAI(MI
) && ST
.hasMFMAInlineLiteralBug() &&
2942 OpNo
==(unsigned)AMDGPU::getNamedOperandIdx(MI
.getOpcode(),
2943 AMDGPU::OpName::src2
))
2945 return RI
.opCanUseInlineConstant(OpInfo
.OperandType
);
2948 if (!RI
.opCanUseLiteralConstant(OpInfo
.OperandType
))
2951 if (!isVOP3(MI
) || !AMDGPU::isSISrcOperand(InstDesc
, OpNo
))
2954 return ST
.hasVOP3Literal();
2957 bool SIInstrInfo::hasVALU32BitEncoding(unsigned Opcode
) const {
2958 int Op32
= AMDGPU::getVOPe32(Opcode
);
2962 return pseudoToMCOpcode(Op32
) != -1;
2965 bool SIInstrInfo::hasModifiers(unsigned Opcode
) const {
2966 // The src0_modifier operand is present on all instructions
2967 // that have modifiers.
2969 return AMDGPU::getNamedOperandIdx(Opcode
,
2970 AMDGPU::OpName::src0_modifiers
) != -1;
2973 bool SIInstrInfo::hasModifiersSet(const MachineInstr
&MI
,
2974 unsigned OpName
) const {
2975 const MachineOperand
*Mods
= getNamedOperand(MI
, OpName
);
2976 return Mods
&& Mods
->getImm();
2979 bool SIInstrInfo::hasAnyModifiersSet(const MachineInstr
&MI
) const {
2980 return hasModifiersSet(MI
, AMDGPU::OpName::src0_modifiers
) ||
2981 hasModifiersSet(MI
, AMDGPU::OpName::src1_modifiers
) ||
2982 hasModifiersSet(MI
, AMDGPU::OpName::src2_modifiers
) ||
2983 hasModifiersSet(MI
, AMDGPU::OpName::clamp
) ||
2984 hasModifiersSet(MI
, AMDGPU::OpName::omod
);
2987 bool SIInstrInfo::canShrink(const MachineInstr
&MI
,
2988 const MachineRegisterInfo
&MRI
) const {
2989 const MachineOperand
*Src2
= getNamedOperand(MI
, AMDGPU::OpName::src2
);
2990 // Can't shrink instruction with three operands.
2991 // FIXME: v_cndmask_b32 has 3 operands and is shrinkable, but we need to add
2992 // a special case for it. It can only be shrunk if the third operand
2993 // is vcc, and src0_modifiers and src1_modifiers are not set.
2994 // We should handle this the same way we handle vopc, by addding
2995 // a register allocation hint pre-regalloc and then do the shrinking
2998 switch (MI
.getOpcode()) {
2999 default: return false;
3001 case AMDGPU::V_ADDC_U32_e64
:
3002 case AMDGPU::V_SUBB_U32_e64
:
3003 case AMDGPU::V_SUBBREV_U32_e64
: {
3004 const MachineOperand
*Src1
3005 = getNamedOperand(MI
, AMDGPU::OpName::src1
);
3006 if (!Src1
->isReg() || !RI
.isVGPR(MRI
, Src1
->getReg()))
3008 // Additional verification is needed for sdst/src2.
3011 case AMDGPU::V_MAC_F32_e64
:
3012 case AMDGPU::V_MAC_F16_e64
:
3013 case AMDGPU::V_FMAC_F32_e64
:
3014 case AMDGPU::V_FMAC_F16_e64
:
3015 if (!Src2
->isReg() || !RI
.isVGPR(MRI
, Src2
->getReg()) ||
3016 hasModifiersSet(MI
, AMDGPU::OpName::src2_modifiers
))
3020 case AMDGPU::V_CNDMASK_B32_e64
:
3025 const MachineOperand
*Src1
= getNamedOperand(MI
, AMDGPU::OpName::src1
);
3026 if (Src1
&& (!Src1
->isReg() || !RI
.isVGPR(MRI
, Src1
->getReg()) ||
3027 hasModifiersSet(MI
, AMDGPU::OpName::src1_modifiers
)))
3030 // We don't need to check src0, all input types are legal, so just make sure
3031 // src0 isn't using any modifiers.
3032 if (hasModifiersSet(MI
, AMDGPU::OpName::src0_modifiers
))
3035 // Can it be shrunk to a valid 32 bit opcode?
3036 if (!hasVALU32BitEncoding(MI
.getOpcode()))
3039 // Check output modifiers
3040 return !hasModifiersSet(MI
, AMDGPU::OpName::omod
) &&
3041 !hasModifiersSet(MI
, AMDGPU::OpName::clamp
);
3044 // Set VCC operand with all flags from \p Orig, except for setting it as
3046 static void copyFlagsToImplicitVCC(MachineInstr
&MI
,
3047 const MachineOperand
&Orig
) {
3049 for (MachineOperand
&Use
: MI
.implicit_operands()) {
3050 if (Use
.isUse() && Use
.getReg() == AMDGPU::VCC
) {
3051 Use
.setIsUndef(Orig
.isUndef());
3052 Use
.setIsKill(Orig
.isKill());
3058 MachineInstr
*SIInstrInfo::buildShrunkInst(MachineInstr
&MI
,
3059 unsigned Op32
) const {
3060 MachineBasicBlock
*MBB
= MI
.getParent();;
3061 MachineInstrBuilder Inst32
=
3062 BuildMI(*MBB
, MI
, MI
.getDebugLoc(), get(Op32
));
3064 // Add the dst operand if the 32-bit encoding also has an explicit $vdst.
3065 // For VOPC instructions, this is replaced by an implicit def of vcc.
3066 int Op32DstIdx
= AMDGPU::getNamedOperandIdx(Op32
, AMDGPU::OpName::vdst
);
3067 if (Op32DstIdx
!= -1) {
3069 Inst32
.add(MI
.getOperand(0));
3071 assert(((MI
.getOperand(0).getReg() == AMDGPU::VCC
) ||
3072 (MI
.getOperand(0).getReg() == AMDGPU::VCC_LO
)) &&
3076 Inst32
.add(*getNamedOperand(MI
, AMDGPU::OpName::src0
));
3078 const MachineOperand
*Src1
= getNamedOperand(MI
, AMDGPU::OpName::src1
);
3082 const MachineOperand
*Src2
= getNamedOperand(MI
, AMDGPU::OpName::src2
);
3085 int Op32Src2Idx
= AMDGPU::getNamedOperandIdx(Op32
, AMDGPU::OpName::src2
);
3086 if (Op32Src2Idx
!= -1) {
3089 // In the case of V_CNDMASK_B32_e32, the explicit operand src2 is
3090 // replaced with an implicit read of vcc. This was already added
3091 // during the initial BuildMI, so find it to preserve the flags.
3092 copyFlagsToImplicitVCC(*Inst32
, *Src2
);
3099 bool SIInstrInfo::usesConstantBus(const MachineRegisterInfo
&MRI
,
3100 const MachineOperand
&MO
,
3101 const MCOperandInfo
&OpInfo
) const {
3102 // Literal constants use the constant bus.
3103 //if (isLiteralConstantLike(MO, OpInfo))
3106 return !isInlineConstant(MO
, OpInfo
);
3109 return true; // Misc other operands like FrameIndex
3114 if (Register::isVirtualRegister(MO
.getReg()))
3115 return RI
.isSGPRClass(MRI
.getRegClass(MO
.getReg()));
3118 if (MO
.getReg() == AMDGPU::SGPR_NULL
)
3121 // SGPRs use the constant bus
3122 if (MO
.isImplicit()) {
3123 return MO
.getReg() == AMDGPU::M0
||
3124 MO
.getReg() == AMDGPU::VCC
||
3125 MO
.getReg() == AMDGPU::VCC_LO
;
3127 return AMDGPU::SReg_32RegClass
.contains(MO
.getReg()) ||
3128 AMDGPU::SReg_64RegClass
.contains(MO
.getReg());
3132 static unsigned findImplicitSGPRRead(const MachineInstr
&MI
) {
3133 for (const MachineOperand
&MO
: MI
.implicit_operands()) {
3134 // We only care about reads.
3138 switch (MO
.getReg()) {
3140 case AMDGPU::VCC_LO
:
3141 case AMDGPU::VCC_HI
:
3143 case AMDGPU::FLAT_SCR
:
3151 return AMDGPU::NoRegister
;
3154 static bool shouldReadExec(const MachineInstr
&MI
) {
3155 if (SIInstrInfo::isVALU(MI
)) {
3156 switch (MI
.getOpcode()) {
3157 case AMDGPU::V_READLANE_B32
:
3158 case AMDGPU::V_READLANE_B32_gfx6_gfx7
:
3159 case AMDGPU::V_READLANE_B32_gfx10
:
3160 case AMDGPU::V_READLANE_B32_vi
:
3161 case AMDGPU::V_WRITELANE_B32
:
3162 case AMDGPU::V_WRITELANE_B32_gfx6_gfx7
:
3163 case AMDGPU::V_WRITELANE_B32_gfx10
:
3164 case AMDGPU::V_WRITELANE_B32_vi
:
3171 if (MI
.isPreISelOpcode() ||
3172 SIInstrInfo::isGenericOpcode(MI
.getOpcode()) ||
3173 SIInstrInfo::isSALU(MI
) ||
3174 SIInstrInfo::isSMRD(MI
))
3180 static bool isSubRegOf(const SIRegisterInfo
&TRI
,
3181 const MachineOperand
&SuperVec
,
3182 const MachineOperand
&SubReg
) {
3183 if (Register::isPhysicalRegister(SubReg
.getReg()))
3184 return TRI
.isSubRegister(SuperVec
.getReg(), SubReg
.getReg());
3186 return SubReg
.getSubReg() != AMDGPU::NoSubRegister
&&
3187 SubReg
.getReg() == SuperVec
.getReg();
3190 bool SIInstrInfo::verifyInstruction(const MachineInstr
&MI
,
3191 StringRef
&ErrInfo
) const {
3192 uint16_t Opcode
= MI
.getOpcode();
3193 if (SIInstrInfo::isGenericOpcode(MI
.getOpcode()))
3196 const MachineFunction
*MF
= MI
.getParent()->getParent();
3197 const MachineRegisterInfo
&MRI
= MF
->getRegInfo();
3199 int Src0Idx
= AMDGPU::getNamedOperandIdx(Opcode
, AMDGPU::OpName::src0
);
3200 int Src1Idx
= AMDGPU::getNamedOperandIdx(Opcode
, AMDGPU::OpName::src1
);
3201 int Src2Idx
= AMDGPU::getNamedOperandIdx(Opcode
, AMDGPU::OpName::src2
);
3203 // Make sure the number of operands is correct.
3204 const MCInstrDesc
&Desc
= get(Opcode
);
3205 if (!Desc
.isVariadic() &&
3206 Desc
.getNumOperands() != MI
.getNumExplicitOperands()) {
3207 ErrInfo
= "Instruction has wrong number of operands.";
3211 if (MI
.isInlineAsm()) {
3212 // Verify register classes for inlineasm constraints.
3213 for (unsigned I
= InlineAsm::MIOp_FirstOperand
, E
= MI
.getNumOperands();
3215 const TargetRegisterClass
*RC
= MI
.getRegClassConstraint(I
, this, &RI
);
3219 const MachineOperand
&Op
= MI
.getOperand(I
);
3223 Register Reg
= Op
.getReg();
3224 if (!Register::isVirtualRegister(Reg
) && !RC
->contains(Reg
)) {
3225 ErrInfo
= "inlineasm operand has incorrect register class.";
3233 // Make sure the register classes are correct.
3234 for (int i
= 0, e
= Desc
.getNumOperands(); i
!= e
; ++i
) {
3235 if (MI
.getOperand(i
).isFPImm()) {
3236 ErrInfo
= "FPImm Machine Operands are not supported. ISel should bitcast "
3237 "all fp values to integers.";
3241 int RegClass
= Desc
.OpInfo
[i
].RegClass
;
3243 switch (Desc
.OpInfo
[i
].OperandType
) {
3244 case MCOI::OPERAND_REGISTER
:
3245 if (MI
.getOperand(i
).isImm() || MI
.getOperand(i
).isGlobal()) {
3246 ErrInfo
= "Illegal immediate value for operand.";
3250 case AMDGPU::OPERAND_REG_IMM_INT32
:
3251 case AMDGPU::OPERAND_REG_IMM_FP32
:
3253 case AMDGPU::OPERAND_REG_INLINE_C_INT32
:
3254 case AMDGPU::OPERAND_REG_INLINE_C_FP32
:
3255 case AMDGPU::OPERAND_REG_INLINE_C_INT64
:
3256 case AMDGPU::OPERAND_REG_INLINE_C_FP64
:
3257 case AMDGPU::OPERAND_REG_INLINE_C_INT16
:
3258 case AMDGPU::OPERAND_REG_INLINE_C_FP16
:
3259 case AMDGPU::OPERAND_REG_INLINE_AC_INT32
:
3260 case AMDGPU::OPERAND_REG_INLINE_AC_FP32
:
3261 case AMDGPU::OPERAND_REG_INLINE_AC_INT16
:
3262 case AMDGPU::OPERAND_REG_INLINE_AC_FP16
: {
3263 const MachineOperand
&MO
= MI
.getOperand(i
);
3264 if (!MO
.isReg() && (!MO
.isImm() || !isInlineConstant(MI
, i
))) {
3265 ErrInfo
= "Illegal immediate value for operand.";
3270 case MCOI::OPERAND_IMMEDIATE
:
3271 case AMDGPU::OPERAND_KIMM32
:
3272 // Check if this operand is an immediate.
3273 // FrameIndex operands will be replaced by immediates, so they are
3275 if (!MI
.getOperand(i
).isImm() && !MI
.getOperand(i
).isFI()) {
3276 ErrInfo
= "Expected immediate, but got non-immediate";
3284 if (!MI
.getOperand(i
).isReg())
3287 if (RegClass
!= -1) {
3288 Register Reg
= MI
.getOperand(i
).getReg();
3289 if (Reg
== AMDGPU::NoRegister
|| Register::isVirtualRegister(Reg
))
3292 const TargetRegisterClass
*RC
= RI
.getRegClass(RegClass
);
3293 if (!RC
->contains(Reg
)) {
3294 ErrInfo
= "Operand has incorrect register class.";
3302 if (!ST
.hasSDWA()) {
3303 ErrInfo
= "SDWA is not supported on this target";
3307 int DstIdx
= AMDGPU::getNamedOperandIdx(Opcode
, AMDGPU::OpName::vdst
);
3309 const int OpIndicies
[] = { DstIdx
, Src0Idx
, Src1Idx
, Src2Idx
};
3311 for (int OpIdx
: OpIndicies
) {
3314 const MachineOperand
&MO
= MI
.getOperand(OpIdx
);
3316 if (!ST
.hasSDWAScalar()) {
3318 if (!MO
.isReg() || !RI
.hasVGPRs(RI
.getRegClassForReg(MRI
, MO
.getReg()))) {
3319 ErrInfo
= "Only VGPRs allowed as operands in SDWA instructions on VI";
3323 // No immediates on GFX9
3325 ErrInfo
= "Only reg allowed as operands in SDWA instructions on GFX9";
3331 if (!ST
.hasSDWAOmod()) {
3332 // No omod allowed on VI
3333 const MachineOperand
*OMod
= getNamedOperand(MI
, AMDGPU::OpName::omod
);
3334 if (OMod
!= nullptr &&
3335 (!OMod
->isImm() || OMod
->getImm() != 0)) {
3336 ErrInfo
= "OMod not allowed in SDWA instructions on VI";
3341 uint16_t BasicOpcode
= AMDGPU::getBasicFromSDWAOp(Opcode
);
3342 if (isVOPC(BasicOpcode
)) {
3343 if (!ST
.hasSDWASdst() && DstIdx
!= -1) {
3344 // Only vcc allowed as dst on VI for VOPC
3345 const MachineOperand
&Dst
= MI
.getOperand(DstIdx
);
3346 if (!Dst
.isReg() || Dst
.getReg() != AMDGPU::VCC
) {
3347 ErrInfo
= "Only VCC allowed as dst in SDWA instructions on VI";
3350 } else if (!ST
.hasSDWAOutModsVOPC()) {
3351 // No clamp allowed on GFX9 for VOPC
3352 const MachineOperand
*Clamp
= getNamedOperand(MI
, AMDGPU::OpName::clamp
);
3353 if (Clamp
&& (!Clamp
->isImm() || Clamp
->getImm() != 0)) {
3354 ErrInfo
= "Clamp not allowed in VOPC SDWA instructions on VI";
3358 // No omod allowed on GFX9 for VOPC
3359 const MachineOperand
*OMod
= getNamedOperand(MI
, AMDGPU::OpName::omod
);
3360 if (OMod
&& (!OMod
->isImm() || OMod
->getImm() != 0)) {
3361 ErrInfo
= "OMod not allowed in VOPC SDWA instructions on VI";
3367 const MachineOperand
*DstUnused
= getNamedOperand(MI
, AMDGPU::OpName::dst_unused
);
3368 if (DstUnused
&& DstUnused
->isImm() &&
3369 DstUnused
->getImm() == AMDGPU::SDWA::UNUSED_PRESERVE
) {
3370 const MachineOperand
&Dst
= MI
.getOperand(DstIdx
);
3371 if (!Dst
.isReg() || !Dst
.isTied()) {
3372 ErrInfo
= "Dst register should have tied register";
3376 const MachineOperand
&TiedMO
=
3377 MI
.getOperand(MI
.findTiedOperandIdx(DstIdx
));
3378 if (!TiedMO
.isReg() || !TiedMO
.isImplicit() || !TiedMO
.isUse()) {
3380 "Dst register should be tied to implicit use of preserved register";
3382 } else if (Register::isPhysicalRegister(TiedMO
.getReg()) &&
3383 Dst
.getReg() != TiedMO
.getReg()) {
3384 ErrInfo
= "Dst register should use same physical register as preserved";
3391 if (isMIMG(MI
.getOpcode()) && !MI
.mayStore()) {
3392 // Ensure that the return type used is large enough for all the options
3393 // being used TFE/LWE require an extra result register.
3394 const MachineOperand
*DMask
= getNamedOperand(MI
, AMDGPU::OpName::dmask
);
3396 uint64_t DMaskImm
= DMask
->getImm();
3398 isGather4(MI
.getOpcode()) ? 4 : countPopulation(DMaskImm
);
3399 const MachineOperand
*TFE
= getNamedOperand(MI
, AMDGPU::OpName::tfe
);
3400 const MachineOperand
*LWE
= getNamedOperand(MI
, AMDGPU::OpName::lwe
);
3401 const MachineOperand
*D16
= getNamedOperand(MI
, AMDGPU::OpName::d16
);
3403 // Adjust for packed 16 bit values
3404 if (D16
&& D16
->getImm() && !ST
.hasUnpackedD16VMem())
3407 // Adjust if using LWE or TFE
3408 if ((LWE
&& LWE
->getImm()) || (TFE
&& TFE
->getImm()))
3411 const uint32_t DstIdx
=
3412 AMDGPU::getNamedOperandIdx(MI
.getOpcode(), AMDGPU::OpName::vdata
);
3413 const MachineOperand
&Dst
= MI
.getOperand(DstIdx
);
3415 const TargetRegisterClass
*DstRC
= getOpRegClass(MI
, DstIdx
);
3416 uint32_t DstSize
= RI
.getRegSizeInBits(*DstRC
) / 32;
3417 if (RegCount
> DstSize
) {
3418 ErrInfo
= "MIMG instruction returns too many registers for dst "
3426 // Verify VOP*. Ignore multiple sgpr operands on writelane.
3427 if (Desc
.getOpcode() != AMDGPU::V_WRITELANE_B32
3428 && (isVOP1(MI
) || isVOP2(MI
) || isVOP3(MI
) || isVOPC(MI
) || isSDWA(MI
))) {
3429 // Only look at the true operands. Only a real operand can use the constant
3430 // bus, and we don't want to check pseudo-operands like the source modifier
3432 const int OpIndices
[] = { Src0Idx
, Src1Idx
, Src2Idx
};
3434 unsigned ConstantBusCount
= 0;
3435 unsigned LiteralCount
= 0;
3437 if (AMDGPU::getNamedOperandIdx(Opcode
, AMDGPU::OpName::imm
) != -1)
3440 SmallVector
<unsigned, 2> SGPRsUsed
;
3441 unsigned SGPRUsed
= findImplicitSGPRRead(MI
);
3442 if (SGPRUsed
!= AMDGPU::NoRegister
) {
3444 SGPRsUsed
.push_back(SGPRUsed
);
3447 for (int OpIdx
: OpIndices
) {
3450 const MachineOperand
&MO
= MI
.getOperand(OpIdx
);
3451 if (usesConstantBus(MRI
, MO
, MI
.getDesc().OpInfo
[OpIdx
])) {
3453 SGPRUsed
= MO
.getReg();
3454 if (llvm::all_of(SGPRsUsed
, [this, SGPRUsed
](unsigned SGPR
) {
3455 return !RI
.regsOverlap(SGPRUsed
, SGPR
);
3458 SGPRsUsed
.push_back(SGPRUsed
);
3466 const GCNSubtarget
&ST
= MF
->getSubtarget
<GCNSubtarget
>();
3467 // v_writelane_b32 is an exception from constant bus restriction:
3468 // vsrc0 can be sgpr, const or m0 and lane select sgpr, m0 or inline-const
3469 if (ConstantBusCount
> ST
.getConstantBusLimit(Opcode
) &&
3470 Opcode
!= AMDGPU::V_WRITELANE_B32
) {
3471 ErrInfo
= "VOP* instruction violates constant bus restriction";
3475 if (isVOP3(MI
) && LiteralCount
) {
3476 if (LiteralCount
&& !ST
.hasVOP3Literal()) {
3477 ErrInfo
= "VOP3 instruction uses literal";
3480 if (LiteralCount
> 1) {
3481 ErrInfo
= "VOP3 instruction uses more than one literal";
3487 // Special case for writelane - this can break the multiple constant bus rule,
3488 // but still can't use more than one SGPR register
3489 if (Desc
.getOpcode() == AMDGPU::V_WRITELANE_B32
) {
3490 unsigned SGPRCount
= 0;
3491 Register SGPRUsed
= AMDGPU::NoRegister
;
3493 for (int OpIdx
: {Src0Idx
, Src1Idx
, Src2Idx
}) {
3497 const MachineOperand
&MO
= MI
.getOperand(OpIdx
);
3499 if (usesConstantBus(MRI
, MO
, MI
.getDesc().OpInfo
[OpIdx
])) {
3500 if (MO
.isReg() && MO
.getReg() != AMDGPU::M0
) {
3501 if (MO
.getReg() != SGPRUsed
)
3503 SGPRUsed
= MO
.getReg();
3506 if (SGPRCount
> ST
.getConstantBusLimit(Opcode
)) {
3507 ErrInfo
= "WRITELANE instruction violates constant bus restriction";
3513 // Verify misc. restrictions on specific instructions.
3514 if (Desc
.getOpcode() == AMDGPU::V_DIV_SCALE_F32
||
3515 Desc
.getOpcode() == AMDGPU::V_DIV_SCALE_F64
) {
3516 const MachineOperand
&Src0
= MI
.getOperand(Src0Idx
);
3517 const MachineOperand
&Src1
= MI
.getOperand(Src1Idx
);
3518 const MachineOperand
&Src2
= MI
.getOperand(Src2Idx
);
3519 if (Src0
.isReg() && Src1
.isReg() && Src2
.isReg()) {
3520 if (!compareMachineOp(Src0
, Src1
) &&
3521 !compareMachineOp(Src0
, Src2
)) {
3522 ErrInfo
= "v_div_scale_{f32|f64} require src0 = src1 or src2";
3528 if (isSOP2(MI
) || isSOPC(MI
)) {
3529 const MachineOperand
&Src0
= MI
.getOperand(Src0Idx
);
3530 const MachineOperand
&Src1
= MI
.getOperand(Src1Idx
);
3531 unsigned Immediates
= 0;
3533 if (!Src0
.isReg() &&
3534 !isInlineConstant(Src0
, Desc
.OpInfo
[Src0Idx
].OperandType
))
3536 if (!Src1
.isReg() &&
3537 !isInlineConstant(Src1
, Desc
.OpInfo
[Src1Idx
].OperandType
))
3540 if (Immediates
> 1) {
3541 ErrInfo
= "SOP2/SOPC instruction requires too many immediate constants";
3547 auto Op
= getNamedOperand(MI
, AMDGPU::OpName::simm16
);
3548 if (Desc
.isBranch()) {
3550 ErrInfo
= "invalid branch target for SOPK instruction";
3554 uint64_t Imm
= Op
->getImm();
3555 if (sopkIsZext(MI
)) {
3556 if (!isUInt
<16>(Imm
)) {
3557 ErrInfo
= "invalid immediate for SOPK instruction";
3561 if (!isInt
<16>(Imm
)) {
3562 ErrInfo
= "invalid immediate for SOPK instruction";
3569 if (Desc
.getOpcode() == AMDGPU::V_MOVRELS_B32_e32
||
3570 Desc
.getOpcode() == AMDGPU::V_MOVRELS_B32_e64
||
3571 Desc
.getOpcode() == AMDGPU::V_MOVRELD_B32_e32
||
3572 Desc
.getOpcode() == AMDGPU::V_MOVRELD_B32_e64
) {
3573 const bool IsDst
= Desc
.getOpcode() == AMDGPU::V_MOVRELD_B32_e32
||
3574 Desc
.getOpcode() == AMDGPU::V_MOVRELD_B32_e64
;
3576 const unsigned StaticNumOps
= Desc
.getNumOperands() +
3577 Desc
.getNumImplicitUses();
3578 const unsigned NumImplicitOps
= IsDst
? 2 : 1;
3580 // Allow additional implicit operands. This allows a fixup done by the post
3581 // RA scheduler where the main implicit operand is killed and implicit-defs
3582 // are added for sub-registers that remain live after this instruction.
3583 if (MI
.getNumOperands() < StaticNumOps
+ NumImplicitOps
) {
3584 ErrInfo
= "missing implicit register operands";
3588 const MachineOperand
*Dst
= getNamedOperand(MI
, AMDGPU::OpName::vdst
);
3590 if (!Dst
->isUse()) {
3591 ErrInfo
= "v_movreld_b32 vdst should be a use operand";
3596 if (!MI
.isRegTiedToUseOperand(StaticNumOps
, &UseOpIdx
) ||
3597 UseOpIdx
!= StaticNumOps
+ 1) {
3598 ErrInfo
= "movrel implicit operands should be tied";
3603 const MachineOperand
&Src0
= MI
.getOperand(Src0Idx
);
3604 const MachineOperand
&ImpUse
3605 = MI
.getOperand(StaticNumOps
+ NumImplicitOps
- 1);
3606 if (!ImpUse
.isReg() || !ImpUse
.isUse() ||
3607 !isSubRegOf(RI
, ImpUse
, IsDst
? *Dst
: Src0
)) {
3608 ErrInfo
= "src0 should be subreg of implicit vector use";
3613 // Make sure we aren't losing exec uses in the td files. This mostly requires
3614 // being careful when using let Uses to try to add other use registers.
3615 if (shouldReadExec(MI
)) {
3616 if (!MI
.hasRegisterImplicitUseOperand(AMDGPU::EXEC
)) {
3617 ErrInfo
= "VALU instruction does not implicitly read exec mask";
3623 if (MI
.mayStore()) {
3624 // The register offset form of scalar stores may only use m0 as the
3625 // soffset register.
3626 const MachineOperand
*Soff
= getNamedOperand(MI
, AMDGPU::OpName::soff
);
3627 if (Soff
&& Soff
->getReg() != AMDGPU::M0
) {
3628 ErrInfo
= "scalar stores must use m0 as offset register";
3634 if (isFLAT(MI
) && !MF
->getSubtarget
<GCNSubtarget
>().hasFlatInstOffsets()) {
3635 const MachineOperand
*Offset
= getNamedOperand(MI
, AMDGPU::OpName::offset
);
3636 if (Offset
->getImm() != 0) {
3637 ErrInfo
= "subtarget does not support offsets in flat instructions";
3643 const MachineOperand
*DimOp
= getNamedOperand(MI
, AMDGPU::OpName::dim
);
3645 int VAddr0Idx
= AMDGPU::getNamedOperandIdx(Opcode
,
3646 AMDGPU::OpName::vaddr0
);
3647 int SRsrcIdx
= AMDGPU::getNamedOperandIdx(Opcode
, AMDGPU::OpName::srsrc
);
3648 const AMDGPU::MIMGInfo
*Info
= AMDGPU::getMIMGInfo(Opcode
);
3649 const AMDGPU::MIMGBaseOpcodeInfo
*BaseOpcode
=
3650 AMDGPU::getMIMGBaseOpcodeInfo(Info
->BaseOpcode
);
3651 const AMDGPU::MIMGDimInfo
*Dim
=
3652 AMDGPU::getMIMGDimInfoByEncoding(DimOp
->getImm());
3655 ErrInfo
= "dim is out of range";
3659 bool IsNSA
= SRsrcIdx
- VAddr0Idx
> 1;
3660 unsigned AddrWords
= BaseOpcode
->NumExtraArgs
+
3661 (BaseOpcode
->Gradients
? Dim
->NumGradients
: 0) +
3662 (BaseOpcode
->Coordinates
? Dim
->NumCoords
: 0) +
3663 (BaseOpcode
->LodOrClampOrMip
? 1 : 0);
3665 unsigned VAddrWords
;
3667 VAddrWords
= SRsrcIdx
- VAddr0Idx
;
3669 const TargetRegisterClass
*RC
= getOpRegClass(MI
, VAddr0Idx
);
3670 VAddrWords
= MRI
.getTargetRegisterInfo()->getRegSizeInBits(*RC
) / 32;
3673 else if (AddrWords
> 4)
3675 else if (AddrWords
== 3 && VAddrWords
== 4) {
3676 // CodeGen uses the V4 variant of instructions for three addresses,
3677 // because the selection DAG does not support non-power-of-two types.
3682 if (VAddrWords
!= AddrWords
) {
3683 ErrInfo
= "bad vaddr size";
3689 const MachineOperand
*DppCt
= getNamedOperand(MI
, AMDGPU::OpName::dpp_ctrl
);
3691 using namespace AMDGPU::DPP
;
3693 unsigned DC
= DppCt
->getImm();
3694 if (DC
== DppCtrl::DPP_UNUSED1
|| DC
== DppCtrl::DPP_UNUSED2
||
3695 DC
== DppCtrl::DPP_UNUSED3
|| DC
> DppCtrl::DPP_LAST
||
3696 (DC
>= DppCtrl::DPP_UNUSED4_FIRST
&& DC
<= DppCtrl::DPP_UNUSED4_LAST
) ||
3697 (DC
>= DppCtrl::DPP_UNUSED5_FIRST
&& DC
<= DppCtrl::DPP_UNUSED5_LAST
) ||
3698 (DC
>= DppCtrl::DPP_UNUSED6_FIRST
&& DC
<= DppCtrl::DPP_UNUSED6_LAST
) ||
3699 (DC
>= DppCtrl::DPP_UNUSED7_FIRST
&& DC
<= DppCtrl::DPP_UNUSED7_LAST
) ||
3700 (DC
>= DppCtrl::DPP_UNUSED8_FIRST
&& DC
<= DppCtrl::DPP_UNUSED8_LAST
)) {
3701 ErrInfo
= "Invalid dpp_ctrl value";
3704 if (DC
>= DppCtrl::WAVE_SHL1
&& DC
<= DppCtrl::WAVE_ROR1
&&
3705 ST
.getGeneration() >= AMDGPUSubtarget::GFX10
) {
3706 ErrInfo
= "Invalid dpp_ctrl value: "
3707 "wavefront shifts are not supported on GFX10+";
3710 if (DC
>= DppCtrl::BCAST15
&& DC
<= DppCtrl::BCAST31
&&
3711 ST
.getGeneration() >= AMDGPUSubtarget::GFX10
) {
3712 ErrInfo
= "Invalid dpp_ctrl value: "
3713 "broadcasts are not supported on GFX10+";
3716 if (DC
>= DppCtrl::ROW_SHARE_FIRST
&& DC
<= DppCtrl::ROW_XMASK_LAST
&&
3717 ST
.getGeneration() < AMDGPUSubtarget::GFX10
) {
3718 ErrInfo
= "Invalid dpp_ctrl value: "
3719 "row_share and row_xmask are not supported before GFX10";
3727 unsigned SIInstrInfo::getVALUOp(const MachineInstr
&MI
) const {
3728 switch (MI
.getOpcode()) {
3729 default: return AMDGPU::INSTRUCTION_LIST_END
;
3730 case AMDGPU::REG_SEQUENCE
: return AMDGPU::REG_SEQUENCE
;
3731 case AMDGPU::COPY
: return AMDGPU::COPY
;
3732 case AMDGPU::PHI
: return AMDGPU::PHI
;
3733 case AMDGPU::INSERT_SUBREG
: return AMDGPU::INSERT_SUBREG
;
3734 case AMDGPU::WQM
: return AMDGPU::WQM
;
3735 case AMDGPU::SOFT_WQM
: return AMDGPU::SOFT_WQM
;
3736 case AMDGPU::WWM
: return AMDGPU::WWM
;
3737 case AMDGPU::S_MOV_B32
: {
3738 const MachineRegisterInfo
&MRI
= MI
.getParent()->getParent()->getRegInfo();
3739 return MI
.getOperand(1).isReg() ||
3740 RI
.isAGPR(MRI
, MI
.getOperand(0).getReg()) ?
3741 AMDGPU::COPY
: AMDGPU::V_MOV_B32_e32
;
3743 case AMDGPU::S_ADD_I32
:
3744 return ST
.hasAddNoCarry() ? AMDGPU::V_ADD_U32_e64
: AMDGPU::V_ADD_I32_e32
;
3745 case AMDGPU::S_ADDC_U32
:
3746 return AMDGPU::V_ADDC_U32_e32
;
3747 case AMDGPU::S_SUB_I32
:
3748 return ST
.hasAddNoCarry() ? AMDGPU::V_SUB_U32_e64
: AMDGPU::V_SUB_I32_e32
;
3749 // FIXME: These are not consistently handled, and selected when the carry is
3751 case AMDGPU::S_ADD_U32
:
3752 return AMDGPU::V_ADD_I32_e32
;
3753 case AMDGPU::S_SUB_U32
:
3754 return AMDGPU::V_SUB_I32_e32
;
3755 case AMDGPU::S_SUBB_U32
: return AMDGPU::V_SUBB_U32_e32
;
3756 case AMDGPU::S_MUL_I32
: return AMDGPU::V_MUL_LO_U32
;
3757 case AMDGPU::S_MUL_HI_U32
: return AMDGPU::V_MUL_HI_U32
;
3758 case AMDGPU::S_MUL_HI_I32
: return AMDGPU::V_MUL_HI_I32
;
3759 case AMDGPU::S_AND_B32
: return AMDGPU::V_AND_B32_e64
;
3760 case AMDGPU::S_OR_B32
: return AMDGPU::V_OR_B32_e64
;
3761 case AMDGPU::S_XOR_B32
: return AMDGPU::V_XOR_B32_e64
;
3762 case AMDGPU::S_XNOR_B32
:
3763 return ST
.hasDLInsts() ? AMDGPU::V_XNOR_B32_e64
: AMDGPU::INSTRUCTION_LIST_END
;
3764 case AMDGPU::S_MIN_I32
: return AMDGPU::V_MIN_I32_e64
;
3765 case AMDGPU::S_MIN_U32
: return AMDGPU::V_MIN_U32_e64
;
3766 case AMDGPU::S_MAX_I32
: return AMDGPU::V_MAX_I32_e64
;
3767 case AMDGPU::S_MAX_U32
: return AMDGPU::V_MAX_U32_e64
;
3768 case AMDGPU::S_ASHR_I32
: return AMDGPU::V_ASHR_I32_e32
;
3769 case AMDGPU::S_ASHR_I64
: return AMDGPU::V_ASHR_I64
;
3770 case AMDGPU::S_LSHL_B32
: return AMDGPU::V_LSHL_B32_e32
;
3771 case AMDGPU::S_LSHL_B64
: return AMDGPU::V_LSHL_B64
;
3772 case AMDGPU::S_LSHR_B32
: return AMDGPU::V_LSHR_B32_e32
;
3773 case AMDGPU::S_LSHR_B64
: return AMDGPU::V_LSHR_B64
;
3774 case AMDGPU::S_SEXT_I32_I8
: return AMDGPU::V_BFE_I32
;
3775 case AMDGPU::S_SEXT_I32_I16
: return AMDGPU::V_BFE_I32
;
3776 case AMDGPU::S_BFE_U32
: return AMDGPU::V_BFE_U32
;
3777 case AMDGPU::S_BFE_I32
: return AMDGPU::V_BFE_I32
;
3778 case AMDGPU::S_BFM_B32
: return AMDGPU::V_BFM_B32_e64
;
3779 case AMDGPU::S_BREV_B32
: return AMDGPU::V_BFREV_B32_e32
;
3780 case AMDGPU::S_NOT_B32
: return AMDGPU::V_NOT_B32_e32
;
3781 case AMDGPU::S_NOT_B64
: return AMDGPU::V_NOT_B32_e32
;
3782 case AMDGPU::S_CMP_EQ_I32
: return AMDGPU::V_CMP_EQ_I32_e32
;
3783 case AMDGPU::S_CMP_LG_I32
: return AMDGPU::V_CMP_NE_I32_e32
;
3784 case AMDGPU::S_CMP_GT_I32
: return AMDGPU::V_CMP_GT_I32_e32
;
3785 case AMDGPU::S_CMP_GE_I32
: return AMDGPU::V_CMP_GE_I32_e32
;
3786 case AMDGPU::S_CMP_LT_I32
: return AMDGPU::V_CMP_LT_I32_e32
;
3787 case AMDGPU::S_CMP_LE_I32
: return AMDGPU::V_CMP_LE_I32_e32
;
3788 case AMDGPU::S_CMP_EQ_U32
: return AMDGPU::V_CMP_EQ_U32_e32
;
3789 case AMDGPU::S_CMP_LG_U32
: return AMDGPU::V_CMP_NE_U32_e32
;
3790 case AMDGPU::S_CMP_GT_U32
: return AMDGPU::V_CMP_GT_U32_e32
;
3791 case AMDGPU::S_CMP_GE_U32
: return AMDGPU::V_CMP_GE_U32_e32
;
3792 case AMDGPU::S_CMP_LT_U32
: return AMDGPU::V_CMP_LT_U32_e32
;
3793 case AMDGPU::S_CMP_LE_U32
: return AMDGPU::V_CMP_LE_U32_e32
;
3794 case AMDGPU::S_CMP_EQ_U64
: return AMDGPU::V_CMP_EQ_U64_e32
;
3795 case AMDGPU::S_CMP_LG_U64
: return AMDGPU::V_CMP_NE_U64_e32
;
3796 case AMDGPU::S_BCNT1_I32_B32
: return AMDGPU::V_BCNT_U32_B32_e64
;
3797 case AMDGPU::S_FF1_I32_B32
: return AMDGPU::V_FFBL_B32_e32
;
3798 case AMDGPU::S_FLBIT_I32_B32
: return AMDGPU::V_FFBH_U32_e32
;
3799 case AMDGPU::S_FLBIT_I32
: return AMDGPU::V_FFBH_I32_e64
;
3800 case AMDGPU::S_CBRANCH_SCC0
: return AMDGPU::S_CBRANCH_VCCZ
;
3801 case AMDGPU::S_CBRANCH_SCC1
: return AMDGPU::S_CBRANCH_VCCNZ
;
3804 "Unexpected scalar opcode without corresponding vector one!");
3807 const TargetRegisterClass
*SIInstrInfo::getOpRegClass(const MachineInstr
&MI
,
3808 unsigned OpNo
) const {
3809 const MachineRegisterInfo
&MRI
= MI
.getParent()->getParent()->getRegInfo();
3810 const MCInstrDesc
&Desc
= get(MI
.getOpcode());
3811 if (MI
.isVariadic() || OpNo
>= Desc
.getNumOperands() ||
3812 Desc
.OpInfo
[OpNo
].RegClass
== -1) {
3813 Register Reg
= MI
.getOperand(OpNo
).getReg();
3815 if (Register::isVirtualRegister(Reg
))
3816 return MRI
.getRegClass(Reg
);
3817 return RI
.getPhysRegClass(Reg
);
3820 unsigned RCID
= Desc
.OpInfo
[OpNo
].RegClass
;
3821 return RI
.getRegClass(RCID
);
3824 void SIInstrInfo::legalizeOpWithMove(MachineInstr
&MI
, unsigned OpIdx
) const {
3825 MachineBasicBlock::iterator I
= MI
;
3826 MachineBasicBlock
*MBB
= MI
.getParent();
3827 MachineOperand
&MO
= MI
.getOperand(OpIdx
);
3828 MachineRegisterInfo
&MRI
= MBB
->getParent()->getRegInfo();
3829 const SIRegisterInfo
*TRI
=
3830 static_cast<const SIRegisterInfo
*>(MRI
.getTargetRegisterInfo());
3831 unsigned RCID
= get(MI
.getOpcode()).OpInfo
[OpIdx
].RegClass
;
3832 const TargetRegisterClass
*RC
= RI
.getRegClass(RCID
);
3833 unsigned Size
= TRI
->getRegSizeInBits(*RC
);
3834 unsigned Opcode
= (Size
== 64) ? AMDGPU::V_MOV_B64_PSEUDO
: AMDGPU::V_MOV_B32_e32
;
3836 Opcode
= AMDGPU::COPY
;
3837 else if (RI
.isSGPRClass(RC
))
3838 Opcode
= (Size
== 64) ? AMDGPU::S_MOV_B64
: AMDGPU::S_MOV_B32
;
3840 const TargetRegisterClass
*VRC
= RI
.getEquivalentVGPRClass(RC
);
3841 if (RI
.getCommonSubClass(&AMDGPU::VReg_64RegClass
, VRC
))
3842 VRC
= &AMDGPU::VReg_64RegClass
;
3844 VRC
= &AMDGPU::VGPR_32RegClass
;
3846 Register Reg
= MRI
.createVirtualRegister(VRC
);
3847 DebugLoc DL
= MBB
->findDebugLoc(I
);
3848 BuildMI(*MI
.getParent(), I
, DL
, get(Opcode
), Reg
).add(MO
);
3849 MO
.ChangeToRegister(Reg
, false);
3852 unsigned SIInstrInfo::buildExtractSubReg(MachineBasicBlock::iterator MI
,
3853 MachineRegisterInfo
&MRI
,
3854 MachineOperand
&SuperReg
,
3855 const TargetRegisterClass
*SuperRC
,
3857 const TargetRegisterClass
*SubRC
)
3859 MachineBasicBlock
*MBB
= MI
->getParent();
3860 DebugLoc DL
= MI
->getDebugLoc();
3861 Register SubReg
= MRI
.createVirtualRegister(SubRC
);
3863 if (SuperReg
.getSubReg() == AMDGPU::NoSubRegister
) {
3864 BuildMI(*MBB
, MI
, DL
, get(TargetOpcode::COPY
), SubReg
)
3865 .addReg(SuperReg
.getReg(), 0, SubIdx
);
3869 // Just in case the super register is itself a sub-register, copy it to a new
3870 // value so we don't need to worry about merging its subreg index with the
3871 // SubIdx passed to this function. The register coalescer should be able to
3872 // eliminate this extra copy.
3873 Register NewSuperReg
= MRI
.createVirtualRegister(SuperRC
);
3875 BuildMI(*MBB
, MI
, DL
, get(TargetOpcode::COPY
), NewSuperReg
)
3876 .addReg(SuperReg
.getReg(), 0, SuperReg
.getSubReg());
3878 BuildMI(*MBB
, MI
, DL
, get(TargetOpcode::COPY
), SubReg
)
3879 .addReg(NewSuperReg
, 0, SubIdx
);
3884 MachineOperand
SIInstrInfo::buildExtractSubRegOrImm(
3885 MachineBasicBlock::iterator MII
,
3886 MachineRegisterInfo
&MRI
,
3888 const TargetRegisterClass
*SuperRC
,
3890 const TargetRegisterClass
*SubRC
) const {
3892 if (SubIdx
== AMDGPU::sub0
)
3893 return MachineOperand::CreateImm(static_cast<int32_t>(Op
.getImm()));
3894 if (SubIdx
== AMDGPU::sub1
)
3895 return MachineOperand::CreateImm(static_cast<int32_t>(Op
.getImm() >> 32));
3897 llvm_unreachable("Unhandled register index for immediate");
3900 unsigned SubReg
= buildExtractSubReg(MII
, MRI
, Op
, SuperRC
,
3902 return MachineOperand::CreateReg(SubReg
, false);
3905 // Change the order of operands from (0, 1, 2) to (0, 2, 1)
3906 void SIInstrInfo::swapOperands(MachineInstr
&Inst
) const {
3907 assert(Inst
.getNumExplicitOperands() == 3);
3908 MachineOperand Op1
= Inst
.getOperand(1);
3909 Inst
.RemoveOperand(1);
3910 Inst
.addOperand(Op1
);
3913 bool SIInstrInfo::isLegalRegOperand(const MachineRegisterInfo
&MRI
,
3914 const MCOperandInfo
&OpInfo
,
3915 const MachineOperand
&MO
) const {
3919 Register Reg
= MO
.getReg();
3920 const TargetRegisterClass
*RC
= Register::isVirtualRegister(Reg
)
3921 ? MRI
.getRegClass(Reg
)
3922 : RI
.getPhysRegClass(Reg
);
3924 const SIRegisterInfo
*TRI
=
3925 static_cast<const SIRegisterInfo
*>(MRI
.getTargetRegisterInfo());
3926 RC
= TRI
->getSubRegClass(RC
, MO
.getSubReg());
3928 // In order to be legal, the common sub-class must be equal to the
3929 // class of the current operand. For example:
3931 // v_mov_b32 s0 ; Operand defined as vsrc_b32
3932 // ; RI.getCommonSubClass(s0,vsrc_b32) = sgpr ; LEGAL
3934 // s_sendmsg 0, s0 ; Operand defined as m0reg
3935 // ; RI.getCommonSubClass(s0,m0reg) = m0reg ; NOT LEGAL
3937 return RI
.getCommonSubClass(RC
, RI
.getRegClass(OpInfo
.RegClass
)) == RC
;
3940 bool SIInstrInfo::isLegalVSrcOperand(const MachineRegisterInfo
&MRI
,
3941 const MCOperandInfo
&OpInfo
,
3942 const MachineOperand
&MO
) const {
3944 return isLegalRegOperand(MRI
, OpInfo
, MO
);
3946 // Handle non-register types that are treated like immediates.
3947 assert(MO
.isImm() || MO
.isTargetIndex() || MO
.isFI() || MO
.isGlobal());
3951 bool SIInstrInfo::isOperandLegal(const MachineInstr
&MI
, unsigned OpIdx
,
3952 const MachineOperand
*MO
) const {
3953 const MachineFunction
&MF
= *MI
.getParent()->getParent();
3954 const MachineRegisterInfo
&MRI
= MF
.getRegInfo();
3955 const MCInstrDesc
&InstDesc
= MI
.getDesc();
3956 const MCOperandInfo
&OpInfo
= InstDesc
.OpInfo
[OpIdx
];
3957 const GCNSubtarget
&ST
= MF
.getSubtarget
<GCNSubtarget
>();
3958 const TargetRegisterClass
*DefinedRC
=
3959 OpInfo
.RegClass
!= -1 ? RI
.getRegClass(OpInfo
.RegClass
) : nullptr;
3961 MO
= &MI
.getOperand(OpIdx
);
3963 int ConstantBusLimit
= ST
.getConstantBusLimit(MI
.getOpcode());
3964 int VOP3LiteralLimit
= ST
.hasVOP3Literal() ? 1 : 0;
3965 if (isVALU(MI
) && usesConstantBus(MRI
, *MO
, OpInfo
)) {
3966 if (isVOP3(MI
) && isLiteralConstantLike(*MO
, OpInfo
) && !VOP3LiteralLimit
--)
3969 SmallDenseSet
<RegSubRegPair
> SGPRsUsed
;
3971 SGPRsUsed
.insert(RegSubRegPair(MO
->getReg(), MO
->getSubReg()));
3973 for (unsigned i
= 0, e
= MI
.getNumOperands(); i
!= e
; ++i
) {
3976 const MachineOperand
&Op
= MI
.getOperand(i
);
3978 RegSubRegPair
SGPR(Op
.getReg(), Op
.getSubReg());
3979 if (!SGPRsUsed
.count(SGPR
) &&
3980 usesConstantBus(MRI
, Op
, InstDesc
.OpInfo
[i
])) {
3981 if (--ConstantBusLimit
<= 0)
3983 SGPRsUsed
.insert(SGPR
);
3985 } else if (InstDesc
.OpInfo
[i
].OperandType
== AMDGPU::OPERAND_KIMM32
) {
3986 if (--ConstantBusLimit
<= 0)
3988 } else if (isVOP3(MI
) && AMDGPU::isSISrcOperand(InstDesc
, i
) &&
3989 isLiteralConstantLike(Op
, InstDesc
.OpInfo
[i
])) {
3990 if (!VOP3LiteralLimit
--)
3992 if (--ConstantBusLimit
<= 0)
4000 return isLegalRegOperand(MRI
, OpInfo
, *MO
);
4003 // Handle non-register types that are treated like immediates.
4004 assert(MO
->isImm() || MO
->isTargetIndex() || MO
->isFI() || MO
->isGlobal());
4007 // This operand expects an immediate.
4011 return isImmOperandLegal(MI
, OpIdx
, *MO
);
4014 void SIInstrInfo::legalizeOperandsVOP2(MachineRegisterInfo
&MRI
,
4015 MachineInstr
&MI
) const {
4016 unsigned Opc
= MI
.getOpcode();
4017 const MCInstrDesc
&InstrDesc
= get(Opc
);
4019 int Src0Idx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src0
);
4020 MachineOperand
&Src0
= MI
.getOperand(Src0Idx
);
4022 int Src1Idx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src1
);
4023 MachineOperand
&Src1
= MI
.getOperand(Src1Idx
);
4025 // If there is an implicit SGPR use such as VCC use for v_addc_u32/v_subb_u32
4026 // we need to only have one constant bus use before GFX10.
4027 bool HasImplicitSGPR
= findImplicitSGPRRead(MI
) != AMDGPU::NoRegister
;
4028 if (HasImplicitSGPR
&& ST
.getConstantBusLimit(Opc
) <= 1 &&
4029 Src0
.isReg() && (RI
.isSGPRReg(MRI
, Src0
.getReg()) ||
4030 isLiteralConstantLike(Src0
, InstrDesc
.OpInfo
[Src0Idx
])))
4031 legalizeOpWithMove(MI
, Src0Idx
);
4033 // Special case: V_WRITELANE_B32 accepts only immediate or SGPR operands for
4034 // both the value to write (src0) and lane select (src1). Fix up non-SGPR
4035 // src0/src1 with V_READFIRSTLANE.
4036 if (Opc
== AMDGPU::V_WRITELANE_B32
) {
4037 const DebugLoc
&DL
= MI
.getDebugLoc();
4038 if (Src0
.isReg() && RI
.isVGPR(MRI
, Src0
.getReg())) {
4039 Register Reg
= MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
4040 BuildMI(*MI
.getParent(), MI
, DL
, get(AMDGPU::V_READFIRSTLANE_B32
), Reg
)
4042 Src0
.ChangeToRegister(Reg
, false);
4044 if (Src1
.isReg() && RI
.isVGPR(MRI
, Src1
.getReg())) {
4045 Register Reg
= MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
4046 const DebugLoc
&DL
= MI
.getDebugLoc();
4047 BuildMI(*MI
.getParent(), MI
, DL
, get(AMDGPU::V_READFIRSTLANE_B32
), Reg
)
4049 Src1
.ChangeToRegister(Reg
, false);
4054 // No VOP2 instructions support AGPRs.
4055 if (Src0
.isReg() && RI
.isAGPR(MRI
, Src0
.getReg()))
4056 legalizeOpWithMove(MI
, Src0Idx
);
4058 if (Src1
.isReg() && RI
.isAGPR(MRI
, Src1
.getReg()))
4059 legalizeOpWithMove(MI
, Src1Idx
);
4061 // VOP2 src0 instructions support all operand types, so we don't need to check
4062 // their legality. If src1 is already legal, we don't need to do anything.
4063 if (isLegalRegOperand(MRI
, InstrDesc
.OpInfo
[Src1Idx
], Src1
))
4066 // Special case: V_READLANE_B32 accepts only immediate or SGPR operands for
4067 // lane select. Fix up using V_READFIRSTLANE, since we assume that the lane
4068 // select is uniform.
4069 if (Opc
== AMDGPU::V_READLANE_B32
&& Src1
.isReg() &&
4070 RI
.isVGPR(MRI
, Src1
.getReg())) {
4071 Register Reg
= MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
4072 const DebugLoc
&DL
= MI
.getDebugLoc();
4073 BuildMI(*MI
.getParent(), MI
, DL
, get(AMDGPU::V_READFIRSTLANE_B32
), Reg
)
4075 Src1
.ChangeToRegister(Reg
, false);
4079 // We do not use commuteInstruction here because it is too aggressive and will
4080 // commute if it is possible. We only want to commute here if it improves
4081 // legality. This can be called a fairly large number of times so don't waste
4082 // compile time pointlessly swapping and checking legality again.
4083 if (HasImplicitSGPR
|| !MI
.isCommutable()) {
4084 legalizeOpWithMove(MI
, Src1Idx
);
4088 // If src0 can be used as src1, commuting will make the operands legal.
4089 // Otherwise we have to give up and insert a move.
4091 // TODO: Other immediate-like operand kinds could be commuted if there was a
4092 // MachineOperand::ChangeTo* for them.
4093 if ((!Src1
.isImm() && !Src1
.isReg()) ||
4094 !isLegalRegOperand(MRI
, InstrDesc
.OpInfo
[Src1Idx
], Src0
)) {
4095 legalizeOpWithMove(MI
, Src1Idx
);
4099 int CommutedOpc
= commuteOpcode(MI
);
4100 if (CommutedOpc
== -1) {
4101 legalizeOpWithMove(MI
, Src1Idx
);
4105 MI
.setDesc(get(CommutedOpc
));
4107 Register Src0Reg
= Src0
.getReg();
4108 unsigned Src0SubReg
= Src0
.getSubReg();
4109 bool Src0Kill
= Src0
.isKill();
4112 Src0
.ChangeToImmediate(Src1
.getImm());
4113 else if (Src1
.isReg()) {
4114 Src0
.ChangeToRegister(Src1
.getReg(), false, false, Src1
.isKill());
4115 Src0
.setSubReg(Src1
.getSubReg());
4117 llvm_unreachable("Should only have register or immediate operands");
4119 Src1
.ChangeToRegister(Src0Reg
, false, false, Src0Kill
);
4120 Src1
.setSubReg(Src0SubReg
);
4121 fixImplicitOperands(MI
);
4124 // Legalize VOP3 operands. All operand types are supported for any operand
4125 // but only one literal constant and only starting from GFX10.
4126 void SIInstrInfo::legalizeOperandsVOP3(MachineRegisterInfo
&MRI
,
4127 MachineInstr
&MI
) const {
4128 unsigned Opc
= MI
.getOpcode();
4131 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src0
),
4132 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src1
),
4133 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src2
)
4136 if (Opc
== AMDGPU::V_PERMLANE16_B32
||
4137 Opc
== AMDGPU::V_PERMLANEX16_B32
) {
4138 // src1 and src2 must be scalar
4139 MachineOperand
&Src1
= MI
.getOperand(VOP3Idx
[1]);
4140 MachineOperand
&Src2
= MI
.getOperand(VOP3Idx
[2]);
4141 const DebugLoc
&DL
= MI
.getDebugLoc();
4142 if (Src1
.isReg() && !RI
.isSGPRClass(MRI
.getRegClass(Src1
.getReg()))) {
4143 Register Reg
= MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
4144 BuildMI(*MI
.getParent(), MI
, DL
, get(AMDGPU::V_READFIRSTLANE_B32
), Reg
)
4146 Src1
.ChangeToRegister(Reg
, false);
4148 if (Src2
.isReg() && !RI
.isSGPRClass(MRI
.getRegClass(Src2
.getReg()))) {
4149 Register Reg
= MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
4150 BuildMI(*MI
.getParent(), MI
, DL
, get(AMDGPU::V_READFIRSTLANE_B32
), Reg
)
4152 Src2
.ChangeToRegister(Reg
, false);
4156 // Find the one SGPR operand we are allowed to use.
4157 int ConstantBusLimit
= ST
.getConstantBusLimit(Opc
);
4158 int LiteralLimit
= ST
.hasVOP3Literal() ? 1 : 0;
4159 SmallDenseSet
<unsigned> SGPRsUsed
;
4160 unsigned SGPRReg
= findUsedSGPR(MI
, VOP3Idx
);
4161 if (SGPRReg
!= AMDGPU::NoRegister
) {
4162 SGPRsUsed
.insert(SGPRReg
);
4166 for (unsigned i
= 0; i
< 3; ++i
) {
4167 int Idx
= VOP3Idx
[i
];
4170 MachineOperand
&MO
= MI
.getOperand(Idx
);
4173 if (!isLiteralConstantLike(MO
, get(Opc
).OpInfo
[Idx
]))
4176 if (LiteralLimit
> 0 && ConstantBusLimit
> 0) {
4184 legalizeOpWithMove(MI
, Idx
);
4188 if (RI
.hasAGPRs(MRI
.getRegClass(MO
.getReg())) &&
4189 !isOperandLegal(MI
, Idx
, &MO
)) {
4190 legalizeOpWithMove(MI
, Idx
);
4194 if (!RI
.isSGPRClass(MRI
.getRegClass(MO
.getReg())))
4195 continue; // VGPRs are legal
4197 // We can use one SGPR in each VOP3 instruction prior to GFX10
4198 // and two starting from GFX10.
4199 if (SGPRsUsed
.count(MO
.getReg()))
4201 if (ConstantBusLimit
> 0) {
4202 SGPRsUsed
.insert(MO
.getReg());
4207 // If we make it this far, then the operand is not legal and we must
4209 legalizeOpWithMove(MI
, Idx
);
4213 unsigned SIInstrInfo::readlaneVGPRToSGPR(unsigned SrcReg
, MachineInstr
&UseMI
,
4214 MachineRegisterInfo
&MRI
) const {
4215 const TargetRegisterClass
*VRC
= MRI
.getRegClass(SrcReg
);
4216 const TargetRegisterClass
*SRC
= RI
.getEquivalentSGPRClass(VRC
);
4217 Register DstReg
= MRI
.createVirtualRegister(SRC
);
4218 unsigned SubRegs
= RI
.getRegSizeInBits(*VRC
) / 32;
4220 if (RI
.hasAGPRs(VRC
)) {
4221 VRC
= RI
.getEquivalentVGPRClass(VRC
);
4222 Register NewSrcReg
= MRI
.createVirtualRegister(VRC
);
4223 BuildMI(*UseMI
.getParent(), UseMI
, UseMI
.getDebugLoc(),
4224 get(TargetOpcode::COPY
), NewSrcReg
)
4230 BuildMI(*UseMI
.getParent(), UseMI
, UseMI
.getDebugLoc(),
4231 get(AMDGPU::V_READFIRSTLANE_B32
), DstReg
)
4236 SmallVector
<unsigned, 8> SRegs
;
4237 for (unsigned i
= 0; i
< SubRegs
; ++i
) {
4238 Register SGPR
= MRI
.createVirtualRegister(&AMDGPU::SGPR_32RegClass
);
4239 BuildMI(*UseMI
.getParent(), UseMI
, UseMI
.getDebugLoc(),
4240 get(AMDGPU::V_READFIRSTLANE_B32
), SGPR
)
4241 .addReg(SrcReg
, 0, RI
.getSubRegFromChannel(i
));
4242 SRegs
.push_back(SGPR
);
4245 MachineInstrBuilder MIB
=
4246 BuildMI(*UseMI
.getParent(), UseMI
, UseMI
.getDebugLoc(),
4247 get(AMDGPU::REG_SEQUENCE
), DstReg
);
4248 for (unsigned i
= 0; i
< SubRegs
; ++i
) {
4249 MIB
.addReg(SRegs
[i
]);
4250 MIB
.addImm(RI
.getSubRegFromChannel(i
));
4255 void SIInstrInfo::legalizeOperandsSMRD(MachineRegisterInfo
&MRI
,
4256 MachineInstr
&MI
) const {
4258 // If the pointer is store in VGPRs, then we need to move them to
4259 // SGPRs using v_readfirstlane. This is safe because we only select
4260 // loads with uniform pointers to SMRD instruction so we know the
4261 // pointer value is uniform.
4262 MachineOperand
*SBase
= getNamedOperand(MI
, AMDGPU::OpName::sbase
);
4263 if (SBase
&& !RI
.isSGPRClass(MRI
.getRegClass(SBase
->getReg()))) {
4264 unsigned SGPR
= readlaneVGPRToSGPR(SBase
->getReg(), MI
, MRI
);
4265 SBase
->setReg(SGPR
);
4267 MachineOperand
*SOff
= getNamedOperand(MI
, AMDGPU::OpName::soff
);
4268 if (SOff
&& !RI
.isSGPRClass(MRI
.getRegClass(SOff
->getReg()))) {
4269 unsigned SGPR
= readlaneVGPRToSGPR(SOff
->getReg(), MI
, MRI
);
4274 void SIInstrInfo::legalizeGenericOperand(MachineBasicBlock
&InsertMBB
,
4275 MachineBasicBlock::iterator I
,
4276 const TargetRegisterClass
*DstRC
,
4278 MachineRegisterInfo
&MRI
,
4279 const DebugLoc
&DL
) const {
4280 Register OpReg
= Op
.getReg();
4281 unsigned OpSubReg
= Op
.getSubReg();
4283 const TargetRegisterClass
*OpRC
= RI
.getSubClassWithSubReg(
4284 RI
.getRegClassForReg(MRI
, OpReg
), OpSubReg
);
4286 // Check if operand is already the correct register class.
4290 Register DstReg
= MRI
.createVirtualRegister(DstRC
);
4291 MachineInstr
*Copy
=
4292 BuildMI(InsertMBB
, I
, DL
, get(AMDGPU::COPY
), DstReg
).add(Op
);
4297 MachineInstr
*Def
= MRI
.getVRegDef(OpReg
);
4301 // Try to eliminate the copy if it is copying an immediate value.
4302 if (Def
->isMoveImmediate() && DstRC
!= &AMDGPU::VReg_1RegClass
)
4303 FoldImmediate(*Copy
, *Def
, OpReg
, &MRI
);
4305 bool ImpDef
= Def
->isImplicitDef();
4306 while (!ImpDef
&& Def
&& Def
->isCopy()) {
4307 if (Def
->getOperand(1).getReg().isPhysical())
4309 Def
= MRI
.getUniqueVRegDef(Def
->getOperand(1).getReg());
4310 ImpDef
= Def
&& Def
->isImplicitDef();
4312 if (!RI
.isSGPRClass(DstRC
) && !Copy
->readsRegister(AMDGPU::EXEC
, &RI
) &&
4314 Copy
->addOperand(MachineOperand::CreateReg(AMDGPU::EXEC
, false, true));
4317 // Emit the actual waterfall loop, executing the wrapped instruction for each
4318 // unique value of \p Rsrc across all lanes. In the best case we execute 1
4319 // iteration, in the worst case we execute 64 (once per lane).
4321 emitLoadSRsrcFromVGPRLoop(const SIInstrInfo
&TII
, MachineRegisterInfo
&MRI
,
4322 MachineBasicBlock
&OrigBB
, MachineBasicBlock
&LoopBB
,
4323 const DebugLoc
&DL
, MachineOperand
&Rsrc
) {
4324 MachineFunction
&MF
= *OrigBB
.getParent();
4325 const GCNSubtarget
&ST
= MF
.getSubtarget
<GCNSubtarget
>();
4326 const SIRegisterInfo
*TRI
= ST
.getRegisterInfo();
4327 unsigned Exec
= ST
.isWave32() ? AMDGPU::EXEC_LO
: AMDGPU::EXEC
;
4328 unsigned SaveExecOpc
=
4329 ST
.isWave32() ? AMDGPU::S_AND_SAVEEXEC_B32
: AMDGPU::S_AND_SAVEEXEC_B64
;
4330 unsigned XorTermOpc
=
4331 ST
.isWave32() ? AMDGPU::S_XOR_B32_term
: AMDGPU::S_XOR_B64_term
;
4333 ST
.isWave32() ? AMDGPU::S_AND_B32
: AMDGPU::S_AND_B64
;
4334 const auto *BoolXExecRC
= TRI
->getRegClass(AMDGPU::SReg_1_XEXECRegClassID
);
4336 MachineBasicBlock::iterator I
= LoopBB
.begin();
4338 Register VRsrc
= Rsrc
.getReg();
4339 unsigned VRsrcUndef
= getUndefRegState(Rsrc
.isUndef());
4341 Register SaveExec
= MRI
.createVirtualRegister(BoolXExecRC
);
4342 Register CondReg0
= MRI
.createVirtualRegister(BoolXExecRC
);
4343 Register CondReg1
= MRI
.createVirtualRegister(BoolXExecRC
);
4344 Register AndCond
= MRI
.createVirtualRegister(BoolXExecRC
);
4345 Register SRsrcSub0
= MRI
.createVirtualRegister(&AMDGPU::SGPR_32RegClass
);
4346 Register SRsrcSub1
= MRI
.createVirtualRegister(&AMDGPU::SGPR_32RegClass
);
4347 Register SRsrcSub2
= MRI
.createVirtualRegister(&AMDGPU::SGPR_32RegClass
);
4348 Register SRsrcSub3
= MRI
.createVirtualRegister(&AMDGPU::SGPR_32RegClass
);
4349 Register SRsrc
= MRI
.createVirtualRegister(&AMDGPU::SGPR_128RegClass
);
4351 // Beginning of the loop, read the next Rsrc variant.
4352 BuildMI(LoopBB
, I
, DL
, TII
.get(AMDGPU::V_READFIRSTLANE_B32
), SRsrcSub0
)
4353 .addReg(VRsrc
, VRsrcUndef
, AMDGPU::sub0
);
4354 BuildMI(LoopBB
, I
, DL
, TII
.get(AMDGPU::V_READFIRSTLANE_B32
), SRsrcSub1
)
4355 .addReg(VRsrc
, VRsrcUndef
, AMDGPU::sub1
);
4356 BuildMI(LoopBB
, I
, DL
, TII
.get(AMDGPU::V_READFIRSTLANE_B32
), SRsrcSub2
)
4357 .addReg(VRsrc
, VRsrcUndef
, AMDGPU::sub2
);
4358 BuildMI(LoopBB
, I
, DL
, TII
.get(AMDGPU::V_READFIRSTLANE_B32
), SRsrcSub3
)
4359 .addReg(VRsrc
, VRsrcUndef
, AMDGPU::sub3
);
4361 BuildMI(LoopBB
, I
, DL
, TII
.get(AMDGPU::REG_SEQUENCE
), SRsrc
)
4363 .addImm(AMDGPU::sub0
)
4365 .addImm(AMDGPU::sub1
)
4367 .addImm(AMDGPU::sub2
)
4369 .addImm(AMDGPU::sub3
);
4371 // Update Rsrc operand to use the SGPR Rsrc.
4373 Rsrc
.setIsKill(true);
4375 // Identify all lanes with identical Rsrc operands in their VGPRs.
4376 BuildMI(LoopBB
, I
, DL
, TII
.get(AMDGPU::V_CMP_EQ_U64_e64
), CondReg0
)
4377 .addReg(SRsrc
, 0, AMDGPU::sub0_sub1
)
4378 .addReg(VRsrc
, 0, AMDGPU::sub0_sub1
);
4379 BuildMI(LoopBB
, I
, DL
, TII
.get(AMDGPU::V_CMP_EQ_U64_e64
), CondReg1
)
4380 .addReg(SRsrc
, 0, AMDGPU::sub2_sub3
)
4381 .addReg(VRsrc
, 0, AMDGPU::sub2_sub3
);
4382 BuildMI(LoopBB
, I
, DL
, TII
.get(AndOpc
), AndCond
)
4386 MRI
.setSimpleHint(SaveExec
, AndCond
);
4388 // Update EXEC to matching lanes, saving original to SaveExec.
4389 BuildMI(LoopBB
, I
, DL
, TII
.get(SaveExecOpc
), SaveExec
)
4390 .addReg(AndCond
, RegState::Kill
);
4392 // The original instruction is here; we insert the terminators after it.
4395 // Update EXEC, switch all done bits to 0 and all todo bits to 1.
4396 BuildMI(LoopBB
, I
, DL
, TII
.get(XorTermOpc
), Exec
)
4399 BuildMI(LoopBB
, I
, DL
, TII
.get(AMDGPU::S_CBRANCH_EXECNZ
)).addMBB(&LoopBB
);
4402 // Build a waterfall loop around \p MI, replacing the VGPR \p Rsrc register
4403 // with SGPRs by iterating over all unique values across all lanes.
4404 static void loadSRsrcFromVGPR(const SIInstrInfo
&TII
, MachineInstr
&MI
,
4405 MachineOperand
&Rsrc
, MachineDominatorTree
*MDT
) {
4406 MachineBasicBlock
&MBB
= *MI
.getParent();
4407 MachineFunction
&MF
= *MBB
.getParent();
4408 const GCNSubtarget
&ST
= MF
.getSubtarget
<GCNSubtarget
>();
4409 const SIRegisterInfo
*TRI
= ST
.getRegisterInfo();
4410 MachineRegisterInfo
&MRI
= MF
.getRegInfo();
4411 MachineBasicBlock::iterator
I(&MI
);
4412 const DebugLoc
&DL
= MI
.getDebugLoc();
4413 unsigned Exec
= ST
.isWave32() ? AMDGPU::EXEC_LO
: AMDGPU::EXEC
;
4414 unsigned MovExecOpc
= ST
.isWave32() ? AMDGPU::S_MOV_B32
: AMDGPU::S_MOV_B64
;
4415 const auto *BoolXExecRC
= TRI
->getRegClass(AMDGPU::SReg_1_XEXECRegClassID
);
4417 Register SaveExec
= MRI
.createVirtualRegister(BoolXExecRC
);
4419 // Save the EXEC mask
4420 BuildMI(MBB
, I
, DL
, TII
.get(MovExecOpc
), SaveExec
).addReg(Exec
);
4422 // Killed uses in the instruction we are waterfalling around will be
4423 // incorrect due to the added control-flow.
4424 for (auto &MO
: MI
.uses()) {
4425 if (MO
.isReg() && MO
.isUse()) {
4426 MRI
.clearKillFlags(MO
.getReg());
4430 // To insert the loop we need to split the block. Move everything after this
4431 // point to a new block, and insert a new empty block between the two.
4432 MachineBasicBlock
*LoopBB
= MF
.CreateMachineBasicBlock();
4433 MachineBasicBlock
*RemainderBB
= MF
.CreateMachineBasicBlock();
4434 MachineFunction::iterator
MBBI(MBB
);
4437 MF
.insert(MBBI
, LoopBB
);
4438 MF
.insert(MBBI
, RemainderBB
);
4440 LoopBB
->addSuccessor(LoopBB
);
4441 LoopBB
->addSuccessor(RemainderBB
);
4443 // Move MI to the LoopBB, and the remainder of the block to RemainderBB.
4444 MachineBasicBlock::iterator J
= I
++;
4445 RemainderBB
->transferSuccessorsAndUpdatePHIs(&MBB
);
4446 RemainderBB
->splice(RemainderBB
->begin(), &MBB
, I
, MBB
.end());
4447 LoopBB
->splice(LoopBB
->begin(), &MBB
, J
);
4449 MBB
.addSuccessor(LoopBB
);
4451 // Update dominators. We know that MBB immediately dominates LoopBB, that
4452 // LoopBB immediately dominates RemainderBB, and that RemainderBB immediately
4453 // dominates all of the successors transferred to it from MBB that MBB used
4456 MDT
->addNewBlock(LoopBB
, &MBB
);
4457 MDT
->addNewBlock(RemainderBB
, LoopBB
);
4458 for (auto &Succ
: RemainderBB
->successors()) {
4459 if (MDT
->dominates(&MBB
, Succ
)) {
4460 MDT
->changeImmediateDominator(Succ
, RemainderBB
);
4465 emitLoadSRsrcFromVGPRLoop(TII
, MRI
, MBB
, *LoopBB
, DL
, Rsrc
);
4467 // Restore the EXEC mask
4468 MachineBasicBlock::iterator First
= RemainderBB
->begin();
4469 BuildMI(*RemainderBB
, First
, DL
, TII
.get(MovExecOpc
), Exec
).addReg(SaveExec
);
4472 // Extract pointer from Rsrc and return a zero-value Rsrc replacement.
4473 static std::tuple
<unsigned, unsigned>
4474 extractRsrcPtr(const SIInstrInfo
&TII
, MachineInstr
&MI
, MachineOperand
&Rsrc
) {
4475 MachineBasicBlock
&MBB
= *MI
.getParent();
4476 MachineFunction
&MF
= *MBB
.getParent();
4477 MachineRegisterInfo
&MRI
= MF
.getRegInfo();
4479 // Extract the ptr from the resource descriptor.
4481 TII
.buildExtractSubReg(MI
, MRI
, Rsrc
, &AMDGPU::VReg_128RegClass
,
4482 AMDGPU::sub0_sub1
, &AMDGPU::VReg_64RegClass
);
4484 // Create an empty resource descriptor
4485 Register Zero64
= MRI
.createVirtualRegister(&AMDGPU::SReg_64RegClass
);
4486 Register SRsrcFormatLo
= MRI
.createVirtualRegister(&AMDGPU::SGPR_32RegClass
);
4487 Register SRsrcFormatHi
= MRI
.createVirtualRegister(&AMDGPU::SGPR_32RegClass
);
4488 Register NewSRsrc
= MRI
.createVirtualRegister(&AMDGPU::SGPR_128RegClass
);
4489 uint64_t RsrcDataFormat
= TII
.getDefaultRsrcDataFormat();
4492 BuildMI(MBB
, MI
, MI
.getDebugLoc(), TII
.get(AMDGPU::S_MOV_B64
), Zero64
)
4495 // SRsrcFormatLo = RSRC_DATA_FORMAT{31-0}
4496 BuildMI(MBB
, MI
, MI
.getDebugLoc(), TII
.get(AMDGPU::S_MOV_B32
), SRsrcFormatLo
)
4497 .addImm(RsrcDataFormat
& 0xFFFFFFFF);
4499 // SRsrcFormatHi = RSRC_DATA_FORMAT{63-32}
4500 BuildMI(MBB
, MI
, MI
.getDebugLoc(), TII
.get(AMDGPU::S_MOV_B32
), SRsrcFormatHi
)
4501 .addImm(RsrcDataFormat
>> 32);
4503 // NewSRsrc = {Zero64, SRsrcFormat}
4504 BuildMI(MBB
, MI
, MI
.getDebugLoc(), TII
.get(AMDGPU::REG_SEQUENCE
), NewSRsrc
)
4506 .addImm(AMDGPU::sub0_sub1
)
4507 .addReg(SRsrcFormatLo
)
4508 .addImm(AMDGPU::sub2
)
4509 .addReg(SRsrcFormatHi
)
4510 .addImm(AMDGPU::sub3
);
4512 return std::make_tuple(RsrcPtr
, NewSRsrc
);
4515 void SIInstrInfo::legalizeOperands(MachineInstr
&MI
,
4516 MachineDominatorTree
*MDT
) const {
4517 MachineFunction
&MF
= *MI
.getParent()->getParent();
4518 MachineRegisterInfo
&MRI
= MF
.getRegInfo();
4521 if (isVOP2(MI
) || isVOPC(MI
)) {
4522 legalizeOperandsVOP2(MRI
, MI
);
4528 legalizeOperandsVOP3(MRI
, MI
);
4534 legalizeOperandsSMRD(MRI
, MI
);
4538 // Legalize REG_SEQUENCE and PHI
4539 // The register class of the operands much be the same type as the register
4540 // class of the output.
4541 if (MI
.getOpcode() == AMDGPU::PHI
) {
4542 const TargetRegisterClass
*RC
= nullptr, *SRC
= nullptr, *VRC
= nullptr;
4543 for (unsigned i
= 1, e
= MI
.getNumOperands(); i
!= e
; i
+= 2) {
4544 if (!MI
.getOperand(i
).isReg() ||
4545 !Register::isVirtualRegister(MI
.getOperand(i
).getReg()))
4547 const TargetRegisterClass
*OpRC
=
4548 MRI
.getRegClass(MI
.getOperand(i
).getReg());
4549 if (RI
.hasVectorRegisters(OpRC
)) {
4556 // If any of the operands are VGPR registers, then they all most be
4557 // otherwise we will create illegal VGPR->SGPR copies when legalizing
4559 if (VRC
|| !RI
.isSGPRClass(getOpRegClass(MI
, 0))) {
4562 if (getOpRegClass(MI
, 0) == &AMDGPU::VReg_1RegClass
) {
4563 VRC
= &AMDGPU::VReg_1RegClass
;
4565 VRC
= RI
.hasAGPRs(getOpRegClass(MI
, 0))
4566 ? RI
.getEquivalentAGPRClass(SRC
)
4567 : RI
.getEquivalentVGPRClass(SRC
);
4569 VRC
= RI
.hasAGPRs(getOpRegClass(MI
, 0))
4570 ? RI
.getEquivalentAGPRClass(VRC
)
4571 : RI
.getEquivalentVGPRClass(VRC
);
4578 // Update all the operands so they have the same type.
4579 for (unsigned I
= 1, E
= MI
.getNumOperands(); I
!= E
; I
+= 2) {
4580 MachineOperand
&Op
= MI
.getOperand(I
);
4581 if (!Op
.isReg() || !Register::isVirtualRegister(Op
.getReg()))
4584 // MI is a PHI instruction.
4585 MachineBasicBlock
*InsertBB
= MI
.getOperand(I
+ 1).getMBB();
4586 MachineBasicBlock::iterator Insert
= InsertBB
->getFirstTerminator();
4588 // Avoid creating no-op copies with the same src and dst reg class. These
4589 // confuse some of the machine passes.
4590 legalizeGenericOperand(*InsertBB
, Insert
, RC
, Op
, MRI
, MI
.getDebugLoc());
4594 // REG_SEQUENCE doesn't really require operand legalization, but if one has a
4595 // VGPR dest type and SGPR sources, insert copies so all operands are
4596 // VGPRs. This seems to help operand folding / the register coalescer.
4597 if (MI
.getOpcode() == AMDGPU::REG_SEQUENCE
) {
4598 MachineBasicBlock
*MBB
= MI
.getParent();
4599 const TargetRegisterClass
*DstRC
= getOpRegClass(MI
, 0);
4600 if (RI
.hasVGPRs(DstRC
)) {
4601 // Update all the operands so they are VGPR register classes. These may
4602 // not be the same register class because REG_SEQUENCE supports mixing
4603 // subregister index types e.g. sub0_sub1 + sub2 + sub3
4604 for (unsigned I
= 1, E
= MI
.getNumOperands(); I
!= E
; I
+= 2) {
4605 MachineOperand
&Op
= MI
.getOperand(I
);
4606 if (!Op
.isReg() || !Register::isVirtualRegister(Op
.getReg()))
4609 const TargetRegisterClass
*OpRC
= MRI
.getRegClass(Op
.getReg());
4610 const TargetRegisterClass
*VRC
= RI
.getEquivalentVGPRClass(OpRC
);
4614 legalizeGenericOperand(*MBB
, MI
, VRC
, Op
, MRI
, MI
.getDebugLoc());
4622 // Legalize INSERT_SUBREG
4623 // src0 must have the same register class as dst
4624 if (MI
.getOpcode() == AMDGPU::INSERT_SUBREG
) {
4625 Register Dst
= MI
.getOperand(0).getReg();
4626 Register Src0
= MI
.getOperand(1).getReg();
4627 const TargetRegisterClass
*DstRC
= MRI
.getRegClass(Dst
);
4628 const TargetRegisterClass
*Src0RC
= MRI
.getRegClass(Src0
);
4629 if (DstRC
!= Src0RC
) {
4630 MachineBasicBlock
*MBB
= MI
.getParent();
4631 MachineOperand
&Op
= MI
.getOperand(1);
4632 legalizeGenericOperand(*MBB
, MI
, DstRC
, Op
, MRI
, MI
.getDebugLoc());
4637 // Legalize SI_INIT_M0
4638 if (MI
.getOpcode() == AMDGPU::SI_INIT_M0
) {
4639 MachineOperand
&Src
= MI
.getOperand(0);
4640 if (Src
.isReg() && RI
.hasVectorRegisters(MRI
.getRegClass(Src
.getReg())))
4641 Src
.setReg(readlaneVGPRToSGPR(Src
.getReg(), MI
, MRI
));
4645 // Legalize MIMG and MUBUF/MTBUF for shaders.
4647 // Shaders only generate MUBUF/MTBUF instructions via intrinsics or via
4648 // scratch memory access. In both cases, the legalization never involves
4649 // conversion to the addr64 form.
4651 (AMDGPU::isShader(MF
.getFunction().getCallingConv()) &&
4652 (isMUBUF(MI
) || isMTBUF(MI
)))) {
4653 MachineOperand
*SRsrc
= getNamedOperand(MI
, AMDGPU::OpName::srsrc
);
4654 if (SRsrc
&& !RI
.isSGPRClass(MRI
.getRegClass(SRsrc
->getReg()))) {
4655 unsigned SGPR
= readlaneVGPRToSGPR(SRsrc
->getReg(), MI
, MRI
);
4656 SRsrc
->setReg(SGPR
);
4659 MachineOperand
*SSamp
= getNamedOperand(MI
, AMDGPU::OpName::ssamp
);
4660 if (SSamp
&& !RI
.isSGPRClass(MRI
.getRegClass(SSamp
->getReg()))) {
4661 unsigned SGPR
= readlaneVGPRToSGPR(SSamp
->getReg(), MI
, MRI
);
4662 SSamp
->setReg(SGPR
);
4667 // Legalize MUBUF* instructions.
4669 AMDGPU::getNamedOperandIdx(MI
.getOpcode(), AMDGPU::OpName::srsrc
);
4670 if (RsrcIdx
!= -1) {
4671 // We have an MUBUF instruction
4672 MachineOperand
*Rsrc
= &MI
.getOperand(RsrcIdx
);
4673 unsigned RsrcRC
= get(MI
.getOpcode()).OpInfo
[RsrcIdx
].RegClass
;
4674 if (RI
.getCommonSubClass(MRI
.getRegClass(Rsrc
->getReg()),
4675 RI
.getRegClass(RsrcRC
))) {
4676 // The operands are legal.
4677 // FIXME: We may need to legalize operands besided srsrc.
4681 // Legalize a VGPR Rsrc.
4683 // If the instruction is _ADDR64, we can avoid a waterfall by extracting
4684 // the base pointer from the VGPR Rsrc, adding it to the VAddr, then using
4685 // a zero-value SRsrc.
4687 // If the instruction is _OFFSET (both idxen and offen disabled), and we
4688 // support ADDR64 instructions, we can convert to ADDR64 and do the same as
4691 // Otherwise we are on non-ADDR64 hardware, and/or we have
4692 // idxen/offen/bothen and we fall back to a waterfall loop.
4694 MachineBasicBlock
&MBB
= *MI
.getParent();
4696 MachineOperand
*VAddr
= getNamedOperand(MI
, AMDGPU::OpName::vaddr
);
4697 if (VAddr
&& AMDGPU::getIfAddr64Inst(MI
.getOpcode()) != -1) {
4698 // This is already an ADDR64 instruction so we need to add the pointer
4699 // extracted from the resource descriptor to the current value of VAddr.
4700 Register NewVAddrLo
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
4701 Register NewVAddrHi
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
4702 Register NewVAddr
= MRI
.createVirtualRegister(&AMDGPU::VReg_64RegClass
);
4704 const auto *BoolXExecRC
= RI
.getRegClass(AMDGPU::SReg_1_XEXECRegClassID
);
4705 Register CondReg0
= MRI
.createVirtualRegister(BoolXExecRC
);
4706 Register CondReg1
= MRI
.createVirtualRegister(BoolXExecRC
);
4708 unsigned RsrcPtr
, NewSRsrc
;
4709 std::tie(RsrcPtr
, NewSRsrc
) = extractRsrcPtr(*this, MI
, *Rsrc
);
4711 // NewVaddrLo = RsrcPtr:sub0 + VAddr:sub0
4712 const DebugLoc
&DL
= MI
.getDebugLoc();
4713 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_ADD_I32_e64
), NewVAddrLo
)
4715 .addReg(RsrcPtr
, 0, AMDGPU::sub0
)
4716 .addReg(VAddr
->getReg(), 0, AMDGPU::sub0
)
4719 // NewVaddrHi = RsrcPtr:sub1 + VAddr:sub1
4720 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_ADDC_U32_e64
), NewVAddrHi
)
4721 .addDef(CondReg1
, RegState::Dead
)
4722 .addReg(RsrcPtr
, 0, AMDGPU::sub1
)
4723 .addReg(VAddr
->getReg(), 0, AMDGPU::sub1
)
4724 .addReg(CondReg0
, RegState::Kill
)
4727 // NewVaddr = {NewVaddrHi, NewVaddrLo}
4728 BuildMI(MBB
, MI
, MI
.getDebugLoc(), get(AMDGPU::REG_SEQUENCE
), NewVAddr
)
4730 .addImm(AMDGPU::sub0
)
4732 .addImm(AMDGPU::sub1
);
4734 VAddr
->setReg(NewVAddr
);
4735 Rsrc
->setReg(NewSRsrc
);
4736 } else if (!VAddr
&& ST
.hasAddr64()) {
4737 // This instructions is the _OFFSET variant, so we need to convert it to
4739 assert(MBB
.getParent()->getSubtarget
<GCNSubtarget
>().getGeneration()
4740 < AMDGPUSubtarget::VOLCANIC_ISLANDS
&&
4741 "FIXME: Need to emit flat atomics here");
4743 unsigned RsrcPtr
, NewSRsrc
;
4744 std::tie(RsrcPtr
, NewSRsrc
) = extractRsrcPtr(*this, MI
, *Rsrc
);
4746 Register NewVAddr
= MRI
.createVirtualRegister(&AMDGPU::VReg_64RegClass
);
4747 MachineOperand
*VData
= getNamedOperand(MI
, AMDGPU::OpName::vdata
);
4748 MachineOperand
*Offset
= getNamedOperand(MI
, AMDGPU::OpName::offset
);
4749 MachineOperand
*SOffset
= getNamedOperand(MI
, AMDGPU::OpName::soffset
);
4750 unsigned Addr64Opcode
= AMDGPU::getAddr64Inst(MI
.getOpcode());
4752 // Atomics rith return have have an additional tied operand and are
4753 // missing some of the special bits.
4754 MachineOperand
*VDataIn
= getNamedOperand(MI
, AMDGPU::OpName::vdata_in
);
4755 MachineInstr
*Addr64
;
4758 // Regular buffer load / store.
4759 MachineInstrBuilder MIB
=
4760 BuildMI(MBB
, MI
, MI
.getDebugLoc(), get(Addr64Opcode
))
4767 // Atomics do not have this operand.
4768 if (const MachineOperand
*GLC
=
4769 getNamedOperand(MI
, AMDGPU::OpName::glc
)) {
4770 MIB
.addImm(GLC
->getImm());
4772 if (const MachineOperand
*DLC
=
4773 getNamedOperand(MI
, AMDGPU::OpName::dlc
)) {
4774 MIB
.addImm(DLC
->getImm());
4777 MIB
.addImm(getNamedImmOperand(MI
, AMDGPU::OpName::slc
));
4779 if (const MachineOperand
*TFE
=
4780 getNamedOperand(MI
, AMDGPU::OpName::tfe
)) {
4781 MIB
.addImm(TFE
->getImm());
4784 MIB
.addImm(getNamedImmOperand(MI
, AMDGPU::OpName::swz
));
4786 MIB
.cloneMemRefs(MI
);
4789 // Atomics with return.
4790 Addr64
= BuildMI(MBB
, MI
, MI
.getDebugLoc(), get(Addr64Opcode
))
4797 .addImm(getNamedImmOperand(MI
, AMDGPU::OpName::slc
))
4801 MI
.removeFromParent();
4803 // NewVaddr = {NewVaddrHi, NewVaddrLo}
4804 BuildMI(MBB
, Addr64
, Addr64
->getDebugLoc(), get(AMDGPU::REG_SEQUENCE
),
4806 .addReg(RsrcPtr
, 0, AMDGPU::sub0
)
4807 .addImm(AMDGPU::sub0
)
4808 .addReg(RsrcPtr
, 0, AMDGPU::sub1
)
4809 .addImm(AMDGPU::sub1
);
4811 // This is another variant; legalize Rsrc with waterfall loop from VGPRs
4813 loadSRsrcFromVGPR(*this, MI
, *Rsrc
, MDT
);
4818 void SIInstrInfo::moveToVALU(MachineInstr
&TopInst
,
4819 MachineDominatorTree
*MDT
) const {
4820 SetVectorType Worklist
;
4821 Worklist
.insert(&TopInst
);
4823 while (!Worklist
.empty()) {
4824 MachineInstr
&Inst
= *Worklist
.pop_back_val();
4825 MachineBasicBlock
*MBB
= Inst
.getParent();
4826 MachineRegisterInfo
&MRI
= MBB
->getParent()->getRegInfo();
4828 unsigned Opcode
= Inst
.getOpcode();
4829 unsigned NewOpcode
= getVALUOp(Inst
);
4831 // Handle some special cases
4835 case AMDGPU::S_ADD_U64_PSEUDO
:
4836 case AMDGPU::S_SUB_U64_PSEUDO
:
4837 splitScalar64BitAddSub(Worklist
, Inst
, MDT
);
4838 Inst
.eraseFromParent();
4840 case AMDGPU::S_ADD_I32
:
4841 case AMDGPU::S_SUB_I32
:
4842 // FIXME: The u32 versions currently selected use the carry.
4843 if (moveScalarAddSub(Worklist
, Inst
, MDT
))
4848 case AMDGPU::S_AND_B64
:
4849 splitScalar64BitBinaryOp(Worklist
, Inst
, AMDGPU::S_AND_B32
, MDT
);
4850 Inst
.eraseFromParent();
4853 case AMDGPU::S_OR_B64
:
4854 splitScalar64BitBinaryOp(Worklist
, Inst
, AMDGPU::S_OR_B32
, MDT
);
4855 Inst
.eraseFromParent();
4858 case AMDGPU::S_XOR_B64
:
4859 splitScalar64BitBinaryOp(Worklist
, Inst
, AMDGPU::S_XOR_B32
, MDT
);
4860 Inst
.eraseFromParent();
4863 case AMDGPU::S_NAND_B64
:
4864 splitScalar64BitBinaryOp(Worklist
, Inst
, AMDGPU::S_NAND_B32
, MDT
);
4865 Inst
.eraseFromParent();
4868 case AMDGPU::S_NOR_B64
:
4869 splitScalar64BitBinaryOp(Worklist
, Inst
, AMDGPU::S_NOR_B32
, MDT
);
4870 Inst
.eraseFromParent();
4873 case AMDGPU::S_XNOR_B64
:
4874 if (ST
.hasDLInsts())
4875 splitScalar64BitBinaryOp(Worklist
, Inst
, AMDGPU::S_XNOR_B32
, MDT
);
4877 splitScalar64BitXnor(Worklist
, Inst
, MDT
);
4878 Inst
.eraseFromParent();
4881 case AMDGPU::S_ANDN2_B64
:
4882 splitScalar64BitBinaryOp(Worklist
, Inst
, AMDGPU::S_ANDN2_B32
, MDT
);
4883 Inst
.eraseFromParent();
4886 case AMDGPU::S_ORN2_B64
:
4887 splitScalar64BitBinaryOp(Worklist
, Inst
, AMDGPU::S_ORN2_B32
, MDT
);
4888 Inst
.eraseFromParent();
4891 case AMDGPU::S_NOT_B64
:
4892 splitScalar64BitUnaryOp(Worklist
, Inst
, AMDGPU::S_NOT_B32
);
4893 Inst
.eraseFromParent();
4896 case AMDGPU::S_BCNT1_I32_B64
:
4897 splitScalar64BitBCNT(Worklist
, Inst
);
4898 Inst
.eraseFromParent();
4901 case AMDGPU::S_BFE_I64
:
4902 splitScalar64BitBFE(Worklist
, Inst
);
4903 Inst
.eraseFromParent();
4906 case AMDGPU::S_LSHL_B32
:
4907 if (ST
.hasOnlyRevVALUShifts()) {
4908 NewOpcode
= AMDGPU::V_LSHLREV_B32_e64
;
4912 case AMDGPU::S_ASHR_I32
:
4913 if (ST
.hasOnlyRevVALUShifts()) {
4914 NewOpcode
= AMDGPU::V_ASHRREV_I32_e64
;
4918 case AMDGPU::S_LSHR_B32
:
4919 if (ST
.hasOnlyRevVALUShifts()) {
4920 NewOpcode
= AMDGPU::V_LSHRREV_B32_e64
;
4924 case AMDGPU::S_LSHL_B64
:
4925 if (ST
.hasOnlyRevVALUShifts()) {
4926 NewOpcode
= AMDGPU::V_LSHLREV_B64
;
4930 case AMDGPU::S_ASHR_I64
:
4931 if (ST
.hasOnlyRevVALUShifts()) {
4932 NewOpcode
= AMDGPU::V_ASHRREV_I64
;
4936 case AMDGPU::S_LSHR_B64
:
4937 if (ST
.hasOnlyRevVALUShifts()) {
4938 NewOpcode
= AMDGPU::V_LSHRREV_B64
;
4943 case AMDGPU::S_ABS_I32
:
4944 lowerScalarAbs(Worklist
, Inst
);
4945 Inst
.eraseFromParent();
4948 case AMDGPU::S_CBRANCH_SCC0
:
4949 case AMDGPU::S_CBRANCH_SCC1
:
4950 // Clear unused bits of vcc
4952 BuildMI(*MBB
, Inst
, Inst
.getDebugLoc(), get(AMDGPU::S_AND_B32
),
4954 .addReg(AMDGPU::EXEC_LO
)
4955 .addReg(AMDGPU::VCC_LO
);
4957 BuildMI(*MBB
, Inst
, Inst
.getDebugLoc(), get(AMDGPU::S_AND_B64
),
4959 .addReg(AMDGPU::EXEC
)
4960 .addReg(AMDGPU::VCC
);
4963 case AMDGPU::S_BFE_U64
:
4964 case AMDGPU::S_BFM_B64
:
4965 llvm_unreachable("Moving this op to VALU not implemented");
4967 case AMDGPU::S_PACK_LL_B32_B16
:
4968 case AMDGPU::S_PACK_LH_B32_B16
:
4969 case AMDGPU::S_PACK_HH_B32_B16
:
4970 movePackToVALU(Worklist
, MRI
, Inst
);
4971 Inst
.eraseFromParent();
4974 case AMDGPU::S_XNOR_B32
:
4975 lowerScalarXnor(Worklist
, Inst
);
4976 Inst
.eraseFromParent();
4979 case AMDGPU::S_NAND_B32
:
4980 splitScalarNotBinop(Worklist
, Inst
, AMDGPU::S_AND_B32
);
4981 Inst
.eraseFromParent();
4984 case AMDGPU::S_NOR_B32
:
4985 splitScalarNotBinop(Worklist
, Inst
, AMDGPU::S_OR_B32
);
4986 Inst
.eraseFromParent();
4989 case AMDGPU::S_ANDN2_B32
:
4990 splitScalarBinOpN2(Worklist
, Inst
, AMDGPU::S_AND_B32
);
4991 Inst
.eraseFromParent();
4994 case AMDGPU::S_ORN2_B32
:
4995 splitScalarBinOpN2(Worklist
, Inst
, AMDGPU::S_OR_B32
);
4996 Inst
.eraseFromParent();
5000 if (NewOpcode
== AMDGPU::INSTRUCTION_LIST_END
) {
5001 // We cannot move this instruction to the VALU, so we should try to
5002 // legalize its operands instead.
5003 legalizeOperands(Inst
, MDT
);
5007 // Use the new VALU Opcode.
5008 const MCInstrDesc
&NewDesc
= get(NewOpcode
);
5009 Inst
.setDesc(NewDesc
);
5011 // Remove any references to SCC. Vector instructions can't read from it, and
5012 // We're just about to add the implicit use / defs of VCC, and we don't want
5014 for (unsigned i
= Inst
.getNumOperands() - 1; i
> 0; --i
) {
5015 MachineOperand
&Op
= Inst
.getOperand(i
);
5016 if (Op
.isReg() && Op
.getReg() == AMDGPU::SCC
) {
5017 // Only propagate through live-def of SCC.
5018 if (Op
.isDef() && !Op
.isDead())
5019 addSCCDefUsersToVALUWorklist(Op
, Inst
, Worklist
);
5020 Inst
.RemoveOperand(i
);
5024 if (Opcode
== AMDGPU::S_SEXT_I32_I8
|| Opcode
== AMDGPU::S_SEXT_I32_I16
) {
5025 // We are converting these to a BFE, so we need to add the missing
5026 // operands for the size and offset.
5027 unsigned Size
= (Opcode
== AMDGPU::S_SEXT_I32_I8
) ? 8 : 16;
5028 Inst
.addOperand(MachineOperand::CreateImm(0));
5029 Inst
.addOperand(MachineOperand::CreateImm(Size
));
5031 } else if (Opcode
== AMDGPU::S_BCNT1_I32_B32
) {
5032 // The VALU version adds the second operand to the result, so insert an
5034 Inst
.addOperand(MachineOperand::CreateImm(0));
5037 Inst
.addImplicitDefUseOperands(*Inst
.getParent()->getParent());
5038 fixImplicitOperands(Inst
);
5040 if (Opcode
== AMDGPU::S_BFE_I32
|| Opcode
== AMDGPU::S_BFE_U32
) {
5041 const MachineOperand
&OffsetWidthOp
= Inst
.getOperand(2);
5042 // If we need to move this to VGPRs, we need to unpack the second operand
5043 // back into the 2 separate ones for bit offset and width.
5044 assert(OffsetWidthOp
.isImm() &&
5045 "Scalar BFE is only implemented for constant width and offset");
5046 uint32_t Imm
= OffsetWidthOp
.getImm();
5048 uint32_t Offset
= Imm
& 0x3f; // Extract bits [5:0].
5049 uint32_t BitWidth
= (Imm
& 0x7f0000) >> 16; // Extract bits [22:16].
5050 Inst
.RemoveOperand(2); // Remove old immediate.
5051 Inst
.addOperand(MachineOperand::CreateImm(Offset
));
5052 Inst
.addOperand(MachineOperand::CreateImm(BitWidth
));
5055 bool HasDst
= Inst
.getOperand(0).isReg() && Inst
.getOperand(0).isDef();
5056 unsigned NewDstReg
= AMDGPU::NoRegister
;
5058 Register DstReg
= Inst
.getOperand(0).getReg();
5059 if (Register::isPhysicalRegister(DstReg
))
5062 // Update the destination register class.
5063 const TargetRegisterClass
*NewDstRC
= getDestEquivalentVGPRClass(Inst
);
5067 if (Inst
.isCopy() &&
5068 Register::isVirtualRegister(Inst
.getOperand(1).getReg()) &&
5069 NewDstRC
== RI
.getRegClassForReg(MRI
, Inst
.getOperand(1).getReg())) {
5070 // Instead of creating a copy where src and dst are the same register
5071 // class, we just replace all uses of dst with src. These kinds of
5072 // copies interfere with the heuristics MachineSink uses to decide
5073 // whether or not to split a critical edge. Since the pass assumes
5074 // that copies will end up as machine instructions and not be
5076 addUsersToMoveToVALUWorklist(DstReg
, MRI
, Worklist
);
5077 MRI
.replaceRegWith(DstReg
, Inst
.getOperand(1).getReg());
5078 MRI
.clearKillFlags(Inst
.getOperand(1).getReg());
5079 Inst
.getOperand(0).setReg(DstReg
);
5081 // Make sure we don't leave around a dead VGPR->SGPR copy. Normally
5082 // these are deleted later, but at -O0 it would leave a suspicious
5083 // looking illegal copy of an undef register.
5084 for (unsigned I
= Inst
.getNumOperands() - 1; I
!= 0; --I
)
5085 Inst
.RemoveOperand(I
);
5086 Inst
.setDesc(get(AMDGPU::IMPLICIT_DEF
));
5090 NewDstReg
= MRI
.createVirtualRegister(NewDstRC
);
5091 MRI
.replaceRegWith(DstReg
, NewDstReg
);
5094 // Legalize the operands
5095 legalizeOperands(Inst
, MDT
);
5098 addUsersToMoveToVALUWorklist(NewDstReg
, MRI
, Worklist
);
5102 // Add/sub require special handling to deal with carry outs.
5103 bool SIInstrInfo::moveScalarAddSub(SetVectorType
&Worklist
, MachineInstr
&Inst
,
5104 MachineDominatorTree
*MDT
) const {
5105 if (ST
.hasAddNoCarry()) {
5106 // Assume there is no user of scc since we don't select this in that case.
5107 // Since scc isn't used, it doesn't really matter if the i32 or u32 variant
5110 MachineBasicBlock
&MBB
= *Inst
.getParent();
5111 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5113 Register OldDstReg
= Inst
.getOperand(0).getReg();
5114 Register ResultReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5116 unsigned Opc
= Inst
.getOpcode();
5117 assert(Opc
== AMDGPU::S_ADD_I32
|| Opc
== AMDGPU::S_SUB_I32
);
5119 unsigned NewOpc
= Opc
== AMDGPU::S_ADD_I32
?
5120 AMDGPU::V_ADD_U32_e64
: AMDGPU::V_SUB_U32_e64
;
5122 assert(Inst
.getOperand(3).getReg() == AMDGPU::SCC
);
5123 Inst
.RemoveOperand(3);
5125 Inst
.setDesc(get(NewOpc
));
5126 Inst
.addOperand(MachineOperand::CreateImm(0)); // clamp bit
5127 Inst
.addImplicitDefUseOperands(*MBB
.getParent());
5128 MRI
.replaceRegWith(OldDstReg
, ResultReg
);
5129 legalizeOperands(Inst
, MDT
);
5131 addUsersToMoveToVALUWorklist(ResultReg
, MRI
, Worklist
);
5138 void SIInstrInfo::lowerScalarAbs(SetVectorType
&Worklist
,
5139 MachineInstr
&Inst
) const {
5140 MachineBasicBlock
&MBB
= *Inst
.getParent();
5141 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5142 MachineBasicBlock::iterator MII
= Inst
;
5143 DebugLoc DL
= Inst
.getDebugLoc();
5145 MachineOperand
&Dest
= Inst
.getOperand(0);
5146 MachineOperand
&Src
= Inst
.getOperand(1);
5147 Register TmpReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5148 Register ResultReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5150 unsigned SubOp
= ST
.hasAddNoCarry() ?
5151 AMDGPU::V_SUB_U32_e32
: AMDGPU::V_SUB_I32_e32
;
5153 BuildMI(MBB
, MII
, DL
, get(SubOp
), TmpReg
)
5155 .addReg(Src
.getReg());
5157 BuildMI(MBB
, MII
, DL
, get(AMDGPU::V_MAX_I32_e64
), ResultReg
)
5158 .addReg(Src
.getReg())
5161 MRI
.replaceRegWith(Dest
.getReg(), ResultReg
);
5162 addUsersToMoveToVALUWorklist(ResultReg
, MRI
, Worklist
);
5165 void SIInstrInfo::lowerScalarXnor(SetVectorType
&Worklist
,
5166 MachineInstr
&Inst
) const {
5167 MachineBasicBlock
&MBB
= *Inst
.getParent();
5168 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5169 MachineBasicBlock::iterator MII
= Inst
;
5170 const DebugLoc
&DL
= Inst
.getDebugLoc();
5172 MachineOperand
&Dest
= Inst
.getOperand(0);
5173 MachineOperand
&Src0
= Inst
.getOperand(1);
5174 MachineOperand
&Src1
= Inst
.getOperand(2);
5176 if (ST
.hasDLInsts()) {
5177 Register NewDest
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5178 legalizeGenericOperand(MBB
, MII
, &AMDGPU::VGPR_32RegClass
, Src0
, MRI
, DL
);
5179 legalizeGenericOperand(MBB
, MII
, &AMDGPU::VGPR_32RegClass
, Src1
, MRI
, DL
);
5181 BuildMI(MBB
, MII
, DL
, get(AMDGPU::V_XNOR_B32_e64
), NewDest
)
5185 MRI
.replaceRegWith(Dest
.getReg(), NewDest
);
5186 addUsersToMoveToVALUWorklist(NewDest
, MRI
, Worklist
);
5188 // Using the identity !(x ^ y) == (!x ^ y) == (x ^ !y), we can
5189 // invert either source and then perform the XOR. If either source is a
5190 // scalar register, then we can leave the inversion on the scalar unit to
5191 // acheive a better distrubution of scalar and vector instructions.
5192 bool Src0IsSGPR
= Src0
.isReg() &&
5193 RI
.isSGPRClass(MRI
.getRegClass(Src0
.getReg()));
5194 bool Src1IsSGPR
= Src1
.isReg() &&
5195 RI
.isSGPRClass(MRI
.getRegClass(Src1
.getReg()));
5197 Register Temp
= MRI
.createVirtualRegister(&AMDGPU::SReg_32RegClass
);
5198 Register NewDest
= MRI
.createVirtualRegister(&AMDGPU::SReg_32RegClass
);
5200 // Build a pair of scalar instructions and add them to the work list.
5201 // The next iteration over the work list will lower these to the vector
5202 // unit as necessary.
5204 BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_NOT_B32
), Temp
).add(Src0
);
5205 Xor
= BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_XOR_B32
), NewDest
)
5208 } else if (Src1IsSGPR
) {
5209 BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_NOT_B32
), Temp
).add(Src1
);
5210 Xor
= BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_XOR_B32
), NewDest
)
5214 Xor
= BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_XOR_B32
), Temp
)
5218 BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_NOT_B32
), NewDest
).addReg(Temp
);
5219 Worklist
.insert(Not
);
5222 MRI
.replaceRegWith(Dest
.getReg(), NewDest
);
5224 Worklist
.insert(Xor
);
5226 addUsersToMoveToVALUWorklist(NewDest
, MRI
, Worklist
);
5230 void SIInstrInfo::splitScalarNotBinop(SetVectorType
&Worklist
,
5232 unsigned Opcode
) const {
5233 MachineBasicBlock
&MBB
= *Inst
.getParent();
5234 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5235 MachineBasicBlock::iterator MII
= Inst
;
5236 const DebugLoc
&DL
= Inst
.getDebugLoc();
5238 MachineOperand
&Dest
= Inst
.getOperand(0);
5239 MachineOperand
&Src0
= Inst
.getOperand(1);
5240 MachineOperand
&Src1
= Inst
.getOperand(2);
5242 Register NewDest
= MRI
.createVirtualRegister(&AMDGPU::SReg_32RegClass
);
5243 Register Interm
= MRI
.createVirtualRegister(&AMDGPU::SReg_32RegClass
);
5245 MachineInstr
&Op
= *BuildMI(MBB
, MII
, DL
, get(Opcode
), Interm
)
5249 MachineInstr
&Not
= *BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_NOT_B32
), NewDest
)
5252 Worklist
.insert(&Op
);
5253 Worklist
.insert(&Not
);
5255 MRI
.replaceRegWith(Dest
.getReg(), NewDest
);
5256 addUsersToMoveToVALUWorklist(NewDest
, MRI
, Worklist
);
5259 void SIInstrInfo::splitScalarBinOpN2(SetVectorType
& Worklist
,
5261 unsigned Opcode
) const {
5262 MachineBasicBlock
&MBB
= *Inst
.getParent();
5263 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5264 MachineBasicBlock::iterator MII
= Inst
;
5265 const DebugLoc
&DL
= Inst
.getDebugLoc();
5267 MachineOperand
&Dest
= Inst
.getOperand(0);
5268 MachineOperand
&Src0
= Inst
.getOperand(1);
5269 MachineOperand
&Src1
= Inst
.getOperand(2);
5271 Register NewDest
= MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
5272 Register Interm
= MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
5274 MachineInstr
&Not
= *BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_NOT_B32
), Interm
)
5277 MachineInstr
&Op
= *BuildMI(MBB
, MII
, DL
, get(Opcode
), NewDest
)
5281 Worklist
.insert(&Not
);
5282 Worklist
.insert(&Op
);
5284 MRI
.replaceRegWith(Dest
.getReg(), NewDest
);
5285 addUsersToMoveToVALUWorklist(NewDest
, MRI
, Worklist
);
5288 void SIInstrInfo::splitScalar64BitUnaryOp(
5289 SetVectorType
&Worklist
, MachineInstr
&Inst
,
5290 unsigned Opcode
) const {
5291 MachineBasicBlock
&MBB
= *Inst
.getParent();
5292 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5294 MachineOperand
&Dest
= Inst
.getOperand(0);
5295 MachineOperand
&Src0
= Inst
.getOperand(1);
5296 DebugLoc DL
= Inst
.getDebugLoc();
5298 MachineBasicBlock::iterator MII
= Inst
;
5300 const MCInstrDesc
&InstDesc
= get(Opcode
);
5301 const TargetRegisterClass
*Src0RC
= Src0
.isReg() ?
5302 MRI
.getRegClass(Src0
.getReg()) :
5303 &AMDGPU::SGPR_32RegClass
;
5305 const TargetRegisterClass
*Src0SubRC
= RI
.getSubRegClass(Src0RC
, AMDGPU::sub0
);
5307 MachineOperand SrcReg0Sub0
= buildExtractSubRegOrImm(MII
, MRI
, Src0
, Src0RC
,
5308 AMDGPU::sub0
, Src0SubRC
);
5310 const TargetRegisterClass
*DestRC
= MRI
.getRegClass(Dest
.getReg());
5311 const TargetRegisterClass
*NewDestRC
= RI
.getEquivalentVGPRClass(DestRC
);
5312 const TargetRegisterClass
*NewDestSubRC
= RI
.getSubRegClass(NewDestRC
, AMDGPU::sub0
);
5314 Register DestSub0
= MRI
.createVirtualRegister(NewDestSubRC
);
5315 MachineInstr
&LoHalf
= *BuildMI(MBB
, MII
, DL
, InstDesc
, DestSub0
).add(SrcReg0Sub0
);
5317 MachineOperand SrcReg0Sub1
= buildExtractSubRegOrImm(MII
, MRI
, Src0
, Src0RC
,
5318 AMDGPU::sub1
, Src0SubRC
);
5320 Register DestSub1
= MRI
.createVirtualRegister(NewDestSubRC
);
5321 MachineInstr
&HiHalf
= *BuildMI(MBB
, MII
, DL
, InstDesc
, DestSub1
).add(SrcReg0Sub1
);
5323 Register FullDestReg
= MRI
.createVirtualRegister(NewDestRC
);
5324 BuildMI(MBB
, MII
, DL
, get(TargetOpcode::REG_SEQUENCE
), FullDestReg
)
5326 .addImm(AMDGPU::sub0
)
5328 .addImm(AMDGPU::sub1
);
5330 MRI
.replaceRegWith(Dest
.getReg(), FullDestReg
);
5332 Worklist
.insert(&LoHalf
);
5333 Worklist
.insert(&HiHalf
);
5335 // We don't need to legalizeOperands here because for a single operand, src0
5336 // will support any kind of input.
5338 // Move all users of this moved value.
5339 addUsersToMoveToVALUWorklist(FullDestReg
, MRI
, Worklist
);
5342 void SIInstrInfo::splitScalar64BitAddSub(SetVectorType
&Worklist
,
5344 MachineDominatorTree
*MDT
) const {
5345 bool IsAdd
= (Inst
.getOpcode() == AMDGPU::S_ADD_U64_PSEUDO
);
5347 MachineBasicBlock
&MBB
= *Inst
.getParent();
5348 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5349 const auto *CarryRC
= RI
.getRegClass(AMDGPU::SReg_1_XEXECRegClassID
);
5351 Register FullDestReg
= MRI
.createVirtualRegister(&AMDGPU::VReg_64RegClass
);
5352 Register DestSub0
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5353 Register DestSub1
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5355 Register CarryReg
= MRI
.createVirtualRegister(CarryRC
);
5356 Register DeadCarryReg
= MRI
.createVirtualRegister(CarryRC
);
5358 MachineOperand
&Dest
= Inst
.getOperand(0);
5359 MachineOperand
&Src0
= Inst
.getOperand(1);
5360 MachineOperand
&Src1
= Inst
.getOperand(2);
5361 const DebugLoc
&DL
= Inst
.getDebugLoc();
5362 MachineBasicBlock::iterator MII
= Inst
;
5364 const TargetRegisterClass
*Src0RC
= MRI
.getRegClass(Src0
.getReg());
5365 const TargetRegisterClass
*Src1RC
= MRI
.getRegClass(Src1
.getReg());
5366 const TargetRegisterClass
*Src0SubRC
= RI
.getSubRegClass(Src0RC
, AMDGPU::sub0
);
5367 const TargetRegisterClass
*Src1SubRC
= RI
.getSubRegClass(Src1RC
, AMDGPU::sub0
);
5369 MachineOperand SrcReg0Sub0
= buildExtractSubRegOrImm(MII
, MRI
, Src0
, Src0RC
,
5370 AMDGPU::sub0
, Src0SubRC
);
5371 MachineOperand SrcReg1Sub0
= buildExtractSubRegOrImm(MII
, MRI
, Src1
, Src1RC
,
5372 AMDGPU::sub0
, Src1SubRC
);
5375 MachineOperand SrcReg0Sub1
= buildExtractSubRegOrImm(MII
, MRI
, Src0
, Src0RC
,
5376 AMDGPU::sub1
, Src0SubRC
);
5377 MachineOperand SrcReg1Sub1
= buildExtractSubRegOrImm(MII
, MRI
, Src1
, Src1RC
,
5378 AMDGPU::sub1
, Src1SubRC
);
5380 unsigned LoOpc
= IsAdd
? AMDGPU::V_ADD_I32_e64
: AMDGPU::V_SUB_I32_e64
;
5381 MachineInstr
*LoHalf
=
5382 BuildMI(MBB
, MII
, DL
, get(LoOpc
), DestSub0
)
5383 .addReg(CarryReg
, RegState::Define
)
5386 .addImm(0); // clamp bit
5388 unsigned HiOpc
= IsAdd
? AMDGPU::V_ADDC_U32_e64
: AMDGPU::V_SUBB_U32_e64
;
5389 MachineInstr
*HiHalf
=
5390 BuildMI(MBB
, MII
, DL
, get(HiOpc
), DestSub1
)
5391 .addReg(DeadCarryReg
, RegState::Define
| RegState::Dead
)
5394 .addReg(CarryReg
, RegState::Kill
)
5395 .addImm(0); // clamp bit
5397 BuildMI(MBB
, MII
, DL
, get(TargetOpcode::REG_SEQUENCE
), FullDestReg
)
5399 .addImm(AMDGPU::sub0
)
5401 .addImm(AMDGPU::sub1
);
5403 MRI
.replaceRegWith(Dest
.getReg(), FullDestReg
);
5405 // Try to legalize the operands in case we need to swap the order to keep it
5407 legalizeOperands(*LoHalf
, MDT
);
5408 legalizeOperands(*HiHalf
, MDT
);
5410 // Move all users of this moved vlaue.
5411 addUsersToMoveToVALUWorklist(FullDestReg
, MRI
, Worklist
);
5414 void SIInstrInfo::splitScalar64BitBinaryOp(SetVectorType
&Worklist
,
5415 MachineInstr
&Inst
, unsigned Opcode
,
5416 MachineDominatorTree
*MDT
) const {
5417 MachineBasicBlock
&MBB
= *Inst
.getParent();
5418 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5420 MachineOperand
&Dest
= Inst
.getOperand(0);
5421 MachineOperand
&Src0
= Inst
.getOperand(1);
5422 MachineOperand
&Src1
= Inst
.getOperand(2);
5423 DebugLoc DL
= Inst
.getDebugLoc();
5425 MachineBasicBlock::iterator MII
= Inst
;
5427 const MCInstrDesc
&InstDesc
= get(Opcode
);
5428 const TargetRegisterClass
*Src0RC
= Src0
.isReg() ?
5429 MRI
.getRegClass(Src0
.getReg()) :
5430 &AMDGPU::SGPR_32RegClass
;
5432 const TargetRegisterClass
*Src0SubRC
= RI
.getSubRegClass(Src0RC
, AMDGPU::sub0
);
5433 const TargetRegisterClass
*Src1RC
= Src1
.isReg() ?
5434 MRI
.getRegClass(Src1
.getReg()) :
5435 &AMDGPU::SGPR_32RegClass
;
5437 const TargetRegisterClass
*Src1SubRC
= RI
.getSubRegClass(Src1RC
, AMDGPU::sub0
);
5439 MachineOperand SrcReg0Sub0
= buildExtractSubRegOrImm(MII
, MRI
, Src0
, Src0RC
,
5440 AMDGPU::sub0
, Src0SubRC
);
5441 MachineOperand SrcReg1Sub0
= buildExtractSubRegOrImm(MII
, MRI
, Src1
, Src1RC
,
5442 AMDGPU::sub0
, Src1SubRC
);
5443 MachineOperand SrcReg0Sub1
= buildExtractSubRegOrImm(MII
, MRI
, Src0
, Src0RC
,
5444 AMDGPU::sub1
, Src0SubRC
);
5445 MachineOperand SrcReg1Sub1
= buildExtractSubRegOrImm(MII
, MRI
, Src1
, Src1RC
,
5446 AMDGPU::sub1
, Src1SubRC
);
5448 const TargetRegisterClass
*DestRC
= MRI
.getRegClass(Dest
.getReg());
5449 const TargetRegisterClass
*NewDestRC
= RI
.getEquivalentVGPRClass(DestRC
);
5450 const TargetRegisterClass
*NewDestSubRC
= RI
.getSubRegClass(NewDestRC
, AMDGPU::sub0
);
5452 Register DestSub0
= MRI
.createVirtualRegister(NewDestSubRC
);
5453 MachineInstr
&LoHalf
= *BuildMI(MBB
, MII
, DL
, InstDesc
, DestSub0
)
5457 Register DestSub1
= MRI
.createVirtualRegister(NewDestSubRC
);
5458 MachineInstr
&HiHalf
= *BuildMI(MBB
, MII
, DL
, InstDesc
, DestSub1
)
5462 Register FullDestReg
= MRI
.createVirtualRegister(NewDestRC
);
5463 BuildMI(MBB
, MII
, DL
, get(TargetOpcode::REG_SEQUENCE
), FullDestReg
)
5465 .addImm(AMDGPU::sub0
)
5467 .addImm(AMDGPU::sub1
);
5469 MRI
.replaceRegWith(Dest
.getReg(), FullDestReg
);
5471 Worklist
.insert(&LoHalf
);
5472 Worklist
.insert(&HiHalf
);
5474 // Move all users of this moved vlaue.
5475 addUsersToMoveToVALUWorklist(FullDestReg
, MRI
, Worklist
);
5478 void SIInstrInfo::splitScalar64BitXnor(SetVectorType
&Worklist
,
5480 MachineDominatorTree
*MDT
) const {
5481 MachineBasicBlock
&MBB
= *Inst
.getParent();
5482 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5484 MachineOperand
&Dest
= Inst
.getOperand(0);
5485 MachineOperand
&Src0
= Inst
.getOperand(1);
5486 MachineOperand
&Src1
= Inst
.getOperand(2);
5487 const DebugLoc
&DL
= Inst
.getDebugLoc();
5489 MachineBasicBlock::iterator MII
= Inst
;
5491 const TargetRegisterClass
*DestRC
= MRI
.getRegClass(Dest
.getReg());
5493 Register Interm
= MRI
.createVirtualRegister(&AMDGPU::SReg_64RegClass
);
5495 MachineOperand
* Op0
;
5496 MachineOperand
* Op1
;
5498 if (Src0
.isReg() && RI
.isSGPRReg(MRI
, Src0
.getReg())) {
5506 BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_NOT_B64
), Interm
)
5509 Register NewDest
= MRI
.createVirtualRegister(DestRC
);
5511 MachineInstr
&Xor
= *BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_XOR_B64
), NewDest
)
5515 MRI
.replaceRegWith(Dest
.getReg(), NewDest
);
5517 Worklist
.insert(&Xor
);
5520 void SIInstrInfo::splitScalar64BitBCNT(
5521 SetVectorType
&Worklist
, MachineInstr
&Inst
) const {
5522 MachineBasicBlock
&MBB
= *Inst
.getParent();
5523 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5525 MachineBasicBlock::iterator MII
= Inst
;
5526 const DebugLoc
&DL
= Inst
.getDebugLoc();
5528 MachineOperand
&Dest
= Inst
.getOperand(0);
5529 MachineOperand
&Src
= Inst
.getOperand(1);
5531 const MCInstrDesc
&InstDesc
= get(AMDGPU::V_BCNT_U32_B32_e64
);
5532 const TargetRegisterClass
*SrcRC
= Src
.isReg() ?
5533 MRI
.getRegClass(Src
.getReg()) :
5534 &AMDGPU::SGPR_32RegClass
;
5536 Register MidReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5537 Register ResultReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5539 const TargetRegisterClass
*SrcSubRC
= RI
.getSubRegClass(SrcRC
, AMDGPU::sub0
);
5541 MachineOperand SrcRegSub0
= buildExtractSubRegOrImm(MII
, MRI
, Src
, SrcRC
,
5542 AMDGPU::sub0
, SrcSubRC
);
5543 MachineOperand SrcRegSub1
= buildExtractSubRegOrImm(MII
, MRI
, Src
, SrcRC
,
5544 AMDGPU::sub1
, SrcSubRC
);
5546 BuildMI(MBB
, MII
, DL
, InstDesc
, MidReg
).add(SrcRegSub0
).addImm(0);
5548 BuildMI(MBB
, MII
, DL
, InstDesc
, ResultReg
).add(SrcRegSub1
).addReg(MidReg
);
5550 MRI
.replaceRegWith(Dest
.getReg(), ResultReg
);
5552 // We don't need to legalize operands here. src0 for etiher instruction can be
5553 // an SGPR, and the second input is unused or determined here.
5554 addUsersToMoveToVALUWorklist(ResultReg
, MRI
, Worklist
);
5557 void SIInstrInfo::splitScalar64BitBFE(SetVectorType
&Worklist
,
5558 MachineInstr
&Inst
) const {
5559 MachineBasicBlock
&MBB
= *Inst
.getParent();
5560 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5561 MachineBasicBlock::iterator MII
= Inst
;
5562 const DebugLoc
&DL
= Inst
.getDebugLoc();
5564 MachineOperand
&Dest
= Inst
.getOperand(0);
5565 uint32_t Imm
= Inst
.getOperand(2).getImm();
5566 uint32_t Offset
= Imm
& 0x3f; // Extract bits [5:0].
5567 uint32_t BitWidth
= (Imm
& 0x7f0000) >> 16; // Extract bits [22:16].
5571 // Only sext_inreg cases handled.
5572 assert(Inst
.getOpcode() == AMDGPU::S_BFE_I64
&& BitWidth
<= 32 &&
5573 Offset
== 0 && "Not implemented");
5575 if (BitWidth
< 32) {
5576 Register MidRegLo
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5577 Register MidRegHi
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5578 Register ResultReg
= MRI
.createVirtualRegister(&AMDGPU::VReg_64RegClass
);
5580 BuildMI(MBB
, MII
, DL
, get(AMDGPU::V_BFE_I32
), MidRegLo
)
5581 .addReg(Inst
.getOperand(1).getReg(), 0, AMDGPU::sub0
)
5585 BuildMI(MBB
, MII
, DL
, get(AMDGPU::V_ASHRREV_I32_e32
), MidRegHi
)
5589 BuildMI(MBB
, MII
, DL
, get(TargetOpcode::REG_SEQUENCE
), ResultReg
)
5591 .addImm(AMDGPU::sub0
)
5593 .addImm(AMDGPU::sub1
);
5595 MRI
.replaceRegWith(Dest
.getReg(), ResultReg
);
5596 addUsersToMoveToVALUWorklist(ResultReg
, MRI
, Worklist
);
5600 MachineOperand
&Src
= Inst
.getOperand(1);
5601 Register TmpReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5602 Register ResultReg
= MRI
.createVirtualRegister(&AMDGPU::VReg_64RegClass
);
5604 BuildMI(MBB
, MII
, DL
, get(AMDGPU::V_ASHRREV_I32_e64
), TmpReg
)
5606 .addReg(Src
.getReg(), 0, AMDGPU::sub0
);
5608 BuildMI(MBB
, MII
, DL
, get(TargetOpcode::REG_SEQUENCE
), ResultReg
)
5609 .addReg(Src
.getReg(), 0, AMDGPU::sub0
)
5610 .addImm(AMDGPU::sub0
)
5612 .addImm(AMDGPU::sub1
);
5614 MRI
.replaceRegWith(Dest
.getReg(), ResultReg
);
5615 addUsersToMoveToVALUWorklist(ResultReg
, MRI
, Worklist
);
5618 void SIInstrInfo::addUsersToMoveToVALUWorklist(
5620 MachineRegisterInfo
&MRI
,
5621 SetVectorType
&Worklist
) const {
5622 for (MachineRegisterInfo::use_iterator I
= MRI
.use_begin(DstReg
),
5623 E
= MRI
.use_end(); I
!= E
;) {
5624 MachineInstr
&UseMI
= *I
->getParent();
5628 switch (UseMI
.getOpcode()) {
5631 case AMDGPU::SOFT_WQM
:
5633 case AMDGPU::REG_SEQUENCE
:
5635 case AMDGPU::INSERT_SUBREG
:
5638 OpNo
= I
.getOperandNo();
5642 if (!RI
.hasVectorRegisters(getOpRegClass(UseMI
, OpNo
))) {
5643 Worklist
.insert(&UseMI
);
5647 } while (I
!= E
&& I
->getParent() == &UseMI
);
5654 void SIInstrInfo::movePackToVALU(SetVectorType
&Worklist
,
5655 MachineRegisterInfo
&MRI
,
5656 MachineInstr
&Inst
) const {
5657 Register ResultReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5658 MachineBasicBlock
*MBB
= Inst
.getParent();
5659 MachineOperand
&Src0
= Inst
.getOperand(1);
5660 MachineOperand
&Src1
= Inst
.getOperand(2);
5661 const DebugLoc
&DL
= Inst
.getDebugLoc();
5663 switch (Inst
.getOpcode()) {
5664 case AMDGPU::S_PACK_LL_B32_B16
: {
5665 Register ImmReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5666 Register TmpReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5668 // FIXME: Can do a lot better if we know the high bits of src0 or src1 are
5670 BuildMI(*MBB
, Inst
, DL
, get(AMDGPU::V_MOV_B32_e32
), ImmReg
)
5673 BuildMI(*MBB
, Inst
, DL
, get(AMDGPU::V_AND_B32_e64
), TmpReg
)
5674 .addReg(ImmReg
, RegState::Kill
)
5677 BuildMI(*MBB
, Inst
, DL
, get(AMDGPU::V_LSHL_OR_B32
), ResultReg
)
5680 .addReg(TmpReg
, RegState::Kill
);
5683 case AMDGPU::S_PACK_LH_B32_B16
: {
5684 Register ImmReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5685 BuildMI(*MBB
, Inst
, DL
, get(AMDGPU::V_MOV_B32_e32
), ImmReg
)
5687 BuildMI(*MBB
, Inst
, DL
, get(AMDGPU::V_BFI_B32
), ResultReg
)
5688 .addReg(ImmReg
, RegState::Kill
)
5693 case AMDGPU::S_PACK_HH_B32_B16
: {
5694 Register ImmReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5695 Register TmpReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5696 BuildMI(*MBB
, Inst
, DL
, get(AMDGPU::V_LSHRREV_B32_e64
), TmpReg
)
5699 BuildMI(*MBB
, Inst
, DL
, get(AMDGPU::V_MOV_B32_e32
), ImmReg
)
5700 .addImm(0xffff0000);
5701 BuildMI(*MBB
, Inst
, DL
, get(AMDGPU::V_AND_OR_B32
), ResultReg
)
5703 .addReg(ImmReg
, RegState::Kill
)
5704 .addReg(TmpReg
, RegState::Kill
);
5708 llvm_unreachable("unhandled s_pack_* instruction");
5711 MachineOperand
&Dest
= Inst
.getOperand(0);
5712 MRI
.replaceRegWith(Dest
.getReg(), ResultReg
);
5713 addUsersToMoveToVALUWorklist(ResultReg
, MRI
, Worklist
);
5716 void SIInstrInfo::addSCCDefUsersToVALUWorklist(MachineOperand
&Op
,
5717 MachineInstr
&SCCDefInst
,
5718 SetVectorType
&Worklist
) const {
5719 // Ensure that def inst defines SCC, which is still live.
5720 assert(Op
.isReg() && Op
.getReg() == AMDGPU::SCC
&& Op
.isDef() &&
5721 !Op
.isDead() && Op
.getParent() == &SCCDefInst
);
5722 // This assumes that all the users of SCC are in the same block
5724 for (MachineInstr
&MI
: // Skip the def inst itself.
5725 make_range(std::next(MachineBasicBlock::iterator(SCCDefInst
)),
5726 SCCDefInst
.getParent()->end())) {
5727 // Check if SCC is used first.
5728 if (MI
.findRegisterUseOperandIdx(AMDGPU::SCC
, false, &RI
) != -1)
5729 Worklist
.insert(&MI
);
5730 // Exit if we find another SCC def.
5731 if (MI
.findRegisterDefOperandIdx(AMDGPU::SCC
, false, false, &RI
) != -1)
5736 const TargetRegisterClass
*SIInstrInfo::getDestEquivalentVGPRClass(
5737 const MachineInstr
&Inst
) const {
5738 const TargetRegisterClass
*NewDstRC
= getOpRegClass(Inst
, 0);
5740 switch (Inst
.getOpcode()) {
5741 // For target instructions, getOpRegClass just returns the virtual register
5742 // class associated with the operand, so we need to find an equivalent VGPR
5743 // register class in order to move the instruction to the VALU.
5746 case AMDGPU::REG_SEQUENCE
:
5747 case AMDGPU::INSERT_SUBREG
:
5749 case AMDGPU::SOFT_WQM
:
5751 const TargetRegisterClass
*SrcRC
= getOpRegClass(Inst
, 1);
5752 if (RI
.hasAGPRs(SrcRC
)) {
5753 if (RI
.hasAGPRs(NewDstRC
))
5756 switch (Inst
.getOpcode()) {
5758 case AMDGPU::REG_SEQUENCE
:
5759 case AMDGPU::INSERT_SUBREG
:
5760 NewDstRC
= RI
.getEquivalentAGPRClass(NewDstRC
);
5763 NewDstRC
= RI
.getEquivalentVGPRClass(NewDstRC
);
5769 if (RI
.hasVGPRs(NewDstRC
) || NewDstRC
== &AMDGPU::VReg_1RegClass
)
5772 NewDstRC
= RI
.getEquivalentVGPRClass(NewDstRC
);
5784 // Find the one SGPR operand we are allowed to use.
5785 unsigned SIInstrInfo::findUsedSGPR(const MachineInstr
&MI
,
5786 int OpIndices
[3]) const {
5787 const MCInstrDesc
&Desc
= MI
.getDesc();
5789 // Find the one SGPR operand we are allowed to use.
5791 // First we need to consider the instruction's operand requirements before
5792 // legalizing. Some operands are required to be SGPRs, such as implicit uses
5793 // of VCC, but we are still bound by the constant bus requirement to only use
5796 // If the operand's class is an SGPR, we can never move it.
5798 unsigned SGPRReg
= findImplicitSGPRRead(MI
);
5799 if (SGPRReg
!= AMDGPU::NoRegister
)
5802 unsigned UsedSGPRs
[3] = { AMDGPU::NoRegister
};
5803 const MachineRegisterInfo
&MRI
= MI
.getParent()->getParent()->getRegInfo();
5805 for (unsigned i
= 0; i
< 3; ++i
) {
5806 int Idx
= OpIndices
[i
];
5810 const MachineOperand
&MO
= MI
.getOperand(Idx
);
5814 // Is this operand statically required to be an SGPR based on the operand
5816 const TargetRegisterClass
*OpRC
= RI
.getRegClass(Desc
.OpInfo
[Idx
].RegClass
);
5817 bool IsRequiredSGPR
= RI
.isSGPRClass(OpRC
);
5821 // If this could be a VGPR or an SGPR, Check the dynamic register class.
5822 Register Reg
= MO
.getReg();
5823 const TargetRegisterClass
*RegRC
= MRI
.getRegClass(Reg
);
5824 if (RI
.isSGPRClass(RegRC
))
5828 // We don't have a required SGPR operand, so we have a bit more freedom in
5829 // selecting operands to move.
5831 // Try to select the most used SGPR. If an SGPR is equal to one of the
5832 // others, we choose that.
5835 // V_FMA_F32 v0, s0, s0, s0 -> No moves
5836 // V_FMA_F32 v0, s0, s1, s0 -> Move s1
5838 // TODO: If some of the operands are 64-bit SGPRs and some 32, we should
5841 if (UsedSGPRs
[0] != AMDGPU::NoRegister
) {
5842 if (UsedSGPRs
[0] == UsedSGPRs
[1] || UsedSGPRs
[0] == UsedSGPRs
[2])
5843 SGPRReg
= UsedSGPRs
[0];
5846 if (SGPRReg
== AMDGPU::NoRegister
&& UsedSGPRs
[1] != AMDGPU::NoRegister
) {
5847 if (UsedSGPRs
[1] == UsedSGPRs
[2])
5848 SGPRReg
= UsedSGPRs
[1];
5854 MachineOperand
*SIInstrInfo::getNamedOperand(MachineInstr
&MI
,
5855 unsigned OperandName
) const {
5856 int Idx
= AMDGPU::getNamedOperandIdx(MI
.getOpcode(), OperandName
);
5860 return &MI
.getOperand(Idx
);
5863 uint64_t SIInstrInfo::getDefaultRsrcDataFormat() const {
5864 if (ST
.getGeneration() >= AMDGPUSubtarget::GFX10
) {
5865 return (22ULL << 44) | // IMG_FORMAT_32_FLOAT
5866 (1ULL << 56) | // RESOURCE_LEVEL = 1
5867 (3ULL << 60); // OOB_SELECT = 3
5870 uint64_t RsrcDataFormat
= AMDGPU::RSRC_DATA_FORMAT
;
5871 if (ST
.isAmdHsaOS()) {
5872 // Set ATC = 1. GFX9 doesn't have this bit.
5873 if (ST
.getGeneration() <= AMDGPUSubtarget::VOLCANIC_ISLANDS
)
5874 RsrcDataFormat
|= (1ULL << 56);
5876 // Set MTYPE = 2 (MTYPE_UC = uncached). GFX9 doesn't have this.
5877 // BTW, it disables TC L2 and therefore decreases performance.
5878 if (ST
.getGeneration() == AMDGPUSubtarget::VOLCANIC_ISLANDS
)
5879 RsrcDataFormat
|= (2ULL << 59);
5882 return RsrcDataFormat
;
5885 uint64_t SIInstrInfo::getScratchRsrcWords23() const {
5886 uint64_t Rsrc23
= getDefaultRsrcDataFormat() |
5887 AMDGPU::RSRC_TID_ENABLE
|
5888 0xffffffff; // Size;
5890 // GFX9 doesn't have ELEMENT_SIZE.
5891 if (ST
.getGeneration() <= AMDGPUSubtarget::VOLCANIC_ISLANDS
) {
5892 uint64_t EltSizeValue
= Log2_32(ST
.getMaxPrivateElementSize()) - 1;
5893 Rsrc23
|= EltSizeValue
<< AMDGPU::RSRC_ELEMENT_SIZE_SHIFT
;
5896 // IndexStride = 64 / 32.
5897 uint64_t IndexStride
= ST
.getWavefrontSize() == 64 ? 3 : 2;
5898 Rsrc23
|= IndexStride
<< AMDGPU::RSRC_INDEX_STRIDE_SHIFT
;
5900 // If TID_ENABLE is set, DATA_FORMAT specifies stride bits [14:17].
5901 // Clear them unless we want a huge stride.
5902 if (ST
.getGeneration() >= AMDGPUSubtarget::VOLCANIC_ISLANDS
&&
5903 ST
.getGeneration() <= AMDGPUSubtarget::GFX9
)
5904 Rsrc23
&= ~AMDGPU::RSRC_DATA_FORMAT
;
5909 bool SIInstrInfo::isLowLatencyInstruction(const MachineInstr
&MI
) const {
5910 unsigned Opc
= MI
.getOpcode();
5915 bool SIInstrInfo::isHighLatencyInstruction(const MachineInstr
&MI
) const {
5916 unsigned Opc
= MI
.getOpcode();
5918 return isMUBUF(Opc
) || isMTBUF(Opc
) || isMIMG(Opc
);
5921 unsigned SIInstrInfo::isStackAccess(const MachineInstr
&MI
,
5922 int &FrameIndex
) const {
5923 const MachineOperand
*Addr
= getNamedOperand(MI
, AMDGPU::OpName::vaddr
);
5924 if (!Addr
|| !Addr
->isFI())
5925 return AMDGPU::NoRegister
;
5927 assert(!MI
.memoperands_empty() &&
5928 (*MI
.memoperands_begin())->getAddrSpace() == AMDGPUAS::PRIVATE_ADDRESS
);
5930 FrameIndex
= Addr
->getIndex();
5931 return getNamedOperand(MI
, AMDGPU::OpName::vdata
)->getReg();
5934 unsigned SIInstrInfo::isSGPRStackAccess(const MachineInstr
&MI
,
5935 int &FrameIndex
) const {
5936 const MachineOperand
*Addr
= getNamedOperand(MI
, AMDGPU::OpName::addr
);
5937 assert(Addr
&& Addr
->isFI());
5938 FrameIndex
= Addr
->getIndex();
5939 return getNamedOperand(MI
, AMDGPU::OpName::data
)->getReg();
5942 unsigned SIInstrInfo::isLoadFromStackSlot(const MachineInstr
&MI
,
5943 int &FrameIndex
) const {
5945 return AMDGPU::NoRegister
;
5947 if (isMUBUF(MI
) || isVGPRSpill(MI
))
5948 return isStackAccess(MI
, FrameIndex
);
5950 if (isSGPRSpill(MI
))
5951 return isSGPRStackAccess(MI
, FrameIndex
);
5953 return AMDGPU::NoRegister
;
5956 unsigned SIInstrInfo::isStoreToStackSlot(const MachineInstr
&MI
,
5957 int &FrameIndex
) const {
5959 return AMDGPU::NoRegister
;
5961 if (isMUBUF(MI
) || isVGPRSpill(MI
))
5962 return isStackAccess(MI
, FrameIndex
);
5964 if (isSGPRSpill(MI
))
5965 return isSGPRStackAccess(MI
, FrameIndex
);
5967 return AMDGPU::NoRegister
;
5970 unsigned SIInstrInfo::getInstBundleSize(const MachineInstr
&MI
) const {
5972 MachineBasicBlock::const_instr_iterator I
= MI
.getIterator();
5973 MachineBasicBlock::const_instr_iterator E
= MI
.getParent()->instr_end();
5974 while (++I
!= E
&& I
->isInsideBundle()) {
5975 assert(!I
->isBundle() && "No nested bundle!");
5976 Size
+= getInstSizeInBytes(*I
);
5982 unsigned SIInstrInfo::getInstSizeInBytes(const MachineInstr
&MI
) const {
5983 unsigned Opc
= MI
.getOpcode();
5984 const MCInstrDesc
&Desc
= getMCOpcodeFromPseudo(Opc
);
5985 unsigned DescSize
= Desc
.getSize();
5987 // If we have a definitive size, we can use it. Otherwise we need to inspect
5988 // the operands to know the size.
5989 if (isFixedSize(MI
))
5992 // 4-byte instructions may have a 32-bit literal encoded after them. Check
5993 // operands that coud ever be literals.
5994 if (isVALU(MI
) || isSALU(MI
)) {
5995 int Src0Idx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src0
);
5997 return DescSize
; // No operands.
5999 if (isLiteralConstantLike(MI
.getOperand(Src0Idx
), Desc
.OpInfo
[Src0Idx
]))
6000 return isVOP3(MI
) ? 12 : (DescSize
+ 4);
6002 int Src1Idx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src1
);
6006 if (isLiteralConstantLike(MI
.getOperand(Src1Idx
), Desc
.OpInfo
[Src1Idx
]))
6007 return isVOP3(MI
) ? 12 : (DescSize
+ 4);
6009 int Src2Idx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src2
);
6013 if (isLiteralConstantLike(MI
.getOperand(Src2Idx
), Desc
.OpInfo
[Src2Idx
]))
6014 return isVOP3(MI
) ? 12 : (DescSize
+ 4);
6019 // Check whether we have extra NSA words.
6021 int VAddr0Idx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::vaddr0
);
6025 int RSrcIdx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::srsrc
);
6026 return 8 + 4 * ((RSrcIdx
- VAddr0Idx
+ 2) / 4);
6030 case TargetOpcode::IMPLICIT_DEF
:
6031 case TargetOpcode::KILL
:
6032 case TargetOpcode::DBG_VALUE
:
6033 case TargetOpcode::EH_LABEL
:
6035 case TargetOpcode::BUNDLE
:
6036 return getInstBundleSize(MI
);
6037 case TargetOpcode::INLINEASM
:
6038 case TargetOpcode::INLINEASM_BR
: {
6039 const MachineFunction
*MF
= MI
.getParent()->getParent();
6040 const char *AsmStr
= MI
.getOperand(0).getSymbolName();
6041 return getInlineAsmLength(AsmStr
, *MF
->getTarget().getMCAsmInfo(),
6042 &MF
->getSubtarget());
6049 bool SIInstrInfo::mayAccessFlatAddressSpace(const MachineInstr
&MI
) const {
6053 if (MI
.memoperands_empty())
6056 for (const MachineMemOperand
*MMO
: MI
.memoperands()) {
6057 if (MMO
->getAddrSpace() == AMDGPUAS::FLAT_ADDRESS
)
6063 bool SIInstrInfo::isNonUniformBranchInstr(MachineInstr
&Branch
) const {
6064 return Branch
.getOpcode() == AMDGPU::SI_NON_UNIFORM_BRCOND_PSEUDO
;
6067 void SIInstrInfo::convertNonUniformIfRegion(MachineBasicBlock
*IfEntry
,
6068 MachineBasicBlock
*IfEnd
) const {
6069 MachineBasicBlock::iterator TI
= IfEntry
->getFirstTerminator();
6070 assert(TI
!= IfEntry
->end());
6072 MachineInstr
*Branch
= &(*TI
);
6073 MachineFunction
*MF
= IfEntry
->getParent();
6074 MachineRegisterInfo
&MRI
= IfEntry
->getParent()->getRegInfo();
6076 if (Branch
->getOpcode() == AMDGPU::SI_NON_UNIFORM_BRCOND_PSEUDO
) {
6077 Register DstReg
= MRI
.createVirtualRegister(RI
.getBoolRC());
6078 MachineInstr
*SIIF
=
6079 BuildMI(*MF
, Branch
->getDebugLoc(), get(AMDGPU::SI_IF
), DstReg
)
6080 .add(Branch
->getOperand(0))
6081 .add(Branch
->getOperand(1));
6082 MachineInstr
*SIEND
=
6083 BuildMI(*MF
, Branch
->getDebugLoc(), get(AMDGPU::SI_END_CF
))
6087 IfEntry
->insert(IfEntry
->end(), SIIF
);
6088 IfEnd
->insert(IfEnd
->getFirstNonPHI(), SIEND
);
6092 void SIInstrInfo::convertNonUniformLoopRegion(
6093 MachineBasicBlock
*LoopEntry
, MachineBasicBlock
*LoopEnd
) const {
6094 MachineBasicBlock::iterator TI
= LoopEnd
->getFirstTerminator();
6095 // We expect 2 terminators, one conditional and one unconditional.
6096 assert(TI
!= LoopEnd
->end());
6098 MachineInstr
*Branch
= &(*TI
);
6099 MachineFunction
*MF
= LoopEnd
->getParent();
6100 MachineRegisterInfo
&MRI
= LoopEnd
->getParent()->getRegInfo();
6102 if (Branch
->getOpcode() == AMDGPU::SI_NON_UNIFORM_BRCOND_PSEUDO
) {
6104 Register DstReg
= MRI
.createVirtualRegister(RI
.getBoolRC());
6105 Register BackEdgeReg
= MRI
.createVirtualRegister(RI
.getBoolRC());
6106 MachineInstrBuilder HeaderPHIBuilder
=
6107 BuildMI(*(MF
), Branch
->getDebugLoc(), get(TargetOpcode::PHI
), DstReg
);
6108 for (MachineBasicBlock::pred_iterator PI
= LoopEntry
->pred_begin(),
6109 E
= LoopEntry
->pred_end();
6111 if (*PI
== LoopEnd
) {
6112 HeaderPHIBuilder
.addReg(BackEdgeReg
);
6114 MachineBasicBlock
*PMBB
= *PI
;
6115 Register ZeroReg
= MRI
.createVirtualRegister(RI
.getBoolRC());
6116 materializeImmediate(*PMBB
, PMBB
->getFirstTerminator(), DebugLoc(),
6118 HeaderPHIBuilder
.addReg(ZeroReg
);
6120 HeaderPHIBuilder
.addMBB(*PI
);
6122 MachineInstr
*HeaderPhi
= HeaderPHIBuilder
;
6123 MachineInstr
*SIIFBREAK
= BuildMI(*(MF
), Branch
->getDebugLoc(),
6124 get(AMDGPU::SI_IF_BREAK
), BackEdgeReg
)
6126 .add(Branch
->getOperand(0));
6127 MachineInstr
*SILOOP
=
6128 BuildMI(*(MF
), Branch
->getDebugLoc(), get(AMDGPU::SI_LOOP
))
6129 .addReg(BackEdgeReg
)
6132 LoopEntry
->insert(LoopEntry
->begin(), HeaderPhi
);
6134 LoopEnd
->insert(LoopEnd
->end(), SIIFBREAK
);
6135 LoopEnd
->insert(LoopEnd
->end(), SILOOP
);
6139 ArrayRef
<std::pair
<int, const char *>>
6140 SIInstrInfo::getSerializableTargetIndices() const {
6141 static const std::pair
<int, const char *> TargetIndices
[] = {
6142 {AMDGPU::TI_CONSTDATA_START
, "amdgpu-constdata-start"},
6143 {AMDGPU::TI_SCRATCH_RSRC_DWORD0
, "amdgpu-scratch-rsrc-dword0"},
6144 {AMDGPU::TI_SCRATCH_RSRC_DWORD1
, "amdgpu-scratch-rsrc-dword1"},
6145 {AMDGPU::TI_SCRATCH_RSRC_DWORD2
, "amdgpu-scratch-rsrc-dword2"},
6146 {AMDGPU::TI_SCRATCH_RSRC_DWORD3
, "amdgpu-scratch-rsrc-dword3"}};
6147 return makeArrayRef(TargetIndices
);
6150 /// This is used by the post-RA scheduler (SchedulePostRAList.cpp). The
6151 /// post-RA version of misched uses CreateTargetMIHazardRecognizer.
6152 ScheduleHazardRecognizer
*
6153 SIInstrInfo::CreateTargetPostRAHazardRecognizer(const InstrItineraryData
*II
,
6154 const ScheduleDAG
*DAG
) const {
6155 return new GCNHazardRecognizer(DAG
->MF
);
6158 /// This is the hazard recognizer used at -O0 by the PostRAHazardRecognizer
6160 ScheduleHazardRecognizer
*
6161 SIInstrInfo::CreateTargetPostRAHazardRecognizer(const MachineFunction
&MF
) const {
6162 return new GCNHazardRecognizer(MF
);
6165 std::pair
<unsigned, unsigned>
6166 SIInstrInfo::decomposeMachineOperandsTargetFlags(unsigned TF
) const {
6167 return std::make_pair(TF
& MO_MASK
, TF
& ~MO_MASK
);
6170 ArrayRef
<std::pair
<unsigned, const char *>>
6171 SIInstrInfo::getSerializableDirectMachineOperandTargetFlags() const {
6172 static const std::pair
<unsigned, const char *> TargetFlags
[] = {
6173 { MO_GOTPCREL
, "amdgpu-gotprel" },
6174 { MO_GOTPCREL32_LO
, "amdgpu-gotprel32-lo" },
6175 { MO_GOTPCREL32_HI
, "amdgpu-gotprel32-hi" },
6176 { MO_REL32_LO
, "amdgpu-rel32-lo" },
6177 { MO_REL32_HI
, "amdgpu-rel32-hi" },
6178 { MO_ABS32_LO
, "amdgpu-abs32-lo" },
6179 { MO_ABS32_HI
, "amdgpu-abs32-hi" },
6182 return makeArrayRef(TargetFlags
);
6185 bool SIInstrInfo::isBasicBlockPrologue(const MachineInstr
&MI
) const {
6186 return !MI
.isTerminator() && MI
.getOpcode() != AMDGPU::COPY
&&
6187 MI
.modifiesRegister(AMDGPU::EXEC
, &RI
);
6191 SIInstrInfo::getAddNoCarry(MachineBasicBlock
&MBB
,
6192 MachineBasicBlock::iterator I
,
6194 unsigned DestReg
) const {
6195 if (ST
.hasAddNoCarry())
6196 return BuildMI(MBB
, I
, DL
, get(AMDGPU::V_ADD_U32_e64
), DestReg
);
6198 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
6199 Register UnusedCarry
= MRI
.createVirtualRegister(RI
.getBoolRC());
6200 MRI
.setRegAllocationHint(UnusedCarry
, 0, RI
.getVCC());
6202 return BuildMI(MBB
, I
, DL
, get(AMDGPU::V_ADD_I32_e64
), DestReg
)
6203 .addReg(UnusedCarry
, RegState::Define
| RegState::Dead
);
6206 MachineInstrBuilder
SIInstrInfo::getAddNoCarry(MachineBasicBlock
&MBB
,
6207 MachineBasicBlock::iterator I
,
6210 RegScavenger
&RS
) const {
6211 if (ST
.hasAddNoCarry())
6212 return BuildMI(MBB
, I
, DL
, get(AMDGPU::V_ADD_U32_e32
), DestReg
);
6214 Register UnusedCarry
= RS
.scavengeRegister(RI
.getBoolRC(), I
, 0, false);
6215 // TODO: Users need to deal with this.
6216 if (!UnusedCarry
.isValid())
6217 return MachineInstrBuilder();
6219 return BuildMI(MBB
, I
, DL
, get(AMDGPU::V_ADD_I32_e64
), DestReg
)
6220 .addReg(UnusedCarry
, RegState::Define
| RegState::Dead
);
6223 bool SIInstrInfo::isKillTerminator(unsigned Opcode
) {
6225 case AMDGPU::SI_KILL_F32_COND_IMM_TERMINATOR
:
6226 case AMDGPU::SI_KILL_I1_TERMINATOR
:
6233 const MCInstrDesc
&SIInstrInfo::getKillTerminatorFromPseudo(unsigned Opcode
) const {
6235 case AMDGPU::SI_KILL_F32_COND_IMM_PSEUDO
:
6236 return get(AMDGPU::SI_KILL_F32_COND_IMM_TERMINATOR
);
6237 case AMDGPU::SI_KILL_I1_PSEUDO
:
6238 return get(AMDGPU::SI_KILL_I1_TERMINATOR
);
6240 llvm_unreachable("invalid opcode, expected SI_KILL_*_PSEUDO");
6244 void SIInstrInfo::fixImplicitOperands(MachineInstr
&MI
) const {
6245 MachineBasicBlock
*MBB
= MI
.getParent();
6246 MachineFunction
*MF
= MBB
->getParent();
6247 const GCNSubtarget
&ST
= MF
->getSubtarget
<GCNSubtarget
>();
6252 for (auto &Op
: MI
.implicit_operands()) {
6253 if (Op
.isReg() && Op
.getReg() == AMDGPU::VCC
)
6254 Op
.setReg(AMDGPU::VCC_LO
);
6258 bool SIInstrInfo::isBufferSMRD(const MachineInstr
&MI
) const {
6262 // Check that it is using a buffer resource.
6263 int Idx
= AMDGPU::getNamedOperandIdx(MI
.getOpcode(), AMDGPU::OpName::sbase
);
6264 if (Idx
== -1) // e.g. s_memtime
6267 const auto RCID
= MI
.getDesc().OpInfo
[Idx
].RegClass
;
6268 return RI
.getRegClass(RCID
)->hasSubClassEq(&AMDGPU::SGPR_128RegClass
);
6271 unsigned SIInstrInfo::getNumFlatOffsetBits(unsigned AddrSpace
,
6272 bool Signed
) const {
6273 if (!ST
.hasFlatInstOffsets())
6276 if (ST
.hasFlatSegmentOffsetBug() && AddrSpace
== AMDGPUAS::FLAT_ADDRESS
)
6279 if (ST
.getGeneration() >= AMDGPUSubtarget::GFX10
)
6280 return Signed
? 12 : 11;
6282 return Signed
? 13 : 12;
6285 bool SIInstrInfo::isLegalFLATOffset(int64_t Offset
, unsigned AddrSpace
,
6286 bool Signed
) const {
6287 // TODO: Should 0 be special cased?
6288 if (!ST
.hasFlatInstOffsets())
6291 if (ST
.hasFlatSegmentOffsetBug() && AddrSpace
== AMDGPUAS::FLAT_ADDRESS
)
6294 if (ST
.getGeneration() >= AMDGPUSubtarget::GFX10
) {
6295 return (Signed
&& isInt
<12>(Offset
)) ||
6296 (!Signed
&& isUInt
<11>(Offset
));
6299 return (Signed
&& isInt
<13>(Offset
)) ||
6300 (!Signed
&& isUInt
<12>(Offset
));
6304 // This must be kept in sync with the SIEncodingFamily class in SIInstrInfo.td
6305 enum SIEncodingFamily
{
6316 static SIEncodingFamily
subtargetEncodingFamily(const GCNSubtarget
&ST
) {
6317 switch (ST
.getGeneration()) {
6320 case AMDGPUSubtarget::SOUTHERN_ISLANDS
:
6321 case AMDGPUSubtarget::SEA_ISLANDS
:
6322 return SIEncodingFamily::SI
;
6323 case AMDGPUSubtarget::VOLCANIC_ISLANDS
:
6324 case AMDGPUSubtarget::GFX9
:
6325 return SIEncodingFamily::VI
;
6326 case AMDGPUSubtarget::GFX10
:
6327 return SIEncodingFamily::GFX10
;
6329 llvm_unreachable("Unknown subtarget generation!");
6332 int SIInstrInfo::pseudoToMCOpcode(int Opcode
) const {
6333 SIEncodingFamily Gen
= subtargetEncodingFamily(ST
);
6335 if ((get(Opcode
).TSFlags
& SIInstrFlags::renamedInGFX9
) != 0 &&
6336 ST
.getGeneration() == AMDGPUSubtarget::GFX9
)
6337 Gen
= SIEncodingFamily::GFX9
;
6339 // Adjust the encoding family to GFX80 for D16 buffer instructions when the
6340 // subtarget has UnpackedD16VMem feature.
6341 // TODO: remove this when we discard GFX80 encoding.
6342 if (ST
.hasUnpackedD16VMem() && (get(Opcode
).TSFlags
& SIInstrFlags::D16Buf
))
6343 Gen
= SIEncodingFamily::GFX80
;
6345 if (get(Opcode
).TSFlags
& SIInstrFlags::SDWA
) {
6346 switch (ST
.getGeneration()) {
6348 Gen
= SIEncodingFamily::SDWA
;
6350 case AMDGPUSubtarget::GFX9
:
6351 Gen
= SIEncodingFamily::SDWA9
;
6353 case AMDGPUSubtarget::GFX10
:
6354 Gen
= SIEncodingFamily::SDWA10
;
6359 int MCOp
= AMDGPU::getMCOpcode(Opcode
, Gen
);
6361 // -1 means that Opcode is already a native instruction.
6365 // (uint16_t)-1 means that Opcode is a pseudo instruction that has
6366 // no encoding in the given subtarget generation.
6367 if (MCOp
== (uint16_t)-1)
6374 TargetInstrInfo::RegSubRegPair
getRegOrUndef(const MachineOperand
&RegOpnd
) {
6375 assert(RegOpnd
.isReg());
6376 return RegOpnd
.isUndef() ? TargetInstrInfo::RegSubRegPair() :
6377 getRegSubRegPair(RegOpnd
);
6380 TargetInstrInfo::RegSubRegPair
6381 llvm::getRegSequenceSubReg(MachineInstr
&MI
, unsigned SubReg
) {
6382 assert(MI
.isRegSequence());
6383 for (unsigned I
= 0, E
= (MI
.getNumOperands() - 1)/ 2; I
< E
; ++I
)
6384 if (MI
.getOperand(1 + 2 * I
+ 1).getImm() == SubReg
) {
6385 auto &RegOp
= MI
.getOperand(1 + 2 * I
);
6386 return getRegOrUndef(RegOp
);
6388 return TargetInstrInfo::RegSubRegPair();
6391 // Try to find the definition of reg:subreg in subreg-manipulation pseudos
6392 // Following a subreg of reg:subreg isn't supported
6393 static bool followSubRegDef(MachineInstr
&MI
,
6394 TargetInstrInfo::RegSubRegPair
&RSR
) {
6397 switch (MI
.getOpcode()) {
6399 case AMDGPU::REG_SEQUENCE
:
6400 RSR
= getRegSequenceSubReg(MI
, RSR
.SubReg
);
6402 // EXTRACT_SUBREG ins't supported as this would follow a subreg of subreg
6403 case AMDGPU::INSERT_SUBREG
:
6404 if (RSR
.SubReg
== (unsigned)MI
.getOperand(3).getImm())
6405 // inserted the subreg we're looking for
6406 RSR
= getRegOrUndef(MI
.getOperand(2));
6407 else { // the subreg in the rest of the reg
6408 auto R1
= getRegOrUndef(MI
.getOperand(1));
6409 if (R1
.SubReg
) // subreg of subreg isn't supported
6418 MachineInstr
*llvm::getVRegSubRegDef(const TargetInstrInfo::RegSubRegPair
&P
,
6419 MachineRegisterInfo
&MRI
) {
6420 assert(MRI
.isSSA());
6421 if (!Register::isVirtualRegister(P
.Reg
))
6425 auto *DefInst
= MRI
.getVRegDef(RSR
.Reg
);
6426 while (auto *MI
= DefInst
) {
6428 switch (MI
->getOpcode()) {
6430 case AMDGPU::V_MOV_B32_e32
: {
6431 auto &Op1
= MI
->getOperand(1);
6432 if (Op1
.isReg() && Register::isVirtualRegister(Op1
.getReg())) {
6435 RSR
= getRegSubRegPair(Op1
);
6436 DefInst
= MRI
.getVRegDef(RSR
.Reg
);
6441 if (followSubRegDef(*MI
, RSR
)) {
6444 DefInst
= MRI
.getVRegDef(RSR
.Reg
);
6453 bool llvm::execMayBeModifiedBeforeUse(const MachineRegisterInfo
&MRI
,
6455 const MachineInstr
&DefMI
,
6456 const MachineInstr
&UseMI
) {
6457 assert(MRI
.isSSA() && "Must be run on SSA");
6459 auto *TRI
= MRI
.getTargetRegisterInfo();
6460 auto *DefBB
= DefMI
.getParent();
6462 // Don't bother searching between blocks, although it is possible this block
6463 // doesn't modify exec.
6464 if (UseMI
.getParent() != DefBB
)
6467 const int MaxInstScan
= 20;
6470 // Stop scan at the use.
6471 auto E
= UseMI
.getIterator();
6472 for (auto I
= std::next(DefMI
.getIterator()); I
!= E
; ++I
) {
6473 if (I
->isDebugInstr())
6476 if (++NumInst
> MaxInstScan
)
6479 if (I
->modifiesRegister(AMDGPU::EXEC
, TRI
))
6486 bool llvm::execMayBeModifiedBeforeAnyUse(const MachineRegisterInfo
&MRI
,
6488 const MachineInstr
&DefMI
) {
6489 assert(MRI
.isSSA() && "Must be run on SSA");
6491 auto *TRI
= MRI
.getTargetRegisterInfo();
6492 auto *DefBB
= DefMI
.getParent();
6494 const int MaxUseInstScan
= 10;
6497 for (auto &UseInst
: MRI
.use_nodbg_instructions(VReg
)) {
6498 // Don't bother searching between blocks, although it is possible this block
6499 // doesn't modify exec.
6500 if (UseInst
.getParent() != DefBB
)
6503 if (++NumUseInst
> MaxUseInstScan
)
6507 const int MaxInstScan
= 20;
6510 // Stop scan when we have seen all the uses.
6511 for (auto I
= std::next(DefMI
.getIterator()); ; ++I
) {
6512 if (I
->isDebugInstr())
6515 if (++NumInst
> MaxInstScan
)
6518 if (I
->readsRegister(VReg
))
6519 if (--NumUseInst
== 0)
6522 if (I
->modifiesRegister(AMDGPU::EXEC
, TRI
))
6527 MachineInstr
*SIInstrInfo::createPHIDestinationCopy(
6528 MachineBasicBlock
&MBB
, MachineBasicBlock::iterator LastPHIIt
,
6529 const DebugLoc
&DL
, Register Src
, Register Dst
) const {
6530 auto Cur
= MBB
.begin();
6531 if (Cur
!= MBB
.end())
6533 if (!Cur
->isPHI() && Cur
->readsRegister(Dst
))
6534 return BuildMI(MBB
, Cur
, DL
, get(TargetOpcode::COPY
), Dst
).addReg(Src
);
6536 } while (Cur
!= MBB
.end() && Cur
!= LastPHIIt
);
6538 return TargetInstrInfo::createPHIDestinationCopy(MBB
, LastPHIIt
, DL
, Src
,
6542 MachineInstr
*SIInstrInfo::createPHISourceCopy(
6543 MachineBasicBlock
&MBB
, MachineBasicBlock::iterator InsPt
,
6544 const DebugLoc
&DL
, Register Src
, Register SrcSubReg
, Register Dst
) const {
6545 if (InsPt
!= MBB
.end() &&
6546 (InsPt
->getOpcode() == AMDGPU::SI_IF
||
6547 InsPt
->getOpcode() == AMDGPU::SI_ELSE
||
6548 InsPt
->getOpcode() == AMDGPU::SI_IF_BREAK
) &&
6549 InsPt
->definesRegister(Src
)) {
6551 return BuildMI(MBB
, InsPt
, InsPt
->getDebugLoc(),
6552 get(ST
.isWave32() ? AMDGPU::S_MOV_B32_term
6553 : AMDGPU::S_MOV_B64_term
),
6555 .addReg(Src
, 0, SrcSubReg
)
6556 .addReg(AMDGPU::EXEC
, RegState::Implicit
);
6558 return TargetInstrInfo::createPHISourceCopy(MBB
, InsPt
, DL
, Src
, SrcSubReg
,
6562 bool llvm::SIInstrInfo::isWave32() const { return ST
.isWave32(); }