1 //===---- ScheduleDAGInstrs.cpp - MachineInstr Rescheduling ---------------===//
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 This implements the ScheduleDAGInstrs class, which implements
11 /// re-scheduling of MachineInstrs.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #include "llvm/CodeGen/ScheduleDAGInstrs.h"
16 #include "llvm/ADT/IntEqClasses.h"
17 #include "llvm/ADT/MapVector.h"
18 #include "llvm/ADT/SmallPtrSet.h"
19 #include "llvm/ADT/SmallVector.h"
20 #include "llvm/ADT/SparseSet.h"
21 #include "llvm/ADT/iterator_range.h"
22 #include "llvm/Analysis/AliasAnalysis.h"
23 #include "llvm/Analysis/ValueTracking.h"
24 #include "llvm/CodeGen/LiveIntervalAnalysis.h"
25 #include "llvm/CodeGen/LivePhysRegs.h"
26 #include "llvm/CodeGen/MachineBasicBlock.h"
27 #include "llvm/CodeGen/MachineFrameInfo.h"
28 #include "llvm/CodeGen/MachineFunction.h"
29 #include "llvm/CodeGen/MachineInstr.h"
30 #include "llvm/CodeGen/MachineInstrBundle.h"
31 #include "llvm/CodeGen/MachineMemOperand.h"
32 #include "llvm/CodeGen/MachineOperand.h"
33 #include "llvm/CodeGen/MachineRegisterInfo.h"
34 #include "llvm/CodeGen/PseudoSourceValue.h"
35 #include "llvm/CodeGen/RegisterPressure.h"
36 #include "llvm/CodeGen/ScheduleDAG.h"
37 #include "llvm/CodeGen/ScheduleDFS.h"
38 #include "llvm/CodeGen/SlotIndexes.h"
39 #include "llvm/IR/Constants.h"
40 #include "llvm/IR/Function.h"
41 #include "llvm/IR/Instruction.h"
42 #include "llvm/IR/Instructions.h"
43 #include "llvm/IR/Operator.h"
44 #include "llvm/IR/Type.h"
45 #include "llvm/IR/Value.h"
46 #include "llvm/MC/LaneBitmask.h"
47 #include "llvm/MC/MCRegisterInfo.h"
48 #include "llvm/Support/Casting.h"
49 #include "llvm/Support/CommandLine.h"
50 #include "llvm/Support/Compiler.h"
51 #include "llvm/Support/Debug.h"
52 #include "llvm/Support/ErrorHandling.h"
53 #include "llvm/Support/Format.h"
54 #include "llvm/Support/raw_ostream.h"
55 #include "llvm/Target/TargetRegisterInfo.h"
56 #include "llvm/Target/TargetSubtargetInfo.h"
57 #include <algorithm>
58 #include <cassert>
59 #include <iterator>
60 #include <string>
61 #include <utility>
62 #include <vector>
63 
64 using namespace llvm;
65 
66 #define DEBUG_TYPE "machine-scheduler"
67 
68 static cl::opt<bool> EnableAASchedMI("enable-aa-sched-mi", cl::Hidden,
69     cl::ZeroOrMore, cl::init(false),
70     cl::desc("Enable use of AA during MI DAG construction"));
71 
72 static cl::opt<bool> UseTBAA("use-tbaa-in-sched-mi", cl::Hidden,
73     cl::init(true), cl::desc("Enable use of TBAA during MI DAG construction"));
74 
75 // Note: the two options below might be used in tuning compile time vs
76 // output quality. Setting HugeRegion so large that it will never be
77 // reached means best-effort, but may be slow.
78 
79 // When Stores and Loads maps (or NonAliasStores and NonAliasLoads)
80 // together hold this many SUs, a reduction of maps will be done.
81 static cl::opt<unsigned> HugeRegion("dag-maps-huge-region", cl::Hidden,
82     cl::init(1000), cl::desc("The limit to use while constructing the DAG "
83                              "prior to scheduling, at which point a trade-off "
84                              "is made to avoid excessive compile time."));
85 
86 static cl::opt<unsigned> ReductionSize(
87     "dag-maps-reduction-size", cl::Hidden,
88     cl::desc("A huge scheduling region will have maps reduced by this many "
89              "nodes at a time. Defaults to HugeRegion / 2."));
90 
91 static unsigned getReductionSize() {
92   // Always reduce a huge region with half of the elements, except
93   // when user sets this number explicitly.
94   if (ReductionSize.getNumOccurrences() == 0)
95     return HugeRegion / 2;
96   return ReductionSize;
97 }
98 
99 static void dumpSUList(ScheduleDAGInstrs::SUList &L) {
100 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
101   dbgs() << "{ ";
102   for (const SUnit *su : L) {
103     dbgs() << "SU(" << su->NodeNum << ")";
104     if (su != L.back())
105       dbgs() << ", ";
106   }
107   dbgs() << "}\n";
108 #endif
109 }
110 
111 ScheduleDAGInstrs::ScheduleDAGInstrs(MachineFunction &mf,
112                                      const MachineLoopInfo *mli,
113                                      bool RemoveKillFlags)
114     : ScheduleDAG(mf), MLI(mli), MFI(mf.getFrameInfo()),
115       RemoveKillFlags(RemoveKillFlags),
116       UnknownValue(UndefValue::get(
117                              Type::getVoidTy(mf.getFunction()->getContext()))) {
118   DbgValues.clear();
119 
120   const TargetSubtargetInfo &ST = mf.getSubtarget();
121   SchedModel.init(ST.getSchedModel(), &ST, TII);
122 }
123 
124 /// If this machine instr has memory reference information and it can be
125 /// tracked to a normal reference to a known object, return the Value
126 /// for that object. This function returns false the memory location is
127 /// unknown or may alias anything.
128 static bool getUnderlyingObjectsForInstr(const MachineInstr *MI,
129                                          const MachineFrameInfo &MFI,
130                                          UnderlyingObjectsVector &Objects,
131                                          const DataLayout &DL) {
132   auto allMMOsOkay = [&]() {
133     for (const MachineMemOperand *MMO : MI->memoperands()) {
134       if (MMO->isVolatile())
135         return false;
136 
137       if (const PseudoSourceValue *PSV = MMO->getPseudoValue()) {
138         // Function that contain tail calls don't have unique PseudoSourceValue
139         // objects. Two PseudoSourceValues might refer to the same or
140         // overlapping locations. The client code calling this function assumes
141         // this is not the case. So return a conservative answer of no known
142         // object.
143         if (MFI.hasTailCall())
144           return false;
145 
146         // For now, ignore PseudoSourceValues which may alias LLVM IR values
147         // because the code that uses this function has no way to cope with
148         // such aliases.
149         if (PSV->isAliased(&MFI))
150           return false;
151 
152         bool MayAlias = PSV->mayAlias(&MFI);
153         Objects.push_back(UnderlyingObjectsVector::value_type(PSV, MayAlias));
154       } else if (const Value *V = MMO->getValue()) {
155         SmallVector<Value *, 4> Objs;
156         if (!getUnderlyingObjectsForCodeGen(V, Objs, DL))
157           return false;
158 
159         for (Value *V : Objs) {
160           assert(isIdentifiedObject(V));
161           Objects.push_back(UnderlyingObjectsVector::value_type(V, true));
162         }
163       } else
164         return false;
165     }
166     return true;
167   };
168 
169   if (!allMMOsOkay()) {
170     Objects.clear();
171     return false;
172   }
173 
174   return true;
175 }
176 
177 void ScheduleDAGInstrs::startBlock(MachineBasicBlock *bb) {
178   BB = bb;
179 }
180 
181 void ScheduleDAGInstrs::finishBlock() {
182   // Subclasses should no longer refer to the old block.
183   BB = nullptr;
184 }
185 
186 void ScheduleDAGInstrs::enterRegion(MachineBasicBlock *bb,
187                                     MachineBasicBlock::iterator begin,
188                                     MachineBasicBlock::iterator end,
189                                     unsigned regioninstrs) {
190   assert(bb == BB && "startBlock should set BB");
191   RegionBegin = begin;
192   RegionEnd = end;
193   NumRegionInstrs = regioninstrs;
194 }
195 
196 void ScheduleDAGInstrs::exitRegion() {
197   // Nothing to do.
198 }
199 
200 void ScheduleDAGInstrs::addSchedBarrierDeps() {
201   MachineInstr *ExitMI = RegionEnd != BB->end() ? &*RegionEnd : nullptr;
202   ExitSU.setInstr(ExitMI);
203   // Add dependencies on the defs and uses of the instruction.
204   if (ExitMI) {
205     for (const MachineOperand &MO : ExitMI->operands()) {
206       if (!MO.isReg() || MO.isDef()) continue;
207       unsigned Reg = MO.getReg();
208       if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
209         Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
210       } else if (TargetRegisterInfo::isVirtualRegister(Reg) && MO.readsReg()) {
211         addVRegUseDeps(&ExitSU, ExitMI->getOperandNo(&MO));
212       }
213     }
214   }
215   if (!ExitMI || (!ExitMI->isCall() && !ExitMI->isBarrier())) {
216     // For others, e.g. fallthrough, conditional branch, assume the exit
217     // uses all the registers that are livein to the successor blocks.
218     for (const MachineBasicBlock *Succ : BB->successors()) {
219       for (const auto &LI : Succ->liveins()) {
220         if (!Uses.contains(LI.PhysReg))
221           Uses.insert(PhysRegSUOper(&ExitSU, -1, LI.PhysReg));
222       }
223     }
224   }
225 }
226 
227 /// MO is an operand of SU's instruction that defines a physical register. Adds
228 /// data dependencies from SU to any uses of the physical register.
229 void ScheduleDAGInstrs::addPhysRegDataDeps(SUnit *SU, unsigned OperIdx) {
230   const MachineOperand &MO = SU->getInstr()->getOperand(OperIdx);
231   assert(MO.isDef() && "expect physreg def");
232 
233   // Ask the target if address-backscheduling is desirable, and if so how much.
234   const TargetSubtargetInfo &ST = MF.getSubtarget();
235 
236   for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
237        Alias.isValid(); ++Alias) {
238     if (!Uses.contains(*Alias))
239       continue;
240     for (Reg2SUnitsMap::iterator I = Uses.find(*Alias); I != Uses.end(); ++I) {
241       SUnit *UseSU = I->SU;
242       if (UseSU == SU)
243         continue;
244 
245       // Adjust the dependence latency using operand def/use information,
246       // then allow the target to perform its own adjustments.
247       int UseOp = I->OpIdx;
248       MachineInstr *RegUse = nullptr;
249       SDep Dep;
250       if (UseOp < 0)
251         Dep = SDep(SU, SDep::Artificial);
252       else {
253         // Set the hasPhysRegDefs only for physreg defs that have a use within
254         // the scheduling region.
255         SU->hasPhysRegDefs = true;
256         Dep = SDep(SU, SDep::Data, *Alias);
257         RegUse = UseSU->getInstr();
258       }
259       Dep.setLatency(
260         SchedModel.computeOperandLatency(SU->getInstr(), OperIdx, RegUse,
261                                          UseOp));
262 
263       ST.adjustSchedDependency(SU, UseSU, Dep);
264       UseSU->addPred(Dep);
265     }
266   }
267 }
268 
269 /// \brief Adds register dependencies (data, anti, and output) from this SUnit
270 /// to following instructions in the same scheduling region that depend the
271 /// physical register referenced at OperIdx.
272 void ScheduleDAGInstrs::addPhysRegDeps(SUnit *SU, unsigned OperIdx) {
273   MachineInstr *MI = SU->getInstr();
274   MachineOperand &MO = MI->getOperand(OperIdx);
275   unsigned Reg = MO.getReg();
276   // We do not need to track any dependencies for constant registers.
277   if (MRI.isConstantPhysReg(Reg))
278     return;
279 
280   // Optionally add output and anti dependencies. For anti
281   // dependencies we use a latency of 0 because for a multi-issue
282   // target we want to allow the defining instruction to issue
283   // in the same cycle as the using instruction.
284   // TODO: Using a latency of 1 here for output dependencies assumes
285   //       there's no cost for reusing registers.
286   SDep::Kind Kind = MO.isUse() ? SDep::Anti : SDep::Output;
287   for (MCRegAliasIterator Alias(Reg, TRI, true); Alias.isValid(); ++Alias) {
288     if (!Defs.contains(*Alias))
289       continue;
290     for (Reg2SUnitsMap::iterator I = Defs.find(*Alias); I != Defs.end(); ++I) {
291       SUnit *DefSU = I->SU;
292       if (DefSU == &ExitSU)
293         continue;
294       if (DefSU != SU &&
295           (Kind != SDep::Output || !MO.isDead() ||
296            !DefSU->getInstr()->registerDefIsDead(*Alias))) {
297         if (Kind == SDep::Anti)
298           DefSU->addPred(SDep(SU, Kind, /*Reg=*/*Alias));
299         else {
300           SDep Dep(SU, Kind, /*Reg=*/*Alias);
301           Dep.setLatency(
302             SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
303           DefSU->addPred(Dep);
304         }
305       }
306     }
307   }
308 
309   if (!MO.isDef()) {
310     SU->hasPhysRegUses = true;
311     // Either insert a new Reg2SUnits entry with an empty SUnits list, or
312     // retrieve the existing SUnits list for this register's uses.
313     // Push this SUnit on the use list.
314     Uses.insert(PhysRegSUOper(SU, OperIdx, Reg));
315     if (RemoveKillFlags)
316       MO.setIsKill(false);
317   } else {
318     addPhysRegDataDeps(SU, OperIdx);
319 
320     // clear this register's use list
321     if (Uses.contains(Reg))
322       Uses.eraseAll(Reg);
323 
324     if (!MO.isDead()) {
325       Defs.eraseAll(Reg);
326     } else if (SU->isCall) {
327       // Calls will not be reordered because of chain dependencies (see
328       // below). Since call operands are dead, calls may continue to be added
329       // to the DefList making dependence checking quadratic in the size of
330       // the block. Instead, we leave only one call at the back of the
331       // DefList.
332       Reg2SUnitsMap::RangePair P = Defs.equal_range(Reg);
333       Reg2SUnitsMap::iterator B = P.first;
334       Reg2SUnitsMap::iterator I = P.second;
335       for (bool isBegin = I == B; !isBegin; /* empty */) {
336         isBegin = (--I) == B;
337         if (!I->SU->isCall)
338           break;
339         I = Defs.erase(I);
340       }
341     }
342 
343     // Defs are pushed in the order they are visited and never reordered.
344     Defs.insert(PhysRegSUOper(SU, OperIdx, Reg));
345   }
346 }
347 
348 LaneBitmask ScheduleDAGInstrs::getLaneMaskForMO(const MachineOperand &MO) const
349 {
350   unsigned Reg = MO.getReg();
351   // No point in tracking lanemasks if we don't have interesting subregisters.
352   const TargetRegisterClass &RC = *MRI.getRegClass(Reg);
353   if (!RC.HasDisjunctSubRegs)
354     return LaneBitmask::getAll();
355 
356   unsigned SubReg = MO.getSubReg();
357   if (SubReg == 0)
358     return RC.getLaneMask();
359   return TRI->getSubRegIndexLaneMask(SubReg);
360 }
361 
362 /// Adds register output and data dependencies from this SUnit to instructions
363 /// that occur later in the same scheduling region if they read from or write to
364 /// the virtual register defined at OperIdx.
365 ///
366 /// TODO: Hoist loop induction variable increments. This has to be
367 /// reevaluated. Generally, IV scheduling should be done before coalescing.
368 void ScheduleDAGInstrs::addVRegDefDeps(SUnit *SU, unsigned OperIdx) {
369   MachineInstr *MI = SU->getInstr();
370   MachineOperand &MO = MI->getOperand(OperIdx);
371   unsigned Reg = MO.getReg();
372 
373   LaneBitmask DefLaneMask;
374   LaneBitmask KillLaneMask;
375   if (TrackLaneMasks) {
376     bool IsKill = MO.getSubReg() == 0 || MO.isUndef();
377     DefLaneMask = getLaneMaskForMO(MO);
378     // If we have a <read-undef> flag, none of the lane values comes from an
379     // earlier instruction.
380     KillLaneMask = IsKill ? LaneBitmask::getAll() : DefLaneMask;
381 
382     // Clear undef flag, we'll re-add it later once we know which subregister
383     // Def is first.
384     MO.setIsUndef(false);
385   } else {
386     DefLaneMask = LaneBitmask::getAll();
387     KillLaneMask = LaneBitmask::getAll();
388   }
389 
390   if (MO.isDead()) {
391     assert(CurrentVRegUses.find(Reg) == CurrentVRegUses.end() &&
392            "Dead defs should have no uses");
393   } else {
394     // Add data dependence to all uses we found so far.
395     const TargetSubtargetInfo &ST = MF.getSubtarget();
396     for (VReg2SUnitOperIdxMultiMap::iterator I = CurrentVRegUses.find(Reg),
397          E = CurrentVRegUses.end(); I != E; /*empty*/) {
398       LaneBitmask LaneMask = I->LaneMask;
399       // Ignore uses of other lanes.
400       if ((LaneMask & KillLaneMask).none()) {
401         ++I;
402         continue;
403       }
404 
405       if ((LaneMask & DefLaneMask).any()) {
406         SUnit *UseSU = I->SU;
407         MachineInstr *Use = UseSU->getInstr();
408         SDep Dep(SU, SDep::Data, Reg);
409         Dep.setLatency(SchedModel.computeOperandLatency(MI, OperIdx, Use,
410                                                         I->OperandIndex));
411         ST.adjustSchedDependency(SU, UseSU, Dep);
412         UseSU->addPred(Dep);
413       }
414 
415       LaneMask &= ~KillLaneMask;
416       // If we found a Def for all lanes of this use, remove it from the list.
417       if (LaneMask.any()) {
418         I->LaneMask = LaneMask;
419         ++I;
420       } else
421         I = CurrentVRegUses.erase(I);
422     }
423   }
424 
425   // Shortcut: Singly defined vregs do not have output/anti dependencies.
426   if (MRI.hasOneDef(Reg))
427     return;
428 
429   // Add output dependence to the next nearest defs of this vreg.
430   //
431   // Unless this definition is dead, the output dependence should be
432   // transitively redundant with antidependencies from this definition's
433   // uses. We're conservative for now until we have a way to guarantee the uses
434   // are not eliminated sometime during scheduling. The output dependence edge
435   // is also useful if output latency exceeds def-use latency.
436   LaneBitmask LaneMask = DefLaneMask;
437   for (VReg2SUnit &V2SU : make_range(CurrentVRegDefs.find(Reg),
438                                      CurrentVRegDefs.end())) {
439     // Ignore defs for other lanes.
440     if ((V2SU.LaneMask & LaneMask).none())
441       continue;
442     // Add an output dependence.
443     SUnit *DefSU = V2SU.SU;
444     // Ignore additional defs of the same lanes in one instruction. This can
445     // happen because lanemasks are shared for targets with too many
446     // subregisters. We also use some representration tricks/hacks where we
447     // add super-register defs/uses, to imply that although we only access parts
448     // of the reg we care about the full one.
449     if (DefSU == SU)
450       continue;
451     SDep Dep(SU, SDep::Output, Reg);
452     Dep.setLatency(
453       SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
454     DefSU->addPred(Dep);
455 
456     // Update current definition. This can get tricky if the def was about a
457     // bigger lanemask before. We then have to shrink it and create a new
458     // VReg2SUnit for the non-overlapping part.
459     LaneBitmask OverlapMask = V2SU.LaneMask & LaneMask;
460     LaneBitmask NonOverlapMask = V2SU.LaneMask & ~LaneMask;
461     V2SU.SU = SU;
462     V2SU.LaneMask = OverlapMask;
463     if (NonOverlapMask.any())
464       CurrentVRegDefs.insert(VReg2SUnit(Reg, NonOverlapMask, DefSU));
465   }
466   // If there was no CurrentVRegDefs entry for some lanes yet, create one.
467   if (LaneMask.any())
468     CurrentVRegDefs.insert(VReg2SUnit(Reg, LaneMask, SU));
469 }
470 
471 /// \brief Adds a register data dependency if the instruction that defines the
472 /// virtual register used at OperIdx is mapped to an SUnit. Add a register
473 /// antidependency from this SUnit to instructions that occur later in the same
474 /// scheduling region if they write the virtual register.
475 ///
476 /// TODO: Handle ExitSU "uses" properly.
477 void ScheduleDAGInstrs::addVRegUseDeps(SUnit *SU, unsigned OperIdx) {
478   const MachineInstr *MI = SU->getInstr();
479   const MachineOperand &MO = MI->getOperand(OperIdx);
480   unsigned Reg = MO.getReg();
481 
482   // Remember the use. Data dependencies will be added when we find the def.
483   LaneBitmask LaneMask = TrackLaneMasks ? getLaneMaskForMO(MO)
484                                         : LaneBitmask::getAll();
485   CurrentVRegUses.insert(VReg2SUnitOperIdx(Reg, LaneMask, OperIdx, SU));
486 
487   // Add antidependences to the following defs of the vreg.
488   for (VReg2SUnit &V2SU : make_range(CurrentVRegDefs.find(Reg),
489                                      CurrentVRegDefs.end())) {
490     // Ignore defs for unrelated lanes.
491     LaneBitmask PrevDefLaneMask = V2SU.LaneMask;
492     if ((PrevDefLaneMask & LaneMask).none())
493       continue;
494     if (V2SU.SU == SU)
495       continue;
496 
497     V2SU.SU->addPred(SDep(SU, SDep::Anti, Reg));
498   }
499 }
500 
501 /// Returns true if MI is an instruction we are unable to reason about
502 /// (like a call or something with unmodeled side effects).
503 static inline bool isGlobalMemoryObject(AliasAnalysis *AA, MachineInstr *MI) {
504   return MI->isCall() || MI->hasUnmodeledSideEffects() ||
505          (MI->hasOrderedMemoryRef() && !MI->isDereferenceableInvariantLoad(AA));
506 }
507 
508 void ScheduleDAGInstrs::addChainDependency (SUnit *SUa, SUnit *SUb,
509                                             unsigned Latency) {
510   if (SUa->getInstr()->mayAlias(AAForDep, *SUb->getInstr(), UseTBAA)) {
511     SDep Dep(SUa, SDep::MayAliasMem);
512     Dep.setLatency(Latency);
513     SUb->addPred(Dep);
514   }
515 }
516 
517 /// \brief Creates an SUnit for each real instruction, numbered in top-down
518 /// topological order. The instruction order A < B, implies that no edge exists
519 /// from B to A.
520 ///
521 /// Map each real instruction to its SUnit.
522 ///
523 /// After initSUnits, the SUnits vector cannot be resized and the scheduler may
524 /// hang onto SUnit pointers. We may relax this in the future by using SUnit IDs
525 /// instead of pointers.
526 ///
527 /// MachineScheduler relies on initSUnits numbering the nodes by their order in
528 /// the original instruction list.
529 void ScheduleDAGInstrs::initSUnits() {
530   // We'll be allocating one SUnit for each real instruction in the region,
531   // which is contained within a basic block.
532   SUnits.reserve(NumRegionInstrs);
533 
534   for (MachineInstr &MI : make_range(RegionBegin, RegionEnd)) {
535     if (MI.isDebugValue())
536       continue;
537 
538     SUnit *SU = newSUnit(&MI);
539     MISUnitMap[&MI] = SU;
540 
541     SU->isCall = MI.isCall();
542     SU->isCommutable = MI.isCommutable();
543 
544     // Assign the Latency field of SU using target-provided information.
545     SU->Latency = SchedModel.computeInstrLatency(SU->getInstr());
546 
547     // If this SUnit uses a reserved or unbuffered resource, mark it as such.
548     //
549     // Reserved resources block an instruction from issuing and stall the
550     // entire pipeline. These are identified by BufferSize=0.
551     //
552     // Unbuffered resources prevent execution of subsequent instructions that
553     // require the same resources. This is used for in-order execution pipelines
554     // within an out-of-order core. These are identified by BufferSize=1.
555     if (SchedModel.hasInstrSchedModel()) {
556       const MCSchedClassDesc *SC = getSchedClass(SU);
557       for (const MCWriteProcResEntry &PRE :
558            make_range(SchedModel.getWriteProcResBegin(SC),
559                       SchedModel.getWriteProcResEnd(SC))) {
560         switch (SchedModel.getProcResource(PRE.ProcResourceIdx)->BufferSize) {
561         case 0:
562           SU->hasReservedResource = true;
563           break;
564         case 1:
565           SU->isUnbuffered = true;
566           break;
567         default:
568           break;
569         }
570       }
571     }
572   }
573 }
574 
575 class ScheduleDAGInstrs::Value2SUsMap : public MapVector<ValueType, SUList> {
576   /// Current total number of SUs in map.
577   unsigned NumNodes = 0;
578 
579   /// 1 for loads, 0 for stores. (see comment in SUList)
580   unsigned TrueMemOrderLatency;
581 
582 public:
583   Value2SUsMap(unsigned lat = 0) : TrueMemOrderLatency(lat) {}
584 
585   /// To keep NumNodes up to date, insert() is used instead of
586   /// this operator w/ push_back().
587   ValueType &operator[](const SUList &Key) {
588     llvm_unreachable("Don't use. Use insert() instead."); };
589 
590   /// Adds SU to the SUList of V. If Map grows huge, reduce its size by calling
591   /// reduce().
592   void inline insert(SUnit *SU, ValueType V) {
593     MapVector::operator[](V).push_back(SU);
594     NumNodes++;
595   }
596 
597   /// Clears the list of SUs mapped to V.
598   void inline clearList(ValueType V) {
599     iterator Itr = find(V);
600     if (Itr != end()) {
601       assert(NumNodes >= Itr->second.size());
602       NumNodes -= Itr->second.size();
603 
604       Itr->second.clear();
605     }
606   }
607 
608   /// Clears map from all contents.
609   void clear() {
610     MapVector<ValueType, SUList>::clear();
611     NumNodes = 0;
612   }
613 
614   unsigned inline size() const { return NumNodes; }
615 
616   /// Counts the number of SUs in this map after a reduction.
617   void reComputeSize() {
618     NumNodes = 0;
619     for (auto &I : *this)
620       NumNodes += I.second.size();
621   }
622 
623   unsigned inline getTrueMemOrderLatency() const {
624     return TrueMemOrderLatency;
625   }
626 
627   void dump();
628 };
629 
630 void ScheduleDAGInstrs::addChainDependencies(SUnit *SU,
631                                              Value2SUsMap &Val2SUsMap) {
632   for (auto &I : Val2SUsMap)
633     addChainDependencies(SU, I.second,
634                          Val2SUsMap.getTrueMemOrderLatency());
635 }
636 
637 void ScheduleDAGInstrs::addChainDependencies(SUnit *SU,
638                                              Value2SUsMap &Val2SUsMap,
639                                              ValueType V) {
640   Value2SUsMap::iterator Itr = Val2SUsMap.find(V);
641   if (Itr != Val2SUsMap.end())
642     addChainDependencies(SU, Itr->second,
643                          Val2SUsMap.getTrueMemOrderLatency());
644 }
645 
646 void ScheduleDAGInstrs::addBarrierChain(Value2SUsMap &map) {
647   assert(BarrierChain != nullptr);
648 
649   for (auto &I : map) {
650     SUList &sus = I.second;
651     for (auto *SU : sus)
652       SU->addPredBarrier(BarrierChain);
653   }
654   map.clear();
655 }
656 
657 void ScheduleDAGInstrs::insertBarrierChain(Value2SUsMap &map) {
658   assert(BarrierChain != nullptr);
659 
660   // Go through all lists of SUs.
661   for (Value2SUsMap::iterator I = map.begin(), EE = map.end(); I != EE;) {
662     Value2SUsMap::iterator CurrItr = I++;
663     SUList &sus = CurrItr->second;
664     SUList::iterator SUItr = sus.begin(), SUEE = sus.end();
665     for (; SUItr != SUEE; ++SUItr) {
666       // Stop on BarrierChain or any instruction above it.
667       if ((*SUItr)->NodeNum <= BarrierChain->NodeNum)
668         break;
669 
670       (*SUItr)->addPredBarrier(BarrierChain);
671     }
672 
673     // Remove also the BarrierChain from list if present.
674     if (SUItr != SUEE && *SUItr == BarrierChain)
675       SUItr++;
676 
677     // Remove all SUs that are now successors of BarrierChain.
678     if (SUItr != sus.begin())
679       sus.erase(sus.begin(), SUItr);
680   }
681 
682   // Remove all entries with empty su lists.
683   map.remove_if([&](std::pair<ValueType, SUList> &mapEntry) {
684       return (mapEntry.second.empty()); });
685 
686   // Recompute the size of the map (NumNodes).
687   map.reComputeSize();
688 }
689 
690 void ScheduleDAGInstrs::buildSchedGraph(AliasAnalysis *AA,
691                                         RegPressureTracker *RPTracker,
692                                         PressureDiffs *PDiffs,
693                                         LiveIntervals *LIS,
694                                         bool TrackLaneMasks) {
695   const TargetSubtargetInfo &ST = MF.getSubtarget();
696   bool UseAA = EnableAASchedMI.getNumOccurrences() > 0 ? EnableAASchedMI
697                                                        : ST.useAA();
698   AAForDep = UseAA ? AA : nullptr;
699 
700   BarrierChain = nullptr;
701 
702   this->TrackLaneMasks = TrackLaneMasks;
703   MISUnitMap.clear();
704   ScheduleDAG::clearDAG();
705 
706   // Create an SUnit for each real instruction.
707   initSUnits();
708 
709   if (PDiffs)
710     PDiffs->init(SUnits.size());
711 
712   // We build scheduling units by walking a block's instruction list
713   // from bottom to top.
714 
715   // Each MIs' memory operand(s) is analyzed to a list of underlying
716   // objects. The SU is then inserted in the SUList(s) mapped from the
717   // Value(s). Each Value thus gets mapped to lists of SUs depending
718   // on it, stores and loads kept separately. Two SUs are trivially
719   // non-aliasing if they both depend on only identified Values and do
720   // not share any common Value.
721   Value2SUsMap Stores, Loads(1 /*TrueMemOrderLatency*/);
722 
723   // Certain memory accesses are known to not alias any SU in Stores
724   // or Loads, and have therefore their own 'NonAlias'
725   // domain. E.g. spill / reload instructions never alias LLVM I/R
726   // Values. It would be nice to assume that this type of memory
727   // accesses always have a proper memory operand modelling, and are
728   // therefore never unanalyzable, but this is conservatively not
729   // done.
730   Value2SUsMap NonAliasStores, NonAliasLoads(1 /*TrueMemOrderLatency*/);
731 
732   // Remove any stale debug info; sometimes BuildSchedGraph is called again
733   // without emitting the info from the previous call.
734   DbgValues.clear();
735   FirstDbgValue = nullptr;
736 
737   assert(Defs.empty() && Uses.empty() &&
738          "Only BuildGraph should update Defs/Uses");
739   Defs.setUniverse(TRI->getNumRegs());
740   Uses.setUniverse(TRI->getNumRegs());
741 
742   assert(CurrentVRegDefs.empty() && "nobody else should use CurrentVRegDefs");
743   assert(CurrentVRegUses.empty() && "nobody else should use CurrentVRegUses");
744   unsigned NumVirtRegs = MRI.getNumVirtRegs();
745   CurrentVRegDefs.setUniverse(NumVirtRegs);
746   CurrentVRegUses.setUniverse(NumVirtRegs);
747 
748   // Model data dependencies between instructions being scheduled and the
749   // ExitSU.
750   addSchedBarrierDeps();
751 
752   // Walk the list of instructions, from bottom moving up.
753   MachineInstr *DbgMI = nullptr;
754   for (MachineBasicBlock::iterator MII = RegionEnd, MIE = RegionBegin;
755        MII != MIE; --MII) {
756     MachineInstr &MI = *std::prev(MII);
757     if (DbgMI) {
758       DbgValues.push_back(std::make_pair(DbgMI, &MI));
759       DbgMI = nullptr;
760     }
761 
762     if (MI.isDebugValue()) {
763       DbgMI = &MI;
764       continue;
765     }
766     SUnit *SU = MISUnitMap[&MI];
767     assert(SU && "No SUnit mapped to this MI");
768 
769     if (RPTracker) {
770       RegisterOperands RegOpers;
771       RegOpers.collect(MI, *TRI, MRI, TrackLaneMasks, false);
772       if (TrackLaneMasks) {
773         SlotIndex SlotIdx = LIS->getInstructionIndex(MI);
774         RegOpers.adjustLaneLiveness(*LIS, MRI, SlotIdx);
775       }
776       if (PDiffs != nullptr)
777         PDiffs->addInstruction(SU->NodeNum, RegOpers, MRI);
778 
779       RPTracker->recedeSkipDebugValues();
780       assert(&*RPTracker->getPos() == &MI && "RPTracker in sync");
781       RPTracker->recede(RegOpers);
782     }
783 
784     assert(
785         (CanHandleTerminators || (!MI.isTerminator() && !MI.isPosition())) &&
786         "Cannot schedule terminators or labels!");
787 
788     // Add register-based dependencies (data, anti, and output).
789     // For some instructions (calls, returns, inline-asm, etc.) there can
790     // be explicit uses and implicit defs, in which case the use will appear
791     // on the operand list before the def. Do two passes over the operand
792     // list to make sure that defs are processed before any uses.
793     bool HasVRegDef = false;
794     for (unsigned j = 0, n = MI.getNumOperands(); j != n; ++j) {
795       const MachineOperand &MO = MI.getOperand(j);
796       if (!MO.isReg() || !MO.isDef())
797         continue;
798       unsigned Reg = MO.getReg();
799       if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
800         addPhysRegDeps(SU, j);
801       } else if (TargetRegisterInfo::isVirtualRegister(Reg)) {
802         HasVRegDef = true;
803         addVRegDefDeps(SU, j);
804       }
805     }
806     // Now process all uses.
807     for (unsigned j = 0, n = MI.getNumOperands(); j != n; ++j) {
808       const MachineOperand &MO = MI.getOperand(j);
809       // Only look at use operands.
810       // We do not need to check for MO.readsReg() here because subsequent
811       // subregister defs will get output dependence edges and need no
812       // additional use dependencies.
813       if (!MO.isReg() || !MO.isUse())
814         continue;
815       unsigned Reg = MO.getReg();
816       if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
817         addPhysRegDeps(SU, j);
818       } else if (TargetRegisterInfo::isVirtualRegister(Reg) && MO.readsReg()) {
819         addVRegUseDeps(SU, j);
820       }
821     }
822 
823     // If we haven't seen any uses in this scheduling region, create a
824     // dependence edge to ExitSU to model the live-out latency. This is required
825     // for vreg defs with no in-region use, and prefetches with no vreg def.
826     //
827     // FIXME: NumDataSuccs would be more precise than NumSuccs here. This
828     // check currently relies on being called before adding chain deps.
829     if (SU->NumSuccs == 0 && SU->Latency > 1 && (HasVRegDef || MI.mayLoad())) {
830       SDep Dep(SU, SDep::Artificial);
831       Dep.setLatency(SU->Latency - 1);
832       ExitSU.addPred(Dep);
833     }
834 
835     // Add memory dependencies (Note: isStoreToStackSlot and
836     // isLoadFromStackSLot are not usable after stack slots are lowered to
837     // actual addresses).
838 
839     // This is a barrier event that acts as a pivotal node in the DAG.
840     if (isGlobalMemoryObject(AA, &MI)) {
841 
842       // Become the barrier chain.
843       if (BarrierChain)
844         BarrierChain->addPredBarrier(SU);
845       BarrierChain = SU;
846 
847       DEBUG(dbgs() << "Global memory object and new barrier chain: SU("
848             << BarrierChain->NodeNum << ").\n";);
849 
850       // Add dependencies against everything below it and clear maps.
851       addBarrierChain(Stores);
852       addBarrierChain(Loads);
853       addBarrierChain(NonAliasStores);
854       addBarrierChain(NonAliasLoads);
855 
856       continue;
857     }
858 
859     // If it's not a store or a variant load, we're done.
860     if (!MI.mayStore() &&
861         !(MI.mayLoad() && !MI.isDereferenceableInvariantLoad(AA)))
862       continue;
863 
864     // Always add dependecy edge to BarrierChain if present.
865     if (BarrierChain)
866       BarrierChain->addPredBarrier(SU);
867 
868     // Find the underlying objects for MI. The Objs vector is either
869     // empty, or filled with the Values of memory locations which this
870     // SU depends on.
871     UnderlyingObjectsVector Objs;
872     bool ObjsFound = getUnderlyingObjectsForInstr(&MI, MFI, Objs,
873                                                   MF.getDataLayout());
874 
875     if (MI.mayStore()) {
876       if (!ObjsFound) {
877         // An unknown store depends on all stores and loads.
878         addChainDependencies(SU, Stores);
879         addChainDependencies(SU, NonAliasStores);
880         addChainDependencies(SU, Loads);
881         addChainDependencies(SU, NonAliasLoads);
882 
883         // Map this store to 'UnknownValue'.
884         Stores.insert(SU, UnknownValue);
885       } else {
886         // Add precise dependencies against all previously seen memory
887         // accesses mapped to the same Value(s).
888         for (const UnderlyingObject &UnderlObj : Objs) {
889           ValueType V = UnderlObj.getValue();
890           bool ThisMayAlias = UnderlObj.mayAlias();
891 
892           // Add dependencies to previous stores and loads mapped to V.
893           addChainDependencies(SU, (ThisMayAlias ? Stores : NonAliasStores), V);
894           addChainDependencies(SU, (ThisMayAlias ? Loads : NonAliasLoads), V);
895         }
896         // Update the store map after all chains have been added to avoid adding
897         // self-loop edge if multiple underlying objects are present.
898         for (const UnderlyingObject &UnderlObj : Objs) {
899           ValueType V = UnderlObj.getValue();
900           bool ThisMayAlias = UnderlObj.mayAlias();
901 
902           // Map this store to V.
903           (ThisMayAlias ? Stores : NonAliasStores).insert(SU, V);
904         }
905         // The store may have dependencies to unanalyzable loads and
906         // stores.
907         addChainDependencies(SU, Loads, UnknownValue);
908         addChainDependencies(SU, Stores, UnknownValue);
909       }
910     } else { // SU is a load.
911       if (!ObjsFound) {
912         // An unknown load depends on all stores.
913         addChainDependencies(SU, Stores);
914         addChainDependencies(SU, NonAliasStores);
915 
916         Loads.insert(SU, UnknownValue);
917       } else {
918         for (const UnderlyingObject &UnderlObj : Objs) {
919           ValueType V = UnderlObj.getValue();
920           bool ThisMayAlias = UnderlObj.mayAlias();
921 
922           // Add precise dependencies against all previously seen stores
923           // mapping to the same Value(s).
924           addChainDependencies(SU, (ThisMayAlias ? Stores : NonAliasStores), V);
925 
926           // Map this load to V.
927           (ThisMayAlias ? Loads : NonAliasLoads).insert(SU, V);
928         }
929         // The load may have dependencies to unanalyzable stores.
930         addChainDependencies(SU, Stores, UnknownValue);
931       }
932     }
933 
934     // Reduce maps if they grow huge.
935     if (Stores.size() + Loads.size() >= HugeRegion) {
936       DEBUG(dbgs() << "Reducing Stores and Loads maps.\n";);
937       reduceHugeMemNodeMaps(Stores, Loads, getReductionSize());
938     }
939     if (NonAliasStores.size() + NonAliasLoads.size() >= HugeRegion) {
940       DEBUG(dbgs() << "Reducing NonAliasStores and NonAliasLoads maps.\n";);
941       reduceHugeMemNodeMaps(NonAliasStores, NonAliasLoads, getReductionSize());
942     }
943   }
944 
945   if (DbgMI)
946     FirstDbgValue = DbgMI;
947 
948   Defs.clear();
949   Uses.clear();
950   CurrentVRegDefs.clear();
951   CurrentVRegUses.clear();
952 }
953 
954 raw_ostream &llvm::operator<<(raw_ostream &OS, const PseudoSourceValue* PSV) {
955   PSV->printCustom(OS);
956   return OS;
957 }
958 
959 void ScheduleDAGInstrs::Value2SUsMap::dump() {
960   for (auto &Itr : *this) {
961     if (Itr.first.is<const Value*>()) {
962       const Value *V = Itr.first.get<const Value*>();
963       if (isa<UndefValue>(V))
964         dbgs() << "Unknown";
965       else
966         V->printAsOperand(dbgs());
967     }
968     else if (Itr.first.is<const PseudoSourceValue*>())
969       dbgs() <<  Itr.first.get<const PseudoSourceValue*>();
970     else
971       llvm_unreachable("Unknown Value type.");
972 
973     dbgs() << " : ";
974     dumpSUList(Itr.second);
975   }
976 }
977 
978 void ScheduleDAGInstrs::reduceHugeMemNodeMaps(Value2SUsMap &stores,
979                                               Value2SUsMap &loads, unsigned N) {
980   DEBUG(dbgs() << "Before reduction:\nStoring SUnits:\n";
981         stores.dump();
982         dbgs() << "Loading SUnits:\n";
983         loads.dump());
984 
985   // Insert all SU's NodeNums into a vector and sort it.
986   std::vector<unsigned> NodeNums;
987   NodeNums.reserve(stores.size() + loads.size());
988   for (auto &I : stores)
989     for (auto *SU : I.second)
990       NodeNums.push_back(SU->NodeNum);
991   for (auto &I : loads)
992     for (auto *SU : I.second)
993       NodeNums.push_back(SU->NodeNum);
994   std::sort(NodeNums.begin(), NodeNums.end());
995 
996   // The N last elements in NodeNums will be removed, and the SU with
997   // the lowest NodeNum of them will become the new BarrierChain to
998   // let the not yet seen SUs have a dependency to the removed SUs.
999   assert(N <= NodeNums.size());
1000   SUnit *newBarrierChain = &SUnits[*(NodeNums.end() - N)];
1001   if (BarrierChain) {
1002     // The aliasing and non-aliasing maps reduce independently of each
1003     // other, but share a common BarrierChain. Check if the
1004     // newBarrierChain is above the former one. If it is not, it may
1005     // introduce a loop to use newBarrierChain, so keep the old one.
1006     if (newBarrierChain->NodeNum < BarrierChain->NodeNum) {
1007       BarrierChain->addPredBarrier(newBarrierChain);
1008       BarrierChain = newBarrierChain;
1009       DEBUG(dbgs() << "Inserting new barrier chain: SU("
1010             << BarrierChain->NodeNum << ").\n";);
1011     }
1012     else
1013       DEBUG(dbgs() << "Keeping old barrier chain: SU("
1014             << BarrierChain->NodeNum << ").\n";);
1015   }
1016   else
1017     BarrierChain = newBarrierChain;
1018 
1019   insertBarrierChain(stores);
1020   insertBarrierChain(loads);
1021 
1022   DEBUG(dbgs() << "After reduction:\nStoring SUnits:\n";
1023         stores.dump();
1024         dbgs() << "Loading SUnits:\n";
1025         loads.dump());
1026 }
1027 
1028 static void toggleKills(const MachineRegisterInfo &MRI, LivePhysRegs &LiveRegs,
1029                         MachineInstr &MI, bool addToLiveRegs) {
1030   for (MachineOperand &MO : MI.operands()) {
1031     if (!MO.isReg() || !MO.readsReg())
1032       continue;
1033     unsigned Reg = MO.getReg();
1034     if (!Reg)
1035       continue;
1036 
1037     // Things that are available after the instruction are killed by it.
1038     bool IsKill = LiveRegs.available(MRI, Reg);
1039     MO.setIsKill(IsKill);
1040     if (addToLiveRegs)
1041       LiveRegs.addReg(Reg);
1042   }
1043 }
1044 
1045 void ScheduleDAGInstrs::fixupKills(MachineBasicBlock &MBB) {
1046   DEBUG(dbgs() << "Fixup kills for BB#" << MBB.getNumber() << '\n');
1047 
1048   LiveRegs.init(*TRI);
1049   LiveRegs.addLiveOuts(MBB);
1050 
1051   // Examine block from end to start...
1052   for (MachineInstr &MI : make_range(MBB.rbegin(), MBB.rend())) {
1053     if (MI.isDebugValue())
1054       continue;
1055 
1056     // Update liveness.  Registers that are defed but not used in this
1057     // instruction are now dead. Mark register and all subregs as they
1058     // are completely defined.
1059     for (ConstMIBundleOperands O(MI); O.isValid(); ++O) {
1060       const MachineOperand &MO = *O;
1061       if (MO.isReg()) {
1062         if (!MO.isDef())
1063           continue;
1064         unsigned Reg = MO.getReg();
1065         if (!Reg)
1066           continue;
1067         LiveRegs.removeReg(Reg);
1068       } else if (MO.isRegMask()) {
1069         LiveRegs.removeRegsInMask(MO);
1070       }
1071     }
1072 
1073     // If there is a bundle header fix it up first.
1074     if (!MI.isBundled()) {
1075       toggleKills(MRI, LiveRegs, MI, true);
1076     } else {
1077       MachineBasicBlock::instr_iterator First = MI.getIterator();
1078       if (MI.isBundle()) {
1079         toggleKills(MRI, LiveRegs, MI, false);
1080         ++First;
1081       }
1082       // Some targets make the (questionable) assumtion that the instructions
1083       // inside the bundle are ordered and consequently only the last use of
1084       // a register inside the bundle can kill it.
1085       MachineBasicBlock::instr_iterator I = std::next(First);
1086       while (I->isBundledWithSucc())
1087         ++I;
1088       do {
1089         if (!I->isDebugValue())
1090           toggleKills(MRI, LiveRegs, *I, true);
1091         --I;
1092       } while(I != First);
1093     }
1094   }
1095 }
1096 
1097 void ScheduleDAGInstrs::dumpNode(const SUnit *SU) const {
1098   // Cannot completely remove virtual function even in release mode.
1099 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1100   SU->getInstr()->dump();
1101 #endif
1102 }
1103 
1104 std::string ScheduleDAGInstrs::getGraphNodeLabel(const SUnit *SU) const {
1105   std::string s;
1106   raw_string_ostream oss(s);
1107   if (SU == &EntrySU)
1108     oss << "<entry>";
1109   else if (SU == &ExitSU)
1110     oss << "<exit>";
1111   else
1112     SU->getInstr()->print(oss, /*SkipOpers=*/true);
1113   return oss.str();
1114 }
1115 
1116 /// Return the basic block label. It is not necessarilly unique because a block
1117 /// contains multiple scheduling regions. But it is fine for visualization.
1118 std::string ScheduleDAGInstrs::getDAGName() const {
1119   return "dag." + BB->getFullName();
1120 }
1121 
1122 //===----------------------------------------------------------------------===//
1123 // SchedDFSResult Implementation
1124 //===----------------------------------------------------------------------===//
1125 
1126 namespace llvm {
1127 
1128 /// Internal state used to compute SchedDFSResult.
1129 class SchedDFSImpl {
1130   SchedDFSResult &R;
1131 
1132   /// Join DAG nodes into equivalence classes by their subtree.
1133   IntEqClasses SubtreeClasses;
1134   /// List PredSU, SuccSU pairs that represent data edges between subtrees.
1135   std::vector<std::pair<const SUnit *, const SUnit*>> ConnectionPairs;
1136 
1137   struct RootData {
1138     unsigned NodeID;
1139     unsigned ParentNodeID;  ///< Parent node (member of the parent subtree).
1140     unsigned SubInstrCount = 0; ///< Instr count in this tree only, not
1141                                 /// children.
1142 
1143     RootData(unsigned id): NodeID(id),
1144                            ParentNodeID(SchedDFSResult::InvalidSubtreeID) {}
1145 
1146     unsigned getSparseSetIndex() const { return NodeID; }
1147   };
1148 
1149   SparseSet<RootData> RootSet;
1150 
1151 public:
1152   SchedDFSImpl(SchedDFSResult &r): R(r), SubtreeClasses(R.DFSNodeData.size()) {
1153     RootSet.setUniverse(R.DFSNodeData.size());
1154   }
1155 
1156   /// Returns true if this node been visited by the DFS traversal.
1157   ///
1158   /// During visitPostorderNode the Node's SubtreeID is assigned to the Node
1159   /// ID. Later, SubtreeID is updated but remains valid.
1160   bool isVisited(const SUnit *SU) const {
1161     return R.DFSNodeData[SU->NodeNum].SubtreeID
1162       != SchedDFSResult::InvalidSubtreeID;
1163   }
1164 
1165   /// Initializes this node's instruction count. We don't need to flag the node
1166   /// visited until visitPostorder because the DAG cannot have cycles.
1167   void visitPreorder(const SUnit *SU) {
1168     R.DFSNodeData[SU->NodeNum].InstrCount =
1169       SU->getInstr()->isTransient() ? 0 : 1;
1170   }
1171 
1172   /// Called once for each node after all predecessors are visited. Revisit this
1173   /// node's predecessors and potentially join them now that we know the ILP of
1174   /// the other predecessors.
1175   void visitPostorderNode(const SUnit *SU) {
1176     // Mark this node as the root of a subtree. It may be joined with its
1177     // successors later.
1178     R.DFSNodeData[SU->NodeNum].SubtreeID = SU->NodeNum;
1179     RootData RData(SU->NodeNum);
1180     RData.SubInstrCount = SU->getInstr()->isTransient() ? 0 : 1;
1181 
1182     // If any predecessors are still in their own subtree, they either cannot be
1183     // joined or are large enough to remain separate. If this parent node's
1184     // total instruction count is not greater than a child subtree by at least
1185     // the subtree limit, then try to join it now since splitting subtrees is
1186     // only useful if multiple high-pressure paths are possible.
1187     unsigned InstrCount = R.DFSNodeData[SU->NodeNum].InstrCount;
1188     for (const SDep &PredDep : SU->Preds) {
1189       if (PredDep.getKind() != SDep::Data)
1190         continue;
1191       unsigned PredNum = PredDep.getSUnit()->NodeNum;
1192       if ((InstrCount - R.DFSNodeData[PredNum].InstrCount) < R.SubtreeLimit)
1193         joinPredSubtree(PredDep, SU, /*CheckLimit=*/false);
1194 
1195       // Either link or merge the TreeData entry from the child to the parent.
1196       if (R.DFSNodeData[PredNum].SubtreeID == PredNum) {
1197         // If the predecessor's parent is invalid, this is a tree edge and the
1198         // current node is the parent.
1199         if (RootSet[PredNum].ParentNodeID == SchedDFSResult::InvalidSubtreeID)
1200           RootSet[PredNum].ParentNodeID = SU->NodeNum;
1201       }
1202       else if (RootSet.count(PredNum)) {
1203         // The predecessor is not a root, but is still in the root set. This
1204         // must be the new parent that it was just joined to. Note that
1205         // RootSet[PredNum].ParentNodeID may either be invalid or may still be
1206         // set to the original parent.
1207         RData.SubInstrCount += RootSet[PredNum].SubInstrCount;
1208         RootSet.erase(PredNum);
1209       }
1210     }
1211     RootSet[SU->NodeNum] = RData;
1212   }
1213 
1214   /// \brief Called once for each tree edge after calling visitPostOrderNode on
1215   /// the predecessor. Increment the parent node's instruction count and
1216   /// preemptively join this subtree to its parent's if it is small enough.
1217   void visitPostorderEdge(const SDep &PredDep, const SUnit *Succ) {
1218     R.DFSNodeData[Succ->NodeNum].InstrCount
1219       += R.DFSNodeData[PredDep.getSUnit()->NodeNum].InstrCount;
1220     joinPredSubtree(PredDep, Succ);
1221   }
1222 
1223   /// Adds a connection for cross edges.
1224   void visitCrossEdge(const SDep &PredDep, const SUnit *Succ) {
1225     ConnectionPairs.push_back(std::make_pair(PredDep.getSUnit(), Succ));
1226   }
1227 
1228   /// Sets each node's subtree ID to the representative ID and record
1229   /// connections between trees.
1230   void finalize() {
1231     SubtreeClasses.compress();
1232     R.DFSTreeData.resize(SubtreeClasses.getNumClasses());
1233     assert(SubtreeClasses.getNumClasses() == RootSet.size()
1234            && "number of roots should match trees");
1235     for (const RootData &Root : RootSet) {
1236       unsigned TreeID = SubtreeClasses[Root.NodeID];
1237       if (Root.ParentNodeID != SchedDFSResult::InvalidSubtreeID)
1238         R.DFSTreeData[TreeID].ParentTreeID = SubtreeClasses[Root.ParentNodeID];
1239       R.DFSTreeData[TreeID].SubInstrCount = Root.SubInstrCount;
1240       // Note that SubInstrCount may be greater than InstrCount if we joined
1241       // subtrees across a cross edge. InstrCount will be attributed to the
1242       // original parent, while SubInstrCount will be attributed to the joined
1243       // parent.
1244     }
1245     R.SubtreeConnections.resize(SubtreeClasses.getNumClasses());
1246     R.SubtreeConnectLevels.resize(SubtreeClasses.getNumClasses());
1247     DEBUG(dbgs() << R.getNumSubtrees() << " subtrees:\n");
1248     for (unsigned Idx = 0, End = R.DFSNodeData.size(); Idx != End; ++Idx) {
1249       R.DFSNodeData[Idx].SubtreeID = SubtreeClasses[Idx];
1250       DEBUG(dbgs() << "  SU(" << Idx << ") in tree "
1251             << R.DFSNodeData[Idx].SubtreeID << '\n');
1252     }
1253     for (const std::pair<const SUnit*, const SUnit*> &P : ConnectionPairs) {
1254       unsigned PredTree = SubtreeClasses[P.first->NodeNum];
1255       unsigned SuccTree = SubtreeClasses[P.second->NodeNum];
1256       if (PredTree == SuccTree)
1257         continue;
1258       unsigned Depth = P.first->getDepth();
1259       addConnection(PredTree, SuccTree, Depth);
1260       addConnection(SuccTree, PredTree, Depth);
1261     }
1262   }
1263 
1264 protected:
1265   /// Joins the predecessor subtree with the successor that is its DFS parent.
1266   /// Applies some heuristics before joining.
1267   bool joinPredSubtree(const SDep &PredDep, const SUnit *Succ,
1268                        bool CheckLimit = true) {
1269     assert(PredDep.getKind() == SDep::Data && "Subtrees are for data edges");
1270 
1271     // Check if the predecessor is already joined.
1272     const SUnit *PredSU = PredDep.getSUnit();
1273     unsigned PredNum = PredSU->NodeNum;
1274     if (R.DFSNodeData[PredNum].SubtreeID != PredNum)
1275       return false;
1276 
1277     // Four is the magic number of successors before a node is considered a
1278     // pinch point.
1279     unsigned NumDataSucs = 0;
1280     for (const SDep &SuccDep : PredSU->Succs) {
1281       if (SuccDep.getKind() == SDep::Data) {
1282         if (++NumDataSucs >= 4)
1283           return false;
1284       }
1285     }
1286     if (CheckLimit && R.DFSNodeData[PredNum].InstrCount > R.SubtreeLimit)
1287       return false;
1288     R.DFSNodeData[PredNum].SubtreeID = Succ->NodeNum;
1289     SubtreeClasses.join(Succ->NodeNum, PredNum);
1290     return true;
1291   }
1292 
1293   /// Called by finalize() to record a connection between trees.
1294   void addConnection(unsigned FromTree, unsigned ToTree, unsigned Depth) {
1295     if (!Depth)
1296       return;
1297 
1298     do {
1299       SmallVectorImpl<SchedDFSResult::Connection> &Connections =
1300         R.SubtreeConnections[FromTree];
1301       for (SchedDFSResult::Connection &C : Connections) {
1302         if (C.TreeID == ToTree) {
1303           C.Level = std::max(C.Level, Depth);
1304           return;
1305         }
1306       }
1307       Connections.push_back(SchedDFSResult::Connection(ToTree, Depth));
1308       FromTree = R.DFSTreeData[FromTree].ParentTreeID;
1309     } while (FromTree != SchedDFSResult::InvalidSubtreeID);
1310   }
1311 };
1312 
1313 } // end namespace llvm
1314 
1315 namespace {
1316 
1317 /// Manage the stack used by a reverse depth-first search over the DAG.
1318 class SchedDAGReverseDFS {
1319   std::vector<std::pair<const SUnit *, SUnit::const_pred_iterator>> DFSStack;
1320 
1321 public:
1322   bool isComplete() const { return DFSStack.empty(); }
1323 
1324   void follow(const SUnit *SU) {
1325     DFSStack.push_back(std::make_pair(SU, SU->Preds.begin()));
1326   }
1327   void advance() { ++DFSStack.back().second; }
1328 
1329   const SDep *backtrack() {
1330     DFSStack.pop_back();
1331     return DFSStack.empty() ? nullptr : std::prev(DFSStack.back().second);
1332   }
1333 
1334   const SUnit *getCurr() const { return DFSStack.back().first; }
1335 
1336   SUnit::const_pred_iterator getPred() const { return DFSStack.back().second; }
1337 
1338   SUnit::const_pred_iterator getPredEnd() const {
1339     return getCurr()->Preds.end();
1340   }
1341 };
1342 
1343 } // end anonymous namespace
1344 
1345 static bool hasDataSucc(const SUnit *SU) {
1346   for (const SDep &SuccDep : SU->Succs) {
1347     if (SuccDep.getKind() == SDep::Data &&
1348         !SuccDep.getSUnit()->isBoundaryNode())
1349       return true;
1350   }
1351   return false;
1352 }
1353 
1354 /// Computes an ILP metric for all nodes in the subDAG reachable via depth-first
1355 /// search from this root.
1356 void SchedDFSResult::compute(ArrayRef<SUnit> SUnits) {
1357   if (!IsBottomUp)
1358     llvm_unreachable("Top-down ILP metric is unimplemented");
1359 
1360   SchedDFSImpl Impl(*this);
1361   for (const SUnit &SU : SUnits) {
1362     if (Impl.isVisited(&SU) || hasDataSucc(&SU))
1363       continue;
1364 
1365     SchedDAGReverseDFS DFS;
1366     Impl.visitPreorder(&SU);
1367     DFS.follow(&SU);
1368     while (true) {
1369       // Traverse the leftmost path as far as possible.
1370       while (DFS.getPred() != DFS.getPredEnd()) {
1371         const SDep &PredDep = *DFS.getPred();
1372         DFS.advance();
1373         // Ignore non-data edges.
1374         if (PredDep.getKind() != SDep::Data
1375             || PredDep.getSUnit()->isBoundaryNode()) {
1376           continue;
1377         }
1378         // An already visited edge is a cross edge, assuming an acyclic DAG.
1379         if (Impl.isVisited(PredDep.getSUnit())) {
1380           Impl.visitCrossEdge(PredDep, DFS.getCurr());
1381           continue;
1382         }
1383         Impl.visitPreorder(PredDep.getSUnit());
1384         DFS.follow(PredDep.getSUnit());
1385       }
1386       // Visit the top of the stack in postorder and backtrack.
1387       const SUnit *Child = DFS.getCurr();
1388       const SDep *PredDep = DFS.backtrack();
1389       Impl.visitPostorderNode(Child);
1390       if (PredDep)
1391         Impl.visitPostorderEdge(*PredDep, DFS.getCurr());
1392       if (DFS.isComplete())
1393         break;
1394     }
1395   }
1396   Impl.finalize();
1397 }
1398 
1399 /// The root of the given SubtreeID was just scheduled. For all subtrees
1400 /// connected to this tree, record the depth of the connection so that the
1401 /// nearest connected subtrees can be prioritized.
1402 void SchedDFSResult::scheduleTree(unsigned SubtreeID) {
1403   for (const Connection &C : SubtreeConnections[SubtreeID]) {
1404     SubtreeConnectLevels[C.TreeID] =
1405       std::max(SubtreeConnectLevels[C.TreeID], C.Level);
1406     DEBUG(dbgs() << "  Tree: " << C.TreeID
1407           << " @" << SubtreeConnectLevels[C.TreeID] << '\n');
1408   }
1409 }
1410 
1411 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1412 LLVM_DUMP_METHOD void ILPValue::print(raw_ostream &OS) const {
1413   OS << InstrCount << " / " << Length << " = ";
1414   if (!Length)
1415     OS << "BADILP";
1416   else
1417     OS << format("%g", ((double)InstrCount / Length));
1418 }
1419 
1420 LLVM_DUMP_METHOD void ILPValue::dump() const {
1421   dbgs() << *this << '\n';
1422 }
1423 
1424 namespace llvm {
1425 
1426 LLVM_DUMP_METHOD
1427 raw_ostream &operator<<(raw_ostream &OS, const ILPValue &Val) {
1428   Val.print(OS);
1429   return OS;
1430 }
1431 
1432 } // end namespace llvm
1433 
1434 #endif
1435