blob: 0635e8f41ee703e2b58c8a91fba9f10acf1bac9a [file] [log] [blame]
Eugene Zelenkodb56e5a2017-02-22 22:32:51 +00001//===- ScheduleDAG.cpp - Implement the ScheduleDAG class ------------------===//
Dan Gohman60cb69e2008-11-19 23:18:57 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Matthias Braun9ab40392017-02-21 01:27:33 +000010/// \file Implements the ScheduleDAG class, which is a base class used by
11/// scheduling implementation classes.
Dan Gohman60cb69e2008-11-19 23:18:57 +000012//
13//===----------------------------------------------------------------------===//
14
Dan Gohman60cb69e2008-11-19 23:18:57 +000015#include "llvm/CodeGen/ScheduleDAG.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000016#include "llvm/ADT/STLExtras.h"
17#include "llvm/ADT/SmallVector.h"
18#include "llvm/ADT/iterator_range.h"
19#include "llvm/CodeGen/MachineFunction.h"
Dan Gohman7e105f02009-01-15 22:18:12 +000020#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
Andrew Trick10ffc2b2010-12-24 05:03:26 +000021#include "llvm/CodeGen/SelectionDAGNodes.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000022#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000023#include "llvm/CodeGen/TargetRegisterInfo.h"
24#include "llvm/CodeGen/TargetSubtargetInfo.h"
Andrew Trick3013b6a2011-06-15 17:16:12 +000025#include "llvm/Support/CommandLine.h"
Eugene Zelenkodb56e5a2017-02-22 22:32:51 +000026#include "llvm/Support/Compiler.h"
Dan Gohman60cb69e2008-11-19 23:18:57 +000027#include "llvm/Support/Debug.h"
Daniel Dunbar8ef07352009-07-24 09:53:24 +000028#include "llvm/Support/raw_ostream.h"
Eugene Zelenkodb56e5a2017-02-22 22:32:51 +000029#include <algorithm>
30#include <cassert>
31#include <iterator>
32#include <limits>
33#include <utility>
34#include <vector>
35
Dan Gohman60cb69e2008-11-19 23:18:57 +000036using namespace llvm;
37
Chandler Carruth1b9dde02014-04-22 02:02:50 +000038#define DEBUG_TYPE "pre-RA-sched"
39
Andrew Trick3013b6a2011-06-15 17:16:12 +000040#ifndef NDEBUG
Benjamin Kramer4938edb2011-08-19 01:42:18 +000041static cl::opt<bool> StressSchedOpt(
Andrew Trick3013b6a2011-06-15 17:16:12 +000042 "stress-sched", cl::Hidden, cl::init(false),
43 cl::desc("Stress test instruction scheduling"));
44#endif
45
Eugene Zelenkodb56e5a2017-02-22 22:32:51 +000046void SchedulingPriorityQueue::anchor() {}
David Blaikiea379b1812011-12-20 02:50:00 +000047
Dan Gohman619ef482009-01-15 19:20:50 +000048ScheduleDAG::ScheduleDAG(MachineFunction &mf)
Eric Christopher33726202015-01-27 08:48:42 +000049 : TM(mf.getTarget()), TII(mf.getSubtarget().getInstrInfo()),
50 TRI(mf.getSubtarget().getRegisterInfo()), MF(mf),
Eugene Zelenkodb56e5a2017-02-22 22:32:51 +000051 MRI(mf.getRegInfo()) {
Andrew Trick3013b6a2011-06-15 17:16:12 +000052#ifndef NDEBUG
53 StressSched = StressSchedOpt;
54#endif
Dan Gohman60cb69e2008-11-19 23:18:57 +000055}
56
Eugene Zelenkodb56e5a2017-02-22 22:32:51 +000057ScheduleDAG::~ScheduleDAG() = default;
Dan Gohman60cb69e2008-11-19 23:18:57 +000058
Andrew Trick60cf03e2012-03-07 05:21:52 +000059void ScheduleDAG::clearDAG() {
60 SUnits.clear();
61 EntrySU = SUnit();
62 ExitSU = SUnit();
63}
64
Evan Cheng6cc775f2011-06-28 19:10:37 +000065const MCInstrDesc *ScheduleDAG::getNodeDesc(const SDNode *Node) const {
Craig Topperc0196b12014-04-14 00:51:57 +000066 if (!Node || !Node->isMachineOpcode()) return nullptr;
Andrew Trick10ffc2b2010-12-24 05:03:26 +000067 return &TII->get(Node->getMachineOpcode());
68}
69
Evandro Menezes14ba3d72017-07-12 15:30:59 +000070LLVM_DUMP_METHOD
71raw_ostream &SDep::print(raw_ostream &OS, const TargetRegisterInfo *TRI) const {
72 switch (getKind()) {
73 case Data: OS << "Data"; break;
74 case Anti: OS << "Anti"; break;
75 case Output: OS << "Out "; break;
76 case Order: OS << "Ord "; break;
77 }
78
79 switch (getKind()) {
80 case Data:
81 OS << " Latency=" << getLatency();
82 if (TRI && isAssignedRegDep())
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +000083 OS << " Reg=" << printReg(getReg(), TRI);
Evandro Menezes14ba3d72017-07-12 15:30:59 +000084 break;
85 case Anti:
86 case Output:
87 OS << " Latency=" << getLatency();
88 break;
89 case Order:
90 OS << " Latency=" << getLatency();
91 switch(Contents.OrdKind) {
92 case Barrier: OS << " Barrier"; break;
93 case MayAliasMem:
94 case MustAliasMem: OS << " Memory"; break;
95 case Artificial: OS << " Artificial"; break;
96 case Weak: OS << " Weak"; break;
97 case Cluster: OS << " Cluster"; break;
98 }
99 break;
100 }
101
102 return OS;
103}
104
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000105bool SUnit::addPred(const SDep &D, bool Required) {
Alp Tokercb402912014-01-24 17:20:08 +0000106 // If this node already has this dependence, don't add a redundant one.
Matthias Braun9ab40392017-02-21 01:27:33 +0000107 for (SDep &PredDep : Preds) {
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000108 // Zero-latency weak edges may be added purely for heuristic ordering. Don't
109 // add them if another kind of edge already exists.
Matthias Braun9ab40392017-02-21 01:27:33 +0000110 if (!Required && PredDep.getSUnit() == D.getSUnit())
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000111 return false;
Matthias Braun9ab40392017-02-21 01:27:33 +0000112 if (PredDep.overlaps(D)) {
113 // Extend the latency if needed. Equivalent to
114 // removePred(PredDep) + addPred(D).
115 if (PredDep.getLatency() < D.getLatency()) {
116 SUnit *PredSU = PredDep.getSUnit();
Andrew Trick5b906452012-06-13 02:39:00 +0000117 // Find the corresponding successor in N.
Matthias Braun9ab40392017-02-21 01:27:33 +0000118 SDep ForwardD = PredDep;
Andrew Trick5b906452012-06-13 02:39:00 +0000119 ForwardD.setSUnit(this);
Matthias Braun9ab40392017-02-21 01:27:33 +0000120 for (SDep &SuccDep : PredSU->Succs) {
121 if (SuccDep == ForwardD) {
122 SuccDep.setLatency(D.getLatency());
Andrew Trick5b906452012-06-13 02:39:00 +0000123 break;
124 }
125 }
Matthias Braun9ab40392017-02-21 01:27:33 +0000126 PredDep.setLatency(D.getLatency());
Andrew Trick5b906452012-06-13 02:39:00 +0000127 }
Andrew Trickd0548ae2011-02-04 03:18:17 +0000128 return false;
Andrew Trick5b906452012-06-13 02:39:00 +0000129 }
130 }
Dan Gohmane3a63512008-12-16 01:05:52 +0000131 // Now add a corresponding succ to N.
132 SDep P = D;
133 P.setSUnit(this);
134 SUnit *N = D.getSUnit();
Dan Gohmane3a63512008-12-16 01:05:52 +0000135 // Update the bookkeeping.
136 if (D.getKind() == SDep::Data) {
Eugene Zelenkodb56e5a2017-02-22 22:32:51 +0000137 assert(NumPreds < std::numeric_limits<unsigned>::max() &&
138 "NumPreds will overflow!");
139 assert(N->NumSuccs < std::numeric_limits<unsigned>::max() &&
140 "NumSuccs will overflow!");
Dan Gohmane3a63512008-12-16 01:05:52 +0000141 ++NumPreds;
142 ++N->NumSuccs;
143 }
Reid Kleckner8ff5c192009-09-30 20:15:38 +0000144 if (!N->isScheduled) {
Andrew Trick4b1f9e32012-11-13 02:35:06 +0000145 if (D.isWeak()) {
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000146 ++WeakPredsLeft;
147 }
148 else {
Eugene Zelenkodb56e5a2017-02-22 22:32:51 +0000149 assert(NumPredsLeft < std::numeric_limits<unsigned>::max() &&
150 "NumPredsLeft will overflow!");
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000151 ++NumPredsLeft;
152 }
Reid Kleckner8ff5c192009-09-30 20:15:38 +0000153 }
154 if (!isScheduled) {
Andrew Trick4b1f9e32012-11-13 02:35:06 +0000155 if (D.isWeak()) {
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000156 ++N->WeakSuccsLeft;
157 }
158 else {
Eugene Zelenkodb56e5a2017-02-22 22:32:51 +0000159 assert(N->NumSuccsLeft < std::numeric_limits<unsigned>::max() &&
160 "NumSuccsLeft will overflow!");
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000161 ++N->NumSuccsLeft;
162 }
Reid Kleckner8ff5c192009-09-30 20:15:38 +0000163 }
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000164 Preds.push_back(D);
Dan Gohman13141d52009-01-13 19:08:45 +0000165 N->Succs.push_back(P);
Dan Gohman52d4d822009-01-05 22:40:26 +0000166 if (P.getLatency() != 0) {
167 this->setDepthDirty();
168 N->setHeightDirty();
169 }
Andrew Trickd0548ae2011-02-04 03:18:17 +0000170 return true;
Dan Gohmane3a63512008-12-16 01:05:52 +0000171}
172
Dan Gohmane3a63512008-12-16 01:05:52 +0000173void SUnit::removePred(const SDep &D) {
174 // Find the matching predecessor.
Eugene Zelenkodb56e5a2017-02-22 22:32:51 +0000175 SmallVectorImpl<SDep>::iterator I = llvm::find(Preds, D);
Matthias Braun9ab40392017-02-21 01:27:33 +0000176 if (I == Preds.end())
177 return;
178 // Find the corresponding successor in N.
179 SDep P = D;
180 P.setSUnit(this);
181 SUnit *N = D.getSUnit();
Eugene Zelenkodb56e5a2017-02-22 22:32:51 +0000182 SmallVectorImpl<SDep>::iterator Succ = llvm::find(N->Succs, P);
Matthias Braun9ab40392017-02-21 01:27:33 +0000183 assert(Succ != N->Succs.end() && "Mismatching preds / succs lists!");
184 N->Succs.erase(Succ);
185 Preds.erase(I);
186 // Update the bookkeeping.
187 if (P.getKind() == SDep::Data) {
188 assert(NumPreds > 0 && "NumPreds will underflow!");
189 assert(N->NumSuccs > 0 && "NumSuccs will underflow!");
190 --NumPreds;
191 --N->NumSuccs;
192 }
193 if (!N->isScheduled) {
194 if (D.isWeak())
195 --WeakPredsLeft;
196 else {
197 assert(NumPredsLeft > 0 && "NumPredsLeft will underflow!");
198 --NumPredsLeft;
Dan Gohmane3a63512008-12-16 01:05:52 +0000199 }
Matthias Braun9ab40392017-02-21 01:27:33 +0000200 }
201 if (!isScheduled) {
202 if (D.isWeak())
203 --N->WeakSuccsLeft;
204 else {
205 assert(N->NumSuccsLeft > 0 && "NumSuccsLeft will underflow!");
206 --N->NumSuccsLeft;
207 }
208 }
209 if (P.getLatency() != 0) {
210 this->setDepthDirty();
211 N->setHeightDirty();
212 }
Dan Gohmane3a63512008-12-16 01:05:52 +0000213}
214
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000215void SUnit::setDepthDirty() {
Dan Gohmana04542b2008-12-22 21:11:33 +0000216 if (!isDepthCurrent) return;
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000217 SmallVector<SUnit*, 8> WorkList;
218 WorkList.push_back(this);
Dan Gohmana04542b2008-12-22 21:11:33 +0000219 do {
Dan Gohman24fe9a12008-12-20 16:42:33 +0000220 SUnit *SU = WorkList.pop_back_val();
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000221 SU->isDepthCurrent = false;
Matthias Braun9ab40392017-02-21 01:27:33 +0000222 for (SDep &SuccDep : SU->Succs) {
223 SUnit *SuccSU = SuccDep.getSUnit();
Dan Gohmana04542b2008-12-22 21:11:33 +0000224 if (SuccSU->isDepthCurrent)
225 WorkList.push_back(SuccSU);
226 }
227 } while (!WorkList.empty());
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000228}
229
230void SUnit::setHeightDirty() {
Dan Gohmana04542b2008-12-22 21:11:33 +0000231 if (!isHeightCurrent) return;
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000232 SmallVector<SUnit*, 8> WorkList;
233 WorkList.push_back(this);
Dan Gohmana04542b2008-12-22 21:11:33 +0000234 do {
Dan Gohman24fe9a12008-12-20 16:42:33 +0000235 SUnit *SU = WorkList.pop_back_val();
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000236 SU->isHeightCurrent = false;
Matthias Braun9ab40392017-02-21 01:27:33 +0000237 for (SDep &PredDep : SU->Preds) {
238 SUnit *PredSU = PredDep.getSUnit();
Dan Gohmana04542b2008-12-22 21:11:33 +0000239 if (PredSU->isHeightCurrent)
240 WorkList.push_back(PredSU);
241 }
242 } while (!WorkList.empty());
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000243}
244
David Goodwin80a03cc2009-11-20 19:32:48 +0000245void SUnit::setDepthToAtLeast(unsigned NewDepth) {
246 if (NewDepth <= getDepth())
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000247 return;
248 setDepthDirty();
249 Depth = NewDepth;
250 isDepthCurrent = true;
251}
252
David Goodwin80a03cc2009-11-20 19:32:48 +0000253void SUnit::setHeightToAtLeast(unsigned NewHeight) {
254 if (NewHeight <= getHeight())
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000255 return;
256 setHeightDirty();
257 Height = NewHeight;
258 isHeightCurrent = true;
259}
260
Matthias Braun9ab40392017-02-21 01:27:33 +0000261/// Calculates the maximal path from the node to the exit.
David Goodwin80a03cc2009-11-20 19:32:48 +0000262void SUnit::ComputeDepth() {
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000263 SmallVector<SUnit*, 8> WorkList;
264 WorkList.push_back(this);
Dan Gohman3a572132008-12-23 17:22:32 +0000265 do {
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000266 SUnit *Cur = WorkList.back();
267
268 bool Done = true;
269 unsigned MaxPredDepth = 0;
Matthias Braun9ab40392017-02-21 01:27:33 +0000270 for (const SDep &PredDep : Cur->Preds) {
271 SUnit *PredSU = PredDep.getSUnit();
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000272 if (PredSU->isDepthCurrent)
273 MaxPredDepth = std::max(MaxPredDepth,
Matthias Braun9ab40392017-02-21 01:27:33 +0000274 PredSU->Depth + PredDep.getLatency());
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000275 else {
276 Done = false;
277 WorkList.push_back(PredSU);
278 }
279 }
280
281 if (Done) {
282 WorkList.pop_back();
283 if (MaxPredDepth != Cur->Depth) {
284 Cur->setDepthDirty();
285 Cur->Depth = MaxPredDepth;
286 }
287 Cur->isDepthCurrent = true;
288 }
Dan Gohman3a572132008-12-23 17:22:32 +0000289 } while (!WorkList.empty());
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000290}
291
Matthias Braun9ab40392017-02-21 01:27:33 +0000292/// Calculates the maximal path from the node to the entry.
David Goodwin80a03cc2009-11-20 19:32:48 +0000293void SUnit::ComputeHeight() {
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000294 SmallVector<SUnit*, 8> WorkList;
295 WorkList.push_back(this);
Dan Gohman3a572132008-12-23 17:22:32 +0000296 do {
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000297 SUnit *Cur = WorkList.back();
298
299 bool Done = true;
300 unsigned MaxSuccHeight = 0;
Matthias Braun9ab40392017-02-21 01:27:33 +0000301 for (const SDep &SuccDep : Cur->Succs) {
302 SUnit *SuccSU = SuccDep.getSUnit();
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000303 if (SuccSU->isHeightCurrent)
304 MaxSuccHeight = std::max(MaxSuccHeight,
Matthias Braun9ab40392017-02-21 01:27:33 +0000305 SuccSU->Height + SuccDep.getLatency());
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000306 else {
307 Done = false;
308 WorkList.push_back(SuccSU);
309 }
310 }
311
312 if (Done) {
313 WorkList.pop_back();
314 if (MaxSuccHeight != Cur->Height) {
315 Cur->setHeightDirty();
316 Cur->Height = MaxSuccHeight;
317 }
318 Cur->isHeightCurrent = true;
319 }
Dan Gohman3a572132008-12-23 17:22:32 +0000320 } while (!WorkList.empty());
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000321}
322
Andrew Trickd3b86292013-01-24 02:09:55 +0000323void SUnit::biasCriticalPath() {
324 if (NumPreds < 2)
325 return;
326
327 SUnit::pred_iterator BestI = Preds.begin();
328 unsigned MaxDepth = BestI->getSUnit()->getDepth();
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000329 for (SUnit::pred_iterator I = std::next(BestI), E = Preds.end(); I != E;
330 ++I) {
Andrew Trickd3b86292013-01-24 02:09:55 +0000331 if (I->getKind() == SDep::Data && I->getSUnit()->getDepth() > MaxDepth)
332 BestI = I;
333 }
334 if (BestI != Preds.begin())
335 std::swap(*Preds.begin(), *BestI);
336}
337
Aaron Ballman615eb472017-10-15 14:32:27 +0000338#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Matthias Braun8c209aa2017-01-28 02:02:38 +0000339LLVM_DUMP_METHOD
Evandro Menezes14ba3d72017-07-12 15:30:59 +0000340raw_ostream &SUnit::print(raw_ostream &OS,
341 const SUnit *Entry, const SUnit *Exit) const {
342 if (this == Entry)
Evandro Menezes063259d2017-01-10 01:08:01 +0000343 OS << "EntrySU";
Evandro Menezes14ba3d72017-07-12 15:30:59 +0000344 else if (this == Exit)
345 OS << "ExitSU";
Matthias Braun636a5972016-11-11 22:37:26 +0000346 else
Evandro Menezes063259d2017-01-10 01:08:01 +0000347 OS << "SU(" << NodeNum << ")";
Evandro Menezes14ba3d72017-07-12 15:30:59 +0000348 return OS;
Matthias Braun636a5972016-11-11 22:37:26 +0000349}
350
Evandro Menezes14ba3d72017-07-12 15:30:59 +0000351LLVM_DUMP_METHOD
352raw_ostream &SUnit::print(raw_ostream &OS, const ScheduleDAG *G) const {
353 return print(OS, &G->EntrySU, &G->ExitSU);
354}
355
356LLVM_DUMP_METHOD
357void SUnit::dump(const ScheduleDAG *G) const {
Evandro Menezes063259d2017-01-10 01:08:01 +0000358 print(dbgs(), G);
Matthias Braun636a5972016-11-11 22:37:26 +0000359 dbgs() << ": ";
Dan Gohman60cb69e2008-11-19 23:18:57 +0000360 G->dumpNode(this);
361}
362
Matthias Braun8c209aa2017-01-28 02:02:38 +0000363LLVM_DUMP_METHOD void SUnit::dumpAll(const ScheduleDAG *G) const {
Dan Gohman60cb69e2008-11-19 23:18:57 +0000364 dump(G);
365
David Greene94745d02010-01-05 01:25:41 +0000366 dbgs() << " # preds left : " << NumPredsLeft << "\n";
367 dbgs() << " # succs left : " << NumSuccsLeft << "\n";
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000368 if (WeakPredsLeft)
369 dbgs() << " # weak preds left : " << WeakPredsLeft << "\n";
370 if (WeakSuccsLeft)
371 dbgs() << " # weak succs left : " << WeakSuccsLeft << "\n";
Andrew Trickd0548ae2011-02-04 03:18:17 +0000372 dbgs() << " # rdefs left : " << NumRegDefsLeft << "\n";
David Greene94745d02010-01-05 01:25:41 +0000373 dbgs() << " Latency : " << Latency << "\n";
Andrew Trick2a8edef2013-03-01 00:19:09 +0000374 dbgs() << " Depth : " << getDepth() << "\n";
375 dbgs() << " Height : " << getHeight() << "\n";
Dan Gohman60cb69e2008-11-19 23:18:57 +0000376
377 if (Preds.size() != 0) {
David Greene94745d02010-01-05 01:25:41 +0000378 dbgs() << " Predecessors:\n";
Evandro Menezes14ba3d72017-07-12 15:30:59 +0000379 for (const SDep &Dep : Preds) {
380 dbgs() << " ";
381 Dep.getSUnit()->print(dbgs(), G); dbgs() << ": ";
382 Dep.print(dbgs(), G->TRI); dbgs() << '\n';
Dan Gohman60cb69e2008-11-19 23:18:57 +0000383 }
384 }
385 if (Succs.size() != 0) {
David Greene94745d02010-01-05 01:25:41 +0000386 dbgs() << " Successors:\n";
Evandro Menezes14ba3d72017-07-12 15:30:59 +0000387 for (const SDep &Dep : Succs) {
388 dbgs() << " ";
389 Dep.getSUnit()->print(dbgs(), G); dbgs() << ": ";
390 Dep.print(dbgs(), G->TRI); dbgs() << '\n';
Dan Gohman60cb69e2008-11-19 23:18:57 +0000391 }
392 }
Dan Gohman60cb69e2008-11-19 23:18:57 +0000393}
Manman Ren742534c2012-09-06 19:06:06 +0000394#endif
Dan Gohman4ce15e12008-11-20 01:26:25 +0000395
396#ifndef NDEBUG
Andrew Trick46a58662012-03-07 05:21:36 +0000397unsigned ScheduleDAG::VerifyScheduledDAG(bool isBottomUp) {
Dan Gohman4ce15e12008-11-20 01:26:25 +0000398 bool AnyNotSched = false;
399 unsigned DeadNodes = 0;
Matthias Braun9ab40392017-02-21 01:27:33 +0000400 for (const SUnit &SUnit : SUnits) {
401 if (!SUnit.isScheduled) {
402 if (SUnit.NumPreds == 0 && SUnit.NumSuccs == 0) {
Dan Gohman4ce15e12008-11-20 01:26:25 +0000403 ++DeadNodes;
404 continue;
405 }
406 if (!AnyNotSched)
David Greene94745d02010-01-05 01:25:41 +0000407 dbgs() << "*** Scheduling failed! ***\n";
Matthias Braun9ab40392017-02-21 01:27:33 +0000408 SUnit.dump(this);
David Greene94745d02010-01-05 01:25:41 +0000409 dbgs() << "has not been scheduled!\n";
Dan Gohman4ce15e12008-11-20 01:26:25 +0000410 AnyNotSched = true;
411 }
Matthias Braun9ab40392017-02-21 01:27:33 +0000412 if (SUnit.isScheduled &&
413 (isBottomUp ? SUnit.getHeight() : SUnit.getDepth()) >
Eugene Zelenkodb56e5a2017-02-22 22:32:51 +0000414 unsigned(std::numeric_limits<int>::max())) {
Dan Gohman4ce15e12008-11-20 01:26:25 +0000415 if (!AnyNotSched)
David Greene94745d02010-01-05 01:25:41 +0000416 dbgs() << "*** Scheduling failed! ***\n";
Matthias Braun9ab40392017-02-21 01:27:33 +0000417 SUnit.dump(this);
David Greene94745d02010-01-05 01:25:41 +0000418 dbgs() << "has an unexpected "
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000419 << (isBottomUp ? "Height" : "Depth") << " value!\n";
Dan Gohman4ce15e12008-11-20 01:26:25 +0000420 AnyNotSched = true;
421 }
422 if (isBottomUp) {
Matthias Braun9ab40392017-02-21 01:27:33 +0000423 if (SUnit.NumSuccsLeft != 0) {
Dan Gohman4ce15e12008-11-20 01:26:25 +0000424 if (!AnyNotSched)
David Greene94745d02010-01-05 01:25:41 +0000425 dbgs() << "*** Scheduling failed! ***\n";
Matthias Braun9ab40392017-02-21 01:27:33 +0000426 SUnit.dump(this);
David Greene94745d02010-01-05 01:25:41 +0000427 dbgs() << "has successors left!\n";
Dan Gohman4ce15e12008-11-20 01:26:25 +0000428 AnyNotSched = true;
429 }
430 } else {
Matthias Braun9ab40392017-02-21 01:27:33 +0000431 if (SUnit.NumPredsLeft != 0) {
Dan Gohman4ce15e12008-11-20 01:26:25 +0000432 if (!AnyNotSched)
David Greene94745d02010-01-05 01:25:41 +0000433 dbgs() << "*** Scheduling failed! ***\n";
Matthias Braun9ab40392017-02-21 01:27:33 +0000434 SUnit.dump(this);
David Greene94745d02010-01-05 01:25:41 +0000435 dbgs() << "has predecessors left!\n";
Dan Gohman4ce15e12008-11-20 01:26:25 +0000436 AnyNotSched = true;
437 }
438 }
439 }
Dan Gohman4ce15e12008-11-20 01:26:25 +0000440 assert(!AnyNotSched);
Andrew Trick46a58662012-03-07 05:21:36 +0000441 return SUnits.size() - DeadNodes;
Dan Gohman4ce15e12008-11-20 01:26:25 +0000442}
443#endif
Dan Gohmanad2134d2008-11-25 00:52:40 +0000444
Dan Gohmanad2134d2008-11-25 00:52:40 +0000445void ScheduleDAGTopologicalSort::InitDAGTopologicalSorting() {
Matthias Braun9ab40392017-02-21 01:27:33 +0000446 // The idea of the algorithm is taken from
447 // "Online algorithms for managing the topological order of
448 // a directed acyclic graph" by David J. Pearce and Paul H.J. Kelly
449 // This is the MNR algorithm, which was first introduced by
450 // A. Marchetti-Spaccamela, U. Nanni and H. Rohnert in
451 // "Maintaining a topological order under edge insertions".
452 //
453 // Short description of the algorithm:
454 //
455 // Topological ordering, ord, of a DAG maps each node to a topological
456 // index so that for all edges X->Y it is the case that ord(X) < ord(Y).
457 //
458 // This means that if there is a path from the node X to the node Z,
459 // then ord(X) < ord(Z).
460 //
461 // This property can be used to check for reachability of nodes:
462 // if Z is reachable from X, then an insertion of the edge Z->X would
463 // create a cycle.
464 //
465 // The algorithm first computes a topological ordering for the DAG by
466 // initializing the Index2Node and Node2Index arrays and then tries to keep
467 // the ordering up-to-date after edge insertions by reordering the DAG.
468 //
469 // On insertion of the edge X->Y, the algorithm first marks by calling DFS
470 // the nodes reachable from Y, and then shifts them using Shift to lie
471 // immediately after X in Index2Node.
Dan Gohmanad2134d2008-11-25 00:52:40 +0000472 unsigned DAGSize = SUnits.size();
473 std::vector<SUnit*> WorkList;
474 WorkList.reserve(DAGSize);
475
476 Index2Node.resize(DAGSize);
477 Node2Index.resize(DAGSize);
478
479 // Initialize the data structures.
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000480 if (ExitSU)
481 WorkList.push_back(ExitSU);
Matthias Braun9ab40392017-02-21 01:27:33 +0000482 for (SUnit &SU : SUnits) {
483 int NodeNum = SU.NodeNum;
484 unsigned Degree = SU.Succs.size();
Dan Gohmanad2134d2008-11-25 00:52:40 +0000485 // Temporarily use the Node2Index array as scratch space for degree counts.
486 Node2Index[NodeNum] = Degree;
487
488 // Is it a node without dependencies?
489 if (Degree == 0) {
Matthias Braun9ab40392017-02-21 01:27:33 +0000490 assert(SU.Succs.empty() && "SUnit should have no successors");
Dan Gohmanad2134d2008-11-25 00:52:40 +0000491 // Collect leaf nodes.
Matthias Braun9ab40392017-02-21 01:27:33 +0000492 WorkList.push_back(&SU);
Dan Gohmanad2134d2008-11-25 00:52:40 +0000493 }
John Mosby53646552010-06-30 03:40:54 +0000494 }
Dan Gohmanad2134d2008-11-25 00:52:40 +0000495
496 int Id = DAGSize;
497 while (!WorkList.empty()) {
498 SUnit *SU = WorkList.back();
499 WorkList.pop_back();
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000500 if (SU->NodeNum < DAGSize)
501 Allocate(SU->NodeNum, --Id);
Matthias Braun9ab40392017-02-21 01:27:33 +0000502 for (const SDep &PredDep : SU->Preds) {
503 SUnit *SU = PredDep.getSUnit();
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000504 if (SU->NodeNum < DAGSize && !--Node2Index[SU->NodeNum])
Dan Gohmanad2134d2008-11-25 00:52:40 +0000505 // If all dependencies of the node are processed already,
506 // then the node can be computed now.
507 WorkList.push_back(SU);
508 }
509 }
510
511 Visited.resize(DAGSize);
512
513#ifndef NDEBUG
514 // Check correctness of the ordering
Matthias Braun9ab40392017-02-21 01:27:33 +0000515 for (SUnit &SU : SUnits) {
516 for (const SDep &PD : SU.Preds) {
517 assert(Node2Index[SU.NodeNum] > Node2Index[PD.getSUnit()->NodeNum] &&
Dan Gohmanad2134d2008-11-25 00:52:40 +0000518 "Wrong topological sorting");
519 }
520 }
521#endif
522}
523
Dan Gohmanad2134d2008-11-25 00:52:40 +0000524void ScheduleDAGTopologicalSort::AddPred(SUnit *Y, SUnit *X) {
525 int UpperBound, LowerBound;
526 LowerBound = Node2Index[Y->NodeNum];
527 UpperBound = Node2Index[X->NodeNum];
528 bool HasLoop = false;
529 // Is Ord(X) < Ord(Y) ?
530 if (LowerBound < UpperBound) {
531 // Update the topological order.
532 Visited.reset();
533 DFS(Y, UpperBound, HasLoop);
534 assert(!HasLoop && "Inserted edge creates a loop!");
535 // Recompute topological indexes.
536 Shift(Visited, LowerBound, UpperBound);
537 }
538}
539
Dan Gohmanad2134d2008-11-25 00:52:40 +0000540void ScheduleDAGTopologicalSort::RemovePred(SUnit *M, SUnit *N) {
541 // InitDAGTopologicalSorting();
542}
543
Dan Gohman7d329742008-12-09 16:37:48 +0000544void ScheduleDAGTopologicalSort::DFS(const SUnit *SU, int UpperBound,
Chris Lattnered69c6e2010-12-20 00:50:16 +0000545 bool &HasLoop) {
Dan Gohmanad2134d2008-11-25 00:52:40 +0000546 std::vector<const SUnit*> WorkList;
John Mosby53646552010-06-30 03:40:54 +0000547 WorkList.reserve(SUnits.size());
Dan Gohmanad2134d2008-11-25 00:52:40 +0000548
549 WorkList.push_back(SU);
Dan Gohman3a572132008-12-23 17:22:32 +0000550 do {
Dan Gohmanad2134d2008-11-25 00:52:40 +0000551 SU = WorkList.back();
552 WorkList.pop_back();
553 Visited.set(SU->NodeNum);
Matthias Braun9ab40392017-02-21 01:27:33 +0000554 for (const SDep &SuccDep
555 : make_range(SU->Succs.rbegin(), SU->Succs.rend())) {
556 unsigned s = SuccDep.getSUnit()->NodeNum;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000557 // Edges to non-SUnits are allowed but ignored (e.g. ExitSU).
558 if (s >= Node2Index.size())
559 continue;
Dan Gohmanad2134d2008-11-25 00:52:40 +0000560 if (Node2Index[s] == UpperBound) {
John Mosby53646552010-06-30 03:40:54 +0000561 HasLoop = true;
Dan Gohmanad2134d2008-11-25 00:52:40 +0000562 return;
563 }
564 // Visit successors if not already and in affected region.
565 if (!Visited.test(s) && Node2Index[s] < UpperBound) {
Matthias Braun9ab40392017-02-21 01:27:33 +0000566 WorkList.push_back(SuccDep.getSUnit());
John Mosby53646552010-06-30 03:40:54 +0000567 }
568 }
Dan Gohman3a572132008-12-23 17:22:32 +0000569 } while (!WorkList.empty());
Dan Gohmanad2134d2008-11-25 00:52:40 +0000570}
571
Valery Pykhtin910da132017-03-28 05:12:31 +0000572std::vector<int> ScheduleDAGTopologicalSort::GetSubGraph(const SUnit &StartSU,
573 const SUnit &TargetSU,
574 bool &Success) {
575 std::vector<const SUnit*> WorkList;
576 int LowerBound = Node2Index[StartSU.NodeNum];
577 int UpperBound = Node2Index[TargetSU.NodeNum];
578 bool Found = false;
579 BitVector VisitedBack;
580 std::vector<int> Nodes;
581
582 if (LowerBound > UpperBound) {
583 Success = false;
584 return Nodes;
585 }
586
587 WorkList.reserve(SUnits.size());
588 Visited.reset();
589
590 // Starting from StartSU, visit all successors up
591 // to UpperBound.
592 WorkList.push_back(&StartSU);
593 do {
594 const SUnit *SU = WorkList.back();
595 WorkList.pop_back();
596 for (int I = SU->Succs.size()-1; I >= 0; --I) {
597 const SUnit *Succ = SU->Succs[I].getSUnit();
598 unsigned s = Succ->NodeNum;
599 // Edges to non-SUnits are allowed but ignored (e.g. ExitSU).
600 if (Succ->isBoundaryNode())
601 continue;
602 if (Node2Index[s] == UpperBound) {
603 Found = true;
604 continue;
605 }
606 // Visit successors if not already and in affected region.
607 if (!Visited.test(s) && Node2Index[s] < UpperBound) {
608 Visited.set(s);
609 WorkList.push_back(Succ);
610 }
611 }
612 } while (!WorkList.empty());
613
614 if (!Found) {
615 Success = false;
616 return Nodes;
617 }
618
619 WorkList.clear();
620 VisitedBack.resize(SUnits.size());
621 Found = false;
622
623 // Starting from TargetSU, visit all predecessors up
624 // to LowerBound. SUs that are visited by the two
625 // passes are added to Nodes.
626 WorkList.push_back(&TargetSU);
627 do {
628 const SUnit *SU = WorkList.back();
629 WorkList.pop_back();
630 for (int I = SU->Preds.size()-1; I >= 0; --I) {
631 const SUnit *Pred = SU->Preds[I].getSUnit();
632 unsigned s = Pred->NodeNum;
633 // Edges to non-SUnits are allowed but ignored (e.g. EntrySU).
634 if (Pred->isBoundaryNode())
635 continue;
636 if (Node2Index[s] == LowerBound) {
637 Found = true;
638 continue;
639 }
640 if (!VisitedBack.test(s) && Visited.test(s)) {
641 VisitedBack.set(s);
642 WorkList.push_back(Pred);
643 Nodes.push_back(s);
644 }
645 }
646 } while (!WorkList.empty());
647
648 assert(Found && "Error in SUnit Graph!");
649 Success = true;
650 return Nodes;
651}
652
John Mosby53646552010-06-30 03:40:54 +0000653void ScheduleDAGTopologicalSort::Shift(BitVector& Visited, int LowerBound,
Dan Gohman7d329742008-12-09 16:37:48 +0000654 int UpperBound) {
Dan Gohmanad2134d2008-11-25 00:52:40 +0000655 std::vector<int> L;
656 int shift = 0;
657 int i;
658
659 for (i = LowerBound; i <= UpperBound; ++i) {
660 // w is node at topological index i.
661 int w = Index2Node[i];
662 if (Visited.test(w)) {
663 // Unmark.
664 Visited.reset(w);
665 L.push_back(w);
666 shift = shift + 1;
667 } else {
668 Allocate(w, i - shift);
669 }
670 }
671
Matthias Braun9ab40392017-02-21 01:27:33 +0000672 for (unsigned LI : L) {
673 Allocate(LI, i - shift);
Dan Gohmanad2134d2008-11-25 00:52:40 +0000674 i = i + 1;
675 }
676}
677
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000678bool ScheduleDAGTopologicalSort::WillCreateCycle(SUnit *TargetSU, SUnit *SU) {
679 // Is SU reachable from TargetSU via successor edges?
680 if (IsReachable(SU, TargetSU))
Dan Gohmanad2134d2008-11-25 00:52:40 +0000681 return true;
Matthias Braun9ab40392017-02-21 01:27:33 +0000682 for (const SDep &PredDep : TargetSU->Preds)
683 if (PredDep.isAssignedRegDep() &&
684 IsReachable(SU, PredDep.getSUnit()))
Dan Gohmanad2134d2008-11-25 00:52:40 +0000685 return true;
686 return false;
687}
688
Dan Gohman7d329742008-12-09 16:37:48 +0000689bool ScheduleDAGTopologicalSort::IsReachable(const SUnit *SU,
690 const SUnit *TargetSU) {
Dan Gohmanad2134d2008-11-25 00:52:40 +0000691 // If insertion of the edge SU->TargetSU would create a cycle
692 // then there is a path from TargetSU to SU.
693 int UpperBound, LowerBound;
694 LowerBound = Node2Index[TargetSU->NodeNum];
695 UpperBound = Node2Index[SU->NodeNum];
696 bool HasLoop = false;
697 // Is Ord(TargetSU) < Ord(SU) ?
698 if (LowerBound < UpperBound) {
699 Visited.reset();
John Mosby53646552010-06-30 03:40:54 +0000700 // There may be a path from TargetSU to SU. Check for it.
Dan Gohmanad2134d2008-11-25 00:52:40 +0000701 DFS(TargetSU, UpperBound, HasLoop);
702 }
703 return HasLoop;
704}
705
Dan Gohmanad2134d2008-11-25 00:52:40 +0000706void ScheduleDAGTopologicalSort::Allocate(int n, int index) {
707 Node2Index[n] = index;
708 Index2Node[index] = n;
709}
710
John Mosby53646552010-06-30 03:40:54 +0000711ScheduleDAGTopologicalSort::
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000712ScheduleDAGTopologicalSort(std::vector<SUnit> &sunits, SUnit *exitsu)
713 : SUnits(sunits), ExitSU(exitsu) {}
Dan Gohman7e105f02009-01-15 22:18:12 +0000714
Eugene Zelenkodb56e5a2017-02-22 22:32:51 +0000715ScheduleHazardRecognizer::~ScheduleHazardRecognizer() = default;