blob: 61a3fd728711dc904f976153f4448eb622915d01 [file] [log] [blame]
Dan Gohman95be7d72008-09-18 16:26:26 +00001//===----- ScheduleDAGFast.cpp - Fast poor list scheduler -----------------===//
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// This implements a fast scheduler.
11//
12//===----------------------------------------------------------------------===//
13
Dan Gohman95be7d72008-09-18 16:26:26 +000014#include "llvm/CodeGen/SchedulerRegistry.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "InstrEmitter.h"
16#include "ScheduleDAGSDNodes.h"
17#include "llvm/ADT/STLExtras.h"
Dan Gohman95be7d72008-09-18 16:26:26 +000018#include "llvm/ADT/SmallSet.h"
19#include "llvm/ADT/Statistic.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000020#include "llvm/CodeGen/SelectionDAGISel.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000021#include "llvm/IR/DataLayout.h"
22#include "llvm/IR/InlineAsm.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000023#include "llvm/Support/Debug.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000024#include "llvm/Support/ErrorHandling.h"
Chris Lattner4dc3edd2009-08-23 06:35:02 +000025#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000026#include "llvm/Target/TargetInstrInfo.h"
27#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohman95be7d72008-09-18 16:26:26 +000028using namespace llvm;
29
Chandler Carruth1b9dde02014-04-22 02:02:50 +000030#define DEBUG_TYPE "pre-RA-sched"
31
Dan Gohman95be7d72008-09-18 16:26:26 +000032STATISTIC(NumUnfolds, "Number of nodes unfolded");
33STATISTIC(NumDups, "Number of duplicated nodes");
Evan Chengb2c42c62009-01-12 03:19:55 +000034STATISTIC(NumPRCopies, "Number of physical copies");
Dan Gohman95be7d72008-09-18 16:26:26 +000035
36static RegisterScheduler
Dan Gohman9c4b7d52008-10-14 20:25:08 +000037 fastDAGScheduler("fast", "Fast suboptimal list scheduling",
Dan Gohman95be7d72008-09-18 16:26:26 +000038 createFastDAGScheduler);
Evan Cheng839fb652012-10-17 19:39:36 +000039static RegisterScheduler
40 linearizeDAGScheduler("linearize", "Linearize DAG, no scheduling",
41 createDAGLinearizer);
42
Dan Gohman95be7d72008-09-18 16:26:26 +000043
44namespace {
45 /// FastPriorityQueue - A degenerate priority queue that considers
46 /// all nodes to have the same priority.
47 ///
Nick Lewycky02d5f772009-10-25 06:33:48 +000048 struct FastPriorityQueue {
Dan Gohmanc07f6862008-09-23 18:50:48 +000049 SmallVector<SUnit *, 16> Queue;
Dan Gohman95be7d72008-09-18 16:26:26 +000050
51 bool empty() const { return Queue.empty(); }
Andrew Trick7c6c41a2012-03-07 05:21:32 +000052
Dan Gohman95be7d72008-09-18 16:26:26 +000053 void push(SUnit *U) {
54 Queue.push_back(U);
55 }
56
57 SUnit *pop() {
Craig Topperc0196b12014-04-14 00:51:57 +000058 if (empty()) return nullptr;
Dan Gohman95be7d72008-09-18 16:26:26 +000059 SUnit *V = Queue.back();
60 Queue.pop_back();
61 return V;
62 }
63 };
64
65//===----------------------------------------------------------------------===//
66/// ScheduleDAGFast - The actual "fast" list scheduler implementation.
67///
Nick Lewycky02d5f772009-10-25 06:33:48 +000068class ScheduleDAGFast : public ScheduleDAGSDNodes {
Dan Gohman95be7d72008-09-18 16:26:26 +000069private:
70 /// AvailableQueue - The priority queue to use for the available SUnits.
71 FastPriorityQueue AvailableQueue;
72
Dan Gohmanc07f6862008-09-23 18:50:48 +000073 /// LiveRegDefs - A set of physical registers and their definition
Dan Gohman95be7d72008-09-18 16:26:26 +000074 /// that are "live". These nodes must be scheduled before any other nodes that
75 /// modifies the registers can be scheduled.
Dan Gohmanc07f6862008-09-23 18:50:48 +000076 unsigned NumLiveRegs;
Dan Gohman95be7d72008-09-18 16:26:26 +000077 std::vector<SUnit*> LiveRegDefs;
78 std::vector<unsigned> LiveRegCycles;
79
80public:
Dan Gohman619ef482009-01-15 19:20:50 +000081 ScheduleDAGFast(MachineFunction &mf)
82 : ScheduleDAGSDNodes(mf) {}
Dan Gohman95be7d72008-09-18 16:26:26 +000083
Craig Topper7b883b32014-03-08 06:31:39 +000084 void Schedule() override;
Dan Gohman95be7d72008-09-18 16:26:26 +000085
Dan Gohman2d170892008-12-09 22:54:47 +000086 /// AddPred - adds a predecessor edge to SUnit SU.
Dan Gohman95be7d72008-09-18 16:26:26 +000087 /// This returns true if this is a new predecessor.
Dan Gohman17214e62008-12-16 01:00:55 +000088 void AddPred(SUnit *SU, const SDep &D) {
89 SU->addPred(D);
Dan Gohman2d170892008-12-09 22:54:47 +000090 }
Dan Gohman95be7d72008-09-18 16:26:26 +000091
Dan Gohman2d170892008-12-09 22:54:47 +000092 /// RemovePred - removes a predecessor edge from SUnit SU.
93 /// This returns true if an edge was removed.
Dan Gohman17214e62008-12-16 01:00:55 +000094 void RemovePred(SUnit *SU, const SDep &D) {
95 SU->removePred(D);
Dan Gohman2d170892008-12-09 22:54:47 +000096 }
Dan Gohman95be7d72008-09-18 16:26:26 +000097
98private:
Dan Gohman2d170892008-12-09 22:54:47 +000099 void ReleasePred(SUnit *SU, SDep *PredEdge);
Dan Gohmanb9543432009-02-10 23:27:53 +0000100 void ReleasePredecessors(SUnit *SU, unsigned CurCycle);
Dan Gohman95be7d72008-09-18 16:26:26 +0000101 void ScheduleNodeBottomUp(SUnit*, unsigned);
102 SUnit *CopyAndMoveSuccessors(SUnit*);
Evan Chengb2c42c62009-01-12 03:19:55 +0000103 void InsertCopiesAndMoveSuccs(SUnit*, unsigned,
104 const TargetRegisterClass*,
105 const TargetRegisterClass*,
Craig Topperb94011f2013-07-14 04:42:23 +0000106 SmallVectorImpl<SUnit*>&);
107 bool DelayForLiveRegsBottomUp(SUnit*, SmallVectorImpl<unsigned>&);
Dan Gohman95be7d72008-09-18 16:26:26 +0000108 void ListScheduleBottomUp();
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000109
Andrew Trick52226d42012-03-07 23:00:49 +0000110 /// forceUnitLatencies - The fast scheduler doesn't care about real latencies.
Craig Topper7b883b32014-03-08 06:31:39 +0000111 bool forceUnitLatencies() const override { return true; }
Dan Gohman95be7d72008-09-18 16:26:26 +0000112};
113} // end anonymous namespace
114
115
116/// Schedule - Schedule the DAG using list scheduling.
117void ScheduleDAGFast::Schedule() {
David Greened65bc152010-01-05 01:25:09 +0000118 DEBUG(dbgs() << "********** List Scheduling **********\n");
Dan Gohman95be7d72008-09-18 16:26:26 +0000119
Dan Gohmanc07f6862008-09-23 18:50:48 +0000120 NumLiveRegs = 0;
Craig Topperc0196b12014-04-14 00:51:57 +0000121 LiveRegDefs.resize(TRI->getNumRegs(), nullptr);
Dan Gohman95be7d72008-09-18 16:26:26 +0000122 LiveRegCycles.resize(TRI->getNumRegs(), 0);
123
Dan Gohman04543e72008-12-23 18:36:58 +0000124 // Build the scheduling graph.
Craig Topperc0196b12014-04-14 00:51:57 +0000125 BuildSchedGraph(nullptr);
Dan Gohman95be7d72008-09-18 16:26:26 +0000126
127 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
Dan Gohman22d07b12008-11-18 02:06:40 +0000128 SUnits[su].dumpAll(this));
Dan Gohman95be7d72008-09-18 16:26:26 +0000129
130 // Execute the actual scheduling loop.
131 ListScheduleBottomUp();
132}
133
134//===----------------------------------------------------------------------===//
135// Bottom-Up Scheduling
136//===----------------------------------------------------------------------===//
137
138/// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. Add it to
139/// the AvailableQueue if the count reaches zero. Also update its cycle bound.
Dan Gohman2d170892008-12-09 22:54:47 +0000140void ScheduleDAGFast::ReleasePred(SUnit *SU, SDep *PredEdge) {
141 SUnit *PredSU = PredEdge->getSUnit();
Reid Kleckner8ff5c192009-09-30 20:15:38 +0000142
Dan Gohman95be7d72008-09-18 16:26:26 +0000143#ifndef NDEBUG
Reid Kleckner8ff5c192009-09-30 20:15:38 +0000144 if (PredSU->NumSuccsLeft == 0) {
David Greened65bc152010-01-05 01:25:09 +0000145 dbgs() << "*** Scheduling failed! ***\n";
Dan Gohman22d07b12008-11-18 02:06:40 +0000146 PredSU->dump(this);
David Greened65bc152010-01-05 01:25:09 +0000147 dbgs() << " has been released too many times!\n";
Craig Topperc0196b12014-04-14 00:51:57 +0000148 llvm_unreachable(nullptr);
Dan Gohman95be7d72008-09-18 16:26:26 +0000149 }
150#endif
Reid Kleckner8ff5c192009-09-30 20:15:38 +0000151 --PredSU->NumSuccsLeft;
152
Dan Gohmanb9543432009-02-10 23:27:53 +0000153 // If all the node's successors are scheduled, this node is ready
154 // to be scheduled. Ignore the special EntrySU node.
155 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) {
Dan Gohman95be7d72008-09-18 16:26:26 +0000156 PredSU->isAvailable = true;
157 AvailableQueue.push(PredSU);
158 }
159}
160
Dan Gohmanb9543432009-02-10 23:27:53 +0000161void ScheduleDAGFast::ReleasePredecessors(SUnit *SU, unsigned CurCycle) {
Dan Gohman95be7d72008-09-18 16:26:26 +0000162 // Bottom up: release predecessors
163 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
164 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +0000165 ReleasePred(SU, &*I);
166 if (I->isAssignedRegDep()) {
Dan Gohman95be7d72008-09-18 16:26:26 +0000167 // This is a physical register dependency and it's impossible or
Andrew Trick7c6c41a2012-03-07 05:21:32 +0000168 // expensive to copy the register. Make sure nothing that can
Dan Gohman95be7d72008-09-18 16:26:26 +0000169 // clobber the register is scheduled between the predecessor and
170 // this node.
Dan Gohman2d170892008-12-09 22:54:47 +0000171 if (!LiveRegDefs[I->getReg()]) {
Dan Gohmanc07f6862008-09-23 18:50:48 +0000172 ++NumLiveRegs;
Dan Gohman2d170892008-12-09 22:54:47 +0000173 LiveRegDefs[I->getReg()] = I->getSUnit();
174 LiveRegCycles[I->getReg()] = CurCycle;
Dan Gohman95be7d72008-09-18 16:26:26 +0000175 }
176 }
177 }
Dan Gohmanb9543432009-02-10 23:27:53 +0000178}
179
180/// ScheduleNodeBottomUp - Add the node to the schedule. Decrement the pending
181/// count of its predecessors. If a predecessor pending count is zero, add it to
182/// the Available queue.
183void ScheduleDAGFast::ScheduleNodeBottomUp(SUnit *SU, unsigned CurCycle) {
David Greened65bc152010-01-05 01:25:09 +0000184 DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: ");
Dan Gohmanb9543432009-02-10 23:27:53 +0000185 DEBUG(SU->dump(this));
186
187 assert(CurCycle >= SU->getHeight() && "Node scheduled below its height!");
188 SU->setHeightToAtLeast(CurCycle);
189 Sequence.push_back(SU);
190
191 ReleasePredecessors(SU, CurCycle);
Dan Gohman95be7d72008-09-18 16:26:26 +0000192
193 // Release all the implicit physical register defs that are live.
194 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
195 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +0000196 if (I->isAssignedRegDep()) {
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000197 if (LiveRegCycles[I->getReg()] == I->getSUnit()->getHeight()) {
Dan Gohmanc07f6862008-09-23 18:50:48 +0000198 assert(NumLiveRegs > 0 && "NumLiveRegs is already zero!");
Dan Gohman2d170892008-12-09 22:54:47 +0000199 assert(LiveRegDefs[I->getReg()] == SU &&
Dan Gohman95be7d72008-09-18 16:26:26 +0000200 "Physical register dependency violated?");
Dan Gohmanc07f6862008-09-23 18:50:48 +0000201 --NumLiveRegs;
Craig Topperc0196b12014-04-14 00:51:57 +0000202 LiveRegDefs[I->getReg()] = nullptr;
Dan Gohman2d170892008-12-09 22:54:47 +0000203 LiveRegCycles[I->getReg()] = 0;
Dan Gohman95be7d72008-09-18 16:26:26 +0000204 }
205 }
206 }
207
208 SU->isScheduled = true;
209}
210
Dan Gohman95be7d72008-09-18 16:26:26 +0000211/// CopyAndMoveSuccessors - Clone the specified node and move its scheduled
212/// successors to the newly created node.
213SUnit *ScheduleDAGFast::CopyAndMoveSuccessors(SUnit *SU) {
Chris Lattner11a33812010-12-23 17:24:32 +0000214 if (SU->getNode()->getGluedNode())
Craig Topperc0196b12014-04-14 00:51:57 +0000215 return nullptr;
Dan Gohman95be7d72008-09-18 16:26:26 +0000216
Dan Gohman1ddfcba2008-11-13 21:36:12 +0000217 SDNode *N = SU->getNode();
Dan Gohman95be7d72008-09-18 16:26:26 +0000218 if (!N)
Craig Topperc0196b12014-04-14 00:51:57 +0000219 return nullptr;
Dan Gohman95be7d72008-09-18 16:26:26 +0000220
221 SUnit *NewSU;
222 bool TryUnfold = false;
223 for (unsigned i = 0, e = N->getNumValues(); i != e; ++i) {
Craig Topper7f416c82014-11-16 21:17:18 +0000224 MVT VT = N->getSimpleValueType(i);
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000225 if (VT == MVT::Glue)
Craig Topperc0196b12014-04-14 00:51:57 +0000226 return nullptr;
Owen Anderson9f944592009-08-11 20:47:22 +0000227 else if (VT == MVT::Other)
Dan Gohman95be7d72008-09-18 16:26:26 +0000228 TryUnfold = true;
229 }
230 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
231 const SDValue &Op = N->getOperand(i);
Craig Topper7f416c82014-11-16 21:17:18 +0000232 MVT VT = Op.getNode()->getSimpleValueType(Op.getResNo());
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000233 if (VT == MVT::Glue)
Craig Topperc0196b12014-04-14 00:51:57 +0000234 return nullptr;
Dan Gohman95be7d72008-09-18 16:26:26 +0000235 }
236
237 if (TryUnfold) {
238 SmallVector<SDNode*, 2> NewNodes;
Dan Gohman5a390b92008-11-13 21:21:28 +0000239 if (!TII->unfoldMemoryOperand(*DAG, N, NewNodes))
Craig Topperc0196b12014-04-14 00:51:57 +0000240 return nullptr;
Dan Gohman95be7d72008-09-18 16:26:26 +0000241
David Greened65bc152010-01-05 01:25:09 +0000242 DEBUG(dbgs() << "Unfolding SU # " << SU->NodeNum << "\n");
Dan Gohman95be7d72008-09-18 16:26:26 +0000243 assert(NewNodes.size() == 2 && "Expected a load folding node!");
244
245 N = NewNodes[1];
246 SDNode *LoadNode = NewNodes[0];
247 unsigned NumVals = N->getNumValues();
Dan Gohman1ddfcba2008-11-13 21:36:12 +0000248 unsigned OldNumVals = SU->getNode()->getNumValues();
Dan Gohman95be7d72008-09-18 16:26:26 +0000249 for (unsigned i = 0; i != NumVals; ++i)
Dan Gohman1ddfcba2008-11-13 21:36:12 +0000250 DAG->ReplaceAllUsesOfValueWith(SDValue(SU->getNode(), i), SDValue(N, i));
251 DAG->ReplaceAllUsesOfValueWith(SDValue(SU->getNode(), OldNumVals-1),
Dan Gohman5a390b92008-11-13 21:21:28 +0000252 SDValue(LoadNode, 1));
Dan Gohman95be7d72008-09-18 16:26:26 +0000253
Andrew Trick52226d42012-03-07 23:00:49 +0000254 SUnit *NewSU = newSUnit(N);
Dan Gohman95be7d72008-09-18 16:26:26 +0000255 assert(N->getNodeId() == -1 && "Node already inserted!");
256 N->setNodeId(NewSU->NodeNum);
Andrew Trick7c6c41a2012-03-07 05:21:32 +0000257
Evan Cheng6cc775f2011-06-28 19:10:37 +0000258 const MCInstrDesc &MCID = TII->get(N->getMachineOpcode());
259 for (unsigned i = 0; i != MCID.getNumOperands(); ++i) {
260 if (MCID.getOperandConstraint(i, MCOI::TIED_TO) != -1) {
Dan Gohman95be7d72008-09-18 16:26:26 +0000261 NewSU->isTwoAddress = true;
262 break;
263 }
264 }
Evan Cheng6cc775f2011-06-28 19:10:37 +0000265 if (MCID.isCommutable())
Dan Gohman95be7d72008-09-18 16:26:26 +0000266 NewSU->isCommutable = true;
Dan Gohman95be7d72008-09-18 16:26:26 +0000267
268 // LoadNode may already exist. This can happen when there is another
269 // load from the same location and producing the same type of value
270 // but it has different alignment or volatileness.
271 bool isNewLoad = true;
272 SUnit *LoadSU;
273 if (LoadNode->getNodeId() != -1) {
274 LoadSU = &SUnits[LoadNode->getNodeId()];
275 isNewLoad = false;
276 } else {
Andrew Trick52226d42012-03-07 23:00:49 +0000277 LoadSU = newSUnit(LoadNode);
Dan Gohman95be7d72008-09-18 16:26:26 +0000278 LoadNode->setNodeId(LoadSU->NodeNum);
Dan Gohman95be7d72008-09-18 16:26:26 +0000279 }
280
Dan Gohman2d170892008-12-09 22:54:47 +0000281 SDep ChainPred;
Dan Gohman95be7d72008-09-18 16:26:26 +0000282 SmallVector<SDep, 4> ChainSuccs;
283 SmallVector<SDep, 4> LoadPreds;
284 SmallVector<SDep, 4> NodePreds;
285 SmallVector<SDep, 4> NodeSuccs;
286 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
287 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +0000288 if (I->isCtrl())
289 ChainPred = *I;
290 else if (I->getSUnit()->getNode() &&
291 I->getSUnit()->getNode()->isOperandOf(LoadNode))
292 LoadPreds.push_back(*I);
Dan Gohman95be7d72008-09-18 16:26:26 +0000293 else
Dan Gohman2d170892008-12-09 22:54:47 +0000294 NodePreds.push_back(*I);
Dan Gohman95be7d72008-09-18 16:26:26 +0000295 }
296 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
297 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +0000298 if (I->isCtrl())
299 ChainSuccs.push_back(*I);
Dan Gohman95be7d72008-09-18 16:26:26 +0000300 else
Dan Gohman2d170892008-12-09 22:54:47 +0000301 NodeSuccs.push_back(*I);
Dan Gohman95be7d72008-09-18 16:26:26 +0000302 }
303
Dan Gohman2d170892008-12-09 22:54:47 +0000304 if (ChainPred.getSUnit()) {
305 RemovePred(SU, ChainPred);
Dan Gohman95be7d72008-09-18 16:26:26 +0000306 if (isNewLoad)
Dan Gohman2d170892008-12-09 22:54:47 +0000307 AddPred(LoadSU, ChainPred);
Dan Gohman95be7d72008-09-18 16:26:26 +0000308 }
309 for (unsigned i = 0, e = LoadPreds.size(); i != e; ++i) {
Dan Gohman2d170892008-12-09 22:54:47 +0000310 const SDep &Pred = LoadPreds[i];
311 RemovePred(SU, Pred);
Dan Gohman95be7d72008-09-18 16:26:26 +0000312 if (isNewLoad) {
Dan Gohman2d170892008-12-09 22:54:47 +0000313 AddPred(LoadSU, Pred);
Dan Gohman95be7d72008-09-18 16:26:26 +0000314 }
315 }
316 for (unsigned i = 0, e = NodePreds.size(); i != e; ++i) {
Dan Gohman2d170892008-12-09 22:54:47 +0000317 const SDep &Pred = NodePreds[i];
318 RemovePred(SU, Pred);
319 AddPred(NewSU, Pred);
Dan Gohman95be7d72008-09-18 16:26:26 +0000320 }
321 for (unsigned i = 0, e = NodeSuccs.size(); i != e; ++i) {
Dan Gohman2d170892008-12-09 22:54:47 +0000322 SDep D = NodeSuccs[i];
323 SUnit *SuccDep = D.getSUnit();
324 D.setSUnit(SU);
325 RemovePred(SuccDep, D);
326 D.setSUnit(NewSU);
327 AddPred(SuccDep, D);
Dan Gohman95be7d72008-09-18 16:26:26 +0000328 }
329 for (unsigned i = 0, e = ChainSuccs.size(); i != e; ++i) {
Dan Gohman2d170892008-12-09 22:54:47 +0000330 SDep D = ChainSuccs[i];
331 SUnit *SuccDep = D.getSUnit();
332 D.setSUnit(SU);
333 RemovePred(SuccDep, D);
Dan Gohman95be7d72008-09-18 16:26:26 +0000334 if (isNewLoad) {
Dan Gohman2d170892008-12-09 22:54:47 +0000335 D.setSUnit(LoadSU);
336 AddPred(SuccDep, D);
Dan Gohman95be7d72008-09-18 16:26:26 +0000337 }
Andrew Trick7c6c41a2012-03-07 05:21:32 +0000338 }
Dan Gohman95be7d72008-09-18 16:26:26 +0000339 if (isNewLoad) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000340 SDep D(LoadSU, SDep::Barrier);
341 D.setLatency(LoadSU->Latency);
342 AddPred(NewSU, D);
Dan Gohman95be7d72008-09-18 16:26:26 +0000343 }
344
345 ++NumUnfolds;
346
347 if (NewSU->NumSuccsLeft == 0) {
348 NewSU->isAvailable = true;
349 return NewSU;
350 }
351 SU = NewSU;
352 }
353
David Greened65bc152010-01-05 01:25:09 +0000354 DEBUG(dbgs() << "Duplicating SU # " << SU->NodeNum << "\n");
Dan Gohman4c3034f2008-11-19 23:39:02 +0000355 NewSU = Clone(SU);
Dan Gohman95be7d72008-09-18 16:26:26 +0000356
357 // New SUnit has the exact same predecessors.
358 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
359 I != E; ++I)
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000360 if (!I->isArtificial())
Dan Gohman2d170892008-12-09 22:54:47 +0000361 AddPred(NewSU, *I);
Dan Gohman95be7d72008-09-18 16:26:26 +0000362
363 // Only copy scheduled successors. Cut them from old node's successor
364 // list and move them over.
Dan Gohman2d170892008-12-09 22:54:47 +0000365 SmallVector<std::pair<SUnit *, SDep>, 4> DelDeps;
Dan Gohman95be7d72008-09-18 16:26:26 +0000366 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
367 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +0000368 if (I->isArtificial())
Dan Gohman95be7d72008-09-18 16:26:26 +0000369 continue;
Dan Gohman2d170892008-12-09 22:54:47 +0000370 SUnit *SuccSU = I->getSUnit();
371 if (SuccSU->isScheduled) {
Dan Gohman2d170892008-12-09 22:54:47 +0000372 SDep D = *I;
373 D.setSUnit(NewSU);
374 AddPred(SuccSU, D);
375 D.setSUnit(SU);
376 DelDeps.push_back(std::make_pair(SuccSU, D));
Dan Gohman95be7d72008-09-18 16:26:26 +0000377 }
378 }
Evan Chengb2c42c62009-01-12 03:19:55 +0000379 for (unsigned i = 0, e = DelDeps.size(); i != e; ++i)
Dan Gohman2d170892008-12-09 22:54:47 +0000380 RemovePred(DelDeps[i].first, DelDeps[i].second);
Dan Gohman95be7d72008-09-18 16:26:26 +0000381
382 ++NumDups;
383 return NewSU;
384}
385
Evan Chengb2c42c62009-01-12 03:19:55 +0000386/// InsertCopiesAndMoveSuccs - Insert register copies and move all
387/// scheduled successors of the given SUnit to the last copy.
388void ScheduleDAGFast::InsertCopiesAndMoveSuccs(SUnit *SU, unsigned Reg,
Dan Gohman95be7d72008-09-18 16:26:26 +0000389 const TargetRegisterClass *DestRC,
390 const TargetRegisterClass *SrcRC,
Craig Topperb94011f2013-07-14 04:42:23 +0000391 SmallVectorImpl<SUnit*> &Copies) {
Craig Topperc0196b12014-04-14 00:51:57 +0000392 SUnit *CopyFromSU = newSUnit(static_cast<SDNode *>(nullptr));
Dan Gohman95be7d72008-09-18 16:26:26 +0000393 CopyFromSU->CopySrcRC = SrcRC;
394 CopyFromSU->CopyDstRC = DestRC;
395
Craig Topperc0196b12014-04-14 00:51:57 +0000396 SUnit *CopyToSU = newSUnit(static_cast<SDNode *>(nullptr));
Dan Gohman95be7d72008-09-18 16:26:26 +0000397 CopyToSU->CopySrcRC = DestRC;
398 CopyToSU->CopyDstRC = SrcRC;
399
400 // Only copy scheduled successors. Cut them from old node's successor
401 // list and move them over.
Dan Gohman2d170892008-12-09 22:54:47 +0000402 SmallVector<std::pair<SUnit *, SDep>, 4> DelDeps;
Dan Gohman95be7d72008-09-18 16:26:26 +0000403 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
404 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +0000405 if (I->isArtificial())
Dan Gohman95be7d72008-09-18 16:26:26 +0000406 continue;
Dan Gohman2d170892008-12-09 22:54:47 +0000407 SUnit *SuccSU = I->getSUnit();
408 if (SuccSU->isScheduled) {
409 SDep D = *I;
410 D.setSUnit(CopyToSU);
411 AddPred(SuccSU, D);
412 DelDeps.push_back(std::make_pair(SuccSU, *I));
Dan Gohman95be7d72008-09-18 16:26:26 +0000413 }
414 }
415 for (unsigned i = 0, e = DelDeps.size(); i != e; ++i) {
Dan Gohman2d170892008-12-09 22:54:47 +0000416 RemovePred(DelDeps[i].first, DelDeps[i].second);
Dan Gohman95be7d72008-09-18 16:26:26 +0000417 }
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000418 SDep FromDep(SU, SDep::Data, Reg);
419 FromDep.setLatency(SU->Latency);
420 AddPred(CopyFromSU, FromDep);
421 SDep ToDep(CopyFromSU, SDep::Data, 0);
422 ToDep.setLatency(CopyFromSU->Latency);
423 AddPred(CopyToSU, ToDep);
Dan Gohman95be7d72008-09-18 16:26:26 +0000424
425 Copies.push_back(CopyFromSU);
426 Copies.push_back(CopyToSU);
427
Evan Chengb2c42c62009-01-12 03:19:55 +0000428 ++NumPRCopies;
Dan Gohman95be7d72008-09-18 16:26:26 +0000429}
430
431/// getPhysicalRegisterVT - Returns the ValueType of the physical register
432/// definition of the specified node.
433/// FIXME: Move to SelectionDAG?
Craig Topper7f416c82014-11-16 21:17:18 +0000434static MVT getPhysicalRegisterVT(SDNode *N, unsigned Reg,
Dan Gohman95be7d72008-09-18 16:26:26 +0000435 const TargetInstrInfo *TII) {
Tim Northovere4c7be52014-10-23 22:31:48 +0000436 unsigned NumRes;
437 if (N->getOpcode() == ISD::CopyFromReg) {
438 // CopyFromReg has: "chain, Val, glue" so operand 1 gives the type.
439 NumRes = 1;
440 } else {
441 const MCInstrDesc &MCID = TII->get(N->getMachineOpcode());
442 assert(MCID.ImplicitDefs && "Physical reg def must be in implicit def list!");
443 NumRes = MCID.getNumDefs();
444 for (const uint16_t *ImpDef = MCID.getImplicitDefs(); *ImpDef; ++ImpDef) {
445 if (Reg == *ImpDef)
446 break;
447 ++NumRes;
448 }
Dan Gohman95be7d72008-09-18 16:26:26 +0000449 }
Craig Topper7f416c82014-11-16 21:17:18 +0000450 return N->getSimpleValueType(NumRes);
Dan Gohman95be7d72008-09-18 16:26:26 +0000451}
452
Dale Johannesen16f96442010-08-17 22:17:24 +0000453/// CheckForLiveRegDef - Return true and update live register vector if the
454/// specified register def of the specified SUnit clobbers any "live" registers.
455static bool CheckForLiveRegDef(SUnit *SU, unsigned Reg,
456 std::vector<SUnit*> &LiveRegDefs,
457 SmallSet<unsigned, 4> &RegAdded,
Craig Topperb94011f2013-07-14 04:42:23 +0000458 SmallVectorImpl<unsigned> &LRegs,
Dale Johannesen16f96442010-08-17 22:17:24 +0000459 const TargetRegisterInfo *TRI) {
460 bool Added = false;
Jakob Stoklund Olesen9b09cf02012-06-01 22:38:17 +0000461 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) {
462 if (LiveRegDefs[*AI] && LiveRegDefs[*AI] != SU) {
David Blaikie70573dc2014-11-19 07:49:26 +0000463 if (RegAdded.insert(*AI).second) {
Jakob Stoklund Olesen9b09cf02012-06-01 22:38:17 +0000464 LRegs.push_back(*AI);
Dale Johannesen16f96442010-08-17 22:17:24 +0000465 Added = true;
466 }
467 }
Jakob Stoklund Olesen9b09cf02012-06-01 22:38:17 +0000468 }
Dale Johannesen16f96442010-08-17 22:17:24 +0000469 return Added;
470}
471
Dan Gohman95be7d72008-09-18 16:26:26 +0000472/// DelayForLiveRegsBottomUp - Returns true if it is necessary to delay
473/// scheduling of the given node to satisfy live physical register dependencies.
474/// If the specific node is the last one that's available to schedule, do
475/// whatever is necessary (i.e. backtracking or cloning) to make it possible.
476bool ScheduleDAGFast::DelayForLiveRegsBottomUp(SUnit *SU,
Craig Topperb94011f2013-07-14 04:42:23 +0000477 SmallVectorImpl<unsigned> &LRegs){
Dan Gohmanc07f6862008-09-23 18:50:48 +0000478 if (NumLiveRegs == 0)
Dan Gohman95be7d72008-09-18 16:26:26 +0000479 return false;
480
481 SmallSet<unsigned, 4> RegAdded;
482 // If this node would clobber any "live" register, then it's not ready.
483 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
484 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +0000485 if (I->isAssignedRegDep()) {
Dale Johannesen16f96442010-08-17 22:17:24 +0000486 CheckForLiveRegDef(I->getSUnit(), I->getReg(), LiveRegDefs,
487 RegAdded, LRegs, TRI);
Dan Gohman95be7d72008-09-18 16:26:26 +0000488 }
489 }
490
Chris Lattner11a33812010-12-23 17:24:32 +0000491 for (SDNode *Node = SU->getNode(); Node; Node = Node->getGluedNode()) {
Dale Johannesen16f96442010-08-17 22:17:24 +0000492 if (Node->getOpcode() == ISD::INLINEASM) {
493 // Inline asm can clobber physical defs.
494 unsigned NumOps = Node->getNumOperands();
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000495 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue)
Chris Lattner11a33812010-12-23 17:24:32 +0000496 --NumOps; // Ignore the glue operand.
Dale Johannesen16f96442010-08-17 22:17:24 +0000497
498 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
499 unsigned Flags =
500 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
501 unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
502
503 ++i; // Skip the ID value.
504 if (InlineAsm::isRegDefKind(Flags) ||
Jakob Stoklund Olesen537a3022011-06-27 04:08:33 +0000505 InlineAsm::isRegDefEarlyClobberKind(Flags) ||
506 InlineAsm::isClobberKind(Flags)) {
Dale Johannesen16f96442010-08-17 22:17:24 +0000507 // Check for def of register or earlyclobber register.
508 for (; NumVals; --NumVals, ++i) {
509 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
510 if (TargetRegisterInfo::isPhysicalRegister(Reg))
511 CheckForLiveRegDef(SU, Reg, LiveRegDefs, RegAdded, LRegs, TRI);
512 }
513 } else
514 i += NumVals;
515 }
516 continue;
517 }
Dan Gohman072734e2008-11-13 23:24:17 +0000518 if (!Node->isMachineOpcode())
Dan Gohman95be7d72008-09-18 16:26:26 +0000519 continue;
Evan Cheng6cc775f2011-06-28 19:10:37 +0000520 const MCInstrDesc &MCID = TII->get(Node->getMachineOpcode());
521 if (!MCID.ImplicitDefs)
Dan Gohman95be7d72008-09-18 16:26:26 +0000522 continue;
Craig Topper5a4bcc72012-03-08 08:22:45 +0000523 for (const uint16_t *Reg = MCID.getImplicitDefs(); *Reg; ++Reg) {
Dale Johannesen16f96442010-08-17 22:17:24 +0000524 CheckForLiveRegDef(SU, *Reg, LiveRegDefs, RegAdded, LRegs, TRI);
Dan Gohman95be7d72008-09-18 16:26:26 +0000525 }
526 }
527 return !LRegs.empty();
528}
529
530
531/// ListScheduleBottomUp - The main loop of list scheduling for bottom-up
532/// schedulers.
533void ScheduleDAGFast::ListScheduleBottomUp() {
534 unsigned CurCycle = 0;
Dan Gohmanb9543432009-02-10 23:27:53 +0000535
536 // Release any predecessors of the special Exit node.
537 ReleasePredecessors(&ExitSU, CurCycle);
538
Dan Gohman95be7d72008-09-18 16:26:26 +0000539 // Add root to Available queue.
540 if (!SUnits.empty()) {
Dan Gohman5a390b92008-11-13 21:21:28 +0000541 SUnit *RootSU = &SUnits[DAG->getRoot().getNode()->getNodeId()];
Dan Gohman95be7d72008-09-18 16:26:26 +0000542 assert(RootSU->Succs.empty() && "Graph root shouldn't have successors!");
543 RootSU->isAvailable = true;
544 AvailableQueue.push(RootSU);
545 }
546
547 // While Available queue is not empty, grab the node with the highest
548 // priority. If it is not ready put it back. Schedule the node.
549 SmallVector<SUnit*, 4> NotReady;
550 DenseMap<SUnit*, SmallVector<unsigned, 4> > LRegsMap;
551 Sequence.reserve(SUnits.size());
552 while (!AvailableQueue.empty()) {
553 bool Delayed = false;
554 LRegsMap.clear();
555 SUnit *CurSU = AvailableQueue.pop();
556 while (CurSU) {
Dan Gohman4f474b02008-11-17 19:52:36 +0000557 SmallVector<unsigned, 4> LRegs;
558 if (!DelayForLiveRegsBottomUp(CurSU, LRegs))
559 break;
560 Delayed = true;
561 LRegsMap.insert(std::make_pair(CurSU, LRegs));
Dan Gohman95be7d72008-09-18 16:26:26 +0000562
563 CurSU->isPending = true; // This SU is not in AvailableQueue right now.
564 NotReady.push_back(CurSU);
565 CurSU = AvailableQueue.pop();
566 }
567
568 // All candidates are delayed due to live physical reg dependencies.
569 // Try code duplication or inserting cross class copies
570 // to resolve it.
571 if (Delayed && !CurSU) {
572 if (!CurSU) {
573 // Try duplicating the nodes that produces these
574 // "expensive to copy" values to break the dependency. In case even
575 // that doesn't work, insert cross class copies.
576 SUnit *TrySU = NotReady[0];
Craig Topperb94011f2013-07-14 04:42:23 +0000577 SmallVectorImpl<unsigned> &LRegs = LRegsMap[TrySU];
Dan Gohman95be7d72008-09-18 16:26:26 +0000578 assert(LRegs.size() == 1 && "Can't handle this yet!");
579 unsigned Reg = LRegs[0];
580 SUnit *LRDef = LiveRegDefs[Reg];
Craig Topper7f416c82014-11-16 21:17:18 +0000581 MVT VT = getPhysicalRegisterVT(LRDef->getNode(), Reg, TII);
Evan Chengb2c42c62009-01-12 03:19:55 +0000582 const TargetRegisterClass *RC =
Rafael Espindola38a7d7c2010-06-29 14:02:34 +0000583 TRI->getMinimalPhysRegClass(Reg, VT);
Evan Chengb2c42c62009-01-12 03:19:55 +0000584 const TargetRegisterClass *DestRC = TRI->getCrossCopyRegClass(RC);
585
Evan Chengb4c6a342011-03-10 00:16:32 +0000586 // If cross copy register class is the same as RC, then it must be
587 // possible copy the value directly. Do not try duplicate the def.
588 // If cross copy register class is not the same as RC, then it's
589 // possible to copy the value but it require cross register class copies
590 // and it is expensive.
591 // If cross copy register class is null, then it's not possible to copy
592 // the value at all.
Craig Topperc0196b12014-04-14 00:51:57 +0000593 SUnit *NewDef = nullptr;
Evan Chengb4c6a342011-03-10 00:16:32 +0000594 if (DestRC != RC) {
Evan Chengb2c42c62009-01-12 03:19:55 +0000595 NewDef = CopyAndMoveSuccessors(LRDef);
Evan Chengb4c6a342011-03-10 00:16:32 +0000596 if (!DestRC && !NewDef)
597 report_fatal_error("Can't handle live physical "
598 "register dependency!");
599 }
Dan Gohman95be7d72008-09-18 16:26:26 +0000600 if (!NewDef) {
Evan Chengb2c42c62009-01-12 03:19:55 +0000601 // Issue copies, these can be expensive cross register class copies.
Dan Gohman95be7d72008-09-18 16:26:26 +0000602 SmallVector<SUnit*, 2> Copies;
Evan Chengb2c42c62009-01-12 03:19:55 +0000603 InsertCopiesAndMoveSuccs(LRDef, Reg, DestRC, RC, Copies);
David Greened65bc152010-01-05 01:25:09 +0000604 DEBUG(dbgs() << "Adding an edge from SU # " << TrySU->NodeNum
Chris Lattner4dc3edd2009-08-23 06:35:02 +0000605 << " to SU #" << Copies.front()->NodeNum << "\n");
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000606 AddPred(TrySU, SDep(Copies.front(), SDep::Artificial));
Dan Gohman95be7d72008-09-18 16:26:26 +0000607 NewDef = Copies.back();
608 }
609
David Greened65bc152010-01-05 01:25:09 +0000610 DEBUG(dbgs() << "Adding an edge from SU # " << NewDef->NodeNum
Chris Lattner4dc3edd2009-08-23 06:35:02 +0000611 << " to SU #" << TrySU->NodeNum << "\n");
Dan Gohman95be7d72008-09-18 16:26:26 +0000612 LiveRegDefs[Reg] = NewDef;
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000613 AddPred(NewDef, SDep(TrySU, SDep::Artificial));
Dan Gohman95be7d72008-09-18 16:26:26 +0000614 TrySU->isAvailable = false;
615 CurSU = NewDef;
616 }
617
618 if (!CurSU) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000619 llvm_unreachable("Unable to resolve live physical register dependencies!");
Dan Gohman95be7d72008-09-18 16:26:26 +0000620 }
621 }
622
623 // Add the nodes that aren't ready back onto the available list.
624 for (unsigned i = 0, e = NotReady.size(); i != e; ++i) {
625 NotReady[i]->isPending = false;
626 // May no longer be available due to backtracking.
627 if (NotReady[i]->isAvailable)
628 AvailableQueue.push(NotReady[i]);
629 }
630 NotReady.clear();
631
Dan Gohmanc602dd42008-11-21 00:10:42 +0000632 if (CurSU)
Dan Gohman95be7d72008-09-18 16:26:26 +0000633 ScheduleNodeBottomUp(CurSU, CurCycle);
Dan Gohman95be7d72008-09-18 16:26:26 +0000634 ++CurCycle;
635 }
636
Dan Gohman6905f152009-09-28 16:09:41 +0000637 // Reverse the order since it is bottom up.
Dan Gohman95be7d72008-09-18 16:26:26 +0000638 std::reverse(Sequence.begin(), Sequence.end());
Dan Gohman6905f152009-09-28 16:09:41 +0000639
Dan Gohman95be7d72008-09-18 16:26:26 +0000640#ifndef NDEBUG
Andrew Trick46a58662012-03-07 05:21:36 +0000641 VerifyScheduledSequence(/*isBottomUp=*/true);
Dan Gohman95be7d72008-09-18 16:26:26 +0000642#endif
643}
644
Evan Cheng839fb652012-10-17 19:39:36 +0000645
Benjamin Kramera74129a2012-10-20 12:53:26 +0000646namespace {
Evan Cheng839fb652012-10-17 19:39:36 +0000647//===----------------------------------------------------------------------===//
648// ScheduleDAGLinearize - No scheduling scheduler, it simply linearize the
649// DAG in topological order.
650// IMPORTANT: this may not work for targets with phyreg dependency.
651//
652class ScheduleDAGLinearize : public ScheduleDAGSDNodes {
653public:
654 ScheduleDAGLinearize(MachineFunction &mf) : ScheduleDAGSDNodes(mf) {}
655
Craig Topper7b883b32014-03-08 06:31:39 +0000656 void Schedule() override;
Evan Cheng839fb652012-10-17 19:39:36 +0000657
Craig Topper7b883b32014-03-08 06:31:39 +0000658 MachineBasicBlock *
659 EmitSchedule(MachineBasicBlock::iterator &InsertPos) override;
Evan Cheng839fb652012-10-17 19:39:36 +0000660
661private:
662 std::vector<SDNode*> Sequence;
663 DenseMap<SDNode*, SDNode*> GluedMap; // Cache glue to its user
664
665 void ScheduleNode(SDNode *N);
666};
Benjamin Kramera74129a2012-10-20 12:53:26 +0000667} // end anonymous namespace
Evan Cheng839fb652012-10-17 19:39:36 +0000668
669void ScheduleDAGLinearize::ScheduleNode(SDNode *N) {
670 if (N->getNodeId() != 0)
Craig Topperc0196b12014-04-14 00:51:57 +0000671 llvm_unreachable(nullptr);
Evan Cheng839fb652012-10-17 19:39:36 +0000672
673 if (!N->isMachineOpcode() &&
674 (N->getOpcode() == ISD::EntryToken || isPassiveNode(N)))
675 // These nodes do not need to be translated into MIs.
676 return;
677
678 DEBUG(dbgs() << "\n*** Scheduling: ");
679 DEBUG(N->dump(DAG));
680 Sequence.push_back(N);
681
682 unsigned NumOps = N->getNumOperands();
683 if (unsigned NumLeft = NumOps) {
Craig Topperc0196b12014-04-14 00:51:57 +0000684 SDNode *GluedOpN = nullptr;
Evan Cheng839fb652012-10-17 19:39:36 +0000685 do {
686 const SDValue &Op = N->getOperand(NumLeft-1);
687 SDNode *OpN = Op.getNode();
688
689 if (NumLeft == NumOps && Op.getValueType() == MVT::Glue) {
690 // Schedule glue operand right above N.
691 GluedOpN = OpN;
692 assert(OpN->getNodeId() != 0 && "Glue operand not ready?");
693 OpN->setNodeId(0);
694 ScheduleNode(OpN);
695 continue;
696 }
697
698 if (OpN == GluedOpN)
699 // Glue operand is already scheduled.
700 continue;
701
702 DenseMap<SDNode*, SDNode*>::iterator DI = GluedMap.find(OpN);
703 if (DI != GluedMap.end() && DI->second != N)
704 // Users of glues are counted against the glued users.
705 OpN = DI->second;
706
707 unsigned Degree = OpN->getNodeId();
708 assert(Degree > 0 && "Predecessor over-released!");
709 OpN->setNodeId(--Degree);
710 if (Degree == 0)
711 ScheduleNode(OpN);
712 } while (--NumLeft);
713 }
714}
715
716/// findGluedUser - Find the representative use of a glue value by walking
717/// the use chain.
718static SDNode *findGluedUser(SDNode *N) {
719 while (SDNode *Glued = N->getGluedUser())
720 N = Glued;
721 return N;
722}
723
724void ScheduleDAGLinearize::Schedule() {
725 DEBUG(dbgs() << "********** DAG Linearization **********\n");
726
727 SmallVector<SDNode*, 8> Glues;
728 unsigned DAGSize = 0;
729 for (SelectionDAG::allnodes_iterator I = DAG->allnodes_begin(),
730 E = DAG->allnodes_end(); I != E; ++I) {
731 SDNode *N = I;
732
733 // Use node id to record degree.
734 unsigned Degree = N->use_size();
735 N->setNodeId(Degree);
736 unsigned NumVals = N->getNumValues();
737 if (NumVals && N->getValueType(NumVals-1) == MVT::Glue &&
738 N->hasAnyUseOfValue(NumVals-1)) {
739 SDNode *User = findGluedUser(N);
740 if (User) {
741 Glues.push_back(N);
742 GluedMap.insert(std::make_pair(N, User));
743 }
744 }
745
746 if (N->isMachineOpcode() ||
747 (N->getOpcode() != ISD::EntryToken && !isPassiveNode(N)))
748 ++DAGSize;
749 }
750
751 for (unsigned i = 0, e = Glues.size(); i != e; ++i) {
752 SDNode *Glue = Glues[i];
753 SDNode *GUser = GluedMap[Glue];
754 unsigned Degree = Glue->getNodeId();
755 unsigned UDegree = GUser->getNodeId();
756
757 // Glue user must be scheduled together with the glue operand. So other
758 // users of the glue operand must be treated as its users.
759 SDNode *ImmGUser = Glue->getGluedUser();
760 for (SDNode::use_iterator ui = Glue->use_begin(), ue = Glue->use_end();
761 ui != ue; ++ui)
762 if (*ui == ImmGUser)
763 --Degree;
764 GUser->setNodeId(UDegree + Degree);
765 Glue->setNodeId(1);
766 }
767
768 Sequence.reserve(DAGSize);
769 ScheduleNode(DAG->getRoot().getNode());
770}
771
772MachineBasicBlock*
773ScheduleDAGLinearize::EmitSchedule(MachineBasicBlock::iterator &InsertPos) {
774 InstrEmitter Emitter(BB, InsertPos);
775 DenseMap<SDValue, unsigned> VRBaseMap;
776
777 DEBUG({
778 dbgs() << "\n*** Final schedule ***\n";
779 });
780
781 // FIXME: Handle dbg_values.
782 unsigned NumNodes = Sequence.size();
783 for (unsigned i = 0; i != NumNodes; ++i) {
784 SDNode *N = Sequence[NumNodes-i-1];
785 DEBUG(N->dump(DAG));
786 Emitter.EmitNode(N, false, false, VRBaseMap);
787 }
788
789 DEBUG(dbgs() << '\n');
790
791 InsertPos = Emitter.getInsertPos();
792 return Emitter.getBlock();
793}
794
Dan Gohman95be7d72008-09-18 16:26:26 +0000795//===----------------------------------------------------------------------===//
796// Public Constructor Functions
797//===----------------------------------------------------------------------===//
798
Dan Gohmandfaf6462009-02-11 04:27:20 +0000799llvm::ScheduleDAGSDNodes *
Bill Wendling026e5d72009-04-29 23:29:43 +0000800llvm::createFastDAGScheduler(SelectionDAGISel *IS, CodeGenOpt::Level) {
Dan Gohman619ef482009-01-15 19:20:50 +0000801 return new ScheduleDAGFast(*IS->MF);
Dan Gohman95be7d72008-09-18 16:26:26 +0000802}
Evan Cheng839fb652012-10-17 19:39:36 +0000803
804llvm::ScheduleDAGSDNodes *
805llvm::createDAGLinearizer(SelectionDAGISel *IS, CodeGenOpt::Level) {
806 return new ScheduleDAGLinearize(*IS->MF);
807}