blob: 6e822499282a7369be69bf621149c9a2a8d9c945 [file] [log] [blame]
Dan Gohman23785a12008-08-12 17:42:33 +00001//===----- ScheduleDAGRRList.cpp - Reg pressure reduction list scheduler --===//
Evan Chengd38c22b2006-05-11 23:55:42 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Chengd38c22b2006-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 Johannesen2182f062007-07-13 17:13:54 +000018#define DEBUG_TYPE "pre-RA-sched"
Dan Gohman483377c2009-02-06 17:22:58 +000019#include "ScheduleDAGSDNodes.h"
Chris Lattner3b9f02a2010-04-07 05:20:54 +000020#include "llvm/InlineAsm.h"
Jim Laskey29e635d2006-08-02 12:30:23 +000021#include "llvm/CodeGen/SchedulerRegistry.h"
Dan Gohman619ef482009-01-15 19:20:50 +000022#include "llvm/CodeGen/SelectionDAGISel.h"
Dan Gohman3a4be0f2008-02-10 18:45:23 +000023#include "llvm/Target/TargetRegisterInfo.h"
Owen Anderson8c2c1e92006-05-12 06:33:49 +000024#include "llvm/Target/TargetData.h"
Evan Chengd38c22b2006-05-11 23:55:42 +000025#include "llvm/Target/TargetMachine.h"
26#include "llvm/Target/TargetInstrInfo.h"
Evan Chenga77f3d32010-07-21 06:09:07 +000027#include "llvm/Target/TargetLowering.h"
Evan Cheng5924bf72007-09-25 01:54:36 +000028#include "llvm/ADT/SmallSet.h"
Evan Chengd38c22b2006-05-11 23:55:42 +000029#include "llvm/ADT/Statistic.h"
Roman Levenstein6b371142008-04-29 09:07:59 +000030#include "llvm/ADT/STLExtras.h"
Evan Chenga77f3d32010-07-21 06:09:07 +000031#include "llvm/Support/CommandLine.h"
Chris Lattner3b9f02a2010-04-07 05:20:54 +000032#include "llvm/Support/Debug.h"
33#include "llvm/Support/ErrorHandling.h"
Chris Lattner4dc3edd2009-08-23 06:35:02 +000034#include "llvm/Support/raw_ostream.h"
Evan Chengd38c22b2006-05-11 23:55:42 +000035#include <climits>
Evan Chengd38c22b2006-05-11 23:55:42 +000036using namespace llvm;
37
Evan Chenga77f3d32010-07-21 06:09:07 +000038static cl::opt<bool> RegPressureAware("reg-pressure-aware-sched",
39 cl::init(false), cl::Hidden);
40
Dan Gohmanfd227e92008-03-25 17:10:29 +000041STATISTIC(NumBacktracks, "Number of times scheduler backtracked");
Evan Cheng79e97132007-10-05 01:39:18 +000042STATISTIC(NumUnfolds, "Number of nodes unfolded");
Evan Cheng1ec79b42007-09-27 07:09:03 +000043STATISTIC(NumDups, "Number of duplicated nodes");
Evan Chengb2c42c62009-01-12 03:19:55 +000044STATISTIC(NumPRCopies, "Number of physical register copies");
Evan Cheng1ec79b42007-09-27 07:09:03 +000045
Jim Laskey95eda5b2006-08-01 14:21:23 +000046static RegisterScheduler
47 burrListDAGScheduler("list-burr",
Dan Gohman9c4b7d52008-10-14 20:25:08 +000048 "Bottom-up register reduction list scheduling",
Jim Laskey95eda5b2006-08-01 14:21:23 +000049 createBURRListDAGScheduler);
50static RegisterScheduler
51 tdrListrDAGScheduler("list-tdrr",
Dan Gohman9c4b7d52008-10-14 20:25:08 +000052 "Top-down register reduction list scheduling",
Jim Laskey95eda5b2006-08-01 14:21:23 +000053 createTDRRListDAGScheduler);
Bill Wendling8cbc25d2010-01-23 10:26:57 +000054static RegisterScheduler
55 sourceListDAGScheduler("source",
56 "Similar to list-burr but schedules in source "
57 "order when possible",
58 createSourceListDAGScheduler);
Jim Laskey95eda5b2006-08-01 14:21:23 +000059
Evan Chengbdd062d2010-05-20 06:13:19 +000060static RegisterScheduler
Evan Cheng725211e2010-05-21 00:42:32 +000061 hybridListDAGScheduler("list-hybrid",
Evan Chengbdd062d2010-05-20 06:13:19 +000062 "Bottom-up rr list scheduling which avoid stalls for "
63 "long latency instructions",
64 createHybridListDAGScheduler);
65
Evan Chengd38c22b2006-05-11 23:55:42 +000066namespace {
Evan Chengd38c22b2006-05-11 23:55:42 +000067//===----------------------------------------------------------------------===//
68/// ScheduleDAGRRList - The actual register reduction list scheduler
69/// implementation. This supports both top-down and bottom-up scheduling.
70///
Nick Lewycky02d5f772009-10-25 06:33:48 +000071class ScheduleDAGRRList : public ScheduleDAGSDNodes {
Evan Chengd38c22b2006-05-11 23:55:42 +000072private:
73 /// isBottomUp - This is true if the scheduling problem is bottom-up, false if
74 /// it is top-down.
75 bool isBottomUp;
Evan Cheng2c977312008-07-01 18:05:03 +000076
Evan Chengbdd062d2010-05-20 06:13:19 +000077 /// NeedLatency - True if the scheduler will make use of latency information.
78 ///
79 bool NeedLatency;
80
Evan Chengd38c22b2006-05-11 23:55:42 +000081 /// AvailableQueue - The priority queue to use for the available SUnits.
Evan Chengd38c22b2006-05-11 23:55:42 +000082 SchedulingPriorityQueue *AvailableQueue;
83
Dan Gohmanc07f6862008-09-23 18:50:48 +000084 /// LiveRegDefs - A set of physical registers and their definition
Evan Cheng5924bf72007-09-25 01:54:36 +000085 /// that are "live". These nodes must be scheduled before any other nodes that
86 /// modifies the registers can be scheduled.
Dan Gohmanc07f6862008-09-23 18:50:48 +000087 unsigned NumLiveRegs;
Evan Cheng5924bf72007-09-25 01:54:36 +000088 std::vector<SUnit*> LiveRegDefs;
89 std::vector<unsigned> LiveRegCycles;
90
Dan Gohmanad2134d2008-11-25 00:52:40 +000091 /// Topo - A topological ordering for SUnits which permits fast IsReachable
92 /// and similar queries.
93 ScheduleDAGTopologicalSort Topo;
94
Evan Chengd38c22b2006-05-11 23:55:42 +000095public:
Dan Gohman619ef482009-01-15 19:20:50 +000096 ScheduleDAGRRList(MachineFunction &mf,
Evan Chengbdd062d2010-05-20 06:13:19 +000097 bool isbottomup, bool needlatency,
Evan Cheng2c977312008-07-01 18:05:03 +000098 SchedulingPriorityQueue *availqueue)
Evan Chengbdd062d2010-05-20 06:13:19 +000099 : ScheduleDAGSDNodes(mf), isBottomUp(isbottomup), NeedLatency(needlatency),
Dan Gohmanad2134d2008-11-25 00:52:40 +0000100 AvailableQueue(availqueue), Topo(SUnits) {
Evan Chengd38c22b2006-05-11 23:55:42 +0000101 }
102
103 ~ScheduleDAGRRList() {
104 delete AvailableQueue;
105 }
106
107 void Schedule();
108
Roman Levenstein733a4d62008-03-26 11:23:38 +0000109 /// IsReachable - Checks if SU is reachable from TargetSU.
Dan Gohmanad2134d2008-11-25 00:52:40 +0000110 bool IsReachable(const SUnit *SU, const SUnit *TargetSU) {
111 return Topo.IsReachable(SU, TargetSU);
112 }
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000113
Dan Gohman60d68442009-01-29 19:49:27 +0000114 /// WillCreateCycle - Returns true if adding an edge from SU to TargetSU will
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000115 /// create a cycle.
Dan Gohmanad2134d2008-11-25 00:52:40 +0000116 bool WillCreateCycle(SUnit *SU, SUnit *TargetSU) {
117 return Topo.WillCreateCycle(SU, TargetSU);
118 }
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000119
Dan Gohman2d170892008-12-09 22:54:47 +0000120 /// AddPred - adds a predecessor edge to SUnit SU.
Roman Levenstein733a4d62008-03-26 11:23:38 +0000121 /// This returns true if this is a new predecessor.
122 /// Updates the topological ordering if required.
Dan Gohman17214e62008-12-16 01:00:55 +0000123 void AddPred(SUnit *SU, const SDep &D) {
Dan Gohman2d170892008-12-09 22:54:47 +0000124 Topo.AddPred(SU, D.getSUnit());
Dan Gohman17214e62008-12-16 01:00:55 +0000125 SU->addPred(D);
Dan Gohmanad2134d2008-11-25 00:52:40 +0000126 }
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000127
Dan Gohman2d170892008-12-09 22:54:47 +0000128 /// RemovePred - removes a predecessor edge from SUnit SU.
129 /// This returns true if an edge was removed.
130 /// Updates the topological ordering if required.
Dan Gohman17214e62008-12-16 01:00:55 +0000131 void RemovePred(SUnit *SU, const SDep &D) {
Dan Gohman2d170892008-12-09 22:54:47 +0000132 Topo.RemovePred(SU, D.getSUnit());
Dan Gohman17214e62008-12-16 01:00:55 +0000133 SU->removePred(D);
Dan Gohmanad2134d2008-11-25 00:52:40 +0000134 }
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000135
Evan Chengd38c22b2006-05-11 23:55:42 +0000136private:
Dan Gohman60d68442009-01-29 19:49:27 +0000137 void ReleasePred(SUnit *SU, const SDep *PredEdge);
Dan Gohmanb9543432009-02-10 23:27:53 +0000138 void ReleasePredecessors(SUnit *SU, unsigned CurCycle);
Dan Gohman60d68442009-01-29 19:49:27 +0000139 void ReleaseSucc(SUnit *SU, const SDep *SuccEdge);
Dan Gohmanb9543432009-02-10 23:27:53 +0000140 void ReleaseSuccessors(SUnit *SU);
Dan Gohman2d170892008-12-09 22:54:47 +0000141 void CapturePred(SDep *PredEdge);
Evan Cheng8e136a92007-09-26 21:36:17 +0000142 void ScheduleNodeBottomUp(SUnit*, unsigned);
143 void ScheduleNodeTopDown(SUnit*, unsigned);
144 void UnscheduleNodeBottomUp(SUnit*);
145 void BacktrackBottomUp(SUnit*, unsigned, unsigned&);
146 SUnit *CopyAndMoveSuccessors(SUnit*);
Evan Chengb2c42c62009-01-12 03:19:55 +0000147 void InsertCopiesAndMoveSuccs(SUnit*, unsigned,
148 const TargetRegisterClass*,
149 const TargetRegisterClass*,
150 SmallVector<SUnit*, 2>&);
Evan Cheng1ec79b42007-09-27 07:09:03 +0000151 bool DelayForLiveRegsBottomUp(SUnit*, SmallVector<unsigned, 4>&);
Evan Chengd38c22b2006-05-11 23:55:42 +0000152 void ListScheduleTopDown();
153 void ListScheduleBottomUp();
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000154
155
156 /// CreateNewSUnit - Creates a new SUnit and returns a pointer to it.
Roman Levenstein733a4d62008-03-26 11:23:38 +0000157 /// Updates the topological ordering if required.
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000158 SUnit *CreateNewSUnit(SDNode *N) {
Dan Gohmanad2134d2008-11-25 00:52:40 +0000159 unsigned NumSUnits = SUnits.size();
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000160 SUnit *NewNode = NewSUnit(N);
Roman Levenstein733a4d62008-03-26 11:23:38 +0000161 // Update the topological ordering.
Dan Gohmanad2134d2008-11-25 00:52:40 +0000162 if (NewNode->NodeNum >= NumSUnits)
163 Topo.InitDAGTopologicalSorting();
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000164 return NewNode;
165 }
166
Roman Levenstein733a4d62008-03-26 11:23:38 +0000167 /// CreateClone - Creates a new SUnit from an existing one.
168 /// Updates the topological ordering if required.
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000169 SUnit *CreateClone(SUnit *N) {
Dan Gohmanad2134d2008-11-25 00:52:40 +0000170 unsigned NumSUnits = SUnits.size();
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000171 SUnit *NewNode = Clone(N);
Roman Levenstein733a4d62008-03-26 11:23:38 +0000172 // Update the topological ordering.
Dan Gohmanad2134d2008-11-25 00:52:40 +0000173 if (NewNode->NodeNum >= NumSUnits)
174 Topo.InitDAGTopologicalSorting();
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000175 return NewNode;
176 }
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000177
Evan Chengbdd062d2010-05-20 06:13:19 +0000178 /// ForceUnitLatencies - Register-pressure-reducing scheduling doesn't
179 /// need actual latency information but the hybrid scheduler does.
180 bool ForceUnitLatencies() const {
181 return !NeedLatency;
182 }
Evan Chengd38c22b2006-05-11 23:55:42 +0000183};
184} // end anonymous namespace
185
186
187/// Schedule - Schedule the DAG using list scheduling.
188void ScheduleDAGRRList::Schedule() {
Evan Chenga77f3d32010-07-21 06:09:07 +0000189 DEBUG(dbgs()
190 << "********** List Scheduling BB#" << BB->getNumber()
191 << " **********\n");
Evan Cheng5924bf72007-09-25 01:54:36 +0000192
Dan Gohmanc07f6862008-09-23 18:50:48 +0000193 NumLiveRegs = 0;
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000194 LiveRegDefs.resize(TRI->getNumRegs(), NULL);
195 LiveRegCycles.resize(TRI->getNumRegs(), 0);
Evan Cheng5924bf72007-09-25 01:54:36 +0000196
Dan Gohman04543e72008-12-23 18:36:58 +0000197 // Build the scheduling graph.
Dan Gohman918ec532009-10-09 23:33:48 +0000198 BuildSchedGraph(NULL);
Evan Chengd38c22b2006-05-11 23:55:42 +0000199
Evan Chengd38c22b2006-05-11 23:55:42 +0000200 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
Dan Gohman22d07b12008-11-18 02:06:40 +0000201 SUnits[su].dumpAll(this));
Dan Gohmanad2134d2008-11-25 00:52:40 +0000202 Topo.InitDAGTopologicalSorting();
Evan Chengd38c22b2006-05-11 23:55:42 +0000203
Dan Gohman46520a22008-06-21 19:18:17 +0000204 AvailableQueue->initNodes(SUnits);
Dan Gohman54a187e2007-08-20 19:28:38 +0000205
Evan Chengd38c22b2006-05-11 23:55:42 +0000206 // Execute the actual scheduling loop Top-Down or Bottom-Up as appropriate.
207 if (isBottomUp)
208 ListScheduleBottomUp();
209 else
210 ListScheduleTopDown();
211
212 AvailableQueue->releaseState();
Evan Chengafed73e2006-05-12 01:58:24 +0000213}
Evan Chengd38c22b2006-05-11 23:55:42 +0000214
215//===----------------------------------------------------------------------===//
216// Bottom-Up Scheduling
217//===----------------------------------------------------------------------===//
218
Evan Chengd38c22b2006-05-11 23:55:42 +0000219/// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. Add it to
Dan Gohman54a187e2007-08-20 19:28:38 +0000220/// the AvailableQueue if the count reaches zero. Also update its cycle bound.
Dan Gohman60d68442009-01-29 19:49:27 +0000221void ScheduleDAGRRList::ReleasePred(SUnit *SU, const SDep *PredEdge) {
Dan Gohman2d170892008-12-09 22:54:47 +0000222 SUnit *PredSU = PredEdge->getSUnit();
Reid Klecknercea8dab2009-09-30 20:43:07 +0000223
Evan Chengd38c22b2006-05-11 23:55:42 +0000224#ifndef NDEBUG
Reid Klecknercea8dab2009-09-30 20:43:07 +0000225 if (PredSU->NumSuccsLeft == 0) {
David Greenef34d7ac2010-01-05 01:24:54 +0000226 dbgs() << "*** Scheduling failed! ***\n";
Dan Gohman22d07b12008-11-18 02:06:40 +0000227 PredSU->dump(this);
David Greenef34d7ac2010-01-05 01:24:54 +0000228 dbgs() << " has been released too many times!\n";
Torok Edwinfbcc6632009-07-14 16:55:14 +0000229 llvm_unreachable(0);
Evan Chengd38c22b2006-05-11 23:55:42 +0000230 }
231#endif
Reid Klecknercea8dab2009-09-30 20:43:07 +0000232 --PredSU->NumSuccsLeft;
233
Evan Chengbdd062d2010-05-20 06:13:19 +0000234 if (!ForceUnitLatencies()) {
235 // Updating predecessor's height. This is now the cycle when the
236 // predecessor can be scheduled without causing a pipeline stall.
237 PredSU->setHeightToAtLeast(SU->getHeight() + PredEdge->getLatency());
238 }
239
Dan Gohmanb9543432009-02-10 23:27:53 +0000240 // If all the node's successors are scheduled, this node is ready
241 // to be scheduled. Ignore the special EntrySU node.
242 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) {
Dan Gohman4370f262008-04-15 01:22:18 +0000243 PredSU->isAvailable = true;
244 AvailableQueue->push(PredSU);
Evan Chengd38c22b2006-05-11 23:55:42 +0000245 }
246}
247
Dan Gohmanb9543432009-02-10 23:27:53 +0000248void ScheduleDAGRRList::ReleasePredecessors(SUnit *SU, unsigned CurCycle) {
Evan Chengd38c22b2006-05-11 23:55:42 +0000249 // Bottom up: release predecessors
Chris Lattnerd86418a2006-08-17 00:09:56 +0000250 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
Evan Cheng5924bf72007-09-25 01:54:36 +0000251 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +0000252 ReleasePred(SU, &*I);
253 if (I->isAssignedRegDep()) {
Evan Cheng5924bf72007-09-25 01:54:36 +0000254 // This is a physical register dependency and it's impossible or
255 // expensive to copy the register. Make sure nothing that can
256 // clobber the register is scheduled between the predecessor and
257 // this node.
Dan Gohman2d170892008-12-09 22:54:47 +0000258 if (!LiveRegDefs[I->getReg()]) {
Dan Gohmanc07f6862008-09-23 18:50:48 +0000259 ++NumLiveRegs;
Dan Gohman2d170892008-12-09 22:54:47 +0000260 LiveRegDefs[I->getReg()] = I->getSUnit();
261 LiveRegCycles[I->getReg()] = CurCycle;
Evan Cheng5924bf72007-09-25 01:54:36 +0000262 }
263 }
264 }
Dan Gohmanb9543432009-02-10 23:27:53 +0000265}
266
267/// ScheduleNodeBottomUp - Add the node to the schedule. Decrement the pending
268/// count of its predecessors. If a predecessor pending count is zero, add it to
269/// the Available queue.
270void ScheduleDAGRRList::ScheduleNodeBottomUp(SUnit *SU, unsigned CurCycle) {
Evan Chengbdd062d2010-05-20 06:13:19 +0000271 DEBUG(dbgs() << "\n*** Scheduling [" << CurCycle << "]: ");
Dan Gohmanb9543432009-02-10 23:27:53 +0000272 DEBUG(SU->dump(this));
273
Evan Chengbdd062d2010-05-20 06:13:19 +0000274#ifndef NDEBUG
275 if (CurCycle < SU->getHeight())
276 DEBUG(dbgs() << " Height [" << SU->getHeight() << "] pipeline stall!\n");
277#endif
278
279 // FIXME: Handle noop hazard.
Dan Gohmanb9543432009-02-10 23:27:53 +0000280 SU->setHeightToAtLeast(CurCycle);
281 Sequence.push_back(SU);
282
Evan Cheng28590382010-07-21 23:53:58 +0000283 AvailableQueue->ScheduledNode(SU);
284
Dan Gohmanb9543432009-02-10 23:27:53 +0000285 ReleasePredecessors(SU, CurCycle);
Evan Cheng5924bf72007-09-25 01:54:36 +0000286
287 // Release all the implicit physical register defs that are live.
288 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
289 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +0000290 if (I->isAssignedRegDep()) {
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000291 if (LiveRegCycles[I->getReg()] == I->getSUnit()->getHeight()) {
Dan Gohmanc07f6862008-09-23 18:50:48 +0000292 assert(NumLiveRegs > 0 && "NumLiveRegs is already zero!");
Dan Gohman2d170892008-12-09 22:54:47 +0000293 assert(LiveRegDefs[I->getReg()] == SU &&
Evan Cheng5924bf72007-09-25 01:54:36 +0000294 "Physical register dependency violated?");
Dan Gohmanc07f6862008-09-23 18:50:48 +0000295 --NumLiveRegs;
Dan Gohman2d170892008-12-09 22:54:47 +0000296 LiveRegDefs[I->getReg()] = NULL;
297 LiveRegCycles[I->getReg()] = 0;
Evan Cheng5924bf72007-09-25 01:54:36 +0000298 }
299 }
300 }
301
Evan Chengd38c22b2006-05-11 23:55:42 +0000302 SU->isScheduled = true;
Evan Chengd38c22b2006-05-11 23:55:42 +0000303}
304
Evan Cheng5924bf72007-09-25 01:54:36 +0000305/// CapturePred - This does the opposite of ReleasePred. Since SU is being
306/// unscheduled, incrcease the succ left count of its predecessors. Remove
307/// them from AvailableQueue if necessary.
Dan Gohman2d170892008-12-09 22:54:47 +0000308void ScheduleDAGRRList::CapturePred(SDep *PredEdge) {
309 SUnit *PredSU = PredEdge->getSUnit();
Evan Cheng5924bf72007-09-25 01:54:36 +0000310 if (PredSU->isAvailable) {
311 PredSU->isAvailable = false;
312 if (!PredSU->isPending)
313 AvailableQueue->remove(PredSU);
314 }
315
Reid Kleckner8ff5c192009-09-30 20:15:38 +0000316 assert(PredSU->NumSuccsLeft < UINT_MAX && "NumSuccsLeft will overflow!");
Evan Cheng038dcc52007-09-28 19:24:24 +0000317 ++PredSU->NumSuccsLeft;
Evan Cheng5924bf72007-09-25 01:54:36 +0000318}
319
320/// UnscheduleNodeBottomUp - Remove the node from the schedule, update its and
321/// its predecessor states to reflect the change.
322void ScheduleDAGRRList::UnscheduleNodeBottomUp(SUnit *SU) {
David Greenef34d7ac2010-01-05 01:24:54 +0000323 DEBUG(dbgs() << "*** Unscheduling [" << SU->getHeight() << "]: ");
Dan Gohman22d07b12008-11-18 02:06:40 +0000324 DEBUG(SU->dump(this));
Evan Cheng5924bf72007-09-25 01:54:36 +0000325
Evan Cheng5924bf72007-09-25 01:54:36 +0000326 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
327 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +0000328 CapturePred(&*I);
Evan Chengcc2efe12010-05-28 23:26:21 +0000329 if (I->isAssignedRegDep() && SU->getHeight() == LiveRegCycles[I->getReg()]){
Dan Gohmanc07f6862008-09-23 18:50:48 +0000330 assert(NumLiveRegs > 0 && "NumLiveRegs is already zero!");
Dan Gohman2d170892008-12-09 22:54:47 +0000331 assert(LiveRegDefs[I->getReg()] == I->getSUnit() &&
Evan Cheng5924bf72007-09-25 01:54:36 +0000332 "Physical register dependency violated?");
Dan Gohmanc07f6862008-09-23 18:50:48 +0000333 --NumLiveRegs;
Dan Gohman2d170892008-12-09 22:54:47 +0000334 LiveRegDefs[I->getReg()] = NULL;
335 LiveRegCycles[I->getReg()] = 0;
Evan Cheng5924bf72007-09-25 01:54:36 +0000336 }
337 }
338
339 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
340 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +0000341 if (I->isAssignedRegDep()) {
342 if (!LiveRegDefs[I->getReg()]) {
343 LiveRegDefs[I->getReg()] = SU;
Dan Gohmanc07f6862008-09-23 18:50:48 +0000344 ++NumLiveRegs;
Evan Cheng5924bf72007-09-25 01:54:36 +0000345 }
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000346 if (I->getSUnit()->getHeight() < LiveRegCycles[I->getReg()])
347 LiveRegCycles[I->getReg()] = I->getSUnit()->getHeight();
Evan Cheng5924bf72007-09-25 01:54:36 +0000348 }
349 }
350
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000351 SU->setHeightDirty();
Evan Cheng5924bf72007-09-25 01:54:36 +0000352 SU->isScheduled = false;
353 SU->isAvailable = true;
354 AvailableQueue->push(SU);
Evan Cheng28590382010-07-21 23:53:58 +0000355 AvailableQueue->UnscheduledNode(SU);
Evan Cheng5924bf72007-09-25 01:54:36 +0000356}
357
Evan Cheng8e136a92007-09-26 21:36:17 +0000358/// BacktrackBottomUp - Backtrack scheduling to a previous cycle specified in
Dan Gohman60d68442009-01-29 19:49:27 +0000359/// BTCycle in order to schedule a specific node.
Evan Cheng8e136a92007-09-26 21:36:17 +0000360void ScheduleDAGRRList::BacktrackBottomUp(SUnit *SU, unsigned BtCycle,
361 unsigned &CurCycle) {
Evan Cheng5924bf72007-09-25 01:54:36 +0000362 SUnit *OldSU = NULL;
Evan Cheng8e136a92007-09-26 21:36:17 +0000363 while (CurCycle > BtCycle) {
Evan Cheng5924bf72007-09-25 01:54:36 +0000364 OldSU = Sequence.back();
365 Sequence.pop_back();
366 if (SU->isSucc(OldSU))
Evan Cheng8e136a92007-09-26 21:36:17 +0000367 // Don't try to remove SU from AvailableQueue.
368 SU->isAvailable = false;
Evan Cheng5924bf72007-09-25 01:54:36 +0000369 UnscheduleNodeBottomUp(OldSU);
370 --CurCycle;
Evan Chengbdd062d2010-05-20 06:13:19 +0000371 AvailableQueue->setCurCycle(CurCycle);
Evan Cheng5924bf72007-09-25 01:54:36 +0000372 }
373
Dan Gohman60d68442009-01-29 19:49:27 +0000374 assert(!SU->isSucc(OldSU) && "Something is wrong!");
Evan Cheng1ec79b42007-09-27 07:09:03 +0000375
376 ++NumBacktracks;
Evan Cheng5924bf72007-09-25 01:54:36 +0000377}
378
Evan Cheng3b245872010-02-05 01:27:11 +0000379static bool isOperandOf(const SUnit *SU, SDNode *N) {
380 for (const SDNode *SUNode = SU->getNode(); SUNode;
381 SUNode = SUNode->getFlaggedNode()) {
382 if (SUNode->isOperandOf(N))
383 return true;
384 }
385 return false;
386}
387
Evan Cheng5924bf72007-09-25 01:54:36 +0000388/// CopyAndMoveSuccessors - Clone the specified node and move its scheduled
389/// successors to the newly created node.
390SUnit *ScheduleDAGRRList::CopyAndMoveSuccessors(SUnit *SU) {
Dan Gohman072734e2008-11-13 23:24:17 +0000391 if (SU->getNode()->getFlaggedNode())
Evan Cheng79e97132007-10-05 01:39:18 +0000392 return NULL;
Evan Cheng8e136a92007-09-26 21:36:17 +0000393
Dan Gohman1ddfcba2008-11-13 21:36:12 +0000394 SDNode *N = SU->getNode();
Evan Cheng79e97132007-10-05 01:39:18 +0000395 if (!N)
396 return NULL;
397
398 SUnit *NewSU;
Evan Cheng79e97132007-10-05 01:39:18 +0000399 bool TryUnfold = false;
Evan Cheng84d0ebc2007-10-05 01:42:35 +0000400 for (unsigned i = 0, e = N->getNumValues(); i != e; ++i) {
Owen Anderson53aa7a92009-08-10 22:56:29 +0000401 EVT VT = N->getValueType(i);
Owen Anderson9f944592009-08-11 20:47:22 +0000402 if (VT == MVT::Flag)
Evan Cheng84d0ebc2007-10-05 01:42:35 +0000403 return NULL;
Owen Anderson9f944592009-08-11 20:47:22 +0000404 else if (VT == MVT::Other)
Evan Cheng84d0ebc2007-10-05 01:42:35 +0000405 TryUnfold = true;
406 }
Evan Cheng79e97132007-10-05 01:39:18 +0000407 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000408 const SDValue &Op = N->getOperand(i);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000409 EVT VT = Op.getNode()->getValueType(Op.getResNo());
Owen Anderson9f944592009-08-11 20:47:22 +0000410 if (VT == MVT::Flag)
Evan Cheng79e97132007-10-05 01:39:18 +0000411 return NULL;
Evan Cheng79e97132007-10-05 01:39:18 +0000412 }
413
414 if (TryUnfold) {
Dan Gohmane6e13482008-06-21 15:52:51 +0000415 SmallVector<SDNode*, 2> NewNodes;
Dan Gohman5a390b92008-11-13 21:21:28 +0000416 if (!TII->unfoldMemoryOperand(*DAG, N, NewNodes))
Evan Cheng79e97132007-10-05 01:39:18 +0000417 return NULL;
418
Evan Chengbdd062d2010-05-20 06:13:19 +0000419 DEBUG(dbgs() << "Unfolding SU #" << SU->NodeNum << "\n");
Evan Cheng79e97132007-10-05 01:39:18 +0000420 assert(NewNodes.size() == 2 && "Expected a load folding node!");
421
422 N = NewNodes[1];
423 SDNode *LoadNode = NewNodes[0];
Evan Cheng79e97132007-10-05 01:39:18 +0000424 unsigned NumVals = N->getNumValues();
Dan Gohman1ddfcba2008-11-13 21:36:12 +0000425 unsigned OldNumVals = SU->getNode()->getNumValues();
Evan Cheng79e97132007-10-05 01:39:18 +0000426 for (unsigned i = 0; i != NumVals; ++i)
Dan Gohman1ddfcba2008-11-13 21:36:12 +0000427 DAG->ReplaceAllUsesOfValueWith(SDValue(SU->getNode(), i), SDValue(N, i));
428 DAG->ReplaceAllUsesOfValueWith(SDValue(SU->getNode(), OldNumVals-1),
Dan Gohman5a390b92008-11-13 21:21:28 +0000429 SDValue(LoadNode, 1));
Evan Cheng79e97132007-10-05 01:39:18 +0000430
Dan Gohmane52e0892008-11-11 21:34:44 +0000431 // LoadNode may already exist. This can happen when there is another
432 // load from the same location and producing the same type of value
433 // but it has different alignment or volatileness.
434 bool isNewLoad = true;
435 SUnit *LoadSU;
436 if (LoadNode->getNodeId() != -1) {
437 LoadSU = &SUnits[LoadNode->getNodeId()];
438 isNewLoad = false;
439 } else {
440 LoadSU = CreateNewSUnit(LoadNode);
441 LoadNode->setNodeId(LoadSU->NodeNum);
Dan Gohmane52e0892008-11-11 21:34:44 +0000442 ComputeLatency(LoadSU);
443 }
444
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000445 SUnit *NewSU = CreateNewSUnit(N);
Dan Gohman46520a22008-06-21 19:18:17 +0000446 assert(N->getNodeId() == -1 && "Node already inserted!");
447 N->setNodeId(NewSU->NodeNum);
Dan Gohmane6e13482008-06-21 15:52:51 +0000448
Dan Gohman17059682008-07-17 19:10:17 +0000449 const TargetInstrDesc &TID = TII->get(N->getMachineOpcode());
Dan Gohman856c0122008-02-16 00:25:40 +0000450 for (unsigned i = 0; i != TID.getNumOperands(); ++i) {
Chris Lattnerfd2e3382008-01-07 06:47:00 +0000451 if (TID.getOperandConstraint(i, TOI::TIED_TO) != -1) {
Evan Cheng79e97132007-10-05 01:39:18 +0000452 NewSU->isTwoAddress = true;
453 break;
454 }
455 }
Chris Lattnerfd2e3382008-01-07 06:47:00 +0000456 if (TID.isCommutable())
Evan Cheng79e97132007-10-05 01:39:18 +0000457 NewSU->isCommutable = true;
Evan Cheng79e97132007-10-05 01:39:18 +0000458 ComputeLatency(NewSU);
459
Dan Gohmaned0e8d42009-03-23 20:20:43 +0000460 // Record all the edges to and from the old SU, by category.
Dan Gohman15af5522009-03-06 02:23:01 +0000461 SmallVector<SDep, 4> ChainPreds;
Evan Cheng79e97132007-10-05 01:39:18 +0000462 SmallVector<SDep, 4> ChainSuccs;
463 SmallVector<SDep, 4> LoadPreds;
464 SmallVector<SDep, 4> NodePreds;
465 SmallVector<SDep, 4> NodeSuccs;
466 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
467 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +0000468 if (I->isCtrl())
Dan Gohman15af5522009-03-06 02:23:01 +0000469 ChainPreds.push_back(*I);
Evan Cheng3b245872010-02-05 01:27:11 +0000470 else if (isOperandOf(I->getSUnit(), LoadNode))
Dan Gohman2d170892008-12-09 22:54:47 +0000471 LoadPreds.push_back(*I);
Evan Cheng79e97132007-10-05 01:39:18 +0000472 else
Dan Gohman2d170892008-12-09 22:54:47 +0000473 NodePreds.push_back(*I);
Evan Cheng79e97132007-10-05 01:39:18 +0000474 }
475 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
476 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +0000477 if (I->isCtrl())
478 ChainSuccs.push_back(*I);
Evan Cheng79e97132007-10-05 01:39:18 +0000479 else
Dan Gohman2d170892008-12-09 22:54:47 +0000480 NodeSuccs.push_back(*I);
Evan Cheng79e97132007-10-05 01:39:18 +0000481 }
482
Dan Gohmaned0e8d42009-03-23 20:20:43 +0000483 // Now assign edges to the newly-created nodes.
Dan Gohman15af5522009-03-06 02:23:01 +0000484 for (unsigned i = 0, e = ChainPreds.size(); i != e; ++i) {
485 const SDep &Pred = ChainPreds[i];
486 RemovePred(SU, Pred);
Dan Gohman4370f262008-04-15 01:22:18 +0000487 if (isNewLoad)
Dan Gohman15af5522009-03-06 02:23:01 +0000488 AddPred(LoadSU, Pred);
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000489 }
Evan Cheng79e97132007-10-05 01:39:18 +0000490 for (unsigned i = 0, e = LoadPreds.size(); i != e; ++i) {
Dan Gohman2d170892008-12-09 22:54:47 +0000491 const SDep &Pred = LoadPreds[i];
492 RemovePred(SU, Pred);
Dan Gohman15af5522009-03-06 02:23:01 +0000493 if (isNewLoad)
Dan Gohman2d170892008-12-09 22:54:47 +0000494 AddPred(LoadSU, Pred);
Evan Cheng79e97132007-10-05 01:39:18 +0000495 }
496 for (unsigned i = 0, e = NodePreds.size(); i != e; ++i) {
Dan Gohman2d170892008-12-09 22:54:47 +0000497 const SDep &Pred = NodePreds[i];
498 RemovePred(SU, Pred);
499 AddPred(NewSU, Pred);
Evan Cheng79e97132007-10-05 01:39:18 +0000500 }
501 for (unsigned i = 0, e = NodeSuccs.size(); i != e; ++i) {
Dan Gohman2d170892008-12-09 22:54:47 +0000502 SDep D = NodeSuccs[i];
503 SUnit *SuccDep = D.getSUnit();
504 D.setSUnit(SU);
505 RemovePred(SuccDep, D);
506 D.setSUnit(NewSU);
507 AddPred(SuccDep, D);
Evan Cheng79e97132007-10-05 01:39:18 +0000508 }
509 for (unsigned i = 0, e = ChainSuccs.size(); i != e; ++i) {
Dan Gohman2d170892008-12-09 22:54:47 +0000510 SDep D = ChainSuccs[i];
511 SUnit *SuccDep = D.getSUnit();
512 D.setSUnit(SU);
513 RemovePred(SuccDep, D);
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000514 if (isNewLoad) {
Dan Gohman2d170892008-12-09 22:54:47 +0000515 D.setSUnit(LoadSU);
516 AddPred(SuccDep, D);
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000517 }
Evan Cheng79e97132007-10-05 01:39:18 +0000518 }
Dan Gohmaned0e8d42009-03-23 20:20:43 +0000519
520 // Add a data dependency to reflect that NewSU reads the value defined
521 // by LoadSU.
522 AddPred(NewSU, SDep(LoadSU, SDep::Data, LoadSU->Latency));
Evan Cheng79e97132007-10-05 01:39:18 +0000523
Evan Cheng91e0fc92007-12-18 08:42:10 +0000524 if (isNewLoad)
525 AvailableQueue->addNode(LoadSU);
Evan Cheng79e97132007-10-05 01:39:18 +0000526 AvailableQueue->addNode(NewSU);
527
528 ++NumUnfolds;
529
530 if (NewSU->NumSuccsLeft == 0) {
531 NewSU->isAvailable = true;
532 return NewSU;
Evan Cheng91e0fc92007-12-18 08:42:10 +0000533 }
534 SU = NewSU;
Evan Cheng79e97132007-10-05 01:39:18 +0000535 }
536
Evan Chengbdd062d2010-05-20 06:13:19 +0000537 DEBUG(dbgs() << " Duplicating SU #" << SU->NodeNum << "\n");
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000538 NewSU = CreateClone(SU);
Evan Cheng5924bf72007-09-25 01:54:36 +0000539
540 // New SUnit has the exact same predecessors.
541 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
542 I != E; ++I)
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000543 if (!I->isArtificial())
Dan Gohman2d170892008-12-09 22:54:47 +0000544 AddPred(NewSU, *I);
Evan Cheng5924bf72007-09-25 01:54:36 +0000545
546 // Only copy scheduled successors. Cut them from old node's successor
547 // list and move them over.
Dan Gohman2d170892008-12-09 22:54:47 +0000548 SmallVector<std::pair<SUnit *, SDep>, 4> DelDeps;
Evan Cheng5924bf72007-09-25 01:54:36 +0000549 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
550 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +0000551 if (I->isArtificial())
Evan Cheng5924bf72007-09-25 01:54:36 +0000552 continue;
Dan Gohman2d170892008-12-09 22:54:47 +0000553 SUnit *SuccSU = I->getSUnit();
554 if (SuccSU->isScheduled) {
Dan Gohman2d170892008-12-09 22:54:47 +0000555 SDep D = *I;
556 D.setSUnit(NewSU);
557 AddPred(SuccSU, D);
558 D.setSUnit(SU);
559 DelDeps.push_back(std::make_pair(SuccSU, D));
Evan Cheng5924bf72007-09-25 01:54:36 +0000560 }
561 }
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000562 for (unsigned i = 0, e = DelDeps.size(); i != e; ++i)
Dan Gohman2d170892008-12-09 22:54:47 +0000563 RemovePred(DelDeps[i].first, DelDeps[i].second);
Evan Cheng5924bf72007-09-25 01:54:36 +0000564
565 AvailableQueue->updateNode(SU);
566 AvailableQueue->addNode(NewSU);
567
Evan Cheng1ec79b42007-09-27 07:09:03 +0000568 ++NumDups;
Evan Cheng5924bf72007-09-25 01:54:36 +0000569 return NewSU;
570}
571
Evan Chengb2c42c62009-01-12 03:19:55 +0000572/// InsertCopiesAndMoveSuccs - Insert register copies and move all
573/// scheduled successors of the given SUnit to the last copy.
574void ScheduleDAGRRList::InsertCopiesAndMoveSuccs(SUnit *SU, unsigned Reg,
575 const TargetRegisterClass *DestRC,
576 const TargetRegisterClass *SrcRC,
Evan Cheng1ec79b42007-09-27 07:09:03 +0000577 SmallVector<SUnit*, 2> &Copies) {
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000578 SUnit *CopyFromSU = CreateNewSUnit(NULL);
Evan Cheng8e136a92007-09-26 21:36:17 +0000579 CopyFromSU->CopySrcRC = SrcRC;
580 CopyFromSU->CopyDstRC = DestRC;
Evan Cheng8e136a92007-09-26 21:36:17 +0000581
Roman Levenstein7e71b4b2008-03-26 09:18:09 +0000582 SUnit *CopyToSU = CreateNewSUnit(NULL);
Evan Cheng8e136a92007-09-26 21:36:17 +0000583 CopyToSU->CopySrcRC = DestRC;
584 CopyToSU->CopyDstRC = SrcRC;
585
586 // Only copy scheduled successors. Cut them from old node's successor
587 // list and move them over.
Dan Gohman2d170892008-12-09 22:54:47 +0000588 SmallVector<std::pair<SUnit *, SDep>, 4> DelDeps;
Evan Cheng8e136a92007-09-26 21:36:17 +0000589 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
590 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +0000591 if (I->isArtificial())
Evan Cheng8e136a92007-09-26 21:36:17 +0000592 continue;
Dan Gohman2d170892008-12-09 22:54:47 +0000593 SUnit *SuccSU = I->getSUnit();
594 if (SuccSU->isScheduled) {
595 SDep D = *I;
596 D.setSUnit(CopyToSU);
597 AddPred(SuccSU, D);
598 DelDeps.push_back(std::make_pair(SuccSU, *I));
Evan Cheng8e136a92007-09-26 21:36:17 +0000599 }
600 }
Evan Chengb2c42c62009-01-12 03:19:55 +0000601 for (unsigned i = 0, e = DelDeps.size(); i != e; ++i)
Dan Gohman2d170892008-12-09 22:54:47 +0000602 RemovePred(DelDeps[i].first, DelDeps[i].second);
Evan Cheng8e136a92007-09-26 21:36:17 +0000603
Dan Gohman2d170892008-12-09 22:54:47 +0000604 AddPred(CopyFromSU, SDep(SU, SDep::Data, SU->Latency, Reg));
605 AddPred(CopyToSU, SDep(CopyFromSU, SDep::Data, CopyFromSU->Latency, 0));
Evan Cheng8e136a92007-09-26 21:36:17 +0000606
607 AvailableQueue->updateNode(SU);
608 AvailableQueue->addNode(CopyFromSU);
609 AvailableQueue->addNode(CopyToSU);
Evan Cheng1ec79b42007-09-27 07:09:03 +0000610 Copies.push_back(CopyFromSU);
611 Copies.push_back(CopyToSU);
Evan Cheng8e136a92007-09-26 21:36:17 +0000612
Evan Chengb2c42c62009-01-12 03:19:55 +0000613 ++NumPRCopies;
Evan Cheng8e136a92007-09-26 21:36:17 +0000614}
615
616/// getPhysicalRegisterVT - Returns the ValueType of the physical register
617/// definition of the specified node.
618/// FIXME: Move to SelectionDAG?
Owen Anderson53aa7a92009-08-10 22:56:29 +0000619static EVT getPhysicalRegisterVT(SDNode *N, unsigned Reg,
Duncan Sands13237ac2008-06-06 12:08:01 +0000620 const TargetInstrInfo *TII) {
Dan Gohman17059682008-07-17 19:10:17 +0000621 const TargetInstrDesc &TID = TII->get(N->getMachineOpcode());
Evan Cheng8e136a92007-09-26 21:36:17 +0000622 assert(TID.ImplicitDefs && "Physical reg def must be in implicit def list!");
Chris Lattnerb0d06b42008-01-07 03:13:06 +0000623 unsigned NumRes = TID.getNumDefs();
624 for (const unsigned *ImpDef = TID.getImplicitDefs(); *ImpDef; ++ImpDef) {
Evan Cheng8e136a92007-09-26 21:36:17 +0000625 if (Reg == *ImpDef)
626 break;
627 ++NumRes;
628 }
629 return N->getValueType(NumRes);
630}
631
Evan Chengb8905c42009-03-04 01:41:49 +0000632/// CheckForLiveRegDef - Return true and update live register vector if the
633/// specified register def of the specified SUnit clobbers any "live" registers.
634static bool CheckForLiveRegDef(SUnit *SU, unsigned Reg,
635 std::vector<SUnit*> &LiveRegDefs,
636 SmallSet<unsigned, 4> &RegAdded,
637 SmallVector<unsigned, 4> &LRegs,
638 const TargetRegisterInfo *TRI) {
639 bool Added = false;
640 if (LiveRegDefs[Reg] && LiveRegDefs[Reg] != SU) {
641 if (RegAdded.insert(Reg)) {
642 LRegs.push_back(Reg);
643 Added = true;
644 }
645 }
646 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias)
647 if (LiveRegDefs[*Alias] && LiveRegDefs[*Alias] != SU) {
648 if (RegAdded.insert(*Alias)) {
649 LRegs.push_back(*Alias);
650 Added = true;
651 }
652 }
653 return Added;
654}
655
Evan Cheng5924bf72007-09-25 01:54:36 +0000656/// DelayForLiveRegsBottomUp - Returns true if it is necessary to delay
657/// scheduling of the given node to satisfy live physical register dependencies.
658/// If the specific node is the last one that's available to schedule, do
659/// whatever is necessary (i.e. backtracking or cloning) to make it possible.
Evan Cheng1ec79b42007-09-27 07:09:03 +0000660bool ScheduleDAGRRList::DelayForLiveRegsBottomUp(SUnit *SU,
661 SmallVector<unsigned, 4> &LRegs){
Dan Gohmanc07f6862008-09-23 18:50:48 +0000662 if (NumLiveRegs == 0)
Evan Cheng5924bf72007-09-25 01:54:36 +0000663 return false;
664
Evan Chenge6f92252007-09-27 18:46:06 +0000665 SmallSet<unsigned, 4> RegAdded;
Evan Cheng5924bf72007-09-25 01:54:36 +0000666 // If this node would clobber any "live" register, then it's not ready.
Evan Cheng5924bf72007-09-25 01:54:36 +0000667 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
668 I != E; ++I) {
Evan Chengb8905c42009-03-04 01:41:49 +0000669 if (I->isAssignedRegDep())
670 CheckForLiveRegDef(I->getSUnit(), I->getReg(), LiveRegDefs,
671 RegAdded, LRegs, TRI);
Evan Cheng5924bf72007-09-25 01:54:36 +0000672 }
673
Dan Gohman072734e2008-11-13 23:24:17 +0000674 for (SDNode *Node = SU->getNode(); Node; Node = Node->getFlaggedNode()) {
Evan Chengb8905c42009-03-04 01:41:49 +0000675 if (Node->getOpcode() == ISD::INLINEASM) {
676 // Inline asm can clobber physical defs.
677 unsigned NumOps = Node->getNumOperands();
Owen Anderson9f944592009-08-11 20:47:22 +0000678 if (Node->getOperand(NumOps-1).getValueType() == MVT::Flag)
Evan Chengb8905c42009-03-04 01:41:49 +0000679 --NumOps; // Ignore the flag operand.
680
Chris Lattner3b9f02a2010-04-07 05:20:54 +0000681 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
Evan Chengb8905c42009-03-04 01:41:49 +0000682 unsigned Flags =
683 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
Chris Lattner3b9f02a2010-04-07 05:20:54 +0000684 unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
Evan Chengb8905c42009-03-04 01:41:49 +0000685
686 ++i; // Skip the ID value.
Chris Lattner3b9f02a2010-04-07 05:20:54 +0000687 if (InlineAsm::isRegDefKind(Flags) ||
688 InlineAsm::isRegDefEarlyClobberKind(Flags)) {
Evan Chengb8905c42009-03-04 01:41:49 +0000689 // Check for def of register or earlyclobber register.
690 for (; NumVals; --NumVals, ++i) {
691 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
692 if (TargetRegisterInfo::isPhysicalRegister(Reg))
693 CheckForLiveRegDef(SU, Reg, LiveRegDefs, RegAdded, LRegs, TRI);
694 }
695 } else
696 i += NumVals;
697 }
698 continue;
699 }
700
Dan Gohman072734e2008-11-13 23:24:17 +0000701 if (!Node->isMachineOpcode())
Evan Cheng5924bf72007-09-25 01:54:36 +0000702 continue;
Dan Gohman17059682008-07-17 19:10:17 +0000703 const TargetInstrDesc &TID = TII->get(Node->getMachineOpcode());
Evan Cheng5924bf72007-09-25 01:54:36 +0000704 if (!TID.ImplicitDefs)
705 continue;
Evan Chengb8905c42009-03-04 01:41:49 +0000706 for (const unsigned *Reg = TID.ImplicitDefs; *Reg; ++Reg)
707 CheckForLiveRegDef(SU, *Reg, LiveRegDefs, RegAdded, LRegs, TRI);
Evan Cheng5924bf72007-09-25 01:54:36 +0000708 }
Evan Cheng5924bf72007-09-25 01:54:36 +0000709 return !LRegs.empty();
Evan Chengd38c22b2006-05-11 23:55:42 +0000710}
711
Evan Cheng1ec79b42007-09-27 07:09:03 +0000712
Evan Chengd38c22b2006-05-11 23:55:42 +0000713/// ListScheduleBottomUp - The main loop of list scheduling for bottom-up
714/// schedulers.
715void ScheduleDAGRRList::ListScheduleBottomUp() {
716 unsigned CurCycle = 0;
Dan Gohmanb9543432009-02-10 23:27:53 +0000717
718 // Release any predecessors of the special Exit node.
719 ReleasePredecessors(&ExitSU, CurCycle);
720
Evan Chengd38c22b2006-05-11 23:55:42 +0000721 // Add root to Available queue.
Dan Gohman4370f262008-04-15 01:22:18 +0000722 if (!SUnits.empty()) {
Dan Gohman5a390b92008-11-13 21:21:28 +0000723 SUnit *RootSU = &SUnits[DAG->getRoot().getNode()->getNodeId()];
Dan Gohman4370f262008-04-15 01:22:18 +0000724 assert(RootSU->Succs.empty() && "Graph root shouldn't have successors!");
725 RootSU->isAvailable = true;
726 AvailableQueue->push(RootSU);
727 }
Evan Chengd38c22b2006-05-11 23:55:42 +0000728
729 // While Available queue is not empty, grab the node with the highest
Dan Gohman54a187e2007-08-20 19:28:38 +0000730 // priority. If it is not ready put it back. Schedule the node.
Evan Cheng5924bf72007-09-25 01:54:36 +0000731 SmallVector<SUnit*, 4> NotReady;
Dan Gohmanfa63cc42008-06-23 21:15:00 +0000732 DenseMap<SUnit*, SmallVector<unsigned, 4> > LRegsMap;
Dan Gohmane6e13482008-06-21 15:52:51 +0000733 Sequence.reserve(SUnits.size());
Evan Chengd38c22b2006-05-11 23:55:42 +0000734 while (!AvailableQueue->empty()) {
Evan Cheng1ec79b42007-09-27 07:09:03 +0000735 bool Delayed = false;
Dan Gohmanfa63cc42008-06-23 21:15:00 +0000736 LRegsMap.clear();
Evan Cheng5924bf72007-09-25 01:54:36 +0000737 SUnit *CurSU = AvailableQueue->pop();
738 while (CurSU) {
Dan Gohman63be5312008-11-21 01:30:54 +0000739 SmallVector<unsigned, 4> LRegs;
740 if (!DelayForLiveRegsBottomUp(CurSU, LRegs))
741 break;
742 Delayed = true;
743 LRegsMap.insert(std::make_pair(CurSU, LRegs));
Evan Cheng1ec79b42007-09-27 07:09:03 +0000744
745 CurSU->isPending = true; // This SU is not in AvailableQueue right now.
746 NotReady.push_back(CurSU);
Evan Cheng5924bf72007-09-25 01:54:36 +0000747 CurSU = AvailableQueue->pop();
Evan Chengd38c22b2006-05-11 23:55:42 +0000748 }
Evan Cheng1ec79b42007-09-27 07:09:03 +0000749
750 // All candidates are delayed due to live physical reg dependencies.
751 // Try backtracking, code duplication, or inserting cross class copies
752 // to resolve it.
753 if (Delayed && !CurSU) {
754 for (unsigned i = 0, e = NotReady.size(); i != e; ++i) {
755 SUnit *TrySU = NotReady[i];
756 SmallVector<unsigned, 4> &LRegs = LRegsMap[TrySU];
757
758 // Try unscheduling up to the point where it's safe to schedule
759 // this node.
760 unsigned LiveCycle = CurCycle;
761 for (unsigned j = 0, ee = LRegs.size(); j != ee; ++j) {
762 unsigned Reg = LRegs[j];
763 unsigned LCycle = LiveRegCycles[Reg];
764 LiveCycle = std::min(LiveCycle, LCycle);
765 }
766 SUnit *OldSU = Sequence[LiveCycle];
767 if (!WillCreateCycle(TrySU, OldSU)) {
768 BacktrackBottomUp(TrySU, LiveCycle, CurCycle);
769 // Force the current node to be scheduled before the node that
770 // requires the physical reg dep.
771 if (OldSU->isAvailable) {
772 OldSU->isAvailable = false;
773 AvailableQueue->remove(OldSU);
774 }
Dan Gohman2d170892008-12-09 22:54:47 +0000775 AddPred(TrySU, SDep(OldSU, SDep::Order, /*Latency=*/1,
776 /*Reg=*/0, /*isNormalMemory=*/false,
777 /*isMustAlias=*/false, /*isArtificial=*/true));
Evan Cheng1ec79b42007-09-27 07:09:03 +0000778 // If one or more successors has been unscheduled, then the current
779 // node is no longer avaialable. Schedule a successor that's now
780 // available instead.
781 if (!TrySU->isAvailable)
782 CurSU = AvailableQueue->pop();
783 else {
784 CurSU = TrySU;
785 TrySU->isPending = false;
786 NotReady.erase(NotReady.begin()+i);
787 }
788 break;
789 }
790 }
791
792 if (!CurSU) {
Evan Chengb2c42c62009-01-12 03:19:55 +0000793 // Can't backtrack. If it's too expensive to copy the value, then try
794 // duplicate the nodes that produces these "too expensive to copy"
795 // values to break the dependency. In case even that doesn't work,
796 // insert cross class copies.
797 // If it's not too expensive, i.e. cost != -1, issue copies.
Evan Cheng1ec79b42007-09-27 07:09:03 +0000798 SUnit *TrySU = NotReady[0];
799 SmallVector<unsigned, 4> &LRegs = LRegsMap[TrySU];
800 assert(LRegs.size() == 1 && "Can't handle this yet!");
801 unsigned Reg = LRegs[0];
802 SUnit *LRDef = LiveRegDefs[Reg];
Owen Anderson53aa7a92009-08-10 22:56:29 +0000803 EVT VT = getPhysicalRegisterVT(LRDef->getNode(), Reg, TII);
Evan Chengb2c42c62009-01-12 03:19:55 +0000804 const TargetRegisterClass *RC =
Rafael Espindola38a7d7c2010-06-29 14:02:34 +0000805 TRI->getMinimalPhysRegClass(Reg, VT);
Evan Chengb2c42c62009-01-12 03:19:55 +0000806 const TargetRegisterClass *DestRC = TRI->getCrossCopyRegClass(RC);
807
808 // If cross copy register class is null, then it must be possible copy
809 // the value directly. Do not try duplicate the def.
810 SUnit *NewDef = 0;
811 if (DestRC)
812 NewDef = CopyAndMoveSuccessors(LRDef);
813 else
814 DestRC = RC;
Evan Cheng79e97132007-10-05 01:39:18 +0000815 if (!NewDef) {
Evan Chengb2c42c62009-01-12 03:19:55 +0000816 // Issue copies, these can be expensive cross register class copies.
Evan Cheng1ec79b42007-09-27 07:09:03 +0000817 SmallVector<SUnit*, 2> Copies;
Evan Chengb2c42c62009-01-12 03:19:55 +0000818 InsertCopiesAndMoveSuccs(LRDef, Reg, DestRC, RC, Copies);
Evan Chengbdd062d2010-05-20 06:13:19 +0000819 DEBUG(dbgs() << " Adding an edge from SU #" << TrySU->NodeNum
Chris Lattner4dc3edd2009-08-23 06:35:02 +0000820 << " to SU #" << Copies.front()->NodeNum << "\n");
Dan Gohman2d170892008-12-09 22:54:47 +0000821 AddPred(TrySU, SDep(Copies.front(), SDep::Order, /*Latency=*/1,
Dan Gohmanbf8e5202009-01-06 01:28:56 +0000822 /*Reg=*/0, /*isNormalMemory=*/false,
823 /*isMustAlias=*/false,
Dan Gohman2d170892008-12-09 22:54:47 +0000824 /*isArtificial=*/true));
Evan Cheng1ec79b42007-09-27 07:09:03 +0000825 NewDef = Copies.back();
826 }
827
Evan Chengbdd062d2010-05-20 06:13:19 +0000828 DEBUG(dbgs() << " Adding an edge from SU #" << NewDef->NodeNum
Chris Lattner4dc3edd2009-08-23 06:35:02 +0000829 << " to SU #" << TrySU->NodeNum << "\n");
Evan Cheng1ec79b42007-09-27 07:09:03 +0000830 LiveRegDefs[Reg] = NewDef;
Dan Gohman2d170892008-12-09 22:54:47 +0000831 AddPred(NewDef, SDep(TrySU, SDep::Order, /*Latency=*/1,
Dan Gohmanbf8e5202009-01-06 01:28:56 +0000832 /*Reg=*/0, /*isNormalMemory=*/false,
833 /*isMustAlias=*/false,
Dan Gohman2d170892008-12-09 22:54:47 +0000834 /*isArtificial=*/true));
Evan Cheng1ec79b42007-09-27 07:09:03 +0000835 TrySU->isAvailable = false;
836 CurSU = NewDef;
837 }
838
Dan Gohman60d68442009-01-29 19:49:27 +0000839 assert(CurSU && "Unable to resolve live physical register dependencies!");
Evan Cheng1ec79b42007-09-27 07:09:03 +0000840 }
841
Evan Chengd38c22b2006-05-11 23:55:42 +0000842 // Add the nodes that aren't ready back onto the available list.
Evan Cheng5924bf72007-09-25 01:54:36 +0000843 for (unsigned i = 0, e = NotReady.size(); i != e; ++i) {
844 NotReady[i]->isPending = false;
Evan Cheng1ec79b42007-09-27 07:09:03 +0000845 // May no longer be available due to backtracking.
Evan Cheng5924bf72007-09-25 01:54:36 +0000846 if (NotReady[i]->isAvailable)
847 AvailableQueue->push(NotReady[i]);
848 }
Evan Chengd38c22b2006-05-11 23:55:42 +0000849 NotReady.clear();
850
Dan Gohmanc602dd42008-11-21 00:10:42 +0000851 if (CurSU)
Evan Cheng5924bf72007-09-25 01:54:36 +0000852 ScheduleNodeBottomUp(CurSU, CurCycle);
Evan Cheng5924bf72007-09-25 01:54:36 +0000853 ++CurCycle;
Evan Chengbdd062d2010-05-20 06:13:19 +0000854 AvailableQueue->setCurCycle(CurCycle);
Evan Chengd38c22b2006-05-11 23:55:42 +0000855 }
856
Evan Chengd38c22b2006-05-11 23:55:42 +0000857 // Reverse the order if it is bottom up.
858 std::reverse(Sequence.begin(), Sequence.end());
859
Evan Chengd38c22b2006-05-11 23:55:42 +0000860#ifndef NDEBUG
Dan Gohman4ce15e12008-11-20 01:26:25 +0000861 VerifySchedule(isBottomUp);
Evan Chengd38c22b2006-05-11 23:55:42 +0000862#endif
863}
864
865//===----------------------------------------------------------------------===//
866// Top-Down Scheduling
867//===----------------------------------------------------------------------===//
868
869/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. Add it to
Dan Gohman54a187e2007-08-20 19:28:38 +0000870/// the AvailableQueue if the count reaches zero. Also update its cycle bound.
Dan Gohman60d68442009-01-29 19:49:27 +0000871void ScheduleDAGRRList::ReleaseSucc(SUnit *SU, const SDep *SuccEdge) {
Dan Gohman2d170892008-12-09 22:54:47 +0000872 SUnit *SuccSU = SuccEdge->getSUnit();
Reid Kleckner8ff5c192009-09-30 20:15:38 +0000873
Evan Chengd38c22b2006-05-11 23:55:42 +0000874#ifndef NDEBUG
Reid Kleckner8ff5c192009-09-30 20:15:38 +0000875 if (SuccSU->NumPredsLeft == 0) {
David Greenef34d7ac2010-01-05 01:24:54 +0000876 dbgs() << "*** Scheduling failed! ***\n";
Dan Gohman22d07b12008-11-18 02:06:40 +0000877 SuccSU->dump(this);
David Greenef34d7ac2010-01-05 01:24:54 +0000878 dbgs() << " has been released too many times!\n";
Torok Edwinfbcc6632009-07-14 16:55:14 +0000879 llvm_unreachable(0);
Evan Chengd38c22b2006-05-11 23:55:42 +0000880 }
881#endif
Reid Kleckner8ff5c192009-09-30 20:15:38 +0000882 --SuccSU->NumPredsLeft;
883
Dan Gohmanb9543432009-02-10 23:27:53 +0000884 // If all the node's predecessors are scheduled, this node is ready
885 // to be scheduled. Ignore the special ExitSU node.
886 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU) {
Evan Chengd38c22b2006-05-11 23:55:42 +0000887 SuccSU->isAvailable = true;
888 AvailableQueue->push(SuccSU);
889 }
890}
891
Dan Gohmanb9543432009-02-10 23:27:53 +0000892void ScheduleDAGRRList::ReleaseSuccessors(SUnit *SU) {
893 // Top down: release successors
894 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
895 I != E; ++I) {
896 assert(!I->isAssignedRegDep() &&
897 "The list-tdrr scheduler doesn't yet support physreg dependencies!");
898
899 ReleaseSucc(SU, &*I);
900 }
901}
902
Evan Chengd38c22b2006-05-11 23:55:42 +0000903/// ScheduleNodeTopDown - Add the node to the schedule. Decrement the pending
904/// count of its successors. If a successor pending count is zero, add it to
905/// the Available queue.
Evan Chengd12c97d2006-05-30 18:05:39 +0000906void ScheduleDAGRRList::ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle) {
David Greenef34d7ac2010-01-05 01:24:54 +0000907 DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: ");
Dan Gohman22d07b12008-11-18 02:06:40 +0000908 DEBUG(SU->dump(this));
Evan Chengd38c22b2006-05-11 23:55:42 +0000909
Dan Gohmandddc1ac2008-12-16 03:25:46 +0000910 assert(CurCycle >= SU->getDepth() && "Node scheduled above its depth!");
911 SU->setDepthToAtLeast(CurCycle);
Dan Gohman92a36d72008-11-17 21:31:02 +0000912 Sequence.push_back(SU);
Evan Chengd38c22b2006-05-11 23:55:42 +0000913
Dan Gohmanb9543432009-02-10 23:27:53 +0000914 ReleaseSuccessors(SU);
Evan Chengd38c22b2006-05-11 23:55:42 +0000915 SU->isScheduled = true;
Dan Gohman92a36d72008-11-17 21:31:02 +0000916 AvailableQueue->ScheduledNode(SU);
Evan Chengd38c22b2006-05-11 23:55:42 +0000917}
918
Dan Gohman54a187e2007-08-20 19:28:38 +0000919/// ListScheduleTopDown - The main loop of list scheduling for top-down
920/// schedulers.
Evan Chengd38c22b2006-05-11 23:55:42 +0000921void ScheduleDAGRRList::ListScheduleTopDown() {
922 unsigned CurCycle = 0;
Evan Chengbdd062d2010-05-20 06:13:19 +0000923 AvailableQueue->setCurCycle(CurCycle);
Evan Chengd38c22b2006-05-11 23:55:42 +0000924
Dan Gohmanb9543432009-02-10 23:27:53 +0000925 // Release any successors of the special Entry node.
926 ReleaseSuccessors(&EntrySU);
927
Evan Chengd38c22b2006-05-11 23:55:42 +0000928 // All leaves to Available queue.
929 for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
930 // It is available if it has no predecessors.
Dan Gohman4370f262008-04-15 01:22:18 +0000931 if (SUnits[i].Preds.empty()) {
Evan Chengd38c22b2006-05-11 23:55:42 +0000932 AvailableQueue->push(&SUnits[i]);
933 SUnits[i].isAvailable = true;
934 }
935 }
936
Evan Chengd38c22b2006-05-11 23:55:42 +0000937 // While Available queue is not empty, grab the node with the highest
Dan Gohman54a187e2007-08-20 19:28:38 +0000938 // priority. If it is not ready put it back. Schedule the node.
Dan Gohmane6e13482008-06-21 15:52:51 +0000939 Sequence.reserve(SUnits.size());
Evan Chengd38c22b2006-05-11 23:55:42 +0000940 while (!AvailableQueue->empty()) {
Evan Cheng5924bf72007-09-25 01:54:36 +0000941 SUnit *CurSU = AvailableQueue->pop();
Evan Chengd38c22b2006-05-11 23:55:42 +0000942
Dan Gohmanc602dd42008-11-21 00:10:42 +0000943 if (CurSU)
Evan Cheng5924bf72007-09-25 01:54:36 +0000944 ScheduleNodeTopDown(CurSU, CurCycle);
Dan Gohman4370f262008-04-15 01:22:18 +0000945 ++CurCycle;
Evan Chengbdd062d2010-05-20 06:13:19 +0000946 AvailableQueue->setCurCycle(CurCycle);
Evan Chengd38c22b2006-05-11 23:55:42 +0000947 }
948
Evan Chengd38c22b2006-05-11 23:55:42 +0000949#ifndef NDEBUG
Dan Gohman4ce15e12008-11-20 01:26:25 +0000950 VerifySchedule(isBottomUp);
Evan Chengd38c22b2006-05-11 23:55:42 +0000951#endif
952}
953
954
Evan Chengd38c22b2006-05-11 23:55:42 +0000955//===----------------------------------------------------------------------===//
956// RegReductionPriorityQueue Implementation
957//===----------------------------------------------------------------------===//
958//
959// This is a SchedulingPriorityQueue that schedules using Sethi Ullman numbers
960// to reduce register pressure.
961//
962namespace {
963 template<class SF>
964 class RegReductionPriorityQueue;
965
966 /// Sorting functions for the Available queue.
967 struct bu_ls_rr_sort : public std::binary_function<SUnit*, SUnit*, bool> {
968 RegReductionPriorityQueue<bu_ls_rr_sort> *SPQ;
969 bu_ls_rr_sort(RegReductionPriorityQueue<bu_ls_rr_sort> *spq) : SPQ(spq) {}
970 bu_ls_rr_sort(const bu_ls_rr_sort &RHS) : SPQ(RHS.SPQ) {}
971
972 bool operator()(const SUnit* left, const SUnit* right) const;
973 };
974
975 struct td_ls_rr_sort : public std::binary_function<SUnit*, SUnit*, bool> {
976 RegReductionPriorityQueue<td_ls_rr_sort> *SPQ;
977 td_ls_rr_sort(RegReductionPriorityQueue<td_ls_rr_sort> *spq) : SPQ(spq) {}
978 td_ls_rr_sort(const td_ls_rr_sort &RHS) : SPQ(RHS.SPQ) {}
979
980 bool operator()(const SUnit* left, const SUnit* right) const;
981 };
Bill Wendling8cbc25d2010-01-23 10:26:57 +0000982
983 struct src_ls_rr_sort : public std::binary_function<SUnit*, SUnit*, bool> {
984 RegReductionPriorityQueue<src_ls_rr_sort> *SPQ;
985 src_ls_rr_sort(RegReductionPriorityQueue<src_ls_rr_sort> *spq)
986 : SPQ(spq) {}
987 src_ls_rr_sort(const src_ls_rr_sort &RHS)
988 : SPQ(RHS.SPQ) {}
989
990 bool operator()(const SUnit* left, const SUnit* right) const;
991 };
Evan Chengbdd062d2010-05-20 06:13:19 +0000992
993 struct hybrid_ls_rr_sort : public std::binary_function<SUnit*, SUnit*, bool> {
994 RegReductionPriorityQueue<hybrid_ls_rr_sort> *SPQ;
995 hybrid_ls_rr_sort(RegReductionPriorityQueue<hybrid_ls_rr_sort> *spq)
996 : SPQ(spq) {}
997 hybrid_ls_rr_sort(const hybrid_ls_rr_sort &RHS)
998 : SPQ(RHS.SPQ) {}
Evan Chenga77f3d32010-07-21 06:09:07 +0000999
Evan Chengbdd062d2010-05-20 06:13:19 +00001000 bool operator()(const SUnit* left, const SUnit* right) const;
1001 };
Evan Chengd38c22b2006-05-11 23:55:42 +00001002} // end anonymous namespace
1003
Dan Gohman186f65d2008-11-20 03:30:37 +00001004/// CalcNodeSethiUllmanNumber - Compute Sethi Ullman number.
1005/// Smaller number is the higher priority.
Evan Cheng7e4abde2008-07-02 09:23:51 +00001006static unsigned
Dan Gohman186f65d2008-11-20 03:30:37 +00001007CalcNodeSethiUllmanNumber(const SUnit *SU, std::vector<unsigned> &SUNumbers) {
Evan Cheng7e4abde2008-07-02 09:23:51 +00001008 unsigned &SethiUllmanNumber = SUNumbers[SU->NodeNum];
1009 if (SethiUllmanNumber != 0)
1010 return SethiUllmanNumber;
1011
1012 unsigned Extra = 0;
1013 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
1014 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +00001015 if (I->isCtrl()) continue; // ignore chain preds
1016 SUnit *PredSU = I->getSUnit();
Dan Gohman186f65d2008-11-20 03:30:37 +00001017 unsigned PredSethiUllman = CalcNodeSethiUllmanNumber(PredSU, SUNumbers);
Evan Cheng7e4abde2008-07-02 09:23:51 +00001018 if (PredSethiUllman > SethiUllmanNumber) {
1019 SethiUllmanNumber = PredSethiUllman;
1020 Extra = 0;
Evan Cheng3a14efa2009-02-12 08:59:45 +00001021 } else if (PredSethiUllman == SethiUllmanNumber)
Evan Cheng7e4abde2008-07-02 09:23:51 +00001022 ++Extra;
1023 }
1024
1025 SethiUllmanNumber += Extra;
1026
1027 if (SethiUllmanNumber == 0)
1028 SethiUllmanNumber = 1;
1029
1030 return SethiUllmanNumber;
1031}
1032
Evan Chengd38c22b2006-05-11 23:55:42 +00001033namespace {
1034 template<class SF>
Nick Lewycky02d5f772009-10-25 06:33:48 +00001035 class RegReductionPriorityQueue : public SchedulingPriorityQueue {
Dan Gohman52c27382010-05-26 18:52:00 +00001036 std::vector<SUnit*> Queue;
1037 SF Picker;
Evan Chengbdd062d2010-05-20 06:13:19 +00001038 unsigned CurQueueId;
Evan Chenga77f3d32010-07-21 06:09:07 +00001039 bool isBottomUp;
Evan Chengd38c22b2006-05-11 23:55:42 +00001040
Dan Gohman3f656df2008-11-20 02:45:51 +00001041 protected:
1042 // SUnits - The SUnits for the current graph.
1043 std::vector<SUnit> *SUnits;
Evan Chenga77f3d32010-07-21 06:09:07 +00001044
1045 MachineFunction &MF;
Dan Gohman3f656df2008-11-20 02:45:51 +00001046 const TargetInstrInfo *TII;
1047 const TargetRegisterInfo *TRI;
Evan Chenga77f3d32010-07-21 06:09:07 +00001048 const TargetLowering *TLI;
Dan Gohman3f656df2008-11-20 02:45:51 +00001049 ScheduleDAGRRList *scheduleDAG;
1050
Dan Gohman186f65d2008-11-20 03:30:37 +00001051 // SethiUllmanNumbers - The SethiUllman number for each node.
1052 std::vector<unsigned> SethiUllmanNumbers;
1053
Evan Chenga77f3d32010-07-21 06:09:07 +00001054 /// RegPressure - Tracking current reg pressure per register class.
1055 ///
Evan Cheng28590382010-07-21 23:53:58 +00001056 std::vector<unsigned> RegPressure;
Evan Chenga77f3d32010-07-21 06:09:07 +00001057
1058 /// RegLimit - Tracking the number of allocatable registers per register
1059 /// class.
Evan Cheng28590382010-07-21 23:53:58 +00001060 std::vector<unsigned> RegLimit;
Evan Chenga77f3d32010-07-21 06:09:07 +00001061
Dan Gohman3f656df2008-11-20 02:45:51 +00001062 public:
Evan Chenga77f3d32010-07-21 06:09:07 +00001063 RegReductionPriorityQueue(MachineFunction &mf,
1064 bool isbottomup,
1065 const TargetInstrInfo *tii,
1066 const TargetRegisterInfo *tri,
1067 const TargetLowering *tli)
1068 : Picker(this), CurQueueId(0), isBottomUp(isbottomup),
1069 MF(mf), TII(tii), TRI(tri), TLI(tli), scheduleDAG(NULL) {
1070 unsigned NumRC = TRI->getNumRegClasses();
1071 RegLimit.resize(NumRC);
1072 RegPressure.resize(NumRC);
1073 std::fill(RegLimit.begin(), RegLimit.end(), 0);
1074 std::fill(RegPressure.begin(), RegPressure.end(), 0);
1075 for (TargetRegisterInfo::regclass_iterator I = TRI->regclass_begin(),
1076 E = TRI->regclass_end(); I != E; ++I)
1077 RegLimit[(*I)->getID()] = tri->getAllocatableSet(MF, *I).count() - 1;
1078 }
Dan Gohman3f656df2008-11-20 02:45:51 +00001079
1080 void initNodes(std::vector<SUnit> &sunits) {
1081 SUnits = &sunits;
Dan Gohman186f65d2008-11-20 03:30:37 +00001082 // Add pseudo dependency edges for two-address nodes.
1083 AddPseudoTwoAddrDeps();
Dan Gohman9a658d72009-03-24 00:49:12 +00001084 // Reroute edges to nodes with multiple uses.
1085 PrescheduleNodesWithMultipleUses();
Dan Gohman186f65d2008-11-20 03:30:37 +00001086 // Calculate node priorities.
1087 CalculateSethiUllmanNumbers();
Dan Gohman3f656df2008-11-20 02:45:51 +00001088 }
Evan Cheng5924bf72007-09-25 01:54:36 +00001089
Dan Gohman186f65d2008-11-20 03:30:37 +00001090 void addNode(const SUnit *SU) {
1091 unsigned SUSize = SethiUllmanNumbers.size();
1092 if (SUnits->size() > SUSize)
1093 SethiUllmanNumbers.resize(SUSize*2, 0);
1094 CalcNodeSethiUllmanNumber(SU, SethiUllmanNumbers);
1095 }
Evan Cheng5924bf72007-09-25 01:54:36 +00001096
Dan Gohman186f65d2008-11-20 03:30:37 +00001097 void updateNode(const SUnit *SU) {
1098 SethiUllmanNumbers[SU->NodeNum] = 0;
1099 CalcNodeSethiUllmanNumber(SU, SethiUllmanNumbers);
1100 }
Evan Cheng5924bf72007-09-25 01:54:36 +00001101
Dan Gohman186f65d2008-11-20 03:30:37 +00001102 void releaseState() {
Dan Gohman3f656df2008-11-20 02:45:51 +00001103 SUnits = 0;
Dan Gohman186f65d2008-11-20 03:30:37 +00001104 SethiUllmanNumbers.clear();
Evan Chenga77f3d32010-07-21 06:09:07 +00001105 std::fill(RegPressure.begin(), RegPressure.end(), 0);
Dan Gohman3f656df2008-11-20 02:45:51 +00001106 }
Dan Gohman186f65d2008-11-20 03:30:37 +00001107
1108 unsigned getNodePriority(const SUnit *SU) const {
1109 assert(SU->NodeNum < SethiUllmanNumbers.size());
1110 unsigned Opc = SU->getNode() ? SU->getNode()->getOpcode() : 0;
Dan Gohman261ee6b2009-01-07 22:30:55 +00001111 if (Opc == ISD::TokenFactor || Opc == ISD::CopyToReg)
Dan Gohman186f65d2008-11-20 03:30:37 +00001112 // CopyToReg should be close to its uses to facilitate coalescing and
1113 // avoid spilling.
1114 return 0;
Chris Lattnerb06015a2010-02-09 19:54:29 +00001115 if (Opc == TargetOpcode::EXTRACT_SUBREG ||
1116 Opc == TargetOpcode::SUBREG_TO_REG ||
1117 Opc == TargetOpcode::INSERT_SUBREG)
Dan Gohman3027bb62009-04-16 20:57:10 +00001118 // EXTRACT_SUBREG, INSERT_SUBREG, and SUBREG_TO_REG nodes should be
1119 // close to their uses to facilitate coalescing.
Dan Gohman186f65d2008-11-20 03:30:37 +00001120 return 0;
Dan Gohman6571ef32009-02-11 21:29:39 +00001121 if (SU->NumSuccs == 0 && SU->NumPreds != 0)
1122 // If SU does not have a register use, i.e. it doesn't produce a value
1123 // that would be consumed (e.g. store), then it terminates a chain of
1124 // computation. Give it a large SethiUllman number so it will be
1125 // scheduled right before its predecessors that it doesn't lengthen
1126 // their live ranges.
Dan Gohman186f65d2008-11-20 03:30:37 +00001127 return 0xffff;
Dan Gohman6571ef32009-02-11 21:29:39 +00001128 if (SU->NumPreds == 0 && SU->NumSuccs != 0)
1129 // If SU does not have a register def, schedule it close to its uses
1130 // because it does not lengthen any live ranges.
Dan Gohman186f65d2008-11-20 03:30:37 +00001131 return 0;
Dan Gohman261ee6b2009-01-07 22:30:55 +00001132 return SethiUllmanNumbers[SU->NodeNum];
Dan Gohman186f65d2008-11-20 03:30:37 +00001133 }
Bill Wendling0a7056f2010-01-05 23:48:12 +00001134
1135 unsigned getNodeOrdering(const SUnit *SU) const {
1136 return scheduleDAG->DAG->GetOrdering(SU->getNode());
1137 }
Evan Chengbdd062d2010-05-20 06:13:19 +00001138
Evan Chengd38c22b2006-05-11 23:55:42 +00001139 bool empty() const { return Queue.empty(); }
1140
1141 void push(SUnit *U) {
Roman Levenstein6b371142008-04-29 09:07:59 +00001142 assert(!U->NodeQueueId && "Node in the queue already");
Evan Chengbdd062d2010-05-20 06:13:19 +00001143 U->NodeQueueId = ++CurQueueId;
Dan Gohman52c27382010-05-26 18:52:00 +00001144 Queue.push_back(U);
Evan Chengd38c22b2006-05-11 23:55:42 +00001145 }
Roman Levenstein6b371142008-04-29 09:07:59 +00001146
Evan Chengd38c22b2006-05-11 23:55:42 +00001147 SUnit *pop() {
Evan Chengd12c97d2006-05-30 18:05:39 +00001148 if (empty()) return NULL;
Dan Gohman52c27382010-05-26 18:52:00 +00001149 std::vector<SUnit *>::iterator Best = Queue.begin();
Oscar Fuentesa97311f2010-05-30 13:14:21 +00001150 for (std::vector<SUnit *>::iterator I = llvm::next(Queue.begin()),
Dan Gohman52c27382010-05-26 18:52:00 +00001151 E = Queue.end(); I != E; ++I)
1152 if (Picker(*Best, *I))
1153 Best = I;
1154 SUnit *V = *Best;
1155 if (Best != prior(Queue.end()))
1156 std::swap(*Best, Queue.back());
1157 Queue.pop_back();
Roman Levenstein6b371142008-04-29 09:07:59 +00001158 V->NodeQueueId = 0;
Evan Chengd38c22b2006-05-11 23:55:42 +00001159 return V;
1160 }
Evan Chengfd2c5dd2006-11-04 09:44:31 +00001161
Evan Cheng5924bf72007-09-25 01:54:36 +00001162 void remove(SUnit *SU) {
Roman Levenstein6b371142008-04-29 09:07:59 +00001163 assert(!Queue.empty() && "Queue is empty!");
Dan Gohmana4db3352008-06-21 18:35:25 +00001164 assert(SU->NodeQueueId != 0 && "Not in queue!");
Dan Gohman52c27382010-05-26 18:52:00 +00001165 std::vector<SUnit *>::iterator I = std::find(Queue.begin(), Queue.end(),
1166 SU);
1167 if (I != prior(Queue.end()))
1168 std::swap(*I, Queue.back());
1169 Queue.pop_back();
Roman Levenstein6b371142008-04-29 09:07:59 +00001170 SU->NodeQueueId = 0;
Evan Chengfd2c5dd2006-11-04 09:44:31 +00001171 }
Dan Gohman3f656df2008-11-20 02:45:51 +00001172
Evan Cheng28590382010-07-21 23:53:58 +00001173 bool HighRegPressure(const SUnit *SU) const {
Evan Chenga77f3d32010-07-21 06:09:07 +00001174 if (!TLI)
Evan Cheng28590382010-07-21 23:53:58 +00001175 return false;
Evan Chenga77f3d32010-07-21 06:09:07 +00001176
Evan Chenga77f3d32010-07-21 06:09:07 +00001177 for (SUnit::const_pred_iterator I = SU->Preds.begin(),E = SU->Preds.end();
1178 I != E; ++I) {
1179 if (I->isCtrl())
1180 continue;
1181 SUnit *PredSU = I->getSUnit();
Evan Cheng28590382010-07-21 23:53:58 +00001182 const SDNode *PN = PredSU->getNode();
1183 if (!PN->isMachineOpcode()) {
1184 if (PN->getOpcode() == ISD::CopyToReg) {
1185 EVT VT = PN->getOperand(1).getValueType();
1186 unsigned RCId = TLI->getRepRegClassFor(VT)->getID();
1187 unsigned Cost = TLI->getRepRegClassCostFor(VT);
1188 if (RegLimit[RCId] < (RegPressure[RCId] + Cost))
1189 return true;
1190 }
Evan Chenga77f3d32010-07-21 06:09:07 +00001191 continue;
Evan Cheng28590382010-07-21 23:53:58 +00001192 }
1193 unsigned NumDefs = TII->get(PN->getMachineOpcode()).getNumDefs();
Evan Chenga77f3d32010-07-21 06:09:07 +00001194 for (unsigned i = 0; i != NumDefs; ++i) {
Evan Cheng28590382010-07-21 23:53:58 +00001195 EVT VT = PN->getValueType(i);
1196 if (!PN->hasAnyUseOfValue(i))
Evan Chenga77f3d32010-07-21 06:09:07 +00001197 continue;
1198 unsigned RCId = TLI->getRepRegClassFor(VT)->getID();
1199 unsigned Cost = TLI->getRepRegClassCostFor(VT);
1200 // Check if this increases register pressure of the specific register
1201 // class to the point where it would cause spills.
Evan Cheng28590382010-07-21 23:53:58 +00001202 if (RegLimit[RCId] < (RegPressure[RCId] + Cost))
1203 return true;
Evan Chenga77f3d32010-07-21 06:09:07 +00001204 }
1205 }
1206
Evan Cheng28590382010-07-21 23:53:58 +00001207 return false;
Evan Chenga77f3d32010-07-21 06:09:07 +00001208 }
1209
1210 void OpenPredLives(SUnit *SU) {
1211 const SDNode *N = SU->getNode();
1212 if (!N->isMachineOpcode())
1213 return;
1214 unsigned Opc = N->getMachineOpcode();
Evan Cheng28590382010-07-21 23:53:58 +00001215 if (Opc == TargetOpcode::COPY_TO_REGCLASS ||
Evan Chenga77f3d32010-07-21 06:09:07 +00001216 Opc == TargetOpcode::REG_SEQUENCE ||
1217 Opc == TargetOpcode::IMPLICIT_DEF)
1218 return;
1219
1220 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
1221 I != E; ++I) {
1222 if (I->isCtrl())
1223 continue;
1224 SUnit *PredSU = I->getSUnit();
Evan Cheng28590382010-07-21 23:53:58 +00001225 if (PredSU->NumSuccsLeft != PredSU->NumSuccs)
Evan Chenga77f3d32010-07-21 06:09:07 +00001226 continue;
1227 const SDNode *PN = PredSU->getNode();
Evan Cheng28590382010-07-21 23:53:58 +00001228 if (!PN->isMachineOpcode()) {
1229 if (PN->getOpcode() == ISD::CopyToReg) {
1230 EVT VT = PN->getOperand(1).getValueType();
1231 unsigned RCId = TLI->getRepRegClassFor(VT)->getID();
1232 RegPressure[RCId] += TLI->getRepRegClassCostFor(VT);
1233 }
1234 continue;
1235 }
1236 unsigned POpc = PN->getMachineOpcode();
1237 if (POpc == TargetOpcode::IMPLICIT_DEF)
Evan Chenga77f3d32010-07-21 06:09:07 +00001238 continue;
1239 unsigned NumDefs = TII->get(PN->getMachineOpcode()).getNumDefs();
1240 for (unsigned i = 0; i != NumDefs; ++i) {
1241 EVT VT = PN->getValueType(i);
1242 if (!PN->hasAnyUseOfValue(i))
1243 continue;
1244 unsigned RCId = TLI->getRepRegClassFor(VT)->getID();
1245 RegPressure[RCId] += TLI->getRepRegClassCostFor(VT);
1246 }
1247 }
1248
1249 if (!SU->NumSuccs)
1250 return;
1251 unsigned NumDefs = TII->get(N->getMachineOpcode()).getNumDefs();
1252 for (unsigned i = 0; i != NumDefs; ++i) {
1253 EVT VT = N->getValueType(i);
1254 if (!N->hasAnyUseOfValue(i))
1255 continue;
1256 unsigned RCId = TLI->getRepRegClassFor(VT)->getID();
Evan Cheng28590382010-07-21 23:53:58 +00001257 if (RegPressure[RCId] < TLI->getRepRegClassCostFor(VT))
Evan Chenga77f3d32010-07-21 06:09:07 +00001258 // Register pressure tracking is imprecise. This can happen.
1259 RegPressure[RCId] = 0;
Evan Cheng28590382010-07-21 23:53:58 +00001260 else
1261 RegPressure[RCId] -= TLI->getRepRegClassCostFor(VT);
Evan Chenga77f3d32010-07-21 06:09:07 +00001262 }
1263 }
1264
1265 void ClosePredLives(SUnit *SU) {
1266 const SDNode *N = SU->getNode();
1267 if (!N->isMachineOpcode())
1268 return;
1269 unsigned Opc = N->getMachineOpcode();
Evan Cheng28590382010-07-21 23:53:58 +00001270 if (Opc == TargetOpcode::COPY_TO_REGCLASS ||
Evan Chenga77f3d32010-07-21 06:09:07 +00001271 Opc == TargetOpcode::REG_SEQUENCE ||
1272 Opc == TargetOpcode::IMPLICIT_DEF)
1273 return;
1274
1275 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
1276 I != E; ++I) {
1277 if (I->isCtrl())
1278 continue;
1279 SUnit *PredSU = I->getSUnit();
Evan Cheng28590382010-07-21 23:53:58 +00001280 if (PredSU->NumSuccsLeft != PredSU->NumSuccs)
Evan Chenga77f3d32010-07-21 06:09:07 +00001281 continue;
1282 const SDNode *PN = PredSU->getNode();
Evan Cheng28590382010-07-21 23:53:58 +00001283 if (!PN->isMachineOpcode()) {
1284 if (PN->getOpcode() == ISD::CopyToReg) {
1285 EVT VT = PN->getOperand(1).getValueType();
1286 unsigned RCId = TLI->getRepRegClassFor(VT)->getID();
1287 RegPressure[RCId] += TLI->getRepRegClassCostFor(VT);
1288 }
1289 continue;
1290 }
1291 unsigned POpc = PN->getMachineOpcode();
1292 if (POpc == TargetOpcode::IMPLICIT_DEF)
Evan Chenga77f3d32010-07-21 06:09:07 +00001293 continue;
1294 unsigned NumDefs = TII->get(PN->getMachineOpcode()).getNumDefs();
1295 for (unsigned i = 0; i != NumDefs; ++i) {
1296 EVT VT = PN->getValueType(i);
1297 if (!PN->hasAnyUseOfValue(i))
1298 continue;
1299 unsigned RCId = TLI->getRepRegClassFor(VT)->getID();
Evan Cheng28590382010-07-21 23:53:58 +00001300 if (RegPressure[RCId] < TLI->getRepRegClassCostFor(VT))
Evan Chenga77f3d32010-07-21 06:09:07 +00001301 // Register pressure tracking is imprecise. This can happen.
1302 RegPressure[RCId] = 0;
Evan Cheng28590382010-07-21 23:53:58 +00001303 else
1304 RegPressure[RCId] -= TLI->getRepRegClassCostFor(VT);
Evan Chenga77f3d32010-07-21 06:09:07 +00001305 }
1306 }
1307
1308 if (!SU->NumSuccs)
1309 return;
1310 unsigned NumDefs = TII->get(N->getMachineOpcode()).getNumDefs();
1311 for (unsigned i = NumDefs, e = N->getNumValues(); i != e; ++i) {
1312 EVT VT = N->getValueType(i);
1313 if (VT == MVT::Flag || VT == MVT::Other)
1314 continue;
1315 if (!N->hasAnyUseOfValue(i))
1316 continue;
1317 unsigned RCId = TLI->getRepRegClassFor(VT)->getID();
1318 RegPressure[RCId] += TLI->getRepRegClassCostFor(VT);
1319 }
1320 }
1321
1322 void ScheduledNode(SUnit *SU) {
1323 if (!TLI || !isBottomUp)
1324 return;
1325 OpenPredLives(SU);
1326 dumpRegPressure();
1327 }
1328
1329 void UnscheduledNode(SUnit *SU) {
1330 if (!TLI || !isBottomUp)
1331 return;
1332 ClosePredLives(SU);
1333 dumpRegPressure();
1334 }
1335
Dan Gohman3f656df2008-11-20 02:45:51 +00001336 void setScheduleDAG(ScheduleDAGRRList *scheduleDag) {
1337 scheduleDAG = scheduleDag;
1338 }
1339
Evan Chenga77f3d32010-07-21 06:09:07 +00001340 void dumpRegPressure() const {
1341 for (TargetRegisterInfo::regclass_iterator I = TRI->regclass_begin(),
1342 E = TRI->regclass_end(); I != E; ++I) {
1343 const TargetRegisterClass *RC = *I;
1344 unsigned Id = RC->getID();
1345 unsigned RP = RegPressure[Id];
1346 if (!RP) continue;
1347 DEBUG(dbgs() << RC->getName() << ": " << RP << " / " << RegLimit[Id]
1348 << '\n');
1349 }
1350 }
1351
Dan Gohman3f656df2008-11-20 02:45:51 +00001352 protected:
1353 bool canClobber(const SUnit *SU, const SUnit *Op);
1354 void AddPseudoTwoAddrDeps();
Dan Gohman9a658d72009-03-24 00:49:12 +00001355 void PrescheduleNodesWithMultipleUses();
Evan Cheng6730f032007-01-08 23:55:53 +00001356 void CalculateSethiUllmanNumbers();
Evan Cheng7e4abde2008-07-02 09:23:51 +00001357 };
1358
Dan Gohman186f65d2008-11-20 03:30:37 +00001359 typedef RegReductionPriorityQueue<bu_ls_rr_sort>
1360 BURegReductionPriorityQueue;
Evan Cheng7e4abde2008-07-02 09:23:51 +00001361
Dan Gohman186f65d2008-11-20 03:30:37 +00001362 typedef RegReductionPriorityQueue<td_ls_rr_sort>
1363 TDRegReductionPriorityQueue;
Bill Wendling8cbc25d2010-01-23 10:26:57 +00001364
1365 typedef RegReductionPriorityQueue<src_ls_rr_sort>
1366 SrcRegReductionPriorityQueue;
Evan Chengbdd062d2010-05-20 06:13:19 +00001367
1368 typedef RegReductionPriorityQueue<hybrid_ls_rr_sort>
1369 HybridBURRPriorityQueue;
Evan Chengd38c22b2006-05-11 23:55:42 +00001370}
1371
Evan Chengb9e3db62007-03-14 22:43:40 +00001372/// closestSucc - Returns the scheduled cycle of the successor which is
Dan Gohmana19c6622009-03-12 23:55:10 +00001373/// closest to the current cycle.
Evan Cheng28748552007-03-13 23:25:11 +00001374static unsigned closestSucc(const SUnit *SU) {
Dan Gohmandddc1ac2008-12-16 03:25:46 +00001375 unsigned MaxHeight = 0;
Evan Cheng28748552007-03-13 23:25:11 +00001376 for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
Evan Chengb9e3db62007-03-14 22:43:40 +00001377 I != E; ++I) {
Evan Chengce3bbe52009-02-10 08:30:11 +00001378 if (I->isCtrl()) continue; // ignore chain succs
Dan Gohmandddc1ac2008-12-16 03:25:46 +00001379 unsigned Height = I->getSUnit()->getHeight();
Evan Chengb9e3db62007-03-14 22:43:40 +00001380 // If there are bunch of CopyToRegs stacked up, they should be considered
1381 // to be at the same position.
Dan Gohman2d170892008-12-09 22:54:47 +00001382 if (I->getSUnit()->getNode() &&
1383 I->getSUnit()->getNode()->getOpcode() == ISD::CopyToReg)
Dan Gohmandddc1ac2008-12-16 03:25:46 +00001384 Height = closestSucc(I->getSUnit())+1;
1385 if (Height > MaxHeight)
1386 MaxHeight = Height;
Evan Chengb9e3db62007-03-14 22:43:40 +00001387 }
Dan Gohmandddc1ac2008-12-16 03:25:46 +00001388 return MaxHeight;
Evan Cheng28748552007-03-13 23:25:11 +00001389}
1390
Evan Cheng61bc51e2007-12-20 02:22:36 +00001391/// calcMaxScratches - Returns an cost estimate of the worse case requirement
Evan Cheng3a14efa2009-02-12 08:59:45 +00001392/// for scratch registers, i.e. number of data dependencies.
Evan Cheng61bc51e2007-12-20 02:22:36 +00001393static unsigned calcMaxScratches(const SUnit *SU) {
1394 unsigned Scratches = 0;
1395 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
Evan Chengb5704992009-02-12 09:52:13 +00001396 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +00001397 if (I->isCtrl()) continue; // ignore chain preds
Evan Chengb5704992009-02-12 09:52:13 +00001398 Scratches++;
1399 }
Evan Cheng61bc51e2007-12-20 02:22:36 +00001400 return Scratches;
1401}
1402
Bill Wendling8cbc25d2010-01-23 10:26:57 +00001403template <typename RRSort>
1404static bool BURRSort(const SUnit *left, const SUnit *right,
1405 const RegReductionPriorityQueue<RRSort> *SPQ) {
Evan Cheng6730f032007-01-08 23:55:53 +00001406 unsigned LPriority = SPQ->getNodePriority(left);
1407 unsigned RPriority = SPQ->getNodePriority(right);
Evan Cheng73bdf042008-03-01 00:39:47 +00001408 if (LPriority != RPriority)
1409 return LPriority > RPriority;
1410
1411 // Try schedule def + use closer when Sethi-Ullman numbers are the same.
1412 // e.g.
1413 // t1 = op t2, c1
1414 // t3 = op t4, c2
1415 //
1416 // and the following instructions are both ready.
1417 // t2 = op c3
1418 // t4 = op c4
1419 //
1420 // Then schedule t2 = op first.
1421 // i.e.
1422 // t4 = op c4
1423 // t2 = op c3
1424 // t1 = op t2, c1
1425 // t3 = op t4, c2
1426 //
1427 // This creates more short live intervals.
1428 unsigned LDist = closestSucc(left);
1429 unsigned RDist = closestSucc(right);
1430 if (LDist != RDist)
1431 return LDist < RDist;
1432
Evan Cheng3a14efa2009-02-12 08:59:45 +00001433 // How many registers becomes live when the node is scheduled.
Evan Cheng73bdf042008-03-01 00:39:47 +00001434 unsigned LScratch = calcMaxScratches(left);
1435 unsigned RScratch = calcMaxScratches(right);
1436 if (LScratch != RScratch)
1437 return LScratch > RScratch;
1438
Dan Gohmandddc1ac2008-12-16 03:25:46 +00001439 if (left->getHeight() != right->getHeight())
1440 return left->getHeight() > right->getHeight();
Evan Cheng73bdf042008-03-01 00:39:47 +00001441
Dan Gohmandddc1ac2008-12-16 03:25:46 +00001442 if (left->getDepth() != right->getDepth())
1443 return left->getDepth() < right->getDepth();
Evan Cheng73bdf042008-03-01 00:39:47 +00001444
Roman Levenstein6b371142008-04-29 09:07:59 +00001445 assert(left->NodeQueueId && right->NodeQueueId &&
1446 "NodeQueueId cannot be zero");
1447 return (left->NodeQueueId > right->NodeQueueId);
Evan Chengd38c22b2006-05-11 23:55:42 +00001448}
1449
Bill Wendling8cbc25d2010-01-23 10:26:57 +00001450// Bottom up
1451bool bu_ls_rr_sort::operator()(const SUnit *left, const SUnit *right) const {
1452 return BURRSort(left, right, SPQ);
1453}
1454
1455// Source order, otherwise bottom up.
Evan Chengbdd062d2010-05-20 06:13:19 +00001456bool src_ls_rr_sort::operator()(const SUnit *left, const SUnit *right) const {
Bill Wendling8cbc25d2010-01-23 10:26:57 +00001457 unsigned LOrder = SPQ->getNodeOrdering(left);
1458 unsigned ROrder = SPQ->getNodeOrdering(right);
1459
1460 // Prefer an ordering where the lower the non-zero order number, the higher
1461 // the preference.
1462 if ((LOrder || ROrder) && LOrder != ROrder)
1463 return LOrder != 0 && (LOrder < ROrder || ROrder == 0);
1464
1465 return BURRSort(left, right, SPQ);
1466}
1467
Evan Chengbdd062d2010-05-20 06:13:19 +00001468bool hybrid_ls_rr_sort::operator()(const SUnit *left, const SUnit *right) const{
Evan Cheng28590382010-07-21 23:53:58 +00001469 bool LHigh = SPQ->HighRegPressure(left);
1470 bool RHigh = SPQ->HighRegPressure(right);
1471 if (LHigh && !RHigh)
1472 return true;
1473 else if (!LHigh && RHigh)
1474 return false;
1475 else if (!LHigh && !RHigh) {
1476 // Low register pressure situation, schedule for latency if possible.
1477 bool LStall = left->SchedulingPref == Sched::Latency &&
1478 SPQ->getCurCycle() < left->getHeight();
1479 bool RStall = right->SchedulingPref == Sched::Latency &&
1480 SPQ->getCurCycle() < right->getHeight();
1481 // If scheduling one of the node will cause a pipeline stall, delay it.
1482 // If scheduling either one of the node will cause a pipeline stall, sort
1483 // them according to their height.
1484 // If neither will cause a pipeline stall, try to reduce register pressure.
1485 if (LStall) {
1486 if (!RStall)
1487 return true;
1488 if (left->getHeight() != right->getHeight())
1489 return left->getHeight() > right->getHeight();
1490 } else if (RStall)
Evan Chengbdd062d2010-05-20 06:13:19 +00001491 return false;
Evan Chengcc2efe12010-05-28 23:26:21 +00001492
Evan Cheng28590382010-07-21 23:53:58 +00001493 // If either node is scheduling for latency, sort them by height and latency
1494 // first.
1495 if (left->SchedulingPref == Sched::Latency ||
1496 right->SchedulingPref == Sched::Latency) {
1497 if (left->getHeight() != right->getHeight())
1498 return left->getHeight() > right->getHeight();
1499 if (left->Latency != right->Latency)
1500 return left->Latency > right->Latency;
1501 }
Evan Chengcc2efe12010-05-28 23:26:21 +00001502 }
1503
Evan Chengbdd062d2010-05-20 06:13:19 +00001504 return BURRSort(left, right, SPQ);
1505}
1506
Dan Gohman3f656df2008-11-20 02:45:51 +00001507template<class SF>
Evan Cheng7e4abde2008-07-02 09:23:51 +00001508bool
Dan Gohman3f656df2008-11-20 02:45:51 +00001509RegReductionPriorityQueue<SF>::canClobber(const SUnit *SU, const SUnit *Op) {
Evan Chengfd2c5dd2006-11-04 09:44:31 +00001510 if (SU->isTwoAddress) {
Dan Gohman1ddfcba2008-11-13 21:36:12 +00001511 unsigned Opc = SU->getNode()->getMachineOpcode();
Chris Lattner03ad8852008-01-07 07:27:27 +00001512 const TargetInstrDesc &TID = TII->get(Opc);
Chris Lattnerfd2e3382008-01-07 06:47:00 +00001513 unsigned NumRes = TID.getNumDefs();
Dan Gohman0340d1e2008-02-15 20:50:13 +00001514 unsigned NumOps = TID.getNumOperands() - NumRes;
Evan Chengfd2c5dd2006-11-04 09:44:31 +00001515 for (unsigned i = 0; i != NumOps; ++i) {
Chris Lattnerfd2e3382008-01-07 06:47:00 +00001516 if (TID.getOperandConstraint(i+NumRes, TOI::TIED_TO) != -1) {
Dan Gohman1ddfcba2008-11-13 21:36:12 +00001517 SDNode *DU = SU->getNode()->getOperand(i).getNode();
Dan Gohman46520a22008-06-21 19:18:17 +00001518 if (DU->getNodeId() != -1 &&
1519 Op->OrigNode == &(*SUnits)[DU->getNodeId()])
Evan Chengfd2c5dd2006-11-04 09:44:31 +00001520 return true;
1521 }
1522 }
Evan Chengd38c22b2006-05-11 23:55:42 +00001523 }
Evan Chengd38c22b2006-05-11 23:55:42 +00001524 return false;
1525}
1526
Evan Chenga5e595d2007-09-28 22:32:30 +00001527/// hasCopyToRegUse - Return true if SU has a value successor that is a
1528/// CopyToReg node.
Dan Gohmane955c482008-08-05 14:45:15 +00001529static bool hasCopyToRegUse(const SUnit *SU) {
Evan Chenga5e595d2007-09-28 22:32:30 +00001530 for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
1531 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +00001532 if (I->isCtrl()) continue;
1533 const SUnit *SuccSU = I->getSUnit();
Dan Gohman1ddfcba2008-11-13 21:36:12 +00001534 if (SuccSU->getNode() && SuccSU->getNode()->getOpcode() == ISD::CopyToReg)
Evan Chenga5e595d2007-09-28 22:32:30 +00001535 return true;
1536 }
1537 return false;
1538}
1539
Evan Chengf9891412007-12-20 09:25:31 +00001540/// canClobberPhysRegDefs - True if SU would clobber one of SuccSU's
Dan Gohmanea045202008-06-21 22:05:24 +00001541/// physical register defs.
Dan Gohmane955c482008-08-05 14:45:15 +00001542static bool canClobberPhysRegDefs(const SUnit *SuccSU, const SUnit *SU,
Evan Chengf9891412007-12-20 09:25:31 +00001543 const TargetInstrInfo *TII,
Dan Gohman3a4be0f2008-02-10 18:45:23 +00001544 const TargetRegisterInfo *TRI) {
Dan Gohman1ddfcba2008-11-13 21:36:12 +00001545 SDNode *N = SuccSU->getNode();
Dan Gohman17059682008-07-17 19:10:17 +00001546 unsigned NumDefs = TII->get(N->getMachineOpcode()).getNumDefs();
1547 const unsigned *ImpDefs = TII->get(N->getMachineOpcode()).getImplicitDefs();
Dan Gohmanea045202008-06-21 22:05:24 +00001548 assert(ImpDefs && "Caller should check hasPhysRegDefs");
Dan Gohmana366da12009-03-23 16:23:01 +00001549 for (const SDNode *SUNode = SU->getNode(); SUNode;
1550 SUNode = SUNode->getFlaggedNode()) {
1551 if (!SUNode->isMachineOpcode())
Evan Chengf9891412007-12-20 09:25:31 +00001552 continue;
Dan Gohmana366da12009-03-23 16:23:01 +00001553 const unsigned *SUImpDefs =
1554 TII->get(SUNode->getMachineOpcode()).getImplicitDefs();
1555 if (!SUImpDefs)
1556 return false;
1557 for (unsigned i = NumDefs, e = N->getNumValues(); i != e; ++i) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001558 EVT VT = N->getValueType(i);
Owen Anderson9f944592009-08-11 20:47:22 +00001559 if (VT == MVT::Flag || VT == MVT::Other)
Dan Gohmana366da12009-03-23 16:23:01 +00001560 continue;
1561 if (!N->hasAnyUseOfValue(i))
1562 continue;
1563 unsigned Reg = ImpDefs[i - NumDefs];
1564 for (;*SUImpDefs; ++SUImpDefs) {
1565 unsigned SUReg = *SUImpDefs;
1566 if (TRI->regsOverlap(Reg, SUReg))
1567 return true;
1568 }
Evan Chengf9891412007-12-20 09:25:31 +00001569 }
1570 }
1571 return false;
1572}
1573
Dan Gohman9a658d72009-03-24 00:49:12 +00001574/// PrescheduleNodesWithMultipleUses - Nodes with multiple uses
1575/// are not handled well by the general register pressure reduction
1576/// heuristics. When presented with code like this:
1577///
1578/// N
1579/// / |
1580/// / |
1581/// U store
1582/// |
1583/// ...
1584///
1585/// the heuristics tend to push the store up, but since the
1586/// operand of the store has another use (U), this would increase
1587/// the length of that other use (the U->N edge).
1588///
1589/// This function transforms code like the above to route U's
1590/// dependence through the store when possible, like this:
1591///
1592/// N
1593/// ||
1594/// ||
1595/// store
1596/// |
1597/// U
1598/// |
1599/// ...
1600///
1601/// This results in the store being scheduled immediately
1602/// after N, which shortens the U->N live range, reducing
1603/// register pressure.
1604///
1605template<class SF>
1606void RegReductionPriorityQueue<SF>::PrescheduleNodesWithMultipleUses() {
1607 // Visit all the nodes in topological order, working top-down.
1608 for (unsigned i = 0, e = SUnits->size(); i != e; ++i) {
1609 SUnit *SU = &(*SUnits)[i];
1610 // For now, only look at nodes with no data successors, such as stores.
1611 // These are especially important, due to the heuristics in
1612 // getNodePriority for nodes with no data successors.
1613 if (SU->NumSuccs != 0)
1614 continue;
1615 // For now, only look at nodes with exactly one data predecessor.
1616 if (SU->NumPreds != 1)
1617 continue;
1618 // Avoid prescheduling copies to virtual registers, which don't behave
1619 // like other nodes from the perspective of scheduling heuristics.
1620 if (SDNode *N = SU->getNode())
1621 if (N->getOpcode() == ISD::CopyToReg &&
1622 TargetRegisterInfo::isVirtualRegister
1623 (cast<RegisterSDNode>(N->getOperand(1))->getReg()))
1624 continue;
1625
1626 // Locate the single data predecessor.
1627 SUnit *PredSU = 0;
1628 for (SUnit::const_pred_iterator II = SU->Preds.begin(),
1629 EE = SU->Preds.end(); II != EE; ++II)
1630 if (!II->isCtrl()) {
1631 PredSU = II->getSUnit();
1632 break;
1633 }
1634 assert(PredSU);
1635
1636 // Don't rewrite edges that carry physregs, because that requires additional
1637 // support infrastructure.
1638 if (PredSU->hasPhysRegDefs)
1639 continue;
1640 // Short-circuit the case where SU is PredSU's only data successor.
1641 if (PredSU->NumSuccs == 1)
1642 continue;
1643 // Avoid prescheduling to copies from virtual registers, which don't behave
1644 // like other nodes from the perspective of scheduling // heuristics.
1645 if (SDNode *N = SU->getNode())
1646 if (N->getOpcode() == ISD::CopyFromReg &&
1647 TargetRegisterInfo::isVirtualRegister
1648 (cast<RegisterSDNode>(N->getOperand(1))->getReg()))
1649 continue;
1650
1651 // Perform checks on the successors of PredSU.
1652 for (SUnit::const_succ_iterator II = PredSU->Succs.begin(),
1653 EE = PredSU->Succs.end(); II != EE; ++II) {
1654 SUnit *PredSuccSU = II->getSUnit();
1655 if (PredSuccSU == SU) continue;
1656 // If PredSU has another successor with no data successors, for
1657 // now don't attempt to choose either over the other.
1658 if (PredSuccSU->NumSuccs == 0)
1659 goto outer_loop_continue;
1660 // Don't break physical register dependencies.
1661 if (SU->hasPhysRegClobbers && PredSuccSU->hasPhysRegDefs)
1662 if (canClobberPhysRegDefs(PredSuccSU, SU, TII, TRI))
1663 goto outer_loop_continue;
1664 // Don't introduce graph cycles.
1665 if (scheduleDAG->IsReachable(SU, PredSuccSU))
1666 goto outer_loop_continue;
1667 }
1668
1669 // Ok, the transformation is safe and the heuristics suggest it is
1670 // profitable. Update the graph.
Evan Chengbdd062d2010-05-20 06:13:19 +00001671 DEBUG(dbgs() << " Prescheduling SU #" << SU->NodeNum
1672 << " next to PredSU #" << PredSU->NodeNum
Chris Lattner4dc3edd2009-08-23 06:35:02 +00001673 << " to guide scheduling in the presence of multiple uses\n");
Dan Gohman9a658d72009-03-24 00:49:12 +00001674 for (unsigned i = 0; i != PredSU->Succs.size(); ++i) {
1675 SDep Edge = PredSU->Succs[i];
1676 assert(!Edge.isAssignedRegDep());
1677 SUnit *SuccSU = Edge.getSUnit();
1678 if (SuccSU != SU) {
1679 Edge.setSUnit(PredSU);
1680 scheduleDAG->RemovePred(SuccSU, Edge);
1681 scheduleDAG->AddPred(SU, Edge);
1682 Edge.setSUnit(SU);
1683 scheduleDAG->AddPred(SuccSU, Edge);
1684 --i;
1685 }
1686 }
1687 outer_loop_continue:;
1688 }
1689}
1690
Evan Chengd38c22b2006-05-11 23:55:42 +00001691/// AddPseudoTwoAddrDeps - If two nodes share an operand and one of them uses
1692/// it as a def&use operand. Add a pseudo control edge from it to the other
1693/// node (if it won't create a cycle) so the two-address one will be scheduled
Evan Chenga5e595d2007-09-28 22:32:30 +00001694/// first (lower in the schedule). If both nodes are two-address, favor the
1695/// one that has a CopyToReg use (more likely to be a loop induction update).
1696/// If both are two-address, but one is commutable while the other is not
1697/// commutable, favor the one that's not commutable.
Dan Gohman3f656df2008-11-20 02:45:51 +00001698template<class SF>
1699void RegReductionPriorityQueue<SF>::AddPseudoTwoAddrDeps() {
Evan Chengfd2c5dd2006-11-04 09:44:31 +00001700 for (unsigned i = 0, e = SUnits->size(); i != e; ++i) {
Dan Gohmane955c482008-08-05 14:45:15 +00001701 SUnit *SU = &(*SUnits)[i];
Evan Chengfd2c5dd2006-11-04 09:44:31 +00001702 if (!SU->isTwoAddress)
1703 continue;
1704
Dan Gohman1ddfcba2008-11-13 21:36:12 +00001705 SDNode *Node = SU->getNode();
Dan Gohman072734e2008-11-13 23:24:17 +00001706 if (!Node || !Node->isMachineOpcode() || SU->getNode()->getFlaggedNode())
Evan Chengfd2c5dd2006-11-04 09:44:31 +00001707 continue;
1708
Dan Gohman17059682008-07-17 19:10:17 +00001709 unsigned Opc = Node->getMachineOpcode();
Chris Lattner03ad8852008-01-07 07:27:27 +00001710 const TargetInstrDesc &TID = TII->get(Opc);
Chris Lattnerfd2e3382008-01-07 06:47:00 +00001711 unsigned NumRes = TID.getNumDefs();
Dan Gohman0340d1e2008-02-15 20:50:13 +00001712 unsigned NumOps = TID.getNumOperands() - NumRes;
Evan Chengfd2c5dd2006-11-04 09:44:31 +00001713 for (unsigned j = 0; j != NumOps; ++j) {
Dan Gohman82016c22008-11-19 02:00:32 +00001714 if (TID.getOperandConstraint(j+NumRes, TOI::TIED_TO) == -1)
1715 continue;
1716 SDNode *DU = SU->getNode()->getOperand(j).getNode();
1717 if (DU->getNodeId() == -1)
1718 continue;
1719 const SUnit *DUSU = &(*SUnits)[DU->getNodeId()];
1720 if (!DUSU) continue;
1721 for (SUnit::const_succ_iterator I = DUSU->Succs.begin(),
1722 E = DUSU->Succs.end(); I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +00001723 if (I->isCtrl()) continue;
1724 SUnit *SuccSU = I->getSUnit();
Dan Gohman82016c22008-11-19 02:00:32 +00001725 if (SuccSU == SU)
Evan Cheng1bf166312007-11-09 01:27:11 +00001726 continue;
Dan Gohman82016c22008-11-19 02:00:32 +00001727 // Be conservative. Ignore if nodes aren't at roughly the same
1728 // depth and height.
Dan Gohmandddc1ac2008-12-16 03:25:46 +00001729 if (SuccSU->getHeight() < SU->getHeight() &&
1730 (SU->getHeight() - SuccSU->getHeight()) > 1)
Dan Gohman82016c22008-11-19 02:00:32 +00001731 continue;
Dan Gohmaneefba6b2009-04-16 20:59:02 +00001732 // Skip past COPY_TO_REGCLASS nodes, so that the pseudo edge
1733 // constrains whatever is using the copy, instead of the copy
1734 // itself. In the case that the copy is coalesced, this
1735 // preserves the intent of the pseudo two-address heurietics.
1736 while (SuccSU->Succs.size() == 1 &&
1737 SuccSU->getNode()->isMachineOpcode() &&
1738 SuccSU->getNode()->getMachineOpcode() ==
Chris Lattnerb06015a2010-02-09 19:54:29 +00001739 TargetOpcode::COPY_TO_REGCLASS)
Dan Gohmaneefba6b2009-04-16 20:59:02 +00001740 SuccSU = SuccSU->Succs.front().getSUnit();
1741 // Don't constrain non-instruction nodes.
Dan Gohman82016c22008-11-19 02:00:32 +00001742 if (!SuccSU->getNode() || !SuccSU->getNode()->isMachineOpcode())
1743 continue;
1744 // Don't constrain nodes with physical register defs if the
1745 // predecessor can clobber them.
Dan Gohmanf3746cb2009-03-24 00:50:07 +00001746 if (SuccSU->hasPhysRegDefs && SU->hasPhysRegClobbers) {
Dan Gohman82016c22008-11-19 02:00:32 +00001747 if (canClobberPhysRegDefs(SuccSU, SU, TII, TRI))
Evan Cheng5924bf72007-09-25 01:54:36 +00001748 continue;
Dan Gohman82016c22008-11-19 02:00:32 +00001749 }
Dan Gohman3027bb62009-04-16 20:57:10 +00001750 // Don't constrain EXTRACT_SUBREG, INSERT_SUBREG, and SUBREG_TO_REG;
1751 // these may be coalesced away. We want them close to their uses.
Dan Gohman82016c22008-11-19 02:00:32 +00001752 unsigned SuccOpc = SuccSU->getNode()->getMachineOpcode();
Chris Lattnerb06015a2010-02-09 19:54:29 +00001753 if (SuccOpc == TargetOpcode::EXTRACT_SUBREG ||
1754 SuccOpc == TargetOpcode::INSERT_SUBREG ||
1755 SuccOpc == TargetOpcode::SUBREG_TO_REG)
Dan Gohman82016c22008-11-19 02:00:32 +00001756 continue;
1757 if ((!canClobber(SuccSU, DUSU) ||
1758 (hasCopyToRegUse(SU) && !hasCopyToRegUse(SuccSU)) ||
1759 (!SU->isCommutable && SuccSU->isCommutable)) &&
1760 !scheduleDAG->IsReachable(SuccSU, SU)) {
Evan Chengbdd062d2010-05-20 06:13:19 +00001761 DEBUG(dbgs() << " Adding a pseudo-two-addr edge from SU #"
Chris Lattner4dc3edd2009-08-23 06:35:02 +00001762 << SU->NodeNum << " to SU #" << SuccSU->NodeNum << "\n");
Dan Gohman79c35162009-01-06 01:19:04 +00001763 scheduleDAG->AddPred(SU, SDep(SuccSU, SDep::Order, /*Latency=*/0,
Dan Gohmanbf8e5202009-01-06 01:28:56 +00001764 /*Reg=*/0, /*isNormalMemory=*/false,
1765 /*isMustAlias=*/false,
Dan Gohman2d170892008-12-09 22:54:47 +00001766 /*isArtificial=*/true));
Evan Chengfd2c5dd2006-11-04 09:44:31 +00001767 }
1768 }
1769 }
1770 }
Evan Chengd38c22b2006-05-11 23:55:42 +00001771}
1772
Evan Cheng6730f032007-01-08 23:55:53 +00001773/// CalculateSethiUllmanNumbers - Calculate Sethi-Ullman numbers of all
1774/// scheduling units.
Dan Gohman186f65d2008-11-20 03:30:37 +00001775template<class SF>
1776void RegReductionPriorityQueue<SF>::CalculateSethiUllmanNumbers() {
Evan Chengd38c22b2006-05-11 23:55:42 +00001777 SethiUllmanNumbers.assign(SUnits->size(), 0);
1778
1779 for (unsigned i = 0, e = SUnits->size(); i != e; ++i)
Dan Gohman186f65d2008-11-20 03:30:37 +00001780 CalcNodeSethiUllmanNumber(&(*SUnits)[i], SethiUllmanNumbers);
Evan Cheng7e4abde2008-07-02 09:23:51 +00001781}
Evan Chengd38c22b2006-05-11 23:55:42 +00001782
Roman Levenstein30d09512008-03-27 09:44:37 +00001783/// LimitedSumOfUnscheduledPredsOfSuccs - Compute the sum of the unscheduled
Roman Levensteinbc674502008-03-27 09:14:57 +00001784/// predecessors of the successors of the SUnit SU. Stop when the provided
1785/// limit is exceeded.
Roman Levensteinbc674502008-03-27 09:14:57 +00001786static unsigned LimitedSumOfUnscheduledPredsOfSuccs(const SUnit *SU,
1787 unsigned Limit) {
1788 unsigned Sum = 0;
1789 for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
1790 I != E; ++I) {
Dan Gohman2d170892008-12-09 22:54:47 +00001791 const SUnit *SuccSU = I->getSUnit();
Roman Levensteinbc674502008-03-27 09:14:57 +00001792 for (SUnit::const_pred_iterator II = SuccSU->Preds.begin(),
1793 EE = SuccSU->Preds.end(); II != EE; ++II) {
Dan Gohman2d170892008-12-09 22:54:47 +00001794 SUnit *PredSU = II->getSUnit();
Evan Cheng16d72072008-03-29 18:34:22 +00001795 if (!PredSU->isScheduled)
1796 if (++Sum > Limit)
1797 return Sum;
Roman Levensteinbc674502008-03-27 09:14:57 +00001798 }
1799 }
1800 return Sum;
1801}
1802
Evan Chengd38c22b2006-05-11 23:55:42 +00001803
1804// Top down
1805bool td_ls_rr_sort::operator()(const SUnit *left, const SUnit *right) const {
Evan Cheng6730f032007-01-08 23:55:53 +00001806 unsigned LPriority = SPQ->getNodePriority(left);
1807 unsigned RPriority = SPQ->getNodePriority(right);
Dan Gohman1ddfcba2008-11-13 21:36:12 +00001808 bool LIsTarget = left->getNode() && left->getNode()->isMachineOpcode();
1809 bool RIsTarget = right->getNode() && right->getNode()->isMachineOpcode();
Evan Chengd38c22b2006-05-11 23:55:42 +00001810 bool LIsFloater = LIsTarget && left->NumPreds == 0;
1811 bool RIsFloater = RIsTarget && right->NumPreds == 0;
Roman Levensteinbc674502008-03-27 09:14:57 +00001812 unsigned LBonus = (LimitedSumOfUnscheduledPredsOfSuccs(left,1) == 1) ? 2 : 0;
1813 unsigned RBonus = (LimitedSumOfUnscheduledPredsOfSuccs(right,1) == 1) ? 2 : 0;
Evan Chengd38c22b2006-05-11 23:55:42 +00001814
1815 if (left->NumSuccs == 0 && right->NumSuccs != 0)
1816 return false;
1817 else if (left->NumSuccs != 0 && right->NumSuccs == 0)
1818 return true;
1819
Evan Chengd38c22b2006-05-11 23:55:42 +00001820 if (LIsFloater)
1821 LBonus -= 2;
1822 if (RIsFloater)
1823 RBonus -= 2;
1824 if (left->NumSuccs == 1)
1825 LBonus += 2;
1826 if (right->NumSuccs == 1)
1827 RBonus += 2;
1828
Evan Cheng73bdf042008-03-01 00:39:47 +00001829 if (LPriority+LBonus != RPriority+RBonus)
1830 return LPriority+LBonus < RPriority+RBonus;
Anton Korobeynikov035eaac2008-02-20 11:10:28 +00001831
Dan Gohmandddc1ac2008-12-16 03:25:46 +00001832 if (left->getDepth() != right->getDepth())
1833 return left->getDepth() < right->getDepth();
Evan Cheng73bdf042008-03-01 00:39:47 +00001834
1835 if (left->NumSuccsLeft != right->NumSuccsLeft)
1836 return left->NumSuccsLeft > right->NumSuccsLeft;
1837
Roman Levenstein6b371142008-04-29 09:07:59 +00001838 assert(left->NodeQueueId && right->NodeQueueId &&
1839 "NodeQueueId cannot be zero");
1840 return (left->NodeQueueId > right->NodeQueueId);
Evan Chengd38c22b2006-05-11 23:55:42 +00001841}
1842
Evan Chengd38c22b2006-05-11 23:55:42 +00001843//===----------------------------------------------------------------------===//
1844// Public Constructor Functions
1845//===----------------------------------------------------------------------===//
1846
Dan Gohmandfaf6462009-02-11 04:27:20 +00001847llvm::ScheduleDAGSDNodes *
Bill Wendling026e5d72009-04-29 23:29:43 +00001848llvm::createBURRListDAGScheduler(SelectionDAGISel *IS, CodeGenOpt::Level) {
Dan Gohman619ef482009-01-15 19:20:50 +00001849 const TargetMachine &TM = IS->TM;
1850 const TargetInstrInfo *TII = TM.getInstrInfo();
1851 const TargetRegisterInfo *TRI = TM.getRegisterInfo();
Roman Levenstein7e71b4b2008-03-26 09:18:09 +00001852
Evan Chenga77f3d32010-07-21 06:09:07 +00001853 BURegReductionPriorityQueue *PQ =
1854 new BURegReductionPriorityQueue(*IS->MF, true, TII, TRI, 0);
Evan Chengbdd062d2010-05-20 06:13:19 +00001855 ScheduleDAGRRList *SD = new ScheduleDAGRRList(*IS->MF, true, false, PQ);
Evan Cheng7e4abde2008-07-02 09:23:51 +00001856 PQ->setScheduleDAG(SD);
1857 return SD;
Evan Chengd38c22b2006-05-11 23:55:42 +00001858}
1859
Dan Gohmandfaf6462009-02-11 04:27:20 +00001860llvm::ScheduleDAGSDNodes *
Bill Wendling026e5d72009-04-29 23:29:43 +00001861llvm::createTDRRListDAGScheduler(SelectionDAGISel *IS, CodeGenOpt::Level) {
Dan Gohman619ef482009-01-15 19:20:50 +00001862 const TargetMachine &TM = IS->TM;
1863 const TargetInstrInfo *TII = TM.getInstrInfo();
1864 const TargetRegisterInfo *TRI = TM.getRegisterInfo();
Dan Gohman3f656df2008-11-20 02:45:51 +00001865
Evan Chenga77f3d32010-07-21 06:09:07 +00001866 TDRegReductionPriorityQueue *PQ =
1867 new TDRegReductionPriorityQueue(*IS->MF, false, TII, TRI, 0);
Evan Chengbdd062d2010-05-20 06:13:19 +00001868 ScheduleDAGRRList *SD = new ScheduleDAGRRList(*IS->MF, false, false, PQ);
Dan Gohman3f656df2008-11-20 02:45:51 +00001869 PQ->setScheduleDAG(SD);
1870 return SD;
Evan Chengd38c22b2006-05-11 23:55:42 +00001871}
Bill Wendling8cbc25d2010-01-23 10:26:57 +00001872
1873llvm::ScheduleDAGSDNodes *
1874llvm::createSourceListDAGScheduler(SelectionDAGISel *IS, CodeGenOpt::Level) {
1875 const TargetMachine &TM = IS->TM;
1876 const TargetInstrInfo *TII = TM.getInstrInfo();
1877 const TargetRegisterInfo *TRI = TM.getRegisterInfo();
1878
Evan Chenga77f3d32010-07-21 06:09:07 +00001879 SrcRegReductionPriorityQueue *PQ =
1880 new SrcRegReductionPriorityQueue(*IS->MF, true, TII, TRI, 0);
Evan Chengbdd062d2010-05-20 06:13:19 +00001881 ScheduleDAGRRList *SD = new ScheduleDAGRRList(*IS->MF, true, false, PQ);
1882 PQ->setScheduleDAG(SD);
1883 return SD;
1884}
1885
1886llvm::ScheduleDAGSDNodes *
1887llvm::createHybridListDAGScheduler(SelectionDAGISel *IS, CodeGenOpt::Level) {
1888 const TargetMachine &TM = IS->TM;
1889 const TargetInstrInfo *TII = TM.getInstrInfo();
1890 const TargetRegisterInfo *TRI = TM.getRegisterInfo();
Evan Chenga77f3d32010-07-21 06:09:07 +00001891 const TargetLowering *TLI = &IS->getTargetLowering();
Evan Chengbdd062d2010-05-20 06:13:19 +00001892
Evan Chenga77f3d32010-07-21 06:09:07 +00001893 HybridBURRPriorityQueue *PQ =
1894 new HybridBURRPriorityQueue(*IS->MF, true, TII, TRI,
1895 (RegPressureAware ? TLI : 0));
Evan Chengbdd062d2010-05-20 06:13:19 +00001896 ScheduleDAGRRList *SD = new ScheduleDAGRRList(*IS->MF, true, true, PQ);
Bill Wendling8cbc25d2010-01-23 10:26:57 +00001897 PQ->setScheduleDAG(SD);
1898 return SD;
1899}