1 //===- SIFixSGPRCopies.cpp - Remove potential VGPR => SGPR copies ---------===//
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 /// Copies from VGPR to SGPR registers are illegal and the register coalescer
11 /// will sometimes generate these illegal copies in situations like this:
13 /// Register Class <vsrc> is the union of <vgpr> and <sgpr>
16 /// %0 <sgpr> = SCALAR_INST
17 /// %1 <vsrc> = COPY %0 <sgpr>
19 /// BRANCH %cond BB1, BB2
21 /// %2 <vgpr> = VECTOR_INST
22 /// %3 <vsrc> = COPY %2 <vgpr>
24 /// %4 <vsrc> = PHI %1 <vsrc>, <%bb.0>, %3 <vrsc>, <%bb.1>
25 /// %5 <vgpr> = VECTOR_INST %4 <vsrc>
28 /// The coalescer will begin at BB0 and eliminate its copy, then the resulting
29 /// code will look like this:
32 /// %0 <sgpr> = SCALAR_INST
34 /// BRANCH %cond BB1, BB2
36 /// %2 <vgpr> = VECTOR_INST
37 /// %3 <vsrc> = COPY %2 <vgpr>
39 /// %4 <sgpr> = PHI %0 <sgpr>, <%bb.0>, %3 <vsrc>, <%bb.1>
40 /// %5 <vgpr> = VECTOR_INST %4 <sgpr>
42 /// Now that the result of the PHI instruction is an SGPR, the register
43 /// allocator is now forced to constrain the register class of %3 to
44 /// <sgpr> so we end up with final code like this:
47 /// %0 <sgpr> = SCALAR_INST
49 /// BRANCH %cond BB1, BB2
51 /// %2 <vgpr> = VECTOR_INST
52 /// %3 <sgpr> = COPY %2 <vgpr>
54 /// %4 <sgpr> = PHI %0 <sgpr>, <%bb.0>, %3 <sgpr>, <%bb.1>
55 /// %5 <vgpr> = VECTOR_INST %4 <sgpr>
57 /// Now this code contains an illegal copy from a VGPR to an SGPR.
59 /// In order to avoid this problem, this pass searches for PHI instructions
60 /// which define a <vsrc> register and constrains its definition class to
61 /// <vgpr> if the user of the PHI's definition register is a vector instruction.
62 /// If the PHI's definition class is constrained to <vgpr> then the coalescer
63 /// will be unable to perform the COPY removal from the above example which
64 /// ultimately led to the creation of an illegal COPY.
65 //===----------------------------------------------------------------------===//
68 #include "AMDGPUSubtarget.h"
69 #include "SIInstrInfo.h"
70 #include "SIRegisterInfo.h"
71 #include "MCTargetDesc/AMDGPUMCTargetDesc.h"
72 #include "llvm/ADT/DenseSet.h"
73 #include "llvm/ADT/STLExtras.h"
74 #include "llvm/ADT/SmallSet.h"
75 #include "llvm/ADT/SmallVector.h"
76 #include "llvm/CodeGen/MachineBasicBlock.h"
77 #include "llvm/CodeGen/MachineDominators.h"
78 #include "llvm/CodeGen/MachineFunction.h"
79 #include "llvm/CodeGen/MachineFunctionPass.h"
80 #include "llvm/CodeGen/MachineInstr.h"
81 #include "llvm/CodeGen/MachineInstrBuilder.h"
82 #include "llvm/CodeGen/MachineOperand.h"
83 #include "llvm/CodeGen/MachineRegisterInfo.h"
84 #include "llvm/CodeGen/TargetRegisterInfo.h"
85 #include "llvm/Pass.h"
86 #include "llvm/Support/CodeGen.h"
87 #include "llvm/Support/CommandLine.h"
88 #include "llvm/Support/Debug.h"
89 #include "llvm/Support/raw_ostream.h"
90 #include "llvm/Target/TargetMachine.h"
101 #define DEBUG_TYPE "si-fix-sgpr-copies"
103 static cl::opt
<bool> EnableM0Merge(
104 "amdgpu-enable-merge-m0",
105 cl::desc("Merge and hoist M0 initializations"),
110 class SIFixSGPRCopies
: public MachineFunctionPass
{
111 MachineDominatorTree
*MDT
;
116 SIFixSGPRCopies() : MachineFunctionPass(ID
) {}
118 bool runOnMachineFunction(MachineFunction
&MF
) override
;
120 StringRef
getPassName() const override
{ return "SI Fix SGPR copies"; }
122 void getAnalysisUsage(AnalysisUsage
&AU
) const override
{
123 AU
.addRequired
<MachineDominatorTree
>();
124 AU
.addPreserved
<MachineDominatorTree
>();
125 AU
.setPreservesCFG();
126 MachineFunctionPass::getAnalysisUsage(AU
);
130 } // end anonymous namespace
132 INITIALIZE_PASS_BEGIN(SIFixSGPRCopies
, DEBUG_TYPE
,
133 "SI Fix SGPR copies", false, false)
134 INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree
)
135 INITIALIZE_PASS_END(SIFixSGPRCopies
, DEBUG_TYPE
,
136 "SI Fix SGPR copies", false, false)
138 char SIFixSGPRCopies::ID
= 0;
140 char &llvm::SIFixSGPRCopiesID
= SIFixSGPRCopies::ID
;
142 FunctionPass
*llvm::createSIFixSGPRCopiesPass() {
143 return new SIFixSGPRCopies();
146 static bool hasVectorOperands(const MachineInstr
&MI
,
147 const SIRegisterInfo
*TRI
) {
148 const MachineRegisterInfo
&MRI
= MI
.getParent()->getParent()->getRegInfo();
149 for (unsigned i
= 0, e
= MI
.getNumOperands(); i
!= e
; ++i
) {
150 if (!MI
.getOperand(i
).isReg() ||
151 !Register::isVirtualRegister(MI
.getOperand(i
).getReg()))
154 if (TRI
->hasVectorRegisters(MRI
.getRegClass(MI
.getOperand(i
).getReg())))
160 static std::pair
<const TargetRegisterClass
*, const TargetRegisterClass
*>
161 getCopyRegClasses(const MachineInstr
&Copy
,
162 const SIRegisterInfo
&TRI
,
163 const MachineRegisterInfo
&MRI
) {
164 Register DstReg
= Copy
.getOperand(0).getReg();
165 Register SrcReg
= Copy
.getOperand(1).getReg();
167 const TargetRegisterClass
*SrcRC
= Register::isVirtualRegister(SrcReg
)
168 ? MRI
.getRegClass(SrcReg
)
169 : TRI
.getPhysRegClass(SrcReg
);
171 // We don't really care about the subregister here.
172 // SrcRC = TRI.getSubRegClass(SrcRC, Copy.getOperand(1).getSubReg());
174 const TargetRegisterClass
*DstRC
= Register::isVirtualRegister(DstReg
)
175 ? MRI
.getRegClass(DstReg
)
176 : TRI
.getPhysRegClass(DstReg
);
178 return std::make_pair(SrcRC
, DstRC
);
181 static bool isVGPRToSGPRCopy(const TargetRegisterClass
*SrcRC
,
182 const TargetRegisterClass
*DstRC
,
183 const SIRegisterInfo
&TRI
) {
184 return SrcRC
!= &AMDGPU::VReg_1RegClass
&& TRI
.isSGPRClass(DstRC
) &&
185 TRI
.hasVectorRegisters(SrcRC
);
188 static bool isSGPRToVGPRCopy(const TargetRegisterClass
*SrcRC
,
189 const TargetRegisterClass
*DstRC
,
190 const SIRegisterInfo
&TRI
) {
191 return DstRC
!= &AMDGPU::VReg_1RegClass
&& TRI
.isSGPRClass(SrcRC
) &&
192 TRI
.hasVectorRegisters(DstRC
);
195 static bool tryChangeVGPRtoSGPRinCopy(MachineInstr
&MI
,
196 const SIRegisterInfo
*TRI
,
197 const SIInstrInfo
*TII
) {
198 MachineRegisterInfo
&MRI
= MI
.getParent()->getParent()->getRegInfo();
199 auto &Src
= MI
.getOperand(1);
200 Register DstReg
= MI
.getOperand(0).getReg();
201 Register SrcReg
= Src
.getReg();
202 if (!Register::isVirtualRegister(SrcReg
) ||
203 !Register::isVirtualRegister(DstReg
))
206 for (const auto &MO
: MRI
.reg_nodbg_operands(DstReg
)) {
207 const auto *UseMI
= MO
.getParent();
210 if (MO
.isDef() || UseMI
->getParent() != MI
.getParent() ||
211 UseMI
->getOpcode() <= TargetOpcode::GENERIC_OP_END
||
212 !TII
->isOperandLegal(*UseMI
, UseMI
->getOperandNo(&MO
), &Src
))
215 // Change VGPR to SGPR destination.
216 MRI
.setRegClass(DstReg
, TRI
->getEquivalentSGPRClass(MRI
.getRegClass(DstReg
)));
220 // Distribute an SGPR->VGPR copy of a REG_SEQUENCE into a VGPR REG_SEQUENCE.
223 // SGPRy = REG_SEQUENCE SGPRx, sub0 ...
224 // VGPRz = COPY SGPRy
228 // VGPRx = COPY SGPRx
229 // VGPRz = REG_SEQUENCE VGPRx, sub0
231 // This exposes immediate folding opportunities when materializing 64-bit
233 static bool foldVGPRCopyIntoRegSequence(MachineInstr
&MI
,
234 const SIRegisterInfo
*TRI
,
235 const SIInstrInfo
*TII
,
236 MachineRegisterInfo
&MRI
) {
237 assert(MI
.isRegSequence());
239 Register DstReg
= MI
.getOperand(0).getReg();
240 if (!TRI
->isSGPRClass(MRI
.getRegClass(DstReg
)))
243 if (!MRI
.hasOneUse(DstReg
))
246 MachineInstr
&CopyUse
= *MRI
.use_instr_begin(DstReg
);
247 if (!CopyUse
.isCopy())
250 // It is illegal to have vreg inputs to a physreg defining reg_sequence.
251 if (Register::isPhysicalRegister(CopyUse
.getOperand(0).getReg()))
254 const TargetRegisterClass
*SrcRC
, *DstRC
;
255 std::tie(SrcRC
, DstRC
) = getCopyRegClasses(CopyUse
, *TRI
, MRI
);
257 if (!isSGPRToVGPRCopy(SrcRC
, DstRC
, *TRI
))
260 if (tryChangeVGPRtoSGPRinCopy(CopyUse
, TRI
, TII
))
263 // TODO: Could have multiple extracts?
264 unsigned SubReg
= CopyUse
.getOperand(1).getSubReg();
265 if (SubReg
!= AMDGPU::NoSubRegister
)
268 MRI
.setRegClass(DstReg
, DstRC
);
271 // SGPRy = REG_SEQUENCE SGPRx, sub0 ...
272 // VGPRz = COPY SGPRy
275 // VGPRx = COPY SGPRx
276 // VGPRz = REG_SEQUENCE VGPRx, sub0
278 MI
.getOperand(0).setReg(CopyUse
.getOperand(0).getReg());
279 bool IsAGPR
= TRI
->hasAGPRs(DstRC
);
281 for (unsigned I
= 1, N
= MI
.getNumOperands(); I
!= N
; I
+= 2) {
282 Register SrcReg
= MI
.getOperand(I
).getReg();
283 unsigned SrcSubReg
= MI
.getOperand(I
).getSubReg();
285 const TargetRegisterClass
*SrcRC
= MRI
.getRegClass(SrcReg
);
286 assert(TRI
->isSGPRClass(SrcRC
) &&
287 "Expected SGPR REG_SEQUENCE to only have SGPR inputs");
289 SrcRC
= TRI
->getSubRegClass(SrcRC
, SrcSubReg
);
290 const TargetRegisterClass
*NewSrcRC
= TRI
->getEquivalentVGPRClass(SrcRC
);
292 Register TmpReg
= MRI
.createVirtualRegister(NewSrcRC
);
294 BuildMI(*MI
.getParent(), &MI
, MI
.getDebugLoc(), TII
->get(AMDGPU::COPY
),
296 .add(MI
.getOperand(I
));
299 const TargetRegisterClass
*NewSrcRC
= TRI
->getEquivalentAGPRClass(SrcRC
);
300 Register TmpAReg
= MRI
.createVirtualRegister(NewSrcRC
);
301 unsigned Opc
= NewSrcRC
== &AMDGPU::AGPR_32RegClass
?
302 AMDGPU::V_ACCVGPR_WRITE_B32
: AMDGPU::COPY
;
303 BuildMI(*MI
.getParent(), &MI
, MI
.getDebugLoc(), TII
->get(Opc
),
305 .addReg(TmpReg
, RegState::Kill
);
309 MI
.getOperand(I
).setReg(TmpReg
);
312 CopyUse
.eraseFromParent();
316 static bool phiHasVGPROperands(const MachineInstr
&PHI
,
317 const MachineRegisterInfo
&MRI
,
318 const SIRegisterInfo
*TRI
,
319 const SIInstrInfo
*TII
) {
320 for (unsigned i
= 1; i
< PHI
.getNumOperands(); i
+= 2) {
321 Register Reg
= PHI
.getOperand(i
).getReg();
322 if (TRI
->hasVGPRs(MRI
.getRegClass(Reg
)))
328 static bool phiHasBreakDef(const MachineInstr
&PHI
,
329 const MachineRegisterInfo
&MRI
,
330 SmallSet
<unsigned, 8> &Visited
) {
331 for (unsigned i
= 1; i
< PHI
.getNumOperands(); i
+= 2) {
332 Register Reg
= PHI
.getOperand(i
).getReg();
333 if (Visited
.count(Reg
))
338 MachineInstr
*DefInstr
= MRI
.getVRegDef(Reg
);
339 switch (DefInstr
->getOpcode()) {
342 case AMDGPU::SI_IF_BREAK
:
345 if (phiHasBreakDef(*DefInstr
, MRI
, Visited
))
352 static bool hasTerminatorThatModifiesExec(const MachineBasicBlock
&MBB
,
353 const TargetRegisterInfo
&TRI
) {
354 for (MachineBasicBlock::const_iterator I
= MBB
.getFirstTerminator(),
355 E
= MBB
.end(); I
!= E
; ++I
) {
356 if (I
->modifiesRegister(AMDGPU::EXEC
, &TRI
))
362 static bool isSafeToFoldImmIntoCopy(const MachineInstr
*Copy
,
363 const MachineInstr
*MoveImm
,
364 const SIInstrInfo
*TII
,
367 if (Copy
->getOpcode() != AMDGPU::COPY
)
370 if (!MoveImm
->isMoveImmediate())
373 const MachineOperand
*ImmOp
=
374 TII
->getNamedOperand(*MoveImm
, AMDGPU::OpName::src0
);
378 // FIXME: Handle copies with sub-regs.
379 if (Copy
->getOperand(0).getSubReg())
382 switch (MoveImm
->getOpcode()) {
385 case AMDGPU::V_MOV_B32_e32
:
386 SMovOp
= AMDGPU::S_MOV_B32
;
388 case AMDGPU::V_MOV_B64_PSEUDO
:
389 SMovOp
= AMDGPU::S_MOV_B64
;
392 Imm
= ImmOp
->getImm();
396 template <class UnaryPredicate
>
397 bool searchPredecessors(const MachineBasicBlock
*MBB
,
398 const MachineBasicBlock
*CutOff
,
399 UnaryPredicate Predicate
) {
403 DenseSet
<const MachineBasicBlock
*> Visited
;
404 SmallVector
<MachineBasicBlock
*, 4> Worklist(MBB
->pred_begin(),
407 while (!Worklist
.empty()) {
408 MachineBasicBlock
*MBB
= Worklist
.pop_back_val();
410 if (!Visited
.insert(MBB
).second
)
417 Worklist
.append(MBB
->pred_begin(), MBB
->pred_end());
423 static bool predsHasDivergentTerminator(MachineBasicBlock
*MBB
,
424 const TargetRegisterInfo
*TRI
) {
425 return searchPredecessors(MBB
, nullptr, [TRI
](MachineBasicBlock
*MBB
) {
426 return hasTerminatorThatModifiesExec(*MBB
, *TRI
); });
429 // Checks if there is potential path From instruction To instruction.
430 // If CutOff is specified and it sits in between of that path we ignore
431 // a higher portion of the path and report it is not reachable.
432 static bool isReachable(const MachineInstr
*From
,
433 const MachineInstr
*To
,
434 const MachineBasicBlock
*CutOff
,
435 MachineDominatorTree
&MDT
) {
436 // If either From block dominates To block or instructions are in the same
437 // block and From is higher.
438 if (MDT
.dominates(From
, To
))
441 const MachineBasicBlock
*MBBFrom
= From
->getParent();
442 const MachineBasicBlock
*MBBTo
= To
->getParent();
443 if (MBBFrom
== MBBTo
)
446 // Instructions are in different blocks, do predecessor search.
447 // We should almost never get here since we do not usually produce M0 stores
449 return searchPredecessors(MBBTo
, CutOff
, [MBBFrom
]
450 (const MachineBasicBlock
*MBB
) { return MBB
== MBBFrom
; });
453 // Return the first non-prologue instruction in the block.
454 static MachineBasicBlock::iterator
455 getFirstNonPrologue(MachineBasicBlock
*MBB
, const TargetInstrInfo
*TII
) {
456 MachineBasicBlock::iterator I
= MBB
->getFirstNonPHI();
457 while (I
!= MBB
->end() && TII
->isBasicBlockPrologue(*I
))
463 // Hoist and merge identical SGPR initializations into a common predecessor.
464 // This is intended to combine M0 initializations, but can work with any
465 // SGPR. A VGPR cannot be processed since we cannot guarantee vector
467 static bool hoistAndMergeSGPRInits(unsigned Reg
,
468 const MachineRegisterInfo
&MRI
,
469 MachineDominatorTree
&MDT
,
470 const TargetInstrInfo
*TII
) {
471 // List of inits by immediate value.
472 using InitListMap
= std::map
<unsigned, std::list
<MachineInstr
*>>;
474 // List of clobbering instructions.
475 SmallVector
<MachineInstr
*, 8> Clobbers
;
476 // List of instructions marked for deletion.
477 SmallSet
<MachineInstr
*, 8> MergedInstrs
;
479 bool Changed
= false;
481 for (auto &MI
: MRI
.def_instructions(Reg
)) {
482 MachineOperand
*Imm
= nullptr;
483 for (auto &MO
: MI
.operands()) {
484 if ((MO
.isReg() && ((MO
.isDef() && MO
.getReg() != Reg
) || !MO
.isDef())) ||
485 (!MO
.isImm() && !MO
.isReg()) || (MO
.isImm() && Imm
)) {
488 } else if (MO
.isImm())
492 Inits
[Imm
->getImm()].push_front(&MI
);
494 Clobbers
.push_back(&MI
);
497 for (auto &Init
: Inits
) {
498 auto &Defs
= Init
.second
;
500 for (auto I1
= Defs
.begin(), E
= Defs
.end(); I1
!= E
; ) {
501 MachineInstr
*MI1
= *I1
;
503 for (auto I2
= std::next(I1
); I2
!= E
; ) {
504 MachineInstr
*MI2
= *I2
;
506 // Check any possible interference
507 auto interferes
= [&](MachineBasicBlock::iterator From
,
508 MachineBasicBlock::iterator To
) -> bool {
510 assert(MDT
.dominates(&*To
, &*From
));
512 auto interferes
= [&MDT
, From
, To
](MachineInstr
* &Clobber
) -> bool {
513 const MachineBasicBlock
*MBBFrom
= From
->getParent();
514 const MachineBasicBlock
*MBBTo
= To
->getParent();
515 bool MayClobberFrom
= isReachable(Clobber
, &*From
, MBBTo
, MDT
);
516 bool MayClobberTo
= isReachable(Clobber
, &*To
, MBBTo
, MDT
);
517 if (!MayClobberFrom
&& !MayClobberTo
)
519 if ((MayClobberFrom
&& !MayClobberTo
) ||
520 (!MayClobberFrom
&& MayClobberTo
))
522 // Both can clobber, this is not an interference only if both are
523 // dominated by Clobber and belong to the same block or if Clobber
524 // properly dominates To, given that To >> From, so it dominates
525 // both and located in a common dominator.
526 return !((MBBFrom
== MBBTo
&&
527 MDT
.dominates(Clobber
, &*From
) &&
528 MDT
.dominates(Clobber
, &*To
)) ||
529 MDT
.properlyDominates(Clobber
->getParent(), MBBTo
));
532 return (llvm::any_of(Clobbers
, interferes
)) ||
533 (llvm::any_of(Inits
, [&](InitListMap::value_type
&C
) {
534 return C
.first
!= Init
.first
&&
535 llvm::any_of(C
.second
, interferes
);
539 if (MDT
.dominates(MI1
, MI2
)) {
540 if (!interferes(MI2
, MI1
)) {
543 << printMBBReference(*MI2
->getParent()) << " " << *MI2
);
544 MergedInstrs
.insert(MI2
);
549 } else if (MDT
.dominates(MI2
, MI1
)) {
550 if (!interferes(MI1
, MI2
)) {
553 << printMBBReference(*MI1
->getParent()) << " " << *MI1
);
554 MergedInstrs
.insert(MI1
);
560 auto *MBB
= MDT
.findNearestCommonDominator(MI1
->getParent(),
567 MachineBasicBlock::iterator I
= getFirstNonPrologue(MBB
, TII
);
568 if (!interferes(MI1
, I
) && !interferes(MI2
, I
)) {
571 << printMBBReference(*MI1
->getParent()) << " " << *MI1
572 << "and moving from "
573 << printMBBReference(*MI2
->getParent()) << " to "
574 << printMBBReference(*I
->getParent()) << " " << *MI2
);
575 I
->getParent()->splice(I
, MI2
->getParent(), MI2
);
576 MergedInstrs
.insert(MI1
);
588 for (auto MI
: MergedInstrs
)
589 MI
->removeFromParent();
592 MRI
.clearKillFlags(Reg
);
597 bool SIFixSGPRCopies::runOnMachineFunction(MachineFunction
&MF
) {
598 const GCNSubtarget
&ST
= MF
.getSubtarget
<GCNSubtarget
>();
599 MachineRegisterInfo
&MRI
= MF
.getRegInfo();
600 const SIRegisterInfo
*TRI
= ST
.getRegisterInfo();
601 const SIInstrInfo
*TII
= ST
.getInstrInfo();
602 MDT
= &getAnalysis
<MachineDominatorTree
>();
604 SmallVector
<MachineInstr
*, 16> Worklist
;
606 for (MachineFunction::iterator BI
= MF
.begin(), BE
= MF
.end();
608 MachineBasicBlock
&MBB
= *BI
;
609 for (MachineBasicBlock::iterator I
= MBB
.begin(), E
= MBB
.end();
611 MachineInstr
&MI
= *I
;
613 switch (MI
.getOpcode()) {
618 case AMDGPU::SOFT_WQM
:
620 Register DstReg
= MI
.getOperand(0).getReg();
622 const TargetRegisterClass
*SrcRC
, *DstRC
;
623 std::tie(SrcRC
, DstRC
) = getCopyRegClasses(MI
, *TRI
, MRI
);
625 if (!Register::isVirtualRegister(DstReg
)) {
626 // If the destination register is a physical register there isn't
627 // really much we can do to fix this.
628 // Some special instructions use M0 as an input. Some even only use
629 // the first lane. Insert a readfirstlane and hope for the best.
630 if (DstReg
== AMDGPU::M0
&& TRI
->hasVectorRegisters(SrcRC
)) {
632 = MRI
.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass
);
634 BuildMI(MBB
, MI
, MI
.getDebugLoc(),
635 TII
->get(AMDGPU::V_READFIRSTLANE_B32
), TmpReg
)
636 .add(MI
.getOperand(1));
637 MI
.getOperand(1).setReg(TmpReg
);
643 if (isVGPRToSGPRCopy(SrcRC
, DstRC
, *TRI
)) {
644 Register SrcReg
= MI
.getOperand(1).getReg();
645 if (!Register::isVirtualRegister(SrcReg
)) {
646 TII
->moveToVALU(MI
, MDT
);
650 MachineInstr
*DefMI
= MRI
.getVRegDef(SrcReg
);
653 // If we are just copying an immediate, we can replace the copy with
655 if (isSafeToFoldImmIntoCopy(&MI
, DefMI
, TII
, SMovOp
, Imm
)) {
656 MI
.getOperand(1).ChangeToImmediate(Imm
);
657 MI
.addImplicitDefUseOperands(MF
);
658 MI
.setDesc(TII
->get(SMovOp
));
661 TII
->moveToVALU(MI
, MDT
);
662 } else if (isSGPRToVGPRCopy(SrcRC
, DstRC
, *TRI
)) {
663 tryChangeVGPRtoSGPRinCopy(MI
, TRI
, TII
);
669 Register Reg
= MI
.getOperand(0).getReg();
670 if (!TRI
->isSGPRClass(MRI
.getRegClass(Reg
)))
673 // We don't need to fix the PHI if the common dominator of the
674 // two incoming blocks terminates with a uniform branch.
675 bool HasVGPROperand
= phiHasVGPROperands(MI
, MRI
, TRI
, TII
);
676 if (MI
.getNumExplicitOperands() == 5 && !HasVGPROperand
) {
677 MachineBasicBlock
*MBB0
= MI
.getOperand(2).getMBB();
678 MachineBasicBlock
*MBB1
= MI
.getOperand(4).getMBB();
680 if (!predsHasDivergentTerminator(MBB0
, TRI
) &&
681 !predsHasDivergentTerminator(MBB1
, TRI
)) {
683 << "Not fixing PHI for uniform branch: " << MI
<< '\n');
688 // If a PHI node defines an SGPR and any of its operands are VGPRs,
689 // then we need to move it to the VALU.
691 // Also, if a PHI node defines an SGPR and has all SGPR operands
692 // we must move it to the VALU, because the SGPR operands will
693 // all end up being assigned the same register, which means
694 // there is a potential for a conflict if different threads take
695 // different control flow paths.
703 // sgpr2 = PHI sgpr0, sgpr1
714 // The one exception to this rule is when one of the operands
715 // is defined by a SI_BREAK, SI_IF_BREAK, or SI_ELSE_BREAK
716 // instruction. In this case, there we know the program will
717 // never enter the second block (the loop) without entering
718 // the first block (where the condition is computed), so there
719 // is no chance for values to be over-written.
721 SmallSet
<unsigned, 8> Visited
;
722 if (HasVGPROperand
|| !phiHasBreakDef(MI
, MRI
, Visited
)) {
723 LLVM_DEBUG(dbgs() << "Fixing PHI: " << MI
);
724 TII
->moveToVALU(MI
, MDT
);
729 case AMDGPU::REG_SEQUENCE
:
730 if (TRI
->hasVectorRegisters(TII
->getOpRegClass(MI
, 0)) ||
731 !hasVectorOperands(MI
, TRI
)) {
732 foldVGPRCopyIntoRegSequence(MI
, TRI
, TII
, MRI
);
736 LLVM_DEBUG(dbgs() << "Fixing REG_SEQUENCE: " << MI
);
738 TII
->moveToVALU(MI
, MDT
);
740 case AMDGPU::INSERT_SUBREG
: {
741 const TargetRegisterClass
*DstRC
, *Src0RC
, *Src1RC
;
742 DstRC
= MRI
.getRegClass(MI
.getOperand(0).getReg());
743 Src0RC
= MRI
.getRegClass(MI
.getOperand(1).getReg());
744 Src1RC
= MRI
.getRegClass(MI
.getOperand(2).getReg());
745 if (TRI
->isSGPRClass(DstRC
) &&
746 (TRI
->hasVectorRegisters(Src0RC
) ||
747 TRI
->hasVectorRegisters(Src1RC
))) {
748 LLVM_DEBUG(dbgs() << " Fixing INSERT_SUBREG: " << MI
);
749 TII
->moveToVALU(MI
, MDT
);
757 if (MF
.getTarget().getOptLevel() > CodeGenOpt::None
&& EnableM0Merge
)
758 hoistAndMergeSGPRInits(AMDGPU::M0
, MRI
, *MDT
, TII
);