blob: 566e0d3febc78e986f92c43185d8b670ba168b17 [file] [log] [blame]
Eugene Zelenko59e12822017-08-08 00:47:13 +00001//===- SIFixSGPRCopies.cpp - Remove potential VGPR => SGPR copies ---------===//
Tom Stellard2f7cdda2013-08-06 23:08:28 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10/// \file
11/// Copies from VGPR to SGPR registers are illegal and the register coalescer
12/// will sometimes generate these illegal copies in situations like this:
13///
14/// Register Class <vsrc> is the union of <vgpr> and <sgpr>
15///
16/// BB0:
Francis Visoiu Mistrih93ef1452017-11-30 12:12:19 +000017/// %0 <sgpr> = SCALAR_INST
18/// %1 <vsrc> = COPY %0 <sgpr>
Tom Stellard2f7cdda2013-08-06 23:08:28 +000019/// ...
20/// BRANCH %cond BB1, BB2
21/// BB1:
Francis Visoiu Mistrih93ef1452017-11-30 12:12:19 +000022/// %2 <vgpr> = VECTOR_INST
23/// %3 <vsrc> = COPY %2 <vgpr>
Tom Stellard2f7cdda2013-08-06 23:08:28 +000024/// BB2:
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +000025/// %4 <vsrc> = PHI %1 <vsrc>, <%bb.0>, %3 <vrsc>, <%bb.1>
Francis Visoiu Mistrih93ef1452017-11-30 12:12:19 +000026/// %5 <vgpr> = VECTOR_INST %4 <vsrc>
Tom Stellard2f7cdda2013-08-06 23:08:28 +000027///
NAKAMURA Takumi78e80cd2013-11-14 04:05:22 +000028///
Tom Stellard2f7cdda2013-08-06 23:08:28 +000029/// The coalescer will begin at BB0 and eliminate its copy, then the resulting
30/// code will look like this:
31///
32/// BB0:
Francis Visoiu Mistrih93ef1452017-11-30 12:12:19 +000033/// %0 <sgpr> = SCALAR_INST
Tom Stellard2f7cdda2013-08-06 23:08:28 +000034/// ...
35/// BRANCH %cond BB1, BB2
36/// BB1:
Francis Visoiu Mistrih93ef1452017-11-30 12:12:19 +000037/// %2 <vgpr> = VECTOR_INST
38/// %3 <vsrc> = COPY %2 <vgpr>
Tom Stellard2f7cdda2013-08-06 23:08:28 +000039/// BB2:
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +000040/// %4 <sgpr> = PHI %0 <sgpr>, <%bb.0>, %3 <vsrc>, <%bb.1>
Francis Visoiu Mistrih93ef1452017-11-30 12:12:19 +000041/// %5 <vgpr> = VECTOR_INST %4 <sgpr>
Tom Stellard2f7cdda2013-08-06 23:08:28 +000042///
43/// Now that the result of the PHI instruction is an SGPR, the register
Francis Visoiu Mistrih93ef1452017-11-30 12:12:19 +000044/// allocator is now forced to constrain the register class of %3 to
Tom Stellard2f7cdda2013-08-06 23:08:28 +000045/// <sgpr> so we end up with final code like this:
NAKAMURA Takumi78e80cd2013-11-14 04:05:22 +000046///
Tom Stellard2f7cdda2013-08-06 23:08:28 +000047/// BB0:
Francis Visoiu Mistrih93ef1452017-11-30 12:12:19 +000048/// %0 <sgpr> = SCALAR_INST
Tom Stellard2f7cdda2013-08-06 23:08:28 +000049/// ...
50/// BRANCH %cond BB1, BB2
51/// BB1:
Francis Visoiu Mistrih93ef1452017-11-30 12:12:19 +000052/// %2 <vgpr> = VECTOR_INST
53/// %3 <sgpr> = COPY %2 <vgpr>
Tom Stellard2f7cdda2013-08-06 23:08:28 +000054/// BB2:
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +000055/// %4 <sgpr> = PHI %0 <sgpr>, <%bb.0>, %3 <sgpr>, <%bb.1>
Francis Visoiu Mistrih93ef1452017-11-30 12:12:19 +000056/// %5 <vgpr> = VECTOR_INST %4 <sgpr>
Tom Stellard2f7cdda2013-08-06 23:08:28 +000057///
NAKAMURA Takumi78e80cd2013-11-14 04:05:22 +000058/// Now this code contains an illegal copy from a VGPR to an SGPR.
Tom Stellard2f7cdda2013-08-06 23:08:28 +000059///
60/// In order to avoid this problem, this pass searches for PHI instructions
61/// which define a <vsrc> register and constrains its definition class to
62/// <vgpr> if the user of the PHI's definition register is a vector instruction.
63/// If the PHI's definition class is constrained to <vgpr> then the coalescer
64/// will be unable to perform the COPY removal from the above example which
65/// ultimately led to the creation of an illegal COPY.
66//===----------------------------------------------------------------------===//
67
68#include "AMDGPU.h"
Eric Christopherd9134482014-08-04 21:25:23 +000069#include "AMDGPUSubtarget.h"
Tom Stellard2f7cdda2013-08-06 23:08:28 +000070#include "SIInstrInfo.h"
Eugene Zelenko59e12822017-08-08 00:47:13 +000071#include "SIRegisterInfo.h"
Tom Stellard44b30b42018-05-22 02:03:23 +000072#include "MCTargetDesc/AMDGPUMCTargetDesc.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000073#include "llvm/ADT/DenseSet.h"
Eugene Zelenko59e12822017-08-08 00:47:13 +000074#include "llvm/ADT/STLExtras.h"
75#include "llvm/ADT/SmallSet.h"
76#include "llvm/ADT/SmallVector.h"
77#include "llvm/CodeGen/MachineBasicBlock.h"
Tom Stellard0bc68812016-11-29 00:46:46 +000078#include "llvm/CodeGen/MachineDominators.h"
Eugene Zelenko59e12822017-08-08 00:47:13 +000079#include "llvm/CodeGen/MachineFunction.h"
Tom Stellard2f7cdda2013-08-06 23:08:28 +000080#include "llvm/CodeGen/MachineFunctionPass.h"
Eugene Zelenko59e12822017-08-08 00:47:13 +000081#include "llvm/CodeGen/MachineInstr.h"
Tom Stellard82166022013-11-13 23:36:37 +000082#include "llvm/CodeGen/MachineInstrBuilder.h"
Eugene Zelenko59e12822017-08-08 00:47:13 +000083#include "llvm/CodeGen/MachineOperand.h"
Tom Stellard2f7cdda2013-08-06 23:08:28 +000084#include "llvm/CodeGen/MachineRegisterInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000085#include "llvm/CodeGen/TargetRegisterInfo.h"
Eugene Zelenko59e12822017-08-08 00:47:13 +000086#include "llvm/Pass.h"
87#include "llvm/Support/CodeGen.h"
88#include "llvm/Support/CommandLine.h"
Tom Stellard82166022013-11-13 23:36:37 +000089#include "llvm/Support/Debug.h"
Hans Wennborga74fd702013-11-14 23:24:09 +000090#include "llvm/Support/raw_ostream.h"
Tom Stellard2f7cdda2013-08-06 23:08:28 +000091#include "llvm/Target/TargetMachine.h"
Eugene Zelenko59e12822017-08-08 00:47:13 +000092#include <cassert>
93#include <cstdint>
94#include <iterator>
95#include <list>
96#include <map>
97#include <tuple>
98#include <utility>
Tom Stellard2f7cdda2013-08-06 23:08:28 +000099
100using namespace llvm;
101
Matt Arsenault98f83942016-04-21 18:21:54 +0000102#define DEBUG_TYPE "si-fix-sgpr-copies"
Chandler Carruth84e68b22014-04-22 02:41:26 +0000103
Stanislav Mekhanoshinbd5394b2017-04-24 19:37:54 +0000104static cl::opt<bool> EnableM0Merge(
105 "amdgpu-enable-merge-m0",
106 cl::desc("Merge and hoist M0 initializations"),
107 cl::init(false));
108
Tom Stellard2f7cdda2013-08-06 23:08:28 +0000109namespace {
110
111class SIFixSGPRCopies : public MachineFunctionPass {
Tom Stellard0bc68812016-11-29 00:46:46 +0000112 MachineDominatorTree *MDT;
Alexander Timofeevb9347282018-04-25 12:32:46 +0000113
Matt Arsenault782c03b2015-11-03 22:30:13 +0000114public:
Tom Stellard2f7cdda2013-08-06 23:08:28 +0000115 static char ID;
Tom Stellard2f7cdda2013-08-06 23:08:28 +0000116
Eugene Zelenko59e12822017-08-08 00:47:13 +0000117 SIFixSGPRCopies() : MachineFunctionPass(ID) {}
Tom Stellard2f7cdda2013-08-06 23:08:28 +0000118
Craig Topper5656db42014-04-29 07:57:24 +0000119 bool runOnMachineFunction(MachineFunction &MF) override;
Tom Stellard2f7cdda2013-08-06 23:08:28 +0000120
Mehdi Amini117296c2016-10-01 02:56:57 +0000121 StringRef getPassName() const override { return "SI Fix SGPR copies"; }
Tom Stellard2f7cdda2013-08-06 23:08:28 +0000122
Matt Arsenault0cb85172015-09-25 17:21:28 +0000123 void getAnalysisUsage(AnalysisUsage &AU) const override {
Tom Stellard0bc68812016-11-29 00:46:46 +0000124 AU.addRequired<MachineDominatorTree>();
125 AU.addPreserved<MachineDominatorTree>();
Matt Arsenault0cb85172015-09-25 17:21:28 +0000126 AU.setPreservesCFG();
127 MachineFunctionPass::getAnalysisUsage(AU);
128 }
Tom Stellard2f7cdda2013-08-06 23:08:28 +0000129};
130
Eugene Zelenko59e12822017-08-08 00:47:13 +0000131} // end anonymous namespace
Tom Stellard2f7cdda2013-08-06 23:08:28 +0000132
Tom Stellard0bc68812016-11-29 00:46:46 +0000133INITIALIZE_PASS_BEGIN(SIFixSGPRCopies, DEBUG_TYPE,
134 "SI Fix SGPR copies", false, false)
Stanislav Mekhanoshinbd5394b2017-04-24 19:37:54 +0000135INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
Tom Stellard0bc68812016-11-29 00:46:46 +0000136INITIALIZE_PASS_END(SIFixSGPRCopies, DEBUG_TYPE,
137 "SI Fix SGPR copies", false, false)
138
Tom Stellard2f7cdda2013-08-06 23:08:28 +0000139char SIFixSGPRCopies::ID = 0;
140
Matt Arsenault782c03b2015-11-03 22:30:13 +0000141char &llvm::SIFixSGPRCopiesID = SIFixSGPRCopies::ID;
142
143FunctionPass *llvm::createSIFixSGPRCopiesPass() {
144 return new SIFixSGPRCopies();
Tom Stellard2f7cdda2013-08-06 23:08:28 +0000145}
146
Tom Stellard82166022013-11-13 23:36:37 +0000147static bool hasVGPROperands(const MachineInstr &MI, 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 !TargetRegisterInfo::isVirtualRegister(MI.getOperand(i).getReg()))
152 continue;
153
154 if (TRI->hasVGPRs(MRI.getRegClass(MI.getOperand(i).getReg())))
155 return true;
156 }
157 return false;
158}
159
Matt Arsenault0de924b2015-11-02 23:15:42 +0000160static std::pair<const TargetRegisterClass *, const TargetRegisterClass *>
161getCopyRegClasses(const MachineInstr &Copy,
162 const SIRegisterInfo &TRI,
163 const MachineRegisterInfo &MRI) {
Tom Stellard82166022013-11-13 23:36:37 +0000164 unsigned DstReg = Copy.getOperand(0).getReg();
165 unsigned SrcReg = Copy.getOperand(1).getReg();
Matt Arsenault120a0c92014-12-03 05:22:39 +0000166
Matt Arsenaultf0d9e472015-10-13 00:07:54 +0000167 const TargetRegisterClass *SrcRC =
168 TargetRegisterInfo::isVirtualRegister(SrcReg) ?
169 MRI.getRegClass(SrcReg) :
170 TRI.getPhysRegClass(SrcReg);
Tom Stellardd33d7f12015-05-12 14:18:11 +0000171
Matt Arsenaultf0d9e472015-10-13 00:07:54 +0000172 // We don't really care about the subregister here.
173 // SrcRC = TRI.getSubRegClass(SrcRC, Copy.getOperand(1).getSubReg());
Tom Stellard82166022013-11-13 23:36:37 +0000174
Matt Arsenaultf0d9e472015-10-13 00:07:54 +0000175 const TargetRegisterClass *DstRC =
176 TargetRegisterInfo::isVirtualRegister(DstReg) ?
177 MRI.getRegClass(DstReg) :
178 TRI.getPhysRegClass(DstReg);
179
180 return std::make_pair(SrcRC, DstRC);
181}
182
Matt Arsenault0de924b2015-11-02 23:15:42 +0000183static bool isVGPRToSGPRCopy(const TargetRegisterClass *SrcRC,
184 const TargetRegisterClass *DstRC,
185 const SIRegisterInfo &TRI) {
Matt Arsenaultf0d9e472015-10-13 00:07:54 +0000186 return TRI.isSGPRClass(DstRC) && TRI.hasVGPRs(SrcRC);
187}
188
Matt Arsenault0de924b2015-11-02 23:15:42 +0000189static bool isSGPRToVGPRCopy(const TargetRegisterClass *SrcRC,
190 const TargetRegisterClass *DstRC,
191 const SIRegisterInfo &TRI) {
Matt Arsenaultf0d9e472015-10-13 00:07:54 +0000192 return TRI.isSGPRClass(SrcRC) && TRI.hasVGPRs(DstRC);
Tom Stellard82166022013-11-13 23:36:37 +0000193}
194
Stanislav Mekhanoshin465a1ff2017-06-20 18:32:42 +0000195static 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 unsigned DstReg = MI.getOperand(0).getReg();
201 unsigned SrcReg = Src.getReg();
202 if (!TargetRegisterInfo::isVirtualRegister(SrcReg) ||
203 !TargetRegisterInfo::isVirtualRegister(DstReg))
204 return false;
205
206 for (const auto &MO : MRI.reg_nodbg_operands(DstReg)) {
207 const auto *UseMI = MO.getParent();
208 if (UseMI == &MI)
209 continue;
210 if (MO.isDef() || UseMI->getParent() != MI.getParent() ||
211 UseMI->getOpcode() <= TargetOpcode::GENERIC_OP_END ||
212 !TII->isOperandLegal(*UseMI, UseMI->getOperandNo(&MO), &Src))
213 return false;
214 }
215 // Change VGPR to SGPR destination.
216 MRI.setRegClass(DstReg, TRI->getEquivalentSGPRClass(MRI.getRegClass(DstReg)));
217 return true;
218}
219
Matt Arsenault0de924b2015-11-02 23:15:42 +0000220// Distribute an SGPR->VGPR copy of a REG_SEQUENCE into a VGPR REG_SEQUENCE.
221//
222// SGPRx = ...
223// SGPRy = REG_SEQUENCE SGPRx, sub0 ...
224// VGPRz = COPY SGPRy
225//
226// ==>
227//
228// VGPRx = COPY SGPRx
229// VGPRz = REG_SEQUENCE VGPRx, sub0
230//
231// This exposes immediate folding opportunities when materializing 64-bit
232// immediates.
233static bool foldVGPRCopyIntoRegSequence(MachineInstr &MI,
234 const SIRegisterInfo *TRI,
235 const SIInstrInfo *TII,
236 MachineRegisterInfo &MRI) {
237 assert(MI.isRegSequence());
238
239 unsigned DstReg = MI.getOperand(0).getReg();
240 if (!TRI->isSGPRClass(MRI.getRegClass(DstReg)))
241 return false;
242
243 if (!MRI.hasOneUse(DstReg))
244 return false;
245
246 MachineInstr &CopyUse = *MRI.use_instr_begin(DstReg);
247 if (!CopyUse.isCopy())
248 return false;
249
Matt Arsenaultfe78ffb2017-04-11 22:29:19 +0000250 // It is illegal to have vreg inputs to a physreg defining reg_sequence.
251 if (TargetRegisterInfo::isPhysicalRegister(CopyUse.getOperand(0).getReg()))
252 return false;
253
Matt Arsenault0de924b2015-11-02 23:15:42 +0000254 const TargetRegisterClass *SrcRC, *DstRC;
255 std::tie(SrcRC, DstRC) = getCopyRegClasses(CopyUse, *TRI, MRI);
256
257 if (!isSGPRToVGPRCopy(SrcRC, DstRC, *TRI))
258 return false;
259
Stanislav Mekhanoshin465a1ff2017-06-20 18:32:42 +0000260 if (tryChangeVGPRtoSGPRinCopy(CopyUse, TRI, TII))
261 return true;
262
Matt Arsenault0de924b2015-11-02 23:15:42 +0000263 // TODO: Could have multiple extracts?
264 unsigned SubReg = CopyUse.getOperand(1).getSubReg();
265 if (SubReg != AMDGPU::NoSubRegister)
266 return false;
267
268 MRI.setRegClass(DstReg, DstRC);
269
270 // SGPRx = ...
271 // SGPRy = REG_SEQUENCE SGPRx, sub0 ...
272 // VGPRz = COPY SGPRy
273
274 // =>
275 // VGPRx = COPY SGPRx
276 // VGPRz = REG_SEQUENCE VGPRx, sub0
277
278 MI.getOperand(0).setReg(CopyUse.getOperand(0).getReg());
279
280 for (unsigned I = 1, N = MI.getNumOperands(); I != N; I += 2) {
281 unsigned SrcReg = MI.getOperand(I).getReg();
Nicolai Haehnle82fc9622016-01-07 17:10:29 +0000282 unsigned SrcSubReg = MI.getOperand(I).getSubReg();
Matt Arsenault0de924b2015-11-02 23:15:42 +0000283
284 const TargetRegisterClass *SrcRC = MRI.getRegClass(SrcReg);
285 assert(TRI->isSGPRClass(SrcRC) &&
286 "Expected SGPR REG_SEQUENCE to only have SGPR inputs");
287
288 SrcRC = TRI->getSubRegClass(SrcRC, SrcSubReg);
289 const TargetRegisterClass *NewSrcRC = TRI->getEquivalentVGPRClass(SrcRC);
290
291 unsigned TmpReg = MRI.createVirtualRegister(NewSrcRC);
292
Diana Picus116bbab2017-01-13 09:58:52 +0000293 BuildMI(*MI.getParent(), &MI, MI.getDebugLoc(), TII->get(AMDGPU::COPY),
294 TmpReg)
295 .add(MI.getOperand(I));
Matt Arsenault0de924b2015-11-02 23:15:42 +0000296
297 MI.getOperand(I).setReg(TmpReg);
298 }
299
300 CopyUse.eraseFromParent();
301 return true;
302}
303
Tom Stellard9fdbec82016-11-11 23:35:42 +0000304static bool phiHasVGPROperands(const MachineInstr &PHI,
305 const MachineRegisterInfo &MRI,
306 const SIRegisterInfo *TRI,
307 const SIInstrInfo *TII) {
Tom Stellard9fdbec82016-11-11 23:35:42 +0000308 for (unsigned i = 1; i < PHI.getNumOperands(); i += 2) {
309 unsigned Reg = PHI.getOperand(i).getReg();
310 if (TRI->hasVGPRs(MRI.getRegClass(Reg)))
311 return true;
312 }
313 return false;
314}
Eugene Zelenko59e12822017-08-08 00:47:13 +0000315
Tom Stellard9fdbec82016-11-11 23:35:42 +0000316static bool phiHasBreakDef(const MachineInstr &PHI,
317 const MachineRegisterInfo &MRI,
318 SmallSet<unsigned, 8> &Visited) {
Tom Stellard9fdbec82016-11-11 23:35:42 +0000319 for (unsigned i = 1; i < PHI.getNumOperands(); i += 2) {
320 unsigned Reg = PHI.getOperand(i).getReg();
321 if (Visited.count(Reg))
322 continue;
323
324 Visited.insert(Reg);
325
Matt Arsenault2a803692017-04-29 01:26:34 +0000326 MachineInstr *DefInstr = MRI.getVRegDef(Reg);
Tom Stellard9fdbec82016-11-11 23:35:42 +0000327 switch (DefInstr->getOpcode()) {
328 default:
329 break;
330 case AMDGPU::SI_BREAK:
331 case AMDGPU::SI_IF_BREAK:
332 case AMDGPU::SI_ELSE_BREAK:
333 return true;
334 case AMDGPU::PHI:
335 if (phiHasBreakDef(*DefInstr, MRI, Visited))
336 return true;
337 }
338 }
339 return false;
340}
341
Tom Stellard0bc68812016-11-29 00:46:46 +0000342static bool hasTerminatorThatModifiesExec(const MachineBasicBlock &MBB,
343 const TargetRegisterInfo &TRI) {
344 for (MachineBasicBlock::const_iterator I = MBB.getFirstTerminator(),
345 E = MBB.end(); I != E; ++I) {
346 if (I->modifiesRegister(AMDGPU::EXEC, &TRI))
347 return true;
348 }
349 return false;
350}
351
Tom Stellard00cfa742016-12-06 21:13:30 +0000352static bool isSafeToFoldImmIntoCopy(const MachineInstr *Copy,
353 const MachineInstr *MoveImm,
354 const SIInstrInfo *TII,
355 unsigned &SMovOp,
356 int64_t &Imm) {
Connor Abbott8c217d02017-08-04 18:36:49 +0000357 if (Copy->getOpcode() != AMDGPU::COPY)
358 return false;
359
Tom Stellard00cfa742016-12-06 21:13:30 +0000360 if (!MoveImm->isMoveImmediate())
361 return false;
362
363 const MachineOperand *ImmOp =
364 TII->getNamedOperand(*MoveImm, AMDGPU::OpName::src0);
365 if (!ImmOp->isImm())
366 return false;
367
368 // FIXME: Handle copies with sub-regs.
369 if (Copy->getOperand(0).getSubReg())
370 return false;
371
372 switch (MoveImm->getOpcode()) {
373 default:
374 return false;
375 case AMDGPU::V_MOV_B32_e32:
376 SMovOp = AMDGPU::S_MOV_B32;
377 break;
378 case AMDGPU::V_MOV_B64_PSEUDO:
379 SMovOp = AMDGPU::S_MOV_B64;
380 break;
381 }
382 Imm = ImmOp->getImm();
383 return true;
384}
385
Stanislav Mekhanoshinbd5394b2017-04-24 19:37:54 +0000386template <class UnaryPredicate>
387bool searchPredecessors(const MachineBasicBlock *MBB,
388 const MachineBasicBlock *CutOff,
389 UnaryPredicate Predicate) {
Stanislav Mekhanoshinbd5394b2017-04-24 19:37:54 +0000390 if (MBB == CutOff)
391 return false;
392
Eugene Zelenko59e12822017-08-08 00:47:13 +0000393 DenseSet<const MachineBasicBlock *> Visited;
394 SmallVector<MachineBasicBlock *, 4> Worklist(MBB->pred_begin(),
395 MBB->pred_end());
Wei Ding74da3502017-04-12 23:51:47 +0000396
397 while (!Worklist.empty()) {
Stanislav Mekhanoshinbd5394b2017-04-24 19:37:54 +0000398 MachineBasicBlock *MBB = Worklist.pop_back_val();
Wei Ding74da3502017-04-12 23:51:47 +0000399
Stanislav Mekhanoshinbd5394b2017-04-24 19:37:54 +0000400 if (!Visited.insert(MBB).second)
Wei Ding74da3502017-04-12 23:51:47 +0000401 continue;
Stanislav Mekhanoshinbd5394b2017-04-24 19:37:54 +0000402 if (MBB == CutOff)
403 continue;
404 if (Predicate(MBB))
Wei Ding74da3502017-04-12 23:51:47 +0000405 return true;
406
Stanislav Mekhanoshinbd5394b2017-04-24 19:37:54 +0000407 Worklist.append(MBB->pred_begin(), MBB->pred_end());
Wei Ding74da3502017-04-12 23:51:47 +0000408 }
409
410 return false;
411}
412
Alexander Timofeevb9347282018-04-25 12:32:46 +0000413static bool predsHasDivergentTerminator(MachineBasicBlock *MBB,
414 const TargetRegisterInfo *TRI) {
415 return searchPredecessors(MBB, nullptr, [TRI](MachineBasicBlock *MBB) {
416 return hasTerminatorThatModifiesExec(*MBB, *TRI); });
417}
418
Stanislav Mekhanoshinbd5394b2017-04-24 19:37:54 +0000419// Checks if there is potential path From instruction To instruction.
420// If CutOff is specified and it sits in between of that path we ignore
421// a higher portion of the path and report it is not reachable.
422static bool isReachable(const MachineInstr *From,
423 const MachineInstr *To,
424 const MachineBasicBlock *CutOff,
425 MachineDominatorTree &MDT) {
426 // If either From block dominates To block or instructions are in the same
427 // block and From is higher.
428 if (MDT.dominates(From, To))
429 return true;
430
431 const MachineBasicBlock *MBBFrom = From->getParent();
432 const MachineBasicBlock *MBBTo = To->getParent();
433 if (MBBFrom == MBBTo)
434 return false;
435
436 // Instructions are in different blocks, do predecessor search.
437 // We should almost never get here since we do not usually produce M0 stores
438 // other than -1.
439 return searchPredecessors(MBBTo, CutOff, [MBBFrom]
440 (const MachineBasicBlock *MBB) { return MBB == MBBFrom; });
441}
442
443// Hoist and merge identical SGPR initializations into a common predecessor.
444// This is intended to combine M0 initializations, but can work with any
445// SGPR. A VGPR cannot be processed since we cannot guarantee vector
446// executioon.
447static bool hoistAndMergeSGPRInits(unsigned Reg,
448 const MachineRegisterInfo &MRI,
449 MachineDominatorTree &MDT) {
450 // List of inits by immediate value.
Eugene Zelenko59e12822017-08-08 00:47:13 +0000451 using InitListMap = std::map<unsigned, std::list<MachineInstr *>>;
Stanislav Mekhanoshinbd5394b2017-04-24 19:37:54 +0000452 InitListMap Inits;
453 // List of clobbering instructions.
454 SmallVector<MachineInstr*, 8> Clobbers;
455 bool Changed = false;
456
457 for (auto &MI : MRI.def_instructions(Reg)) {
458 MachineOperand *Imm = nullptr;
459 for (auto &MO: MI.operands()) {
460 if ((MO.isReg() && ((MO.isDef() && MO.getReg() != Reg) || !MO.isDef())) ||
461 (!MO.isImm() && !MO.isReg()) || (MO.isImm() && Imm)) {
462 Imm = nullptr;
463 break;
464 } else if (MO.isImm())
465 Imm = &MO;
466 }
467 if (Imm)
468 Inits[Imm->getImm()].push_front(&MI);
469 else
470 Clobbers.push_back(&MI);
471 }
472
473 for (auto &Init : Inits) {
474 auto &Defs = Init.second;
475
476 for (auto I1 = Defs.begin(), E = Defs.end(); I1 != E; ) {
477 MachineInstr *MI1 = *I1;
478
479 for (auto I2 = std::next(I1); I2 != E; ) {
480 MachineInstr *MI2 = *I2;
481
482 // Check any possible interference
483 auto intereferes = [&](MachineBasicBlock::iterator From,
484 MachineBasicBlock::iterator To) -> bool {
485
486 assert(MDT.dominates(&*To, &*From));
487
488 auto interferes = [&MDT, From, To](MachineInstr* &Clobber) -> bool {
489 const MachineBasicBlock *MBBFrom = From->getParent();
490 const MachineBasicBlock *MBBTo = To->getParent();
491 bool MayClobberFrom = isReachable(Clobber, &*From, MBBTo, MDT);
492 bool MayClobberTo = isReachable(Clobber, &*To, MBBTo, MDT);
493 if (!MayClobberFrom && !MayClobberTo)
494 return false;
495 if ((MayClobberFrom && !MayClobberTo) ||
496 (!MayClobberFrom && MayClobberTo))
497 return true;
498 // Both can clobber, this is not an interference only if both are
499 // dominated by Clobber and belong to the same block or if Clobber
500 // properly dominates To, given that To >> From, so it dominates
501 // both and located in a common dominator.
502 return !((MBBFrom == MBBTo &&
503 MDT.dominates(Clobber, &*From) &&
504 MDT.dominates(Clobber, &*To)) ||
505 MDT.properlyDominates(Clobber->getParent(), MBBTo));
506 };
507
Eugene Zelenko59e12822017-08-08 00:47:13 +0000508 return (llvm::any_of(Clobbers, interferes)) ||
509 (llvm::any_of(Inits, [&](InitListMap::value_type &C) {
510 return C.first != Init.first &&
511 llvm::any_of(C.second, interferes);
Stanislav Mekhanoshinbd5394b2017-04-24 19:37:54 +0000512 }));
513 };
514
515 if (MDT.dominates(MI1, MI2)) {
516 if (!intereferes(MI2, MI1)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000517 LLVM_DEBUG(dbgs()
518 << "Erasing from "
519 << printMBBReference(*MI2->getParent()) << " " << *MI2);
Stanislav Mekhanoshinbd5394b2017-04-24 19:37:54 +0000520 MI2->eraseFromParent();
521 Defs.erase(I2++);
522 Changed = true;
523 continue;
524 }
525 } else if (MDT.dominates(MI2, MI1)) {
526 if (!intereferes(MI1, MI2)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000527 LLVM_DEBUG(dbgs()
528 << "Erasing from "
529 << printMBBReference(*MI1->getParent()) << " " << *MI1);
Stanislav Mekhanoshinbd5394b2017-04-24 19:37:54 +0000530 MI1->eraseFromParent();
531 Defs.erase(I1++);
532 Changed = true;
533 break;
534 }
535 } else {
536 auto *MBB = MDT.findNearestCommonDominator(MI1->getParent(),
537 MI2->getParent());
538 if (!MBB) {
539 ++I2;
540 continue;
541 }
542
543 MachineBasicBlock::iterator I = MBB->getFirstNonPHI();
544 if (!intereferes(MI1, I) && !intereferes(MI2, I)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000545 LLVM_DEBUG(dbgs()
546 << "Erasing from "
547 << printMBBReference(*MI1->getParent()) << " " << *MI1
548 << "and moving from "
549 << printMBBReference(*MI2->getParent()) << " to "
550 << printMBBReference(*I->getParent()) << " " << *MI2);
Stanislav Mekhanoshinbd5394b2017-04-24 19:37:54 +0000551 I->getParent()->splice(I, MI2->getParent(), MI2);
552 MI1->eraseFromParent();
553 Defs.erase(I1++);
554 Changed = true;
555 break;
556 }
557 }
558 ++I2;
559 }
560 ++I1;
561 }
562 }
563
564 if (Changed)
565 MRI.clearKillFlags(Reg);
566
567 return Changed;
568}
569
Tom Stellard2f7cdda2013-08-06 23:08:28 +0000570bool SIFixSGPRCopies::runOnMachineFunction(MachineFunction &MF) {
Tom Stellard5bfbae52018-07-11 20:59:01 +0000571 const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>();
Tom Stellard2f7cdda2013-08-06 23:08:28 +0000572 MachineRegisterInfo &MRI = MF.getRegInfo();
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000573 const SIRegisterInfo *TRI = ST.getRegisterInfo();
574 const SIInstrInfo *TII = ST.getInstrInfo();
Tom Stellard0bc68812016-11-29 00:46:46 +0000575 MDT = &getAnalysis<MachineDominatorTree>();
Matt Arsenaultf1aebbf2015-11-02 23:30:48 +0000576
577 SmallVector<MachineInstr *, 16> Worklist;
578
Tom Stellard2f7cdda2013-08-06 23:08:28 +0000579 for (MachineFunction::iterator BI = MF.begin(), BE = MF.end();
580 BI != BE; ++BI) {
Tom Stellard2f7cdda2013-08-06 23:08:28 +0000581 MachineBasicBlock &MBB = *BI;
582 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
Matt Arsenaultf1aebbf2015-11-02 23:30:48 +0000583 I != E; ++I) {
Tom Stellard2f7cdda2013-08-06 23:08:28 +0000584 MachineInstr &MI = *I;
Tom Stellard82166022013-11-13 23:36:37 +0000585
586 switch (MI.getOpcode()) {
Matt Arsenault85441dd2015-09-21 16:27:22 +0000587 default:
588 continue;
Connor Abbott8c217d02017-08-04 18:36:49 +0000589 case AMDGPU::COPY:
Connor Abbott92638ab2017-08-04 18:36:52 +0000590 case AMDGPU::WQM:
591 case AMDGPU::WWM: {
Matt Arsenaultf0d9e472015-10-13 00:07:54 +0000592 // If the destination register is a physical register there isn't really
593 // much we can do to fix this.
594 if (!TargetRegisterInfo::isVirtualRegister(MI.getOperand(0).getReg()))
595 continue;
596
597 const TargetRegisterClass *SrcRC, *DstRC;
598 std::tie(SrcRC, DstRC) = getCopyRegClasses(MI, *TRI, MRI);
599 if (isVGPRToSGPRCopy(SrcRC, DstRC, *TRI)) {
Matt Arsenault2a803692017-04-29 01:26:34 +0000600 unsigned SrcReg = MI.getOperand(1).getReg();
601 if (!TargetRegisterInfo::isVirtualRegister(SrcReg)) {
602 TII->moveToVALU(MI);
603 break;
604 }
605
606 MachineInstr *DefMI = MRI.getVRegDef(SrcReg);
Tom Stellard00cfa742016-12-06 21:13:30 +0000607 unsigned SMovOp;
608 int64_t Imm;
609 // If we are just copying an immediate, we can replace the copy with
610 // s_mov_b32.
611 if (isSafeToFoldImmIntoCopy(&MI, DefMI, TII, SMovOp, Imm)) {
612 MI.getOperand(1).ChangeToImmediate(Imm);
613 MI.addImplicitDefUseOperands(MF);
614 MI.setDesc(TII->get(SMovOp));
615 break;
616 }
Matt Arsenault85441dd2015-09-21 16:27:22 +0000617 TII->moveToVALU(MI);
Stanislav Mekhanoshin465a1ff2017-06-20 18:32:42 +0000618 } else if (isSGPRToVGPRCopy(SrcRC, DstRC, *TRI)) {
619 tryChangeVGPRtoSGPRinCopy(MI, TRI, TII);
Matt Arsenault85441dd2015-09-21 16:27:22 +0000620 }
621
622 break;
623 }
Tom Stellard82166022013-11-13 23:36:37 +0000624 case AMDGPU::PHI: {
Tom Stellard82166022013-11-13 23:36:37 +0000625 unsigned Reg = MI.getOperand(0).getReg();
Tom Stellard82166022013-11-13 23:36:37 +0000626 if (!TRI->isSGPRClass(MRI.getRegClass(Reg)))
627 break;
628
Alexander Timofeevb9347282018-04-25 12:32:46 +0000629 // We don't need to fix the PHI if the common dominator of the
630 // two incoming blocks terminates with a uniform branch.
Changpeng Fangef4dbb42017-08-03 16:37:02 +0000631 bool HasVGPROperand = phiHasVGPROperands(MI, MRI, TRI, TII);
Alexander Timofeevb9347282018-04-25 12:32:46 +0000632 if (MI.getNumExplicitOperands() == 5 && !HasVGPROperand) {
633 MachineBasicBlock *MBB0 = MI.getOperand(2).getMBB();
634 MachineBasicBlock *MBB1 = MI.getOperand(4).getMBB();
635
636 if (!predsHasDivergentTerminator(MBB0, TRI) &&
637 !predsHasDivergentTerminator(MBB1, TRI)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000638 LLVM_DEBUG(dbgs()
639 << "Not fixing PHI for uniform branch: " << MI << '\n');
Tom Stellard0bc68812016-11-29 00:46:46 +0000640 break;
641 }
642 }
643
Tom Stellard82166022013-11-13 23:36:37 +0000644 // If a PHI node defines an SGPR and any of its operands are VGPRs,
645 // then we need to move it to the VALU.
Tom Stellarddeb3f9e2014-09-24 01:33:26 +0000646 //
647 // Also, if a PHI node defines an SGPR and has all SGPR operands
648 // we must move it to the VALU, because the SGPR operands will
649 // all end up being assigned the same register, which means
650 // there is a potential for a conflict if different threads take
Matt Arsenaultbfaab762014-10-17 00:36:20 +0000651 // different control flow paths.
Tom Stellarddeb3f9e2014-09-24 01:33:26 +0000652 //
653 // For Example:
654 //
655 // sgpr0 = def;
656 // ...
657 // sgpr1 = def;
658 // ...
659 // sgpr2 = PHI sgpr0, sgpr1
660 // use sgpr2;
661 //
662 // Will Become:
663 //
664 // sgpr2 = def;
665 // ...
666 // sgpr2 = def;
667 // ...
668 // use sgpr2
669 //
Tom Stellarddeb3f9e2014-09-24 01:33:26 +0000670 // The one exception to this rule is when one of the operands
671 // is defined by a SI_BREAK, SI_IF_BREAK, or SI_ELSE_BREAK
672 // instruction. In this case, there we know the program will
673 // never enter the second block (the loop) without entering
674 // the first block (where the condition is computed), so there
675 // is no chance for values to be over-written.
676
Tom Stellard9fdbec82016-11-11 23:35:42 +0000677 SmallSet<unsigned, 8> Visited;
Changpeng Fangef4dbb42017-08-03 16:37:02 +0000678 if (HasVGPROperand || !phiHasBreakDef(MI, MRI, Visited)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000679 LLVM_DEBUG(dbgs() << "Fixing PHI: " << MI);
Tom Stellarddeb3f9e2014-09-24 01:33:26 +0000680 TII->moveToVALU(MI);
Tom Stellard9fdbec82016-11-11 23:35:42 +0000681 }
Tom Stellard82166022013-11-13 23:36:37 +0000682 break;
683 }
Eugene Zelenko59e12822017-08-08 00:47:13 +0000684 case AMDGPU::REG_SEQUENCE:
Tom Stellard82166022013-11-13 23:36:37 +0000685 if (TRI->hasVGPRs(TII->getOpRegClass(MI, 0)) ||
Matt Arsenault0de924b2015-11-02 23:15:42 +0000686 !hasVGPROperands(MI, TRI)) {
687 foldVGPRCopyIntoRegSequence(MI, TRI, TII, MRI);
Tom Stellard82166022013-11-13 23:36:37 +0000688 continue;
Matt Arsenault0de924b2015-11-02 23:15:42 +0000689 }
Tom Stellard82166022013-11-13 23:36:37 +0000690
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000691 LLVM_DEBUG(dbgs() << "Fixing REG_SEQUENCE: " << MI);
Tom Stellard82166022013-11-13 23:36:37 +0000692
693 TII->moveToVALU(MI);
Tom Stellard82166022013-11-13 23:36:37 +0000694 break;
Tom Stellard204e61b2014-04-07 19:45:45 +0000695 case AMDGPU::INSERT_SUBREG: {
Tom Stellarda5687382014-05-15 14:41:55 +0000696 const TargetRegisterClass *DstRC, *Src0RC, *Src1RC;
Tom Stellard204e61b2014-04-07 19:45:45 +0000697 DstRC = MRI.getRegClass(MI.getOperand(0).getReg());
Tom Stellarda5687382014-05-15 14:41:55 +0000698 Src0RC = MRI.getRegClass(MI.getOperand(1).getReg());
699 Src1RC = MRI.getRegClass(MI.getOperand(2).getReg());
700 if (TRI->isSGPRClass(DstRC) &&
701 (TRI->hasVGPRs(Src0RC) || TRI->hasVGPRs(Src1RC))) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000702 LLVM_DEBUG(dbgs() << " Fixing INSERT_SUBREG: " << MI);
Tom Stellarda5687382014-05-15 14:41:55 +0000703 TII->moveToVALU(MI);
704 }
705 break;
Tom Stellard204e61b2014-04-07 19:45:45 +0000706 }
Tom Stellard2f7cdda2013-08-06 23:08:28 +0000707 }
708 }
709 }
Matt Arsenault6f679782014-11-17 21:11:34 +0000710
Stanislav Mekhanoshinbd5394b2017-04-24 19:37:54 +0000711 if (MF.getTarget().getOptLevel() > CodeGenOpt::None && EnableM0Merge)
712 hoistAndMergeSGPRInits(AMDGPU::M0, MRI, *MDT);
713
Matt Arsenault6f679782014-11-17 21:11:34 +0000714 return true;
Tom Stellard2f7cdda2013-08-06 23:08:28 +0000715}