LLVM  8.0.1
SIFixSGPRCopies.cpp
Go to the documentation of this file.
1 //===- SIFixSGPRCopies.cpp - Remove potential VGPR => SGPR copies ---------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 /// \file
11 /// 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:
17 /// %0 <sgpr> = SCALAR_INST
18 /// %1 <vsrc> = COPY %0 <sgpr>
19 /// ...
20 /// BRANCH %cond BB1, BB2
21 /// BB1:
22 /// %2 <vgpr> = VECTOR_INST
23 /// %3 <vsrc> = COPY %2 <vgpr>
24 /// BB2:
25 /// %4 <vsrc> = PHI %1 <vsrc>, <%bb.0>, %3 <vrsc>, <%bb.1>
26 /// %5 <vgpr> = VECTOR_INST %4 <vsrc>
27 ///
28 ///
29 /// The coalescer will begin at BB0 and eliminate its copy, then the resulting
30 /// code will look like this:
31 ///
32 /// BB0:
33 /// %0 <sgpr> = SCALAR_INST
34 /// ...
35 /// BRANCH %cond BB1, BB2
36 /// BB1:
37 /// %2 <vgpr> = VECTOR_INST
38 /// %3 <vsrc> = COPY %2 <vgpr>
39 /// BB2:
40 /// %4 <sgpr> = PHI %0 <sgpr>, <%bb.0>, %3 <vsrc>, <%bb.1>
41 /// %5 <vgpr> = VECTOR_INST %4 <sgpr>
42 ///
43 /// Now that the result of the PHI instruction is an SGPR, the register
44 /// allocator is now forced to constrain the register class of %3 to
45 /// <sgpr> so we end up with final code like this:
46 ///
47 /// BB0:
48 /// %0 <sgpr> = SCALAR_INST
49 /// ...
50 /// BRANCH %cond BB1, BB2
51 /// BB1:
52 /// %2 <vgpr> = VECTOR_INST
53 /// %3 <sgpr> = COPY %2 <vgpr>
54 /// BB2:
55 /// %4 <sgpr> = PHI %0 <sgpr>, <%bb.0>, %3 <sgpr>, <%bb.1>
56 /// %5 <vgpr> = VECTOR_INST %4 <sgpr>
57 ///
58 /// Now this code contains an illegal copy from a VGPR to an SGPR.
59 ///
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"
69 #include "AMDGPUSubtarget.h"
70 #include "SIInstrInfo.h"
71 #include "SIRegisterInfo.h"
73 #include "llvm/ADT/DenseSet.h"
74 #include "llvm/ADT/STLExtras.h"
75 #include "llvm/ADT/SmallSet.h"
76 #include "llvm/ADT/SmallVector.h"
86 #include "llvm/Pass.h"
87 #include "llvm/Support/CodeGen.h"
89 #include "llvm/Support/Debug.h"
92 #include <cassert>
93 #include <cstdint>
94 #include <iterator>
95 #include <list>
96 #include <map>
97 #include <tuple>
98 #include <utility>
99 
100 using namespace llvm;
101 
102 #define DEBUG_TYPE "si-fix-sgpr-copies"
103 
105  "amdgpu-enable-merge-m0",
106  cl::desc("Merge and hoist M0 initializations"),
107  cl::init(false));
108 
109 namespace {
110 
111 class SIFixSGPRCopies : public MachineFunctionPass {
113 
114 public:
115  static char ID;
116 
117  SIFixSGPRCopies() : MachineFunctionPass(ID) {}
118 
119  bool runOnMachineFunction(MachineFunction &MF) override;
120 
121  StringRef getPassName() const override { return "SI Fix SGPR copies"; }
122 
123  void getAnalysisUsage(AnalysisUsage &AU) const override {
126  AU.setPreservesCFG();
128  }
129 };
130 
131 } // end anonymous namespace
132 
133 INITIALIZE_PASS_BEGIN(SIFixSGPRCopies, DEBUG_TYPE,
134  "SI Fix SGPR copies", false, false)
137  "SI Fix SGPR copies", false, false)
138 
139 char SIFixSGPRCopies::ID = 0;
140 
141 char &llvm::SIFixSGPRCopiesID = SIFixSGPRCopies::ID;
142 
144  return new SIFixSGPRCopies();
145 }
146 
147 static bool hasVGPROperands(const MachineInstr &MI, const SIRegisterInfo *TRI) {
149  for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
150  if (!MI.getOperand(i).isReg() ||
152  continue;
153 
154  if (TRI->hasVGPRs(MRI.getRegClass(MI.getOperand(i).getReg())))
155  return true;
156  }
157  return false;
158 }
159 
160 static std::pair<const TargetRegisterClass *, const TargetRegisterClass *>
162  const SIRegisterInfo &TRI,
163  const MachineRegisterInfo &MRI) {
164  unsigned DstReg = Copy.getOperand(0).getReg();
165  unsigned SrcReg = Copy.getOperand(1).getReg();
166 
167  const TargetRegisterClass *SrcRC =
169  MRI.getRegClass(SrcReg) :
170  TRI.getPhysRegClass(SrcReg);
171 
172  // We don't really care about the subregister here.
173  // SrcRC = TRI.getSubRegClass(SrcRC, Copy.getOperand(1).getSubReg());
174 
175  const TargetRegisterClass *DstRC =
177  MRI.getRegClass(DstReg) :
178  TRI.getPhysRegClass(DstReg);
179 
180  return std::make_pair(SrcRC, DstRC);
181 }
182 
183 static bool isVGPRToSGPRCopy(const TargetRegisterClass *SrcRC,
184  const TargetRegisterClass *DstRC,
185  const SIRegisterInfo &TRI) {
186  return SrcRC != &AMDGPU::VReg_1RegClass && TRI.isSGPRClass(DstRC) &&
187  TRI.hasVGPRs(SrcRC);
188 }
189 
190 static bool isSGPRToVGPRCopy(const TargetRegisterClass *SrcRC,
191  const TargetRegisterClass *DstRC,
192  const SIRegisterInfo &TRI) {
193  return DstRC != &AMDGPU::VReg_1RegClass && TRI.isSGPRClass(SrcRC) &&
194  TRI.hasVGPRs(DstRC);
195 }
196 
198  const SIRegisterInfo *TRI,
199  const SIInstrInfo *TII) {
201  auto &Src = MI.getOperand(1);
202  unsigned DstReg = MI.getOperand(0).getReg();
203  unsigned SrcReg = Src.getReg();
206  return false;
207 
208  for (const auto &MO : MRI.reg_nodbg_operands(DstReg)) {
209  const auto *UseMI = MO.getParent();
210  if (UseMI == &MI)
211  continue;
212  if (MO.isDef() || UseMI->getParent() != MI.getParent() ||
213  UseMI->getOpcode() <= TargetOpcode::GENERIC_OP_END ||
214  !TII->isOperandLegal(*UseMI, UseMI->getOperandNo(&MO), &Src))
215  return false;
216  }
217  // Change VGPR to SGPR destination.
218  MRI.setRegClass(DstReg, TRI->getEquivalentSGPRClass(MRI.getRegClass(DstReg)));
219  return true;
220 }
221 
222 // Distribute an SGPR->VGPR copy of a REG_SEQUENCE into a VGPR REG_SEQUENCE.
223 //
224 // SGPRx = ...
225 // SGPRy = REG_SEQUENCE SGPRx, sub0 ...
226 // VGPRz = COPY SGPRy
227 //
228 // ==>
229 //
230 // VGPRx = COPY SGPRx
231 // VGPRz = REG_SEQUENCE VGPRx, sub0
232 //
233 // This exposes immediate folding opportunities when materializing 64-bit
234 // immediates.
236  const SIRegisterInfo *TRI,
237  const SIInstrInfo *TII,
239  assert(MI.isRegSequence());
240 
241  unsigned DstReg = MI.getOperand(0).getReg();
242  if (!TRI->isSGPRClass(MRI.getRegClass(DstReg)))
243  return false;
244 
245  if (!MRI.hasOneUse(DstReg))
246  return false;
247 
248  MachineInstr &CopyUse = *MRI.use_instr_begin(DstReg);
249  if (!CopyUse.isCopy())
250  return false;
251 
252  // It is illegal to have vreg inputs to a physreg defining reg_sequence.
254  return false;
255 
256  const TargetRegisterClass *SrcRC, *DstRC;
257  std::tie(SrcRC, DstRC) = getCopyRegClasses(CopyUse, *TRI, MRI);
258 
259  if (!isSGPRToVGPRCopy(SrcRC, DstRC, *TRI))
260  return false;
261 
262  if (tryChangeVGPRtoSGPRinCopy(CopyUse, TRI, TII))
263  return true;
264 
265  // TODO: Could have multiple extracts?
266  unsigned SubReg = CopyUse.getOperand(1).getSubReg();
267  if (SubReg != AMDGPU::NoSubRegister)
268  return false;
269 
270  MRI.setRegClass(DstReg, DstRC);
271 
272  // SGPRx = ...
273  // SGPRy = REG_SEQUENCE SGPRx, sub0 ...
274  // VGPRz = COPY SGPRy
275 
276  // =>
277  // VGPRx = COPY SGPRx
278  // VGPRz = REG_SEQUENCE VGPRx, sub0
279 
280  MI.getOperand(0).setReg(CopyUse.getOperand(0).getReg());
281 
282  for (unsigned I = 1, N = MI.getNumOperands(); I != N; I += 2) {
283  unsigned SrcReg = MI.getOperand(I).getReg();
284  unsigned SrcSubReg = MI.getOperand(I).getSubReg();
285 
286  const TargetRegisterClass *SrcRC = MRI.getRegClass(SrcReg);
287  assert(TRI->isSGPRClass(SrcRC) &&
288  "Expected SGPR REG_SEQUENCE to only have SGPR inputs");
289 
290  SrcRC = TRI->getSubRegClass(SrcRC, SrcSubReg);
291  const TargetRegisterClass *NewSrcRC = TRI->getEquivalentVGPRClass(SrcRC);
292 
293  unsigned TmpReg = MRI.createVirtualRegister(NewSrcRC);
294 
295  BuildMI(*MI.getParent(), &MI, MI.getDebugLoc(), TII->get(AMDGPU::COPY),
296  TmpReg)
297  .add(MI.getOperand(I));
298 
299  MI.getOperand(I).setReg(TmpReg);
300  }
301 
302  CopyUse.eraseFromParent();
303  return true;
304 }
305 
306 static bool phiHasVGPROperands(const MachineInstr &PHI,
307  const MachineRegisterInfo &MRI,
308  const SIRegisterInfo *TRI,
309  const SIInstrInfo *TII) {
310  for (unsigned i = 1; i < PHI.getNumOperands(); i += 2) {
311  unsigned Reg = PHI.getOperand(i).getReg();
312  if (TRI->hasVGPRs(MRI.getRegClass(Reg)))
313  return true;
314  }
315  return false;
316 }
317 
318 static bool phiHasBreakDef(const MachineInstr &PHI,
319  const MachineRegisterInfo &MRI,
320  SmallSet<unsigned, 8> &Visited) {
321  for (unsigned i = 1; i < PHI.getNumOperands(); i += 2) {
322  unsigned Reg = PHI.getOperand(i).getReg();
323  if (Visited.count(Reg))
324  continue;
325 
326  Visited.insert(Reg);
327 
328  MachineInstr *DefInstr = MRI.getVRegDef(Reg);
329  switch (DefInstr->getOpcode()) {
330  default:
331  break;
332  case AMDGPU::SI_IF_BREAK:
333  return true;
334  case AMDGPU::PHI:
335  if (phiHasBreakDef(*DefInstr, MRI, Visited))
336  return true;
337  }
338  }
339  return false;
340 }
341 
343  const TargetRegisterInfo &TRI) {
345  E = MBB.end(); I != E; ++I) {
346  if (I->modifiesRegister(AMDGPU::EXEC, &TRI))
347  return true;
348  }
349  return false;
350 }
351 
352 static bool isSafeToFoldImmIntoCopy(const MachineInstr *Copy,
353  const MachineInstr *MoveImm,
354  const SIInstrInfo *TII,
355  unsigned &SMovOp,
356  int64_t &Imm) {
357  if (Copy->getOpcode() != AMDGPU::COPY)
358  return false;
359 
360  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 
386 template <class UnaryPredicate>
388  const MachineBasicBlock *CutOff,
389  UnaryPredicate Predicate) {
390  if (MBB == CutOff)
391  return false;
392 
395  MBB->pred_end());
396 
397  while (!Worklist.empty()) {
398  MachineBasicBlock *MBB = Worklist.pop_back_val();
399 
400  if (!Visited.insert(MBB).second)
401  continue;
402  if (MBB == CutOff)
403  continue;
404  if (Predicate(MBB))
405  return true;
406 
407  Worklist.append(MBB->pred_begin(), MBB->pred_end());
408  }
409 
410  return false;
411 }
412 
414  const TargetRegisterInfo *TRI) {
415  return searchPredecessors(MBB, nullptr, [TRI](MachineBasicBlock *MBB) {
416  return hasTerminatorThatModifiesExec(*MBB, *TRI); });
417 }
418 
419 // 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.
422 static 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.
447 static bool hoistAndMergeSGPRInits(unsigned Reg,
448  const MachineRegisterInfo &MRI,
449  MachineDominatorTree &MDT) {
450  // List of inits by immediate value.
451  using InitListMap = std::map<unsigned, std::list<MachineInstr *>>;
452  InitListMap Inits;
453  // List of clobbering instructions.
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 
508  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);
512  }));
513  };
514 
515  if (MDT.dominates(MI1, MI2)) {
516  if (!intereferes(MI2, MI1)) {
517  LLVM_DEBUG(dbgs()
518  << "Erasing from "
519  << printMBBReference(*MI2->getParent()) << " " << *MI2);
520  MI2->eraseFromParent();
521  Defs.erase(I2++);
522  Changed = true;
523  continue;
524  }
525  } else if (MDT.dominates(MI2, MI1)) {
526  if (!intereferes(MI1, MI2)) {
527  LLVM_DEBUG(dbgs()
528  << "Erasing from "
529  << printMBBReference(*MI1->getParent()) << " " << *MI1);
530  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)) {
545  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);
551  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 
570 bool SIFixSGPRCopies::runOnMachineFunction(MachineFunction &MF) {
571  const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>();
573  const SIRegisterInfo *TRI = ST.getRegisterInfo();
574  const SIInstrInfo *TII = ST.getInstrInfo();
575  MDT = &getAnalysis<MachineDominatorTree>();
576 
578 
579  for (MachineFunction::iterator BI = MF.begin(), BE = MF.end();
580  BI != BE; ++BI) {
581  MachineBasicBlock &MBB = *BI;
582  for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
583  I != E; ++I) {
584  MachineInstr &MI = *I;
585 
586  switch (MI.getOpcode()) {
587  default:
588  continue;
589  case AMDGPU::COPY:
590  case AMDGPU::WQM:
591  case AMDGPU::WWM: {
592  // If the destination register is a physical register there isn't really
593  // much we can do to fix this.
595  continue;
596 
597  const TargetRegisterClass *SrcRC, *DstRC;
598  std::tie(SrcRC, DstRC) = getCopyRegClasses(MI, *TRI, MRI);
599  if (isVGPRToSGPRCopy(SrcRC, DstRC, *TRI)) {
600  unsigned SrcReg = MI.getOperand(1).getReg();
602  TII->moveToVALU(MI, MDT);
603  break;
604  }
605 
606  MachineInstr *DefMI = MRI.getVRegDef(SrcReg);
607  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);
614  MI.setDesc(TII->get(SMovOp));
615  break;
616  }
617  TII->moveToVALU(MI, MDT);
618  } else if (isSGPRToVGPRCopy(SrcRC, DstRC, *TRI)) {
619  tryChangeVGPRtoSGPRinCopy(MI, TRI, TII);
620  }
621 
622  break;
623  }
624  case AMDGPU::PHI: {
625  unsigned Reg = MI.getOperand(0).getReg();
626  if (!TRI->isSGPRClass(MRI.getRegClass(Reg)))
627  break;
628 
629  // We don't need to fix the PHI if the common dominator of the
630  // two incoming blocks terminates with a uniform branch.
631  bool HasVGPROperand = phiHasVGPROperands(MI, MRI, TRI, TII);
632  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)) {
638  LLVM_DEBUG(dbgs()
639  << "Not fixing PHI for uniform branch: " << MI << '\n');
640  break;
641  }
642  }
643 
644  // If a PHI node defines an SGPR and any of its operands are VGPRs,
645  // then we need to move it to the VALU.
646  //
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
651  // different control flow paths.
652  //
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  //
670  // 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 
677  SmallSet<unsigned, 8> Visited;
678  if (HasVGPROperand || !phiHasBreakDef(MI, MRI, Visited)) {
679  LLVM_DEBUG(dbgs() << "Fixing PHI: " << MI);
680  TII->moveToVALU(MI, MDT);
681  }
682  break;
683  }
684  case AMDGPU::REG_SEQUENCE:
685  if (TRI->hasVGPRs(TII->getOpRegClass(MI, 0)) ||
686  !hasVGPROperands(MI, TRI)) {
687  foldVGPRCopyIntoRegSequence(MI, TRI, TII, MRI);
688  continue;
689  }
690 
691  LLVM_DEBUG(dbgs() << "Fixing REG_SEQUENCE: " << MI);
692 
693  TII->moveToVALU(MI, MDT);
694  break;
695  case AMDGPU::INSERT_SUBREG: {
696  const TargetRegisterClass *DstRC, *Src0RC, *Src1RC;
697  DstRC = MRI.getRegClass(MI.getOperand(0).getReg());
698  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))) {
702  LLVM_DEBUG(dbgs() << " Fixing INSERT_SUBREG: " << MI);
703  TII->moveToVALU(MI, MDT);
704  }
705  break;
706  }
707  }
708  }
709  }
710 
712  hoistAndMergeSGPRInits(AMDGPU::M0, MRI, *MDT);
713 
714  return true;
715 }
uint64_t CallInst * C
Interface definition for SIRegisterInfo.
static cl::opt< bool > EnableM0Merge("amdgpu-enable-merge-m0", cl::desc("Merge and hoist M0 initializations"), cl::init(false))
AnalysisUsage & addPreserved()
Add the specified Pass class to the set of analyses preserved by this pass.
AMDGPU specific subclass of TargetSubtarget.
MachineBasicBlock * getMBB() const
const TargetRegisterClass * getRegClass(unsigned Reg) const
Return the register class of the specified virtual register.
static bool isSafeToFoldImmIntoCopy(const MachineInstr *Copy, const MachineInstr *MoveImm, const SIInstrInfo *TII, unsigned &SMovOp, int64_t &Imm)
This class represents lattice values for constants.
Definition: AllocatorList.h:24
bool isOperandLegal(const MachineInstr &MI, unsigned OpIdx, const MachineOperand *MO=nullptr) const
Check if MO is a legal operand if it was the OpIdx Operand for MI.
const TargetRegisterClass * getEquivalentVGPRClass(const TargetRegisterClass *SRC) const
Implements a dense probed hash-table based set.
Definition: DenseSet.h:250
const DebugLoc & getDebugLoc() const
Returns the debug location id of this MachineInstr.
Definition: MachineInstr.h:383
const TargetRegisterClass * getOpRegClass(const MachineInstr &MI, unsigned OpNo) const
Return the correct register class for OpNo.
iterator getFirstTerminator()
Returns an iterator to the first terminator instruction of this basic block.
unsigned getReg() const
getReg - Returns the register number.
unsigned getOperandNo(const_mop_iterator I) const
Returns the number of the operand iterator I points to.
Definition: MachineInstr.h:509
static bool isVirtualRegister(unsigned Reg)
Return true if the specified register number is in the virtual register namespace.
iterator_range< reg_nodbg_iterator > reg_nodbg_operands(unsigned Reg) const
unsigned Reg
unsigned getSubReg() const
bool isRegSequence() const
const SIInstrInfo * getInstrInfo() const override
unsigned const TargetRegisterInfo * TRI
const TargetRegisterClass * getEquivalentSGPRClass(const TargetRegisterClass *VRC) const
static bool hasVGPROperands(const MachineInstr &MI, const SIRegisterInfo *TRI)
bool isImm() const
isImm - Tests if this is a MO_Immediate operand.
bool isMoveImmediate(QueryType Type=IgnoreBundle) const
Return true if this instruction is a move immediate (including conditional moves) instruction...
Definition: MachineInstr.h:700
static bool foldVGPRCopyIntoRegSequence(MachineInstr &MI, const SIRegisterInfo *TRI, const SIInstrInfo *TII, MachineRegisterInfo &MRI)
static bool tryChangeVGPRtoSGPRinCopy(MachineInstr &MI, const SIRegisterInfo *TRI, const SIInstrInfo *TII)
AnalysisUsage & addRequired()
#define INITIALIZE_PASS_DEPENDENCY(depName)
Definition: PassSupport.h:51
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
const HexagonInstrInfo * TII
Printable printMBBReference(const MachineBasicBlock &MBB)
Prints a machine basic block reference.
unsigned getNumOperands() const
Retuns the total number of operands.
Definition: MachineInstr.h:412
void eraseFromParent()
Unlink &#39;this&#39; from the containing basic block and delete it.
unsigned SubReg
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
Definition: MachineInstr.h:409
bool isSGPRClass(const TargetRegisterClass *RC) const
static bool hoistAndMergeSGPRInits(unsigned Reg, const MachineRegisterInfo &MRI, MachineDominatorTree &MDT)
MachineInstr * getVRegDef(unsigned Reg) const
getVRegDef - Return the machine instr that defines the specified virtual register or null if none is ...
SI Fix SGPR copies
void clearKillFlags(unsigned Reg) const
clearKillFlags - Iterate over all the uses of the given register and clear the kill flag from the Mac...
INITIALIZE_PASS_BEGIN(SIFixSGPRCopies, DEBUG_TYPE, "SI Fix SGPR copies", false, false) INITIALIZE_PASS_END(SIFixSGPRCopies
LLVM_READONLY MachineOperand * getNamedOperand(MachineInstr &MI, unsigned OperandName) const
Returns the operand named Op.
MachineBasicBlock * findNearestCommonDominator(MachineBasicBlock *A, MachineBasicBlock *B)
findNearestCommonDominator - Find nearest common dominator basic block for basic block A and B...
static bool isSGPRToVGPRCopy(const TargetRegisterClass *SrcRC, const TargetRegisterClass *DstRC, const SIRegisterInfo &TRI)
void ChangeToImmediate(int64_t ImmVal)
ChangeToImmediate - Replace this operand with a new immediate operand of the specified value...
MachineInstrBuilder BuildMI(MachineFunction &MF, const DebugLoc &DL, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:423
CodeGenOpt::Level getOptLevel() const
Returns the optimization level: None, Less, Default, or Aggressive.
unsigned const MachineRegisterInfo * MRI
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
MachineInstrBuilder & UseMI
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
bool hasVGPRs(const TargetRegisterClass *RC) const
Represent the analysis usage information of a pass.
use_instr_iterator use_instr_begin(unsigned RegNo) const
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly...
Definition: STLExtras.h:1193
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:285
std::pair< NoneType, bool > insert(const T &V)
insert - Insert an element into the set if it isn&#39;t already there.
Definition: SmallSet.h:181
const TargetRegisterClass * getSubRegClass(const TargetRegisterClass *RC, unsigned SubIdx) const
bool isCopy() const
Falkor HW Prefetch Fix
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
INITIALIZE_PASS_END(RegBankSelect, DEBUG_TYPE, "Assign register bank of generic virtual registers", false, false) RegBankSelect
unsigned getNumExplicitOperands() const
Returns the number of non-implicit operands.
static bool phiHasBreakDef(const MachineInstr &PHI, const MachineRegisterInfo &MRI, SmallSet< unsigned, 8 > &Visited)
Iterator for intrusive lists based on ilist_node.
static std::pair< const TargetRegisterClass *, const TargetRegisterClass * > getCopyRegClasses(const MachineInstr &Copy, const SIRegisterInfo &TRI, const MachineRegisterInfo &MRI)
#define DEBUG_TYPE
void setDesc(const MCInstrDesc &tid)
Replace the instruction descriptor (thus opcode) of the current instruction with a new one...
BlockVerifier::State From
bool searchPredecessors(const MachineBasicBlock *MBB, const MachineBasicBlock *CutOff, UnaryPredicate Predicate)
MachineOperand class - Representation of each machine instruction operand.
This is a &#39;vector&#39; (really, a variable-sized array), optimized for the case when the array is small...
Definition: SmallVector.h:847
bool dominates(const MachineDomTreeNode *A, const MachineDomTreeNode *B) const
MachineInstrBuilder MachineInstrBuilder & DefMI
Predicate
Predicate - These are "(BI << 5) | BO" for various predicates.
Definition: PPCPredicates.h:27
bool properlyDominates(const MachineDomTreeNode *A, const MachineDomTreeNode *B) const
void setPreservesCFG()
This function should be called by the pass, iff they do not:
Definition: Pass.cpp:286
int64_t getImm() const
static bool hasTerminatorThatModifiesExec(const MachineBasicBlock &MBB, const TargetRegisterInfo &TRI)
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:133
void addImplicitDefUseOperands(MachineFunction &MF)
Add all implicit def and use operands to this instruction.
FunctionPass * createSIFixSGPRCopiesPass()
static bool phiHasVGPROperands(const MachineInstr &PHI, const MachineRegisterInfo &MRI, const SIRegisterInfo *TRI, const SIInstrInfo *TII)
static bool isVGPRToSGPRCopy(const TargetRegisterClass *SrcRC, const TargetRegisterClass *DstRC, const SIRegisterInfo &TRI)
const MachineBasicBlock * getParent() const
Definition: MachineInstr.h:254
MachineRegisterInfo - Keep track of information for virtual and physical registers, including vreg register classes, use/def chains for registers, etc.
Provides AMDGPU specific target descriptions.
Representation of each machine instruction.
Definition: MachineInstr.h:64
static bool isPhysicalRegister(unsigned Reg)
Return true if the specified register number is in the physical register namespace.
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
Interface definition for SIInstrInfo.
void moveToVALU(MachineInstr &MI, MachineDominatorTree *MDT=nullptr) const
Replace this instruction&#39;s opcode with the equivalent VALU opcode.
bool hasOneUse(unsigned RegNo) const
hasOneUse - Return true if there is exactly one instruction using the specified register.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
void setReg(unsigned Reg)
Change the register this operand corresponds to.
char & SIFixSGPRCopiesID
#define I(x, y, z)
Definition: MD5.cpp:58
#define N
const LLVMTargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
static bool predsHasDivergentTerminator(MachineBasicBlock *MBB, const TargetRegisterInfo *TRI)
bool isReg() const
isReg - Tests if this is a MO_Register operand.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
const TargetRegisterClass * getPhysRegClass(unsigned Reg) const
Return the &#39;base&#39; register class for this register.
iterator_range< def_instr_iterator > def_instructions(unsigned Reg) const
IRTranslator LLVM IR MI
void setRegClass(unsigned Reg, const TargetRegisterClass *RC)
setRegClass - Set the register class of the specified virtual register.
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49
#define LLVM_DEBUG(X)
Definition: Debug.h:123
const MachineOperand & getOperand(unsigned i) const
Definition: MachineInstr.h:414
DominatorTree Class - Concrete subclass of DominatorTreeBase that is used to compute a normal dominat...
static bool isReachable(const MachineInstr *From, const MachineInstr *To, const MachineBasicBlock *CutOff, MachineDominatorTree &MDT)
unsigned createVirtualRegister(const TargetRegisterClass *RegClass, StringRef Name="")
createVirtualRegister - Create and return a new virtual register in the function with the specified r...
size_type count(const T &V) const
count - Return 1 if the element is in the set, 0 otherwise.
Definition: SmallSet.h:165
const SIRegisterInfo * getRegisterInfo() const override