blob: d7a96362c240d004c83c7950abcefd48503ec945 [file] [log] [blame]
Dan Gohman04f4f4f2008-08-12 17:42:33 +00001//===----- ScheduleDAGRRList.cpp - Reg pressure reduction list scheduler --===//
Evan Chenge165a782006-05-11 23:55:42 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Evan Chenge165a782006-05-11 23:55:42 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This implements bottom-up and top-down register pressure reduction list
11// schedulers, using standard algorithms. The basic approach uses a priority
12// queue of available nodes to schedule. One at a time, nodes are taken from
13// the priority queue (thus in priority order), checked for legality to
14// schedule, and emitted if legal.
15//
16//===----------------------------------------------------------------------===//
17
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000018#define DEBUG_TYPE "pre-RA-sched"
Dan Gohman84fbac52009-02-06 17:22:58 +000019#include "ScheduleDAGSDNodes.h"
Jim Laskeyeb577ba2006-08-02 12:30:23 +000020#include "llvm/CodeGen/SchedulerRegistry.h"
Dan Gohman79ce2762009-01-15 19:20:50 +000021#include "llvm/CodeGen/SelectionDAGISel.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000022#include "llvm/Target/TargetRegisterInfo.h"
Owen Anderson07000c62006-05-12 06:33:49 +000023#include "llvm/Target/TargetData.h"
Evan Chenge165a782006-05-11 23:55:42 +000024#include "llvm/Target/TargetMachine.h"
25#include "llvm/Target/TargetInstrInfo.h"
26#include "llvm/Support/Debug.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000027#include "llvm/Support/Compiler.h"
Dan Gohman3627e342008-06-21 18:35:25 +000028#include "llvm/ADT/PriorityQueue.h"
Evan Chenga6fb1b62007-09-25 01:54:36 +000029#include "llvm/ADT/SmallSet.h"
Evan Chenge165a782006-05-11 23:55:42 +000030#include "llvm/ADT/Statistic.h"
Roman Levensteina0201d52008-04-29 09:07:59 +000031#include "llvm/ADT/STLExtras.h"
Evan Chenge165a782006-05-11 23:55:42 +000032#include <climits>
Evan Chenge165a782006-05-11 23:55:42 +000033using namespace llvm;
34
Dan Gohmancffbd252008-03-25 17:10:29 +000035STATISTIC(NumBacktracks, "Number of times scheduler backtracked");
Evan Chengf10c9732007-10-05 01:39:18 +000036STATISTIC(NumUnfolds, "Number of nodes unfolded");
Evan Chenga2ee2752007-09-27 07:09:03 +000037STATISTIC(NumDups, "Number of duplicated nodes");
Evan Chengc29a56d2009-01-12 03:19:55 +000038STATISTIC(NumPRCopies, "Number of physical register copies");
Evan Chenga2ee2752007-09-27 07:09:03 +000039
Jim Laskey13ec7022006-08-01 14:21:23 +000040static RegisterScheduler
41 burrListDAGScheduler("list-burr",
Dan Gohmanb8cab922008-10-14 20:25:08 +000042 "Bottom-up register reduction list scheduling",
Jim Laskey13ec7022006-08-01 14:21:23 +000043 createBURRListDAGScheduler);
44static RegisterScheduler
45 tdrListrDAGScheduler("list-tdrr",
Dan Gohmanb8cab922008-10-14 20:25:08 +000046 "Top-down register reduction list scheduling",
Jim Laskey13ec7022006-08-01 14:21:23 +000047 createTDRRListDAGScheduler);
48
Evan Chenge165a782006-05-11 23:55:42 +000049namespace {
Evan Chenge165a782006-05-11 23:55:42 +000050//===----------------------------------------------------------------------===//
51/// ScheduleDAGRRList - The actual register reduction list scheduler
52/// implementation. This supports both top-down and bottom-up scheduling.
53///
Dan Gohman343f0c02008-11-19 23:18:57 +000054class VISIBILITY_HIDDEN ScheduleDAGRRList : public ScheduleDAGSDNodes {
Evan Chenge165a782006-05-11 23:55:42 +000055private:
56 /// isBottomUp - This is true if the scheduling problem is bottom-up, false if
57 /// it is top-down.
58 bool isBottomUp;
Evan Cheng4576f6d2008-07-01 18:05:03 +000059
Evan Chenge165a782006-05-11 23:55:42 +000060 /// AvailableQueue - The priority queue to use for the available SUnits.
Evan Chenge165a782006-05-11 23:55:42 +000061 SchedulingPriorityQueue *AvailableQueue;
62
Dan Gohman086ec992008-09-23 18:50:48 +000063 /// LiveRegDefs - A set of physical registers and their definition
Evan Chenga6fb1b62007-09-25 01:54:36 +000064 /// that are "live". These nodes must be scheduled before any other nodes that
65 /// modifies the registers can be scheduled.
Dan Gohman086ec992008-09-23 18:50:48 +000066 unsigned NumLiveRegs;
Evan Chenga6fb1b62007-09-25 01:54:36 +000067 std::vector<SUnit*> LiveRegDefs;
68 std::vector<unsigned> LiveRegCycles;
69
Dan Gohman21d90032008-11-25 00:52:40 +000070 /// Topo - A topological ordering for SUnits which permits fast IsReachable
71 /// and similar queries.
72 ScheduleDAGTopologicalSort Topo;
73
Evan Chenge165a782006-05-11 23:55:42 +000074public:
Dan Gohman79ce2762009-01-15 19:20:50 +000075 ScheduleDAGRRList(MachineFunction &mf,
76 bool isbottomup,
Evan Cheng4576f6d2008-07-01 18:05:03 +000077 SchedulingPriorityQueue *availqueue)
Dan Gohman79ce2762009-01-15 19:20:50 +000078 : ScheduleDAGSDNodes(mf), isBottomUp(isbottomup),
Dan Gohman21d90032008-11-25 00:52:40 +000079 AvailableQueue(availqueue), Topo(SUnits) {
Evan Chenge165a782006-05-11 23:55:42 +000080 }
81
82 ~ScheduleDAGRRList() {
83 delete AvailableQueue;
84 }
85
86 void Schedule();
87
Roman Levenstein8dba9af2008-03-26 11:23:38 +000088 /// IsReachable - Checks if SU is reachable from TargetSU.
Dan Gohman21d90032008-11-25 00:52:40 +000089 bool IsReachable(const SUnit *SU, const SUnit *TargetSU) {
90 return Topo.IsReachable(SU, TargetSU);
91 }
Roman Levensteine513ba42008-03-26 09:18:09 +000092
Dan Gohman1cc6b8e2009-01-29 19:49:27 +000093 /// WillCreateCycle - Returns true if adding an edge from SU to TargetSU will
Roman Levensteine513ba42008-03-26 09:18:09 +000094 /// create a cycle.
Dan Gohman21d90032008-11-25 00:52:40 +000095 bool WillCreateCycle(SUnit *SU, SUnit *TargetSU) {
96 return Topo.WillCreateCycle(SU, TargetSU);
97 }
Roman Levensteine513ba42008-03-26 09:18:09 +000098
Dan Gohman54e4c362008-12-09 22:54:47 +000099 /// AddPred - adds a predecessor edge to SUnit SU.
Roman Levenstein8dba9af2008-03-26 11:23:38 +0000100 /// This returns true if this is a new predecessor.
101 /// Updates the topological ordering if required.
Dan Gohmanffa39122008-12-16 01:00:55 +0000102 void AddPred(SUnit *SU, const SDep &D) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000103 Topo.AddPred(SU, D.getSUnit());
Dan Gohmanffa39122008-12-16 01:00:55 +0000104 SU->addPred(D);
Dan Gohman21d90032008-11-25 00:52:40 +0000105 }
Roman Levensteine513ba42008-03-26 09:18:09 +0000106
Dan Gohman54e4c362008-12-09 22:54:47 +0000107 /// RemovePred - removes a predecessor edge from SUnit SU.
108 /// This returns true if an edge was removed.
109 /// Updates the topological ordering if required.
Dan Gohmanffa39122008-12-16 01:00:55 +0000110 void RemovePred(SUnit *SU, const SDep &D) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000111 Topo.RemovePred(SU, D.getSUnit());
Dan Gohmanffa39122008-12-16 01:00:55 +0000112 SU->removePred(D);
Dan Gohman21d90032008-11-25 00:52:40 +0000113 }
Roman Levensteine513ba42008-03-26 09:18:09 +0000114
Evan Chenge165a782006-05-11 23:55:42 +0000115private:
Dan Gohman1cc6b8e2009-01-29 19:49:27 +0000116 void ReleasePred(SUnit *SU, const SDep *PredEdge);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000117 void ReleasePredecessors(SUnit *SU, unsigned CurCycle);
Dan Gohman1cc6b8e2009-01-29 19:49:27 +0000118 void ReleaseSucc(SUnit *SU, const SDep *SuccEdge);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000119 void ReleaseSuccessors(SUnit *SU);
Dan Gohman54e4c362008-12-09 22:54:47 +0000120 void CapturePred(SDep *PredEdge);
Evan Cheng42d60272007-09-26 21:36:17 +0000121 void ScheduleNodeBottomUp(SUnit*, unsigned);
122 void ScheduleNodeTopDown(SUnit*, unsigned);
123 void UnscheduleNodeBottomUp(SUnit*);
124 void BacktrackBottomUp(SUnit*, unsigned, unsigned&);
125 SUnit *CopyAndMoveSuccessors(SUnit*);
Evan Chengc29a56d2009-01-12 03:19:55 +0000126 void InsertCopiesAndMoveSuccs(SUnit*, unsigned,
127 const TargetRegisterClass*,
128 const TargetRegisterClass*,
129 SmallVector<SUnit*, 2>&);
Evan Chenga2ee2752007-09-27 07:09:03 +0000130 bool DelayForLiveRegsBottomUp(SUnit*, SmallVector<unsigned, 4>&);
Evan Chenge165a782006-05-11 23:55:42 +0000131 void ListScheduleTopDown();
132 void ListScheduleBottomUp();
Roman Levensteine513ba42008-03-26 09:18:09 +0000133
134
135 /// CreateNewSUnit - Creates a new SUnit and returns a pointer to it.
Roman Levenstein8dba9af2008-03-26 11:23:38 +0000136 /// Updates the topological ordering if required.
Roman Levensteine513ba42008-03-26 09:18:09 +0000137 SUnit *CreateNewSUnit(SDNode *N) {
Dan Gohman21d90032008-11-25 00:52:40 +0000138 unsigned NumSUnits = SUnits.size();
Roman Levensteine513ba42008-03-26 09:18:09 +0000139 SUnit *NewNode = NewSUnit(N);
Roman Levenstein8dba9af2008-03-26 11:23:38 +0000140 // Update the topological ordering.
Dan Gohman21d90032008-11-25 00:52:40 +0000141 if (NewNode->NodeNum >= NumSUnits)
142 Topo.InitDAGTopologicalSorting();
Roman Levensteine513ba42008-03-26 09:18:09 +0000143 return NewNode;
144 }
145
Roman Levenstein8dba9af2008-03-26 11:23:38 +0000146 /// CreateClone - Creates a new SUnit from an existing one.
147 /// Updates the topological ordering if required.
Roman Levensteine513ba42008-03-26 09:18:09 +0000148 SUnit *CreateClone(SUnit *N) {
Dan Gohman21d90032008-11-25 00:52:40 +0000149 unsigned NumSUnits = SUnits.size();
Roman Levensteine513ba42008-03-26 09:18:09 +0000150 SUnit *NewNode = Clone(N);
Roman Levenstein8dba9af2008-03-26 11:23:38 +0000151 // Update the topological ordering.
Dan Gohman21d90032008-11-25 00:52:40 +0000152 if (NewNode->NodeNum >= NumSUnits)
153 Topo.InitDAGTopologicalSorting();
Roman Levensteine513ba42008-03-26 09:18:09 +0000154 return NewNode;
155 }
Dan Gohman3f237442008-12-16 03:25:46 +0000156
157 /// ForceUnitLatencies - Return true, since register-pressure-reducing
158 /// scheduling doesn't need actual latency information.
159 bool ForceUnitLatencies() const { return true; }
Evan Chenge165a782006-05-11 23:55:42 +0000160};
161} // end anonymous namespace
162
163
164/// Schedule - Schedule the DAG using list scheduling.
165void ScheduleDAGRRList::Schedule() {
Bill Wendling832171c2006-12-07 20:04:42 +0000166 DOUT << "********** List Scheduling **********\n";
Evan Chenga6fb1b62007-09-25 01:54:36 +0000167
Dan Gohman086ec992008-09-23 18:50:48 +0000168 NumLiveRegs = 0;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000169 LiveRegDefs.resize(TRI->getNumRegs(), NULL);
170 LiveRegCycles.resize(TRI->getNumRegs(), 0);
Evan Chenga6fb1b62007-09-25 01:54:36 +0000171
Dan Gohmanc9a5b9e2008-12-23 18:36:58 +0000172 // Build the scheduling graph.
173 BuildSchedGraph();
Evan Chenge165a782006-05-11 23:55:42 +0000174
Evan Chenge165a782006-05-11 23:55:42 +0000175 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
Dan Gohman3cc62432008-11-18 02:06:40 +0000176 SUnits[su].dumpAll(this));
Dan Gohman21d90032008-11-25 00:52:40 +0000177 Topo.InitDAGTopologicalSorting();
Evan Chenge165a782006-05-11 23:55:42 +0000178
Dan Gohman94d7a5f2008-06-21 19:18:17 +0000179 AvailableQueue->initNodes(SUnits);
Dan Gohman8d1bfad2007-08-20 19:28:38 +0000180
Evan Chenge165a782006-05-11 23:55:42 +0000181 // Execute the actual scheduling loop Top-Down or Bottom-Up as appropriate.
182 if (isBottomUp)
183 ListScheduleBottomUp();
184 else
185 ListScheduleTopDown();
186
187 AvailableQueue->releaseState();
Evan Cheng13d41b92006-05-12 01:58:24 +0000188}
Evan Chenge165a782006-05-11 23:55:42 +0000189
190//===----------------------------------------------------------------------===//
191// Bottom-Up Scheduling
192//===----------------------------------------------------------------------===//
193
Evan Chenge165a782006-05-11 23:55:42 +0000194/// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. Add it to
Dan Gohman8d1bfad2007-08-20 19:28:38 +0000195/// the AvailableQueue if the count reaches zero. Also update its cycle bound.
Dan Gohman1cc6b8e2009-01-29 19:49:27 +0000196void ScheduleDAGRRList::ReleasePred(SUnit *SU, const SDep *PredEdge) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000197 SUnit *PredSU = PredEdge->getSUnit();
Evan Cheng74d2fd82007-09-28 19:24:24 +0000198 --PredSU->NumSuccsLeft;
Evan Chenge165a782006-05-11 23:55:42 +0000199
200#ifndef NDEBUG
Evan Cheng74d2fd82007-09-28 19:24:24 +0000201 if (PredSU->NumSuccsLeft < 0) {
Dan Gohman2d093f32008-11-18 00:38:59 +0000202 cerr << "*** Scheduling failed! ***\n";
Dan Gohman3cc62432008-11-18 02:06:40 +0000203 PredSU->dump(this);
Bill Wendling832171c2006-12-07 20:04:42 +0000204 cerr << " has been released too many times!\n";
Evan Chenge165a782006-05-11 23:55:42 +0000205 assert(0);
206 }
207#endif
208
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000209 // If all the node's successors are scheduled, this node is ready
210 // to be scheduled. Ignore the special EntrySU node.
211 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) {
Dan Gohman80792f32008-04-15 01:22:18 +0000212 PredSU->isAvailable = true;
213 AvailableQueue->push(PredSU);
Evan Chenge165a782006-05-11 23:55:42 +0000214 }
215}
216
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000217void ScheduleDAGRRList::ReleasePredecessors(SUnit *SU, unsigned CurCycle) {
Evan Chenge165a782006-05-11 23:55:42 +0000218 // Bottom up: release predecessors
Chris Lattner228a18e2006-08-17 00:09:56 +0000219 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
Evan Chenga6fb1b62007-09-25 01:54:36 +0000220 I != E; ++I) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000221 ReleasePred(SU, &*I);
222 if (I->isAssignedRegDep()) {
Evan Chenga6fb1b62007-09-25 01:54:36 +0000223 // This is a physical register dependency and it's impossible or
224 // expensive to copy the register. Make sure nothing that can
225 // clobber the register is scheduled between the predecessor and
226 // this node.
Dan Gohman54e4c362008-12-09 22:54:47 +0000227 if (!LiveRegDefs[I->getReg()]) {
Dan Gohman086ec992008-09-23 18:50:48 +0000228 ++NumLiveRegs;
Dan Gohman54e4c362008-12-09 22:54:47 +0000229 LiveRegDefs[I->getReg()] = I->getSUnit();
230 LiveRegCycles[I->getReg()] = CurCycle;
Evan Chenga6fb1b62007-09-25 01:54:36 +0000231 }
232 }
233 }
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000234}
235
236/// ScheduleNodeBottomUp - Add the node to the schedule. Decrement the pending
237/// count of its predecessors. If a predecessor pending count is zero, add it to
238/// the Available queue.
239void ScheduleDAGRRList::ScheduleNodeBottomUp(SUnit *SU, unsigned CurCycle) {
240 DOUT << "*** Scheduling [" << CurCycle << "]: ";
241 DEBUG(SU->dump(this));
242
243 assert(CurCycle >= SU->getHeight() && "Node scheduled below its height!");
244 SU->setHeightToAtLeast(CurCycle);
245 Sequence.push_back(SU);
246
247 ReleasePredecessors(SU, CurCycle);
Evan Chenga6fb1b62007-09-25 01:54:36 +0000248
249 // Release all the implicit physical register defs that are live.
250 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
251 I != E; ++I) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000252 if (I->isAssignedRegDep()) {
Dan Gohman3f237442008-12-16 03:25:46 +0000253 if (LiveRegCycles[I->getReg()] == I->getSUnit()->getHeight()) {
Dan Gohman086ec992008-09-23 18:50:48 +0000254 assert(NumLiveRegs > 0 && "NumLiveRegs is already zero!");
Dan Gohman54e4c362008-12-09 22:54:47 +0000255 assert(LiveRegDefs[I->getReg()] == SU &&
Evan Chenga6fb1b62007-09-25 01:54:36 +0000256 "Physical register dependency violated?");
Dan Gohman086ec992008-09-23 18:50:48 +0000257 --NumLiveRegs;
Dan Gohman54e4c362008-12-09 22:54:47 +0000258 LiveRegDefs[I->getReg()] = NULL;
259 LiveRegCycles[I->getReg()] = 0;
Evan Chenga6fb1b62007-09-25 01:54:36 +0000260 }
261 }
262 }
263
Evan Chenge165a782006-05-11 23:55:42 +0000264 SU->isScheduled = true;
Dan Gohman1256f5f2008-11-18 21:22:20 +0000265 AvailableQueue->ScheduledNode(SU);
Evan Chenge165a782006-05-11 23:55:42 +0000266}
267
Evan Chenga6fb1b62007-09-25 01:54:36 +0000268/// CapturePred - This does the opposite of ReleasePred. Since SU is being
269/// unscheduled, incrcease the succ left count of its predecessors. Remove
270/// them from AvailableQueue if necessary.
Dan Gohman54e4c362008-12-09 22:54:47 +0000271void ScheduleDAGRRList::CapturePred(SDep *PredEdge) {
272 SUnit *PredSU = PredEdge->getSUnit();
Evan Chenga6fb1b62007-09-25 01:54:36 +0000273 if (PredSU->isAvailable) {
274 PredSU->isAvailable = false;
275 if (!PredSU->isPending)
276 AvailableQueue->remove(PredSU);
277 }
278
Evan Cheng74d2fd82007-09-28 19:24:24 +0000279 ++PredSU->NumSuccsLeft;
Evan Chenga6fb1b62007-09-25 01:54:36 +0000280}
281
282/// UnscheduleNodeBottomUp - Remove the node from the schedule, update its and
283/// its predecessor states to reflect the change.
284void ScheduleDAGRRList::UnscheduleNodeBottomUp(SUnit *SU) {
Dan Gohman3f237442008-12-16 03:25:46 +0000285 DOUT << "*** Unscheduling [" << SU->getHeight() << "]: ";
Dan Gohman3cc62432008-11-18 02:06:40 +0000286 DEBUG(SU->dump(this));
Evan Chenga6fb1b62007-09-25 01:54:36 +0000287
288 AvailableQueue->UnscheduledNode(SU);
289
290 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
291 I != E; ++I) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000292 CapturePred(&*I);
Dan Gohman3f237442008-12-16 03:25:46 +0000293 if (I->isAssignedRegDep() && SU->getHeight() == LiveRegCycles[I->getReg()]) {
Dan Gohman086ec992008-09-23 18:50:48 +0000294 assert(NumLiveRegs > 0 && "NumLiveRegs is already zero!");
Dan Gohman54e4c362008-12-09 22:54:47 +0000295 assert(LiveRegDefs[I->getReg()] == I->getSUnit() &&
Evan Chenga6fb1b62007-09-25 01:54:36 +0000296 "Physical register dependency violated?");
Dan Gohman086ec992008-09-23 18:50:48 +0000297 --NumLiveRegs;
Dan Gohman54e4c362008-12-09 22:54:47 +0000298 LiveRegDefs[I->getReg()] = NULL;
299 LiveRegCycles[I->getReg()] = 0;
Evan Chenga6fb1b62007-09-25 01:54:36 +0000300 }
301 }
302
303 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
304 I != E; ++I) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000305 if (I->isAssignedRegDep()) {
306 if (!LiveRegDefs[I->getReg()]) {
307 LiveRegDefs[I->getReg()] = SU;
Dan Gohman086ec992008-09-23 18:50:48 +0000308 ++NumLiveRegs;
Evan Chenga6fb1b62007-09-25 01:54:36 +0000309 }
Dan Gohman3f237442008-12-16 03:25:46 +0000310 if (I->getSUnit()->getHeight() < LiveRegCycles[I->getReg()])
311 LiveRegCycles[I->getReg()] = I->getSUnit()->getHeight();
Evan Chenga6fb1b62007-09-25 01:54:36 +0000312 }
313 }
314
Dan Gohman3f237442008-12-16 03:25:46 +0000315 SU->setHeightDirty();
Evan Chenga6fb1b62007-09-25 01:54:36 +0000316 SU->isScheduled = false;
317 SU->isAvailable = true;
318 AvailableQueue->push(SU);
319}
320
Evan Cheng42d60272007-09-26 21:36:17 +0000321/// BacktrackBottomUp - Backtrack scheduling to a previous cycle specified in
Dan Gohman1cc6b8e2009-01-29 19:49:27 +0000322/// BTCycle in order to schedule a specific node.
Evan Cheng42d60272007-09-26 21:36:17 +0000323void ScheduleDAGRRList::BacktrackBottomUp(SUnit *SU, unsigned BtCycle,
324 unsigned &CurCycle) {
Evan Chenga6fb1b62007-09-25 01:54:36 +0000325 SUnit *OldSU = NULL;
Evan Cheng42d60272007-09-26 21:36:17 +0000326 while (CurCycle > BtCycle) {
Evan Chenga6fb1b62007-09-25 01:54:36 +0000327 OldSU = Sequence.back();
328 Sequence.pop_back();
329 if (SU->isSucc(OldSU))
Evan Cheng42d60272007-09-26 21:36:17 +0000330 // Don't try to remove SU from AvailableQueue.
331 SU->isAvailable = false;
Evan Chenga6fb1b62007-09-25 01:54:36 +0000332 UnscheduleNodeBottomUp(OldSU);
333 --CurCycle;
334 }
335
Dan Gohman1cc6b8e2009-01-29 19:49:27 +0000336 assert(!SU->isSucc(OldSU) && "Something is wrong!");
Evan Chenga2ee2752007-09-27 07:09:03 +0000337
338 ++NumBacktracks;
Evan Chenga6fb1b62007-09-25 01:54:36 +0000339}
340
Evan Chenga6fb1b62007-09-25 01:54:36 +0000341/// CopyAndMoveSuccessors - Clone the specified node and move its scheduled
342/// successors to the newly created node.
343SUnit *ScheduleDAGRRList::CopyAndMoveSuccessors(SUnit *SU) {
Dan Gohmand23e0f82008-11-13 23:24:17 +0000344 if (SU->getNode()->getFlaggedNode())
Evan Chengf10c9732007-10-05 01:39:18 +0000345 return NULL;
Evan Cheng42d60272007-09-26 21:36:17 +0000346
Dan Gohman550f5af2008-11-13 21:36:12 +0000347 SDNode *N = SU->getNode();
Evan Chengf10c9732007-10-05 01:39:18 +0000348 if (!N)
349 return NULL;
350
351 SUnit *NewSU;
Evan Chengf10c9732007-10-05 01:39:18 +0000352 bool TryUnfold = false;
Evan Chengd5cb5a42007-10-05 01:42:35 +0000353 for (unsigned i = 0, e = N->getNumValues(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000354 MVT VT = N->getValueType(i);
Evan Chengd5cb5a42007-10-05 01:42:35 +0000355 if (VT == MVT::Flag)
356 return NULL;
357 else if (VT == MVT::Other)
358 TryUnfold = true;
359 }
Evan Chengf10c9732007-10-05 01:39:18 +0000360 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +0000361 const SDValue &Op = N->getOperand(i);
Gabor Greifba36cb52008-08-28 21:40:38 +0000362 MVT VT = Op.getNode()->getValueType(Op.getResNo());
Evan Chengf10c9732007-10-05 01:39:18 +0000363 if (VT == MVT::Flag)
364 return NULL;
Evan Chengf10c9732007-10-05 01:39:18 +0000365 }
366
367 if (TryUnfold) {
Dan Gohman4c8c8302008-06-21 15:52:51 +0000368 SmallVector<SDNode*, 2> NewNodes;
Dan Gohmana23b3b82008-11-13 21:21:28 +0000369 if (!TII->unfoldMemoryOperand(*DAG, N, NewNodes))
Evan Chengf10c9732007-10-05 01:39:18 +0000370 return NULL;
371
372 DOUT << "Unfolding SU # " << SU->NodeNum << "\n";
373 assert(NewNodes.size() == 2 && "Expected a load folding node!");
374
375 N = NewNodes[1];
376 SDNode *LoadNode = NewNodes[0];
Evan Chengf10c9732007-10-05 01:39:18 +0000377 unsigned NumVals = N->getNumValues();
Dan Gohman550f5af2008-11-13 21:36:12 +0000378 unsigned OldNumVals = SU->getNode()->getNumValues();
Evan Chengf10c9732007-10-05 01:39:18 +0000379 for (unsigned i = 0; i != NumVals; ++i)
Dan Gohman550f5af2008-11-13 21:36:12 +0000380 DAG->ReplaceAllUsesOfValueWith(SDValue(SU->getNode(), i), SDValue(N, i));
381 DAG->ReplaceAllUsesOfValueWith(SDValue(SU->getNode(), OldNumVals-1),
Dan Gohmana23b3b82008-11-13 21:21:28 +0000382 SDValue(LoadNode, 1));
Evan Chengf10c9732007-10-05 01:39:18 +0000383
Dan Gohmanb13af2f2008-11-11 21:34:44 +0000384 // LoadNode may already exist. This can happen when there is another
385 // load from the same location and producing the same type of value
386 // but it has different alignment or volatileness.
387 bool isNewLoad = true;
388 SUnit *LoadSU;
389 if (LoadNode->getNodeId() != -1) {
390 LoadSU = &SUnits[LoadNode->getNodeId()];
391 isNewLoad = false;
392 } else {
393 LoadSU = CreateNewSUnit(LoadNode);
394 LoadNode->setNodeId(LoadSU->NodeNum);
Dan Gohmanb13af2f2008-11-11 21:34:44 +0000395 ComputeLatency(LoadSU);
396 }
397
Roman Levensteine513ba42008-03-26 09:18:09 +0000398 SUnit *NewSU = CreateNewSUnit(N);
Dan Gohman94d7a5f2008-06-21 19:18:17 +0000399 assert(N->getNodeId() == -1 && "Node already inserted!");
400 N->setNodeId(NewSU->NodeNum);
Dan Gohman4c8c8302008-06-21 15:52:51 +0000401
Dan Gohmane8be6c62008-07-17 19:10:17 +0000402 const TargetInstrDesc &TID = TII->get(N->getMachineOpcode());
Dan Gohman94ebde12008-02-16 00:25:40 +0000403 for (unsigned i = 0; i != TID.getNumOperands(); ++i) {
Chris Lattner3db805e2008-01-07 06:47:00 +0000404 if (TID.getOperandConstraint(i, TOI::TIED_TO) != -1) {
Evan Chengf10c9732007-10-05 01:39:18 +0000405 NewSU->isTwoAddress = true;
406 break;
407 }
408 }
Chris Lattner3db805e2008-01-07 06:47:00 +0000409 if (TID.isCommutable())
Evan Chengf10c9732007-10-05 01:39:18 +0000410 NewSU->isCommutable = true;
Evan Chengf10c9732007-10-05 01:39:18 +0000411 ComputeLatency(NewSU);
412
Dan Gohmanfa9afef2009-03-23 20:20:43 +0000413 // Record all the edges to and from the old SU, by category.
Dan Gohman16e8eda2009-03-06 02:23:01 +0000414 SmallVector<SDep, 4> ChainPreds;
Evan Chengf10c9732007-10-05 01:39:18 +0000415 SmallVector<SDep, 4> ChainSuccs;
416 SmallVector<SDep, 4> LoadPreds;
417 SmallVector<SDep, 4> NodePreds;
418 SmallVector<SDep, 4> NodeSuccs;
419 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
420 I != E; ++I) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000421 if (I->isCtrl())
Dan Gohman16e8eda2009-03-06 02:23:01 +0000422 ChainPreds.push_back(*I);
Dan Gohman54e4c362008-12-09 22:54:47 +0000423 else if (I->getSUnit()->getNode() &&
424 I->getSUnit()->getNode()->isOperandOf(LoadNode))
425 LoadPreds.push_back(*I);
Evan Chengf10c9732007-10-05 01:39:18 +0000426 else
Dan Gohman54e4c362008-12-09 22:54:47 +0000427 NodePreds.push_back(*I);
Evan Chengf10c9732007-10-05 01:39:18 +0000428 }
429 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
430 I != E; ++I) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000431 if (I->isCtrl())
432 ChainSuccs.push_back(*I);
Evan Chengf10c9732007-10-05 01:39:18 +0000433 else
Dan Gohman54e4c362008-12-09 22:54:47 +0000434 NodeSuccs.push_back(*I);
Evan Chengf10c9732007-10-05 01:39:18 +0000435 }
436
Dan Gohmanfa9afef2009-03-23 20:20:43 +0000437 // Now assign edges to the newly-created nodes.
Dan Gohman16e8eda2009-03-06 02:23:01 +0000438 for (unsigned i = 0, e = ChainPreds.size(); i != e; ++i) {
439 const SDep &Pred = ChainPreds[i];
440 RemovePred(SU, Pred);
Dan Gohman80792f32008-04-15 01:22:18 +0000441 if (isNewLoad)
Dan Gohman16e8eda2009-03-06 02:23:01 +0000442 AddPred(LoadSU, Pred);
Roman Levensteine513ba42008-03-26 09:18:09 +0000443 }
Evan Chengf10c9732007-10-05 01:39:18 +0000444 for (unsigned i = 0, e = LoadPreds.size(); i != e; ++i) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000445 const SDep &Pred = LoadPreds[i];
446 RemovePred(SU, Pred);
Dan Gohman16e8eda2009-03-06 02:23:01 +0000447 if (isNewLoad)
Dan Gohman54e4c362008-12-09 22:54:47 +0000448 AddPred(LoadSU, Pred);
Evan Chengf10c9732007-10-05 01:39:18 +0000449 }
450 for (unsigned i = 0, e = NodePreds.size(); i != e; ++i) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000451 const SDep &Pred = NodePreds[i];
452 RemovePred(SU, Pred);
453 AddPred(NewSU, Pred);
Evan Chengf10c9732007-10-05 01:39:18 +0000454 }
455 for (unsigned i = 0, e = NodeSuccs.size(); i != e; ++i) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000456 SDep D = NodeSuccs[i];
457 SUnit *SuccDep = D.getSUnit();
458 D.setSUnit(SU);
459 RemovePred(SuccDep, D);
460 D.setSUnit(NewSU);
461 AddPred(SuccDep, D);
Evan Chengf10c9732007-10-05 01:39:18 +0000462 }
463 for (unsigned i = 0, e = ChainSuccs.size(); i != e; ++i) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000464 SDep D = ChainSuccs[i];
465 SUnit *SuccDep = D.getSUnit();
466 D.setSUnit(SU);
467 RemovePred(SuccDep, D);
Roman Levensteine513ba42008-03-26 09:18:09 +0000468 if (isNewLoad) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000469 D.setSUnit(LoadSU);
470 AddPred(SuccDep, D);
Roman Levensteine513ba42008-03-26 09:18:09 +0000471 }
Evan Chengf10c9732007-10-05 01:39:18 +0000472 }
Dan Gohmanfa9afef2009-03-23 20:20:43 +0000473
474 // Add a data dependency to reflect that NewSU reads the value defined
475 // by LoadSU.
476 AddPred(NewSU, SDep(LoadSU, SDep::Data, LoadSU->Latency));
Evan Chengf10c9732007-10-05 01:39:18 +0000477
Evan Chengbeec8232007-12-18 08:42:10 +0000478 if (isNewLoad)
479 AvailableQueue->addNode(LoadSU);
Evan Chengf10c9732007-10-05 01:39:18 +0000480 AvailableQueue->addNode(NewSU);
481
482 ++NumUnfolds;
483
484 if (NewSU->NumSuccsLeft == 0) {
485 NewSU->isAvailable = true;
486 return NewSU;
Evan Chengbeec8232007-12-18 08:42:10 +0000487 }
488 SU = NewSU;
Evan Chengf10c9732007-10-05 01:39:18 +0000489 }
490
491 DOUT << "Duplicating SU # " << SU->NodeNum << "\n";
Roman Levensteine513ba42008-03-26 09:18:09 +0000492 NewSU = CreateClone(SU);
Evan Chenga6fb1b62007-09-25 01:54:36 +0000493
494 // New SUnit has the exact same predecessors.
495 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
496 I != E; ++I)
Dan Gohman3f237442008-12-16 03:25:46 +0000497 if (!I->isArtificial())
Dan Gohman54e4c362008-12-09 22:54:47 +0000498 AddPred(NewSU, *I);
Evan Chenga6fb1b62007-09-25 01:54:36 +0000499
500 // Only copy scheduled successors. Cut them from old node's successor
501 // list and move them over.
Dan Gohman54e4c362008-12-09 22:54:47 +0000502 SmallVector<std::pair<SUnit *, SDep>, 4> DelDeps;
Evan Chenga6fb1b62007-09-25 01:54:36 +0000503 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
504 I != E; ++I) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000505 if (I->isArtificial())
Evan Chenga6fb1b62007-09-25 01:54:36 +0000506 continue;
Dan Gohman54e4c362008-12-09 22:54:47 +0000507 SUnit *SuccSU = I->getSUnit();
508 if (SuccSU->isScheduled) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000509 SDep D = *I;
510 D.setSUnit(NewSU);
511 AddPred(SuccSU, D);
512 D.setSUnit(SU);
513 DelDeps.push_back(std::make_pair(SuccSU, D));
Evan Chenga6fb1b62007-09-25 01:54:36 +0000514 }
515 }
Dan Gohman3f237442008-12-16 03:25:46 +0000516 for (unsigned i = 0, e = DelDeps.size(); i != e; ++i)
Dan Gohman54e4c362008-12-09 22:54:47 +0000517 RemovePred(DelDeps[i].first, DelDeps[i].second);
Evan Chenga6fb1b62007-09-25 01:54:36 +0000518
519 AvailableQueue->updateNode(SU);
520 AvailableQueue->addNode(NewSU);
521
Evan Chenga2ee2752007-09-27 07:09:03 +0000522 ++NumDups;
Evan Chenga6fb1b62007-09-25 01:54:36 +0000523 return NewSU;
524}
525
Evan Chengc29a56d2009-01-12 03:19:55 +0000526/// InsertCopiesAndMoveSuccs - Insert register copies and move all
527/// scheduled successors of the given SUnit to the last copy.
528void ScheduleDAGRRList::InsertCopiesAndMoveSuccs(SUnit *SU, unsigned Reg,
529 const TargetRegisterClass *DestRC,
530 const TargetRegisterClass *SrcRC,
Evan Chenga2ee2752007-09-27 07:09:03 +0000531 SmallVector<SUnit*, 2> &Copies) {
Roman Levensteine513ba42008-03-26 09:18:09 +0000532 SUnit *CopyFromSU = CreateNewSUnit(NULL);
Evan Cheng42d60272007-09-26 21:36:17 +0000533 CopyFromSU->CopySrcRC = SrcRC;
534 CopyFromSU->CopyDstRC = DestRC;
Evan Cheng42d60272007-09-26 21:36:17 +0000535
Roman Levensteine513ba42008-03-26 09:18:09 +0000536 SUnit *CopyToSU = CreateNewSUnit(NULL);
Evan Cheng42d60272007-09-26 21:36:17 +0000537 CopyToSU->CopySrcRC = DestRC;
538 CopyToSU->CopyDstRC = SrcRC;
539
540 // Only copy scheduled successors. Cut them from old node's successor
541 // list and move them over.
Dan Gohman54e4c362008-12-09 22:54:47 +0000542 SmallVector<std::pair<SUnit *, SDep>, 4> DelDeps;
Evan Cheng42d60272007-09-26 21:36:17 +0000543 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
544 I != E; ++I) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000545 if (I->isArtificial())
Evan Cheng42d60272007-09-26 21:36:17 +0000546 continue;
Dan Gohman54e4c362008-12-09 22:54:47 +0000547 SUnit *SuccSU = I->getSUnit();
548 if (SuccSU->isScheduled) {
549 SDep D = *I;
550 D.setSUnit(CopyToSU);
551 AddPred(SuccSU, D);
552 DelDeps.push_back(std::make_pair(SuccSU, *I));
Evan Cheng42d60272007-09-26 21:36:17 +0000553 }
554 }
Evan Chengc29a56d2009-01-12 03:19:55 +0000555 for (unsigned i = 0, e = DelDeps.size(); i != e; ++i)
Dan Gohman54e4c362008-12-09 22:54:47 +0000556 RemovePred(DelDeps[i].first, DelDeps[i].second);
Evan Cheng42d60272007-09-26 21:36:17 +0000557
Dan Gohman54e4c362008-12-09 22:54:47 +0000558 AddPred(CopyFromSU, SDep(SU, SDep::Data, SU->Latency, Reg));
559 AddPred(CopyToSU, SDep(CopyFromSU, SDep::Data, CopyFromSU->Latency, 0));
Evan Cheng42d60272007-09-26 21:36:17 +0000560
561 AvailableQueue->updateNode(SU);
562 AvailableQueue->addNode(CopyFromSU);
563 AvailableQueue->addNode(CopyToSU);
Evan Chenga2ee2752007-09-27 07:09:03 +0000564 Copies.push_back(CopyFromSU);
565 Copies.push_back(CopyToSU);
Evan Cheng42d60272007-09-26 21:36:17 +0000566
Evan Chengc29a56d2009-01-12 03:19:55 +0000567 ++NumPRCopies;
Evan Cheng42d60272007-09-26 21:36:17 +0000568}
569
570/// getPhysicalRegisterVT - Returns the ValueType of the physical register
571/// definition of the specified node.
572/// FIXME: Move to SelectionDAG?
Duncan Sands83ec4b62008-06-06 12:08:01 +0000573static MVT getPhysicalRegisterVT(SDNode *N, unsigned Reg,
574 const TargetInstrInfo *TII) {
Dan Gohmane8be6c62008-07-17 19:10:17 +0000575 const TargetInstrDesc &TID = TII->get(N->getMachineOpcode());
Evan Cheng42d60272007-09-26 21:36:17 +0000576 assert(TID.ImplicitDefs && "Physical reg def must be in implicit def list!");
Chris Lattner349c4952008-01-07 03:13:06 +0000577 unsigned NumRes = TID.getNumDefs();
578 for (const unsigned *ImpDef = TID.getImplicitDefs(); *ImpDef; ++ImpDef) {
Evan Cheng42d60272007-09-26 21:36:17 +0000579 if (Reg == *ImpDef)
580 break;
581 ++NumRes;
582 }
583 return N->getValueType(NumRes);
584}
585
Evan Cheng599a6a82009-03-04 01:41:49 +0000586/// CheckForLiveRegDef - Return true and update live register vector if the
587/// specified register def of the specified SUnit clobbers any "live" registers.
588static bool CheckForLiveRegDef(SUnit *SU, unsigned Reg,
589 std::vector<SUnit*> &LiveRegDefs,
590 SmallSet<unsigned, 4> &RegAdded,
591 SmallVector<unsigned, 4> &LRegs,
592 const TargetRegisterInfo *TRI) {
593 bool Added = false;
594 if (LiveRegDefs[Reg] && LiveRegDefs[Reg] != SU) {
595 if (RegAdded.insert(Reg)) {
596 LRegs.push_back(Reg);
597 Added = true;
598 }
599 }
600 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias)
601 if (LiveRegDefs[*Alias] && LiveRegDefs[*Alias] != SU) {
602 if (RegAdded.insert(*Alias)) {
603 LRegs.push_back(*Alias);
604 Added = true;
605 }
606 }
607 return Added;
608}
609
Evan Chenga6fb1b62007-09-25 01:54:36 +0000610/// DelayForLiveRegsBottomUp - Returns true if it is necessary to delay
611/// scheduling of the given node to satisfy live physical register dependencies.
612/// If the specific node is the last one that's available to schedule, do
613/// whatever is necessary (i.e. backtracking or cloning) to make it possible.
Evan Chenga2ee2752007-09-27 07:09:03 +0000614bool ScheduleDAGRRList::DelayForLiveRegsBottomUp(SUnit *SU,
615 SmallVector<unsigned, 4> &LRegs){
Dan Gohman086ec992008-09-23 18:50:48 +0000616 if (NumLiveRegs == 0)
Evan Chenga6fb1b62007-09-25 01:54:36 +0000617 return false;
618
Evan Chengcd1c00c2007-09-27 18:46:06 +0000619 SmallSet<unsigned, 4> RegAdded;
Evan Chenga6fb1b62007-09-25 01:54:36 +0000620 // If this node would clobber any "live" register, then it's not ready.
Evan Chenga6fb1b62007-09-25 01:54:36 +0000621 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
622 I != E; ++I) {
Evan Cheng599a6a82009-03-04 01:41:49 +0000623 if (I->isAssignedRegDep())
624 CheckForLiveRegDef(I->getSUnit(), I->getReg(), LiveRegDefs,
625 RegAdded, LRegs, TRI);
Evan Chenga6fb1b62007-09-25 01:54:36 +0000626 }
627
Dan Gohmand23e0f82008-11-13 23:24:17 +0000628 for (SDNode *Node = SU->getNode(); Node; Node = Node->getFlaggedNode()) {
Evan Cheng599a6a82009-03-04 01:41:49 +0000629 if (Node->getOpcode() == ISD::INLINEASM) {
630 // Inline asm can clobber physical defs.
631 unsigned NumOps = Node->getNumOperands();
632 if (Node->getOperand(NumOps-1).getValueType() == MVT::Flag)
633 --NumOps; // Ignore the flag operand.
634
635 for (unsigned i = 2; i != NumOps;) {
636 unsigned Flags =
637 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +0000638 unsigned NumVals = (Flags & 0xffff) >> 3;
Evan Cheng599a6a82009-03-04 01:41:49 +0000639
640 ++i; // Skip the ID value.
641 if ((Flags & 7) == 2 || (Flags & 7) == 6) {
642 // Check for def of register or earlyclobber register.
643 for (; NumVals; --NumVals, ++i) {
644 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
645 if (TargetRegisterInfo::isPhysicalRegister(Reg))
646 CheckForLiveRegDef(SU, Reg, LiveRegDefs, RegAdded, LRegs, TRI);
647 }
648 } else
649 i += NumVals;
650 }
651 continue;
652 }
653
Dan Gohmand23e0f82008-11-13 23:24:17 +0000654 if (!Node->isMachineOpcode())
Evan Chenga6fb1b62007-09-25 01:54:36 +0000655 continue;
Dan Gohmane8be6c62008-07-17 19:10:17 +0000656 const TargetInstrDesc &TID = TII->get(Node->getMachineOpcode());
Evan Chenga6fb1b62007-09-25 01:54:36 +0000657 if (!TID.ImplicitDefs)
658 continue;
Evan Cheng599a6a82009-03-04 01:41:49 +0000659 for (const unsigned *Reg = TID.ImplicitDefs; *Reg; ++Reg)
660 CheckForLiveRegDef(SU, *Reg, LiveRegDefs, RegAdded, LRegs, TRI);
Evan Chenga6fb1b62007-09-25 01:54:36 +0000661 }
Evan Chenga6fb1b62007-09-25 01:54:36 +0000662 return !LRegs.empty();
Evan Chenge165a782006-05-11 23:55:42 +0000663}
664
Evan Chenga2ee2752007-09-27 07:09:03 +0000665
Evan Chenge165a782006-05-11 23:55:42 +0000666/// ListScheduleBottomUp - The main loop of list scheduling for bottom-up
667/// schedulers.
668void ScheduleDAGRRList::ListScheduleBottomUp() {
669 unsigned CurCycle = 0;
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000670
671 // Release any predecessors of the special Exit node.
672 ReleasePredecessors(&ExitSU, CurCycle);
673
Evan Chenge165a782006-05-11 23:55:42 +0000674 // Add root to Available queue.
Dan Gohman80792f32008-04-15 01:22:18 +0000675 if (!SUnits.empty()) {
Dan Gohmana23b3b82008-11-13 21:21:28 +0000676 SUnit *RootSU = &SUnits[DAG->getRoot().getNode()->getNodeId()];
Dan Gohman80792f32008-04-15 01:22:18 +0000677 assert(RootSU->Succs.empty() && "Graph root shouldn't have successors!");
678 RootSU->isAvailable = true;
679 AvailableQueue->push(RootSU);
680 }
Evan Chenge165a782006-05-11 23:55:42 +0000681
682 // While Available queue is not empty, grab the node with the highest
Dan Gohman8d1bfad2007-08-20 19:28:38 +0000683 // priority. If it is not ready put it back. Schedule the node.
Evan Chenga6fb1b62007-09-25 01:54:36 +0000684 SmallVector<SUnit*, 4> NotReady;
Dan Gohman8cb82452008-06-23 21:15:00 +0000685 DenseMap<SUnit*, SmallVector<unsigned, 4> > LRegsMap;
Dan Gohman4c8c8302008-06-21 15:52:51 +0000686 Sequence.reserve(SUnits.size());
Evan Chenge165a782006-05-11 23:55:42 +0000687 while (!AvailableQueue->empty()) {
Evan Chenga2ee2752007-09-27 07:09:03 +0000688 bool Delayed = false;
Dan Gohman8cb82452008-06-23 21:15:00 +0000689 LRegsMap.clear();
Evan Chenga6fb1b62007-09-25 01:54:36 +0000690 SUnit *CurSU = AvailableQueue->pop();
691 while (CurSU) {
Dan Gohmanf209c2c2008-11-21 01:30:54 +0000692 SmallVector<unsigned, 4> LRegs;
693 if (!DelayForLiveRegsBottomUp(CurSU, LRegs))
694 break;
695 Delayed = true;
696 LRegsMap.insert(std::make_pair(CurSU, LRegs));
Evan Chenga2ee2752007-09-27 07:09:03 +0000697
698 CurSU->isPending = true; // This SU is not in AvailableQueue right now.
699 NotReady.push_back(CurSU);
Evan Chenga6fb1b62007-09-25 01:54:36 +0000700 CurSU = AvailableQueue->pop();
Evan Chenge165a782006-05-11 23:55:42 +0000701 }
Evan Chenga2ee2752007-09-27 07:09:03 +0000702
703 // All candidates are delayed due to live physical reg dependencies.
704 // Try backtracking, code duplication, or inserting cross class copies
705 // to resolve it.
706 if (Delayed && !CurSU) {
707 for (unsigned i = 0, e = NotReady.size(); i != e; ++i) {
708 SUnit *TrySU = NotReady[i];
709 SmallVector<unsigned, 4> &LRegs = LRegsMap[TrySU];
710
711 // Try unscheduling up to the point where it's safe to schedule
712 // this node.
713 unsigned LiveCycle = CurCycle;
714 for (unsigned j = 0, ee = LRegs.size(); j != ee; ++j) {
715 unsigned Reg = LRegs[j];
716 unsigned LCycle = LiveRegCycles[Reg];
717 LiveCycle = std::min(LiveCycle, LCycle);
718 }
719 SUnit *OldSU = Sequence[LiveCycle];
720 if (!WillCreateCycle(TrySU, OldSU)) {
721 BacktrackBottomUp(TrySU, LiveCycle, CurCycle);
722 // Force the current node to be scheduled before the node that
723 // requires the physical reg dep.
724 if (OldSU->isAvailable) {
725 OldSU->isAvailable = false;
726 AvailableQueue->remove(OldSU);
727 }
Dan Gohman54e4c362008-12-09 22:54:47 +0000728 AddPred(TrySU, SDep(OldSU, SDep::Order, /*Latency=*/1,
729 /*Reg=*/0, /*isNormalMemory=*/false,
730 /*isMustAlias=*/false, /*isArtificial=*/true));
Evan Chenga2ee2752007-09-27 07:09:03 +0000731 // If one or more successors has been unscheduled, then the current
732 // node is no longer avaialable. Schedule a successor that's now
733 // available instead.
734 if (!TrySU->isAvailable)
735 CurSU = AvailableQueue->pop();
736 else {
737 CurSU = TrySU;
738 TrySU->isPending = false;
739 NotReady.erase(NotReady.begin()+i);
740 }
741 break;
742 }
743 }
744
745 if (!CurSU) {
Evan Chengc29a56d2009-01-12 03:19:55 +0000746 // Can't backtrack. If it's too expensive to copy the value, then try
747 // duplicate the nodes that produces these "too expensive to copy"
748 // values to break the dependency. In case even that doesn't work,
749 // insert cross class copies.
750 // If it's not too expensive, i.e. cost != -1, issue copies.
Evan Chenga2ee2752007-09-27 07:09:03 +0000751 SUnit *TrySU = NotReady[0];
752 SmallVector<unsigned, 4> &LRegs = LRegsMap[TrySU];
753 assert(LRegs.size() == 1 && "Can't handle this yet!");
754 unsigned Reg = LRegs[0];
755 SUnit *LRDef = LiveRegDefs[Reg];
Evan Chengc29a56d2009-01-12 03:19:55 +0000756 MVT VT = getPhysicalRegisterVT(LRDef->getNode(), Reg, TII);
757 const TargetRegisterClass *RC =
758 TRI->getPhysicalRegisterRegClass(Reg, VT);
759 const TargetRegisterClass *DestRC = TRI->getCrossCopyRegClass(RC);
760
761 // If cross copy register class is null, then it must be possible copy
762 // the value directly. Do not try duplicate the def.
763 SUnit *NewDef = 0;
764 if (DestRC)
765 NewDef = CopyAndMoveSuccessors(LRDef);
766 else
767 DestRC = RC;
Evan Chengf10c9732007-10-05 01:39:18 +0000768 if (!NewDef) {
Evan Chengc29a56d2009-01-12 03:19:55 +0000769 // Issue copies, these can be expensive cross register class copies.
Evan Chenga2ee2752007-09-27 07:09:03 +0000770 SmallVector<SUnit*, 2> Copies;
Evan Chengc29a56d2009-01-12 03:19:55 +0000771 InsertCopiesAndMoveSuccs(LRDef, Reg, DestRC, RC, Copies);
Evan Cheng84036a72009-01-09 20:42:34 +0000772 DOUT << "Adding an edge from SU #" << TrySU->NodeNum
Evan Chenga2ee2752007-09-27 07:09:03 +0000773 << " to SU #" << Copies.front()->NodeNum << "\n";
Dan Gohman54e4c362008-12-09 22:54:47 +0000774 AddPred(TrySU, SDep(Copies.front(), SDep::Order, /*Latency=*/1,
Dan Gohmance0d4b72009-01-06 01:28:56 +0000775 /*Reg=*/0, /*isNormalMemory=*/false,
776 /*isMustAlias=*/false,
Dan Gohman54e4c362008-12-09 22:54:47 +0000777 /*isArtificial=*/true));
Evan Chenga2ee2752007-09-27 07:09:03 +0000778 NewDef = Copies.back();
779 }
780
Evan Cheng84036a72009-01-09 20:42:34 +0000781 DOUT << "Adding an edge from SU #" << NewDef->NodeNum
Evan Chenga2ee2752007-09-27 07:09:03 +0000782 << " to SU #" << TrySU->NodeNum << "\n";
783 LiveRegDefs[Reg] = NewDef;
Dan Gohman54e4c362008-12-09 22:54:47 +0000784 AddPred(NewDef, SDep(TrySU, SDep::Order, /*Latency=*/1,
Dan Gohmance0d4b72009-01-06 01:28:56 +0000785 /*Reg=*/0, /*isNormalMemory=*/false,
786 /*isMustAlias=*/false,
Dan Gohman54e4c362008-12-09 22:54:47 +0000787 /*isArtificial=*/true));
Evan Chenga2ee2752007-09-27 07:09:03 +0000788 TrySU->isAvailable = false;
789 CurSU = NewDef;
790 }
791
Dan Gohman1cc6b8e2009-01-29 19:49:27 +0000792 assert(CurSU && "Unable to resolve live physical register dependencies!");
Evan Chenga2ee2752007-09-27 07:09:03 +0000793 }
794
Evan Chenge165a782006-05-11 23:55:42 +0000795 // Add the nodes that aren't ready back onto the available list.
Evan Chenga6fb1b62007-09-25 01:54:36 +0000796 for (unsigned i = 0, e = NotReady.size(); i != e; ++i) {
797 NotReady[i]->isPending = false;
Evan Chenga2ee2752007-09-27 07:09:03 +0000798 // May no longer be available due to backtracking.
Evan Chenga6fb1b62007-09-25 01:54:36 +0000799 if (NotReady[i]->isAvailable)
800 AvailableQueue->push(NotReady[i]);
801 }
Evan Chenge165a782006-05-11 23:55:42 +0000802 NotReady.clear();
803
Dan Gohman47d1a212008-11-21 00:10:42 +0000804 if (CurSU)
Evan Chenga6fb1b62007-09-25 01:54:36 +0000805 ScheduleNodeBottomUp(CurSU, CurCycle);
Evan Chenga6fb1b62007-09-25 01:54:36 +0000806 ++CurCycle;
Evan Chenge165a782006-05-11 23:55:42 +0000807 }
808
Evan Chenge165a782006-05-11 23:55:42 +0000809 // Reverse the order if it is bottom up.
810 std::reverse(Sequence.begin(), Sequence.end());
811
Evan Chenge165a782006-05-11 23:55:42 +0000812#ifndef NDEBUG
Dan Gohmana1e6d362008-11-20 01:26:25 +0000813 VerifySchedule(isBottomUp);
Evan Chenge165a782006-05-11 23:55:42 +0000814#endif
815}
816
817//===----------------------------------------------------------------------===//
818// Top-Down Scheduling
819//===----------------------------------------------------------------------===//
820
821/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. Add it to
Dan Gohman8d1bfad2007-08-20 19:28:38 +0000822/// the AvailableQueue if the count reaches zero. Also update its cycle bound.
Dan Gohman1cc6b8e2009-01-29 19:49:27 +0000823void ScheduleDAGRRList::ReleaseSucc(SUnit *SU, const SDep *SuccEdge) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000824 SUnit *SuccSU = SuccEdge->getSUnit();
Evan Cheng74d2fd82007-09-28 19:24:24 +0000825 --SuccSU->NumPredsLeft;
Evan Chenge165a782006-05-11 23:55:42 +0000826
827#ifndef NDEBUG
Evan Cheng74d2fd82007-09-28 19:24:24 +0000828 if (SuccSU->NumPredsLeft < 0) {
Dan Gohman2d093f32008-11-18 00:38:59 +0000829 cerr << "*** Scheduling failed! ***\n";
Dan Gohman3cc62432008-11-18 02:06:40 +0000830 SuccSU->dump(this);
Bill Wendling832171c2006-12-07 20:04:42 +0000831 cerr << " has been released too many times!\n";
Evan Chenge165a782006-05-11 23:55:42 +0000832 assert(0);
833 }
834#endif
835
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000836 // If all the node's predecessors are scheduled, this node is ready
837 // to be scheduled. Ignore the special ExitSU node.
838 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU) {
Evan Chenge165a782006-05-11 23:55:42 +0000839 SuccSU->isAvailable = true;
840 AvailableQueue->push(SuccSU);
841 }
842}
843
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000844void ScheduleDAGRRList::ReleaseSuccessors(SUnit *SU) {
845 // Top down: release successors
846 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
847 I != E; ++I) {
848 assert(!I->isAssignedRegDep() &&
849 "The list-tdrr scheduler doesn't yet support physreg dependencies!");
850
851 ReleaseSucc(SU, &*I);
852 }
853}
854
Evan Chenge165a782006-05-11 23:55:42 +0000855/// ScheduleNodeTopDown - Add the node to the schedule. Decrement the pending
856/// count of its successors. If a successor pending count is zero, add it to
857/// the Available queue.
Evan Cheng6b8e5a92006-05-30 18:05:39 +0000858void ScheduleDAGRRList::ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle) {
Bill Wendling832171c2006-12-07 20:04:42 +0000859 DOUT << "*** Scheduling [" << CurCycle << "]: ";
Dan Gohman3cc62432008-11-18 02:06:40 +0000860 DEBUG(SU->dump(this));
Evan Chenge165a782006-05-11 23:55:42 +0000861
Dan Gohman3f237442008-12-16 03:25:46 +0000862 assert(CurCycle >= SU->getDepth() && "Node scheduled above its depth!");
863 SU->setDepthToAtLeast(CurCycle);
Dan Gohman81234192008-11-17 21:31:02 +0000864 Sequence.push_back(SU);
Evan Chenge165a782006-05-11 23:55:42 +0000865
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000866 ReleaseSuccessors(SU);
Evan Chenge165a782006-05-11 23:55:42 +0000867 SU->isScheduled = true;
Dan Gohman81234192008-11-17 21:31:02 +0000868 AvailableQueue->ScheduledNode(SU);
Evan Chenge165a782006-05-11 23:55:42 +0000869}
870
Dan Gohman8d1bfad2007-08-20 19:28:38 +0000871/// ListScheduleTopDown - The main loop of list scheduling for top-down
872/// schedulers.
Evan Chenge165a782006-05-11 23:55:42 +0000873void ScheduleDAGRRList::ListScheduleTopDown() {
874 unsigned CurCycle = 0;
Evan Chenge165a782006-05-11 23:55:42 +0000875
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000876 // Release any successors of the special Entry node.
877 ReleaseSuccessors(&EntrySU);
878
Evan Chenge165a782006-05-11 23:55:42 +0000879 // All leaves to Available queue.
880 for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
881 // It is available if it has no predecessors.
Dan Gohman80792f32008-04-15 01:22:18 +0000882 if (SUnits[i].Preds.empty()) {
Evan Chenge165a782006-05-11 23:55:42 +0000883 AvailableQueue->push(&SUnits[i]);
884 SUnits[i].isAvailable = true;
885 }
886 }
887
Evan Chenge165a782006-05-11 23:55:42 +0000888 // While Available queue is not empty, grab the node with the highest
Dan Gohman8d1bfad2007-08-20 19:28:38 +0000889 // priority. If it is not ready put it back. Schedule the node.
Dan Gohman4c8c8302008-06-21 15:52:51 +0000890 Sequence.reserve(SUnits.size());
Evan Chenge165a782006-05-11 23:55:42 +0000891 while (!AvailableQueue->empty()) {
Evan Chenga6fb1b62007-09-25 01:54:36 +0000892 SUnit *CurSU = AvailableQueue->pop();
Evan Chenge165a782006-05-11 23:55:42 +0000893
Dan Gohman47d1a212008-11-21 00:10:42 +0000894 if (CurSU)
Evan Chenga6fb1b62007-09-25 01:54:36 +0000895 ScheduleNodeTopDown(CurSU, CurCycle);
Dan Gohman80792f32008-04-15 01:22:18 +0000896 ++CurCycle;
Evan Chenge165a782006-05-11 23:55:42 +0000897 }
898
Evan Chenge165a782006-05-11 23:55:42 +0000899#ifndef NDEBUG
Dan Gohmana1e6d362008-11-20 01:26:25 +0000900 VerifySchedule(isBottomUp);
Evan Chenge165a782006-05-11 23:55:42 +0000901#endif
902}
903
904
Evan Chenge165a782006-05-11 23:55:42 +0000905//===----------------------------------------------------------------------===//
906// RegReductionPriorityQueue Implementation
907//===----------------------------------------------------------------------===//
908//
909// This is a SchedulingPriorityQueue that schedules using Sethi Ullman numbers
910// to reduce register pressure.
911//
912namespace {
913 template<class SF>
914 class RegReductionPriorityQueue;
915
916 /// Sorting functions for the Available queue.
917 struct bu_ls_rr_sort : public std::binary_function<SUnit*, SUnit*, bool> {
918 RegReductionPriorityQueue<bu_ls_rr_sort> *SPQ;
919 bu_ls_rr_sort(RegReductionPriorityQueue<bu_ls_rr_sort> *spq) : SPQ(spq) {}
920 bu_ls_rr_sort(const bu_ls_rr_sort &RHS) : SPQ(RHS.SPQ) {}
921
922 bool operator()(const SUnit* left, const SUnit* right) const;
923 };
924
925 struct td_ls_rr_sort : public std::binary_function<SUnit*, SUnit*, bool> {
926 RegReductionPriorityQueue<td_ls_rr_sort> *SPQ;
927 td_ls_rr_sort(RegReductionPriorityQueue<td_ls_rr_sort> *spq) : SPQ(spq) {}
928 td_ls_rr_sort(const td_ls_rr_sort &RHS) : SPQ(RHS.SPQ) {}
929
930 bool operator()(const SUnit* left, const SUnit* right) const;
931 };
932} // end anonymous namespace
933
Dan Gohman117f3e92008-11-20 03:30:37 +0000934/// CalcNodeSethiUllmanNumber - Compute Sethi Ullman number.
935/// Smaller number is the higher priority.
Evan Chengc6be7772008-07-02 09:23:51 +0000936static unsigned
Dan Gohman117f3e92008-11-20 03:30:37 +0000937CalcNodeSethiUllmanNumber(const SUnit *SU, std::vector<unsigned> &SUNumbers) {
Evan Chengc6be7772008-07-02 09:23:51 +0000938 unsigned &SethiUllmanNumber = SUNumbers[SU->NodeNum];
939 if (SethiUllmanNumber != 0)
940 return SethiUllmanNumber;
941
942 unsigned Extra = 0;
943 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
944 I != E; ++I) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000945 if (I->isCtrl()) continue; // ignore chain preds
946 SUnit *PredSU = I->getSUnit();
Dan Gohman117f3e92008-11-20 03:30:37 +0000947 unsigned PredSethiUllman = CalcNodeSethiUllmanNumber(PredSU, SUNumbers);
Evan Chengc6be7772008-07-02 09:23:51 +0000948 if (PredSethiUllman > SethiUllmanNumber) {
949 SethiUllmanNumber = PredSethiUllman;
950 Extra = 0;
Evan Cheng81823472009-02-12 08:59:45 +0000951 } else if (PredSethiUllman == SethiUllmanNumber)
Evan Chengc6be7772008-07-02 09:23:51 +0000952 ++Extra;
953 }
954
955 SethiUllmanNumber += Extra;
956
957 if (SethiUllmanNumber == 0)
958 SethiUllmanNumber = 1;
959
960 return SethiUllmanNumber;
961}
962
Evan Chenge165a782006-05-11 23:55:42 +0000963namespace {
964 template<class SF>
Chris Lattner95255282006-06-28 23:17:24 +0000965 class VISIBILITY_HIDDEN RegReductionPriorityQueue
966 : public SchedulingPriorityQueue {
Dan Gohman3627e342008-06-21 18:35:25 +0000967 PriorityQueue<SUnit*, std::vector<SUnit*>, SF> Queue;
Roman Levensteina0201d52008-04-29 09:07:59 +0000968 unsigned currentQueueId;
Evan Chenge165a782006-05-11 23:55:42 +0000969
Dan Gohman6be2ee42008-11-20 02:45:51 +0000970 protected:
971 // SUnits - The SUnits for the current graph.
972 std::vector<SUnit> *SUnits;
Evan Chenge165a782006-05-11 23:55:42 +0000973
Dan Gohman6be2ee42008-11-20 02:45:51 +0000974 const TargetInstrInfo *TII;
975 const TargetRegisterInfo *TRI;
976 ScheduleDAGRRList *scheduleDAG;
977
Dan Gohman117f3e92008-11-20 03:30:37 +0000978 // SethiUllmanNumbers - The SethiUllman number for each node.
979 std::vector<unsigned> SethiUllmanNumbers;
980
Dan Gohman6be2ee42008-11-20 02:45:51 +0000981 public:
982 RegReductionPriorityQueue(const TargetInstrInfo *tii,
983 const TargetRegisterInfo *tri) :
984 Queue(SF(this)), currentQueueId(0),
985 TII(tii), TRI(tri), scheduleDAG(NULL) {}
986
987 void initNodes(std::vector<SUnit> &sunits) {
988 SUnits = &sunits;
Dan Gohman117f3e92008-11-20 03:30:37 +0000989 // Add pseudo dependency edges for two-address nodes.
990 AddPseudoTwoAddrDeps();
Dan Gohman002b44f2009-03-24 00:49:12 +0000991 // Reroute edges to nodes with multiple uses.
992 PrescheduleNodesWithMultipleUses();
Dan Gohman117f3e92008-11-20 03:30:37 +0000993 // Calculate node priorities.
994 CalculateSethiUllmanNumbers();
Dan Gohman6be2ee42008-11-20 02:45:51 +0000995 }
Evan Chenga6fb1b62007-09-25 01:54:36 +0000996
Dan Gohman117f3e92008-11-20 03:30:37 +0000997 void addNode(const SUnit *SU) {
998 unsigned SUSize = SethiUllmanNumbers.size();
999 if (SUnits->size() > SUSize)
1000 SethiUllmanNumbers.resize(SUSize*2, 0);
1001 CalcNodeSethiUllmanNumber(SU, SethiUllmanNumbers);
1002 }
Evan Chenga6fb1b62007-09-25 01:54:36 +00001003
Dan Gohman117f3e92008-11-20 03:30:37 +00001004 void updateNode(const SUnit *SU) {
1005 SethiUllmanNumbers[SU->NodeNum] = 0;
1006 CalcNodeSethiUllmanNumber(SU, SethiUllmanNumbers);
1007 }
Evan Chenga6fb1b62007-09-25 01:54:36 +00001008
Dan Gohman117f3e92008-11-20 03:30:37 +00001009 void releaseState() {
Dan Gohman6be2ee42008-11-20 02:45:51 +00001010 SUnits = 0;
Dan Gohman117f3e92008-11-20 03:30:37 +00001011 SethiUllmanNumbers.clear();
Dan Gohman6be2ee42008-11-20 02:45:51 +00001012 }
Dan Gohman117f3e92008-11-20 03:30:37 +00001013
1014 unsigned getNodePriority(const SUnit *SU) const {
1015 assert(SU->NodeNum < SethiUllmanNumbers.size());
1016 unsigned Opc = SU->getNode() ? SU->getNode()->getOpcode() : 0;
Dan Gohman25fd4032009-01-07 22:30:55 +00001017 if (Opc == ISD::TokenFactor || Opc == ISD::CopyToReg)
Dan Gohman117f3e92008-11-20 03:30:37 +00001018 // CopyToReg should be close to its uses to facilitate coalescing and
1019 // avoid spilling.
1020 return 0;
Dan Gohman25fd4032009-01-07 22:30:55 +00001021 if (Opc == TargetInstrInfo::EXTRACT_SUBREG ||
Dan Gohman8af808a2009-04-16 20:57:10 +00001022 Opc == TargetInstrInfo::SUBREG_TO_REG ||
Dan Gohman25fd4032009-01-07 22:30:55 +00001023 Opc == TargetInstrInfo::INSERT_SUBREG)
Dan Gohman8af808a2009-04-16 20:57:10 +00001024 // EXTRACT_SUBREG, INSERT_SUBREG, and SUBREG_TO_REG nodes should be
1025 // close to their uses to facilitate coalescing.
Dan Gohman117f3e92008-11-20 03:30:37 +00001026 return 0;
Dan Gohmanc8db34c2009-02-11 21:29:39 +00001027 if (SU->NumSuccs == 0 && SU->NumPreds != 0)
1028 // If SU does not have a register use, i.e. it doesn't produce a value
1029 // that would be consumed (e.g. store), then it terminates a chain of
1030 // computation. Give it a large SethiUllman number so it will be
1031 // scheduled right before its predecessors that it doesn't lengthen
1032 // their live ranges.
Dan Gohman117f3e92008-11-20 03:30:37 +00001033 return 0xffff;
Dan Gohmanc8db34c2009-02-11 21:29:39 +00001034 if (SU->NumPreds == 0 && SU->NumSuccs != 0)
1035 // If SU does not have a register def, schedule it close to its uses
1036 // because it does not lengthen any live ranges.
Dan Gohman117f3e92008-11-20 03:30:37 +00001037 return 0;
Dan Gohman25fd4032009-01-07 22:30:55 +00001038 return SethiUllmanNumbers[SU->NodeNum];
Dan Gohman117f3e92008-11-20 03:30:37 +00001039 }
Evan Chenge165a782006-05-11 23:55:42 +00001040
Evan Chenga6fb1b62007-09-25 01:54:36 +00001041 unsigned size() const { return Queue.size(); }
1042
Evan Chenge165a782006-05-11 23:55:42 +00001043 bool empty() const { return Queue.empty(); }
1044
1045 void push(SUnit *U) {
Roman Levensteina0201d52008-04-29 09:07:59 +00001046 assert(!U->NodeQueueId && "Node in the queue already");
1047 U->NodeQueueId = ++currentQueueId;
Dan Gohman3627e342008-06-21 18:35:25 +00001048 Queue.push(U);
Evan Chenge165a782006-05-11 23:55:42 +00001049 }
Roman Levensteina0201d52008-04-29 09:07:59 +00001050
Evan Chenge165a782006-05-11 23:55:42 +00001051 void push_all(const std::vector<SUnit *> &Nodes) {
1052 for (unsigned i = 0, e = Nodes.size(); i != e; ++i)
Roman Levensteina0201d52008-04-29 09:07:59 +00001053 push(Nodes[i]);
Evan Chenge165a782006-05-11 23:55:42 +00001054 }
1055
1056 SUnit *pop() {
Evan Cheng6b8e5a92006-05-30 18:05:39 +00001057 if (empty()) return NULL;
Dan Gohman3627e342008-06-21 18:35:25 +00001058 SUnit *V = Queue.top();
1059 Queue.pop();
Roman Levensteina0201d52008-04-29 09:07:59 +00001060 V->NodeQueueId = 0;
Evan Chenge165a782006-05-11 23:55:42 +00001061 return V;
1062 }
Evan Cheng95f6ede2006-11-04 09:44:31 +00001063
Evan Chenga6fb1b62007-09-25 01:54:36 +00001064 void remove(SUnit *SU) {
Roman Levensteina0201d52008-04-29 09:07:59 +00001065 assert(!Queue.empty() && "Queue is empty!");
Dan Gohman3627e342008-06-21 18:35:25 +00001066 assert(SU->NodeQueueId != 0 && "Not in queue!");
1067 Queue.erase_one(SU);
Roman Levensteina0201d52008-04-29 09:07:59 +00001068 SU->NodeQueueId = 0;
Evan Cheng95f6ede2006-11-04 09:44:31 +00001069 }
Dan Gohman6be2ee42008-11-20 02:45:51 +00001070
1071 void setScheduleDAG(ScheduleDAGRRList *scheduleDag) {
1072 scheduleDAG = scheduleDag;
1073 }
1074
1075 protected:
1076 bool canClobber(const SUnit *SU, const SUnit *Op);
1077 void AddPseudoTwoAddrDeps();
Dan Gohman002b44f2009-03-24 00:49:12 +00001078 void PrescheduleNodesWithMultipleUses();
Evan Chengc8edc642007-01-08 23:55:53 +00001079 void CalculateSethiUllmanNumbers();
Evan Chengc6be7772008-07-02 09:23:51 +00001080 };
1081
Dan Gohman117f3e92008-11-20 03:30:37 +00001082 typedef RegReductionPriorityQueue<bu_ls_rr_sort>
1083 BURegReductionPriorityQueue;
Evan Chengc6be7772008-07-02 09:23:51 +00001084
Dan Gohman117f3e92008-11-20 03:30:37 +00001085 typedef RegReductionPriorityQueue<td_ls_rr_sort>
1086 TDRegReductionPriorityQueue;
Evan Chenge165a782006-05-11 23:55:42 +00001087}
1088
Evan Chengc6deb3d2007-03-14 22:43:40 +00001089/// closestSucc - Returns the scheduled cycle of the successor which is
Dan Gohmanb398fca2009-03-12 23:55:10 +00001090/// closest to the current cycle.
Evan Cheng61230d12007-03-13 23:25:11 +00001091static unsigned closestSucc(const SUnit *SU) {
Dan Gohman3f237442008-12-16 03:25:46 +00001092 unsigned MaxHeight = 0;
Evan Cheng61230d12007-03-13 23:25:11 +00001093 for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
Evan Chengc6deb3d2007-03-14 22:43:40 +00001094 I != E; ++I) {
Evan Chengf0e366a2009-02-10 08:30:11 +00001095 if (I->isCtrl()) continue; // ignore chain succs
Dan Gohman3f237442008-12-16 03:25:46 +00001096 unsigned Height = I->getSUnit()->getHeight();
Evan Chengc6deb3d2007-03-14 22:43:40 +00001097 // If there are bunch of CopyToRegs stacked up, they should be considered
1098 // to be at the same position.
Dan Gohman54e4c362008-12-09 22:54:47 +00001099 if (I->getSUnit()->getNode() &&
1100 I->getSUnit()->getNode()->getOpcode() == ISD::CopyToReg)
Dan Gohman3f237442008-12-16 03:25:46 +00001101 Height = closestSucc(I->getSUnit())+1;
1102 if (Height > MaxHeight)
1103 MaxHeight = Height;
Evan Chengc6deb3d2007-03-14 22:43:40 +00001104 }
Dan Gohman3f237442008-12-16 03:25:46 +00001105 return MaxHeight;
Evan Cheng61230d12007-03-13 23:25:11 +00001106}
1107
Evan Chengd6c07582007-12-20 02:22:36 +00001108/// calcMaxScratches - Returns an cost estimate of the worse case requirement
Evan Cheng81823472009-02-12 08:59:45 +00001109/// for scratch registers, i.e. number of data dependencies.
Evan Chengd6c07582007-12-20 02:22:36 +00001110static unsigned calcMaxScratches(const SUnit *SU) {
1111 unsigned Scratches = 0;
1112 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
Evan Chengf2b14712009-02-12 09:52:13 +00001113 I != E; ++I) {
Dan Gohman54e4c362008-12-09 22:54:47 +00001114 if (I->isCtrl()) continue; // ignore chain preds
Evan Chengf2b14712009-02-12 09:52:13 +00001115 Scratches++;
1116 }
Evan Chengd6c07582007-12-20 02:22:36 +00001117 return Scratches;
1118}
1119
Evan Chenge165a782006-05-11 23:55:42 +00001120// Bottom up
1121bool bu_ls_rr_sort::operator()(const SUnit *left, const SUnit *right) const {
Evan Chengc8edc642007-01-08 23:55:53 +00001122 unsigned LPriority = SPQ->getNodePriority(left);
1123 unsigned RPriority = SPQ->getNodePriority(right);
Evan Cheng84d4a2b2008-03-01 00:39:47 +00001124 if (LPriority != RPriority)
1125 return LPriority > RPriority;
1126
1127 // Try schedule def + use closer when Sethi-Ullman numbers are the same.
1128 // e.g.
1129 // t1 = op t2, c1
1130 // t3 = op t4, c2
1131 //
1132 // and the following instructions are both ready.
1133 // t2 = op c3
1134 // t4 = op c4
1135 //
1136 // Then schedule t2 = op first.
1137 // i.e.
1138 // t4 = op c4
1139 // t2 = op c3
1140 // t1 = op t2, c1
1141 // t3 = op t4, c2
1142 //
1143 // This creates more short live intervals.
1144 unsigned LDist = closestSucc(left);
1145 unsigned RDist = closestSucc(right);
1146 if (LDist != RDist)
1147 return LDist < RDist;
1148
Evan Cheng81823472009-02-12 08:59:45 +00001149 // How many registers becomes live when the node is scheduled.
Evan Cheng84d4a2b2008-03-01 00:39:47 +00001150 unsigned LScratch = calcMaxScratches(left);
1151 unsigned RScratch = calcMaxScratches(right);
1152 if (LScratch != RScratch)
1153 return LScratch > RScratch;
1154
Dan Gohman3f237442008-12-16 03:25:46 +00001155 if (left->getHeight() != right->getHeight())
1156 return left->getHeight() > right->getHeight();
Evan Cheng84d4a2b2008-03-01 00:39:47 +00001157
Dan Gohman3f237442008-12-16 03:25:46 +00001158 if (left->getDepth() != right->getDepth())
1159 return left->getDepth() < right->getDepth();
Evan Cheng84d4a2b2008-03-01 00:39:47 +00001160
Roman Levensteina0201d52008-04-29 09:07:59 +00001161 assert(left->NodeQueueId && right->NodeQueueId &&
1162 "NodeQueueId cannot be zero");
1163 return (left->NodeQueueId > right->NodeQueueId);
Evan Chenge165a782006-05-11 23:55:42 +00001164}
1165
Dan Gohman6be2ee42008-11-20 02:45:51 +00001166template<class SF>
Evan Chengc6be7772008-07-02 09:23:51 +00001167bool
Dan Gohman6be2ee42008-11-20 02:45:51 +00001168RegReductionPriorityQueue<SF>::canClobber(const SUnit *SU, const SUnit *Op) {
Evan Cheng95f6ede2006-11-04 09:44:31 +00001169 if (SU->isTwoAddress) {
Dan Gohman550f5af2008-11-13 21:36:12 +00001170 unsigned Opc = SU->getNode()->getMachineOpcode();
Chris Lattner749c6f62008-01-07 07:27:27 +00001171 const TargetInstrDesc &TID = TII->get(Opc);
Chris Lattner3db805e2008-01-07 06:47:00 +00001172 unsigned NumRes = TID.getNumDefs();
Dan Gohman3b665552008-02-15 20:50:13 +00001173 unsigned NumOps = TID.getNumOperands() - NumRes;
Evan Cheng95f6ede2006-11-04 09:44:31 +00001174 for (unsigned i = 0; i != NumOps; ++i) {
Chris Lattner3db805e2008-01-07 06:47:00 +00001175 if (TID.getOperandConstraint(i+NumRes, TOI::TIED_TO) != -1) {
Dan Gohman550f5af2008-11-13 21:36:12 +00001176 SDNode *DU = SU->getNode()->getOperand(i).getNode();
Dan Gohman94d7a5f2008-06-21 19:18:17 +00001177 if (DU->getNodeId() != -1 &&
1178 Op->OrigNode == &(*SUnits)[DU->getNodeId()])
Evan Cheng95f6ede2006-11-04 09:44:31 +00001179 return true;
1180 }
1181 }
Evan Chenge165a782006-05-11 23:55:42 +00001182 }
Evan Chenge165a782006-05-11 23:55:42 +00001183 return false;
1184}
1185
Evan Cheng95f6ede2006-11-04 09:44:31 +00001186
Evan Cheng22a52992007-09-28 22:32:30 +00001187/// hasCopyToRegUse - Return true if SU has a value successor that is a
1188/// CopyToReg node.
Dan Gohman430b8a22008-08-05 14:45:15 +00001189static bool hasCopyToRegUse(const SUnit *SU) {
Evan Cheng22a52992007-09-28 22:32:30 +00001190 for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
1191 I != E; ++I) {
Dan Gohman54e4c362008-12-09 22:54:47 +00001192 if (I->isCtrl()) continue;
1193 const SUnit *SuccSU = I->getSUnit();
Dan Gohman550f5af2008-11-13 21:36:12 +00001194 if (SuccSU->getNode() && SuccSU->getNode()->getOpcode() == ISD::CopyToReg)
Evan Cheng22a52992007-09-28 22:32:30 +00001195 return true;
1196 }
1197 return false;
1198}
1199
Evan Cheng180c2102007-12-20 09:25:31 +00001200/// canClobberPhysRegDefs - True if SU would clobber one of SuccSU's
Dan Gohman2f1d3102008-06-21 22:05:24 +00001201/// physical register defs.
Dan Gohman430b8a22008-08-05 14:45:15 +00001202static bool canClobberPhysRegDefs(const SUnit *SuccSU, const SUnit *SU,
Evan Cheng180c2102007-12-20 09:25:31 +00001203 const TargetInstrInfo *TII,
Dan Gohman6f0d0242008-02-10 18:45:23 +00001204 const TargetRegisterInfo *TRI) {
Dan Gohman550f5af2008-11-13 21:36:12 +00001205 SDNode *N = SuccSU->getNode();
Dan Gohmane8be6c62008-07-17 19:10:17 +00001206 unsigned NumDefs = TII->get(N->getMachineOpcode()).getNumDefs();
1207 const unsigned *ImpDefs = TII->get(N->getMachineOpcode()).getImplicitDefs();
Dan Gohman2f1d3102008-06-21 22:05:24 +00001208 assert(ImpDefs && "Caller should check hasPhysRegDefs");
Dan Gohmana5c8ae22009-03-23 16:23:01 +00001209 for (const SDNode *SUNode = SU->getNode(); SUNode;
1210 SUNode = SUNode->getFlaggedNode()) {
1211 if (!SUNode->isMachineOpcode())
Evan Cheng180c2102007-12-20 09:25:31 +00001212 continue;
Dan Gohmana5c8ae22009-03-23 16:23:01 +00001213 const unsigned *SUImpDefs =
1214 TII->get(SUNode->getMachineOpcode()).getImplicitDefs();
1215 if (!SUImpDefs)
1216 return false;
1217 for (unsigned i = NumDefs, e = N->getNumValues(); i != e; ++i) {
1218 MVT VT = N->getValueType(i);
1219 if (VT == MVT::Flag || VT == MVT::Other)
1220 continue;
1221 if (!N->hasAnyUseOfValue(i))
1222 continue;
1223 unsigned Reg = ImpDefs[i - NumDefs];
1224 for (;*SUImpDefs; ++SUImpDefs) {
1225 unsigned SUReg = *SUImpDefs;
1226 if (TRI->regsOverlap(Reg, SUReg))
1227 return true;
1228 }
Evan Cheng180c2102007-12-20 09:25:31 +00001229 }
1230 }
1231 return false;
1232}
1233
Dan Gohman002b44f2009-03-24 00:49:12 +00001234/// PrescheduleNodesWithMultipleUses - Nodes with multiple uses
1235/// are not handled well by the general register pressure reduction
1236/// heuristics. When presented with code like this:
1237///
1238/// N
1239/// / |
1240/// / |
1241/// U store
1242/// |
1243/// ...
1244///
1245/// the heuristics tend to push the store up, but since the
1246/// operand of the store has another use (U), this would increase
1247/// the length of that other use (the U->N edge).
1248///
1249/// This function transforms code like the above to route U's
1250/// dependence through the store when possible, like this:
1251///
1252/// N
1253/// ||
1254/// ||
1255/// store
1256/// |
1257/// U
1258/// |
1259/// ...
1260///
1261/// This results in the store being scheduled immediately
1262/// after N, which shortens the U->N live range, reducing
1263/// register pressure.
1264///
1265template<class SF>
1266void RegReductionPriorityQueue<SF>::PrescheduleNodesWithMultipleUses() {
1267 // Visit all the nodes in topological order, working top-down.
1268 for (unsigned i = 0, e = SUnits->size(); i != e; ++i) {
1269 SUnit *SU = &(*SUnits)[i];
1270 // For now, only look at nodes with no data successors, such as stores.
1271 // These are especially important, due to the heuristics in
1272 // getNodePriority for nodes with no data successors.
1273 if (SU->NumSuccs != 0)
1274 continue;
1275 // For now, only look at nodes with exactly one data predecessor.
1276 if (SU->NumPreds != 1)
1277 continue;
1278 // Avoid prescheduling copies to virtual registers, which don't behave
1279 // like other nodes from the perspective of scheduling heuristics.
1280 if (SDNode *N = SU->getNode())
1281 if (N->getOpcode() == ISD::CopyToReg &&
1282 TargetRegisterInfo::isVirtualRegister
1283 (cast<RegisterSDNode>(N->getOperand(1))->getReg()))
1284 continue;
1285
1286 // Locate the single data predecessor.
1287 SUnit *PredSU = 0;
1288 for (SUnit::const_pred_iterator II = SU->Preds.begin(),
1289 EE = SU->Preds.end(); II != EE; ++II)
1290 if (!II->isCtrl()) {
1291 PredSU = II->getSUnit();
1292 break;
1293 }
1294 assert(PredSU);
1295
1296 // Don't rewrite edges that carry physregs, because that requires additional
1297 // support infrastructure.
1298 if (PredSU->hasPhysRegDefs)
1299 continue;
1300 // Short-circuit the case where SU is PredSU's only data successor.
1301 if (PredSU->NumSuccs == 1)
1302 continue;
1303 // Avoid prescheduling to copies from virtual registers, which don't behave
1304 // like other nodes from the perspective of scheduling // heuristics.
1305 if (SDNode *N = SU->getNode())
1306 if (N->getOpcode() == ISD::CopyFromReg &&
1307 TargetRegisterInfo::isVirtualRegister
1308 (cast<RegisterSDNode>(N->getOperand(1))->getReg()))
1309 continue;
1310
1311 // Perform checks on the successors of PredSU.
1312 for (SUnit::const_succ_iterator II = PredSU->Succs.begin(),
1313 EE = PredSU->Succs.end(); II != EE; ++II) {
1314 SUnit *PredSuccSU = II->getSUnit();
1315 if (PredSuccSU == SU) continue;
1316 // If PredSU has another successor with no data successors, for
1317 // now don't attempt to choose either over the other.
1318 if (PredSuccSU->NumSuccs == 0)
1319 goto outer_loop_continue;
1320 // Don't break physical register dependencies.
1321 if (SU->hasPhysRegClobbers && PredSuccSU->hasPhysRegDefs)
1322 if (canClobberPhysRegDefs(PredSuccSU, SU, TII, TRI))
1323 goto outer_loop_continue;
1324 // Don't introduce graph cycles.
1325 if (scheduleDAG->IsReachable(SU, PredSuccSU))
1326 goto outer_loop_continue;
1327 }
1328
1329 // Ok, the transformation is safe and the heuristics suggest it is
1330 // profitable. Update the graph.
1331 DOUT << "Prescheduling SU # " << SU->NodeNum
1332 << " next to PredSU # " << PredSU->NodeNum
1333 << " to guide scheduling in the presence of multiple uses\n";
1334 for (unsigned i = 0; i != PredSU->Succs.size(); ++i) {
1335 SDep Edge = PredSU->Succs[i];
1336 assert(!Edge.isAssignedRegDep());
1337 SUnit *SuccSU = Edge.getSUnit();
1338 if (SuccSU != SU) {
1339 Edge.setSUnit(PredSU);
1340 scheduleDAG->RemovePred(SuccSU, Edge);
1341 scheduleDAG->AddPred(SU, Edge);
1342 Edge.setSUnit(SU);
1343 scheduleDAG->AddPred(SuccSU, Edge);
1344 --i;
1345 }
1346 }
1347 outer_loop_continue:;
1348 }
1349}
1350
Evan Chenge165a782006-05-11 23:55:42 +00001351/// AddPseudoTwoAddrDeps - If two nodes share an operand and one of them uses
1352/// it as a def&use operand. Add a pseudo control edge from it to the other
1353/// node (if it won't create a cycle) so the two-address one will be scheduled
Evan Cheng22a52992007-09-28 22:32:30 +00001354/// first (lower in the schedule). If both nodes are two-address, favor the
1355/// one that has a CopyToReg use (more likely to be a loop induction update).
1356/// If both are two-address, but one is commutable while the other is not
1357/// commutable, favor the one that's not commutable.
Dan Gohman6be2ee42008-11-20 02:45:51 +00001358template<class SF>
1359void RegReductionPriorityQueue<SF>::AddPseudoTwoAddrDeps() {
Evan Cheng95f6ede2006-11-04 09:44:31 +00001360 for (unsigned i = 0, e = SUnits->size(); i != e; ++i) {
Dan Gohman430b8a22008-08-05 14:45:15 +00001361 SUnit *SU = &(*SUnits)[i];
Evan Cheng95f6ede2006-11-04 09:44:31 +00001362 if (!SU->isTwoAddress)
1363 continue;
1364
Dan Gohman550f5af2008-11-13 21:36:12 +00001365 SDNode *Node = SU->getNode();
Dan Gohmand23e0f82008-11-13 23:24:17 +00001366 if (!Node || !Node->isMachineOpcode() || SU->getNode()->getFlaggedNode())
Evan Cheng95f6ede2006-11-04 09:44:31 +00001367 continue;
1368
Dan Gohmane8be6c62008-07-17 19:10:17 +00001369 unsigned Opc = Node->getMachineOpcode();
Chris Lattner749c6f62008-01-07 07:27:27 +00001370 const TargetInstrDesc &TID = TII->get(Opc);
Chris Lattner3db805e2008-01-07 06:47:00 +00001371 unsigned NumRes = TID.getNumDefs();
Dan Gohman3b665552008-02-15 20:50:13 +00001372 unsigned NumOps = TID.getNumOperands() - NumRes;
Evan Cheng95f6ede2006-11-04 09:44:31 +00001373 for (unsigned j = 0; j != NumOps; ++j) {
Dan Gohmanc2f90622008-11-19 02:00:32 +00001374 if (TID.getOperandConstraint(j+NumRes, TOI::TIED_TO) == -1)
1375 continue;
1376 SDNode *DU = SU->getNode()->getOperand(j).getNode();
1377 if (DU->getNodeId() == -1)
1378 continue;
1379 const SUnit *DUSU = &(*SUnits)[DU->getNodeId()];
1380 if (!DUSU) continue;
1381 for (SUnit::const_succ_iterator I = DUSU->Succs.begin(),
1382 E = DUSU->Succs.end(); I != E; ++I) {
Dan Gohman54e4c362008-12-09 22:54:47 +00001383 if (I->isCtrl()) continue;
1384 SUnit *SuccSU = I->getSUnit();
Dan Gohmanc2f90622008-11-19 02:00:32 +00001385 if (SuccSU == SU)
Evan Cheng7da8f392007-11-09 01:27:11 +00001386 continue;
Dan Gohmanc2f90622008-11-19 02:00:32 +00001387 // Be conservative. Ignore if nodes aren't at roughly the same
1388 // depth and height.
Dan Gohman3f237442008-12-16 03:25:46 +00001389 if (SuccSU->getHeight() < SU->getHeight() &&
1390 (SU->getHeight() - SuccSU->getHeight()) > 1)
Dan Gohmanc2f90622008-11-19 02:00:32 +00001391 continue;
1392 if (!SuccSU->getNode() || !SuccSU->getNode()->isMachineOpcode())
1393 continue;
1394 // Don't constrain nodes with physical register defs if the
1395 // predecessor can clobber them.
Dan Gohman8f4aa332009-03-24 00:50:07 +00001396 if (SuccSU->hasPhysRegDefs && SU->hasPhysRegClobbers) {
Dan Gohmanc2f90622008-11-19 02:00:32 +00001397 if (canClobberPhysRegDefs(SuccSU, SU, TII, TRI))
Evan Chenga6fb1b62007-09-25 01:54:36 +00001398 continue;
Dan Gohmanc2f90622008-11-19 02:00:32 +00001399 }
Dan Gohman8af808a2009-04-16 20:57:10 +00001400 // Don't constrain EXTRACT_SUBREG, INSERT_SUBREG, and SUBREG_TO_REG;
1401 // these may be coalesced away. We want them close to their uses.
Dan Gohmanc2f90622008-11-19 02:00:32 +00001402 unsigned SuccOpc = SuccSU->getNode()->getMachineOpcode();
1403 if (SuccOpc == TargetInstrInfo::EXTRACT_SUBREG ||
Dan Gohman8af808a2009-04-16 20:57:10 +00001404 SuccOpc == TargetInstrInfo::INSERT_SUBREG ||
1405 SuccOpc == TargetInstrInfo::SUBREG_TO_REG)
Dan Gohmanc2f90622008-11-19 02:00:32 +00001406 continue;
1407 if ((!canClobber(SuccSU, DUSU) ||
1408 (hasCopyToRegUse(SU) && !hasCopyToRegUse(SuccSU)) ||
1409 (!SU->isCommutable && SuccSU->isCommutable)) &&
1410 !scheduleDAG->IsReachable(SuccSU, SU)) {
Dan Gohmanb29ffc82008-12-04 02:14:57 +00001411 DOUT << "Adding a pseudo-two-addr edge from SU # " << SU->NodeNum
Dan Gohmanc2f90622008-11-19 02:00:32 +00001412 << " to SU #" << SuccSU->NodeNum << "\n";
Dan Gohmanfd2163b2009-01-06 01:19:04 +00001413 scheduleDAG->AddPred(SU, SDep(SuccSU, SDep::Order, /*Latency=*/0,
Dan Gohmance0d4b72009-01-06 01:28:56 +00001414 /*Reg=*/0, /*isNormalMemory=*/false,
1415 /*isMustAlias=*/false,
Dan Gohman54e4c362008-12-09 22:54:47 +00001416 /*isArtificial=*/true));
Evan Cheng95f6ede2006-11-04 09:44:31 +00001417 }
1418 }
1419 }
1420 }
Evan Chenge165a782006-05-11 23:55:42 +00001421}
1422
Evan Chengc8edc642007-01-08 23:55:53 +00001423/// CalculateSethiUllmanNumbers - Calculate Sethi-Ullman numbers of all
1424/// scheduling units.
Dan Gohman117f3e92008-11-20 03:30:37 +00001425template<class SF>
1426void RegReductionPriorityQueue<SF>::CalculateSethiUllmanNumbers() {
Evan Chenge165a782006-05-11 23:55:42 +00001427 SethiUllmanNumbers.assign(SUnits->size(), 0);
1428
1429 for (unsigned i = 0, e = SUnits->size(); i != e; ++i)
Dan Gohman117f3e92008-11-20 03:30:37 +00001430 CalcNodeSethiUllmanNumber(&(*SUnits)[i], SethiUllmanNumbers);
Evan Chengc6be7772008-07-02 09:23:51 +00001431}
Evan Chenge165a782006-05-11 23:55:42 +00001432
Roman Levensteind7d3ea02008-03-27 09:44:37 +00001433/// LimitedSumOfUnscheduledPredsOfSuccs - Compute the sum of the unscheduled
Roman Levenstein95d41842008-03-27 09:14:57 +00001434/// predecessors of the successors of the SUnit SU. Stop when the provided
1435/// limit is exceeded.
Roman Levenstein95d41842008-03-27 09:14:57 +00001436static unsigned LimitedSumOfUnscheduledPredsOfSuccs(const SUnit *SU,
1437 unsigned Limit) {
1438 unsigned Sum = 0;
1439 for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
1440 I != E; ++I) {
Dan Gohman54e4c362008-12-09 22:54:47 +00001441 const SUnit *SuccSU = I->getSUnit();
Roman Levenstein95d41842008-03-27 09:14:57 +00001442 for (SUnit::const_pred_iterator II = SuccSU->Preds.begin(),
1443 EE = SuccSU->Preds.end(); II != EE; ++II) {
Dan Gohman54e4c362008-12-09 22:54:47 +00001444 SUnit *PredSU = II->getSUnit();
Evan Chengfd5da6c2008-03-29 18:34:22 +00001445 if (!PredSU->isScheduled)
1446 if (++Sum > Limit)
1447 return Sum;
Roman Levenstein95d41842008-03-27 09:14:57 +00001448 }
1449 }
1450 return Sum;
1451}
1452
Evan Chenge165a782006-05-11 23:55:42 +00001453
1454// Top down
1455bool td_ls_rr_sort::operator()(const SUnit *left, const SUnit *right) const {
Evan Chengc8edc642007-01-08 23:55:53 +00001456 unsigned LPriority = SPQ->getNodePriority(left);
1457 unsigned RPriority = SPQ->getNodePriority(right);
Dan Gohman550f5af2008-11-13 21:36:12 +00001458 bool LIsTarget = left->getNode() && left->getNode()->isMachineOpcode();
1459 bool RIsTarget = right->getNode() && right->getNode()->isMachineOpcode();
Evan Chenge165a782006-05-11 23:55:42 +00001460 bool LIsFloater = LIsTarget && left->NumPreds == 0;
1461 bool RIsFloater = RIsTarget && right->NumPreds == 0;
Roman Levenstein95d41842008-03-27 09:14:57 +00001462 unsigned LBonus = (LimitedSumOfUnscheduledPredsOfSuccs(left,1) == 1) ? 2 : 0;
1463 unsigned RBonus = (LimitedSumOfUnscheduledPredsOfSuccs(right,1) == 1) ? 2 : 0;
Evan Chenge165a782006-05-11 23:55:42 +00001464
1465 if (left->NumSuccs == 0 && right->NumSuccs != 0)
1466 return false;
1467 else if (left->NumSuccs != 0 && right->NumSuccs == 0)
1468 return true;
1469
Evan Chenge165a782006-05-11 23:55:42 +00001470 if (LIsFloater)
1471 LBonus -= 2;
1472 if (RIsFloater)
1473 RBonus -= 2;
1474 if (left->NumSuccs == 1)
1475 LBonus += 2;
1476 if (right->NumSuccs == 1)
1477 RBonus += 2;
1478
Evan Cheng84d4a2b2008-03-01 00:39:47 +00001479 if (LPriority+LBonus != RPriority+RBonus)
1480 return LPriority+LBonus < RPriority+RBonus;
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00001481
Dan Gohman3f237442008-12-16 03:25:46 +00001482 if (left->getDepth() != right->getDepth())
1483 return left->getDepth() < right->getDepth();
Evan Cheng84d4a2b2008-03-01 00:39:47 +00001484
1485 if (left->NumSuccsLeft != right->NumSuccsLeft)
1486 return left->NumSuccsLeft > right->NumSuccsLeft;
1487
Roman Levensteina0201d52008-04-29 09:07:59 +00001488 assert(left->NodeQueueId && right->NodeQueueId &&
1489 "NodeQueueId cannot be zero");
1490 return (left->NodeQueueId > right->NodeQueueId);
Evan Chenge165a782006-05-11 23:55:42 +00001491}
1492
Evan Chenge165a782006-05-11 23:55:42 +00001493//===----------------------------------------------------------------------===//
1494// Public Constructor Functions
1495//===----------------------------------------------------------------------===//
1496
Dan Gohman47ac0f02009-02-11 04:27:20 +00001497llvm::ScheduleDAGSDNodes *
1498llvm::createBURRListDAGScheduler(SelectionDAGISel *IS, bool) {
Dan Gohman79ce2762009-01-15 19:20:50 +00001499 const TargetMachine &TM = IS->TM;
1500 const TargetInstrInfo *TII = TM.getInstrInfo();
1501 const TargetRegisterInfo *TRI = TM.getRegisterInfo();
Roman Levensteine513ba42008-03-26 09:18:09 +00001502
Evan Chengc6be7772008-07-02 09:23:51 +00001503 BURegReductionPriorityQueue *PQ = new BURegReductionPriorityQueue(TII, TRI);
Roman Levensteine513ba42008-03-26 09:18:09 +00001504
Evan Chengc6be7772008-07-02 09:23:51 +00001505 ScheduleDAGRRList *SD =
Dan Gohman79ce2762009-01-15 19:20:50 +00001506 new ScheduleDAGRRList(*IS->MF, true, PQ);
Evan Chengc6be7772008-07-02 09:23:51 +00001507 PQ->setScheduleDAG(SD);
1508 return SD;
Evan Chenge165a782006-05-11 23:55:42 +00001509}
1510
Dan Gohman47ac0f02009-02-11 04:27:20 +00001511llvm::ScheduleDAGSDNodes *
1512llvm::createTDRRListDAGScheduler(SelectionDAGISel *IS, bool) {
Dan Gohman79ce2762009-01-15 19:20:50 +00001513 const TargetMachine &TM = IS->TM;
1514 const TargetInstrInfo *TII = TM.getInstrInfo();
1515 const TargetRegisterInfo *TRI = TM.getRegisterInfo();
Dan Gohman6be2ee42008-11-20 02:45:51 +00001516
1517 TDRegReductionPriorityQueue *PQ = new TDRegReductionPriorityQueue(TII, TRI);
1518
Dan Gohman79ce2762009-01-15 19:20:50 +00001519 ScheduleDAGRRList *SD =
1520 new ScheduleDAGRRList(*IS->MF, false, PQ);
Dan Gohman6be2ee42008-11-20 02:45:51 +00001521 PQ->setScheduleDAG(SD);
1522 return SD;
Evan Chenge165a782006-05-11 23:55:42 +00001523}