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 MachineInstrBuilder Spill
= 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
);
1088 if (ST
.hasScalarStores()) {
1089 // m0 is used for offset to scalar stores if used to spill.
1090 Spill
.addReg(AMDGPU::M0
, RegState::ImplicitDefine
| RegState::Dead
);
1096 unsigned Opcode
= RI
.hasAGPRs(RC
) ? getAGPRSpillSaveOpcode(SpillSize
)
1097 : getVGPRSpillSaveOpcode(SpillSize
);
1098 MFI
->setHasSpilledVGPRs();
1100 auto MIB
= BuildMI(MBB
, MI
, DL
, get(Opcode
));
1101 if (RI
.hasAGPRs(RC
)) {
1102 MachineRegisterInfo
&MRI
= MF
->getRegInfo();
1103 Register Tmp
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
1104 MIB
.addReg(Tmp
, RegState::Define
);
1106 MIB
.addReg(SrcReg
, getKillRegState(isKill
)) // data
1107 .addFrameIndex(FrameIndex
) // addr
1108 .addReg(MFI
->getScratchRSrcReg()) // scratch_rsrc
1109 .addReg(MFI
->getStackPtrOffsetReg()) // scratch_offset
1110 .addImm(0) // offset
1111 .addMemOperand(MMO
);
1114 static unsigned getSGPRSpillRestoreOpcode(unsigned Size
) {
1117 return AMDGPU::SI_SPILL_S32_RESTORE
;
1119 return AMDGPU::SI_SPILL_S64_RESTORE
;
1121 return AMDGPU::SI_SPILL_S96_RESTORE
;
1123 return AMDGPU::SI_SPILL_S128_RESTORE
;
1125 return AMDGPU::SI_SPILL_S160_RESTORE
;
1127 return AMDGPU::SI_SPILL_S256_RESTORE
;
1129 return AMDGPU::SI_SPILL_S512_RESTORE
;
1131 return AMDGPU::SI_SPILL_S1024_RESTORE
;
1133 llvm_unreachable("unknown register size");
1137 static unsigned getVGPRSpillRestoreOpcode(unsigned Size
) {
1140 return AMDGPU::SI_SPILL_V32_RESTORE
;
1142 return AMDGPU::SI_SPILL_V64_RESTORE
;
1144 return AMDGPU::SI_SPILL_V96_RESTORE
;
1146 return AMDGPU::SI_SPILL_V128_RESTORE
;
1148 return AMDGPU::SI_SPILL_V160_RESTORE
;
1150 return AMDGPU::SI_SPILL_V256_RESTORE
;
1152 return AMDGPU::SI_SPILL_V512_RESTORE
;
1154 return AMDGPU::SI_SPILL_V1024_RESTORE
;
1156 llvm_unreachable("unknown register size");
1160 static unsigned getAGPRSpillRestoreOpcode(unsigned Size
) {
1163 return AMDGPU::SI_SPILL_A32_RESTORE
;
1165 return AMDGPU::SI_SPILL_A64_RESTORE
;
1167 return AMDGPU::SI_SPILL_A128_RESTORE
;
1169 return AMDGPU::SI_SPILL_A512_RESTORE
;
1171 return AMDGPU::SI_SPILL_A1024_RESTORE
;
1173 llvm_unreachable("unknown register size");
1177 void SIInstrInfo::loadRegFromStackSlot(MachineBasicBlock
&MBB
,
1178 MachineBasicBlock::iterator MI
,
1179 unsigned DestReg
, int FrameIndex
,
1180 const TargetRegisterClass
*RC
,
1181 const TargetRegisterInfo
*TRI
) const {
1182 MachineFunction
*MF
= MBB
.getParent();
1183 SIMachineFunctionInfo
*MFI
= MF
->getInfo
<SIMachineFunctionInfo
>();
1184 MachineFrameInfo
&FrameInfo
= MF
->getFrameInfo();
1185 const DebugLoc
&DL
= MBB
.findDebugLoc(MI
);
1186 unsigned Align
= FrameInfo
.getObjectAlignment(FrameIndex
);
1187 unsigned Size
= FrameInfo
.getObjectSize(FrameIndex
);
1188 unsigned SpillSize
= TRI
->getSpillSize(*RC
);
1190 MachinePointerInfo PtrInfo
1191 = MachinePointerInfo::getFixedStack(*MF
, FrameIndex
);
1193 MachineMemOperand
*MMO
= MF
->getMachineMemOperand(
1194 PtrInfo
, MachineMemOperand::MOLoad
, Size
, Align
);
1196 if (RI
.isSGPRClass(RC
)) {
1197 MFI
->setHasSpilledSGPRs();
1199 // FIXME: Maybe this should not include a memoperand because it will be
1200 // lowered to non-memory instructions.
1201 const MCInstrDesc
&OpDesc
= get(getSGPRSpillRestoreOpcode(SpillSize
));
1202 if (Register::isVirtualRegister(DestReg
) && SpillSize
== 4) {
1203 MachineRegisterInfo
&MRI
= MF
->getRegInfo();
1204 MRI
.constrainRegClass(DestReg
, &AMDGPU::SReg_32_XM0RegClass
);
1207 if (RI
.spillSGPRToVGPR())
1208 FrameInfo
.setStackID(FrameIndex
, TargetStackID::SGPRSpill
);
1209 MachineInstrBuilder Spill
= BuildMI(MBB
, MI
, DL
, OpDesc
, DestReg
)
1210 .addFrameIndex(FrameIndex
) // addr
1212 .addReg(MFI
->getScratchRSrcReg(), RegState::Implicit
)
1213 .addReg(MFI
->getStackPtrOffsetReg(), RegState::Implicit
);
1215 if (ST
.hasScalarStores()) {
1216 // m0 is used for offset to scalar stores if used to spill.
1217 Spill
.addReg(AMDGPU::M0
, RegState::ImplicitDefine
| RegState::Dead
);
1223 unsigned Opcode
= RI
.hasAGPRs(RC
) ? getAGPRSpillRestoreOpcode(SpillSize
)
1224 : getVGPRSpillRestoreOpcode(SpillSize
);
1225 auto MIB
= BuildMI(MBB
, MI
, DL
, get(Opcode
), DestReg
);
1226 if (RI
.hasAGPRs(RC
)) {
1227 MachineRegisterInfo
&MRI
= MF
->getRegInfo();
1228 Register Tmp
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
1229 MIB
.addReg(Tmp
, RegState::Define
);
1231 MIB
.addFrameIndex(FrameIndex
) // vaddr
1232 .addReg(MFI
->getScratchRSrcReg()) // scratch_rsrc
1233 .addReg(MFI
->getStackPtrOffsetReg()) // scratch_offset
1234 .addImm(0) // offset
1235 .addMemOperand(MMO
);
1238 /// \param @Offset Offset in bytes of the FrameIndex being spilled
1239 unsigned SIInstrInfo::calculateLDSSpillAddress(
1240 MachineBasicBlock
&MBB
, MachineInstr
&MI
, RegScavenger
*RS
, unsigned TmpReg
,
1241 unsigned FrameOffset
, unsigned Size
) const {
1242 MachineFunction
*MF
= MBB
.getParent();
1243 SIMachineFunctionInfo
*MFI
= MF
->getInfo
<SIMachineFunctionInfo
>();
1244 const GCNSubtarget
&ST
= MF
->getSubtarget
<GCNSubtarget
>();
1245 const DebugLoc
&DL
= MBB
.findDebugLoc(MI
);
1246 unsigned WorkGroupSize
= MFI
->getMaxFlatWorkGroupSize();
1247 unsigned WavefrontSize
= ST
.getWavefrontSize();
1249 unsigned TIDReg
= MFI
->getTIDReg();
1250 if (!MFI
->hasCalculatedTID()) {
1251 MachineBasicBlock
&Entry
= MBB
.getParent()->front();
1252 MachineBasicBlock::iterator Insert
= Entry
.front();
1253 const DebugLoc
&DL
= Insert
->getDebugLoc();
1255 TIDReg
= RI
.findUnusedRegister(MF
->getRegInfo(), &AMDGPU::VGPR_32RegClass
,
1257 if (TIDReg
== AMDGPU::NoRegister
)
1260 if (!AMDGPU::isShader(MF
->getFunction().getCallingConv()) &&
1261 WorkGroupSize
> WavefrontSize
) {
1262 Register TIDIGXReg
=
1263 MFI
->getPreloadedReg(AMDGPUFunctionArgInfo::WORKGROUP_ID_X
);
1264 Register TIDIGYReg
=
1265 MFI
->getPreloadedReg(AMDGPUFunctionArgInfo::WORKGROUP_ID_Y
);
1266 Register TIDIGZReg
=
1267 MFI
->getPreloadedReg(AMDGPUFunctionArgInfo::WORKGROUP_ID_Z
);
1268 Register InputPtrReg
=
1269 MFI
->getPreloadedReg(AMDGPUFunctionArgInfo::KERNARG_SEGMENT_PTR
);
1270 for (unsigned Reg
: {TIDIGXReg
, TIDIGYReg
, TIDIGZReg
}) {
1271 if (!Entry
.isLiveIn(Reg
))
1272 Entry
.addLiveIn(Reg
);
1275 RS
->enterBasicBlock(Entry
);
1276 // FIXME: Can we scavenge an SReg_64 and access the subregs?
1277 unsigned STmp0
= RS
->scavengeRegister(&AMDGPU::SGPR_32RegClass
, 0);
1278 unsigned STmp1
= RS
->scavengeRegister(&AMDGPU::SGPR_32RegClass
, 0);
1279 BuildMI(Entry
, Insert
, DL
, get(AMDGPU::S_LOAD_DWORD_IMM
), STmp0
)
1280 .addReg(InputPtrReg
)
1281 .addImm(SI::KernelInputOffsets::NGROUPS_Z
);
1282 BuildMI(Entry
, Insert
, DL
, get(AMDGPU::S_LOAD_DWORD_IMM
), STmp1
)
1283 .addReg(InputPtrReg
)
1284 .addImm(SI::KernelInputOffsets::NGROUPS_Y
);
1286 // NGROUPS.X * NGROUPS.Y
1287 BuildMI(Entry
, Insert
, DL
, get(AMDGPU::S_MUL_I32
), STmp1
)
1290 // (NGROUPS.X * NGROUPS.Y) * TIDIG.X
1291 BuildMI(Entry
, Insert
, DL
, get(AMDGPU::V_MUL_U32_U24_e32
), TIDReg
)
1294 // NGROUPS.Z * TIDIG.Y + (NGROUPS.X * NGROPUS.Y * TIDIG.X)
1295 BuildMI(Entry
, Insert
, DL
, get(AMDGPU::V_MAD_U32_U24
), TIDReg
)
1299 // (NGROUPS.Z * TIDIG.Y + (NGROUPS.X * NGROPUS.Y * TIDIG.X)) + TIDIG.Z
1300 getAddNoCarry(Entry
, Insert
, DL
, TIDReg
)
1303 .addImm(0); // clamp bit
1306 BuildMI(Entry
, Insert
, DL
, get(AMDGPU::V_MBCNT_LO_U32_B32_e64
),
1311 BuildMI(Entry
, Insert
, DL
, get(AMDGPU::V_MBCNT_HI_U32_B32_e64
),
1317 BuildMI(Entry
, Insert
, DL
, get(AMDGPU::V_LSHLREV_B32_e32
),
1321 MFI
->setTIDReg(TIDReg
);
1324 // Add FrameIndex to LDS offset
1325 unsigned LDSOffset
= MFI
->getLDSSize() + (FrameOffset
* WorkGroupSize
);
1326 getAddNoCarry(MBB
, MI
, DL
, TmpReg
)
1329 .addImm(0); // clamp bit
1334 void SIInstrInfo::insertWaitStates(MachineBasicBlock
&MBB
,
1335 MachineBasicBlock::iterator MI
,
1337 DebugLoc DL
= MBB
.findDebugLoc(MI
);
1345 BuildMI(MBB
, MI
, DL
, get(AMDGPU::S_NOP
))
1350 void SIInstrInfo::insertNoop(MachineBasicBlock
&MBB
,
1351 MachineBasicBlock::iterator MI
) const {
1352 insertWaitStates(MBB
, MI
, 1);
1355 void SIInstrInfo::insertReturn(MachineBasicBlock
&MBB
) const {
1356 auto MF
= MBB
.getParent();
1357 SIMachineFunctionInfo
*Info
= MF
->getInfo
<SIMachineFunctionInfo
>();
1359 assert(Info
->isEntryFunction());
1361 if (MBB
.succ_empty()) {
1362 bool HasNoTerminator
= MBB
.getFirstTerminator() == MBB
.end();
1363 if (HasNoTerminator
) {
1364 if (Info
->returnsVoid()) {
1365 BuildMI(MBB
, MBB
.end(), DebugLoc(), get(AMDGPU::S_ENDPGM
)).addImm(0);
1367 BuildMI(MBB
, MBB
.end(), DebugLoc(), get(AMDGPU::SI_RETURN_TO_EPILOG
));
1373 unsigned SIInstrInfo::getNumWaitStates(const MachineInstr
&MI
) {
1374 switch (MI
.getOpcode()) {
1375 default: return 1; // FIXME: Do wait states equal cycles?
1378 return MI
.getOperand(0).getImm() + 1;
1382 bool SIInstrInfo::expandPostRAPseudo(MachineInstr
&MI
) const {
1383 MachineBasicBlock
&MBB
= *MI
.getParent();
1384 DebugLoc DL
= MBB
.findDebugLoc(MI
);
1385 switch (MI
.getOpcode()) {
1386 default: return TargetInstrInfo::expandPostRAPseudo(MI
);
1387 case AMDGPU::S_MOV_B64_term
:
1388 // This is only a terminator to get the correct spill code placement during
1389 // register allocation.
1390 MI
.setDesc(get(AMDGPU::S_MOV_B64
));
1393 case AMDGPU::S_MOV_B32_term
:
1394 // This is only a terminator to get the correct spill code placement during
1395 // register allocation.
1396 MI
.setDesc(get(AMDGPU::S_MOV_B32
));
1399 case AMDGPU::S_XOR_B64_term
:
1400 // This is only a terminator to get the correct spill code placement during
1401 // register allocation.
1402 MI
.setDesc(get(AMDGPU::S_XOR_B64
));
1405 case AMDGPU::S_XOR_B32_term
:
1406 // This is only a terminator to get the correct spill code placement during
1407 // register allocation.
1408 MI
.setDesc(get(AMDGPU::S_XOR_B32
));
1411 case AMDGPU::S_OR_B32_term
:
1412 // This is only a terminator to get the correct spill code placement during
1413 // register allocation.
1414 MI
.setDesc(get(AMDGPU::S_OR_B32
));
1417 case AMDGPU::S_ANDN2_B64_term
:
1418 // This is only a terminator to get the correct spill code placement during
1419 // register allocation.
1420 MI
.setDesc(get(AMDGPU::S_ANDN2_B64
));
1423 case AMDGPU::S_ANDN2_B32_term
:
1424 // This is only a terminator to get the correct spill code placement during
1425 // register allocation.
1426 MI
.setDesc(get(AMDGPU::S_ANDN2_B32
));
1429 case AMDGPU::V_MOV_B64_PSEUDO
: {
1430 Register Dst
= MI
.getOperand(0).getReg();
1431 Register DstLo
= RI
.getSubReg(Dst
, AMDGPU::sub0
);
1432 Register DstHi
= RI
.getSubReg(Dst
, AMDGPU::sub1
);
1434 const MachineOperand
&SrcOp
= MI
.getOperand(1);
1435 // FIXME: Will this work for 64-bit floating point immediates?
1436 assert(!SrcOp
.isFPImm());
1437 if (SrcOp
.isImm()) {
1438 APInt
Imm(64, SrcOp
.getImm());
1439 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_MOV_B32_e32
), DstLo
)
1440 .addImm(Imm
.getLoBits(32).getZExtValue())
1441 .addReg(Dst
, RegState::Implicit
| RegState::Define
);
1442 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_MOV_B32_e32
), DstHi
)
1443 .addImm(Imm
.getHiBits(32).getZExtValue())
1444 .addReg(Dst
, RegState::Implicit
| RegState::Define
);
1446 assert(SrcOp
.isReg());
1447 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_MOV_B32_e32
), DstLo
)
1448 .addReg(RI
.getSubReg(SrcOp
.getReg(), AMDGPU::sub0
))
1449 .addReg(Dst
, RegState::Implicit
| RegState::Define
);
1450 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_MOV_B32_e32
), DstHi
)
1451 .addReg(RI
.getSubReg(SrcOp
.getReg(), AMDGPU::sub1
))
1452 .addReg(Dst
, RegState::Implicit
| RegState::Define
);
1454 MI
.eraseFromParent();
1457 case AMDGPU::V_SET_INACTIVE_B32
: {
1458 unsigned NotOpc
= ST
.isWave32() ? AMDGPU::S_NOT_B32
: AMDGPU::S_NOT_B64
;
1459 unsigned Exec
= ST
.isWave32() ? AMDGPU::EXEC_LO
: AMDGPU::EXEC
;
1460 BuildMI(MBB
, MI
, DL
, get(NotOpc
), Exec
)
1462 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_MOV_B32_e32
), MI
.getOperand(0).getReg())
1463 .add(MI
.getOperand(2));
1464 BuildMI(MBB
, MI
, DL
, get(NotOpc
), Exec
)
1466 MI
.eraseFromParent();
1469 case AMDGPU::V_SET_INACTIVE_B64
: {
1470 unsigned NotOpc
= ST
.isWave32() ? AMDGPU::S_NOT_B32
: AMDGPU::S_NOT_B64
;
1471 unsigned Exec
= ST
.isWave32() ? AMDGPU::EXEC_LO
: AMDGPU::EXEC
;
1472 BuildMI(MBB
, MI
, DL
, get(NotOpc
), Exec
)
1474 MachineInstr
*Copy
= BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_MOV_B64_PSEUDO
),
1475 MI
.getOperand(0).getReg())
1476 .add(MI
.getOperand(2));
1477 expandPostRAPseudo(*Copy
);
1478 BuildMI(MBB
, MI
, DL
, get(NotOpc
), Exec
)
1480 MI
.eraseFromParent();
1483 case AMDGPU::V_MOVRELD_B32_V1
:
1484 case AMDGPU::V_MOVRELD_B32_V2
:
1485 case AMDGPU::V_MOVRELD_B32_V4
:
1486 case AMDGPU::V_MOVRELD_B32_V8
:
1487 case AMDGPU::V_MOVRELD_B32_V16
: {
1488 const MCInstrDesc
&MovRelDesc
= get(AMDGPU::V_MOVRELD_B32_e32
);
1489 Register VecReg
= MI
.getOperand(0).getReg();
1490 bool IsUndef
= MI
.getOperand(1).isUndef();
1491 unsigned SubReg
= AMDGPU::sub0
+ MI
.getOperand(3).getImm();
1492 assert(VecReg
== MI
.getOperand(1).getReg());
1494 MachineInstr
*MovRel
=
1495 BuildMI(MBB
, MI
, DL
, MovRelDesc
)
1496 .addReg(RI
.getSubReg(VecReg
, SubReg
), RegState::Undef
)
1497 .add(MI
.getOperand(2))
1498 .addReg(VecReg
, RegState::ImplicitDefine
)
1500 RegState::Implicit
| (IsUndef
? RegState::Undef
: 0));
1502 const int ImpDefIdx
=
1503 MovRelDesc
.getNumOperands() + MovRelDesc
.getNumImplicitUses();
1504 const int ImpUseIdx
= ImpDefIdx
+ 1;
1505 MovRel
->tieOperands(ImpDefIdx
, ImpUseIdx
);
1507 MI
.eraseFromParent();
1510 case AMDGPU::SI_PC_ADD_REL_OFFSET
: {
1511 MachineFunction
&MF
= *MBB
.getParent();
1512 Register Reg
= MI
.getOperand(0).getReg();
1513 Register RegLo
= RI
.getSubReg(Reg
, AMDGPU::sub0
);
1514 Register RegHi
= RI
.getSubReg(Reg
, AMDGPU::sub1
);
1516 // Create a bundle so these instructions won't be re-ordered by the
1517 // post-RA scheduler.
1518 MIBundleBuilder
Bundler(MBB
, MI
);
1519 Bundler
.append(BuildMI(MF
, DL
, get(AMDGPU::S_GETPC_B64
), Reg
));
1521 // Add 32-bit offset from this instruction to the start of the
1523 Bundler
.append(BuildMI(MF
, DL
, get(AMDGPU::S_ADD_U32
), RegLo
)
1525 .add(MI
.getOperand(1)));
1527 MachineInstrBuilder MIB
= BuildMI(MF
, DL
, get(AMDGPU::S_ADDC_U32
), RegHi
)
1529 MIB
.add(MI
.getOperand(2));
1531 Bundler
.append(MIB
);
1532 finalizeBundle(MBB
, Bundler
.begin());
1534 MI
.eraseFromParent();
1537 case AMDGPU::ENTER_WWM
: {
1538 // This only gets its own opcode so that SIPreAllocateWWMRegs can tell when
1540 MI
.setDesc(get(ST
.isWave32() ? AMDGPU::S_OR_SAVEEXEC_B32
1541 : AMDGPU::S_OR_SAVEEXEC_B64
));
1544 case AMDGPU::EXIT_WWM
: {
1545 // This only gets its own opcode so that SIPreAllocateWWMRegs can tell when
1547 MI
.setDesc(get(ST
.isWave32() ? AMDGPU::S_MOV_B32
: AMDGPU::S_MOV_B64
));
1550 case TargetOpcode::BUNDLE
: {
1551 if (!MI
.mayLoad() || MI
.hasUnmodeledSideEffects())
1554 // If it is a load it must be a memory clause
1555 for (MachineBasicBlock::instr_iterator I
= MI
.getIterator();
1556 I
->isBundledWithSucc(); ++I
) {
1557 I
->unbundleFromSucc();
1558 for (MachineOperand
&MO
: I
->operands())
1560 MO
.setIsInternalRead(false);
1563 MI
.eraseFromParent();
1570 bool SIInstrInfo::swapSourceModifiers(MachineInstr
&MI
,
1571 MachineOperand
&Src0
,
1572 unsigned Src0OpName
,
1573 MachineOperand
&Src1
,
1574 unsigned Src1OpName
) const {
1575 MachineOperand
*Src0Mods
= getNamedOperand(MI
, Src0OpName
);
1579 MachineOperand
*Src1Mods
= getNamedOperand(MI
, Src1OpName
);
1581 "All commutable instructions have both src0 and src1 modifiers");
1583 int Src0ModsVal
= Src0Mods
->getImm();
1584 int Src1ModsVal
= Src1Mods
->getImm();
1586 Src1Mods
->setImm(Src0ModsVal
);
1587 Src0Mods
->setImm(Src1ModsVal
);
1591 static MachineInstr
*swapRegAndNonRegOperand(MachineInstr
&MI
,
1592 MachineOperand
&RegOp
,
1593 MachineOperand
&NonRegOp
) {
1594 Register Reg
= RegOp
.getReg();
1595 unsigned SubReg
= RegOp
.getSubReg();
1596 bool IsKill
= RegOp
.isKill();
1597 bool IsDead
= RegOp
.isDead();
1598 bool IsUndef
= RegOp
.isUndef();
1599 bool IsDebug
= RegOp
.isDebug();
1601 if (NonRegOp
.isImm())
1602 RegOp
.ChangeToImmediate(NonRegOp
.getImm());
1603 else if (NonRegOp
.isFI())
1604 RegOp
.ChangeToFrameIndex(NonRegOp
.getIndex());
1608 NonRegOp
.ChangeToRegister(Reg
, false, false, IsKill
, IsDead
, IsUndef
, IsDebug
);
1609 NonRegOp
.setSubReg(SubReg
);
1614 MachineInstr
*SIInstrInfo::commuteInstructionImpl(MachineInstr
&MI
, bool NewMI
,
1616 unsigned Src1Idx
) const {
1617 assert(!NewMI
&& "this should never be used");
1619 unsigned Opc
= MI
.getOpcode();
1620 int CommutedOpcode
= commuteOpcode(Opc
);
1621 if (CommutedOpcode
== -1)
1624 assert(AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src0
) ==
1625 static_cast<int>(Src0Idx
) &&
1626 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src1
) ==
1627 static_cast<int>(Src1Idx
) &&
1628 "inconsistency with findCommutedOpIndices");
1630 MachineOperand
&Src0
= MI
.getOperand(Src0Idx
);
1631 MachineOperand
&Src1
= MI
.getOperand(Src1Idx
);
1633 MachineInstr
*CommutedMI
= nullptr;
1634 if (Src0
.isReg() && Src1
.isReg()) {
1635 if (isOperandLegal(MI
, Src1Idx
, &Src0
)) {
1636 // Be sure to copy the source modifiers to the right place.
1638 = TargetInstrInfo::commuteInstructionImpl(MI
, NewMI
, Src0Idx
, Src1Idx
);
1641 } else if (Src0
.isReg() && !Src1
.isReg()) {
1642 // src0 should always be able to support any operand type, so no need to
1643 // check operand legality.
1644 CommutedMI
= swapRegAndNonRegOperand(MI
, Src0
, Src1
);
1645 } else if (!Src0
.isReg() && Src1
.isReg()) {
1646 if (isOperandLegal(MI
, Src1Idx
, &Src0
))
1647 CommutedMI
= swapRegAndNonRegOperand(MI
, Src1
, Src0
);
1649 // FIXME: Found two non registers to commute. This does happen.
1654 swapSourceModifiers(MI
, Src0
, AMDGPU::OpName::src0_modifiers
,
1655 Src1
, AMDGPU::OpName::src1_modifiers
);
1657 CommutedMI
->setDesc(get(CommutedOpcode
));
1663 // This needs to be implemented because the source modifiers may be inserted
1664 // between the true commutable operands, and the base
1665 // TargetInstrInfo::commuteInstruction uses it.
1666 bool SIInstrInfo::findCommutedOpIndices(const MachineInstr
&MI
,
1667 unsigned &SrcOpIdx0
,
1668 unsigned &SrcOpIdx1
) const {
1669 return findCommutedOpIndices(MI
.getDesc(), SrcOpIdx0
, SrcOpIdx1
);
1672 bool SIInstrInfo::findCommutedOpIndices(MCInstrDesc Desc
, unsigned &SrcOpIdx0
,
1673 unsigned &SrcOpIdx1
) const {
1674 if (!Desc
.isCommutable())
1677 unsigned Opc
= Desc
.getOpcode();
1678 int Src0Idx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src0
);
1682 int Src1Idx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src1
);
1686 return fixCommutedOpIndices(SrcOpIdx0
, SrcOpIdx1
, Src0Idx
, Src1Idx
);
1689 bool SIInstrInfo::isBranchOffsetInRange(unsigned BranchOp
,
1690 int64_t BrOffset
) const {
1691 // BranchRelaxation should never have to check s_setpc_b64 because its dest
1692 // block is unanalyzable.
1693 assert(BranchOp
!= AMDGPU::S_SETPC_B64
);
1695 // Convert to dwords.
1698 // The branch instructions do PC += signext(SIMM16 * 4) + 4, so the offset is
1699 // from the next instruction.
1702 return isIntN(BranchOffsetBits
, BrOffset
);
1705 MachineBasicBlock
*SIInstrInfo::getBranchDestBlock(
1706 const MachineInstr
&MI
) const {
1707 if (MI
.getOpcode() == AMDGPU::S_SETPC_B64
) {
1708 // This would be a difficult analysis to perform, but can always be legal so
1709 // there's no need to analyze it.
1713 return MI
.getOperand(0).getMBB();
1716 unsigned SIInstrInfo::insertIndirectBranch(MachineBasicBlock
&MBB
,
1717 MachineBasicBlock
&DestBB
,
1720 RegScavenger
*RS
) const {
1721 assert(RS
&& "RegScavenger required for long branching");
1722 assert(MBB
.empty() &&
1723 "new block should be inserted for expanding unconditional branch");
1724 assert(MBB
.pred_size() == 1);
1726 MachineFunction
*MF
= MBB
.getParent();
1727 MachineRegisterInfo
&MRI
= MF
->getRegInfo();
1729 // FIXME: Virtual register workaround for RegScavenger not working with empty
1731 Register PCReg
= MRI
.createVirtualRegister(&AMDGPU::SReg_64RegClass
);
1735 // We need to compute the offset relative to the instruction immediately after
1736 // s_getpc_b64. Insert pc arithmetic code before last terminator.
1737 MachineInstr
*GetPC
= BuildMI(MBB
, I
, DL
, get(AMDGPU::S_GETPC_B64
), PCReg
);
1739 // TODO: Handle > 32-bit block address.
1740 if (BrOffset
>= 0) {
1741 BuildMI(MBB
, I
, DL
, get(AMDGPU::S_ADD_U32
))
1742 .addReg(PCReg
, RegState::Define
, AMDGPU::sub0
)
1743 .addReg(PCReg
, 0, AMDGPU::sub0
)
1744 .addMBB(&DestBB
, MO_LONG_BRANCH_FORWARD
);
1745 BuildMI(MBB
, I
, DL
, get(AMDGPU::S_ADDC_U32
))
1746 .addReg(PCReg
, RegState::Define
, AMDGPU::sub1
)
1747 .addReg(PCReg
, 0, AMDGPU::sub1
)
1750 // Backwards branch.
1751 BuildMI(MBB
, I
, DL
, get(AMDGPU::S_SUB_U32
))
1752 .addReg(PCReg
, RegState::Define
, AMDGPU::sub0
)
1753 .addReg(PCReg
, 0, AMDGPU::sub0
)
1754 .addMBB(&DestBB
, MO_LONG_BRANCH_BACKWARD
);
1755 BuildMI(MBB
, I
, DL
, get(AMDGPU::S_SUBB_U32
))
1756 .addReg(PCReg
, RegState::Define
, AMDGPU::sub1
)
1757 .addReg(PCReg
, 0, AMDGPU::sub1
)
1761 // Insert the indirect branch after the other terminator.
1762 BuildMI(&MBB
, DL
, get(AMDGPU::S_SETPC_B64
))
1765 // FIXME: If spilling is necessary, this will fail because this scavenger has
1766 // no emergency stack slots. It is non-trivial to spill in this situation,
1767 // because the restore code needs to be specially placed after the
1768 // jump. BranchRelaxation then needs to be made aware of the newly inserted
1771 // If a spill is needed for the pc register pair, we need to insert a spill
1772 // restore block right before the destination block, and insert a short branch
1773 // into the old destination block's fallthrough predecessor.
1776 // s_cbranch_scc0 skip_long_branch:
1780 // s_getpc_b64 s[8:9]
1781 // s_add_u32 s8, s8, restore_bb
1782 // s_addc_u32 s9, s9, 0
1783 // s_setpc_b64 s[8:9]
1785 // skip_long_branch:
1790 // dest_bb_fallthrough_predecessor:
1796 // fallthrough dest_bb
1801 RS
->enterBasicBlockEnd(MBB
);
1802 unsigned Scav
= RS
->scavengeRegisterBackwards(
1803 AMDGPU::SReg_64RegClass
,
1804 MachineBasicBlock::iterator(GetPC
), false, 0);
1805 MRI
.replaceRegWith(PCReg
, Scav
);
1806 MRI
.clearVirtRegs();
1807 RS
->setRegUsed(Scav
);
1809 return 4 + 8 + 4 + 4;
1812 unsigned SIInstrInfo::getBranchOpcode(SIInstrInfo::BranchPredicate Cond
) {
1814 case SIInstrInfo::SCC_TRUE
:
1815 return AMDGPU::S_CBRANCH_SCC1
;
1816 case SIInstrInfo::SCC_FALSE
:
1817 return AMDGPU::S_CBRANCH_SCC0
;
1818 case SIInstrInfo::VCCNZ
:
1819 return AMDGPU::S_CBRANCH_VCCNZ
;
1820 case SIInstrInfo::VCCZ
:
1821 return AMDGPU::S_CBRANCH_VCCZ
;
1822 case SIInstrInfo::EXECNZ
:
1823 return AMDGPU::S_CBRANCH_EXECNZ
;
1824 case SIInstrInfo::EXECZ
:
1825 return AMDGPU::S_CBRANCH_EXECZ
;
1827 llvm_unreachable("invalid branch predicate");
1831 SIInstrInfo::BranchPredicate
SIInstrInfo::getBranchPredicate(unsigned Opcode
) {
1833 case AMDGPU::S_CBRANCH_SCC0
:
1835 case AMDGPU::S_CBRANCH_SCC1
:
1837 case AMDGPU::S_CBRANCH_VCCNZ
:
1839 case AMDGPU::S_CBRANCH_VCCZ
:
1841 case AMDGPU::S_CBRANCH_EXECNZ
:
1843 case AMDGPU::S_CBRANCH_EXECZ
:
1850 bool SIInstrInfo::analyzeBranchImpl(MachineBasicBlock
&MBB
,
1851 MachineBasicBlock::iterator I
,
1852 MachineBasicBlock
*&TBB
,
1853 MachineBasicBlock
*&FBB
,
1854 SmallVectorImpl
<MachineOperand
> &Cond
,
1855 bool AllowModify
) const {
1856 if (I
->getOpcode() == AMDGPU::S_BRANCH
) {
1857 // Unconditional Branch
1858 TBB
= I
->getOperand(0).getMBB();
1862 MachineBasicBlock
*CondBB
= nullptr;
1864 if (I
->getOpcode() == AMDGPU::SI_NON_UNIFORM_BRCOND_PSEUDO
) {
1865 CondBB
= I
->getOperand(1).getMBB();
1866 Cond
.push_back(I
->getOperand(0));
1868 BranchPredicate Pred
= getBranchPredicate(I
->getOpcode());
1869 if (Pred
== INVALID_BR
)
1872 CondBB
= I
->getOperand(0).getMBB();
1873 Cond
.push_back(MachineOperand::CreateImm(Pred
));
1874 Cond
.push_back(I
->getOperand(1)); // Save the branch register.
1878 if (I
== MBB
.end()) {
1879 // Conditional branch followed by fall-through.
1884 if (I
->getOpcode() == AMDGPU::S_BRANCH
) {
1886 FBB
= I
->getOperand(0).getMBB();
1893 bool SIInstrInfo::analyzeBranch(MachineBasicBlock
&MBB
, MachineBasicBlock
*&TBB
,
1894 MachineBasicBlock
*&FBB
,
1895 SmallVectorImpl
<MachineOperand
> &Cond
,
1896 bool AllowModify
) const {
1897 MachineBasicBlock::iterator I
= MBB
.getFirstTerminator();
1902 // Skip over the instructions that are artificially terminators for special
1904 while (I
!= E
&& !I
->isBranch() && !I
->isReturn() &&
1905 I
->getOpcode() != AMDGPU::SI_MASK_BRANCH
) {
1906 switch (I
->getOpcode()) {
1907 case AMDGPU::SI_MASK_BRANCH
:
1908 case AMDGPU::S_MOV_B64_term
:
1909 case AMDGPU::S_XOR_B64_term
:
1910 case AMDGPU::S_ANDN2_B64_term
:
1911 case AMDGPU::S_MOV_B32_term
:
1912 case AMDGPU::S_XOR_B32_term
:
1913 case AMDGPU::S_OR_B32_term
:
1914 case AMDGPU::S_ANDN2_B32_term
:
1917 case AMDGPU::SI_ELSE
:
1918 case AMDGPU::SI_KILL_I1_TERMINATOR
:
1919 case AMDGPU::SI_KILL_F32_COND_IMM_TERMINATOR
:
1920 // FIXME: It's messy that these need to be considered here at all.
1923 llvm_unreachable("unexpected non-branch terminator inst");
1932 if (I
->getOpcode() != AMDGPU::SI_MASK_BRANCH
)
1933 return analyzeBranchImpl(MBB
, I
, TBB
, FBB
, Cond
, AllowModify
);
1937 // TODO: Should be able to treat as fallthrough?
1941 if (analyzeBranchImpl(MBB
, I
, TBB
, FBB
, Cond
, AllowModify
))
1944 MachineBasicBlock
*MaskBrDest
= I
->getOperand(0).getMBB();
1946 // Specifically handle the case where the conditional branch is to the same
1947 // destination as the mask branch. e.g.
1949 // si_mask_branch BB8
1950 // s_cbranch_execz BB8
1953 // This is required to understand divergent loops which may need the branches
1955 if (TBB
!= MaskBrDest
|| Cond
.empty())
1958 auto Pred
= Cond
[0].getImm();
1959 return (Pred
!= EXECZ
&& Pred
!= EXECNZ
);
1962 unsigned SIInstrInfo::removeBranch(MachineBasicBlock
&MBB
,
1963 int *BytesRemoved
) const {
1964 MachineBasicBlock::iterator I
= MBB
.getFirstTerminator();
1967 unsigned RemovedSize
= 0;
1968 while (I
!= MBB
.end()) {
1969 MachineBasicBlock::iterator Next
= std::next(I
);
1970 if (I
->getOpcode() == AMDGPU::SI_MASK_BRANCH
) {
1975 RemovedSize
+= getInstSizeInBytes(*I
);
1976 I
->eraseFromParent();
1982 *BytesRemoved
= RemovedSize
;
1987 // Copy the flags onto the implicit condition register operand.
1988 static void preserveCondRegFlags(MachineOperand
&CondReg
,
1989 const MachineOperand
&OrigCond
) {
1990 CondReg
.setIsUndef(OrigCond
.isUndef());
1991 CondReg
.setIsKill(OrigCond
.isKill());
1994 unsigned SIInstrInfo::insertBranch(MachineBasicBlock
&MBB
,
1995 MachineBasicBlock
*TBB
,
1996 MachineBasicBlock
*FBB
,
1997 ArrayRef
<MachineOperand
> Cond
,
1999 int *BytesAdded
) const {
2000 if (!FBB
&& Cond
.empty()) {
2001 BuildMI(&MBB
, DL
, get(AMDGPU::S_BRANCH
))
2008 if(Cond
.size() == 1 && Cond
[0].isReg()) {
2009 BuildMI(&MBB
, DL
, get(AMDGPU::SI_NON_UNIFORM_BRCOND_PSEUDO
))
2015 assert(TBB
&& Cond
[0].isImm());
2018 = getBranchOpcode(static_cast<BranchPredicate
>(Cond
[0].getImm()));
2022 MachineInstr
*CondBr
=
2023 BuildMI(&MBB
, DL
, get(Opcode
))
2026 // Copy the flags onto the implicit condition register operand.
2027 preserveCondRegFlags(CondBr
->getOperand(1), Cond
[1]);
2036 MachineInstr
*CondBr
=
2037 BuildMI(&MBB
, DL
, get(Opcode
))
2039 BuildMI(&MBB
, DL
, get(AMDGPU::S_BRANCH
))
2042 MachineOperand
&CondReg
= CondBr
->getOperand(1);
2043 CondReg
.setIsUndef(Cond
[1].isUndef());
2044 CondReg
.setIsKill(Cond
[1].isKill());
2052 bool SIInstrInfo::reverseBranchCondition(
2053 SmallVectorImpl
<MachineOperand
> &Cond
) const {
2054 if (Cond
.size() != 2) {
2058 if (Cond
[0].isImm()) {
2059 Cond
[0].setImm(-Cond
[0].getImm());
2066 bool SIInstrInfo::canInsertSelect(const MachineBasicBlock
&MBB
,
2067 ArrayRef
<MachineOperand
> Cond
,
2068 unsigned TrueReg
, unsigned FalseReg
,
2070 int &TrueCycles
, int &FalseCycles
) const {
2071 switch (Cond
[0].getImm()) {
2074 const MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
2075 const TargetRegisterClass
*RC
= MRI
.getRegClass(TrueReg
);
2076 assert(MRI
.getRegClass(FalseReg
) == RC
);
2078 int NumInsts
= AMDGPU::getRegBitWidth(RC
->getID()) / 32;
2079 CondCycles
= TrueCycles
= FalseCycles
= NumInsts
; // ???
2081 // Limit to equal cost for branch vs. N v_cndmask_b32s.
2082 return RI
.hasVGPRs(RC
) && NumInsts
<= 6;
2086 // FIXME: We could insert for VGPRs if we could replace the original compare
2087 // with a vector one.
2088 const MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
2089 const TargetRegisterClass
*RC
= MRI
.getRegClass(TrueReg
);
2090 assert(MRI
.getRegClass(FalseReg
) == RC
);
2092 int NumInsts
= AMDGPU::getRegBitWidth(RC
->getID()) / 32;
2094 // Multiples of 8 can do s_cselect_b64
2095 if (NumInsts
% 2 == 0)
2098 CondCycles
= TrueCycles
= FalseCycles
= NumInsts
; // ???
2099 return RI
.isSGPRClass(RC
);
2106 void SIInstrInfo::insertSelect(MachineBasicBlock
&MBB
,
2107 MachineBasicBlock::iterator I
, const DebugLoc
&DL
,
2108 unsigned DstReg
, ArrayRef
<MachineOperand
> Cond
,
2109 unsigned TrueReg
, unsigned FalseReg
) const {
2110 BranchPredicate Pred
= static_cast<BranchPredicate
>(Cond
[0].getImm());
2111 if (Pred
== VCCZ
|| Pred
== SCC_FALSE
) {
2112 Pred
= static_cast<BranchPredicate
>(-Pred
);
2113 std::swap(TrueReg
, FalseReg
);
2116 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
2117 const TargetRegisterClass
*DstRC
= MRI
.getRegClass(DstReg
);
2118 unsigned DstSize
= RI
.getRegSizeInBits(*DstRC
);
2120 if (DstSize
== 32) {
2121 unsigned SelOp
= Pred
== SCC_TRUE
?
2122 AMDGPU::S_CSELECT_B32
: AMDGPU::V_CNDMASK_B32_e32
;
2124 // Instruction's operands are backwards from what is expected.
2125 MachineInstr
*Select
=
2126 BuildMI(MBB
, I
, DL
, get(SelOp
), DstReg
)
2130 preserveCondRegFlags(Select
->getOperand(3), Cond
[1]);
2134 if (DstSize
== 64 && Pred
== SCC_TRUE
) {
2135 MachineInstr
*Select
=
2136 BuildMI(MBB
, I
, DL
, get(AMDGPU::S_CSELECT_B64
), DstReg
)
2140 preserveCondRegFlags(Select
->getOperand(3), Cond
[1]);
2144 static const int16_t Sub0_15
[] = {
2145 AMDGPU::sub0
, AMDGPU::sub1
, AMDGPU::sub2
, AMDGPU::sub3
,
2146 AMDGPU::sub4
, AMDGPU::sub5
, AMDGPU::sub6
, AMDGPU::sub7
,
2147 AMDGPU::sub8
, AMDGPU::sub9
, AMDGPU::sub10
, AMDGPU::sub11
,
2148 AMDGPU::sub12
, AMDGPU::sub13
, AMDGPU::sub14
, AMDGPU::sub15
,
2151 static const int16_t Sub0_15_64
[] = {
2152 AMDGPU::sub0_sub1
, AMDGPU::sub2_sub3
,
2153 AMDGPU::sub4_sub5
, AMDGPU::sub6_sub7
,
2154 AMDGPU::sub8_sub9
, AMDGPU::sub10_sub11
,
2155 AMDGPU::sub12_sub13
, AMDGPU::sub14_sub15
,
2158 unsigned SelOp
= AMDGPU::V_CNDMASK_B32_e32
;
2159 const TargetRegisterClass
*EltRC
= &AMDGPU::VGPR_32RegClass
;
2160 const int16_t *SubIndices
= Sub0_15
;
2161 int NElts
= DstSize
/ 32;
2163 // 64-bit select is only available for SALU.
2164 // TODO: Split 96-bit into 64-bit and 32-bit, not 3x 32-bit.
2165 if (Pred
== SCC_TRUE
) {
2167 SelOp
= AMDGPU::S_CSELECT_B32
;
2168 EltRC
= &AMDGPU::SGPR_32RegClass
;
2170 SelOp
= AMDGPU::S_CSELECT_B64
;
2171 EltRC
= &AMDGPU::SGPR_64RegClass
;
2172 SubIndices
= Sub0_15_64
;
2177 MachineInstrBuilder MIB
= BuildMI(
2178 MBB
, I
, DL
, get(AMDGPU::REG_SEQUENCE
), DstReg
);
2180 I
= MIB
->getIterator();
2182 SmallVector
<unsigned, 8> Regs
;
2183 for (int Idx
= 0; Idx
!= NElts
; ++Idx
) {
2184 Register DstElt
= MRI
.createVirtualRegister(EltRC
);
2185 Regs
.push_back(DstElt
);
2187 unsigned SubIdx
= SubIndices
[Idx
];
2189 MachineInstr
*Select
=
2190 BuildMI(MBB
, I
, DL
, get(SelOp
), DstElt
)
2191 .addReg(FalseReg
, 0, SubIdx
)
2192 .addReg(TrueReg
, 0, SubIdx
);
2193 preserveCondRegFlags(Select
->getOperand(3), Cond
[1]);
2194 fixImplicitOperands(*Select
);
2201 bool SIInstrInfo::isFoldableCopy(const MachineInstr
&MI
) const {
2202 switch (MI
.getOpcode()) {
2203 case AMDGPU::V_MOV_B32_e32
:
2204 case AMDGPU::V_MOV_B32_e64
:
2205 case AMDGPU::V_MOV_B64_PSEUDO
: {
2206 // If there are additional implicit register operands, this may be used for
2207 // register indexing so the source register operand isn't simply copied.
2208 unsigned NumOps
= MI
.getDesc().getNumOperands() +
2209 MI
.getDesc().getNumImplicitUses();
2211 return MI
.getNumOperands() == NumOps
;
2213 case AMDGPU::S_MOV_B32
:
2214 case AMDGPU::S_MOV_B64
:
2216 case AMDGPU::V_ACCVGPR_WRITE_B32
:
2217 case AMDGPU::V_ACCVGPR_READ_B32
:
2224 unsigned SIInstrInfo::getAddressSpaceForPseudoSourceKind(
2225 unsigned Kind
) const {
2227 case PseudoSourceValue::Stack
:
2228 case PseudoSourceValue::FixedStack
:
2229 return AMDGPUAS::PRIVATE_ADDRESS
;
2230 case PseudoSourceValue::ConstantPool
:
2231 case PseudoSourceValue::GOT
:
2232 case PseudoSourceValue::JumpTable
:
2233 case PseudoSourceValue::GlobalValueCallEntry
:
2234 case PseudoSourceValue::ExternalSymbolCallEntry
:
2235 case PseudoSourceValue::TargetCustom
:
2236 return AMDGPUAS::CONSTANT_ADDRESS
;
2238 return AMDGPUAS::FLAT_ADDRESS
;
2241 static void removeModOperands(MachineInstr
&MI
) {
2242 unsigned Opc
= MI
.getOpcode();
2243 int Src0ModIdx
= AMDGPU::getNamedOperandIdx(Opc
,
2244 AMDGPU::OpName::src0_modifiers
);
2245 int Src1ModIdx
= AMDGPU::getNamedOperandIdx(Opc
,
2246 AMDGPU::OpName::src1_modifiers
);
2247 int Src2ModIdx
= AMDGPU::getNamedOperandIdx(Opc
,
2248 AMDGPU::OpName::src2_modifiers
);
2250 MI
.RemoveOperand(Src2ModIdx
);
2251 MI
.RemoveOperand(Src1ModIdx
);
2252 MI
.RemoveOperand(Src0ModIdx
);
2255 bool SIInstrInfo::FoldImmediate(MachineInstr
&UseMI
, MachineInstr
&DefMI
,
2256 unsigned Reg
, MachineRegisterInfo
*MRI
) const {
2257 if (!MRI
->hasOneNonDBGUse(Reg
))
2260 switch (DefMI
.getOpcode()) {
2263 case AMDGPU::S_MOV_B64
:
2264 // TODO: We could fold 64-bit immediates, but this get compilicated
2265 // when there are sub-registers.
2268 case AMDGPU::V_MOV_B32_e32
:
2269 case AMDGPU::S_MOV_B32
:
2270 case AMDGPU::V_ACCVGPR_WRITE_B32
:
2274 const MachineOperand
*ImmOp
= getNamedOperand(DefMI
, AMDGPU::OpName::src0
);
2276 // FIXME: We could handle FrameIndex values here.
2277 if (!ImmOp
->isImm())
2280 unsigned Opc
= UseMI
.getOpcode();
2281 if (Opc
== AMDGPU::COPY
) {
2282 bool isVGPRCopy
= RI
.isVGPR(*MRI
, UseMI
.getOperand(0).getReg());
2283 unsigned NewOpc
= isVGPRCopy
? AMDGPU::V_MOV_B32_e32
: AMDGPU::S_MOV_B32
;
2284 if (RI
.isAGPR(*MRI
, UseMI
.getOperand(0).getReg())) {
2285 if (!isInlineConstant(*ImmOp
, AMDGPU::OPERAND_REG_INLINE_AC_INT32
))
2287 NewOpc
= AMDGPU::V_ACCVGPR_WRITE_B32
;
2289 UseMI
.setDesc(get(NewOpc
));
2290 UseMI
.getOperand(1).ChangeToImmediate(ImmOp
->getImm());
2291 UseMI
.addImplicitDefUseOperands(*UseMI
.getParent()->getParent());
2295 if (Opc
== AMDGPU::V_MAD_F32
|| Opc
== AMDGPU::V_MAC_F32_e64
||
2296 Opc
== AMDGPU::V_MAD_F16
|| Opc
== AMDGPU::V_MAC_F16_e64
||
2297 Opc
== AMDGPU::V_FMA_F32
|| Opc
== AMDGPU::V_FMAC_F32_e64
||
2298 Opc
== AMDGPU::V_FMA_F16
|| Opc
== AMDGPU::V_FMAC_F16_e64
) {
2299 // Don't fold if we are using source or output modifiers. The new VOP2
2300 // instructions don't have them.
2301 if (hasAnyModifiersSet(UseMI
))
2304 // If this is a free constant, there's no reason to do this.
2305 // TODO: We could fold this here instead of letting SIFoldOperands do it
2307 MachineOperand
*Src0
= getNamedOperand(UseMI
, AMDGPU::OpName::src0
);
2309 // Any src operand can be used for the legality check.
2310 if (isInlineConstant(UseMI
, *Src0
, *ImmOp
))
2313 bool IsF32
= Opc
== AMDGPU::V_MAD_F32
|| Opc
== AMDGPU::V_MAC_F32_e64
||
2314 Opc
== AMDGPU::V_FMA_F32
|| Opc
== AMDGPU::V_FMAC_F32_e64
;
2315 bool IsFMA
= Opc
== AMDGPU::V_FMA_F32
|| Opc
== AMDGPU::V_FMAC_F32_e64
||
2316 Opc
== AMDGPU::V_FMA_F16
|| Opc
== AMDGPU::V_FMAC_F16_e64
;
2317 MachineOperand
*Src1
= getNamedOperand(UseMI
, AMDGPU::OpName::src1
);
2318 MachineOperand
*Src2
= getNamedOperand(UseMI
, AMDGPU::OpName::src2
);
2320 // Multiplied part is the constant: Use v_madmk_{f16, f32}.
2321 // We should only expect these to be on src0 due to canonicalizations.
2322 if (Src0
->isReg() && Src0
->getReg() == Reg
) {
2323 if (!Src1
->isReg() || RI
.isSGPRClass(MRI
->getRegClass(Src1
->getReg())))
2326 if (!Src2
->isReg() || RI
.isSGPRClass(MRI
->getRegClass(Src2
->getReg())))
2330 IsFMA
? (IsF32
? AMDGPU::V_FMAMK_F32
: AMDGPU::V_FMAMK_F16
)
2331 : (IsF32
? AMDGPU::V_MADMK_F32
: AMDGPU::V_MADMK_F16
);
2332 if (pseudoToMCOpcode(NewOpc
) == -1)
2335 // We need to swap operands 0 and 1 since madmk constant is at operand 1.
2337 const int64_t Imm
= ImmOp
->getImm();
2339 // FIXME: This would be a lot easier if we could return a new instruction
2340 // instead of having to modify in place.
2342 // Remove these first since they are at the end.
2343 UseMI
.RemoveOperand(
2344 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::omod
));
2345 UseMI
.RemoveOperand(
2346 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::clamp
));
2348 Register Src1Reg
= Src1
->getReg();
2349 unsigned Src1SubReg
= Src1
->getSubReg();
2350 Src0
->setReg(Src1Reg
);
2351 Src0
->setSubReg(Src1SubReg
);
2352 Src0
->setIsKill(Src1
->isKill());
2354 if (Opc
== AMDGPU::V_MAC_F32_e64
||
2355 Opc
== AMDGPU::V_MAC_F16_e64
||
2356 Opc
== AMDGPU::V_FMAC_F32_e64
||
2357 Opc
== AMDGPU::V_FMAC_F16_e64
)
2358 UseMI
.untieRegOperand(
2359 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src2
));
2361 Src1
->ChangeToImmediate(Imm
);
2363 removeModOperands(UseMI
);
2364 UseMI
.setDesc(get(NewOpc
));
2366 bool DeleteDef
= MRI
->hasOneNonDBGUse(Reg
);
2368 DefMI
.eraseFromParent();
2373 // Added part is the constant: Use v_madak_{f16, f32}.
2374 if (Src2
->isReg() && Src2
->getReg() == Reg
) {
2375 // Not allowed to use constant bus for another operand.
2376 // We can however allow an inline immediate as src0.
2377 bool Src0Inlined
= false;
2378 if (Src0
->isReg()) {
2379 // Try to inline constant if possible.
2380 // If the Def moves immediate and the use is single
2381 // We are saving VGPR here.
2382 MachineInstr
*Def
= MRI
->getUniqueVRegDef(Src0
->getReg());
2383 if (Def
&& Def
->isMoveImmediate() &&
2384 isInlineConstant(Def
->getOperand(1)) &&
2385 MRI
->hasOneUse(Src0
->getReg())) {
2386 Src0
->ChangeToImmediate(Def
->getOperand(1).getImm());
2388 } else if ((Register::isPhysicalRegister(Src0
->getReg()) &&
2389 (ST
.getConstantBusLimit(Opc
) <= 1 &&
2390 RI
.isSGPRClass(RI
.getPhysRegClass(Src0
->getReg())))) ||
2391 (Register::isVirtualRegister(Src0
->getReg()) &&
2392 (ST
.getConstantBusLimit(Opc
) <= 1 &&
2393 RI
.isSGPRClass(MRI
->getRegClass(Src0
->getReg())))))
2395 // VGPR is okay as Src0 - fallthrough
2398 if (Src1
->isReg() && !Src0Inlined
) {
2399 // We have one slot for inlinable constant so far - try to fill it
2400 MachineInstr
*Def
= MRI
->getUniqueVRegDef(Src1
->getReg());
2401 if (Def
&& Def
->isMoveImmediate() &&
2402 isInlineConstant(Def
->getOperand(1)) &&
2403 MRI
->hasOneUse(Src1
->getReg()) &&
2404 commuteInstruction(UseMI
)) {
2405 Src0
->ChangeToImmediate(Def
->getOperand(1).getImm());
2406 } else if ((Register::isPhysicalRegister(Src1
->getReg()) &&
2407 RI
.isSGPRClass(RI
.getPhysRegClass(Src1
->getReg()))) ||
2408 (Register::isVirtualRegister(Src1
->getReg()) &&
2409 RI
.isSGPRClass(MRI
->getRegClass(Src1
->getReg()))))
2411 // VGPR is okay as Src1 - fallthrough
2415 IsFMA
? (IsF32
? AMDGPU::V_FMAAK_F32
: AMDGPU::V_FMAAK_F16
)
2416 : (IsF32
? AMDGPU::V_MADAK_F32
: AMDGPU::V_MADAK_F16
);
2417 if (pseudoToMCOpcode(NewOpc
) == -1)
2420 const int64_t Imm
= ImmOp
->getImm();
2422 // FIXME: This would be a lot easier if we could return a new instruction
2423 // instead of having to modify in place.
2425 // Remove these first since they are at the end.
2426 UseMI
.RemoveOperand(
2427 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::omod
));
2428 UseMI
.RemoveOperand(
2429 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::clamp
));
2431 if (Opc
== AMDGPU::V_MAC_F32_e64
||
2432 Opc
== AMDGPU::V_MAC_F16_e64
||
2433 Opc
== AMDGPU::V_FMAC_F32_e64
||
2434 Opc
== AMDGPU::V_FMAC_F16_e64
)
2435 UseMI
.untieRegOperand(
2436 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src2
));
2438 // ChangingToImmediate adds Src2 back to the instruction.
2439 Src2
->ChangeToImmediate(Imm
);
2441 // These come before src2.
2442 removeModOperands(UseMI
);
2443 UseMI
.setDesc(get(NewOpc
));
2444 // It might happen that UseMI was commuted
2445 // and we now have SGPR as SRC1. If so 2 inlined
2446 // constant and SGPR are illegal.
2447 legalizeOperands(UseMI
);
2449 bool DeleteDef
= MRI
->hasOneNonDBGUse(Reg
);
2451 DefMI
.eraseFromParent();
2460 static bool offsetsDoNotOverlap(int WidthA
, int OffsetA
,
2461 int WidthB
, int OffsetB
) {
2462 int LowOffset
= OffsetA
< OffsetB
? OffsetA
: OffsetB
;
2463 int HighOffset
= OffsetA
< OffsetB
? OffsetB
: OffsetA
;
2464 int LowWidth
= (LowOffset
== OffsetA
) ? WidthA
: WidthB
;
2465 return LowOffset
+ LowWidth
<= HighOffset
;
2468 bool SIInstrInfo::checkInstOffsetsDoNotOverlap(const MachineInstr
&MIa
,
2469 const MachineInstr
&MIb
) const {
2470 const MachineOperand
*BaseOp0
, *BaseOp1
;
2471 int64_t Offset0
, Offset1
;
2473 if (getMemOperandWithOffset(MIa
, BaseOp0
, Offset0
, &RI
) &&
2474 getMemOperandWithOffset(MIb
, BaseOp1
, Offset1
, &RI
)) {
2475 if (!BaseOp0
->isIdenticalTo(*BaseOp1
))
2478 if (!MIa
.hasOneMemOperand() || !MIb
.hasOneMemOperand()) {
2479 // FIXME: Handle ds_read2 / ds_write2.
2482 unsigned Width0
= (*MIa
.memoperands_begin())->getSize();
2483 unsigned Width1
= (*MIb
.memoperands_begin())->getSize();
2484 if (offsetsDoNotOverlap(Width0
, Offset0
, Width1
, Offset1
)) {
2492 bool SIInstrInfo::areMemAccessesTriviallyDisjoint(const MachineInstr
&MIa
,
2493 const MachineInstr
&MIb
) const {
2494 assert((MIa
.mayLoad() || MIa
.mayStore()) &&
2495 "MIa must load from or modify a memory location");
2496 assert((MIb
.mayLoad() || MIb
.mayStore()) &&
2497 "MIb must load from or modify a memory location");
2499 if (MIa
.hasUnmodeledSideEffects() || MIb
.hasUnmodeledSideEffects())
2502 // XXX - Can we relax this between address spaces?
2503 if (MIa
.hasOrderedMemoryRef() || MIb
.hasOrderedMemoryRef())
2506 // TODO: Should we check the address space from the MachineMemOperand? That
2507 // would allow us to distinguish objects we know don't alias based on the
2508 // underlying address space, even if it was lowered to a different one,
2509 // e.g. private accesses lowered to use MUBUF instructions on a scratch
2513 return checkInstOffsetsDoNotOverlap(MIa
, MIb
);
2515 return !isFLAT(MIb
) || isSegmentSpecificFLAT(MIb
);
2518 if (isMUBUF(MIa
) || isMTBUF(MIa
)) {
2519 if (isMUBUF(MIb
) || isMTBUF(MIb
))
2520 return checkInstOffsetsDoNotOverlap(MIa
, MIb
);
2522 return !isFLAT(MIb
) && !isSMRD(MIb
);
2527 return checkInstOffsetsDoNotOverlap(MIa
, MIb
);
2529 return !isFLAT(MIb
) && !isMUBUF(MIa
) && !isMTBUF(MIa
);
2534 return checkInstOffsetsDoNotOverlap(MIa
, MIb
);
2542 static int64_t getFoldableImm(const MachineOperand
* MO
) {
2545 const MachineFunction
*MF
= MO
->getParent()->getParent()->getParent();
2546 const MachineRegisterInfo
&MRI
= MF
->getRegInfo();
2547 auto Def
= MRI
.getUniqueVRegDef(MO
->getReg());
2548 if (Def
&& Def
->getOpcode() == AMDGPU::V_MOV_B32_e32
&&
2549 Def
->getOperand(1).isImm())
2550 return Def
->getOperand(1).getImm();
2551 return AMDGPU::NoRegister
;
2554 MachineInstr
*SIInstrInfo::convertToThreeAddress(MachineFunction::iterator
&MBB
,
2556 LiveVariables
*LV
) const {
2557 unsigned Opc
= MI
.getOpcode();
2559 bool IsFMA
= Opc
== AMDGPU::V_FMAC_F32_e32
|| Opc
== AMDGPU::V_FMAC_F32_e64
||
2560 Opc
== AMDGPU::V_FMAC_F16_e32
|| Opc
== AMDGPU::V_FMAC_F16_e64
;
2565 case AMDGPU::V_MAC_F16_e64
:
2566 case AMDGPU::V_FMAC_F16_e64
:
2569 case AMDGPU::V_MAC_F32_e64
:
2570 case AMDGPU::V_FMAC_F32_e64
:
2572 case AMDGPU::V_MAC_F16_e32
:
2573 case AMDGPU::V_FMAC_F16_e32
:
2576 case AMDGPU::V_MAC_F32_e32
:
2577 case AMDGPU::V_FMAC_F32_e32
: {
2578 int Src0Idx
= AMDGPU::getNamedOperandIdx(MI
.getOpcode(),
2579 AMDGPU::OpName::src0
);
2580 const MachineOperand
*Src0
= &MI
.getOperand(Src0Idx
);
2581 if (!Src0
->isReg() && !Src0
->isImm())
2584 if (Src0
->isImm() && !isInlineConstant(MI
, Src0Idx
, *Src0
))
2591 const MachineOperand
*Dst
= getNamedOperand(MI
, AMDGPU::OpName::vdst
);
2592 const MachineOperand
*Src0
= getNamedOperand(MI
, AMDGPU::OpName::src0
);
2593 const MachineOperand
*Src0Mods
=
2594 getNamedOperand(MI
, AMDGPU::OpName::src0_modifiers
);
2595 const MachineOperand
*Src1
= getNamedOperand(MI
, AMDGPU::OpName::src1
);
2596 const MachineOperand
*Src1Mods
=
2597 getNamedOperand(MI
, AMDGPU::OpName::src1_modifiers
);
2598 const MachineOperand
*Src2
= getNamedOperand(MI
, AMDGPU::OpName::src2
);
2599 const MachineOperand
*Clamp
= getNamedOperand(MI
, AMDGPU::OpName::clamp
);
2600 const MachineOperand
*Omod
= getNamedOperand(MI
, AMDGPU::OpName::omod
);
2602 if (!Src0Mods
&& !Src1Mods
&& !Clamp
&& !Omod
&&
2603 // If we have an SGPR input, we will violate the constant bus restriction.
2604 (ST
.getConstantBusLimit(Opc
) > 1 ||
2606 !RI
.isSGPRReg(MBB
->getParent()->getRegInfo(), Src0
->getReg()))) {
2607 if (auto Imm
= getFoldableImm(Src2
)) {
2609 IsFMA
? (IsF16
? AMDGPU::V_FMAAK_F16
: AMDGPU::V_FMAAK_F32
)
2610 : (IsF16
? AMDGPU::V_MADAK_F16
: AMDGPU::V_MADAK_F32
);
2611 if (pseudoToMCOpcode(NewOpc
) != -1)
2612 return BuildMI(*MBB
, MI
, MI
.getDebugLoc(), get(NewOpc
))
2619 IsFMA
? (IsF16
? AMDGPU::V_FMAMK_F16
: AMDGPU::V_FMAMK_F32
)
2620 : (IsF16
? AMDGPU::V_MADMK_F16
: AMDGPU::V_MADMK_F32
);
2621 if (auto Imm
= getFoldableImm(Src1
)) {
2622 if (pseudoToMCOpcode(NewOpc
) != -1)
2623 return BuildMI(*MBB
, MI
, MI
.getDebugLoc(), get(NewOpc
))
2629 if (auto Imm
= getFoldableImm(Src0
)) {
2630 if (pseudoToMCOpcode(NewOpc
) != -1 &&
2631 isOperandLegal(MI
, AMDGPU::getNamedOperandIdx(NewOpc
,
2632 AMDGPU::OpName::src0
), Src1
))
2633 return BuildMI(*MBB
, MI
, MI
.getDebugLoc(), get(NewOpc
))
2641 unsigned NewOpc
= IsFMA
? (IsF16
? AMDGPU::V_FMA_F16
: AMDGPU::V_FMA_F32
)
2642 : (IsF16
? AMDGPU::V_MAD_F16
: AMDGPU::V_MAD_F32
);
2643 if (pseudoToMCOpcode(NewOpc
) == -1)
2646 return BuildMI(*MBB
, MI
, MI
.getDebugLoc(), get(NewOpc
))
2648 .addImm(Src0Mods
? Src0Mods
->getImm() : 0)
2650 .addImm(Src1Mods
? Src1Mods
->getImm() : 0)
2652 .addImm(0) // Src mods
2654 .addImm(Clamp
? Clamp
->getImm() : 0)
2655 .addImm(Omod
? Omod
->getImm() : 0);
2658 // It's not generally safe to move VALU instructions across these since it will
2659 // start using the register as a base index rather than directly.
2660 // XXX - Why isn't hasSideEffects sufficient for these?
2661 static bool changesVGPRIndexingMode(const MachineInstr
&MI
) {
2662 switch (MI
.getOpcode()) {
2663 case AMDGPU::S_SET_GPR_IDX_ON
:
2664 case AMDGPU::S_SET_GPR_IDX_MODE
:
2665 case AMDGPU::S_SET_GPR_IDX_OFF
:
2672 bool SIInstrInfo::isSchedulingBoundary(const MachineInstr
&MI
,
2673 const MachineBasicBlock
*MBB
,
2674 const MachineFunction
&MF
) const {
2675 // XXX - Do we want the SP check in the base implementation?
2677 // Target-independent instructions do not have an implicit-use of EXEC, even
2678 // when they operate on VGPRs. Treating EXEC modifications as scheduling
2679 // boundaries prevents incorrect movements of such instructions.
2680 return TargetInstrInfo::isSchedulingBoundary(MI
, MBB
, MF
) ||
2681 MI
.modifiesRegister(AMDGPU::EXEC
, &RI
) ||
2682 MI
.getOpcode() == AMDGPU::S_SETREG_IMM32_B32
||
2683 MI
.getOpcode() == AMDGPU::S_SETREG_B32
||
2684 MI
.getOpcode() == AMDGPU::S_DENORM_MODE
||
2685 changesVGPRIndexingMode(MI
);
2688 bool SIInstrInfo::isAlwaysGDS(uint16_t Opcode
) const {
2689 return Opcode
== AMDGPU::DS_ORDERED_COUNT
||
2690 Opcode
== AMDGPU::DS_GWS_INIT
||
2691 Opcode
== AMDGPU::DS_GWS_SEMA_V
||
2692 Opcode
== AMDGPU::DS_GWS_SEMA_BR
||
2693 Opcode
== AMDGPU::DS_GWS_SEMA_P
||
2694 Opcode
== AMDGPU::DS_GWS_SEMA_RELEASE_ALL
||
2695 Opcode
== AMDGPU::DS_GWS_BARRIER
;
2698 bool SIInstrInfo::hasUnwantedEffectsWhenEXECEmpty(const MachineInstr
&MI
) const {
2699 unsigned Opcode
= MI
.getOpcode();
2701 if (MI
.mayStore() && isSMRD(MI
))
2702 return true; // scalar store or atomic
2704 // This will terminate the function when other lanes may need to continue.
2708 // These instructions cause shader I/O that may cause hardware lockups
2709 // when executed with an empty EXEC mask.
2711 // Note: exp with VM = DONE = 0 is automatically skipped by hardware when
2712 // EXEC = 0, but checking for that case here seems not worth it
2713 // given the typical code patterns.
2714 if (Opcode
== AMDGPU::S_SENDMSG
|| Opcode
== AMDGPU::S_SENDMSGHALT
||
2715 Opcode
== AMDGPU::EXP
|| Opcode
== AMDGPU::EXP_DONE
||
2716 Opcode
== AMDGPU::DS_ORDERED_COUNT
|| Opcode
== AMDGPU::S_TRAP
||
2717 Opcode
== AMDGPU::DS_GWS_INIT
|| Opcode
== AMDGPU::DS_GWS_BARRIER
)
2720 if (MI
.isCall() || MI
.isInlineAsm())
2721 return true; // conservative assumption
2723 // These are like SALU instructions in terms of effects, so it's questionable
2724 // whether we should return true for those.
2726 // However, executing them with EXEC = 0 causes them to operate on undefined
2727 // data, which we avoid by returning true here.
2728 if (Opcode
== AMDGPU::V_READFIRSTLANE_B32
|| Opcode
== AMDGPU::V_READLANE_B32
)
2734 bool SIInstrInfo::mayReadEXEC(const MachineRegisterInfo
&MRI
,
2735 const MachineInstr
&MI
) const {
2736 if (MI
.isMetaInstruction())
2739 // This won't read exec if this is an SGPR->SGPR copy.
2740 if (MI
.isCopyLike()) {
2741 if (!RI
.isSGPRReg(MRI
, MI
.getOperand(0).getReg()))
2744 // Make sure this isn't copying exec as a normal operand
2745 return MI
.readsRegister(AMDGPU::EXEC
, &RI
);
2748 // Make a conservative assumption about the callee.
2752 // Be conservative with any unhandled generic opcodes.
2753 if (!isTargetSpecificOpcode(MI
.getOpcode()))
2756 return !isSALU(MI
) || MI
.readsRegister(AMDGPU::EXEC
, &RI
);
2759 bool SIInstrInfo::isInlineConstant(const APInt
&Imm
) const {
2760 switch (Imm
.getBitWidth()) {
2761 case 1: // This likely will be a condition code mask.
2765 return AMDGPU::isInlinableLiteral32(Imm
.getSExtValue(),
2766 ST
.hasInv2PiInlineImm());
2768 return AMDGPU::isInlinableLiteral64(Imm
.getSExtValue(),
2769 ST
.hasInv2PiInlineImm());
2771 return ST
.has16BitInsts() &&
2772 AMDGPU::isInlinableLiteral16(Imm
.getSExtValue(),
2773 ST
.hasInv2PiInlineImm());
2775 llvm_unreachable("invalid bitwidth");
2779 bool SIInstrInfo::isInlineConstant(const MachineOperand
&MO
,
2780 uint8_t OperandType
) const {
2782 OperandType
< AMDGPU::OPERAND_SRC_FIRST
||
2783 OperandType
> AMDGPU::OPERAND_SRC_LAST
)
2786 // MachineOperand provides no way to tell the true operand size, since it only
2787 // records a 64-bit value. We need to know the size to determine if a 32-bit
2788 // floating point immediate bit pattern is legal for an integer immediate. It
2789 // would be for any 32-bit integer operand, but would not be for a 64-bit one.
2791 int64_t Imm
= MO
.getImm();
2792 switch (OperandType
) {
2793 case AMDGPU::OPERAND_REG_IMM_INT32
:
2794 case AMDGPU::OPERAND_REG_IMM_FP32
:
2795 case AMDGPU::OPERAND_REG_INLINE_C_INT32
:
2796 case AMDGPU::OPERAND_REG_INLINE_C_FP32
:
2797 case AMDGPU::OPERAND_REG_INLINE_AC_INT32
:
2798 case AMDGPU::OPERAND_REG_INLINE_AC_FP32
: {
2799 int32_t Trunc
= static_cast<int32_t>(Imm
);
2800 return AMDGPU::isInlinableLiteral32(Trunc
, ST
.hasInv2PiInlineImm());
2802 case AMDGPU::OPERAND_REG_IMM_INT64
:
2803 case AMDGPU::OPERAND_REG_IMM_FP64
:
2804 case AMDGPU::OPERAND_REG_INLINE_C_INT64
:
2805 case AMDGPU::OPERAND_REG_INLINE_C_FP64
:
2806 return AMDGPU::isInlinableLiteral64(MO
.getImm(),
2807 ST
.hasInv2PiInlineImm());
2808 case AMDGPU::OPERAND_REG_IMM_INT16
:
2809 case AMDGPU::OPERAND_REG_IMM_FP16
:
2810 case AMDGPU::OPERAND_REG_INLINE_C_INT16
:
2811 case AMDGPU::OPERAND_REG_INLINE_C_FP16
:
2812 case AMDGPU::OPERAND_REG_INLINE_AC_INT16
:
2813 case AMDGPU::OPERAND_REG_INLINE_AC_FP16
: {
2814 if (isInt
<16>(Imm
) || isUInt
<16>(Imm
)) {
2815 // A few special case instructions have 16-bit operands on subtargets
2816 // where 16-bit instructions are not legal.
2817 // TODO: Do the 32-bit immediates work? We shouldn't really need to handle
2818 // constants in these cases
2819 int16_t Trunc
= static_cast<int16_t>(Imm
);
2820 return ST
.has16BitInsts() &&
2821 AMDGPU::isInlinableLiteral16(Trunc
, ST
.hasInv2PiInlineImm());
2826 case AMDGPU::OPERAND_REG_IMM_V2INT16
:
2827 case AMDGPU::OPERAND_REG_IMM_V2FP16
:
2828 case AMDGPU::OPERAND_REG_INLINE_C_V2INT16
:
2829 case AMDGPU::OPERAND_REG_INLINE_C_V2FP16
:
2830 case AMDGPU::OPERAND_REG_INLINE_AC_V2INT16
:
2831 case AMDGPU::OPERAND_REG_INLINE_AC_V2FP16
: {
2832 uint32_t Trunc
= static_cast<uint32_t>(Imm
);
2833 return AMDGPU::isInlinableLiteralV216(Trunc
, ST
.hasInv2PiInlineImm());
2836 llvm_unreachable("invalid bitwidth");
2840 bool SIInstrInfo::isLiteralConstantLike(const MachineOperand
&MO
,
2841 const MCOperandInfo
&OpInfo
) const {
2842 switch (MO
.getType()) {
2843 case MachineOperand::MO_Register
:
2845 case MachineOperand::MO_Immediate
:
2846 return !isInlineConstant(MO
, OpInfo
);
2847 case MachineOperand::MO_FrameIndex
:
2848 case MachineOperand::MO_MachineBasicBlock
:
2849 case MachineOperand::MO_ExternalSymbol
:
2850 case MachineOperand::MO_GlobalAddress
:
2851 case MachineOperand::MO_MCSymbol
:
2854 llvm_unreachable("unexpected operand type");
2858 static bool compareMachineOp(const MachineOperand
&Op0
,
2859 const MachineOperand
&Op1
) {
2860 if (Op0
.getType() != Op1
.getType())
2863 switch (Op0
.getType()) {
2864 case MachineOperand::MO_Register
:
2865 return Op0
.getReg() == Op1
.getReg();
2866 case MachineOperand::MO_Immediate
:
2867 return Op0
.getImm() == Op1
.getImm();
2869 llvm_unreachable("Didn't expect to be comparing these operand types");
2873 bool SIInstrInfo::isImmOperandLegal(const MachineInstr
&MI
, unsigned OpNo
,
2874 const MachineOperand
&MO
) const {
2875 const MCInstrDesc
&InstDesc
= MI
.getDesc();
2876 const MCOperandInfo
&OpInfo
= InstDesc
.OpInfo
[OpNo
];
2878 assert(MO
.isImm() || MO
.isTargetIndex() || MO
.isFI() || MO
.isGlobal());
2880 if (OpInfo
.OperandType
== MCOI::OPERAND_IMMEDIATE
)
2883 if (OpInfo
.RegClass
< 0)
2886 const MachineFunction
*MF
= MI
.getParent()->getParent();
2887 const GCNSubtarget
&ST
= MF
->getSubtarget
<GCNSubtarget
>();
2889 if (MO
.isImm() && isInlineConstant(MO
, OpInfo
)) {
2890 if (isMAI(MI
) && ST
.hasMFMAInlineLiteralBug() &&
2891 OpNo
==(unsigned)AMDGPU::getNamedOperandIdx(MI
.getOpcode(),
2892 AMDGPU::OpName::src2
))
2894 return RI
.opCanUseInlineConstant(OpInfo
.OperandType
);
2897 if (!RI
.opCanUseLiteralConstant(OpInfo
.OperandType
))
2900 if (!isVOP3(MI
) || !AMDGPU::isSISrcOperand(InstDesc
, OpNo
))
2903 return ST
.hasVOP3Literal();
2906 bool SIInstrInfo::hasVALU32BitEncoding(unsigned Opcode
) const {
2907 int Op32
= AMDGPU::getVOPe32(Opcode
);
2911 return pseudoToMCOpcode(Op32
) != -1;
2914 bool SIInstrInfo::hasModifiers(unsigned Opcode
) const {
2915 // The src0_modifier operand is present on all instructions
2916 // that have modifiers.
2918 return AMDGPU::getNamedOperandIdx(Opcode
,
2919 AMDGPU::OpName::src0_modifiers
) != -1;
2922 bool SIInstrInfo::hasModifiersSet(const MachineInstr
&MI
,
2923 unsigned OpName
) const {
2924 const MachineOperand
*Mods
= getNamedOperand(MI
, OpName
);
2925 return Mods
&& Mods
->getImm();
2928 bool SIInstrInfo::hasAnyModifiersSet(const MachineInstr
&MI
) const {
2929 return hasModifiersSet(MI
, AMDGPU::OpName::src0_modifiers
) ||
2930 hasModifiersSet(MI
, AMDGPU::OpName::src1_modifiers
) ||
2931 hasModifiersSet(MI
, AMDGPU::OpName::src2_modifiers
) ||
2932 hasModifiersSet(MI
, AMDGPU::OpName::clamp
) ||
2933 hasModifiersSet(MI
, AMDGPU::OpName::omod
);
2936 bool SIInstrInfo::canShrink(const MachineInstr
&MI
,
2937 const MachineRegisterInfo
&MRI
) const {
2938 const MachineOperand
*Src2
= getNamedOperand(MI
, AMDGPU::OpName::src2
);
2939 // Can't shrink instruction with three operands.
2940 // FIXME: v_cndmask_b32 has 3 operands and is shrinkable, but we need to add
2941 // a special case for it. It can only be shrunk if the third operand
2942 // is vcc, and src0_modifiers and src1_modifiers are not set.
2943 // We should handle this the same way we handle vopc, by addding
2944 // a register allocation hint pre-regalloc and then do the shrinking
2947 switch (MI
.getOpcode()) {
2948 default: return false;
2950 case AMDGPU::V_ADDC_U32_e64
:
2951 case AMDGPU::V_SUBB_U32_e64
:
2952 case AMDGPU::V_SUBBREV_U32_e64
: {
2953 const MachineOperand
*Src1
2954 = getNamedOperand(MI
, AMDGPU::OpName::src1
);
2955 if (!Src1
->isReg() || !RI
.isVGPR(MRI
, Src1
->getReg()))
2957 // Additional verification is needed for sdst/src2.
2960 case AMDGPU::V_MAC_F32_e64
:
2961 case AMDGPU::V_MAC_F16_e64
:
2962 case AMDGPU::V_FMAC_F32_e64
:
2963 case AMDGPU::V_FMAC_F16_e64
:
2964 if (!Src2
->isReg() || !RI
.isVGPR(MRI
, Src2
->getReg()) ||
2965 hasModifiersSet(MI
, AMDGPU::OpName::src2_modifiers
))
2969 case AMDGPU::V_CNDMASK_B32_e64
:
2974 const MachineOperand
*Src1
= getNamedOperand(MI
, AMDGPU::OpName::src1
);
2975 if (Src1
&& (!Src1
->isReg() || !RI
.isVGPR(MRI
, Src1
->getReg()) ||
2976 hasModifiersSet(MI
, AMDGPU::OpName::src1_modifiers
)))
2979 // We don't need to check src0, all input types are legal, so just make sure
2980 // src0 isn't using any modifiers.
2981 if (hasModifiersSet(MI
, AMDGPU::OpName::src0_modifiers
))
2984 // Can it be shrunk to a valid 32 bit opcode?
2985 if (!hasVALU32BitEncoding(MI
.getOpcode()))
2988 // Check output modifiers
2989 return !hasModifiersSet(MI
, AMDGPU::OpName::omod
) &&
2990 !hasModifiersSet(MI
, AMDGPU::OpName::clamp
);
2993 // Set VCC operand with all flags from \p Orig, except for setting it as
2995 static void copyFlagsToImplicitVCC(MachineInstr
&MI
,
2996 const MachineOperand
&Orig
) {
2998 for (MachineOperand
&Use
: MI
.implicit_operands()) {
2999 if (Use
.isUse() && Use
.getReg() == AMDGPU::VCC
) {
3000 Use
.setIsUndef(Orig
.isUndef());
3001 Use
.setIsKill(Orig
.isKill());
3007 MachineInstr
*SIInstrInfo::buildShrunkInst(MachineInstr
&MI
,
3008 unsigned Op32
) const {
3009 MachineBasicBlock
*MBB
= MI
.getParent();;
3010 MachineInstrBuilder Inst32
=
3011 BuildMI(*MBB
, MI
, MI
.getDebugLoc(), get(Op32
));
3013 // Add the dst operand if the 32-bit encoding also has an explicit $vdst.
3014 // For VOPC instructions, this is replaced by an implicit def of vcc.
3015 int Op32DstIdx
= AMDGPU::getNamedOperandIdx(Op32
, AMDGPU::OpName::vdst
);
3016 if (Op32DstIdx
!= -1) {
3018 Inst32
.add(MI
.getOperand(0));
3020 assert(((MI
.getOperand(0).getReg() == AMDGPU::VCC
) ||
3021 (MI
.getOperand(0).getReg() == AMDGPU::VCC_LO
)) &&
3025 Inst32
.add(*getNamedOperand(MI
, AMDGPU::OpName::src0
));
3027 const MachineOperand
*Src1
= getNamedOperand(MI
, AMDGPU::OpName::src1
);
3031 const MachineOperand
*Src2
= getNamedOperand(MI
, AMDGPU::OpName::src2
);
3034 int Op32Src2Idx
= AMDGPU::getNamedOperandIdx(Op32
, AMDGPU::OpName::src2
);
3035 if (Op32Src2Idx
!= -1) {
3038 // In the case of V_CNDMASK_B32_e32, the explicit operand src2 is
3039 // replaced with an implicit read of vcc. This was already added
3040 // during the initial BuildMI, so find it to preserve the flags.
3041 copyFlagsToImplicitVCC(*Inst32
, *Src2
);
3048 bool SIInstrInfo::usesConstantBus(const MachineRegisterInfo
&MRI
,
3049 const MachineOperand
&MO
,
3050 const MCOperandInfo
&OpInfo
) const {
3051 // Literal constants use the constant bus.
3052 //if (isLiteralConstantLike(MO, OpInfo))
3055 return !isInlineConstant(MO
, OpInfo
);
3058 return true; // Misc other operands like FrameIndex
3063 if (Register::isVirtualRegister(MO
.getReg()))
3064 return RI
.isSGPRClass(MRI
.getRegClass(MO
.getReg()));
3067 if (MO
.getReg() == AMDGPU::SGPR_NULL
)
3070 // SGPRs use the constant bus
3071 if (MO
.isImplicit()) {
3072 return MO
.getReg() == AMDGPU::M0
||
3073 MO
.getReg() == AMDGPU::VCC
||
3074 MO
.getReg() == AMDGPU::VCC_LO
;
3076 return AMDGPU::SReg_32RegClass
.contains(MO
.getReg()) ||
3077 AMDGPU::SReg_64RegClass
.contains(MO
.getReg());
3081 static unsigned findImplicitSGPRRead(const MachineInstr
&MI
) {
3082 for (const MachineOperand
&MO
: MI
.implicit_operands()) {
3083 // We only care about reads.
3087 switch (MO
.getReg()) {
3089 case AMDGPU::VCC_LO
:
3090 case AMDGPU::VCC_HI
:
3092 case AMDGPU::FLAT_SCR
:
3100 return AMDGPU::NoRegister
;
3103 static bool shouldReadExec(const MachineInstr
&MI
) {
3104 if (SIInstrInfo::isVALU(MI
)) {
3105 switch (MI
.getOpcode()) {
3106 case AMDGPU::V_READLANE_B32
:
3107 case AMDGPU::V_READLANE_B32_gfx6_gfx7
:
3108 case AMDGPU::V_READLANE_B32_gfx10
:
3109 case AMDGPU::V_READLANE_B32_vi
:
3110 case AMDGPU::V_WRITELANE_B32
:
3111 case AMDGPU::V_WRITELANE_B32_gfx6_gfx7
:
3112 case AMDGPU::V_WRITELANE_B32_gfx10
:
3113 case AMDGPU::V_WRITELANE_B32_vi
:
3120 if (MI
.isPreISelOpcode() ||
3121 SIInstrInfo::isGenericOpcode(MI
.getOpcode()) ||
3122 SIInstrInfo::isSALU(MI
) ||
3123 SIInstrInfo::isSMRD(MI
))
3129 static bool isSubRegOf(const SIRegisterInfo
&TRI
,
3130 const MachineOperand
&SuperVec
,
3131 const MachineOperand
&SubReg
) {
3132 if (Register::isPhysicalRegister(SubReg
.getReg()))
3133 return TRI
.isSubRegister(SuperVec
.getReg(), SubReg
.getReg());
3135 return SubReg
.getSubReg() != AMDGPU::NoSubRegister
&&
3136 SubReg
.getReg() == SuperVec
.getReg();
3139 bool SIInstrInfo::verifyInstruction(const MachineInstr
&MI
,
3140 StringRef
&ErrInfo
) const {
3141 uint16_t Opcode
= MI
.getOpcode();
3142 if (SIInstrInfo::isGenericOpcode(MI
.getOpcode()))
3145 const MachineFunction
*MF
= MI
.getParent()->getParent();
3146 const MachineRegisterInfo
&MRI
= MF
->getRegInfo();
3148 int Src0Idx
= AMDGPU::getNamedOperandIdx(Opcode
, AMDGPU::OpName::src0
);
3149 int Src1Idx
= AMDGPU::getNamedOperandIdx(Opcode
, AMDGPU::OpName::src1
);
3150 int Src2Idx
= AMDGPU::getNamedOperandIdx(Opcode
, AMDGPU::OpName::src2
);
3152 // Make sure the number of operands is correct.
3153 const MCInstrDesc
&Desc
= get(Opcode
);
3154 if (!Desc
.isVariadic() &&
3155 Desc
.getNumOperands() != MI
.getNumExplicitOperands()) {
3156 ErrInfo
= "Instruction has wrong number of operands.";
3160 if (MI
.isInlineAsm()) {
3161 // Verify register classes for inlineasm constraints.
3162 for (unsigned I
= InlineAsm::MIOp_FirstOperand
, E
= MI
.getNumOperands();
3164 const TargetRegisterClass
*RC
= MI
.getRegClassConstraint(I
, this, &RI
);
3168 const MachineOperand
&Op
= MI
.getOperand(I
);
3172 Register Reg
= Op
.getReg();
3173 if (!Register::isVirtualRegister(Reg
) && !RC
->contains(Reg
)) {
3174 ErrInfo
= "inlineasm operand has incorrect register class.";
3182 // Make sure the register classes are correct.
3183 for (int i
= 0, e
= Desc
.getNumOperands(); i
!= e
; ++i
) {
3184 if (MI
.getOperand(i
).isFPImm()) {
3185 ErrInfo
= "FPImm Machine Operands are not supported. ISel should bitcast "
3186 "all fp values to integers.";
3190 int RegClass
= Desc
.OpInfo
[i
].RegClass
;
3192 switch (Desc
.OpInfo
[i
].OperandType
) {
3193 case MCOI::OPERAND_REGISTER
:
3194 if (MI
.getOperand(i
).isImm() || MI
.getOperand(i
).isGlobal()) {
3195 ErrInfo
= "Illegal immediate value for operand.";
3199 case AMDGPU::OPERAND_REG_IMM_INT32
:
3200 case AMDGPU::OPERAND_REG_IMM_FP32
:
3202 case AMDGPU::OPERAND_REG_INLINE_C_INT32
:
3203 case AMDGPU::OPERAND_REG_INLINE_C_FP32
:
3204 case AMDGPU::OPERAND_REG_INLINE_C_INT64
:
3205 case AMDGPU::OPERAND_REG_INLINE_C_FP64
:
3206 case AMDGPU::OPERAND_REG_INLINE_C_INT16
:
3207 case AMDGPU::OPERAND_REG_INLINE_C_FP16
:
3208 case AMDGPU::OPERAND_REG_INLINE_AC_INT32
:
3209 case AMDGPU::OPERAND_REG_INLINE_AC_FP32
:
3210 case AMDGPU::OPERAND_REG_INLINE_AC_INT16
:
3211 case AMDGPU::OPERAND_REG_INLINE_AC_FP16
: {
3212 const MachineOperand
&MO
= MI
.getOperand(i
);
3213 if (!MO
.isReg() && (!MO
.isImm() || !isInlineConstant(MI
, i
))) {
3214 ErrInfo
= "Illegal immediate value for operand.";
3219 case MCOI::OPERAND_IMMEDIATE
:
3220 case AMDGPU::OPERAND_KIMM32
:
3221 // Check if this operand is an immediate.
3222 // FrameIndex operands will be replaced by immediates, so they are
3224 if (!MI
.getOperand(i
).isImm() && !MI
.getOperand(i
).isFI()) {
3225 ErrInfo
= "Expected immediate, but got non-immediate";
3233 if (!MI
.getOperand(i
).isReg())
3236 if (RegClass
!= -1) {
3237 Register Reg
= MI
.getOperand(i
).getReg();
3238 if (Reg
== AMDGPU::NoRegister
|| Register::isVirtualRegister(Reg
))
3241 const TargetRegisterClass
*RC
= RI
.getRegClass(RegClass
);
3242 if (!RC
->contains(Reg
)) {
3243 ErrInfo
= "Operand has incorrect register class.";
3251 if (!ST
.hasSDWA()) {
3252 ErrInfo
= "SDWA is not supported on this target";
3256 int DstIdx
= AMDGPU::getNamedOperandIdx(Opcode
, AMDGPU::OpName::vdst
);
3258 const int OpIndicies
[] = { DstIdx
, Src0Idx
, Src1Idx
, Src2Idx
};
3260 for (int OpIdx
: OpIndicies
) {
3263 const MachineOperand
&MO
= MI
.getOperand(OpIdx
);
3265 if (!ST
.hasSDWAScalar()) {
3267 if (!MO
.isReg() || !RI
.hasVGPRs(RI
.getRegClassForReg(MRI
, MO
.getReg()))) {
3268 ErrInfo
= "Only VGPRs allowed as operands in SDWA instructions on VI";
3272 // No immediates on GFX9
3274 ErrInfo
= "Only reg allowed as operands in SDWA instructions on GFX9";
3280 if (!ST
.hasSDWAOmod()) {
3281 // No omod allowed on VI
3282 const MachineOperand
*OMod
= getNamedOperand(MI
, AMDGPU::OpName::omod
);
3283 if (OMod
!= nullptr &&
3284 (!OMod
->isImm() || OMod
->getImm() != 0)) {
3285 ErrInfo
= "OMod not allowed in SDWA instructions on VI";
3290 uint16_t BasicOpcode
= AMDGPU::getBasicFromSDWAOp(Opcode
);
3291 if (isVOPC(BasicOpcode
)) {
3292 if (!ST
.hasSDWASdst() && DstIdx
!= -1) {
3293 // Only vcc allowed as dst on VI for VOPC
3294 const MachineOperand
&Dst
= MI
.getOperand(DstIdx
);
3295 if (!Dst
.isReg() || Dst
.getReg() != AMDGPU::VCC
) {
3296 ErrInfo
= "Only VCC allowed as dst in SDWA instructions on VI";
3299 } else if (!ST
.hasSDWAOutModsVOPC()) {
3300 // No clamp allowed on GFX9 for VOPC
3301 const MachineOperand
*Clamp
= getNamedOperand(MI
, AMDGPU::OpName::clamp
);
3302 if (Clamp
&& (!Clamp
->isImm() || Clamp
->getImm() != 0)) {
3303 ErrInfo
= "Clamp not allowed in VOPC SDWA instructions on VI";
3307 // No omod allowed on GFX9 for VOPC
3308 const MachineOperand
*OMod
= getNamedOperand(MI
, AMDGPU::OpName::omod
);
3309 if (OMod
&& (!OMod
->isImm() || OMod
->getImm() != 0)) {
3310 ErrInfo
= "OMod not allowed in VOPC SDWA instructions on VI";
3316 const MachineOperand
*DstUnused
= getNamedOperand(MI
, AMDGPU::OpName::dst_unused
);
3317 if (DstUnused
&& DstUnused
->isImm() &&
3318 DstUnused
->getImm() == AMDGPU::SDWA::UNUSED_PRESERVE
) {
3319 const MachineOperand
&Dst
= MI
.getOperand(DstIdx
);
3320 if (!Dst
.isReg() || !Dst
.isTied()) {
3321 ErrInfo
= "Dst register should have tied register";
3325 const MachineOperand
&TiedMO
=
3326 MI
.getOperand(MI
.findTiedOperandIdx(DstIdx
));
3327 if (!TiedMO
.isReg() || !TiedMO
.isImplicit() || !TiedMO
.isUse()) {
3329 "Dst register should be tied to implicit use of preserved register";
3331 } else if (Register::isPhysicalRegister(TiedMO
.getReg()) &&
3332 Dst
.getReg() != TiedMO
.getReg()) {
3333 ErrInfo
= "Dst register should use same physical register as preserved";
3340 if (isMIMG(MI
.getOpcode()) && !MI
.mayStore()) {
3341 // Ensure that the return type used is large enough for all the options
3342 // being used TFE/LWE require an extra result register.
3343 const MachineOperand
*DMask
= getNamedOperand(MI
, AMDGPU::OpName::dmask
);
3345 uint64_t DMaskImm
= DMask
->getImm();
3347 isGather4(MI
.getOpcode()) ? 4 : countPopulation(DMaskImm
);
3348 const MachineOperand
*TFE
= getNamedOperand(MI
, AMDGPU::OpName::tfe
);
3349 const MachineOperand
*LWE
= getNamedOperand(MI
, AMDGPU::OpName::lwe
);
3350 const MachineOperand
*D16
= getNamedOperand(MI
, AMDGPU::OpName::d16
);
3352 // Adjust for packed 16 bit values
3353 if (D16
&& D16
->getImm() && !ST
.hasUnpackedD16VMem())
3356 // Adjust if using LWE or TFE
3357 if ((LWE
&& LWE
->getImm()) || (TFE
&& TFE
->getImm()))
3360 const uint32_t DstIdx
=
3361 AMDGPU::getNamedOperandIdx(MI
.getOpcode(), AMDGPU::OpName::vdata
);
3362 const MachineOperand
&Dst
= MI
.getOperand(DstIdx
);
3364 const TargetRegisterClass
*DstRC
= getOpRegClass(MI
, DstIdx
);
3365 uint32_t DstSize
= RI
.getRegSizeInBits(*DstRC
) / 32;
3366 if (RegCount
> DstSize
) {
3367 ErrInfo
= "MIMG instruction returns too many registers for dst "
3375 // Verify VOP*. Ignore multiple sgpr operands on writelane.
3376 if (Desc
.getOpcode() != AMDGPU::V_WRITELANE_B32
3377 && (isVOP1(MI
) || isVOP2(MI
) || isVOP3(MI
) || isVOPC(MI
) || isSDWA(MI
))) {
3378 // Only look at the true operands. Only a real operand can use the constant
3379 // bus, and we don't want to check pseudo-operands like the source modifier
3381 const int OpIndices
[] = { Src0Idx
, Src1Idx
, Src2Idx
};
3383 unsigned ConstantBusCount
= 0;
3384 unsigned LiteralCount
= 0;
3386 if (AMDGPU::getNamedOperandIdx(Opcode
, AMDGPU::OpName::imm
) != -1)
3389 SmallVector
<unsigned, 2> SGPRsUsed
;
3390 unsigned SGPRUsed
= findImplicitSGPRRead(MI
);
3391 if (SGPRUsed
!= AMDGPU::NoRegister
) {
3393 SGPRsUsed
.push_back(SGPRUsed
);
3396 for (int OpIdx
: OpIndices
) {
3399 const MachineOperand
&MO
= MI
.getOperand(OpIdx
);
3400 if (usesConstantBus(MRI
, MO
, MI
.getDesc().OpInfo
[OpIdx
])) {
3402 SGPRUsed
= MO
.getReg();
3403 if (llvm::all_of(SGPRsUsed
, [this, SGPRUsed
](unsigned SGPR
) {
3404 return !RI
.regsOverlap(SGPRUsed
, SGPR
);
3407 SGPRsUsed
.push_back(SGPRUsed
);
3415 const GCNSubtarget
&ST
= MF
->getSubtarget
<GCNSubtarget
>();
3416 // v_writelane_b32 is an exception from constant bus restriction:
3417 // vsrc0 can be sgpr, const or m0 and lane select sgpr, m0 or inline-const
3418 if (ConstantBusCount
> ST
.getConstantBusLimit(Opcode
) &&
3419 Opcode
!= AMDGPU::V_WRITELANE_B32
) {
3420 ErrInfo
= "VOP* instruction violates constant bus restriction";
3424 if (isVOP3(MI
) && LiteralCount
) {
3425 if (LiteralCount
&& !ST
.hasVOP3Literal()) {
3426 ErrInfo
= "VOP3 instruction uses literal";
3429 if (LiteralCount
> 1) {
3430 ErrInfo
= "VOP3 instruction uses more than one literal";
3436 // Verify misc. restrictions on specific instructions.
3437 if (Desc
.getOpcode() == AMDGPU::V_DIV_SCALE_F32
||
3438 Desc
.getOpcode() == AMDGPU::V_DIV_SCALE_F64
) {
3439 const MachineOperand
&Src0
= MI
.getOperand(Src0Idx
);
3440 const MachineOperand
&Src1
= MI
.getOperand(Src1Idx
);
3441 const MachineOperand
&Src2
= MI
.getOperand(Src2Idx
);
3442 if (Src0
.isReg() && Src1
.isReg() && Src2
.isReg()) {
3443 if (!compareMachineOp(Src0
, Src1
) &&
3444 !compareMachineOp(Src0
, Src2
)) {
3445 ErrInfo
= "v_div_scale_{f32|f64} require src0 = src1 or src2";
3451 if (isSOP2(MI
) || isSOPC(MI
)) {
3452 const MachineOperand
&Src0
= MI
.getOperand(Src0Idx
);
3453 const MachineOperand
&Src1
= MI
.getOperand(Src1Idx
);
3454 unsigned Immediates
= 0;
3456 if (!Src0
.isReg() &&
3457 !isInlineConstant(Src0
, Desc
.OpInfo
[Src0Idx
].OperandType
))
3459 if (!Src1
.isReg() &&
3460 !isInlineConstant(Src1
, Desc
.OpInfo
[Src1Idx
].OperandType
))
3463 if (Immediates
> 1) {
3464 ErrInfo
= "SOP2/SOPC instruction requires too many immediate constants";
3470 auto Op
= getNamedOperand(MI
, AMDGPU::OpName::simm16
);
3471 if (Desc
.isBranch()) {
3473 ErrInfo
= "invalid branch target for SOPK instruction";
3477 uint64_t Imm
= Op
->getImm();
3478 if (sopkIsZext(MI
)) {
3479 if (!isUInt
<16>(Imm
)) {
3480 ErrInfo
= "invalid immediate for SOPK instruction";
3484 if (!isInt
<16>(Imm
)) {
3485 ErrInfo
= "invalid immediate for SOPK instruction";
3492 if (Desc
.getOpcode() == AMDGPU::V_MOVRELS_B32_e32
||
3493 Desc
.getOpcode() == AMDGPU::V_MOVRELS_B32_e64
||
3494 Desc
.getOpcode() == AMDGPU::V_MOVRELD_B32_e32
||
3495 Desc
.getOpcode() == AMDGPU::V_MOVRELD_B32_e64
) {
3496 const bool IsDst
= Desc
.getOpcode() == AMDGPU::V_MOVRELD_B32_e32
||
3497 Desc
.getOpcode() == AMDGPU::V_MOVRELD_B32_e64
;
3499 const unsigned StaticNumOps
= Desc
.getNumOperands() +
3500 Desc
.getNumImplicitUses();
3501 const unsigned NumImplicitOps
= IsDst
? 2 : 1;
3503 // Allow additional implicit operands. This allows a fixup done by the post
3504 // RA scheduler where the main implicit operand is killed and implicit-defs
3505 // are added for sub-registers that remain live after this instruction.
3506 if (MI
.getNumOperands() < StaticNumOps
+ NumImplicitOps
) {
3507 ErrInfo
= "missing implicit register operands";
3511 const MachineOperand
*Dst
= getNamedOperand(MI
, AMDGPU::OpName::vdst
);
3513 if (!Dst
->isUse()) {
3514 ErrInfo
= "v_movreld_b32 vdst should be a use operand";
3519 if (!MI
.isRegTiedToUseOperand(StaticNumOps
, &UseOpIdx
) ||
3520 UseOpIdx
!= StaticNumOps
+ 1) {
3521 ErrInfo
= "movrel implicit operands should be tied";
3526 const MachineOperand
&Src0
= MI
.getOperand(Src0Idx
);
3527 const MachineOperand
&ImpUse
3528 = MI
.getOperand(StaticNumOps
+ NumImplicitOps
- 1);
3529 if (!ImpUse
.isReg() || !ImpUse
.isUse() ||
3530 !isSubRegOf(RI
, ImpUse
, IsDst
? *Dst
: Src0
)) {
3531 ErrInfo
= "src0 should be subreg of implicit vector use";
3536 // Make sure we aren't losing exec uses in the td files. This mostly requires
3537 // being careful when using let Uses to try to add other use registers.
3538 if (shouldReadExec(MI
)) {
3539 if (!MI
.hasRegisterImplicitUseOperand(AMDGPU::EXEC
)) {
3540 ErrInfo
= "VALU instruction does not implicitly read exec mask";
3546 if (MI
.mayStore()) {
3547 // The register offset form of scalar stores may only use m0 as the
3548 // soffset register.
3549 const MachineOperand
*Soff
= getNamedOperand(MI
, AMDGPU::OpName::soff
);
3550 if (Soff
&& Soff
->getReg() != AMDGPU::M0
) {
3551 ErrInfo
= "scalar stores must use m0 as offset register";
3557 if (isFLAT(MI
) && !MF
->getSubtarget
<GCNSubtarget
>().hasFlatInstOffsets()) {
3558 const MachineOperand
*Offset
= getNamedOperand(MI
, AMDGPU::OpName::offset
);
3559 if (Offset
->getImm() != 0) {
3560 ErrInfo
= "subtarget does not support offsets in flat instructions";
3566 const MachineOperand
*DimOp
= getNamedOperand(MI
, AMDGPU::OpName::dim
);
3568 int VAddr0Idx
= AMDGPU::getNamedOperandIdx(Opcode
,
3569 AMDGPU::OpName::vaddr0
);
3570 int SRsrcIdx
= AMDGPU::getNamedOperandIdx(Opcode
, AMDGPU::OpName::srsrc
);
3571 const AMDGPU::MIMGInfo
*Info
= AMDGPU::getMIMGInfo(Opcode
);
3572 const AMDGPU::MIMGBaseOpcodeInfo
*BaseOpcode
=
3573 AMDGPU::getMIMGBaseOpcodeInfo(Info
->BaseOpcode
);
3574 const AMDGPU::MIMGDimInfo
*Dim
=
3575 AMDGPU::getMIMGDimInfoByEncoding(DimOp
->getImm());
3578 ErrInfo
= "dim is out of range";
3582 bool IsNSA
= SRsrcIdx
- VAddr0Idx
> 1;
3583 unsigned AddrWords
= BaseOpcode
->NumExtraArgs
+
3584 (BaseOpcode
->Gradients
? Dim
->NumGradients
: 0) +
3585 (BaseOpcode
->Coordinates
? Dim
->NumCoords
: 0) +
3586 (BaseOpcode
->LodOrClampOrMip
? 1 : 0);
3588 unsigned VAddrWords
;
3590 VAddrWords
= SRsrcIdx
- VAddr0Idx
;
3592 const TargetRegisterClass
*RC
= getOpRegClass(MI
, VAddr0Idx
);
3593 VAddrWords
= MRI
.getTargetRegisterInfo()->getRegSizeInBits(*RC
) / 32;
3596 else if (AddrWords
> 4)
3598 else if (AddrWords
== 3 && VAddrWords
== 4) {
3599 // CodeGen uses the V4 variant of instructions for three addresses,
3600 // because the selection DAG does not support non-power-of-two types.
3605 if (VAddrWords
!= AddrWords
) {
3606 ErrInfo
= "bad vaddr size";
3612 const MachineOperand
*DppCt
= getNamedOperand(MI
, AMDGPU::OpName::dpp_ctrl
);
3614 using namespace AMDGPU::DPP
;
3616 unsigned DC
= DppCt
->getImm();
3617 if (DC
== DppCtrl::DPP_UNUSED1
|| DC
== DppCtrl::DPP_UNUSED2
||
3618 DC
== DppCtrl::DPP_UNUSED3
|| DC
> DppCtrl::DPP_LAST
||
3619 (DC
>= DppCtrl::DPP_UNUSED4_FIRST
&& DC
<= DppCtrl::DPP_UNUSED4_LAST
) ||
3620 (DC
>= DppCtrl::DPP_UNUSED5_FIRST
&& DC
<= DppCtrl::DPP_UNUSED5_LAST
) ||
3621 (DC
>= DppCtrl::DPP_UNUSED6_FIRST
&& DC
<= DppCtrl::DPP_UNUSED6_LAST
) ||
3622 (DC
>= DppCtrl::DPP_UNUSED7_FIRST
&& DC
<= DppCtrl::DPP_UNUSED7_LAST
) ||
3623 (DC
>= DppCtrl::DPP_UNUSED8_FIRST
&& DC
<= DppCtrl::DPP_UNUSED8_LAST
)) {
3624 ErrInfo
= "Invalid dpp_ctrl value";
3627 if (DC
>= DppCtrl::WAVE_SHL1
&& DC
<= DppCtrl::WAVE_ROR1
&&
3628 ST
.getGeneration() >= AMDGPUSubtarget::GFX10
) {
3629 ErrInfo
= "Invalid dpp_ctrl value: "
3630 "wavefront shifts are not supported on GFX10+";
3633 if (DC
>= DppCtrl::BCAST15
&& DC
<= DppCtrl::BCAST31
&&
3634 ST
.getGeneration() >= AMDGPUSubtarget::GFX10
) {
3635 ErrInfo
= "Invalid dpp_ctrl value: "
3636 "broadcasts are not supported on GFX10+";
3639 if (DC
>= DppCtrl::ROW_SHARE_FIRST
&& DC
<= DppCtrl::ROW_XMASK_LAST
&&
3640 ST
.getGeneration() < AMDGPUSubtarget::GFX10
) {
3641 ErrInfo
= "Invalid dpp_ctrl value: "
3642 "row_share and row_xmask are not supported before GFX10";
3650 unsigned SIInstrInfo::getVALUOp(const MachineInstr
&MI
) const {
3651 switch (MI
.getOpcode()) {
3652 default: return AMDGPU::INSTRUCTION_LIST_END
;
3653 case AMDGPU::REG_SEQUENCE
: return AMDGPU::REG_SEQUENCE
;
3654 case AMDGPU::COPY
: return AMDGPU::COPY
;
3655 case AMDGPU::PHI
: return AMDGPU::PHI
;
3656 case AMDGPU::INSERT_SUBREG
: return AMDGPU::INSERT_SUBREG
;
3657 case AMDGPU::WQM
: return AMDGPU::WQM
;
3658 case AMDGPU::SOFT_WQM
: return AMDGPU::SOFT_WQM
;
3659 case AMDGPU::WWM
: return AMDGPU::WWM
;
3660 case AMDGPU::S_MOV_B32
: {
3661 const MachineRegisterInfo
&MRI
= MI
.getParent()->getParent()->getRegInfo();
3662 return MI
.getOperand(1).isReg() ||
3663 RI
.isAGPR(MRI
, MI
.getOperand(0).getReg()) ?
3664 AMDGPU::COPY
: AMDGPU::V_MOV_B32_e32
;
3666 case AMDGPU::S_ADD_I32
:
3667 return ST
.hasAddNoCarry() ? AMDGPU::V_ADD_U32_e64
: AMDGPU::V_ADD_I32_e32
;
3668 case AMDGPU::S_ADDC_U32
:
3669 return AMDGPU::V_ADDC_U32_e32
;
3670 case AMDGPU::S_SUB_I32
:
3671 return ST
.hasAddNoCarry() ? AMDGPU::V_SUB_U32_e64
: AMDGPU::V_SUB_I32_e32
;
3672 // FIXME: These are not consistently handled, and selected when the carry is
3674 case AMDGPU::S_ADD_U32
:
3675 return AMDGPU::V_ADD_I32_e32
;
3676 case AMDGPU::S_SUB_U32
:
3677 return AMDGPU::V_SUB_I32_e32
;
3678 case AMDGPU::S_SUBB_U32
: return AMDGPU::V_SUBB_U32_e32
;
3679 case AMDGPU::S_MUL_I32
: return AMDGPU::V_MUL_LO_U32
;
3680 case AMDGPU::S_MUL_HI_U32
: return AMDGPU::V_MUL_HI_U32
;
3681 case AMDGPU::S_MUL_HI_I32
: return AMDGPU::V_MUL_HI_I32
;
3682 case AMDGPU::S_AND_B32
: return AMDGPU::V_AND_B32_e64
;
3683 case AMDGPU::S_OR_B32
: return AMDGPU::V_OR_B32_e64
;
3684 case AMDGPU::S_XOR_B32
: return AMDGPU::V_XOR_B32_e64
;
3685 case AMDGPU::S_XNOR_B32
:
3686 return ST
.hasDLInsts() ? AMDGPU::V_XNOR_B32_e64
: AMDGPU::INSTRUCTION_LIST_END
;
3687 case AMDGPU::S_MIN_I32
: return AMDGPU::V_MIN_I32_e64
;
3688 case AMDGPU::S_MIN_U32
: return AMDGPU::V_MIN_U32_e64
;
3689 case AMDGPU::S_MAX_I32
: return AMDGPU::V_MAX_I32_e64
;
3690 case AMDGPU::S_MAX_U32
: return AMDGPU::V_MAX_U32_e64
;
3691 case AMDGPU::S_ASHR_I32
: return AMDGPU::V_ASHR_I32_e32
;
3692 case AMDGPU::S_ASHR_I64
: return AMDGPU::V_ASHR_I64
;
3693 case AMDGPU::S_LSHL_B32
: return AMDGPU::V_LSHL_B32_e32
;
3694 case AMDGPU::S_LSHL_B64
: return AMDGPU::V_LSHL_B64
;
3695 case AMDGPU::S_LSHR_B32
: return AMDGPU::V_LSHR_B32_e32
;
3696 case AMDGPU::S_LSHR_B64
: return AMDGPU::V_LSHR_B64
;
3697 case AMDGPU::S_SEXT_I32_I8
: return AMDGPU::V_BFE_I32
;
3698 case AMDGPU::S_SEXT_I32_I16
: return AMDGPU::V_BFE_I32
;
3699 case AMDGPU::S_BFE_U32
: return AMDGPU::V_BFE_U32
;
3700 case AMDGPU::S_BFE_I32
: return AMDGPU::V_BFE_I32
;
3701 case AMDGPU::S_BFM_B32
: return AMDGPU::V_BFM_B32_e64
;
3702 case AMDGPU::S_BREV_B32
: return AMDGPU::V_BFREV_B32_e32
;
3703 case AMDGPU::S_NOT_B32
: return AMDGPU::V_NOT_B32_e32
;
3704 case AMDGPU::S_NOT_B64
: return AMDGPU::V_NOT_B32_e32
;
3705 case AMDGPU::S_CMP_EQ_I32
: return AMDGPU::V_CMP_EQ_I32_e32
;
3706 case AMDGPU::S_CMP_LG_I32
: return AMDGPU::V_CMP_NE_I32_e32
;
3707 case AMDGPU::S_CMP_GT_I32
: return AMDGPU::V_CMP_GT_I32_e32
;
3708 case AMDGPU::S_CMP_GE_I32
: return AMDGPU::V_CMP_GE_I32_e32
;
3709 case AMDGPU::S_CMP_LT_I32
: return AMDGPU::V_CMP_LT_I32_e32
;
3710 case AMDGPU::S_CMP_LE_I32
: return AMDGPU::V_CMP_LE_I32_e32
;
3711 case AMDGPU::S_CMP_EQ_U32
: return AMDGPU::V_CMP_EQ_U32_e32
;
3712 case AMDGPU::S_CMP_LG_U32
: return AMDGPU::V_CMP_NE_U32_e32
;
3713 case AMDGPU::S_CMP_GT_U32
: return AMDGPU::V_CMP_GT_U32_e32
;
3714 case AMDGPU::S_CMP_GE_U32
: return AMDGPU::V_CMP_GE_U32_e32
;
3715 case AMDGPU::S_CMP_LT_U32
: return AMDGPU::V_CMP_LT_U32_e32
;
3716 case AMDGPU::S_CMP_LE_U32
: return AMDGPU::V_CMP_LE_U32_e32
;
3717 case AMDGPU::S_CMP_EQ_U64
: return AMDGPU::V_CMP_EQ_U64_e32
;
3718 case AMDGPU::S_CMP_LG_U64
: return AMDGPU::V_CMP_NE_U64_e32
;
3719 case AMDGPU::S_BCNT1_I32_B32
: return AMDGPU::V_BCNT_U32_B32_e64
;
3720 case AMDGPU::S_FF1_I32_B32
: return AMDGPU::V_FFBL_B32_e32
;
3721 case AMDGPU::S_FLBIT_I32_B32
: return AMDGPU::V_FFBH_U32_e32
;
3722 case AMDGPU::S_FLBIT_I32
: return AMDGPU::V_FFBH_I32_e64
;
3723 case AMDGPU::S_CBRANCH_SCC0
: return AMDGPU::S_CBRANCH_VCCZ
;
3724 case AMDGPU::S_CBRANCH_SCC1
: return AMDGPU::S_CBRANCH_VCCNZ
;
3727 "Unexpected scalar opcode without corresponding vector one!");
3730 const TargetRegisterClass
*SIInstrInfo::getOpRegClass(const MachineInstr
&MI
,
3731 unsigned OpNo
) const {
3732 const MachineRegisterInfo
&MRI
= MI
.getParent()->getParent()->getRegInfo();
3733 const MCInstrDesc
&Desc
= get(MI
.getOpcode());
3734 if (MI
.isVariadic() || OpNo
>= Desc
.getNumOperands() ||
3735 Desc
.OpInfo
[OpNo
].RegClass
== -1) {
3736 Register Reg
= MI
.getOperand(OpNo
).getReg();
3738 if (Register::isVirtualRegister(Reg
))
3739 return MRI
.getRegClass(Reg
);
3740 return RI
.getPhysRegClass(Reg
);
3743 unsigned RCID
= Desc
.OpInfo
[OpNo
].RegClass
;
3744 return RI
.getRegClass(RCID
);
3747 void SIInstrInfo::legalizeOpWithMove(MachineInstr
&MI
, unsigned OpIdx
) const {
3748 MachineBasicBlock::iterator I
= MI
;
3749 MachineBasicBlock
*MBB
= MI
.getParent();
3750 MachineOperand
&MO
= MI
.getOperand(OpIdx
);
3751 MachineRegisterInfo
&MRI
= MBB
->getParent()->getRegInfo();
3752 const SIRegisterInfo
*TRI
=
3753 static_cast<const SIRegisterInfo
*>(MRI
.getTargetRegisterInfo());
3754 unsigned RCID
= get(MI
.getOpcode()).OpInfo
[OpIdx
].RegClass
;
3755 const TargetRegisterClass
*RC
= RI
.getRegClass(RCID
);
3756 unsigned Size
= TRI
->getRegSizeInBits(*RC
);
3757 unsigned Opcode
= (Size
== 64) ? AMDGPU::V_MOV_B64_PSEUDO
: AMDGPU::V_MOV_B32_e32
;
3759 Opcode
= AMDGPU::COPY
;
3760 else if (RI
.isSGPRClass(RC
))
3761 Opcode
= (Size
== 64) ? AMDGPU::S_MOV_B64
: AMDGPU::S_MOV_B32
;
3763 const TargetRegisterClass
*VRC
= RI
.getEquivalentVGPRClass(RC
);
3764 if (RI
.getCommonSubClass(&AMDGPU::VReg_64RegClass
, VRC
))
3765 VRC
= &AMDGPU::VReg_64RegClass
;
3767 VRC
= &AMDGPU::VGPR_32RegClass
;
3769 Register Reg
= MRI
.createVirtualRegister(VRC
);
3770 DebugLoc DL
= MBB
->findDebugLoc(I
);
3771 BuildMI(*MI
.getParent(), I
, DL
, get(Opcode
), Reg
).add(MO
);
3772 MO
.ChangeToRegister(Reg
, false);
3775 unsigned SIInstrInfo::buildExtractSubReg(MachineBasicBlock::iterator MI
,
3776 MachineRegisterInfo
&MRI
,
3777 MachineOperand
&SuperReg
,
3778 const TargetRegisterClass
*SuperRC
,
3780 const TargetRegisterClass
*SubRC
)
3782 MachineBasicBlock
*MBB
= MI
->getParent();
3783 DebugLoc DL
= MI
->getDebugLoc();
3784 Register SubReg
= MRI
.createVirtualRegister(SubRC
);
3786 if (SuperReg
.getSubReg() == AMDGPU::NoSubRegister
) {
3787 BuildMI(*MBB
, MI
, DL
, get(TargetOpcode::COPY
), SubReg
)
3788 .addReg(SuperReg
.getReg(), 0, SubIdx
);
3792 // Just in case the super register is itself a sub-register, copy it to a new
3793 // value so we don't need to worry about merging its subreg index with the
3794 // SubIdx passed to this function. The register coalescer should be able to
3795 // eliminate this extra copy.
3796 Register NewSuperReg
= MRI
.createVirtualRegister(SuperRC
);
3798 BuildMI(*MBB
, MI
, DL
, get(TargetOpcode::COPY
), NewSuperReg
)
3799 .addReg(SuperReg
.getReg(), 0, SuperReg
.getSubReg());
3801 BuildMI(*MBB
, MI
, DL
, get(TargetOpcode::COPY
), SubReg
)
3802 .addReg(NewSuperReg
, 0, SubIdx
);
3807 MachineOperand
SIInstrInfo::buildExtractSubRegOrImm(
3808 MachineBasicBlock::iterator MII
,
3809 MachineRegisterInfo
&MRI
,
3811 const TargetRegisterClass
*SuperRC
,
3813 const TargetRegisterClass
*SubRC
) const {
3815 if (SubIdx
== AMDGPU::sub0
)
3816 return MachineOperand::CreateImm(static_cast<int32_t>(Op
.getImm()));
3817 if (SubIdx
== AMDGPU::sub1
)
3818 return MachineOperand::CreateImm(static_cast<int32_t>(Op
.getImm() >> 32));
3820 llvm_unreachable("Unhandled register index for immediate");
3823 unsigned SubReg
= buildExtractSubReg(MII
, MRI
, Op
, SuperRC
,
3825 return MachineOperand::CreateReg(SubReg
, false);
3828 // Change the order of operands from (0, 1, 2) to (0, 2, 1)
3829 void SIInstrInfo::swapOperands(MachineInstr
&Inst
) const {
3830 assert(Inst
.getNumExplicitOperands() == 3);
3831 MachineOperand Op1
= Inst
.getOperand(1);
3832 Inst
.RemoveOperand(1);
3833 Inst
.addOperand(Op1
);
3836 bool SIInstrInfo::isLegalRegOperand(const MachineRegisterInfo
&MRI
,
3837 const MCOperandInfo
&OpInfo
,
3838 const MachineOperand
&MO
) const {
3842 Register Reg
= MO
.getReg();
3843 const TargetRegisterClass
*RC
= Register::isVirtualRegister(Reg
)
3844 ? MRI
.getRegClass(Reg
)
3845 : RI
.getPhysRegClass(Reg
);
3847 const SIRegisterInfo
*TRI
=
3848 static_cast<const SIRegisterInfo
*>(MRI
.getTargetRegisterInfo());
3849 RC
= TRI
->getSubRegClass(RC
, MO
.getSubReg());
3851 // In order to be legal, the common sub-class must be equal to the
3852 // class of the current operand. For example:
3854 // v_mov_b32 s0 ; Operand defined as vsrc_b32
3855 // ; RI.getCommonSubClass(s0,vsrc_b32) = sgpr ; LEGAL
3857 // s_sendmsg 0, s0 ; Operand defined as m0reg
3858 // ; RI.getCommonSubClass(s0,m0reg) = m0reg ; NOT LEGAL
3860 return RI
.getCommonSubClass(RC
, RI
.getRegClass(OpInfo
.RegClass
)) == RC
;
3863 bool SIInstrInfo::isLegalVSrcOperand(const MachineRegisterInfo
&MRI
,
3864 const MCOperandInfo
&OpInfo
,
3865 const MachineOperand
&MO
) const {
3867 return isLegalRegOperand(MRI
, OpInfo
, MO
);
3869 // Handle non-register types that are treated like immediates.
3870 assert(MO
.isImm() || MO
.isTargetIndex() || MO
.isFI() || MO
.isGlobal());
3874 bool SIInstrInfo::isOperandLegal(const MachineInstr
&MI
, unsigned OpIdx
,
3875 const MachineOperand
*MO
) const {
3876 const MachineFunction
&MF
= *MI
.getParent()->getParent();
3877 const MachineRegisterInfo
&MRI
= MF
.getRegInfo();
3878 const MCInstrDesc
&InstDesc
= MI
.getDesc();
3879 const MCOperandInfo
&OpInfo
= InstDesc
.OpInfo
[OpIdx
];
3880 const GCNSubtarget
&ST
= MF
.getSubtarget
<GCNSubtarget
>();
3881 const TargetRegisterClass
*DefinedRC
=
3882 OpInfo
.RegClass
!= -1 ? RI
.getRegClass(OpInfo
.RegClass
) : nullptr;
3884 MO
= &MI
.getOperand(OpIdx
);
3886 int ConstantBusLimit
= ST
.getConstantBusLimit(MI
.getOpcode());
3887 int VOP3LiteralLimit
= ST
.hasVOP3Literal() ? 1 : 0;
3888 if (isVALU(MI
) && usesConstantBus(MRI
, *MO
, OpInfo
)) {
3889 if (isVOP3(MI
) && isLiteralConstantLike(*MO
, OpInfo
) && !VOP3LiteralLimit
--)
3892 SmallDenseSet
<RegSubRegPair
> SGPRsUsed
;
3894 SGPRsUsed
.insert(RegSubRegPair(MO
->getReg(), MO
->getSubReg()));
3896 for (unsigned i
= 0, e
= MI
.getNumOperands(); i
!= e
; ++i
) {
3899 const MachineOperand
&Op
= MI
.getOperand(i
);
3901 RegSubRegPair
SGPR(Op
.getReg(), Op
.getSubReg());
3902 if (!SGPRsUsed
.count(SGPR
) &&
3903 usesConstantBus(MRI
, Op
, InstDesc
.OpInfo
[i
])) {
3904 if (--ConstantBusLimit
<= 0)
3906 SGPRsUsed
.insert(SGPR
);
3908 } else if (InstDesc
.OpInfo
[i
].OperandType
== AMDGPU::OPERAND_KIMM32
) {
3909 if (--ConstantBusLimit
<= 0)
3911 } else if (isVOP3(MI
) && AMDGPU::isSISrcOperand(InstDesc
, i
) &&
3912 isLiteralConstantLike(Op
, InstDesc
.OpInfo
[i
])) {
3913 if (!VOP3LiteralLimit
--)
3915 if (--ConstantBusLimit
<= 0)
3923 return isLegalRegOperand(MRI
, OpInfo
, *MO
);
3926 // Handle non-register types that are treated like immediates.
3927 assert(MO
->isImm() || MO
->isTargetIndex() || MO
->isFI() || MO
->isGlobal());
3930 // This operand expects an immediate.
3934 return isImmOperandLegal(MI
, OpIdx
, *MO
);
3937 void SIInstrInfo::legalizeOperandsVOP2(MachineRegisterInfo
&MRI
,
3938 MachineInstr
&MI
) const {
3939 unsigned Opc
= MI
.getOpcode();
3940 const MCInstrDesc
&InstrDesc
= get(Opc
);
3942 int Src0Idx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src0
);
3943 MachineOperand
&Src0
= MI
.getOperand(Src0Idx
);
3945 int Src1Idx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src1
);
3946 MachineOperand
&Src1
= MI
.getOperand(Src1Idx
);
3948 // If there is an implicit SGPR use such as VCC use for v_addc_u32/v_subb_u32
3949 // we need to only have one constant bus use before GFX10.
3950 bool HasImplicitSGPR
= findImplicitSGPRRead(MI
) != AMDGPU::NoRegister
;
3951 if (HasImplicitSGPR
&& ST
.getConstantBusLimit(Opc
) <= 1 &&
3952 Src0
.isReg() && (RI
.isSGPRReg(MRI
, Src0
.getReg()) ||
3953 isLiteralConstantLike(Src0
, InstrDesc
.OpInfo
[Src0Idx
])))
3954 legalizeOpWithMove(MI
, Src0Idx
);
3956 // Special case: V_WRITELANE_B32 accepts only immediate or SGPR operands for
3957 // both the value to write (src0) and lane select (src1). Fix up non-SGPR
3958 // src0/src1 with V_READFIRSTLANE.
3959 if (Opc
== AMDGPU::V_WRITELANE_B32
) {
3960 const DebugLoc
&DL
= MI
.getDebugLoc();
3961 if (Src0
.isReg() && RI
.isVGPR(MRI
, Src0
.getReg())) {
3962 Register Reg
= MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
3963 BuildMI(*MI
.getParent(), MI
, DL
, get(AMDGPU::V_READFIRSTLANE_B32
), Reg
)
3965 Src0
.ChangeToRegister(Reg
, false);
3967 if (Src1
.isReg() && RI
.isVGPR(MRI
, Src1
.getReg())) {
3968 Register Reg
= MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
3969 const DebugLoc
&DL
= MI
.getDebugLoc();
3970 BuildMI(*MI
.getParent(), MI
, DL
, get(AMDGPU::V_READFIRSTLANE_B32
), Reg
)
3972 Src1
.ChangeToRegister(Reg
, false);
3977 // No VOP2 instructions support AGPRs.
3978 if (Src0
.isReg() && RI
.isAGPR(MRI
, Src0
.getReg()))
3979 legalizeOpWithMove(MI
, Src0Idx
);
3981 if (Src1
.isReg() && RI
.isAGPR(MRI
, Src1
.getReg()))
3982 legalizeOpWithMove(MI
, Src1Idx
);
3984 // VOP2 src0 instructions support all operand types, so we don't need to check
3985 // their legality. If src1 is already legal, we don't need to do anything.
3986 if (isLegalRegOperand(MRI
, InstrDesc
.OpInfo
[Src1Idx
], Src1
))
3989 // Special case: V_READLANE_B32 accepts only immediate or SGPR operands for
3990 // lane select. Fix up using V_READFIRSTLANE, since we assume that the lane
3991 // select is uniform.
3992 if (Opc
== AMDGPU::V_READLANE_B32
&& Src1
.isReg() &&
3993 RI
.isVGPR(MRI
, Src1
.getReg())) {
3994 Register Reg
= MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
3995 const DebugLoc
&DL
= MI
.getDebugLoc();
3996 BuildMI(*MI
.getParent(), MI
, DL
, get(AMDGPU::V_READFIRSTLANE_B32
), Reg
)
3998 Src1
.ChangeToRegister(Reg
, false);
4002 // We do not use commuteInstruction here because it is too aggressive and will
4003 // commute if it is possible. We only want to commute here if it improves
4004 // legality. This can be called a fairly large number of times so don't waste
4005 // compile time pointlessly swapping and checking legality again.
4006 if (HasImplicitSGPR
|| !MI
.isCommutable()) {
4007 legalizeOpWithMove(MI
, Src1Idx
);
4011 // If src0 can be used as src1, commuting will make the operands legal.
4012 // Otherwise we have to give up and insert a move.
4014 // TODO: Other immediate-like operand kinds could be commuted if there was a
4015 // MachineOperand::ChangeTo* for them.
4016 if ((!Src1
.isImm() && !Src1
.isReg()) ||
4017 !isLegalRegOperand(MRI
, InstrDesc
.OpInfo
[Src1Idx
], Src0
)) {
4018 legalizeOpWithMove(MI
, Src1Idx
);
4022 int CommutedOpc
= commuteOpcode(MI
);
4023 if (CommutedOpc
== -1) {
4024 legalizeOpWithMove(MI
, Src1Idx
);
4028 MI
.setDesc(get(CommutedOpc
));
4030 Register Src0Reg
= Src0
.getReg();
4031 unsigned Src0SubReg
= Src0
.getSubReg();
4032 bool Src0Kill
= Src0
.isKill();
4035 Src0
.ChangeToImmediate(Src1
.getImm());
4036 else if (Src1
.isReg()) {
4037 Src0
.ChangeToRegister(Src1
.getReg(), false, false, Src1
.isKill());
4038 Src0
.setSubReg(Src1
.getSubReg());
4040 llvm_unreachable("Should only have register or immediate operands");
4042 Src1
.ChangeToRegister(Src0Reg
, false, false, Src0Kill
);
4043 Src1
.setSubReg(Src0SubReg
);
4044 fixImplicitOperands(MI
);
4047 // Legalize VOP3 operands. All operand types are supported for any operand
4048 // but only one literal constant and only starting from GFX10.
4049 void SIInstrInfo::legalizeOperandsVOP3(MachineRegisterInfo
&MRI
,
4050 MachineInstr
&MI
) const {
4051 unsigned Opc
= MI
.getOpcode();
4054 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src0
),
4055 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src1
),
4056 AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src2
)
4059 if (Opc
== AMDGPU::V_PERMLANE16_B32
||
4060 Opc
== AMDGPU::V_PERMLANEX16_B32
) {
4061 // src1 and src2 must be scalar
4062 MachineOperand
&Src1
= MI
.getOperand(VOP3Idx
[1]);
4063 MachineOperand
&Src2
= MI
.getOperand(VOP3Idx
[2]);
4064 const DebugLoc
&DL
= MI
.getDebugLoc();
4065 if (Src1
.isReg() && !RI
.isSGPRClass(MRI
.getRegClass(Src1
.getReg()))) {
4066 Register Reg
= MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
4067 BuildMI(*MI
.getParent(), MI
, DL
, get(AMDGPU::V_READFIRSTLANE_B32
), Reg
)
4069 Src1
.ChangeToRegister(Reg
, false);
4071 if (Src2
.isReg() && !RI
.isSGPRClass(MRI
.getRegClass(Src2
.getReg()))) {
4072 Register Reg
= MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
4073 BuildMI(*MI
.getParent(), MI
, DL
, get(AMDGPU::V_READFIRSTLANE_B32
), Reg
)
4075 Src2
.ChangeToRegister(Reg
, false);
4079 // Find the one SGPR operand we are allowed to use.
4080 int ConstantBusLimit
= ST
.getConstantBusLimit(Opc
);
4081 int LiteralLimit
= ST
.hasVOP3Literal() ? 1 : 0;
4082 SmallDenseSet
<unsigned> SGPRsUsed
;
4083 unsigned SGPRReg
= findUsedSGPR(MI
, VOP3Idx
);
4084 if (SGPRReg
!= AMDGPU::NoRegister
) {
4085 SGPRsUsed
.insert(SGPRReg
);
4089 for (unsigned i
= 0; i
< 3; ++i
) {
4090 int Idx
= VOP3Idx
[i
];
4093 MachineOperand
&MO
= MI
.getOperand(Idx
);
4096 if (!isLiteralConstantLike(MO
, get(Opc
).OpInfo
[Idx
]))
4099 if (LiteralLimit
> 0 && ConstantBusLimit
> 0) {
4107 legalizeOpWithMove(MI
, Idx
);
4111 if (RI
.hasAGPRs(MRI
.getRegClass(MO
.getReg())) &&
4112 !isOperandLegal(MI
, Idx
, &MO
)) {
4113 legalizeOpWithMove(MI
, Idx
);
4117 if (!RI
.isSGPRClass(MRI
.getRegClass(MO
.getReg())))
4118 continue; // VGPRs are legal
4120 // We can use one SGPR in each VOP3 instruction prior to GFX10
4121 // and two starting from GFX10.
4122 if (SGPRsUsed
.count(MO
.getReg()))
4124 if (ConstantBusLimit
> 0) {
4125 SGPRsUsed
.insert(MO
.getReg());
4130 // If we make it this far, then the operand is not legal and we must
4132 legalizeOpWithMove(MI
, Idx
);
4136 unsigned SIInstrInfo::readlaneVGPRToSGPR(unsigned SrcReg
, MachineInstr
&UseMI
,
4137 MachineRegisterInfo
&MRI
) const {
4138 const TargetRegisterClass
*VRC
= MRI
.getRegClass(SrcReg
);
4139 const TargetRegisterClass
*SRC
= RI
.getEquivalentSGPRClass(VRC
);
4140 Register DstReg
= MRI
.createVirtualRegister(SRC
);
4141 unsigned SubRegs
= RI
.getRegSizeInBits(*VRC
) / 32;
4143 if (RI
.hasAGPRs(VRC
)) {
4144 VRC
= RI
.getEquivalentVGPRClass(VRC
);
4145 Register NewSrcReg
= MRI
.createVirtualRegister(VRC
);
4146 BuildMI(*UseMI
.getParent(), UseMI
, UseMI
.getDebugLoc(),
4147 get(TargetOpcode::COPY
), NewSrcReg
)
4153 BuildMI(*UseMI
.getParent(), UseMI
, UseMI
.getDebugLoc(),
4154 get(AMDGPU::V_READFIRSTLANE_B32
), DstReg
)
4159 SmallVector
<unsigned, 8> SRegs
;
4160 for (unsigned i
= 0; i
< SubRegs
; ++i
) {
4161 Register SGPR
= MRI
.createVirtualRegister(&AMDGPU::SGPR_32RegClass
);
4162 BuildMI(*UseMI
.getParent(), UseMI
, UseMI
.getDebugLoc(),
4163 get(AMDGPU::V_READFIRSTLANE_B32
), SGPR
)
4164 .addReg(SrcReg
, 0, RI
.getSubRegFromChannel(i
));
4165 SRegs
.push_back(SGPR
);
4168 MachineInstrBuilder MIB
=
4169 BuildMI(*UseMI
.getParent(), UseMI
, UseMI
.getDebugLoc(),
4170 get(AMDGPU::REG_SEQUENCE
), DstReg
);
4171 for (unsigned i
= 0; i
< SubRegs
; ++i
) {
4172 MIB
.addReg(SRegs
[i
]);
4173 MIB
.addImm(RI
.getSubRegFromChannel(i
));
4178 void SIInstrInfo::legalizeOperandsSMRD(MachineRegisterInfo
&MRI
,
4179 MachineInstr
&MI
) const {
4181 // If the pointer is store in VGPRs, then we need to move them to
4182 // SGPRs using v_readfirstlane. This is safe because we only select
4183 // loads with uniform pointers to SMRD instruction so we know the
4184 // pointer value is uniform.
4185 MachineOperand
*SBase
= getNamedOperand(MI
, AMDGPU::OpName::sbase
);
4186 if (SBase
&& !RI
.isSGPRClass(MRI
.getRegClass(SBase
->getReg()))) {
4187 unsigned SGPR
= readlaneVGPRToSGPR(SBase
->getReg(), MI
, MRI
);
4188 SBase
->setReg(SGPR
);
4190 MachineOperand
*SOff
= getNamedOperand(MI
, AMDGPU::OpName::soff
);
4191 if (SOff
&& !RI
.isSGPRClass(MRI
.getRegClass(SOff
->getReg()))) {
4192 unsigned SGPR
= readlaneVGPRToSGPR(SOff
->getReg(), MI
, MRI
);
4197 void SIInstrInfo::legalizeGenericOperand(MachineBasicBlock
&InsertMBB
,
4198 MachineBasicBlock::iterator I
,
4199 const TargetRegisterClass
*DstRC
,
4201 MachineRegisterInfo
&MRI
,
4202 const DebugLoc
&DL
) const {
4203 Register OpReg
= Op
.getReg();
4204 unsigned OpSubReg
= Op
.getSubReg();
4206 const TargetRegisterClass
*OpRC
= RI
.getSubClassWithSubReg(
4207 RI
.getRegClassForReg(MRI
, OpReg
), OpSubReg
);
4209 // Check if operand is already the correct register class.
4213 Register DstReg
= MRI
.createVirtualRegister(DstRC
);
4214 MachineInstr
*Copy
=
4215 BuildMI(InsertMBB
, I
, DL
, get(AMDGPU::COPY
), DstReg
).add(Op
);
4220 MachineInstr
*Def
= MRI
.getVRegDef(OpReg
);
4224 // Try to eliminate the copy if it is copying an immediate value.
4225 if (Def
->isMoveImmediate())
4226 FoldImmediate(*Copy
, *Def
, OpReg
, &MRI
);
4228 bool ImpDef
= Def
->isImplicitDef();
4229 while (!ImpDef
&& Def
&& Def
->isCopy()) {
4230 Def
= MRI
.getUniqueVRegDef(Def
->getOperand(1).getReg());
4231 ImpDef
= Def
&& Def
->isImplicitDef();
4233 if (!RI
.isSGPRClass(DstRC
) && !Copy
->readsRegister(AMDGPU::EXEC
, &RI
) &&
4235 Copy
->addOperand(MachineOperand::CreateReg(AMDGPU::EXEC
, false, true));
4238 // Emit the actual waterfall loop, executing the wrapped instruction for each
4239 // unique value of \p Rsrc across all lanes. In the best case we execute 1
4240 // iteration, in the worst case we execute 64 (once per lane).
4242 emitLoadSRsrcFromVGPRLoop(const SIInstrInfo
&TII
, MachineRegisterInfo
&MRI
,
4243 MachineBasicBlock
&OrigBB
, MachineBasicBlock
&LoopBB
,
4244 const DebugLoc
&DL
, MachineOperand
&Rsrc
) {
4245 MachineFunction
&MF
= *OrigBB
.getParent();
4246 const GCNSubtarget
&ST
= MF
.getSubtarget
<GCNSubtarget
>();
4247 const SIRegisterInfo
*TRI
= ST
.getRegisterInfo();
4248 unsigned Exec
= ST
.isWave32() ? AMDGPU::EXEC_LO
: AMDGPU::EXEC
;
4249 unsigned SaveExecOpc
=
4250 ST
.isWave32() ? AMDGPU::S_AND_SAVEEXEC_B32
: AMDGPU::S_AND_SAVEEXEC_B64
;
4251 unsigned XorTermOpc
=
4252 ST
.isWave32() ? AMDGPU::S_XOR_B32_term
: AMDGPU::S_XOR_B64_term
;
4254 ST
.isWave32() ? AMDGPU::S_AND_B32
: AMDGPU::S_AND_B64
;
4255 const auto *BoolXExecRC
= TRI
->getRegClass(AMDGPU::SReg_1_XEXECRegClassID
);
4257 MachineBasicBlock::iterator I
= LoopBB
.begin();
4259 Register VRsrc
= Rsrc
.getReg();
4260 unsigned VRsrcUndef
= getUndefRegState(Rsrc
.isUndef());
4262 Register SaveExec
= MRI
.createVirtualRegister(BoolXExecRC
);
4263 Register CondReg0
= MRI
.createVirtualRegister(BoolXExecRC
);
4264 Register CondReg1
= MRI
.createVirtualRegister(BoolXExecRC
);
4265 Register AndCond
= MRI
.createVirtualRegister(BoolXExecRC
);
4266 Register SRsrcSub0
= MRI
.createVirtualRegister(&AMDGPU::SGPR_32RegClass
);
4267 Register SRsrcSub1
= MRI
.createVirtualRegister(&AMDGPU::SGPR_32RegClass
);
4268 Register SRsrcSub2
= MRI
.createVirtualRegister(&AMDGPU::SGPR_32RegClass
);
4269 Register SRsrcSub3
= MRI
.createVirtualRegister(&AMDGPU::SGPR_32RegClass
);
4270 Register SRsrc
= MRI
.createVirtualRegister(&AMDGPU::SGPR_128RegClass
);
4272 // Beginning of the loop, read the next Rsrc variant.
4273 BuildMI(LoopBB
, I
, DL
, TII
.get(AMDGPU::V_READFIRSTLANE_B32
), SRsrcSub0
)
4274 .addReg(VRsrc
, VRsrcUndef
, AMDGPU::sub0
);
4275 BuildMI(LoopBB
, I
, DL
, TII
.get(AMDGPU::V_READFIRSTLANE_B32
), SRsrcSub1
)
4276 .addReg(VRsrc
, VRsrcUndef
, AMDGPU::sub1
);
4277 BuildMI(LoopBB
, I
, DL
, TII
.get(AMDGPU::V_READFIRSTLANE_B32
), SRsrcSub2
)
4278 .addReg(VRsrc
, VRsrcUndef
, AMDGPU::sub2
);
4279 BuildMI(LoopBB
, I
, DL
, TII
.get(AMDGPU::V_READFIRSTLANE_B32
), SRsrcSub3
)
4280 .addReg(VRsrc
, VRsrcUndef
, AMDGPU::sub3
);
4282 BuildMI(LoopBB
, I
, DL
, TII
.get(AMDGPU::REG_SEQUENCE
), SRsrc
)
4284 .addImm(AMDGPU::sub0
)
4286 .addImm(AMDGPU::sub1
)
4288 .addImm(AMDGPU::sub2
)
4290 .addImm(AMDGPU::sub3
);
4292 // Update Rsrc operand to use the SGPR Rsrc.
4294 Rsrc
.setIsKill(true);
4296 // Identify all lanes with identical Rsrc operands in their VGPRs.
4297 BuildMI(LoopBB
, I
, DL
, TII
.get(AMDGPU::V_CMP_EQ_U64_e64
), CondReg0
)
4298 .addReg(SRsrc
, 0, AMDGPU::sub0_sub1
)
4299 .addReg(VRsrc
, 0, AMDGPU::sub0_sub1
);
4300 BuildMI(LoopBB
, I
, DL
, TII
.get(AMDGPU::V_CMP_EQ_U64_e64
), CondReg1
)
4301 .addReg(SRsrc
, 0, AMDGPU::sub2_sub3
)
4302 .addReg(VRsrc
, 0, AMDGPU::sub2_sub3
);
4303 BuildMI(LoopBB
, I
, DL
, TII
.get(AndOpc
), AndCond
)
4307 MRI
.setSimpleHint(SaveExec
, AndCond
);
4309 // Update EXEC to matching lanes, saving original to SaveExec.
4310 BuildMI(LoopBB
, I
, DL
, TII
.get(SaveExecOpc
), SaveExec
)
4311 .addReg(AndCond
, RegState::Kill
);
4313 // The original instruction is here; we insert the terminators after it.
4316 // Update EXEC, switch all done bits to 0 and all todo bits to 1.
4317 BuildMI(LoopBB
, I
, DL
, TII
.get(XorTermOpc
), Exec
)
4320 BuildMI(LoopBB
, I
, DL
, TII
.get(AMDGPU::S_CBRANCH_EXECNZ
)).addMBB(&LoopBB
);
4323 // Build a waterfall loop around \p MI, replacing the VGPR \p Rsrc register
4324 // with SGPRs by iterating over all unique values across all lanes.
4325 static void loadSRsrcFromVGPR(const SIInstrInfo
&TII
, MachineInstr
&MI
,
4326 MachineOperand
&Rsrc
, MachineDominatorTree
*MDT
) {
4327 MachineBasicBlock
&MBB
= *MI
.getParent();
4328 MachineFunction
&MF
= *MBB
.getParent();
4329 const GCNSubtarget
&ST
= MF
.getSubtarget
<GCNSubtarget
>();
4330 const SIRegisterInfo
*TRI
= ST
.getRegisterInfo();
4331 MachineRegisterInfo
&MRI
= MF
.getRegInfo();
4332 MachineBasicBlock::iterator
I(&MI
);
4333 const DebugLoc
&DL
= MI
.getDebugLoc();
4334 unsigned Exec
= ST
.isWave32() ? AMDGPU::EXEC_LO
: AMDGPU::EXEC
;
4335 unsigned MovExecOpc
= ST
.isWave32() ? AMDGPU::S_MOV_B32
: AMDGPU::S_MOV_B64
;
4336 const auto *BoolXExecRC
= TRI
->getRegClass(AMDGPU::SReg_1_XEXECRegClassID
);
4338 Register SaveExec
= MRI
.createVirtualRegister(BoolXExecRC
);
4340 // Save the EXEC mask
4341 BuildMI(MBB
, I
, DL
, TII
.get(MovExecOpc
), SaveExec
).addReg(Exec
);
4343 // Killed uses in the instruction we are waterfalling around will be
4344 // incorrect due to the added control-flow.
4345 for (auto &MO
: MI
.uses()) {
4346 if (MO
.isReg() && MO
.isUse()) {
4347 MRI
.clearKillFlags(MO
.getReg());
4351 // To insert the loop we need to split the block. Move everything after this
4352 // point to a new block, and insert a new empty block between the two.
4353 MachineBasicBlock
*LoopBB
= MF
.CreateMachineBasicBlock();
4354 MachineBasicBlock
*RemainderBB
= MF
.CreateMachineBasicBlock();
4355 MachineFunction::iterator
MBBI(MBB
);
4358 MF
.insert(MBBI
, LoopBB
);
4359 MF
.insert(MBBI
, RemainderBB
);
4361 LoopBB
->addSuccessor(LoopBB
);
4362 LoopBB
->addSuccessor(RemainderBB
);
4364 // Move MI to the LoopBB, and the remainder of the block to RemainderBB.
4365 MachineBasicBlock::iterator J
= I
++;
4366 RemainderBB
->transferSuccessorsAndUpdatePHIs(&MBB
);
4367 RemainderBB
->splice(RemainderBB
->begin(), &MBB
, I
, MBB
.end());
4368 LoopBB
->splice(LoopBB
->begin(), &MBB
, J
);
4370 MBB
.addSuccessor(LoopBB
);
4372 // Update dominators. We know that MBB immediately dominates LoopBB, that
4373 // LoopBB immediately dominates RemainderBB, and that RemainderBB immediately
4374 // dominates all of the successors transferred to it from MBB that MBB used
4377 MDT
->addNewBlock(LoopBB
, &MBB
);
4378 MDT
->addNewBlock(RemainderBB
, LoopBB
);
4379 for (auto &Succ
: RemainderBB
->successors()) {
4380 if (MDT
->dominates(&MBB
, Succ
)) {
4381 MDT
->changeImmediateDominator(Succ
, RemainderBB
);
4386 emitLoadSRsrcFromVGPRLoop(TII
, MRI
, MBB
, *LoopBB
, DL
, Rsrc
);
4388 // Restore the EXEC mask
4389 MachineBasicBlock::iterator First
= RemainderBB
->begin();
4390 BuildMI(*RemainderBB
, First
, DL
, TII
.get(MovExecOpc
), Exec
).addReg(SaveExec
);
4393 // Extract pointer from Rsrc and return a zero-value Rsrc replacement.
4394 static std::tuple
<unsigned, unsigned>
4395 extractRsrcPtr(const SIInstrInfo
&TII
, MachineInstr
&MI
, MachineOperand
&Rsrc
) {
4396 MachineBasicBlock
&MBB
= *MI
.getParent();
4397 MachineFunction
&MF
= *MBB
.getParent();
4398 MachineRegisterInfo
&MRI
= MF
.getRegInfo();
4400 // Extract the ptr from the resource descriptor.
4402 TII
.buildExtractSubReg(MI
, MRI
, Rsrc
, &AMDGPU::VReg_128RegClass
,
4403 AMDGPU::sub0_sub1
, &AMDGPU::VReg_64RegClass
);
4405 // Create an empty resource descriptor
4406 Register Zero64
= MRI
.createVirtualRegister(&AMDGPU::SReg_64RegClass
);
4407 Register SRsrcFormatLo
= MRI
.createVirtualRegister(&AMDGPU::SGPR_32RegClass
);
4408 Register SRsrcFormatHi
= MRI
.createVirtualRegister(&AMDGPU::SGPR_32RegClass
);
4409 Register NewSRsrc
= MRI
.createVirtualRegister(&AMDGPU::SGPR_128RegClass
);
4410 uint64_t RsrcDataFormat
= TII
.getDefaultRsrcDataFormat();
4413 BuildMI(MBB
, MI
, MI
.getDebugLoc(), TII
.get(AMDGPU::S_MOV_B64
), Zero64
)
4416 // SRsrcFormatLo = RSRC_DATA_FORMAT{31-0}
4417 BuildMI(MBB
, MI
, MI
.getDebugLoc(), TII
.get(AMDGPU::S_MOV_B32
), SRsrcFormatLo
)
4418 .addImm(RsrcDataFormat
& 0xFFFFFFFF);
4420 // SRsrcFormatHi = RSRC_DATA_FORMAT{63-32}
4421 BuildMI(MBB
, MI
, MI
.getDebugLoc(), TII
.get(AMDGPU::S_MOV_B32
), SRsrcFormatHi
)
4422 .addImm(RsrcDataFormat
>> 32);
4424 // NewSRsrc = {Zero64, SRsrcFormat}
4425 BuildMI(MBB
, MI
, MI
.getDebugLoc(), TII
.get(AMDGPU::REG_SEQUENCE
), NewSRsrc
)
4427 .addImm(AMDGPU::sub0_sub1
)
4428 .addReg(SRsrcFormatLo
)
4429 .addImm(AMDGPU::sub2
)
4430 .addReg(SRsrcFormatHi
)
4431 .addImm(AMDGPU::sub3
);
4433 return std::make_tuple(RsrcPtr
, NewSRsrc
);
4436 void SIInstrInfo::legalizeOperands(MachineInstr
&MI
,
4437 MachineDominatorTree
*MDT
) const {
4438 MachineFunction
&MF
= *MI
.getParent()->getParent();
4439 MachineRegisterInfo
&MRI
= MF
.getRegInfo();
4442 if (isVOP2(MI
) || isVOPC(MI
)) {
4443 legalizeOperandsVOP2(MRI
, MI
);
4449 legalizeOperandsVOP3(MRI
, MI
);
4455 legalizeOperandsSMRD(MRI
, MI
);
4459 // Legalize REG_SEQUENCE and PHI
4460 // The register class of the operands much be the same type as the register
4461 // class of the output.
4462 if (MI
.getOpcode() == AMDGPU::PHI
) {
4463 const TargetRegisterClass
*RC
= nullptr, *SRC
= nullptr, *VRC
= nullptr;
4464 for (unsigned i
= 1, e
= MI
.getNumOperands(); i
!= e
; i
+= 2) {
4465 if (!MI
.getOperand(i
).isReg() ||
4466 !Register::isVirtualRegister(MI
.getOperand(i
).getReg()))
4468 const TargetRegisterClass
*OpRC
=
4469 MRI
.getRegClass(MI
.getOperand(i
).getReg());
4470 if (RI
.hasVectorRegisters(OpRC
)) {
4477 // If any of the operands are VGPR registers, then they all most be
4478 // otherwise we will create illegal VGPR->SGPR copies when legalizing
4480 if (VRC
|| !RI
.isSGPRClass(getOpRegClass(MI
, 0))) {
4483 VRC
= RI
.hasAGPRs(getOpRegClass(MI
, 0)) ? RI
.getEquivalentAGPRClass(SRC
)
4484 : RI
.getEquivalentVGPRClass(SRC
);
4491 // Update all the operands so they have the same type.
4492 for (unsigned I
= 1, E
= MI
.getNumOperands(); I
!= E
; I
+= 2) {
4493 MachineOperand
&Op
= MI
.getOperand(I
);
4494 if (!Op
.isReg() || !Register::isVirtualRegister(Op
.getReg()))
4497 // MI is a PHI instruction.
4498 MachineBasicBlock
*InsertBB
= MI
.getOperand(I
+ 1).getMBB();
4499 MachineBasicBlock::iterator Insert
= InsertBB
->getFirstTerminator();
4501 // Avoid creating no-op copies with the same src and dst reg class. These
4502 // confuse some of the machine passes.
4503 legalizeGenericOperand(*InsertBB
, Insert
, RC
, Op
, MRI
, MI
.getDebugLoc());
4507 // REG_SEQUENCE doesn't really require operand legalization, but if one has a
4508 // VGPR dest type and SGPR sources, insert copies so all operands are
4509 // VGPRs. This seems to help operand folding / the register coalescer.
4510 if (MI
.getOpcode() == AMDGPU::REG_SEQUENCE
) {
4511 MachineBasicBlock
*MBB
= MI
.getParent();
4512 const TargetRegisterClass
*DstRC
= getOpRegClass(MI
, 0);
4513 if (RI
.hasVGPRs(DstRC
)) {
4514 // Update all the operands so they are VGPR register classes. These may
4515 // not be the same register class because REG_SEQUENCE supports mixing
4516 // subregister index types e.g. sub0_sub1 + sub2 + sub3
4517 for (unsigned I
= 1, E
= MI
.getNumOperands(); I
!= E
; I
+= 2) {
4518 MachineOperand
&Op
= MI
.getOperand(I
);
4519 if (!Op
.isReg() || !Register::isVirtualRegister(Op
.getReg()))
4522 const TargetRegisterClass
*OpRC
= MRI
.getRegClass(Op
.getReg());
4523 const TargetRegisterClass
*VRC
= RI
.getEquivalentVGPRClass(OpRC
);
4527 legalizeGenericOperand(*MBB
, MI
, VRC
, Op
, MRI
, MI
.getDebugLoc());
4535 // Legalize INSERT_SUBREG
4536 // src0 must have the same register class as dst
4537 if (MI
.getOpcode() == AMDGPU::INSERT_SUBREG
) {
4538 Register Dst
= MI
.getOperand(0).getReg();
4539 Register Src0
= MI
.getOperand(1).getReg();
4540 const TargetRegisterClass
*DstRC
= MRI
.getRegClass(Dst
);
4541 const TargetRegisterClass
*Src0RC
= MRI
.getRegClass(Src0
);
4542 if (DstRC
!= Src0RC
) {
4543 MachineBasicBlock
*MBB
= MI
.getParent();
4544 MachineOperand
&Op
= MI
.getOperand(1);
4545 legalizeGenericOperand(*MBB
, MI
, DstRC
, Op
, MRI
, MI
.getDebugLoc());
4550 // Legalize SI_INIT_M0
4551 if (MI
.getOpcode() == AMDGPU::SI_INIT_M0
) {
4552 MachineOperand
&Src
= MI
.getOperand(0);
4553 if (Src
.isReg() && RI
.hasVectorRegisters(MRI
.getRegClass(Src
.getReg())))
4554 Src
.setReg(readlaneVGPRToSGPR(Src
.getReg(), MI
, MRI
));
4558 // Legalize MIMG and MUBUF/MTBUF for shaders.
4560 // Shaders only generate MUBUF/MTBUF instructions via intrinsics or via
4561 // scratch memory access. In both cases, the legalization never involves
4562 // conversion to the addr64 form.
4564 (AMDGPU::isShader(MF
.getFunction().getCallingConv()) &&
4565 (isMUBUF(MI
) || isMTBUF(MI
)))) {
4566 MachineOperand
*SRsrc
= getNamedOperand(MI
, AMDGPU::OpName::srsrc
);
4567 if (SRsrc
&& !RI
.isSGPRClass(MRI
.getRegClass(SRsrc
->getReg()))) {
4568 unsigned SGPR
= readlaneVGPRToSGPR(SRsrc
->getReg(), MI
, MRI
);
4569 SRsrc
->setReg(SGPR
);
4572 MachineOperand
*SSamp
= getNamedOperand(MI
, AMDGPU::OpName::ssamp
);
4573 if (SSamp
&& !RI
.isSGPRClass(MRI
.getRegClass(SSamp
->getReg()))) {
4574 unsigned SGPR
= readlaneVGPRToSGPR(SSamp
->getReg(), MI
, MRI
);
4575 SSamp
->setReg(SGPR
);
4580 // Legalize MUBUF* instructions.
4582 AMDGPU::getNamedOperandIdx(MI
.getOpcode(), AMDGPU::OpName::srsrc
);
4583 if (RsrcIdx
!= -1) {
4584 // We have an MUBUF instruction
4585 MachineOperand
*Rsrc
= &MI
.getOperand(RsrcIdx
);
4586 unsigned RsrcRC
= get(MI
.getOpcode()).OpInfo
[RsrcIdx
].RegClass
;
4587 if (RI
.getCommonSubClass(MRI
.getRegClass(Rsrc
->getReg()),
4588 RI
.getRegClass(RsrcRC
))) {
4589 // The operands are legal.
4590 // FIXME: We may need to legalize operands besided srsrc.
4594 // Legalize a VGPR Rsrc.
4596 // If the instruction is _ADDR64, we can avoid a waterfall by extracting
4597 // the base pointer from the VGPR Rsrc, adding it to the VAddr, then using
4598 // a zero-value SRsrc.
4600 // If the instruction is _OFFSET (both idxen and offen disabled), and we
4601 // support ADDR64 instructions, we can convert to ADDR64 and do the same as
4604 // Otherwise we are on non-ADDR64 hardware, and/or we have
4605 // idxen/offen/bothen and we fall back to a waterfall loop.
4607 MachineBasicBlock
&MBB
= *MI
.getParent();
4609 MachineOperand
*VAddr
= getNamedOperand(MI
, AMDGPU::OpName::vaddr
);
4610 if (VAddr
&& AMDGPU::getIfAddr64Inst(MI
.getOpcode()) != -1) {
4611 // This is already an ADDR64 instruction so we need to add the pointer
4612 // extracted from the resource descriptor to the current value of VAddr.
4613 Register NewVAddrLo
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
4614 Register NewVAddrHi
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
4615 Register NewVAddr
= MRI
.createVirtualRegister(&AMDGPU::VReg_64RegClass
);
4617 const auto *BoolXExecRC
= RI
.getRegClass(AMDGPU::SReg_1_XEXECRegClassID
);
4618 Register CondReg0
= MRI
.createVirtualRegister(BoolXExecRC
);
4619 Register CondReg1
= MRI
.createVirtualRegister(BoolXExecRC
);
4621 unsigned RsrcPtr
, NewSRsrc
;
4622 std::tie(RsrcPtr
, NewSRsrc
) = extractRsrcPtr(*this, MI
, *Rsrc
);
4624 // NewVaddrLo = RsrcPtr:sub0 + VAddr:sub0
4625 const DebugLoc
&DL
= MI
.getDebugLoc();
4626 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_ADD_I32_e64
), NewVAddrLo
)
4628 .addReg(RsrcPtr
, 0, AMDGPU::sub0
)
4629 .addReg(VAddr
->getReg(), 0, AMDGPU::sub0
)
4632 // NewVaddrHi = RsrcPtr:sub1 + VAddr:sub1
4633 BuildMI(MBB
, MI
, DL
, get(AMDGPU::V_ADDC_U32_e64
), NewVAddrHi
)
4634 .addDef(CondReg1
, RegState::Dead
)
4635 .addReg(RsrcPtr
, 0, AMDGPU::sub1
)
4636 .addReg(VAddr
->getReg(), 0, AMDGPU::sub1
)
4637 .addReg(CondReg0
, RegState::Kill
)
4640 // NewVaddr = {NewVaddrHi, NewVaddrLo}
4641 BuildMI(MBB
, MI
, MI
.getDebugLoc(), get(AMDGPU::REG_SEQUENCE
), NewVAddr
)
4643 .addImm(AMDGPU::sub0
)
4645 .addImm(AMDGPU::sub1
);
4647 VAddr
->setReg(NewVAddr
);
4648 Rsrc
->setReg(NewSRsrc
);
4649 } else if (!VAddr
&& ST
.hasAddr64()) {
4650 // This instructions is the _OFFSET variant, so we need to convert it to
4652 assert(MBB
.getParent()->getSubtarget
<GCNSubtarget
>().getGeneration()
4653 < AMDGPUSubtarget::VOLCANIC_ISLANDS
&&
4654 "FIXME: Need to emit flat atomics here");
4656 unsigned RsrcPtr
, NewSRsrc
;
4657 std::tie(RsrcPtr
, NewSRsrc
) = extractRsrcPtr(*this, MI
, *Rsrc
);
4659 Register NewVAddr
= MRI
.createVirtualRegister(&AMDGPU::VReg_64RegClass
);
4660 MachineOperand
*VData
= getNamedOperand(MI
, AMDGPU::OpName::vdata
);
4661 MachineOperand
*Offset
= getNamedOperand(MI
, AMDGPU::OpName::offset
);
4662 MachineOperand
*SOffset
= getNamedOperand(MI
, AMDGPU::OpName::soffset
);
4663 unsigned Addr64Opcode
= AMDGPU::getAddr64Inst(MI
.getOpcode());
4665 // Atomics rith return have have an additional tied operand and are
4666 // missing some of the special bits.
4667 MachineOperand
*VDataIn
= getNamedOperand(MI
, AMDGPU::OpName::vdata_in
);
4668 MachineInstr
*Addr64
;
4671 // Regular buffer load / store.
4672 MachineInstrBuilder MIB
=
4673 BuildMI(MBB
, MI
, MI
.getDebugLoc(), get(Addr64Opcode
))
4680 // Atomics do not have this operand.
4681 if (const MachineOperand
*GLC
=
4682 getNamedOperand(MI
, AMDGPU::OpName::glc
)) {
4683 MIB
.addImm(GLC
->getImm());
4685 if (const MachineOperand
*DLC
=
4686 getNamedOperand(MI
, AMDGPU::OpName::dlc
)) {
4687 MIB
.addImm(DLC
->getImm());
4690 MIB
.addImm(getNamedImmOperand(MI
, AMDGPU::OpName::slc
));
4692 if (const MachineOperand
*TFE
=
4693 getNamedOperand(MI
, AMDGPU::OpName::tfe
)) {
4694 MIB
.addImm(TFE
->getImm());
4697 MIB
.addImm(getNamedImmOperand(MI
, AMDGPU::OpName::swz
));
4699 MIB
.cloneMemRefs(MI
);
4702 // Atomics with return.
4703 Addr64
= BuildMI(MBB
, MI
, MI
.getDebugLoc(), get(Addr64Opcode
))
4710 .addImm(getNamedImmOperand(MI
, AMDGPU::OpName::slc
))
4714 MI
.removeFromParent();
4716 // NewVaddr = {NewVaddrHi, NewVaddrLo}
4717 BuildMI(MBB
, Addr64
, Addr64
->getDebugLoc(), get(AMDGPU::REG_SEQUENCE
),
4719 .addReg(RsrcPtr
, 0, AMDGPU::sub0
)
4720 .addImm(AMDGPU::sub0
)
4721 .addReg(RsrcPtr
, 0, AMDGPU::sub1
)
4722 .addImm(AMDGPU::sub1
);
4724 // This is another variant; legalize Rsrc with waterfall loop from VGPRs
4726 loadSRsrcFromVGPR(*this, MI
, *Rsrc
, MDT
);
4731 void SIInstrInfo::moveToVALU(MachineInstr
&TopInst
,
4732 MachineDominatorTree
*MDT
) const {
4733 SetVectorType Worklist
;
4734 Worklist
.insert(&TopInst
);
4736 while (!Worklist
.empty()) {
4737 MachineInstr
&Inst
= *Worklist
.pop_back_val();
4738 MachineBasicBlock
*MBB
= Inst
.getParent();
4739 MachineRegisterInfo
&MRI
= MBB
->getParent()->getRegInfo();
4741 unsigned Opcode
= Inst
.getOpcode();
4742 unsigned NewOpcode
= getVALUOp(Inst
);
4744 // Handle some special cases
4748 case AMDGPU::S_ADD_U64_PSEUDO
:
4749 case AMDGPU::S_SUB_U64_PSEUDO
:
4750 splitScalar64BitAddSub(Worklist
, Inst
, MDT
);
4751 Inst
.eraseFromParent();
4753 case AMDGPU::S_ADD_I32
:
4754 case AMDGPU::S_SUB_I32
:
4755 // FIXME: The u32 versions currently selected use the carry.
4756 if (moveScalarAddSub(Worklist
, Inst
, MDT
))
4761 case AMDGPU::S_AND_B64
:
4762 splitScalar64BitBinaryOp(Worklist
, Inst
, AMDGPU::S_AND_B32
, MDT
);
4763 Inst
.eraseFromParent();
4766 case AMDGPU::S_OR_B64
:
4767 splitScalar64BitBinaryOp(Worklist
, Inst
, AMDGPU::S_OR_B32
, MDT
);
4768 Inst
.eraseFromParent();
4771 case AMDGPU::S_XOR_B64
:
4772 splitScalar64BitBinaryOp(Worklist
, Inst
, AMDGPU::S_XOR_B32
, MDT
);
4773 Inst
.eraseFromParent();
4776 case AMDGPU::S_NAND_B64
:
4777 splitScalar64BitBinaryOp(Worklist
, Inst
, AMDGPU::S_NAND_B32
, MDT
);
4778 Inst
.eraseFromParent();
4781 case AMDGPU::S_NOR_B64
:
4782 splitScalar64BitBinaryOp(Worklist
, Inst
, AMDGPU::S_NOR_B32
, MDT
);
4783 Inst
.eraseFromParent();
4786 case AMDGPU::S_XNOR_B64
:
4787 if (ST
.hasDLInsts())
4788 splitScalar64BitBinaryOp(Worklist
, Inst
, AMDGPU::S_XNOR_B32
, MDT
);
4790 splitScalar64BitXnor(Worklist
, Inst
, MDT
);
4791 Inst
.eraseFromParent();
4794 case AMDGPU::S_ANDN2_B64
:
4795 splitScalar64BitBinaryOp(Worklist
, Inst
, AMDGPU::S_ANDN2_B32
, MDT
);
4796 Inst
.eraseFromParent();
4799 case AMDGPU::S_ORN2_B64
:
4800 splitScalar64BitBinaryOp(Worklist
, Inst
, AMDGPU::S_ORN2_B32
, MDT
);
4801 Inst
.eraseFromParent();
4804 case AMDGPU::S_NOT_B64
:
4805 splitScalar64BitUnaryOp(Worklist
, Inst
, AMDGPU::S_NOT_B32
);
4806 Inst
.eraseFromParent();
4809 case AMDGPU::S_BCNT1_I32_B64
:
4810 splitScalar64BitBCNT(Worklist
, Inst
);
4811 Inst
.eraseFromParent();
4814 case AMDGPU::S_BFE_I64
:
4815 splitScalar64BitBFE(Worklist
, Inst
);
4816 Inst
.eraseFromParent();
4819 case AMDGPU::S_LSHL_B32
:
4820 if (ST
.hasOnlyRevVALUShifts()) {
4821 NewOpcode
= AMDGPU::V_LSHLREV_B32_e64
;
4825 case AMDGPU::S_ASHR_I32
:
4826 if (ST
.hasOnlyRevVALUShifts()) {
4827 NewOpcode
= AMDGPU::V_ASHRREV_I32_e64
;
4831 case AMDGPU::S_LSHR_B32
:
4832 if (ST
.hasOnlyRevVALUShifts()) {
4833 NewOpcode
= AMDGPU::V_LSHRREV_B32_e64
;
4837 case AMDGPU::S_LSHL_B64
:
4838 if (ST
.hasOnlyRevVALUShifts()) {
4839 NewOpcode
= AMDGPU::V_LSHLREV_B64
;
4843 case AMDGPU::S_ASHR_I64
:
4844 if (ST
.hasOnlyRevVALUShifts()) {
4845 NewOpcode
= AMDGPU::V_ASHRREV_I64
;
4849 case AMDGPU::S_LSHR_B64
:
4850 if (ST
.hasOnlyRevVALUShifts()) {
4851 NewOpcode
= AMDGPU::V_LSHRREV_B64
;
4856 case AMDGPU::S_ABS_I32
:
4857 lowerScalarAbs(Worklist
, Inst
);
4858 Inst
.eraseFromParent();
4861 case AMDGPU::S_CBRANCH_SCC0
:
4862 case AMDGPU::S_CBRANCH_SCC1
:
4863 // Clear unused bits of vcc
4865 BuildMI(*MBB
, Inst
, Inst
.getDebugLoc(), get(AMDGPU::S_AND_B32
),
4867 .addReg(AMDGPU::EXEC_LO
)
4868 .addReg(AMDGPU::VCC_LO
);
4870 BuildMI(*MBB
, Inst
, Inst
.getDebugLoc(), get(AMDGPU::S_AND_B64
),
4872 .addReg(AMDGPU::EXEC
)
4873 .addReg(AMDGPU::VCC
);
4876 case AMDGPU::S_BFE_U64
:
4877 case AMDGPU::S_BFM_B64
:
4878 llvm_unreachable("Moving this op to VALU not implemented");
4880 case AMDGPU::S_PACK_LL_B32_B16
:
4881 case AMDGPU::S_PACK_LH_B32_B16
:
4882 case AMDGPU::S_PACK_HH_B32_B16
:
4883 movePackToVALU(Worklist
, MRI
, Inst
);
4884 Inst
.eraseFromParent();
4887 case AMDGPU::S_XNOR_B32
:
4888 lowerScalarXnor(Worklist
, Inst
);
4889 Inst
.eraseFromParent();
4892 case AMDGPU::S_NAND_B32
:
4893 splitScalarNotBinop(Worklist
, Inst
, AMDGPU::S_AND_B32
);
4894 Inst
.eraseFromParent();
4897 case AMDGPU::S_NOR_B32
:
4898 splitScalarNotBinop(Worklist
, Inst
, AMDGPU::S_OR_B32
);
4899 Inst
.eraseFromParent();
4902 case AMDGPU::S_ANDN2_B32
:
4903 splitScalarBinOpN2(Worklist
, Inst
, AMDGPU::S_AND_B32
);
4904 Inst
.eraseFromParent();
4907 case AMDGPU::S_ORN2_B32
:
4908 splitScalarBinOpN2(Worklist
, Inst
, AMDGPU::S_OR_B32
);
4909 Inst
.eraseFromParent();
4913 if (NewOpcode
== AMDGPU::INSTRUCTION_LIST_END
) {
4914 // We cannot move this instruction to the VALU, so we should try to
4915 // legalize its operands instead.
4916 legalizeOperands(Inst
, MDT
);
4920 // Use the new VALU Opcode.
4921 const MCInstrDesc
&NewDesc
= get(NewOpcode
);
4922 Inst
.setDesc(NewDesc
);
4924 // Remove any references to SCC. Vector instructions can't read from it, and
4925 // We're just about to add the implicit use / defs of VCC, and we don't want
4927 for (unsigned i
= Inst
.getNumOperands() - 1; i
> 0; --i
) {
4928 MachineOperand
&Op
= Inst
.getOperand(i
);
4929 if (Op
.isReg() && Op
.getReg() == AMDGPU::SCC
) {
4930 // Only propagate through live-def of SCC.
4931 if (Op
.isDef() && !Op
.isDead())
4932 addSCCDefUsersToVALUWorklist(Op
, Inst
, Worklist
);
4933 Inst
.RemoveOperand(i
);
4937 if (Opcode
== AMDGPU::S_SEXT_I32_I8
|| Opcode
== AMDGPU::S_SEXT_I32_I16
) {
4938 // We are converting these to a BFE, so we need to add the missing
4939 // operands for the size and offset.
4940 unsigned Size
= (Opcode
== AMDGPU::S_SEXT_I32_I8
) ? 8 : 16;
4941 Inst
.addOperand(MachineOperand::CreateImm(0));
4942 Inst
.addOperand(MachineOperand::CreateImm(Size
));
4944 } else if (Opcode
== AMDGPU::S_BCNT1_I32_B32
) {
4945 // The VALU version adds the second operand to the result, so insert an
4947 Inst
.addOperand(MachineOperand::CreateImm(0));
4950 Inst
.addImplicitDefUseOperands(*Inst
.getParent()->getParent());
4951 fixImplicitOperands(Inst
);
4953 if (Opcode
== AMDGPU::S_BFE_I32
|| Opcode
== AMDGPU::S_BFE_U32
) {
4954 const MachineOperand
&OffsetWidthOp
= Inst
.getOperand(2);
4955 // If we need to move this to VGPRs, we need to unpack the second operand
4956 // back into the 2 separate ones for bit offset and width.
4957 assert(OffsetWidthOp
.isImm() &&
4958 "Scalar BFE is only implemented for constant width and offset");
4959 uint32_t Imm
= OffsetWidthOp
.getImm();
4961 uint32_t Offset
= Imm
& 0x3f; // Extract bits [5:0].
4962 uint32_t BitWidth
= (Imm
& 0x7f0000) >> 16; // Extract bits [22:16].
4963 Inst
.RemoveOperand(2); // Remove old immediate.
4964 Inst
.addOperand(MachineOperand::CreateImm(Offset
));
4965 Inst
.addOperand(MachineOperand::CreateImm(BitWidth
));
4968 bool HasDst
= Inst
.getOperand(0).isReg() && Inst
.getOperand(0).isDef();
4969 unsigned NewDstReg
= AMDGPU::NoRegister
;
4971 Register DstReg
= Inst
.getOperand(0).getReg();
4972 if (Register::isPhysicalRegister(DstReg
))
4975 // Update the destination register class.
4976 const TargetRegisterClass
*NewDstRC
= getDestEquivalentVGPRClass(Inst
);
4980 if (Inst
.isCopy() &&
4981 Register::isVirtualRegister(Inst
.getOperand(1).getReg()) &&
4982 NewDstRC
== RI
.getRegClassForReg(MRI
, Inst
.getOperand(1).getReg())) {
4983 // Instead of creating a copy where src and dst are the same register
4984 // class, we just replace all uses of dst with src. These kinds of
4985 // copies interfere with the heuristics MachineSink uses to decide
4986 // whether or not to split a critical edge. Since the pass assumes
4987 // that copies will end up as machine instructions and not be
4989 addUsersToMoveToVALUWorklist(DstReg
, MRI
, Worklist
);
4990 MRI
.replaceRegWith(DstReg
, Inst
.getOperand(1).getReg());
4991 MRI
.clearKillFlags(Inst
.getOperand(1).getReg());
4992 Inst
.getOperand(0).setReg(DstReg
);
4994 // Make sure we don't leave around a dead VGPR->SGPR copy. Normally
4995 // these are deleted later, but at -O0 it would leave a suspicious
4996 // looking illegal copy of an undef register.
4997 for (unsigned I
= Inst
.getNumOperands() - 1; I
!= 0; --I
)
4998 Inst
.RemoveOperand(I
);
4999 Inst
.setDesc(get(AMDGPU::IMPLICIT_DEF
));
5003 NewDstReg
= MRI
.createVirtualRegister(NewDstRC
);
5004 MRI
.replaceRegWith(DstReg
, NewDstReg
);
5007 // Legalize the operands
5008 legalizeOperands(Inst
, MDT
);
5011 addUsersToMoveToVALUWorklist(NewDstReg
, MRI
, Worklist
);
5015 // Add/sub require special handling to deal with carry outs.
5016 bool SIInstrInfo::moveScalarAddSub(SetVectorType
&Worklist
, MachineInstr
&Inst
,
5017 MachineDominatorTree
*MDT
) const {
5018 if (ST
.hasAddNoCarry()) {
5019 // Assume there is no user of scc since we don't select this in that case.
5020 // Since scc isn't used, it doesn't really matter if the i32 or u32 variant
5023 MachineBasicBlock
&MBB
= *Inst
.getParent();
5024 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5026 Register OldDstReg
= Inst
.getOperand(0).getReg();
5027 Register ResultReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5029 unsigned Opc
= Inst
.getOpcode();
5030 assert(Opc
== AMDGPU::S_ADD_I32
|| Opc
== AMDGPU::S_SUB_I32
);
5032 unsigned NewOpc
= Opc
== AMDGPU::S_ADD_I32
?
5033 AMDGPU::V_ADD_U32_e64
: AMDGPU::V_SUB_U32_e64
;
5035 assert(Inst
.getOperand(3).getReg() == AMDGPU::SCC
);
5036 Inst
.RemoveOperand(3);
5038 Inst
.setDesc(get(NewOpc
));
5039 Inst
.addOperand(MachineOperand::CreateImm(0)); // clamp bit
5040 Inst
.addImplicitDefUseOperands(*MBB
.getParent());
5041 MRI
.replaceRegWith(OldDstReg
, ResultReg
);
5042 legalizeOperands(Inst
, MDT
);
5044 addUsersToMoveToVALUWorklist(ResultReg
, MRI
, Worklist
);
5051 void SIInstrInfo::lowerScalarAbs(SetVectorType
&Worklist
,
5052 MachineInstr
&Inst
) const {
5053 MachineBasicBlock
&MBB
= *Inst
.getParent();
5054 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5055 MachineBasicBlock::iterator MII
= Inst
;
5056 DebugLoc DL
= Inst
.getDebugLoc();
5058 MachineOperand
&Dest
= Inst
.getOperand(0);
5059 MachineOperand
&Src
= Inst
.getOperand(1);
5060 Register TmpReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5061 Register ResultReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5063 unsigned SubOp
= ST
.hasAddNoCarry() ?
5064 AMDGPU::V_SUB_U32_e32
: AMDGPU::V_SUB_I32_e32
;
5066 BuildMI(MBB
, MII
, DL
, get(SubOp
), TmpReg
)
5068 .addReg(Src
.getReg());
5070 BuildMI(MBB
, MII
, DL
, get(AMDGPU::V_MAX_I32_e64
), ResultReg
)
5071 .addReg(Src
.getReg())
5074 MRI
.replaceRegWith(Dest
.getReg(), ResultReg
);
5075 addUsersToMoveToVALUWorklist(ResultReg
, MRI
, Worklist
);
5078 void SIInstrInfo::lowerScalarXnor(SetVectorType
&Worklist
,
5079 MachineInstr
&Inst
) const {
5080 MachineBasicBlock
&MBB
= *Inst
.getParent();
5081 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5082 MachineBasicBlock::iterator MII
= Inst
;
5083 const DebugLoc
&DL
= Inst
.getDebugLoc();
5085 MachineOperand
&Dest
= Inst
.getOperand(0);
5086 MachineOperand
&Src0
= Inst
.getOperand(1);
5087 MachineOperand
&Src1
= Inst
.getOperand(2);
5089 if (ST
.hasDLInsts()) {
5090 Register NewDest
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5091 legalizeGenericOperand(MBB
, MII
, &AMDGPU::VGPR_32RegClass
, Src0
, MRI
, DL
);
5092 legalizeGenericOperand(MBB
, MII
, &AMDGPU::VGPR_32RegClass
, Src1
, MRI
, DL
);
5094 BuildMI(MBB
, MII
, DL
, get(AMDGPU::V_XNOR_B32_e64
), NewDest
)
5098 MRI
.replaceRegWith(Dest
.getReg(), NewDest
);
5099 addUsersToMoveToVALUWorklist(NewDest
, MRI
, Worklist
);
5101 // Using the identity !(x ^ y) == (!x ^ y) == (x ^ !y), we can
5102 // invert either source and then perform the XOR. If either source is a
5103 // scalar register, then we can leave the inversion on the scalar unit to
5104 // acheive a better distrubution of scalar and vector instructions.
5105 bool Src0IsSGPR
= Src0
.isReg() &&
5106 RI
.isSGPRClass(MRI
.getRegClass(Src0
.getReg()));
5107 bool Src1IsSGPR
= Src1
.isReg() &&
5108 RI
.isSGPRClass(MRI
.getRegClass(Src1
.getReg()));
5110 Register Temp
= MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
5111 Register NewDest
= MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
5113 // Build a pair of scalar instructions and add them to the work list.
5114 // The next iteration over the work list will lower these to the vector
5115 // unit as necessary.
5117 BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_NOT_B32
), Temp
).add(Src0
);
5118 Xor
= BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_XOR_B32
), NewDest
)
5121 } else if (Src1IsSGPR
) {
5122 BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_NOT_B32
), Temp
).add(Src1
);
5123 Xor
= BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_XOR_B32
), NewDest
)
5127 Xor
= BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_XOR_B32
), Temp
)
5131 BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_NOT_B32
), NewDest
).addReg(Temp
);
5132 Worklist
.insert(Not
);
5135 MRI
.replaceRegWith(Dest
.getReg(), NewDest
);
5137 Worklist
.insert(Xor
);
5139 addUsersToMoveToVALUWorklist(NewDest
, MRI
, Worklist
);
5143 void SIInstrInfo::splitScalarNotBinop(SetVectorType
&Worklist
,
5145 unsigned Opcode
) const {
5146 MachineBasicBlock
&MBB
= *Inst
.getParent();
5147 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5148 MachineBasicBlock::iterator MII
= Inst
;
5149 const DebugLoc
&DL
= Inst
.getDebugLoc();
5151 MachineOperand
&Dest
= Inst
.getOperand(0);
5152 MachineOperand
&Src0
= Inst
.getOperand(1);
5153 MachineOperand
&Src1
= Inst
.getOperand(2);
5155 Register NewDest
= MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
5156 Register Interm
= MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
5158 MachineInstr
&Op
= *BuildMI(MBB
, MII
, DL
, get(Opcode
), Interm
)
5162 MachineInstr
&Not
= *BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_NOT_B32
), NewDest
)
5165 Worklist
.insert(&Op
);
5166 Worklist
.insert(&Not
);
5168 MRI
.replaceRegWith(Dest
.getReg(), NewDest
);
5169 addUsersToMoveToVALUWorklist(NewDest
, MRI
, Worklist
);
5172 void SIInstrInfo::splitScalarBinOpN2(SetVectorType
& Worklist
,
5174 unsigned Opcode
) const {
5175 MachineBasicBlock
&MBB
= *Inst
.getParent();
5176 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5177 MachineBasicBlock::iterator MII
= Inst
;
5178 const DebugLoc
&DL
= Inst
.getDebugLoc();
5180 MachineOperand
&Dest
= Inst
.getOperand(0);
5181 MachineOperand
&Src0
= Inst
.getOperand(1);
5182 MachineOperand
&Src1
= Inst
.getOperand(2);
5184 Register NewDest
= MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
5185 Register Interm
= MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
5187 MachineInstr
&Not
= *BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_NOT_B32
), Interm
)
5190 MachineInstr
&Op
= *BuildMI(MBB
, MII
, DL
, get(Opcode
), NewDest
)
5194 Worklist
.insert(&Not
);
5195 Worklist
.insert(&Op
);
5197 MRI
.replaceRegWith(Dest
.getReg(), NewDest
);
5198 addUsersToMoveToVALUWorklist(NewDest
, MRI
, Worklist
);
5201 void SIInstrInfo::splitScalar64BitUnaryOp(
5202 SetVectorType
&Worklist
, MachineInstr
&Inst
,
5203 unsigned Opcode
) const {
5204 MachineBasicBlock
&MBB
= *Inst
.getParent();
5205 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5207 MachineOperand
&Dest
= Inst
.getOperand(0);
5208 MachineOperand
&Src0
= Inst
.getOperand(1);
5209 DebugLoc DL
= Inst
.getDebugLoc();
5211 MachineBasicBlock::iterator MII
= Inst
;
5213 const MCInstrDesc
&InstDesc
= get(Opcode
);
5214 const TargetRegisterClass
*Src0RC
= Src0
.isReg() ?
5215 MRI
.getRegClass(Src0
.getReg()) :
5216 &AMDGPU::SGPR_32RegClass
;
5218 const TargetRegisterClass
*Src0SubRC
= RI
.getSubRegClass(Src0RC
, AMDGPU::sub0
);
5220 MachineOperand SrcReg0Sub0
= buildExtractSubRegOrImm(MII
, MRI
, Src0
, Src0RC
,
5221 AMDGPU::sub0
, Src0SubRC
);
5223 const TargetRegisterClass
*DestRC
= MRI
.getRegClass(Dest
.getReg());
5224 const TargetRegisterClass
*NewDestRC
= RI
.getEquivalentVGPRClass(DestRC
);
5225 const TargetRegisterClass
*NewDestSubRC
= RI
.getSubRegClass(NewDestRC
, AMDGPU::sub0
);
5227 Register DestSub0
= MRI
.createVirtualRegister(NewDestSubRC
);
5228 MachineInstr
&LoHalf
= *BuildMI(MBB
, MII
, DL
, InstDesc
, DestSub0
).add(SrcReg0Sub0
);
5230 MachineOperand SrcReg0Sub1
= buildExtractSubRegOrImm(MII
, MRI
, Src0
, Src0RC
,
5231 AMDGPU::sub1
, Src0SubRC
);
5233 Register DestSub1
= MRI
.createVirtualRegister(NewDestSubRC
);
5234 MachineInstr
&HiHalf
= *BuildMI(MBB
, MII
, DL
, InstDesc
, DestSub1
).add(SrcReg0Sub1
);
5236 Register FullDestReg
= MRI
.createVirtualRegister(NewDestRC
);
5237 BuildMI(MBB
, MII
, DL
, get(TargetOpcode::REG_SEQUENCE
), FullDestReg
)
5239 .addImm(AMDGPU::sub0
)
5241 .addImm(AMDGPU::sub1
);
5243 MRI
.replaceRegWith(Dest
.getReg(), FullDestReg
);
5245 Worklist
.insert(&LoHalf
);
5246 Worklist
.insert(&HiHalf
);
5248 // We don't need to legalizeOperands here because for a single operand, src0
5249 // will support any kind of input.
5251 // Move all users of this moved value.
5252 addUsersToMoveToVALUWorklist(FullDestReg
, MRI
, Worklist
);
5255 void SIInstrInfo::splitScalar64BitAddSub(SetVectorType
&Worklist
,
5257 MachineDominatorTree
*MDT
) const {
5258 bool IsAdd
= (Inst
.getOpcode() == AMDGPU::S_ADD_U64_PSEUDO
);
5260 MachineBasicBlock
&MBB
= *Inst
.getParent();
5261 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5262 const auto *CarryRC
= RI
.getRegClass(AMDGPU::SReg_1_XEXECRegClassID
);
5264 Register FullDestReg
= MRI
.createVirtualRegister(&AMDGPU::VReg_64RegClass
);
5265 Register DestSub0
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5266 Register DestSub1
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5268 Register CarryReg
= MRI
.createVirtualRegister(CarryRC
);
5269 Register DeadCarryReg
= MRI
.createVirtualRegister(CarryRC
);
5271 MachineOperand
&Dest
= Inst
.getOperand(0);
5272 MachineOperand
&Src0
= Inst
.getOperand(1);
5273 MachineOperand
&Src1
= Inst
.getOperand(2);
5274 const DebugLoc
&DL
= Inst
.getDebugLoc();
5275 MachineBasicBlock::iterator MII
= Inst
;
5277 const TargetRegisterClass
*Src0RC
= MRI
.getRegClass(Src0
.getReg());
5278 const TargetRegisterClass
*Src1RC
= MRI
.getRegClass(Src1
.getReg());
5279 const TargetRegisterClass
*Src0SubRC
= RI
.getSubRegClass(Src0RC
, AMDGPU::sub0
);
5280 const TargetRegisterClass
*Src1SubRC
= RI
.getSubRegClass(Src1RC
, AMDGPU::sub0
);
5282 MachineOperand SrcReg0Sub0
= buildExtractSubRegOrImm(MII
, MRI
, Src0
, Src0RC
,
5283 AMDGPU::sub0
, Src0SubRC
);
5284 MachineOperand SrcReg1Sub0
= buildExtractSubRegOrImm(MII
, MRI
, Src1
, Src1RC
,
5285 AMDGPU::sub0
, Src1SubRC
);
5288 MachineOperand SrcReg0Sub1
= buildExtractSubRegOrImm(MII
, MRI
, Src0
, Src0RC
,
5289 AMDGPU::sub1
, Src0SubRC
);
5290 MachineOperand SrcReg1Sub1
= buildExtractSubRegOrImm(MII
, MRI
, Src1
, Src1RC
,
5291 AMDGPU::sub1
, Src1SubRC
);
5293 unsigned LoOpc
= IsAdd
? AMDGPU::V_ADD_I32_e64
: AMDGPU::V_SUB_I32_e64
;
5294 MachineInstr
*LoHalf
=
5295 BuildMI(MBB
, MII
, DL
, get(LoOpc
), DestSub0
)
5296 .addReg(CarryReg
, RegState::Define
)
5299 .addImm(0); // clamp bit
5301 unsigned HiOpc
= IsAdd
? AMDGPU::V_ADDC_U32_e64
: AMDGPU::V_SUBB_U32_e64
;
5302 MachineInstr
*HiHalf
=
5303 BuildMI(MBB
, MII
, DL
, get(HiOpc
), DestSub1
)
5304 .addReg(DeadCarryReg
, RegState::Define
| RegState::Dead
)
5307 .addReg(CarryReg
, RegState::Kill
)
5308 .addImm(0); // clamp bit
5310 BuildMI(MBB
, MII
, DL
, get(TargetOpcode::REG_SEQUENCE
), FullDestReg
)
5312 .addImm(AMDGPU::sub0
)
5314 .addImm(AMDGPU::sub1
);
5316 MRI
.replaceRegWith(Dest
.getReg(), FullDestReg
);
5318 // Try to legalize the operands in case we need to swap the order to keep it
5320 legalizeOperands(*LoHalf
, MDT
);
5321 legalizeOperands(*HiHalf
, MDT
);
5323 // Move all users of this moved vlaue.
5324 addUsersToMoveToVALUWorklist(FullDestReg
, MRI
, Worklist
);
5327 void SIInstrInfo::splitScalar64BitBinaryOp(SetVectorType
&Worklist
,
5328 MachineInstr
&Inst
, unsigned Opcode
,
5329 MachineDominatorTree
*MDT
) const {
5330 MachineBasicBlock
&MBB
= *Inst
.getParent();
5331 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5333 MachineOperand
&Dest
= Inst
.getOperand(0);
5334 MachineOperand
&Src0
= Inst
.getOperand(1);
5335 MachineOperand
&Src1
= Inst
.getOperand(2);
5336 DebugLoc DL
= Inst
.getDebugLoc();
5338 MachineBasicBlock::iterator MII
= Inst
;
5340 const MCInstrDesc
&InstDesc
= get(Opcode
);
5341 const TargetRegisterClass
*Src0RC
= Src0
.isReg() ?
5342 MRI
.getRegClass(Src0
.getReg()) :
5343 &AMDGPU::SGPR_32RegClass
;
5345 const TargetRegisterClass
*Src0SubRC
= RI
.getSubRegClass(Src0RC
, AMDGPU::sub0
);
5346 const TargetRegisterClass
*Src1RC
= Src1
.isReg() ?
5347 MRI
.getRegClass(Src1
.getReg()) :
5348 &AMDGPU::SGPR_32RegClass
;
5350 const TargetRegisterClass
*Src1SubRC
= RI
.getSubRegClass(Src1RC
, AMDGPU::sub0
);
5352 MachineOperand SrcReg0Sub0
= buildExtractSubRegOrImm(MII
, MRI
, Src0
, Src0RC
,
5353 AMDGPU::sub0
, Src0SubRC
);
5354 MachineOperand SrcReg1Sub0
= buildExtractSubRegOrImm(MII
, MRI
, Src1
, Src1RC
,
5355 AMDGPU::sub0
, Src1SubRC
);
5356 MachineOperand SrcReg0Sub1
= buildExtractSubRegOrImm(MII
, MRI
, Src0
, Src0RC
,
5357 AMDGPU::sub1
, Src0SubRC
);
5358 MachineOperand SrcReg1Sub1
= buildExtractSubRegOrImm(MII
, MRI
, Src1
, Src1RC
,
5359 AMDGPU::sub1
, Src1SubRC
);
5361 const TargetRegisterClass
*DestRC
= MRI
.getRegClass(Dest
.getReg());
5362 const TargetRegisterClass
*NewDestRC
= RI
.getEquivalentVGPRClass(DestRC
);
5363 const TargetRegisterClass
*NewDestSubRC
= RI
.getSubRegClass(NewDestRC
, AMDGPU::sub0
);
5365 Register DestSub0
= MRI
.createVirtualRegister(NewDestSubRC
);
5366 MachineInstr
&LoHalf
= *BuildMI(MBB
, MII
, DL
, InstDesc
, DestSub0
)
5370 Register DestSub1
= MRI
.createVirtualRegister(NewDestSubRC
);
5371 MachineInstr
&HiHalf
= *BuildMI(MBB
, MII
, DL
, InstDesc
, DestSub1
)
5375 Register FullDestReg
= MRI
.createVirtualRegister(NewDestRC
);
5376 BuildMI(MBB
, MII
, DL
, get(TargetOpcode::REG_SEQUENCE
), FullDestReg
)
5378 .addImm(AMDGPU::sub0
)
5380 .addImm(AMDGPU::sub1
);
5382 MRI
.replaceRegWith(Dest
.getReg(), FullDestReg
);
5384 Worklist
.insert(&LoHalf
);
5385 Worklist
.insert(&HiHalf
);
5387 // Move all users of this moved vlaue.
5388 addUsersToMoveToVALUWorklist(FullDestReg
, MRI
, Worklist
);
5391 void SIInstrInfo::splitScalar64BitXnor(SetVectorType
&Worklist
,
5393 MachineDominatorTree
*MDT
) const {
5394 MachineBasicBlock
&MBB
= *Inst
.getParent();
5395 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5397 MachineOperand
&Dest
= Inst
.getOperand(0);
5398 MachineOperand
&Src0
= Inst
.getOperand(1);
5399 MachineOperand
&Src1
= Inst
.getOperand(2);
5400 const DebugLoc
&DL
= Inst
.getDebugLoc();
5402 MachineBasicBlock::iterator MII
= Inst
;
5404 const TargetRegisterClass
*DestRC
= MRI
.getRegClass(Dest
.getReg());
5406 Register Interm
= MRI
.createVirtualRegister(&AMDGPU::SReg_64RegClass
);
5408 MachineOperand
* Op0
;
5409 MachineOperand
* Op1
;
5411 if (Src0
.isReg() && RI
.isSGPRReg(MRI
, Src0
.getReg())) {
5419 BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_NOT_B64
), Interm
)
5422 Register NewDest
= MRI
.createVirtualRegister(DestRC
);
5424 MachineInstr
&Xor
= *BuildMI(MBB
, MII
, DL
, get(AMDGPU::S_XOR_B64
), NewDest
)
5428 MRI
.replaceRegWith(Dest
.getReg(), NewDest
);
5430 Worklist
.insert(&Xor
);
5433 void SIInstrInfo::splitScalar64BitBCNT(
5434 SetVectorType
&Worklist
, MachineInstr
&Inst
) const {
5435 MachineBasicBlock
&MBB
= *Inst
.getParent();
5436 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5438 MachineBasicBlock::iterator MII
= Inst
;
5439 const DebugLoc
&DL
= Inst
.getDebugLoc();
5441 MachineOperand
&Dest
= Inst
.getOperand(0);
5442 MachineOperand
&Src
= Inst
.getOperand(1);
5444 const MCInstrDesc
&InstDesc
= get(AMDGPU::V_BCNT_U32_B32_e64
);
5445 const TargetRegisterClass
*SrcRC
= Src
.isReg() ?
5446 MRI
.getRegClass(Src
.getReg()) :
5447 &AMDGPU::SGPR_32RegClass
;
5449 Register MidReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5450 Register ResultReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5452 const TargetRegisterClass
*SrcSubRC
= RI
.getSubRegClass(SrcRC
, AMDGPU::sub0
);
5454 MachineOperand SrcRegSub0
= buildExtractSubRegOrImm(MII
, MRI
, Src
, SrcRC
,
5455 AMDGPU::sub0
, SrcSubRC
);
5456 MachineOperand SrcRegSub1
= buildExtractSubRegOrImm(MII
, MRI
, Src
, SrcRC
,
5457 AMDGPU::sub1
, SrcSubRC
);
5459 BuildMI(MBB
, MII
, DL
, InstDesc
, MidReg
).add(SrcRegSub0
).addImm(0);
5461 BuildMI(MBB
, MII
, DL
, InstDesc
, ResultReg
).add(SrcRegSub1
).addReg(MidReg
);
5463 MRI
.replaceRegWith(Dest
.getReg(), ResultReg
);
5465 // We don't need to legalize operands here. src0 for etiher instruction can be
5466 // an SGPR, and the second input is unused or determined here.
5467 addUsersToMoveToVALUWorklist(ResultReg
, MRI
, Worklist
);
5470 void SIInstrInfo::splitScalar64BitBFE(SetVectorType
&Worklist
,
5471 MachineInstr
&Inst
) const {
5472 MachineBasicBlock
&MBB
= *Inst
.getParent();
5473 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
5474 MachineBasicBlock::iterator MII
= Inst
;
5475 const DebugLoc
&DL
= Inst
.getDebugLoc();
5477 MachineOperand
&Dest
= Inst
.getOperand(0);
5478 uint32_t Imm
= Inst
.getOperand(2).getImm();
5479 uint32_t Offset
= Imm
& 0x3f; // Extract bits [5:0].
5480 uint32_t BitWidth
= (Imm
& 0x7f0000) >> 16; // Extract bits [22:16].
5484 // Only sext_inreg cases handled.
5485 assert(Inst
.getOpcode() == AMDGPU::S_BFE_I64
&& BitWidth
<= 32 &&
5486 Offset
== 0 && "Not implemented");
5488 if (BitWidth
< 32) {
5489 Register MidRegLo
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5490 Register MidRegHi
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5491 Register ResultReg
= MRI
.createVirtualRegister(&AMDGPU::VReg_64RegClass
);
5493 BuildMI(MBB
, MII
, DL
, get(AMDGPU::V_BFE_I32
), MidRegLo
)
5494 .addReg(Inst
.getOperand(1).getReg(), 0, AMDGPU::sub0
)
5498 BuildMI(MBB
, MII
, DL
, get(AMDGPU::V_ASHRREV_I32_e32
), MidRegHi
)
5502 BuildMI(MBB
, MII
, DL
, get(TargetOpcode::REG_SEQUENCE
), ResultReg
)
5504 .addImm(AMDGPU::sub0
)
5506 .addImm(AMDGPU::sub1
);
5508 MRI
.replaceRegWith(Dest
.getReg(), ResultReg
);
5509 addUsersToMoveToVALUWorklist(ResultReg
, MRI
, Worklist
);
5513 MachineOperand
&Src
= Inst
.getOperand(1);
5514 Register TmpReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5515 Register ResultReg
= MRI
.createVirtualRegister(&AMDGPU::VReg_64RegClass
);
5517 BuildMI(MBB
, MII
, DL
, get(AMDGPU::V_ASHRREV_I32_e64
), TmpReg
)
5519 .addReg(Src
.getReg(), 0, AMDGPU::sub0
);
5521 BuildMI(MBB
, MII
, DL
, get(TargetOpcode::REG_SEQUENCE
), ResultReg
)
5522 .addReg(Src
.getReg(), 0, AMDGPU::sub0
)
5523 .addImm(AMDGPU::sub0
)
5525 .addImm(AMDGPU::sub1
);
5527 MRI
.replaceRegWith(Dest
.getReg(), ResultReg
);
5528 addUsersToMoveToVALUWorklist(ResultReg
, MRI
, Worklist
);
5531 void SIInstrInfo::addUsersToMoveToVALUWorklist(
5533 MachineRegisterInfo
&MRI
,
5534 SetVectorType
&Worklist
) const {
5535 for (MachineRegisterInfo::use_iterator I
= MRI
.use_begin(DstReg
),
5536 E
= MRI
.use_end(); I
!= E
;) {
5537 MachineInstr
&UseMI
= *I
->getParent();
5541 switch (UseMI
.getOpcode()) {
5544 case AMDGPU::SOFT_WQM
:
5546 case AMDGPU::REG_SEQUENCE
:
5548 case AMDGPU::INSERT_SUBREG
:
5551 OpNo
= I
.getOperandNo();
5555 if (!RI
.hasVectorRegisters(getOpRegClass(UseMI
, OpNo
))) {
5556 Worklist
.insert(&UseMI
);
5560 } while (I
!= E
&& I
->getParent() == &UseMI
);
5567 void SIInstrInfo::movePackToVALU(SetVectorType
&Worklist
,
5568 MachineRegisterInfo
&MRI
,
5569 MachineInstr
&Inst
) const {
5570 Register ResultReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5571 MachineBasicBlock
*MBB
= Inst
.getParent();
5572 MachineOperand
&Src0
= Inst
.getOperand(1);
5573 MachineOperand
&Src1
= Inst
.getOperand(2);
5574 const DebugLoc
&DL
= Inst
.getDebugLoc();
5576 switch (Inst
.getOpcode()) {
5577 case AMDGPU::S_PACK_LL_B32_B16
: {
5578 Register ImmReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5579 Register TmpReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5581 // FIXME: Can do a lot better if we know the high bits of src0 or src1 are
5583 BuildMI(*MBB
, Inst
, DL
, get(AMDGPU::V_MOV_B32_e32
), ImmReg
)
5586 BuildMI(*MBB
, Inst
, DL
, get(AMDGPU::V_AND_B32_e64
), TmpReg
)
5587 .addReg(ImmReg
, RegState::Kill
)
5590 BuildMI(*MBB
, Inst
, DL
, get(AMDGPU::V_LSHL_OR_B32
), ResultReg
)
5593 .addReg(TmpReg
, RegState::Kill
);
5596 case AMDGPU::S_PACK_LH_B32_B16
: {
5597 Register ImmReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5598 BuildMI(*MBB
, Inst
, DL
, get(AMDGPU::V_MOV_B32_e32
), ImmReg
)
5600 BuildMI(*MBB
, Inst
, DL
, get(AMDGPU::V_BFI_B32
), ResultReg
)
5601 .addReg(ImmReg
, RegState::Kill
)
5606 case AMDGPU::S_PACK_HH_B32_B16
: {
5607 Register ImmReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5608 Register TmpReg
= MRI
.createVirtualRegister(&AMDGPU::VGPR_32RegClass
);
5609 BuildMI(*MBB
, Inst
, DL
, get(AMDGPU::V_LSHRREV_B32_e64
), TmpReg
)
5612 BuildMI(*MBB
, Inst
, DL
, get(AMDGPU::V_MOV_B32_e32
), ImmReg
)
5613 .addImm(0xffff0000);
5614 BuildMI(*MBB
, Inst
, DL
, get(AMDGPU::V_AND_OR_B32
), ResultReg
)
5616 .addReg(ImmReg
, RegState::Kill
)
5617 .addReg(TmpReg
, RegState::Kill
);
5621 llvm_unreachable("unhandled s_pack_* instruction");
5624 MachineOperand
&Dest
= Inst
.getOperand(0);
5625 MRI
.replaceRegWith(Dest
.getReg(), ResultReg
);
5626 addUsersToMoveToVALUWorklist(ResultReg
, MRI
, Worklist
);
5629 void SIInstrInfo::addSCCDefUsersToVALUWorklist(MachineOperand
&Op
,
5630 MachineInstr
&SCCDefInst
,
5631 SetVectorType
&Worklist
) const {
5632 // Ensure that def inst defines SCC, which is still live.
5633 assert(Op
.isReg() && Op
.getReg() == AMDGPU::SCC
&& Op
.isDef() &&
5634 !Op
.isDead() && Op
.getParent() == &SCCDefInst
);
5635 // This assumes that all the users of SCC are in the same block
5637 for (MachineInstr
&MI
: // Skip the def inst itself.
5638 make_range(std::next(MachineBasicBlock::iterator(SCCDefInst
)),
5639 SCCDefInst
.getParent()->end())) {
5640 // Check if SCC is used first.
5641 if (MI
.findRegisterUseOperandIdx(AMDGPU::SCC
, false, &RI
) != -1)
5642 Worklist
.insert(&MI
);
5643 // Exit if we find another SCC def.
5644 if (MI
.findRegisterDefOperandIdx(AMDGPU::SCC
, false, false, &RI
) != -1)
5649 const TargetRegisterClass
*SIInstrInfo::getDestEquivalentVGPRClass(
5650 const MachineInstr
&Inst
) const {
5651 const TargetRegisterClass
*NewDstRC
= getOpRegClass(Inst
, 0);
5653 switch (Inst
.getOpcode()) {
5654 // For target instructions, getOpRegClass just returns the virtual register
5655 // class associated with the operand, so we need to find an equivalent VGPR
5656 // register class in order to move the instruction to the VALU.
5659 case AMDGPU::REG_SEQUENCE
:
5660 case AMDGPU::INSERT_SUBREG
:
5662 case AMDGPU::SOFT_WQM
:
5664 const TargetRegisterClass
*SrcRC
= getOpRegClass(Inst
, 1);
5665 if (RI
.hasAGPRs(SrcRC
)) {
5666 if (RI
.hasAGPRs(NewDstRC
))
5669 switch (Inst
.getOpcode()) {
5671 case AMDGPU::REG_SEQUENCE
:
5672 case AMDGPU::INSERT_SUBREG
:
5673 NewDstRC
= RI
.getEquivalentAGPRClass(NewDstRC
);
5676 NewDstRC
= RI
.getEquivalentVGPRClass(NewDstRC
);
5682 if (RI
.hasVGPRs(NewDstRC
))
5685 NewDstRC
= RI
.getEquivalentVGPRClass(NewDstRC
);
5697 // Find the one SGPR operand we are allowed to use.
5698 unsigned SIInstrInfo::findUsedSGPR(const MachineInstr
&MI
,
5699 int OpIndices
[3]) const {
5700 const MCInstrDesc
&Desc
= MI
.getDesc();
5702 // Find the one SGPR operand we are allowed to use.
5704 // First we need to consider the instruction's operand requirements before
5705 // legalizing. Some operands are required to be SGPRs, such as implicit uses
5706 // of VCC, but we are still bound by the constant bus requirement to only use
5709 // If the operand's class is an SGPR, we can never move it.
5711 unsigned SGPRReg
= findImplicitSGPRRead(MI
);
5712 if (SGPRReg
!= AMDGPU::NoRegister
)
5715 unsigned UsedSGPRs
[3] = { AMDGPU::NoRegister
};
5716 const MachineRegisterInfo
&MRI
= MI
.getParent()->getParent()->getRegInfo();
5718 for (unsigned i
= 0; i
< 3; ++i
) {
5719 int Idx
= OpIndices
[i
];
5723 const MachineOperand
&MO
= MI
.getOperand(Idx
);
5727 // Is this operand statically required to be an SGPR based on the operand
5729 const TargetRegisterClass
*OpRC
= RI
.getRegClass(Desc
.OpInfo
[Idx
].RegClass
);
5730 bool IsRequiredSGPR
= RI
.isSGPRClass(OpRC
);
5734 // If this could be a VGPR or an SGPR, Check the dynamic register class.
5735 Register Reg
= MO
.getReg();
5736 const TargetRegisterClass
*RegRC
= MRI
.getRegClass(Reg
);
5737 if (RI
.isSGPRClass(RegRC
))
5741 // We don't have a required SGPR operand, so we have a bit more freedom in
5742 // selecting operands to move.
5744 // Try to select the most used SGPR. If an SGPR is equal to one of the
5745 // others, we choose that.
5748 // V_FMA_F32 v0, s0, s0, s0 -> No moves
5749 // V_FMA_F32 v0, s0, s1, s0 -> Move s1
5751 // TODO: If some of the operands are 64-bit SGPRs and some 32, we should
5754 if (UsedSGPRs
[0] != AMDGPU::NoRegister
) {
5755 if (UsedSGPRs
[0] == UsedSGPRs
[1] || UsedSGPRs
[0] == UsedSGPRs
[2])
5756 SGPRReg
= UsedSGPRs
[0];
5759 if (SGPRReg
== AMDGPU::NoRegister
&& UsedSGPRs
[1] != AMDGPU::NoRegister
) {
5760 if (UsedSGPRs
[1] == UsedSGPRs
[2])
5761 SGPRReg
= UsedSGPRs
[1];
5767 MachineOperand
*SIInstrInfo::getNamedOperand(MachineInstr
&MI
,
5768 unsigned OperandName
) const {
5769 int Idx
= AMDGPU::getNamedOperandIdx(MI
.getOpcode(), OperandName
);
5773 return &MI
.getOperand(Idx
);
5776 uint64_t SIInstrInfo::getDefaultRsrcDataFormat() const {
5777 if (ST
.getGeneration() >= AMDGPUSubtarget::GFX10
) {
5778 return (22ULL << 44) | // IMG_FORMAT_32_FLOAT
5779 (1ULL << 56) | // RESOURCE_LEVEL = 1
5780 (3ULL << 60); // OOB_SELECT = 3
5783 uint64_t RsrcDataFormat
= AMDGPU::RSRC_DATA_FORMAT
;
5784 if (ST
.isAmdHsaOS()) {
5785 // Set ATC = 1. GFX9 doesn't have this bit.
5786 if (ST
.getGeneration() <= AMDGPUSubtarget::VOLCANIC_ISLANDS
)
5787 RsrcDataFormat
|= (1ULL << 56);
5789 // Set MTYPE = 2 (MTYPE_UC = uncached). GFX9 doesn't have this.
5790 // BTW, it disables TC L2 and therefore decreases performance.
5791 if (ST
.getGeneration() == AMDGPUSubtarget::VOLCANIC_ISLANDS
)
5792 RsrcDataFormat
|= (2ULL << 59);
5795 return RsrcDataFormat
;
5798 uint64_t SIInstrInfo::getScratchRsrcWords23() const {
5799 uint64_t Rsrc23
= getDefaultRsrcDataFormat() |
5800 AMDGPU::RSRC_TID_ENABLE
|
5801 0xffffffff; // Size;
5803 // GFX9 doesn't have ELEMENT_SIZE.
5804 if (ST
.getGeneration() <= AMDGPUSubtarget::VOLCANIC_ISLANDS
) {
5805 uint64_t EltSizeValue
= Log2_32(ST
.getMaxPrivateElementSize()) - 1;
5806 Rsrc23
|= EltSizeValue
<< AMDGPU::RSRC_ELEMENT_SIZE_SHIFT
;
5809 // IndexStride = 64 / 32.
5810 uint64_t IndexStride
= ST
.getWavefrontSize() == 64 ? 3 : 2;
5811 Rsrc23
|= IndexStride
<< AMDGPU::RSRC_INDEX_STRIDE_SHIFT
;
5813 // If TID_ENABLE is set, DATA_FORMAT specifies stride bits [14:17].
5814 // Clear them unless we want a huge stride.
5815 if (ST
.getGeneration() >= AMDGPUSubtarget::VOLCANIC_ISLANDS
&&
5816 ST
.getGeneration() <= AMDGPUSubtarget::GFX9
)
5817 Rsrc23
&= ~AMDGPU::RSRC_DATA_FORMAT
;
5822 bool SIInstrInfo::isLowLatencyInstruction(const MachineInstr
&MI
) const {
5823 unsigned Opc
= MI
.getOpcode();
5828 bool SIInstrInfo::isHighLatencyInstruction(const MachineInstr
&MI
) const {
5829 unsigned Opc
= MI
.getOpcode();
5831 return isMUBUF(Opc
) || isMTBUF(Opc
) || isMIMG(Opc
);
5834 unsigned SIInstrInfo::isStackAccess(const MachineInstr
&MI
,
5835 int &FrameIndex
) const {
5836 const MachineOperand
*Addr
= getNamedOperand(MI
, AMDGPU::OpName::vaddr
);
5837 if (!Addr
|| !Addr
->isFI())
5838 return AMDGPU::NoRegister
;
5840 assert(!MI
.memoperands_empty() &&
5841 (*MI
.memoperands_begin())->getAddrSpace() == AMDGPUAS::PRIVATE_ADDRESS
);
5843 FrameIndex
= Addr
->getIndex();
5844 return getNamedOperand(MI
, AMDGPU::OpName::vdata
)->getReg();
5847 unsigned SIInstrInfo::isSGPRStackAccess(const MachineInstr
&MI
,
5848 int &FrameIndex
) const {
5849 const MachineOperand
*Addr
= getNamedOperand(MI
, AMDGPU::OpName::addr
);
5850 assert(Addr
&& Addr
->isFI());
5851 FrameIndex
= Addr
->getIndex();
5852 return getNamedOperand(MI
, AMDGPU::OpName::data
)->getReg();
5855 unsigned SIInstrInfo::isLoadFromStackSlot(const MachineInstr
&MI
,
5856 int &FrameIndex
) const {
5858 return AMDGPU::NoRegister
;
5860 if (isMUBUF(MI
) || isVGPRSpill(MI
))
5861 return isStackAccess(MI
, FrameIndex
);
5863 if (isSGPRSpill(MI
))
5864 return isSGPRStackAccess(MI
, FrameIndex
);
5866 return AMDGPU::NoRegister
;
5869 unsigned SIInstrInfo::isStoreToStackSlot(const MachineInstr
&MI
,
5870 int &FrameIndex
) const {
5872 return AMDGPU::NoRegister
;
5874 if (isMUBUF(MI
) || isVGPRSpill(MI
))
5875 return isStackAccess(MI
, FrameIndex
);
5877 if (isSGPRSpill(MI
))
5878 return isSGPRStackAccess(MI
, FrameIndex
);
5880 return AMDGPU::NoRegister
;
5883 unsigned SIInstrInfo::getInstBundleSize(const MachineInstr
&MI
) const {
5885 MachineBasicBlock::const_instr_iterator I
= MI
.getIterator();
5886 MachineBasicBlock::const_instr_iterator E
= MI
.getParent()->instr_end();
5887 while (++I
!= E
&& I
->isInsideBundle()) {
5888 assert(!I
->isBundle() && "No nested bundle!");
5889 Size
+= getInstSizeInBytes(*I
);
5895 unsigned SIInstrInfo::getInstSizeInBytes(const MachineInstr
&MI
) const {
5896 unsigned Opc
= MI
.getOpcode();
5897 const MCInstrDesc
&Desc
= getMCOpcodeFromPseudo(Opc
);
5898 unsigned DescSize
= Desc
.getSize();
5900 // If we have a definitive size, we can use it. Otherwise we need to inspect
5901 // the operands to know the size.
5902 if (isFixedSize(MI
))
5905 // 4-byte instructions may have a 32-bit literal encoded after them. Check
5906 // operands that coud ever be literals.
5907 if (isVALU(MI
) || isSALU(MI
)) {
5908 int Src0Idx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src0
);
5910 return DescSize
; // No operands.
5912 if (isLiteralConstantLike(MI
.getOperand(Src0Idx
), Desc
.OpInfo
[Src0Idx
]))
5913 return isVOP3(MI
) ? 12 : (DescSize
+ 4);
5915 int Src1Idx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src1
);
5919 if (isLiteralConstantLike(MI
.getOperand(Src1Idx
), Desc
.OpInfo
[Src1Idx
]))
5920 return isVOP3(MI
) ? 12 : (DescSize
+ 4);
5922 int Src2Idx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::src2
);
5926 if (isLiteralConstantLike(MI
.getOperand(Src2Idx
), Desc
.OpInfo
[Src2Idx
]))
5927 return isVOP3(MI
) ? 12 : (DescSize
+ 4);
5932 // Check whether we have extra NSA words.
5934 int VAddr0Idx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::vaddr0
);
5938 int RSrcIdx
= AMDGPU::getNamedOperandIdx(Opc
, AMDGPU::OpName::srsrc
);
5939 return 8 + 4 * ((RSrcIdx
- VAddr0Idx
+ 2) / 4);
5943 case TargetOpcode::IMPLICIT_DEF
:
5944 case TargetOpcode::KILL
:
5945 case TargetOpcode::DBG_VALUE
:
5946 case TargetOpcode::EH_LABEL
:
5948 case TargetOpcode::BUNDLE
:
5949 return getInstBundleSize(MI
);
5950 case TargetOpcode::INLINEASM
:
5951 case TargetOpcode::INLINEASM_BR
: {
5952 const MachineFunction
*MF
= MI
.getParent()->getParent();
5953 const char *AsmStr
= MI
.getOperand(0).getSymbolName();
5954 return getInlineAsmLength(AsmStr
, *MF
->getTarget().getMCAsmInfo(),
5955 &MF
->getSubtarget());
5962 bool SIInstrInfo::mayAccessFlatAddressSpace(const MachineInstr
&MI
) const {
5966 if (MI
.memoperands_empty())
5969 for (const MachineMemOperand
*MMO
: MI
.memoperands()) {
5970 if (MMO
->getAddrSpace() == AMDGPUAS::FLAT_ADDRESS
)
5976 bool SIInstrInfo::isNonUniformBranchInstr(MachineInstr
&Branch
) const {
5977 return Branch
.getOpcode() == AMDGPU::SI_NON_UNIFORM_BRCOND_PSEUDO
;
5980 void SIInstrInfo::convertNonUniformIfRegion(MachineBasicBlock
*IfEntry
,
5981 MachineBasicBlock
*IfEnd
) const {
5982 MachineBasicBlock::iterator TI
= IfEntry
->getFirstTerminator();
5983 assert(TI
!= IfEntry
->end());
5985 MachineInstr
*Branch
= &(*TI
);
5986 MachineFunction
*MF
= IfEntry
->getParent();
5987 MachineRegisterInfo
&MRI
= IfEntry
->getParent()->getRegInfo();
5989 if (Branch
->getOpcode() == AMDGPU::SI_NON_UNIFORM_BRCOND_PSEUDO
) {
5990 Register DstReg
= MRI
.createVirtualRegister(RI
.getBoolRC());
5991 MachineInstr
*SIIF
=
5992 BuildMI(*MF
, Branch
->getDebugLoc(), get(AMDGPU::SI_IF
), DstReg
)
5993 .add(Branch
->getOperand(0))
5994 .add(Branch
->getOperand(1));
5995 MachineInstr
*SIEND
=
5996 BuildMI(*MF
, Branch
->getDebugLoc(), get(AMDGPU::SI_END_CF
))
6000 IfEntry
->insert(IfEntry
->end(), SIIF
);
6001 IfEnd
->insert(IfEnd
->getFirstNonPHI(), SIEND
);
6005 void SIInstrInfo::convertNonUniformLoopRegion(
6006 MachineBasicBlock
*LoopEntry
, MachineBasicBlock
*LoopEnd
) const {
6007 MachineBasicBlock::iterator TI
= LoopEnd
->getFirstTerminator();
6008 // We expect 2 terminators, one conditional and one unconditional.
6009 assert(TI
!= LoopEnd
->end());
6011 MachineInstr
*Branch
= &(*TI
);
6012 MachineFunction
*MF
= LoopEnd
->getParent();
6013 MachineRegisterInfo
&MRI
= LoopEnd
->getParent()->getRegInfo();
6015 if (Branch
->getOpcode() == AMDGPU::SI_NON_UNIFORM_BRCOND_PSEUDO
) {
6017 Register DstReg
= MRI
.createVirtualRegister(RI
.getBoolRC());
6018 Register BackEdgeReg
= MRI
.createVirtualRegister(RI
.getBoolRC());
6019 MachineInstrBuilder HeaderPHIBuilder
=
6020 BuildMI(*(MF
), Branch
->getDebugLoc(), get(TargetOpcode::PHI
), DstReg
);
6021 for (MachineBasicBlock::pred_iterator PI
= LoopEntry
->pred_begin(),
6022 E
= LoopEntry
->pred_end();
6024 if (*PI
== LoopEnd
) {
6025 HeaderPHIBuilder
.addReg(BackEdgeReg
);
6027 MachineBasicBlock
*PMBB
= *PI
;
6028 Register ZeroReg
= MRI
.createVirtualRegister(RI
.getBoolRC());
6029 materializeImmediate(*PMBB
, PMBB
->getFirstTerminator(), DebugLoc(),
6031 HeaderPHIBuilder
.addReg(ZeroReg
);
6033 HeaderPHIBuilder
.addMBB(*PI
);
6035 MachineInstr
*HeaderPhi
= HeaderPHIBuilder
;
6036 MachineInstr
*SIIFBREAK
= BuildMI(*(MF
), Branch
->getDebugLoc(),
6037 get(AMDGPU::SI_IF_BREAK
), BackEdgeReg
)
6039 .add(Branch
->getOperand(0));
6040 MachineInstr
*SILOOP
=
6041 BuildMI(*(MF
), Branch
->getDebugLoc(), get(AMDGPU::SI_LOOP
))
6042 .addReg(BackEdgeReg
)
6045 LoopEntry
->insert(LoopEntry
->begin(), HeaderPhi
);
6047 LoopEnd
->insert(LoopEnd
->end(), SIIFBREAK
);
6048 LoopEnd
->insert(LoopEnd
->end(), SILOOP
);
6052 ArrayRef
<std::pair
<int, const char *>>
6053 SIInstrInfo::getSerializableTargetIndices() const {
6054 static const std::pair
<int, const char *> TargetIndices
[] = {
6055 {AMDGPU::TI_CONSTDATA_START
, "amdgpu-constdata-start"},
6056 {AMDGPU::TI_SCRATCH_RSRC_DWORD0
, "amdgpu-scratch-rsrc-dword0"},
6057 {AMDGPU::TI_SCRATCH_RSRC_DWORD1
, "amdgpu-scratch-rsrc-dword1"},
6058 {AMDGPU::TI_SCRATCH_RSRC_DWORD2
, "amdgpu-scratch-rsrc-dword2"},
6059 {AMDGPU::TI_SCRATCH_RSRC_DWORD3
, "amdgpu-scratch-rsrc-dword3"}};
6060 return makeArrayRef(TargetIndices
);
6063 /// This is used by the post-RA scheduler (SchedulePostRAList.cpp). The
6064 /// post-RA version of misched uses CreateTargetMIHazardRecognizer.
6065 ScheduleHazardRecognizer
*
6066 SIInstrInfo::CreateTargetPostRAHazardRecognizer(const InstrItineraryData
*II
,
6067 const ScheduleDAG
*DAG
) const {
6068 return new GCNHazardRecognizer(DAG
->MF
);
6071 /// This is the hazard recognizer used at -O0 by the PostRAHazardRecognizer
6073 ScheduleHazardRecognizer
*
6074 SIInstrInfo::CreateTargetPostRAHazardRecognizer(const MachineFunction
&MF
) const {
6075 return new GCNHazardRecognizer(MF
);
6078 std::pair
<unsigned, unsigned>
6079 SIInstrInfo::decomposeMachineOperandsTargetFlags(unsigned TF
) const {
6080 return std::make_pair(TF
& MO_MASK
, TF
& ~MO_MASK
);
6083 ArrayRef
<std::pair
<unsigned, const char *>>
6084 SIInstrInfo::getSerializableDirectMachineOperandTargetFlags() const {
6085 static const std::pair
<unsigned, const char *> TargetFlags
[] = {
6086 { MO_GOTPCREL
, "amdgpu-gotprel" },
6087 { MO_GOTPCREL32_LO
, "amdgpu-gotprel32-lo" },
6088 { MO_GOTPCREL32_HI
, "amdgpu-gotprel32-hi" },
6089 { MO_REL32_LO
, "amdgpu-rel32-lo" },
6090 { MO_REL32_HI
, "amdgpu-rel32-hi" },
6091 { MO_ABS32_LO
, "amdgpu-abs32-lo" },
6092 { MO_ABS32_HI
, "amdgpu-abs32-hi" },
6095 return makeArrayRef(TargetFlags
);
6098 bool SIInstrInfo::isBasicBlockPrologue(const MachineInstr
&MI
) const {
6099 return !MI
.isTerminator() && MI
.getOpcode() != AMDGPU::COPY
&&
6100 MI
.modifiesRegister(AMDGPU::EXEC
, &RI
);
6104 SIInstrInfo::getAddNoCarry(MachineBasicBlock
&MBB
,
6105 MachineBasicBlock::iterator I
,
6107 unsigned DestReg
) const {
6108 if (ST
.hasAddNoCarry())
6109 return BuildMI(MBB
, I
, DL
, get(AMDGPU::V_ADD_U32_e64
), DestReg
);
6111 MachineRegisterInfo
&MRI
= MBB
.getParent()->getRegInfo();
6112 Register UnusedCarry
= MRI
.createVirtualRegister(RI
.getBoolRC());
6113 MRI
.setRegAllocationHint(UnusedCarry
, 0, RI
.getVCC());
6115 return BuildMI(MBB
, I
, DL
, get(AMDGPU::V_ADD_I32_e64
), DestReg
)
6116 .addReg(UnusedCarry
, RegState::Define
| RegState::Dead
);
6119 MachineInstrBuilder
SIInstrInfo::getAddNoCarry(MachineBasicBlock
&MBB
,
6120 MachineBasicBlock::iterator I
,
6123 RegScavenger
&RS
) const {
6124 if (ST
.hasAddNoCarry())
6125 return BuildMI(MBB
, I
, DL
, get(AMDGPU::V_ADD_U32_e32
), DestReg
);
6127 Register UnusedCarry
= RS
.scavengeRegister(RI
.getBoolRC(), I
, 0, false);
6128 // TODO: Users need to deal with this.
6129 if (!UnusedCarry
.isValid())
6130 return MachineInstrBuilder();
6132 return BuildMI(MBB
, I
, DL
, get(AMDGPU::V_ADD_I32_e64
), DestReg
)
6133 .addReg(UnusedCarry
, RegState::Define
| RegState::Dead
);
6136 bool SIInstrInfo::isKillTerminator(unsigned Opcode
) {
6138 case AMDGPU::SI_KILL_F32_COND_IMM_TERMINATOR
:
6139 case AMDGPU::SI_KILL_I1_TERMINATOR
:
6146 const MCInstrDesc
&SIInstrInfo::getKillTerminatorFromPseudo(unsigned Opcode
) const {
6148 case AMDGPU::SI_KILL_F32_COND_IMM_PSEUDO
:
6149 return get(AMDGPU::SI_KILL_F32_COND_IMM_TERMINATOR
);
6150 case AMDGPU::SI_KILL_I1_PSEUDO
:
6151 return get(AMDGPU::SI_KILL_I1_TERMINATOR
);
6153 llvm_unreachable("invalid opcode, expected SI_KILL_*_PSEUDO");
6157 void SIInstrInfo::fixImplicitOperands(MachineInstr
&MI
) const {
6158 MachineBasicBlock
*MBB
= MI
.getParent();
6159 MachineFunction
*MF
= MBB
->getParent();
6160 const GCNSubtarget
&ST
= MF
->getSubtarget
<GCNSubtarget
>();
6165 for (auto &Op
: MI
.implicit_operands()) {
6166 if (Op
.isReg() && Op
.getReg() == AMDGPU::VCC
)
6167 Op
.setReg(AMDGPU::VCC_LO
);
6171 bool SIInstrInfo::isBufferSMRD(const MachineInstr
&MI
) const {
6175 // Check that it is using a buffer resource.
6176 int Idx
= AMDGPU::getNamedOperandIdx(MI
.getOpcode(), AMDGPU::OpName::sbase
);
6177 if (Idx
== -1) // e.g. s_memtime
6180 const auto RCID
= MI
.getDesc().OpInfo
[Idx
].RegClass
;
6181 return RI
.getRegClass(RCID
)->hasSubClassEq(&AMDGPU::SGPR_128RegClass
);
6184 bool SIInstrInfo::isLegalFLATOffset(int64_t Offset
, unsigned AddrSpace
,
6185 bool Signed
) const {
6186 // TODO: Should 0 be special cased?
6187 if (!ST
.hasFlatInstOffsets())
6190 if (ST
.hasFlatSegmentOffsetBug() && AddrSpace
== AMDGPUAS::FLAT_ADDRESS
)
6193 if (ST
.getGeneration() >= AMDGPUSubtarget::GFX10
) {
6194 return (Signed
&& isInt
<12>(Offset
)) ||
6195 (!Signed
&& isUInt
<11>(Offset
));
6198 return (Signed
&& isInt
<13>(Offset
)) ||
6199 (!Signed
&& isUInt
<12>(Offset
));
6203 // This must be kept in sync with the SIEncodingFamily class in SIInstrInfo.td
6204 enum SIEncodingFamily
{
6215 static SIEncodingFamily
subtargetEncodingFamily(const GCNSubtarget
&ST
) {
6216 switch (ST
.getGeneration()) {
6219 case AMDGPUSubtarget::SOUTHERN_ISLANDS
:
6220 case AMDGPUSubtarget::SEA_ISLANDS
:
6221 return SIEncodingFamily::SI
;
6222 case AMDGPUSubtarget::VOLCANIC_ISLANDS
:
6223 case AMDGPUSubtarget::GFX9
:
6224 return SIEncodingFamily::VI
;
6225 case AMDGPUSubtarget::GFX10
:
6226 return SIEncodingFamily::GFX10
;
6228 llvm_unreachable("Unknown subtarget generation!");
6231 int SIInstrInfo::pseudoToMCOpcode(int Opcode
) const {
6232 SIEncodingFamily Gen
= subtargetEncodingFamily(ST
);
6234 if ((get(Opcode
).TSFlags
& SIInstrFlags::renamedInGFX9
) != 0 &&
6235 ST
.getGeneration() == AMDGPUSubtarget::GFX9
)
6236 Gen
= SIEncodingFamily::GFX9
;
6238 // Adjust the encoding family to GFX80 for D16 buffer instructions when the
6239 // subtarget has UnpackedD16VMem feature.
6240 // TODO: remove this when we discard GFX80 encoding.
6241 if (ST
.hasUnpackedD16VMem() && (get(Opcode
).TSFlags
& SIInstrFlags::D16Buf
))
6242 Gen
= SIEncodingFamily::GFX80
;
6244 if (get(Opcode
).TSFlags
& SIInstrFlags::SDWA
) {
6245 switch (ST
.getGeneration()) {
6247 Gen
= SIEncodingFamily::SDWA
;
6249 case AMDGPUSubtarget::GFX9
:
6250 Gen
= SIEncodingFamily::SDWA9
;
6252 case AMDGPUSubtarget::GFX10
:
6253 Gen
= SIEncodingFamily::SDWA10
;
6258 int MCOp
= AMDGPU::getMCOpcode(Opcode
, Gen
);
6260 // -1 means that Opcode is already a native instruction.
6264 // (uint16_t)-1 means that Opcode is a pseudo instruction that has
6265 // no encoding in the given subtarget generation.
6266 if (MCOp
== (uint16_t)-1)
6273 TargetInstrInfo::RegSubRegPair
getRegOrUndef(const MachineOperand
&RegOpnd
) {
6274 assert(RegOpnd
.isReg());
6275 return RegOpnd
.isUndef() ? TargetInstrInfo::RegSubRegPair() :
6276 getRegSubRegPair(RegOpnd
);
6279 TargetInstrInfo::RegSubRegPair
6280 llvm::getRegSequenceSubReg(MachineInstr
&MI
, unsigned SubReg
) {
6281 assert(MI
.isRegSequence());
6282 for (unsigned I
= 0, E
= (MI
.getNumOperands() - 1)/ 2; I
< E
; ++I
)
6283 if (MI
.getOperand(1 + 2 * I
+ 1).getImm() == SubReg
) {
6284 auto &RegOp
= MI
.getOperand(1 + 2 * I
);
6285 return getRegOrUndef(RegOp
);
6287 return TargetInstrInfo::RegSubRegPair();
6290 // Try to find the definition of reg:subreg in subreg-manipulation pseudos
6291 // Following a subreg of reg:subreg isn't supported
6292 static bool followSubRegDef(MachineInstr
&MI
,
6293 TargetInstrInfo::RegSubRegPair
&RSR
) {
6296 switch (MI
.getOpcode()) {
6298 case AMDGPU::REG_SEQUENCE
:
6299 RSR
= getRegSequenceSubReg(MI
, RSR
.SubReg
);
6301 // EXTRACT_SUBREG ins't supported as this would follow a subreg of subreg
6302 case AMDGPU::INSERT_SUBREG
:
6303 if (RSR
.SubReg
== (unsigned)MI
.getOperand(3).getImm())
6304 // inserted the subreg we're looking for
6305 RSR
= getRegOrUndef(MI
.getOperand(2));
6306 else { // the subreg in the rest of the reg
6307 auto R1
= getRegOrUndef(MI
.getOperand(1));
6308 if (R1
.SubReg
) // subreg of subreg isn't supported
6317 MachineInstr
*llvm::getVRegSubRegDef(const TargetInstrInfo::RegSubRegPair
&P
,
6318 MachineRegisterInfo
&MRI
) {
6319 assert(MRI
.isSSA());
6320 if (!Register::isVirtualRegister(P
.Reg
))
6324 auto *DefInst
= MRI
.getVRegDef(RSR
.Reg
);
6325 while (auto *MI
= DefInst
) {
6327 switch (MI
->getOpcode()) {
6329 case AMDGPU::V_MOV_B32_e32
: {
6330 auto &Op1
= MI
->getOperand(1);
6331 if (Op1
.isReg() && Register::isVirtualRegister(Op1
.getReg())) {
6334 RSR
= getRegSubRegPair(Op1
);
6335 DefInst
= MRI
.getVRegDef(RSR
.Reg
);
6340 if (followSubRegDef(*MI
, RSR
)) {
6343 DefInst
= MRI
.getVRegDef(RSR
.Reg
);
6352 bool llvm::execMayBeModifiedBeforeUse(const MachineRegisterInfo
&MRI
,
6354 const MachineInstr
&DefMI
,
6355 const MachineInstr
&UseMI
) {
6356 assert(MRI
.isSSA() && "Must be run on SSA");
6358 auto *TRI
= MRI
.getTargetRegisterInfo();
6359 auto *DefBB
= DefMI
.getParent();
6361 // Don't bother searching between blocks, although it is possible this block
6362 // doesn't modify exec.
6363 if (UseMI
.getParent() != DefBB
)
6366 const int MaxInstScan
= 20;
6369 // Stop scan at the use.
6370 auto E
= UseMI
.getIterator();
6371 for (auto I
= std::next(DefMI
.getIterator()); I
!= E
; ++I
) {
6372 if (I
->isDebugInstr())
6375 if (++NumInst
> MaxInstScan
)
6378 if (I
->modifiesRegister(AMDGPU::EXEC
, TRI
))
6385 bool llvm::execMayBeModifiedBeforeAnyUse(const MachineRegisterInfo
&MRI
,
6387 const MachineInstr
&DefMI
) {
6388 assert(MRI
.isSSA() && "Must be run on SSA");
6390 auto *TRI
= MRI
.getTargetRegisterInfo();
6391 auto *DefBB
= DefMI
.getParent();
6393 const int MaxUseInstScan
= 10;
6396 for (auto &UseInst
: MRI
.use_nodbg_instructions(VReg
)) {
6397 // Don't bother searching between blocks, although it is possible this block
6398 // doesn't modify exec.
6399 if (UseInst
.getParent() != DefBB
)
6402 if (++NumUseInst
> MaxUseInstScan
)
6406 const int MaxInstScan
= 20;
6409 // Stop scan when we have seen all the uses.
6410 for (auto I
= std::next(DefMI
.getIterator()); ; ++I
) {
6411 if (I
->isDebugInstr())
6414 if (++NumInst
> MaxInstScan
)
6417 if (I
->readsRegister(VReg
))
6418 if (--NumUseInst
== 0)
6421 if (I
->modifiesRegister(AMDGPU::EXEC
, TRI
))
6426 MachineInstr
*SIInstrInfo::createPHIDestinationCopy(
6427 MachineBasicBlock
&MBB
, MachineBasicBlock::iterator LastPHIIt
,
6428 const DebugLoc
&DL
, Register Src
, Register Dst
) const {
6429 auto Cur
= MBB
.begin();
6430 if (Cur
!= MBB
.end())
6432 if (!Cur
->isPHI() && Cur
->readsRegister(Dst
))
6433 return BuildMI(MBB
, Cur
, DL
, get(TargetOpcode::COPY
), Dst
).addReg(Src
);
6435 } while (Cur
!= MBB
.end() && Cur
!= LastPHIIt
);
6437 return TargetInstrInfo::createPHIDestinationCopy(MBB
, LastPHIIt
, DL
, Src
,
6441 MachineInstr
*SIInstrInfo::createPHISourceCopy(
6442 MachineBasicBlock
&MBB
, MachineBasicBlock::iterator InsPt
,
6443 const DebugLoc
&DL
, Register Src
, Register SrcSubReg
, Register Dst
) const {
6444 if (InsPt
!= MBB
.end() &&
6445 (InsPt
->getOpcode() == AMDGPU::SI_IF
||
6446 InsPt
->getOpcode() == AMDGPU::SI_ELSE
||
6447 InsPt
->getOpcode() == AMDGPU::SI_IF_BREAK
) &&
6448 InsPt
->definesRegister(Src
)) {
6450 return BuildMI(MBB
, InsPt
, InsPt
->getDebugLoc(),
6451 get(ST
.isWave32() ? AMDGPU::S_MOV_B32_term
6452 : AMDGPU::S_MOV_B64_term
),
6454 .addReg(Src
, 0, SrcSubReg
)
6455 .addReg(AMDGPU::EXEC
, RegState::Implicit
);
6457 return TargetInstrInfo::createPHISourceCopy(MBB
, InsPt
, DL
, Src
, SrcSubReg
,
6461 bool llvm::SIInstrInfo::isWave32() const { return ST
.isWave32(); }