[PeepholeOptimizer] Look through PHIs to find additional register sources
[oota-llvm.git] / lib / CodeGen / PeepholeOptimizer.cpp
1 //===-- PeepholeOptimizer.cpp - Peephole Optimizations --------------------===//
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 // Perform peephole optimizations on the machine code:
11 //
12 // - Optimize Extensions
13 //
14 //     Optimization of sign / zero extension instructions. It may be extended to
15 //     handle other instructions with similar properties.
16 //
17 //     On some targets, some instructions, e.g. X86 sign / zero extension, may
18 //     leave the source value in the lower part of the result. This optimization
19 //     will replace some uses of the pre-extension value with uses of the
20 //     sub-register of the results.
21 //
22 // - Optimize Comparisons
23 //
24 //     Optimization of comparison instructions. For instance, in this code:
25 //
26 //       sub r1, 1
27 //       cmp r1, 0
28 //       bz  L1
29 //
30 //     If the "sub" instruction all ready sets (or could be modified to set) the
31 //     same flag that the "cmp" instruction sets and that "bz" uses, then we can
32 //     eliminate the "cmp" instruction.
33 //
34 //     Another instance, in this code:
35 //
36 //       sub r1, r3 | sub r1, imm
37 //       cmp r3, r1 or cmp r1, r3 | cmp r1, imm
38 //       bge L1
39 //
40 //     If the branch instruction can use flag from "sub", then we can replace
41 //     "sub" with "subs" and eliminate the "cmp" instruction.
42 //
43 // - Optimize Loads:
44 //
45 //     Loads that can be folded into a later instruction. A load is foldable
46 //     if it loads to virtual registers and the virtual register defined has 
47 //     a single use.
48 //
49 // - Optimize Copies and Bitcast (more generally, target specific copies):
50 //
51 //     Rewrite copies and bitcasts to avoid cross register bank copies
52 //     when possible.
53 //     E.g., Consider the following example, where capital and lower
54 //     letters denote different register file:
55 //     b = copy A <-- cross-bank copy
56 //     C = copy b <-- cross-bank copy
57 //   =>
58 //     b = copy A <-- cross-bank copy
59 //     C = copy A <-- same-bank copy
60 //
61 //     E.g., for bitcast:
62 //     b = bitcast A <-- cross-bank copy
63 //     C = bitcast b <-- cross-bank copy
64 //   =>
65 //     b = bitcast A <-- cross-bank copy
66 //     C = copy A    <-- same-bank copy
67 //===----------------------------------------------------------------------===//
68
69 #include "llvm/CodeGen/Passes.h"
70 #include "llvm/ADT/DenseMap.h"
71 #include "llvm/ADT/SmallPtrSet.h"
72 #include "llvm/ADT/SmallSet.h"
73 #include "llvm/ADT/Statistic.h"
74 #include "llvm/CodeGen/MachineDominators.h"
75 #include "llvm/CodeGen/MachineInstrBuilder.h"
76 #include "llvm/CodeGen/MachineRegisterInfo.h"
77 #include "llvm/Support/CommandLine.h"
78 #include "llvm/Support/Debug.h"
79 #include "llvm/Support/raw_ostream.h"
80 #include "llvm/Target/TargetInstrInfo.h"
81 #include "llvm/Target/TargetRegisterInfo.h"
82 #include "llvm/Target/TargetSubtargetInfo.h"
83 #include <utility>
84 using namespace llvm;
85
86 #define DEBUG_TYPE "peephole-opt"
87
88 // Optimize Extensions
89 static cl::opt<bool>
90 Aggressive("aggressive-ext-opt", cl::Hidden,
91            cl::desc("Aggressive extension optimization"));
92
93 static cl::opt<bool>
94 DisablePeephole("disable-peephole", cl::Hidden, cl::init(false),
95                 cl::desc("Disable the peephole optimizer"));
96
97 static cl::opt<bool>
98 DisableAdvCopyOpt("disable-adv-copy-opt", cl::Hidden, cl::init(false),
99                   cl::desc("Disable advanced copy optimization"));
100
101 // Limit the number of PHI instructions to process
102 // in PeepholeOptimizer::getNextSource.
103 static cl::opt<unsigned> RewritePHILimit(
104     "rewrite-phi-limit", cl::Hidden, cl::init(10),
105     cl::desc("Limit the length of PHI chains to lookup"));
106
107 STATISTIC(NumReuse,      "Number of extension results reused");
108 STATISTIC(NumCmps,       "Number of compares eliminated");
109 STATISTIC(NumImmFold,    "Number of move immediate folded");
110 STATISTIC(NumLoadFold,   "Number of loads folded");
111 STATISTIC(NumSelects,    "Number of selects optimized");
112 STATISTIC(NumUncoalescableCopies, "Number of uncoalescable copies optimized");
113 STATISTIC(NumRewrittenCopies, "Number of copies rewritten");
114
115 namespace {
116   class ValueTrackerResult;
117
118   class PeepholeOptimizer : public MachineFunctionPass {
119     const TargetInstrInfo *TII;
120     const TargetRegisterInfo *TRI;
121     MachineRegisterInfo   *MRI;
122     MachineDominatorTree  *DT;  // Machine dominator tree
123
124   public:
125     static char ID; // Pass identification
126     PeepholeOptimizer() : MachineFunctionPass(ID) {
127       initializePeepholeOptimizerPass(*PassRegistry::getPassRegistry());
128     }
129
130     bool runOnMachineFunction(MachineFunction &MF) override;
131
132     void getAnalysisUsage(AnalysisUsage &AU) const override {
133       AU.setPreservesCFG();
134       MachineFunctionPass::getAnalysisUsage(AU);
135       if (Aggressive) {
136         AU.addRequired<MachineDominatorTree>();
137         AU.addPreserved<MachineDominatorTree>();
138       }
139     }
140
141     /// \brief Track Def -> Use info used for rewriting copies.
142     typedef SmallDenseMap<TargetInstrInfo::RegSubRegPair, ValueTrackerResult>
143         RewriteMapTy;
144
145   private:
146     bool optimizeCmpInstr(MachineInstr *MI, MachineBasicBlock *MBB);
147     bool optimizeExtInstr(MachineInstr *MI, MachineBasicBlock *MBB,
148                           SmallPtrSetImpl<MachineInstr*> &LocalMIs);
149     bool optimizeSelect(MachineInstr *MI,
150                         SmallPtrSetImpl<MachineInstr *> &LocalMIs);
151     bool optimizeCondBranch(MachineInstr *MI);
152     bool optimizeCopyOrBitcast(MachineInstr *MI);
153     bool optimizeCoalescableCopy(MachineInstr *MI);
154     bool optimizeUncoalescableCopy(MachineInstr *MI,
155                                    SmallPtrSetImpl<MachineInstr *> &LocalMIs);
156     bool findNextSource(unsigned Reg, unsigned SubReg,
157                         RewriteMapTy &RewriteMap);
158     bool isMoveImmediate(MachineInstr *MI,
159                          SmallSet<unsigned, 4> &ImmDefRegs,
160                          DenseMap<unsigned, MachineInstr*> &ImmDefMIs);
161     bool foldImmediate(MachineInstr *MI, MachineBasicBlock *MBB,
162                        SmallSet<unsigned, 4> &ImmDefRegs,
163                        DenseMap<unsigned, MachineInstr*> &ImmDefMIs);
164     bool isLoadFoldable(MachineInstr *MI,
165                         SmallSet<unsigned, 16> &FoldAsLoadDefCandidates);
166
167     /// \brief Check whether \p MI is understood by the register coalescer
168     /// but may require some rewriting.
169     bool isCoalescableCopy(const MachineInstr &MI) {
170       // SubregToRegs are not interesting, because they are already register
171       // coalescer friendly.
172       return MI.isCopy() || (!DisableAdvCopyOpt &&
173                              (MI.isRegSequence() || MI.isInsertSubreg() ||
174                               MI.isExtractSubreg()));
175     }
176
177     /// \brief Check whether \p MI is a copy like instruction that is
178     /// not recognized by the register coalescer.
179     bool isUncoalescableCopy(const MachineInstr &MI) {
180       return MI.isBitcast() ||
181              (!DisableAdvCopyOpt &&
182               (MI.isRegSequenceLike() || MI.isInsertSubregLike() ||
183                MI.isExtractSubregLike()));
184     }
185   };
186
187   /// \brief Helper class to hold a reply for ValueTracker queries. Contains the
188   /// returned sources for a given search and the instructions where the sources
189   /// were tracked from.
190   class ValueTrackerResult {
191   private:
192     /// Track all sources found by one ValueTracker query.
193     SmallVector<TargetInstrInfo::RegSubRegPair, 2> RegSrcs;
194
195     /// Instruction using the sources in 'RegSrcs'.
196     const MachineInstr *Inst;
197
198   public:
199     ValueTrackerResult() : Inst(nullptr) {}
200     ValueTrackerResult(unsigned Reg, unsigned SubReg) : Inst(nullptr) {
201       addSource(Reg, SubReg);
202     }
203
204     bool isValid() const { return getNumSources() > 0; }
205
206     void setInst(const MachineInstr *I) { Inst = I; }
207     const MachineInstr *getInst() const { return Inst; }
208
209     void clear() {
210       RegSrcs.clear();
211       Inst = nullptr;
212     }
213
214     void addSource(unsigned SrcReg, unsigned SrcSubReg) {
215       RegSrcs.push_back(TargetInstrInfo::RegSubRegPair(SrcReg, SrcSubReg));
216     }
217
218     void setSource(int Idx, unsigned SrcReg, unsigned SrcSubReg) {
219       assert(Idx < getNumSources() && "Reg pair source out of index");
220       RegSrcs[Idx] = TargetInstrInfo::RegSubRegPair(SrcReg, SrcSubReg);
221     }
222
223     int getNumSources() const { return RegSrcs.size(); }
224
225     unsigned getSrcReg(int Idx) const {
226       assert(Idx < getNumSources() && "Reg source out of index");
227       return RegSrcs[Idx].Reg;
228     }
229
230     unsigned getSrcSubReg(int Idx) const {
231       assert(Idx < getNumSources() && "SubReg source out of index");
232       return RegSrcs[Idx].SubReg;
233     }
234
235     bool operator==(const ValueTrackerResult &Other) {
236       if (Other.getInst() != getInst())
237         return false;
238
239       if (Other.getNumSources() != getNumSources())
240         return false;
241
242       for (int i = 0, e = Other.getNumSources(); i != e; ++i)
243         if (Other.getSrcReg(i) != getSrcReg(i) ||
244             Other.getSrcSubReg(i) != getSrcSubReg(i))
245           return false;
246       return true;
247     }
248   };
249
250   /// \brief Helper class to track the possible sources of a value defined by
251   /// a (chain of) copy related instructions.
252   /// Given a definition (instruction and definition index), this class
253   /// follows the use-def chain to find successive suitable sources.
254   /// The given source can be used to rewrite the definition into
255   /// def = COPY src.
256   ///
257   /// For instance, let us consider the following snippet:
258   /// v0 =
259   /// v2 = INSERT_SUBREG v1, v0, sub0
260   /// def = COPY v2.sub0
261   ///
262   /// Using a ValueTracker for def = COPY v2.sub0 will give the following
263   /// suitable sources:
264   /// v2.sub0 and v0.
265   /// Then, def can be rewritten into def = COPY v0.
266   class ValueTracker {
267   private:
268     /// The current point into the use-def chain.
269     const MachineInstr *Def;
270     /// The index of the definition in Def.
271     unsigned DefIdx;
272     /// The sub register index of the definition.
273     unsigned DefSubReg;
274     /// The register where the value can be found.
275     unsigned Reg;
276     /// Specifiy whether or not the value tracking looks through
277     /// complex instructions. When this is false, the value tracker
278     /// bails on everything that is not a copy or a bitcast.
279     ///
280     /// Note: This could have been implemented as a specialized version of
281     /// the ValueTracker class but that would have complicated the code of
282     /// the users of this class.
283     bool UseAdvancedTracking;
284     /// MachineRegisterInfo used to perform tracking.
285     const MachineRegisterInfo &MRI;
286     /// Optional TargetInstrInfo used to perform some complex
287     /// tracking.
288     const TargetInstrInfo *TII;
289
290     /// \brief Dispatcher to the right underlying implementation of
291     /// getNextSource.
292     ValueTrackerResult getNextSourceImpl();
293     /// \brief Specialized version of getNextSource for Copy instructions.
294     ValueTrackerResult getNextSourceFromCopy();
295     /// \brief Specialized version of getNextSource for Bitcast instructions.
296     ValueTrackerResult getNextSourceFromBitcast();
297     /// \brief Specialized version of getNextSource for RegSequence
298     /// instructions.
299     ValueTrackerResult getNextSourceFromRegSequence();
300     /// \brief Specialized version of getNextSource for InsertSubreg
301     /// instructions.
302     ValueTrackerResult getNextSourceFromInsertSubreg();
303     /// \brief Specialized version of getNextSource for ExtractSubreg
304     /// instructions.
305     ValueTrackerResult getNextSourceFromExtractSubreg();
306     /// \brief Specialized version of getNextSource for SubregToReg
307     /// instructions.
308     ValueTrackerResult getNextSourceFromSubregToReg();
309     /// \brief Specialized version of getNextSource for PHI instructions.
310     ValueTrackerResult getNextSourceFromPHI();
311
312   public:
313     /// \brief Create a ValueTracker instance for the value defined by \p Reg.
314     /// \p DefSubReg represents the sub register index the value tracker will
315     /// track. It does not need to match the sub register index used in the
316     /// definition of \p Reg.
317     /// \p UseAdvancedTracking specifies whether or not the value tracker looks
318     /// through complex instructions. By default (false), it handles only copy
319     /// and bitcast instructions.
320     /// If \p Reg is a physical register, a value tracker constructed with
321     /// this constructor will not find any alternative source.
322     /// Indeed, when \p Reg is a physical register that constructor does not
323     /// know which definition of \p Reg it should track.
324     /// Use the next constructor to track a physical register.
325     ValueTracker(unsigned Reg, unsigned DefSubReg,
326                  const MachineRegisterInfo &MRI,
327                  bool UseAdvancedTracking = false,
328                  const TargetInstrInfo *TII = nullptr)
329         : Def(nullptr), DefIdx(0), DefSubReg(DefSubReg), Reg(Reg),
330           UseAdvancedTracking(UseAdvancedTracking), MRI(MRI), TII(TII) {
331       if (!TargetRegisterInfo::isPhysicalRegister(Reg)) {
332         Def = MRI.getVRegDef(Reg);
333         DefIdx = MRI.def_begin(Reg).getOperandNo();
334       }
335     }
336
337     /// \brief Create a ValueTracker instance for the value defined by
338     /// the pair \p MI, \p DefIdx.
339     /// Unlike the other constructor, the value tracker produced by this one
340     /// may be able to find a new source when the definition is a physical
341     /// register.
342     /// This could be useful to rewrite target specific instructions into
343     /// generic copy instructions.
344     ValueTracker(const MachineInstr &MI, unsigned DefIdx, unsigned DefSubReg,
345                  const MachineRegisterInfo &MRI,
346                  bool UseAdvancedTracking = false,
347                  const TargetInstrInfo *TII = nullptr)
348         : Def(&MI), DefIdx(DefIdx), DefSubReg(DefSubReg),
349           UseAdvancedTracking(UseAdvancedTracking), MRI(MRI), TII(TII) {
350       assert(DefIdx < Def->getDesc().getNumDefs() &&
351              Def->getOperand(DefIdx).isReg() && "Invalid definition");
352       Reg = Def->getOperand(DefIdx).getReg();
353     }
354
355     /// \brief Following the use-def chain, get the next available source
356     /// for the tracked value.
357     /// \return A ValueTrackerResult containing a set of registers
358     /// and sub registers with tracked values. A ValueTrackerResult with
359     /// an empty set of registers means no source was found.
360     ValueTrackerResult getNextSource();
361
362     /// \brief Get the last register where the initial value can be found.
363     /// Initially this is the register of the definition.
364     /// Then, after each successful call to getNextSource, this is the
365     /// register of the last source.
366     unsigned getReg() const { return Reg; }
367   };
368 }
369
370 char PeepholeOptimizer::ID = 0;
371 char &llvm::PeepholeOptimizerID = PeepholeOptimizer::ID;
372 INITIALIZE_PASS_BEGIN(PeepholeOptimizer, "peephole-opts",
373                 "Peephole Optimizations", false, false)
374 INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
375 INITIALIZE_PASS_END(PeepholeOptimizer, "peephole-opts",
376                 "Peephole Optimizations", false, false)
377
378 /// optimizeExtInstr - If instruction is a copy-like instruction, i.e. it reads
379 /// a single register and writes a single register and it does not modify the
380 /// source, and if the source value is preserved as a sub-register of the
381 /// result, then replace all reachable uses of the source with the subreg of the
382 /// result.
383 ///
384 /// Do not generate an EXTRACT that is used only in a debug use, as this changes
385 /// the code. Since this code does not currently share EXTRACTs, just ignore all
386 /// debug uses.
387 bool PeepholeOptimizer::
388 optimizeExtInstr(MachineInstr *MI, MachineBasicBlock *MBB,
389                  SmallPtrSetImpl<MachineInstr*> &LocalMIs) {
390   unsigned SrcReg, DstReg, SubIdx;
391   if (!TII->isCoalescableExtInstr(*MI, SrcReg, DstReg, SubIdx))
392     return false;
393
394   if (TargetRegisterInfo::isPhysicalRegister(DstReg) ||
395       TargetRegisterInfo::isPhysicalRegister(SrcReg))
396     return false;
397
398   if (MRI->hasOneNonDBGUse(SrcReg))
399     // No other uses.
400     return false;
401
402   // Ensure DstReg can get a register class that actually supports
403   // sub-registers. Don't change the class until we commit.
404   const TargetRegisterClass *DstRC = MRI->getRegClass(DstReg);
405   DstRC = TRI->getSubClassWithSubReg(DstRC, SubIdx);
406   if (!DstRC)
407     return false;
408
409   // The ext instr may be operating on a sub-register of SrcReg as well.
410   // PPC::EXTSW is a 32 -> 64-bit sign extension, but it reads a 64-bit
411   // register.
412   // If UseSrcSubIdx is Set, SubIdx also applies to SrcReg, and only uses of
413   // SrcReg:SubIdx should be replaced.
414   bool UseSrcSubIdx =
415       TRI->getSubClassWithSubReg(MRI->getRegClass(SrcReg), SubIdx) != nullptr;
416
417   // The source has other uses. See if we can replace the other uses with use of
418   // the result of the extension.
419   SmallPtrSet<MachineBasicBlock*, 4> ReachedBBs;
420   for (MachineInstr &UI : MRI->use_nodbg_instructions(DstReg))
421     ReachedBBs.insert(UI.getParent());
422
423   // Uses that are in the same BB of uses of the result of the instruction.
424   SmallVector<MachineOperand*, 8> Uses;
425
426   // Uses that the result of the instruction can reach.
427   SmallVector<MachineOperand*, 8> ExtendedUses;
428
429   bool ExtendLife = true;
430   for (MachineOperand &UseMO : MRI->use_nodbg_operands(SrcReg)) {
431     MachineInstr *UseMI = UseMO.getParent();
432     if (UseMI == MI)
433       continue;
434
435     if (UseMI->isPHI()) {
436       ExtendLife = false;
437       continue;
438     }
439
440     // Only accept uses of SrcReg:SubIdx.
441     if (UseSrcSubIdx && UseMO.getSubReg() != SubIdx)
442       continue;
443
444     // It's an error to translate this:
445     //
446     //    %reg1025 = <sext> %reg1024
447     //     ...
448     //    %reg1026 = SUBREG_TO_REG 0, %reg1024, 4
449     //
450     // into this:
451     //
452     //    %reg1025 = <sext> %reg1024
453     //     ...
454     //    %reg1027 = COPY %reg1025:4
455     //    %reg1026 = SUBREG_TO_REG 0, %reg1027, 4
456     //
457     // The problem here is that SUBREG_TO_REG is there to assert that an
458     // implicit zext occurs. It doesn't insert a zext instruction. If we allow
459     // the COPY here, it will give us the value after the <sext>, not the
460     // original value of %reg1024 before <sext>.
461     if (UseMI->getOpcode() == TargetOpcode::SUBREG_TO_REG)
462       continue;
463
464     MachineBasicBlock *UseMBB = UseMI->getParent();
465     if (UseMBB == MBB) {
466       // Local uses that come after the extension.
467       if (!LocalMIs.count(UseMI))
468         Uses.push_back(&UseMO);
469     } else if (ReachedBBs.count(UseMBB)) {
470       // Non-local uses where the result of the extension is used. Always
471       // replace these unless it's a PHI.
472       Uses.push_back(&UseMO);
473     } else if (Aggressive && DT->dominates(MBB, UseMBB)) {
474       // We may want to extend the live range of the extension result in order
475       // to replace these uses.
476       ExtendedUses.push_back(&UseMO);
477     } else {
478       // Both will be live out of the def MBB anyway. Don't extend live range of
479       // the extension result.
480       ExtendLife = false;
481       break;
482     }
483   }
484
485   if (ExtendLife && !ExtendedUses.empty())
486     // Extend the liveness of the extension result.
487     Uses.append(ExtendedUses.begin(), ExtendedUses.end());
488
489   // Now replace all uses.
490   bool Changed = false;
491   if (!Uses.empty()) {
492     SmallPtrSet<MachineBasicBlock*, 4> PHIBBs;
493
494     // Look for PHI uses of the extended result, we don't want to extend the
495     // liveness of a PHI input. It breaks all kinds of assumptions down
496     // stream. A PHI use is expected to be the kill of its source values.
497     for (MachineInstr &UI : MRI->use_nodbg_instructions(DstReg))
498       if (UI.isPHI())
499         PHIBBs.insert(UI.getParent());
500
501     const TargetRegisterClass *RC = MRI->getRegClass(SrcReg);
502     for (unsigned i = 0, e = Uses.size(); i != e; ++i) {
503       MachineOperand *UseMO = Uses[i];
504       MachineInstr *UseMI = UseMO->getParent();
505       MachineBasicBlock *UseMBB = UseMI->getParent();
506       if (PHIBBs.count(UseMBB))
507         continue;
508
509       // About to add uses of DstReg, clear DstReg's kill flags.
510       if (!Changed) {
511         MRI->clearKillFlags(DstReg);
512         MRI->constrainRegClass(DstReg, DstRC);
513       }
514
515       unsigned NewVR = MRI->createVirtualRegister(RC);
516       MachineInstr *Copy = BuildMI(*UseMBB, UseMI, UseMI->getDebugLoc(),
517                                    TII->get(TargetOpcode::COPY), NewVR)
518         .addReg(DstReg, 0, SubIdx);
519       // SubIdx applies to both SrcReg and DstReg when UseSrcSubIdx is set.
520       if (UseSrcSubIdx) {
521         Copy->getOperand(0).setSubReg(SubIdx);
522         Copy->getOperand(0).setIsUndef();
523       }
524       UseMO->setReg(NewVR);
525       ++NumReuse;
526       Changed = true;
527     }
528   }
529
530   return Changed;
531 }
532
533 /// optimizeCmpInstr - If the instruction is a compare and the previous
534 /// instruction it's comparing against all ready sets (or could be modified to
535 /// set) the same flag as the compare, then we can remove the comparison and use
536 /// the flag from the previous instruction.
537 bool PeepholeOptimizer::optimizeCmpInstr(MachineInstr *MI,
538                                          MachineBasicBlock *MBB) {
539   // If this instruction is a comparison against zero and isn't comparing a
540   // physical register, we can try to optimize it.
541   unsigned SrcReg, SrcReg2;
542   int CmpMask, CmpValue;
543   if (!TII->analyzeCompare(MI, SrcReg, SrcReg2, CmpMask, CmpValue) ||
544       TargetRegisterInfo::isPhysicalRegister(SrcReg) ||
545       (SrcReg2 != 0 && TargetRegisterInfo::isPhysicalRegister(SrcReg2)))
546     return false;
547
548   // Attempt to optimize the comparison instruction.
549   if (TII->optimizeCompareInstr(MI, SrcReg, SrcReg2, CmpMask, CmpValue, MRI)) {
550     ++NumCmps;
551     return true;
552   }
553
554   return false;
555 }
556
557 /// Optimize a select instruction.
558 bool PeepholeOptimizer::optimizeSelect(MachineInstr *MI,
559                             SmallPtrSetImpl<MachineInstr *> &LocalMIs) {
560   unsigned TrueOp = 0;
561   unsigned FalseOp = 0;
562   bool Optimizable = false;
563   SmallVector<MachineOperand, 4> Cond;
564   if (TII->analyzeSelect(MI, Cond, TrueOp, FalseOp, Optimizable))
565     return false;
566   if (!Optimizable)
567     return false;
568   if (!TII->optimizeSelect(MI, LocalMIs))
569     return false;
570   MI->eraseFromParent();
571   ++NumSelects;
572   return true;
573 }
574
575 /// \brief Check if a simpler conditional branch can be
576 // generated
577 bool PeepholeOptimizer::optimizeCondBranch(MachineInstr *MI) {
578   return TII->optimizeCondBranch(MI);
579 }
580
581 /// \brief Check if the registers defined by the pair (RegisterClass, SubReg)
582 /// share the same register file.
583 static bool shareSameRegisterFile(const TargetRegisterInfo &TRI,
584                                   const TargetRegisterClass *DefRC,
585                                   unsigned DefSubReg,
586                                   const TargetRegisterClass *SrcRC,
587                                   unsigned SrcSubReg) {
588   // Same register class.
589   if (DefRC == SrcRC)
590     return true;
591
592   // Both operands are sub registers. Check if they share a register class.
593   unsigned SrcIdx, DefIdx;
594   if (SrcSubReg && DefSubReg)
595     return TRI.getCommonSuperRegClass(SrcRC, SrcSubReg, DefRC, DefSubReg,
596                                       SrcIdx, DefIdx) != nullptr;
597   // At most one of the register is a sub register, make it Src to avoid
598   // duplicating the test.
599   if (!SrcSubReg) {
600     std::swap(DefSubReg, SrcSubReg);
601     std::swap(DefRC, SrcRC);
602   }
603
604   // One of the register is a sub register, check if we can get a superclass.
605   if (SrcSubReg)
606     return TRI.getMatchingSuperRegClass(SrcRC, DefRC, SrcSubReg) != nullptr;
607   // Plain copy.
608   return TRI.getCommonSubClass(DefRC, SrcRC) != nullptr;
609 }
610
611 /// \brief Try to find the next source that share the same register file
612 /// for the value defined by \p Reg and \p SubReg.
613 /// When true is returned, the \p RewriteMap can be used by the client to
614 /// retrieve all Def -> Use along the way up to the next source. Any found
615 /// Use that is not itself a key for another entry, is the next source to
616 /// use. During the search for the next source, multiple sources can be found
617 /// given multiple incoming sources of a PHI instruction. In this case, we
618 /// look in each PHI source for the next source; all found next sources must
619 /// share the same register file as \p Reg and \p SubReg. The client should
620 /// then be capable to rewrite all intermediate PHIs to get the next source.
621 /// \return False if no alternative sources are available. True otherwise.
622 bool PeepholeOptimizer::findNextSource(unsigned Reg, unsigned SubReg,
623                                        RewriteMapTy &RewriteMap) {
624   // Do not try to find a new source for a physical register.
625   // So far we do not have any motivating example for doing that.
626   // Thus, instead of maintaining untested code, we will revisit that if
627   // that changes at some point.
628   if (TargetRegisterInfo::isPhysicalRegister(Reg))
629     return false;
630   const TargetRegisterClass *DefRC = MRI->getRegClass(Reg);
631
632   SmallVector<TargetInstrInfo::RegSubRegPair, 4> SrcToLook;
633   TargetInstrInfo::RegSubRegPair CurSrcPair(Reg, SubReg);
634   SrcToLook.push_back(CurSrcPair);
635
636   unsigned PHICount = 0;
637   while (!SrcToLook.empty() && PHICount < RewritePHILimit) {
638     TargetInstrInfo::RegSubRegPair Pair = SrcToLook.pop_back_val();
639     // As explained above, do not handle physical registers
640     if (TargetRegisterInfo::isPhysicalRegister(Pair.Reg))
641       return false;
642
643     CurSrcPair = Pair;
644     ValueTracker ValTracker(CurSrcPair.Reg, CurSrcPair.SubReg, *MRI,
645                             !DisableAdvCopyOpt, TII);
646     ValueTrackerResult Res;
647     bool ShouldRewrite = false;
648
649     do {
650       // Follow the chain of copies until we reach the top of the use-def chain
651       // or find a more suitable source.
652       Res = ValTracker.getNextSource();
653       if (!Res.isValid())
654         break;
655
656       // Insert the Def -> Use entry for the recently found source.
657       ValueTrackerResult CurSrcRes = RewriteMap.lookup(CurSrcPair);
658       if (CurSrcRes.isValid()) {
659         assert(CurSrcRes == Res && "ValueTrackerResult found must match");
660         // An existent entry with multiple sources is a PHI cycle we must avoid.
661         // Otherwise it's an entry with a valid next source we already found.
662         if (CurSrcRes.getNumSources() > 1) {
663           DEBUG(dbgs() << "findNextSource: found PHI cycle, aborting...\n");
664           return false;
665         }
666         break;
667       }
668       RewriteMap.insert(std::make_pair(CurSrcPair, Res));
669
670       // ValueTrackerResult usually have one source unless it's the result from
671       // a PHI instruction. Add the found PHI edges to be looked up further.
672       unsigned NumSrcs = Res.getNumSources();
673       if (NumSrcs > 1) {
674         PHICount++;
675         for (unsigned i = 0; i < NumSrcs; ++i)
676           SrcToLook.push_back(TargetInstrInfo::RegSubRegPair(
677               Res.getSrcReg(i), Res.getSrcSubReg(i)));
678         break;
679       }
680
681       CurSrcPair.Reg = Res.getSrcReg(0);
682       CurSrcPair.SubReg = Res.getSrcSubReg(0);
683       // Do not extend the live-ranges of physical registers as they add
684       // constraints to the register allocator. Moreover, if we want to extend
685       // the live-range of a physical register, unlike SSA virtual register,
686       // we will have to check that they aren't redefine before the related use.
687       if (TargetRegisterInfo::isPhysicalRegister(CurSrcPair.Reg))
688         return false;
689
690       const TargetRegisterClass *SrcRC = MRI->getRegClass(CurSrcPair.Reg);
691
692       // If this source does not incur a cross register bank copy, use it.
693       ShouldRewrite = shareSameRegisterFile(*TRI, DefRC, SubReg, SrcRC,
694                                            CurSrcPair.SubReg);
695     } while (!ShouldRewrite);
696
697     // Continue looking for new sources...
698     if (Res.isValid())
699       continue;
700
701     // Do not continue searching for a new source if the there's at least
702     // one use-def which cannot be rewritten.
703     if (!ShouldRewrite)
704       return false;
705   }
706
707   if (PHICount >= RewritePHILimit) {
708     DEBUG(dbgs() << "findNextSource: PHI limit reached\n");
709     return false;
710   }
711
712   // If we did not find a more suitable source, there is nothing to optimize.
713   if (CurSrcPair.Reg == Reg)
714     return false;
715
716   return true;
717 }
718
719 /// \brief Insert a PHI instruction with incoming edges \p SrcRegs that are
720 /// guaranteed to have the same register class. This is necessary whenever we
721 /// successfully traverse a PHI instruction and find suitable sources coming
722 /// from its edges. By inserting a new PHI, we provide a rewritten PHI def
723 /// suitable to be used in a new COPY instruction.
724 MachineInstr *
725 insertPHI(MachineRegisterInfo *MRI, const TargetInstrInfo *TII,
726           const SmallVectorImpl<TargetInstrInfo::RegSubRegPair> &SrcRegs,
727           MachineInstr *OrigPHI) {
728   assert(!SrcRegs.empty() && "No sources to create a PHI instruction?");
729
730   const TargetRegisterClass *NewRC = MRI->getRegClass(SrcRegs[0].Reg);
731   unsigned NewVR = MRI->createVirtualRegister(NewRC);
732   MachineBasicBlock *MBB = OrigPHI->getParent();
733   MachineInstrBuilder MIB = BuildMI(*MBB, OrigPHI, OrigPHI->getDebugLoc(),
734                                     TII->get(TargetOpcode::PHI), NewVR);
735
736   unsigned MBBOpIdx = 2;
737   for (auto RegPair : SrcRegs) {
738     assert(NewRC == MRI->getRegClass(RegPair.Reg) &&
739            "PHI sources must share the same register class");
740
741     MIB.addReg(RegPair.Reg, 0, RegPair.SubReg);
742     MIB.addMBB(OrigPHI->getOperand(MBBOpIdx).getMBB());
743     // Since we're extended the lifetime of RegPair.Reg, clear the
744     // kill flags to account for that and make RegPair.Reg reaches
745     // the new PHI.
746     MRI->clearKillFlags(RegPair.Reg);
747     MBBOpIdx += 2;
748   }
749
750   return MIB;
751 }
752
753 namespace {
754 /// \brief Helper class to rewrite the arguments of a copy-like instruction.
755 class CopyRewriter {
756 protected:
757   /// The copy-like instruction.
758   MachineInstr &CopyLike;
759   /// The index of the source being rewritten.
760   unsigned CurrentSrcIdx;
761
762 public:
763   CopyRewriter(MachineInstr &MI) : CopyLike(MI), CurrentSrcIdx(0) {}
764
765   virtual ~CopyRewriter() {}
766
767   /// \brief Get the next rewritable source (SrcReg, SrcSubReg) and
768   /// the related value that it affects (TrackReg, TrackSubReg).
769   /// A source is considered rewritable if its register class and the
770   /// register class of the related TrackReg may not be register
771   /// coalescer friendly. In other words, given a copy-like instruction
772   /// not all the arguments may be returned at rewritable source, since
773   /// some arguments are none to be register coalescer friendly.
774   ///
775   /// Each call of this method moves the current source to the next
776   /// rewritable source.
777   /// For instance, let CopyLike be the instruction to rewrite.
778   /// CopyLike has one definition and one source:
779   /// dst.dstSubIdx = CopyLike src.srcSubIdx.
780   ///
781   /// The first call will give the first rewritable source, i.e.,
782   /// the only source this instruction has:
783   /// (SrcReg, SrcSubReg) = (src, srcSubIdx).
784   /// This source defines the whole definition, i.e.,
785   /// (TrackReg, TrackSubReg) = (dst, dstSubIdx).
786   ///
787   /// The second and subsequent calls will return false, has there is only one
788   /// rewritable source.
789   ///
790   /// \return True if a rewritable source has been found, false otherwise.
791   /// The output arguments are valid if and only if true is returned.
792   virtual bool getNextRewritableSource(unsigned &SrcReg, unsigned &SrcSubReg,
793                                        unsigned &TrackReg,
794                                        unsigned &TrackSubReg) {
795     // If CurrentSrcIdx == 1, this means this function has already been
796     // called once. CopyLike has one defintiion and one argument, thus,
797     // there is nothing else to rewrite.
798     if (!CopyLike.isCopy() || CurrentSrcIdx == 1)
799       return false;
800     // This is the first call to getNextRewritableSource.
801     // Move the CurrentSrcIdx to remember that we made that call.
802     CurrentSrcIdx = 1;
803     // The rewritable source is the argument.
804     const MachineOperand &MOSrc = CopyLike.getOperand(1);
805     SrcReg = MOSrc.getReg();
806     SrcSubReg = MOSrc.getSubReg();
807     // What we track are the alternative sources of the definition.
808     const MachineOperand &MODef = CopyLike.getOperand(0);
809     TrackReg = MODef.getReg();
810     TrackSubReg = MODef.getSubReg();
811     return true;
812   }
813
814   /// \brief Rewrite the current source with \p NewReg and \p NewSubReg
815   /// if possible.
816   /// \return True if the rewriting was possible, false otherwise.
817   virtual bool RewriteCurrentSource(unsigned NewReg, unsigned NewSubReg) {
818     if (!CopyLike.isCopy() || CurrentSrcIdx != 1)
819       return false;
820     MachineOperand &MOSrc = CopyLike.getOperand(CurrentSrcIdx);
821     MOSrc.setReg(NewReg);
822     MOSrc.setSubReg(NewSubReg);
823     return true;
824   }
825
826   /// \brief Given a \p Def.Reg and Def.SubReg  pair, use \p RewriteMap to find
827   /// the new source to use for rewrite. If \p HandleMultipleSources is true and
828   /// multiple sources for a given \p Def are found along the way, we found a
829   /// PHI instructions that needs to be rewritten.
830   /// TODO: HandleMultipleSources should be removed once we test PHI handling
831   /// with coalescable copies.
832   TargetInstrInfo::RegSubRegPair
833   getNewSource(MachineRegisterInfo *MRI, const TargetInstrInfo *TII,
834                TargetInstrInfo::RegSubRegPair Def,
835                PeepholeOptimizer::RewriteMapTy &RewriteMap,
836                bool HandleMultipleSources = true) {
837
838     TargetInstrInfo::RegSubRegPair LookupSrc(Def.Reg, Def.SubReg);
839     do {
840       ValueTrackerResult Res = RewriteMap.lookup(LookupSrc);
841       // If there are no entries on the map, LookupSrc is the new source.
842       if (!Res.isValid())
843         return LookupSrc;
844
845       // There's only one source for this definition, keep searching...
846       unsigned NumSrcs = Res.getNumSources();
847       if (NumSrcs == 1) {
848         LookupSrc.Reg = Res.getSrcReg(0);
849         LookupSrc.SubReg = Res.getSrcSubReg(0);
850         continue;
851       }
852
853       // TODO: remove once multiple srcs w/ coaslescable copies are supported.
854       if (!HandleMultipleSources)
855         break;
856
857       // Multiple sources, recurse into each source to find a new source
858       // for it. Then, rewrite the PHI accordingly to its new edges.
859       SmallVector<TargetInstrInfo::RegSubRegPair, 4> NewPHISrcs;
860       for (unsigned i = 0; i < NumSrcs; ++i) {
861         TargetInstrInfo::RegSubRegPair PHISrc(Res.getSrcReg(i),
862                                               Res.getSrcSubReg(i));
863         NewPHISrcs.push_back(
864             getNewSource(MRI, TII, PHISrc, RewriteMap, HandleMultipleSources));
865       }
866
867       // Build the new PHI node and return its def register as the new source.
868       MachineInstr *OrigPHI = const_cast<MachineInstr *>(Res.getInst());
869       MachineInstr *NewPHI = insertPHI(MRI, TII, NewPHISrcs, OrigPHI);
870       DEBUG(dbgs() << "-- getNewSource\n");
871       DEBUG(dbgs() << "   Replacing: " << *OrigPHI);
872       DEBUG(dbgs() << "        With: " << *NewPHI);
873       const MachineOperand &MODef = NewPHI->getOperand(0);
874       return TargetInstrInfo::RegSubRegPair(MODef.getReg(), MODef.getSubReg());
875
876     } while (1);
877
878     return TargetInstrInfo::RegSubRegPair(0, 0);
879   }
880
881   /// \brief Rewrite the source found through \p Def, by using the \p RewriteMap
882   /// and create a new COPY instruction. More info about RewriteMap in
883   /// PeepholeOptimizer::findNextSource. Right now this is only used to handle
884   /// Uncoalescable copies, since they are copy like instructions that aren't
885   /// recognized by the register allocator.
886   virtual MachineInstr *
887   RewriteSource(TargetInstrInfo::RegSubRegPair Def,
888                 PeepholeOptimizer::RewriteMapTy &RewriteMap) {
889     return nullptr;
890   }
891 };
892
893 /// \brief Helper class to rewrite uncoalescable copy like instructions
894 /// into new COPY (coalescable friendly) instructions.
895 class UncoalescableRewriter : public CopyRewriter {
896 protected:
897   const TargetInstrInfo &TII;
898   MachineRegisterInfo   &MRI;
899   /// The number of defs in the bitcast
900   unsigned NumDefs;
901
902 public:
903   UncoalescableRewriter(MachineInstr &MI, const TargetInstrInfo &TII,
904                          MachineRegisterInfo &MRI)
905       : CopyRewriter(MI), TII(TII), MRI(MRI) {
906     NumDefs = MI.getDesc().getNumDefs();
907   }
908
909   /// \brief Get the next rewritable def source (TrackReg, TrackSubReg)
910   /// All such sources need to be considered rewritable in order to
911   /// rewrite a uncoalescable copy-like instruction. This method return
912   /// each definition that must be checked if rewritable.
913   ///
914   bool getNextRewritableSource(unsigned &SrcReg, unsigned &SrcSubReg,
915                                unsigned &TrackReg,
916                                unsigned &TrackSubReg) override {
917     // Find the next non-dead definition and continue from there.
918     if (CurrentSrcIdx == NumDefs)
919       return false;
920
921     while (CopyLike.getOperand(CurrentSrcIdx).isDead()) {
922       ++CurrentSrcIdx;
923       if (CurrentSrcIdx == NumDefs)
924         return false;
925     }
926
927     // What we track are the alternative sources of the definition.
928     const MachineOperand &MODef = CopyLike.getOperand(CurrentSrcIdx);
929     TrackReg = MODef.getReg();
930     TrackSubReg = MODef.getSubReg();
931
932     CurrentSrcIdx++;
933     return true;
934   }
935
936   /// \brief Rewrite the source found through \p Def, by using the \p RewriteMap
937   /// and create a new COPY instruction. More info about RewriteMap in
938   /// PeepholeOptimizer::findNextSource. Right now this is only used to handle
939   /// Uncoalescable copies, since they are copy like instructions that aren't
940   /// recognized by the register allocator.
941   MachineInstr *
942   RewriteSource(TargetInstrInfo::RegSubRegPair Def,
943                 PeepholeOptimizer::RewriteMapTy &RewriteMap) override {
944     assert(!TargetRegisterInfo::isPhysicalRegister(Def.Reg) &&
945            "We do not rewrite physical registers");
946
947     // Find the new source to use in the COPY rewrite.
948     TargetInstrInfo::RegSubRegPair NewSrc =
949         getNewSource(&MRI, &TII, Def, RewriteMap);
950
951     // Insert the COPY.
952     const TargetRegisterClass *DefRC = MRI.getRegClass(Def.Reg);
953     unsigned NewVR = MRI.createVirtualRegister(DefRC);
954
955     MachineInstr *NewCopy =
956         BuildMI(*CopyLike.getParent(), &CopyLike, CopyLike.getDebugLoc(),
957                 TII.get(TargetOpcode::COPY), NewVR)
958             .addReg(NewSrc.Reg, 0, NewSrc.SubReg);
959
960     NewCopy->getOperand(0).setSubReg(Def.SubReg);
961     if (Def.SubReg)
962       NewCopy->getOperand(0).setIsUndef();
963
964     DEBUG(dbgs() << "-- RewriteSource\n");
965     DEBUG(dbgs() << "   Replacing: " << CopyLike);
966     DEBUG(dbgs() << "        With: " << *NewCopy);
967     MRI.replaceRegWith(Def.Reg, NewVR);
968     MRI.clearKillFlags(NewVR);
969
970     // We extended the lifetime of NewSrc.Reg, clear the kill flags to
971     // account for that.
972     MRI.clearKillFlags(NewSrc.Reg);
973
974     return NewCopy;
975   }
976 };
977
978 /// \brief Specialized rewriter for INSERT_SUBREG instruction.
979 class InsertSubregRewriter : public CopyRewriter {
980 public:
981   InsertSubregRewriter(MachineInstr &MI) : CopyRewriter(MI) {
982     assert(MI.isInsertSubreg() && "Invalid instruction");
983   }
984
985   /// \brief See CopyRewriter::getNextRewritableSource.
986   /// Here CopyLike has the following form:
987   /// dst = INSERT_SUBREG Src1, Src2.src2SubIdx, subIdx.
988   /// Src1 has the same register class has dst, hence, there is
989   /// nothing to rewrite.
990   /// Src2.src2SubIdx, may not be register coalescer friendly.
991   /// Therefore, the first call to this method returns:
992   /// (SrcReg, SrcSubReg) = (Src2, src2SubIdx).
993   /// (TrackReg, TrackSubReg) = (dst, subIdx).
994   ///
995   /// Subsequence calls will return false.
996   bool getNextRewritableSource(unsigned &SrcReg, unsigned &SrcSubReg,
997                                unsigned &TrackReg,
998                                unsigned &TrackSubReg) override {
999     // If we already get the only source we can rewrite, return false.
1000     if (CurrentSrcIdx == 2)
1001       return false;
1002     // We are looking at v2 = INSERT_SUBREG v0, v1, sub0.
1003     CurrentSrcIdx = 2;
1004     const MachineOperand &MOInsertedReg = CopyLike.getOperand(2);
1005     SrcReg = MOInsertedReg.getReg();
1006     SrcSubReg = MOInsertedReg.getSubReg();
1007     const MachineOperand &MODef = CopyLike.getOperand(0);
1008
1009     // We want to track something that is compatible with the
1010     // partial definition.
1011     TrackReg = MODef.getReg();
1012     if (MODef.getSubReg())
1013       // Bails if we have to compose sub-register indices.
1014       return false;
1015     TrackSubReg = (unsigned)CopyLike.getOperand(3).getImm();
1016     return true;
1017   }
1018   bool RewriteCurrentSource(unsigned NewReg, unsigned NewSubReg) override {
1019     if (CurrentSrcIdx != 2)
1020       return false;
1021     // We are rewriting the inserted reg.
1022     MachineOperand &MO = CopyLike.getOperand(CurrentSrcIdx);
1023     MO.setReg(NewReg);
1024     MO.setSubReg(NewSubReg);
1025     return true;
1026   }
1027 };
1028
1029 /// \brief Specialized rewriter for EXTRACT_SUBREG instruction.
1030 class ExtractSubregRewriter : public CopyRewriter {
1031   const TargetInstrInfo &TII;
1032
1033 public:
1034   ExtractSubregRewriter(MachineInstr &MI, const TargetInstrInfo &TII)
1035       : CopyRewriter(MI), TII(TII) {
1036     assert(MI.isExtractSubreg() && "Invalid instruction");
1037   }
1038
1039   /// \brief See CopyRewriter::getNextRewritableSource.
1040   /// Here CopyLike has the following form:
1041   /// dst.dstSubIdx = EXTRACT_SUBREG Src, subIdx.
1042   /// There is only one rewritable source: Src.subIdx,
1043   /// which defines dst.dstSubIdx.
1044   bool getNextRewritableSource(unsigned &SrcReg, unsigned &SrcSubReg,
1045                                unsigned &TrackReg,
1046                                unsigned &TrackSubReg) override {
1047     // If we already get the only source we can rewrite, return false.
1048     if (CurrentSrcIdx == 1)
1049       return false;
1050     // We are looking at v1 = EXTRACT_SUBREG v0, sub0.
1051     CurrentSrcIdx = 1;
1052     const MachineOperand &MOExtractedReg = CopyLike.getOperand(1);
1053     SrcReg = MOExtractedReg.getReg();
1054     // If we have to compose sub-register indices, bails out.
1055     if (MOExtractedReg.getSubReg())
1056       return false;
1057
1058     SrcSubReg = CopyLike.getOperand(2).getImm();
1059
1060     // We want to track something that is compatible with the definition.
1061     const MachineOperand &MODef = CopyLike.getOperand(0);
1062     TrackReg = MODef.getReg();
1063     TrackSubReg = MODef.getSubReg();
1064     return true;
1065   }
1066
1067   bool RewriteCurrentSource(unsigned NewReg, unsigned NewSubReg) override {
1068     // The only source we can rewrite is the input register.
1069     if (CurrentSrcIdx != 1)
1070       return false;
1071
1072     CopyLike.getOperand(CurrentSrcIdx).setReg(NewReg);
1073
1074     // If we find a source that does not require to extract something,
1075     // rewrite the operation with a copy.
1076     if (!NewSubReg) {
1077       // Move the current index to an invalid position.
1078       // We do not want another call to this method to be able
1079       // to do any change.
1080       CurrentSrcIdx = -1;
1081       // Rewrite the operation as a COPY.
1082       // Get rid of the sub-register index.
1083       CopyLike.RemoveOperand(2);
1084       // Morph the operation into a COPY.
1085       CopyLike.setDesc(TII.get(TargetOpcode::COPY));
1086       return true;
1087     }
1088     CopyLike.getOperand(CurrentSrcIdx + 1).setImm(NewSubReg);
1089     return true;
1090   }
1091 };
1092
1093 /// \brief Specialized rewriter for REG_SEQUENCE instruction.
1094 class RegSequenceRewriter : public CopyRewriter {
1095 public:
1096   RegSequenceRewriter(MachineInstr &MI) : CopyRewriter(MI) {
1097     assert(MI.isRegSequence() && "Invalid instruction");
1098   }
1099
1100   /// \brief See CopyRewriter::getNextRewritableSource.
1101   /// Here CopyLike has the following form:
1102   /// dst = REG_SEQUENCE Src1.src1SubIdx, subIdx1, Src2.src2SubIdx, subIdx2.
1103   /// Each call will return a different source, walking all the available
1104   /// source.
1105   ///
1106   /// The first call returns:
1107   /// (SrcReg, SrcSubReg) = (Src1, src1SubIdx).
1108   /// (TrackReg, TrackSubReg) = (dst, subIdx1).
1109   ///
1110   /// The second call returns:
1111   /// (SrcReg, SrcSubReg) = (Src2, src2SubIdx).
1112   /// (TrackReg, TrackSubReg) = (dst, subIdx2).
1113   ///
1114   /// And so on, until all the sources have been traversed, then
1115   /// it returns false.
1116   bool getNextRewritableSource(unsigned &SrcReg, unsigned &SrcSubReg,
1117                                unsigned &TrackReg,
1118                                unsigned &TrackSubReg) override {
1119     // We are looking at v0 = REG_SEQUENCE v1, sub1, v2, sub2, etc.
1120
1121     // If this is the first call, move to the first argument.
1122     if (CurrentSrcIdx == 0) {
1123       CurrentSrcIdx = 1;
1124     } else {
1125       // Otherwise, move to the next argument and check that it is valid.
1126       CurrentSrcIdx += 2;
1127       if (CurrentSrcIdx >= CopyLike.getNumOperands())
1128         return false;
1129     }
1130     const MachineOperand &MOInsertedReg = CopyLike.getOperand(CurrentSrcIdx);
1131     SrcReg = MOInsertedReg.getReg();
1132     // If we have to compose sub-register indices, bails out.
1133     if ((SrcSubReg = MOInsertedReg.getSubReg()))
1134       return false;
1135
1136     // We want to track something that is compatible with the related
1137     // partial definition.
1138     TrackSubReg = CopyLike.getOperand(CurrentSrcIdx + 1).getImm();
1139
1140     const MachineOperand &MODef = CopyLike.getOperand(0);
1141     TrackReg = MODef.getReg();
1142     // If we have to compose sub-registers, bails.
1143     return MODef.getSubReg() == 0;
1144   }
1145
1146   bool RewriteCurrentSource(unsigned NewReg, unsigned NewSubReg) override {
1147     // We cannot rewrite out of bound operands.
1148     // Moreover, rewritable sources are at odd positions.
1149     if ((CurrentSrcIdx & 1) != 1 || CurrentSrcIdx > CopyLike.getNumOperands())
1150       return false;
1151
1152     MachineOperand &MO = CopyLike.getOperand(CurrentSrcIdx);
1153     MO.setReg(NewReg);
1154     MO.setSubReg(NewSubReg);
1155     return true;
1156   }
1157 };
1158 } // End namespace.
1159
1160 /// \brief Get the appropriated CopyRewriter for \p MI.
1161 /// \return A pointer to a dynamically allocated CopyRewriter or nullptr
1162 /// if no rewriter works for \p MI.
1163 static CopyRewriter *getCopyRewriter(MachineInstr &MI,
1164                                      const TargetInstrInfo &TII,
1165                                      MachineRegisterInfo &MRI) {
1166   // Handle uncoalescable copy-like instructions.
1167   if (MI.isBitcast() || (MI.isRegSequenceLike() || MI.isInsertSubregLike() ||
1168                          MI.isExtractSubregLike()))
1169     return new UncoalescableRewriter(MI, TII, MRI);
1170
1171   switch (MI.getOpcode()) {
1172   default:
1173     return nullptr;
1174   case TargetOpcode::COPY:
1175     return new CopyRewriter(MI);
1176   case TargetOpcode::INSERT_SUBREG:
1177     return new InsertSubregRewriter(MI);
1178   case TargetOpcode::EXTRACT_SUBREG:
1179     return new ExtractSubregRewriter(MI, TII);
1180   case TargetOpcode::REG_SEQUENCE:
1181     return new RegSequenceRewriter(MI);
1182   }
1183   llvm_unreachable(nullptr);
1184 }
1185
1186 /// \brief Optimize generic copy instructions to avoid cross
1187 /// register bank copy. The optimization looks through a chain of
1188 /// copies and tries to find a source that has a compatible register
1189 /// class.
1190 /// Two register classes are considered to be compatible if they share
1191 /// the same register bank.
1192 /// New copies issued by this optimization are register allocator
1193 /// friendly. This optimization does not remove any copy as it may
1194 /// overconstraint the register allocator, but replaces some operands
1195 /// when possible.
1196 /// \pre isCoalescableCopy(*MI) is true.
1197 /// \return True, when \p MI has been rewritten. False otherwise.
1198 bool PeepholeOptimizer::optimizeCoalescableCopy(MachineInstr *MI) {
1199   assert(MI && isCoalescableCopy(*MI) && "Invalid argument");
1200   assert(MI->getDesc().getNumDefs() == 1 &&
1201          "Coalescer can understand multiple defs?!");
1202   const MachineOperand &MODef = MI->getOperand(0);
1203   // Do not rewrite physical definitions.
1204   if (TargetRegisterInfo::isPhysicalRegister(MODef.getReg()))
1205     return false;
1206
1207   bool Changed = false;
1208   // Get the right rewriter for the current copy.
1209   std::unique_ptr<CopyRewriter> CpyRewriter(getCopyRewriter(*MI, *TII, *MRI));
1210   // If none exists, bails out.
1211   if (!CpyRewriter)
1212     return false;
1213   // Rewrite each rewritable source.
1214   unsigned SrcReg, SrcSubReg, TrackReg, TrackSubReg;
1215   while (CpyRewriter->getNextRewritableSource(SrcReg, SrcSubReg, TrackReg,
1216                                               TrackSubReg)) {
1217     // Keep track of PHI nodes and its incoming edges when looking for sources.
1218     RewriteMapTy RewriteMap;
1219     // Try to find a more suitable source. If we failed to do so, or get the
1220     // actual source, move to the next source.
1221     if (!findNextSource(TrackReg, TrackSubReg, RewriteMap))
1222       continue;
1223
1224     // Get the new source to rewrite. TODO: Only enable handling of multiple
1225     // sources (PHIs) once we have a motivating example and testcases for it.
1226     TargetInstrInfo::RegSubRegPair TrackPair(TrackReg, TrackSubReg);
1227     TargetInstrInfo::RegSubRegPair NewSrc = CpyRewriter->getNewSource(
1228         MRI, TII, TrackPair, RewriteMap, false /* multiple sources */);
1229     if (SrcReg == NewSrc.Reg || NewSrc.Reg == 0)
1230       continue;
1231
1232     // Rewrite source.
1233     if (CpyRewriter->RewriteCurrentSource(NewSrc.Reg, NewSrc.SubReg)) {
1234       // We may have extended the live-range of NewSrc, account for that.
1235       MRI->clearKillFlags(NewSrc.Reg);
1236       Changed = true;
1237     }
1238   }
1239   // TODO: We could have a clean-up method to tidy the instruction.
1240   // E.g., v0 = INSERT_SUBREG v1, v1.sub0, sub0
1241   // => v0 = COPY v1
1242   // Currently we haven't seen motivating example for that and we
1243   // want to avoid untested code.
1244   NumRewrittenCopies += Changed;
1245   return Changed;
1246 }
1247
1248 /// \brief Optimize copy-like instructions to create
1249 /// register coalescer friendly instruction.
1250 /// The optimization tries to kill-off the \p MI by looking
1251 /// through a chain of copies to find a source that has a compatible
1252 /// register class.
1253 /// If such a source is found, it replace \p MI by a generic COPY
1254 /// operation.
1255 /// \pre isUncoalescableCopy(*MI) is true.
1256 /// \return True, when \p MI has been optimized. In that case, \p MI has
1257 /// been removed from its parent.
1258 /// All COPY instructions created, are inserted in \p LocalMIs.
1259 bool PeepholeOptimizer::optimizeUncoalescableCopy(
1260     MachineInstr *MI, SmallPtrSetImpl<MachineInstr *> &LocalMIs) {
1261   assert(MI && isUncoalescableCopy(*MI) && "Invalid argument");
1262
1263   // Check if we can rewrite all the values defined by this instruction.
1264   SmallVector<TargetInstrInfo::RegSubRegPair, 4> RewritePairs;
1265   // Get the right rewriter for the current copy.
1266   std::unique_ptr<CopyRewriter> CpyRewriter(getCopyRewriter(*MI, *TII, *MRI));
1267   // If none exists, bails out.
1268   if (!CpyRewriter)
1269     return false;
1270
1271   // Rewrite each rewritable source by generating new COPYs. This works
1272   // differently from optimizeCoalescableCopy since it first makes sure that all
1273   // definitions can be rewritten.
1274   RewriteMapTy RewriteMap;
1275   unsigned Reg, SubReg, CopyDefReg, CopyDefSubReg;
1276   while (CpyRewriter->getNextRewritableSource(Reg, SubReg, CopyDefReg,
1277                                               CopyDefSubReg)) {
1278     // If a physical register is here, this is probably for a good reason.
1279     // Do not rewrite that.
1280     if (TargetRegisterInfo::isPhysicalRegister(CopyDefReg))
1281       return false;
1282
1283     // If we do not know how to rewrite this definition, there is no point
1284     // in trying to kill this instruction.
1285     TargetInstrInfo::RegSubRegPair Def(CopyDefReg, CopyDefSubReg);
1286     if (!findNextSource(Def.Reg, Def.SubReg, RewriteMap))
1287       return false;
1288
1289     RewritePairs.push_back(Def);
1290   }
1291
1292   // The change is possible for all defs, do it.
1293   for (const auto &Def : RewritePairs) {
1294     // Rewrite the "copy" in a way the register coalescer understands.
1295     MachineInstr *NewCopy = CpyRewriter->RewriteSource(Def, RewriteMap);
1296     assert(NewCopy && "Should be able to always generate a new copy");
1297     LocalMIs.insert(NewCopy);
1298   }
1299
1300   // MI is now dead.
1301   MI->eraseFromParent();
1302   ++NumUncoalescableCopies;
1303   return true;
1304 }
1305
1306 /// isLoadFoldable - Check whether MI is a candidate for folding into a later
1307 /// instruction. We only fold loads to virtual registers and the virtual
1308 /// register defined has a single use.
1309 bool PeepholeOptimizer::isLoadFoldable(
1310                               MachineInstr *MI,
1311                               SmallSet<unsigned, 16> &FoldAsLoadDefCandidates) {
1312   if (!MI->canFoldAsLoad() || !MI->mayLoad())
1313     return false;
1314   const MCInstrDesc &MCID = MI->getDesc();
1315   if (MCID.getNumDefs() != 1)
1316     return false;
1317
1318   unsigned Reg = MI->getOperand(0).getReg();
1319   // To reduce compilation time, we check MRI->hasOneNonDBGUse when inserting
1320   // loads. It should be checked when processing uses of the load, since
1321   // uses can be removed during peephole.
1322   if (!MI->getOperand(0).getSubReg() &&
1323       TargetRegisterInfo::isVirtualRegister(Reg) &&
1324       MRI->hasOneNonDBGUse(Reg)) {
1325     FoldAsLoadDefCandidates.insert(Reg);
1326     return true;
1327   }
1328   return false;
1329 }
1330
1331 bool PeepholeOptimizer::isMoveImmediate(MachineInstr *MI,
1332                                         SmallSet<unsigned, 4> &ImmDefRegs,
1333                                  DenseMap<unsigned, MachineInstr*> &ImmDefMIs) {
1334   const MCInstrDesc &MCID = MI->getDesc();
1335   if (!MI->isMoveImmediate())
1336     return false;
1337   if (MCID.getNumDefs() != 1)
1338     return false;
1339   unsigned Reg = MI->getOperand(0).getReg();
1340   if (TargetRegisterInfo::isVirtualRegister(Reg)) {
1341     ImmDefMIs.insert(std::make_pair(Reg, MI));
1342     ImmDefRegs.insert(Reg);
1343     return true;
1344   }
1345
1346   return false;
1347 }
1348
1349 /// foldImmediate - Try folding register operands that are defined by move
1350 /// immediate instructions, i.e. a trivial constant folding optimization, if
1351 /// and only if the def and use are in the same BB.
1352 bool PeepholeOptimizer::foldImmediate(MachineInstr *MI, MachineBasicBlock *MBB,
1353                                       SmallSet<unsigned, 4> &ImmDefRegs,
1354                                  DenseMap<unsigned, MachineInstr*> &ImmDefMIs) {
1355   for (unsigned i = 0, e = MI->getDesc().getNumOperands(); i != e; ++i) {
1356     MachineOperand &MO = MI->getOperand(i);
1357     if (!MO.isReg() || MO.isDef())
1358       continue;
1359     unsigned Reg = MO.getReg();
1360     if (!TargetRegisterInfo::isVirtualRegister(Reg))
1361       continue;
1362     if (ImmDefRegs.count(Reg) == 0)
1363       continue;
1364     DenseMap<unsigned, MachineInstr*>::iterator II = ImmDefMIs.find(Reg);
1365     assert(II != ImmDefMIs.end());
1366     if (TII->FoldImmediate(MI, II->second, Reg, MRI)) {
1367       ++NumImmFold;
1368       return true;
1369     }
1370   }
1371   return false;
1372 }
1373
1374 bool PeepholeOptimizer::runOnMachineFunction(MachineFunction &MF) {
1375   if (skipOptnoneFunction(*MF.getFunction()))
1376     return false;
1377
1378   DEBUG(dbgs() << "********** PEEPHOLE OPTIMIZER **********\n");
1379   DEBUG(dbgs() << "********** Function: " << MF.getName() << '\n');
1380
1381   if (DisablePeephole)
1382     return false;
1383
1384   TII = MF.getSubtarget().getInstrInfo();
1385   TRI = MF.getSubtarget().getRegisterInfo();
1386   MRI = &MF.getRegInfo();
1387   DT  = Aggressive ? &getAnalysis<MachineDominatorTree>() : nullptr;
1388
1389   bool Changed = false;
1390
1391   for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I) {
1392     MachineBasicBlock *MBB = &*I;
1393
1394     bool SeenMoveImm = false;
1395
1396     // During this forward scan, at some point it needs to answer the question
1397     // "given a pointer to an MI in the current BB, is it located before or
1398     // after the current instruction".
1399     // To perform this, the following set keeps track of the MIs already seen
1400     // during the scan, if a MI is not in the set, it is assumed to be located
1401     // after. Newly created MIs have to be inserted in the set as well.
1402     SmallPtrSet<MachineInstr*, 16> LocalMIs;
1403     SmallSet<unsigned, 4> ImmDefRegs;
1404     DenseMap<unsigned, MachineInstr*> ImmDefMIs;
1405     SmallSet<unsigned, 16> FoldAsLoadDefCandidates;
1406
1407     for (MachineBasicBlock::iterator
1408            MII = I->begin(), MIE = I->end(); MII != MIE; ) {
1409       MachineInstr *MI = &*MII;
1410       // We may be erasing MI below, increment MII now.
1411       ++MII;
1412       LocalMIs.insert(MI);
1413
1414       // Skip debug values. They should not affect this peephole optimization.
1415       if (MI->isDebugValue())
1416           continue;
1417
1418       // If we run into an instruction we can't fold across, discard
1419       // the load candidates.
1420       if (MI->isLoadFoldBarrier())
1421         FoldAsLoadDefCandidates.clear();
1422
1423       if (MI->isPosition() || MI->isPHI() || MI->isImplicitDef() ||
1424           MI->isKill() || MI->isInlineAsm() ||
1425           MI->hasUnmodeledSideEffects())
1426         continue;
1427
1428       if ((isUncoalescableCopy(*MI) &&
1429            optimizeUncoalescableCopy(MI, LocalMIs)) ||
1430           (MI->isCompare() && optimizeCmpInstr(MI, MBB)) ||
1431           (MI->isSelect() && optimizeSelect(MI, LocalMIs))) {
1432         // MI is deleted.
1433         LocalMIs.erase(MI);
1434         Changed = true;
1435         continue;
1436       }
1437
1438       if (MI->isConditionalBranch() && optimizeCondBranch(MI)) {
1439         Changed = true;
1440         continue;
1441       }
1442
1443       if (isCoalescableCopy(*MI) && optimizeCoalescableCopy(MI)) {
1444         // MI is just rewritten.
1445         Changed = true;
1446         continue;
1447       }
1448
1449       if (isMoveImmediate(MI, ImmDefRegs, ImmDefMIs)) {
1450         SeenMoveImm = true;
1451       } else {
1452         Changed |= optimizeExtInstr(MI, MBB, LocalMIs);
1453         // optimizeExtInstr might have created new instructions after MI
1454         // and before the already incremented MII. Adjust MII so that the
1455         // next iteration sees the new instructions.
1456         MII = MI;
1457         ++MII;
1458         if (SeenMoveImm)
1459           Changed |= foldImmediate(MI, MBB, ImmDefRegs, ImmDefMIs);
1460       }
1461
1462       // Check whether MI is a load candidate for folding into a later
1463       // instruction. If MI is not a candidate, check whether we can fold an
1464       // earlier load into MI.
1465       if (!isLoadFoldable(MI, FoldAsLoadDefCandidates) &&
1466           !FoldAsLoadDefCandidates.empty()) {
1467         const MCInstrDesc &MIDesc = MI->getDesc();
1468         for (unsigned i = MIDesc.getNumDefs(); i != MIDesc.getNumOperands();
1469              ++i) {
1470           const MachineOperand &MOp = MI->getOperand(i);
1471           if (!MOp.isReg())
1472             continue;
1473           unsigned FoldAsLoadDefReg = MOp.getReg();
1474           if (FoldAsLoadDefCandidates.count(FoldAsLoadDefReg)) {
1475             // We need to fold load after optimizeCmpInstr, since
1476             // optimizeCmpInstr can enable folding by converting SUB to CMP.
1477             // Save FoldAsLoadDefReg because optimizeLoadInstr() resets it and
1478             // we need it for markUsesInDebugValueAsUndef().
1479             unsigned FoldedReg = FoldAsLoadDefReg;
1480             MachineInstr *DefMI = nullptr;
1481             MachineInstr *FoldMI = TII->optimizeLoadInstr(MI, MRI,
1482                                                           FoldAsLoadDefReg,
1483                                                           DefMI);
1484             if (FoldMI) {
1485               // Update LocalMIs since we replaced MI with FoldMI and deleted
1486               // DefMI.
1487               DEBUG(dbgs() << "Replacing: " << *MI);
1488               DEBUG(dbgs() << "     With: " << *FoldMI);
1489               LocalMIs.erase(MI);
1490               LocalMIs.erase(DefMI);
1491               LocalMIs.insert(FoldMI);
1492               MI->eraseFromParent();
1493               DefMI->eraseFromParent();
1494               MRI->markUsesInDebugValueAsUndef(FoldedReg);
1495               FoldAsLoadDefCandidates.erase(FoldedReg);
1496               ++NumLoadFold;
1497               // MI is replaced with FoldMI.
1498               Changed = true;
1499               break;
1500             }
1501           }
1502         }
1503       }
1504     }
1505   }
1506
1507   return Changed;
1508 }
1509
1510 ValueTrackerResult ValueTracker::getNextSourceFromCopy() {
1511   assert(Def->isCopy() && "Invalid definition");
1512   // Copy instruction are supposed to be: Def = Src.
1513   // If someone breaks this assumption, bad things will happen everywhere.
1514   assert(Def->getNumOperands() == 2 && "Invalid number of operands");
1515
1516   if (Def->getOperand(DefIdx).getSubReg() != DefSubReg)
1517     // If we look for a different subreg, it means we want a subreg of src.
1518     // Bails as we do not support composing subreg yet.
1519     return ValueTrackerResult();
1520   // Otherwise, we want the whole source.
1521   const MachineOperand &Src = Def->getOperand(1);
1522   return ValueTrackerResult(Src.getReg(), Src.getSubReg());
1523 }
1524
1525 ValueTrackerResult ValueTracker::getNextSourceFromBitcast() {
1526   assert(Def->isBitcast() && "Invalid definition");
1527
1528   // Bail if there are effects that a plain copy will not expose.
1529   if (Def->hasUnmodeledSideEffects())
1530     return ValueTrackerResult();
1531
1532   // Bitcasts with more than one def are not supported.
1533   if (Def->getDesc().getNumDefs() != 1)
1534     return ValueTrackerResult();
1535   if (Def->getOperand(DefIdx).getSubReg() != DefSubReg)
1536     // If we look for a different subreg, it means we want a subreg of the src.
1537     // Bails as we do not support composing subreg yet.
1538     return ValueTrackerResult();
1539
1540   unsigned SrcIdx = Def->getNumOperands();
1541   for (unsigned OpIdx = DefIdx + 1, EndOpIdx = SrcIdx; OpIdx != EndOpIdx;
1542        ++OpIdx) {
1543     const MachineOperand &MO = Def->getOperand(OpIdx);
1544     if (!MO.isReg() || !MO.getReg())
1545       continue;
1546     assert(!MO.isDef() && "We should have skipped all the definitions by now");
1547     if (SrcIdx != EndOpIdx)
1548       // Multiple sources?
1549       return ValueTrackerResult();
1550     SrcIdx = OpIdx;
1551   }
1552   const MachineOperand &Src = Def->getOperand(SrcIdx);
1553   return ValueTrackerResult(Src.getReg(), Src.getSubReg());
1554 }
1555
1556 ValueTrackerResult ValueTracker::getNextSourceFromRegSequence() {
1557   assert((Def->isRegSequence() || Def->isRegSequenceLike()) &&
1558          "Invalid definition");
1559
1560   if (Def->getOperand(DefIdx).getSubReg())
1561     // If we are composing subreg, bails out.
1562     // The case we are checking is Def.<subreg> = REG_SEQUENCE.
1563     // This should almost never happen as the SSA property is tracked at
1564     // the register level (as opposed to the subreg level).
1565     // I.e.,
1566     // Def.sub0 =
1567     // Def.sub1 =
1568     // is a valid SSA representation for Def.sub0 and Def.sub1, but not for
1569     // Def. Thus, it must not be generated.
1570     // However, some code could theoretically generates a single
1571     // Def.sub0 (i.e, not defining the other subregs) and we would
1572     // have this case.
1573     // If we can ascertain (or force) that this never happens, we could
1574     // turn that into an assertion.
1575     return ValueTrackerResult();
1576
1577   if (!TII)
1578     // We could handle the REG_SEQUENCE here, but we do not want to
1579     // duplicate the code from the generic TII.
1580     return ValueTrackerResult();
1581
1582   SmallVector<TargetInstrInfo::RegSubRegPairAndIdx, 8> RegSeqInputRegs;
1583   if (!TII->getRegSequenceInputs(*Def, DefIdx, RegSeqInputRegs))
1584     return ValueTrackerResult();
1585
1586   // We are looking at:
1587   // Def = REG_SEQUENCE v0, sub0, v1, sub1, ...
1588   // Check if one of the operand defines the subreg we are interested in.
1589   for (auto &RegSeqInput : RegSeqInputRegs) {
1590     if (RegSeqInput.SubIdx == DefSubReg) {
1591       if (RegSeqInput.SubReg)
1592         // Bails if we have to compose sub registers.
1593         return ValueTrackerResult();
1594
1595       return ValueTrackerResult(RegSeqInput.Reg, RegSeqInput.SubReg);
1596     }
1597   }
1598
1599   // If the subreg we are tracking is super-defined by another subreg,
1600   // we could follow this value. However, this would require to compose
1601   // the subreg and we do not do that for now.
1602   return ValueTrackerResult();
1603 }
1604
1605 ValueTrackerResult ValueTracker::getNextSourceFromInsertSubreg() {
1606   assert((Def->isInsertSubreg() || Def->isInsertSubregLike()) &&
1607          "Invalid definition");
1608
1609   if (Def->getOperand(DefIdx).getSubReg())
1610     // If we are composing subreg, bails out.
1611     // Same remark as getNextSourceFromRegSequence.
1612     // I.e., this may be turned into an assert.
1613     return ValueTrackerResult();
1614
1615   if (!TII)
1616     // We could handle the REG_SEQUENCE here, but we do not want to
1617     // duplicate the code from the generic TII.
1618     return ValueTrackerResult();
1619
1620   TargetInstrInfo::RegSubRegPair BaseReg;
1621   TargetInstrInfo::RegSubRegPairAndIdx InsertedReg;
1622   if (!TII->getInsertSubregInputs(*Def, DefIdx, BaseReg, InsertedReg))
1623     return ValueTrackerResult();
1624
1625   // We are looking at:
1626   // Def = INSERT_SUBREG v0, v1, sub1
1627   // There are two cases:
1628   // 1. DefSubReg == sub1, get v1.
1629   // 2. DefSubReg != sub1, the value may be available through v0.
1630
1631   // #1 Check if the inserted register matches the required sub index.
1632   if (InsertedReg.SubIdx == DefSubReg) {
1633     return ValueTrackerResult(InsertedReg.Reg, InsertedReg.SubReg);
1634   }
1635   // #2 Otherwise, if the sub register we are looking for is not partial
1636   // defined by the inserted element, we can look through the main
1637   // register (v0).
1638   const MachineOperand &MODef = Def->getOperand(DefIdx);
1639   // If the result register (Def) and the base register (v0) do not
1640   // have the same register class or if we have to compose
1641   // subregisters, bails out.
1642   if (MRI.getRegClass(MODef.getReg()) != MRI.getRegClass(BaseReg.Reg) ||
1643       BaseReg.SubReg)
1644     return ValueTrackerResult();
1645
1646   // Get the TRI and check if the inserted sub-register overlaps with the
1647   // sub-register we are tracking.
1648   const TargetRegisterInfo *TRI = MRI.getTargetRegisterInfo();
1649   if (!TRI ||
1650       (TRI->getSubRegIndexLaneMask(DefSubReg) &
1651        TRI->getSubRegIndexLaneMask(InsertedReg.SubIdx)) != 0)
1652     return ValueTrackerResult();
1653   // At this point, the value is available in v0 via the same subreg
1654   // we used for Def.
1655   return ValueTrackerResult(BaseReg.Reg, DefSubReg);
1656 }
1657
1658 ValueTrackerResult ValueTracker::getNextSourceFromExtractSubreg() {
1659   assert((Def->isExtractSubreg() ||
1660           Def->isExtractSubregLike()) && "Invalid definition");
1661   // We are looking at:
1662   // Def = EXTRACT_SUBREG v0, sub0
1663
1664   // Bails if we have to compose sub registers.
1665   // Indeed, if DefSubReg != 0, we would have to compose it with sub0.
1666   if (DefSubReg)
1667     return ValueTrackerResult();
1668
1669   if (!TII)
1670     // We could handle the EXTRACT_SUBREG here, but we do not want to
1671     // duplicate the code from the generic TII.
1672     return ValueTrackerResult();
1673
1674   TargetInstrInfo::RegSubRegPairAndIdx ExtractSubregInputReg;
1675   if (!TII->getExtractSubregInputs(*Def, DefIdx, ExtractSubregInputReg))
1676     return ValueTrackerResult();
1677
1678   // Bails if we have to compose sub registers.
1679   // Likewise, if v0.subreg != 0, we would have to compose v0.subreg with sub0.
1680   if (ExtractSubregInputReg.SubReg)
1681     return ValueTrackerResult();
1682   // Otherwise, the value is available in the v0.sub0.
1683   return ValueTrackerResult(ExtractSubregInputReg.Reg, ExtractSubregInputReg.SubIdx);
1684 }
1685
1686 ValueTrackerResult ValueTracker::getNextSourceFromSubregToReg() {
1687   assert(Def->isSubregToReg() && "Invalid definition");
1688   // We are looking at:
1689   // Def = SUBREG_TO_REG Imm, v0, sub0
1690
1691   // Bails if we have to compose sub registers.
1692   // If DefSubReg != sub0, we would have to check that all the bits
1693   // we track are included in sub0 and if yes, we would have to
1694   // determine the right subreg in v0.
1695   if (DefSubReg != Def->getOperand(3).getImm())
1696     return ValueTrackerResult();
1697   // Bails if we have to compose sub registers.
1698   // Likewise, if v0.subreg != 0, we would have to compose it with sub0.
1699   if (Def->getOperand(2).getSubReg())
1700     return ValueTrackerResult();
1701
1702   return ValueTrackerResult(Def->getOperand(2).getReg(),
1703                             Def->getOperand(3).getImm());
1704 }
1705
1706 /// \brief Explore each PHI incoming operand and return its sources
1707 ValueTrackerResult ValueTracker::getNextSourceFromPHI() {
1708   assert(Def->isPHI() && "Invalid definition");
1709   ValueTrackerResult Res;
1710
1711   // If we look for a different subreg, bails as we do not
1712   // support composing subreg yet.
1713   if (Def->getOperand(0).getSubReg() != DefSubReg)
1714     return ValueTrackerResult();
1715
1716   // Return all register sources for PHI instructions.
1717   for (unsigned i = 1, e = Def->getNumOperands(); i < e; i += 2) {
1718     auto &MO = Def->getOperand(i);
1719     assert(MO.isReg() && "Invalid PHI instruction");
1720     Res.addSource(MO.getReg(), MO.getSubReg());
1721   }
1722
1723   return Res;
1724 }
1725
1726 ValueTrackerResult ValueTracker::getNextSourceImpl() {
1727   assert(Def && "This method needs a valid definition");
1728
1729   assert(
1730       (DefIdx < Def->getDesc().getNumDefs() || Def->getDesc().isVariadic()) &&
1731       Def->getOperand(DefIdx).isDef() && "Invalid DefIdx");
1732   if (Def->isCopy())
1733     return getNextSourceFromCopy();
1734   if (Def->isBitcast())
1735     return getNextSourceFromBitcast();
1736   // All the remaining cases involve "complex" instructions.
1737   // Bails if we did not ask for the advanced tracking.
1738   if (!UseAdvancedTracking)
1739     return ValueTrackerResult();
1740   if (Def->isRegSequence() || Def->isRegSequenceLike())
1741     return getNextSourceFromRegSequence();
1742   if (Def->isInsertSubreg() || Def->isInsertSubregLike())
1743     return getNextSourceFromInsertSubreg();
1744   if (Def->isExtractSubreg() || Def->isExtractSubregLike())
1745     return getNextSourceFromExtractSubreg();
1746   if (Def->isSubregToReg())
1747     return getNextSourceFromSubregToReg();
1748   if (Def->isPHI())
1749     return getNextSourceFromPHI();
1750   return ValueTrackerResult();
1751 }
1752
1753 ValueTrackerResult ValueTracker::getNextSource() {
1754   // If we reach a point where we cannot move up in the use-def chain,
1755   // there is nothing we can get.
1756   if (!Def)
1757     return ValueTrackerResult();
1758
1759   ValueTrackerResult Res = getNextSourceImpl();
1760   if (Res.isValid()) {
1761     // Update definition, definition index, and subregister for the
1762     // next call of getNextSource.
1763     // Update the current register.
1764     bool OneRegSrc = Res.getNumSources() == 1;
1765     if (OneRegSrc)
1766       Reg = Res.getSrcReg(0);
1767     // Update the result before moving up in the use-def chain
1768     // with the instruction containing the last found sources.
1769     Res.setInst(Def);
1770
1771     // If we can still move up in the use-def chain, move to the next
1772     // definition.
1773     if (!TargetRegisterInfo::isPhysicalRegister(Reg) && OneRegSrc) {
1774       Def = MRI.getVRegDef(Reg);
1775       DefIdx = MRI.def_begin(Reg).getOperandNo();
1776       DefSubReg = Res.getSrcSubReg(0);
1777       return Res;
1778     }
1779   }
1780   // If we end up here, this means we will not be able to find another source
1781   // for the next iteration. Make sure any new call to getNextSource bails out
1782   // early by cutting the use-def chain.
1783   Def = nullptr;
1784   return Res;
1785 }