blob: 0acd9801141ec73d2c50ed720de2431b1aff41ac [file] [log] [blame]
Andrew Trick5429a6b2012-05-17 22:37:09 +00001//===- MachineScheduler.cpp - Machine Instruction Scheduler ---------------===//
Andrew Trick96f678f2012-01-13 06:30:30 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// MachineScheduler schedules machine instructions after phi elimination. It
11// preserves LiveIntervals so it can be invoked before register allocation.
12//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "misched"
16
Andrew Trickc174eaf2012-03-08 01:41:12 +000017#include "llvm/CodeGen/MachineScheduler.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000018#include "llvm/ADT/OwningPtr.h"
19#include "llvm/ADT/PriorityQueue.h"
20#include "llvm/Analysis/AliasAnalysis.h"
21#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Jakub Staszak760fa5d2013-03-10 13:11:23 +000022#include "llvm/CodeGen/MachineDominators.h"
23#include "llvm/CodeGen/MachineLoopInfo.h"
Andrew Trick96f678f2012-01-13 06:30:30 +000024#include "llvm/CodeGen/Passes.h"
Andrew Trick15252602012-06-06 20:29:31 +000025#include "llvm/CodeGen/RegisterClassInfo.h"
Andrew Trick53e98a22012-11-28 05:13:24 +000026#include "llvm/CodeGen/ScheduleDFS.h"
Andrew Trick0a39d4e2012-05-24 22:11:09 +000027#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
Andrew Trick96f678f2012-01-13 06:30:30 +000028#include "llvm/Support/CommandLine.h"
29#include "llvm/Support/Debug.h"
30#include "llvm/Support/ErrorHandling.h"
Andrew Trick30849792013-01-25 07:45:29 +000031#include "llvm/Support/GraphWriter.h"
Andrew Trick96f678f2012-01-13 06:30:30 +000032#include "llvm/Support/raw_ostream.h"
Andrew Trickc6cf11b2012-01-17 06:55:07 +000033#include <queue>
34
Andrew Trick96f678f2012-01-13 06:30:30 +000035using namespace llvm;
36
Andrew Trick78e5efe2012-09-11 00:39:15 +000037namespace llvm {
38cl::opt<bool> ForceTopDown("misched-topdown", cl::Hidden,
39 cl::desc("Force top-down list scheduling"));
40cl::opt<bool> ForceBottomUp("misched-bottomup", cl::Hidden,
41 cl::desc("Force bottom-up list scheduling"));
42}
Andrew Trick17d35e52012-03-14 04:00:41 +000043
Andrew Trick0df7f882012-03-07 00:18:25 +000044#ifndef NDEBUG
45static cl::opt<bool> ViewMISchedDAGs("view-misched-dags", cl::Hidden,
46 cl::desc("Pop up a window to show MISched dags after they are processed"));
Lang Hames23f1cbb2012-03-19 18:38:38 +000047
48static cl::opt<unsigned> MISchedCutoff("misched-cutoff", cl::Hidden,
49 cl::desc("Stop scheduling after N instructions"), cl::init(~0U));
Andrew Trick0df7f882012-03-07 00:18:25 +000050#else
51static bool ViewMISchedDAGs = false;
52#endif // NDEBUG
53
Andrew Trick9b5caaa2012-11-12 19:40:10 +000054// Experimental heuristics
55static cl::opt<bool> EnableLoadCluster("misched-cluster", cl::Hidden,
Andrew Trickad1cc1d2012-11-13 08:47:29 +000056 cl::desc("Enable load clustering."), cl::init(true));
Andrew Trick9b5caaa2012-11-12 19:40:10 +000057
Andrew Trick6996fd02012-11-12 19:52:20 +000058// Experimental heuristics
59static cl::opt<bool> EnableMacroFusion("misched-fusion", cl::Hidden,
Andrew Trickad1cc1d2012-11-13 08:47:29 +000060 cl::desc("Enable scheduling for macro fusion."), cl::init(true));
Andrew Trick6996fd02012-11-12 19:52:20 +000061
Andrew Trickfff2d3a2013-03-08 05:40:34 +000062static cl::opt<bool> VerifyScheduling("verify-misched", cl::Hidden,
63 cl::desc("Verify machine instrs before and after machine scheduling"));
64
Andrew Trick178f7d02013-01-25 04:01:04 +000065// DAG subtrees must have at least this many nodes.
66static const unsigned MinSubtreeSize = 8;
67
Andrew Trick5edf2f02012-01-14 02:17:06 +000068//===----------------------------------------------------------------------===//
69// Machine Instruction Scheduling Pass and Registry
70//===----------------------------------------------------------------------===//
71
Andrew Trick86b7e2a2012-04-24 20:36:19 +000072MachineSchedContext::MachineSchedContext():
73 MF(0), MLI(0), MDT(0), PassConfig(0), AA(0), LIS(0) {
74 RegClassInfo = new RegisterClassInfo();
75}
76
77MachineSchedContext::~MachineSchedContext() {
78 delete RegClassInfo;
79}
80
Andrew Trick96f678f2012-01-13 06:30:30 +000081namespace {
Andrew Trick42b7a712012-01-17 06:55:03 +000082/// MachineScheduler runs after coalescing and before register allocation.
Andrew Trickc174eaf2012-03-08 01:41:12 +000083class MachineScheduler : public MachineSchedContext,
84 public MachineFunctionPass {
Andrew Trick96f678f2012-01-13 06:30:30 +000085public:
Andrew Trick42b7a712012-01-17 06:55:03 +000086 MachineScheduler();
Andrew Trick96f678f2012-01-13 06:30:30 +000087
88 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
89
90 virtual void releaseMemory() {}
91
92 virtual bool runOnMachineFunction(MachineFunction&);
93
94 virtual void print(raw_ostream &O, const Module* = 0) const;
95
96 static char ID; // Class identification, replacement for typeinfo
97};
98} // namespace
99
Andrew Trick42b7a712012-01-17 06:55:03 +0000100char MachineScheduler::ID = 0;
Andrew Trick96f678f2012-01-13 06:30:30 +0000101
Andrew Trick42b7a712012-01-17 06:55:03 +0000102char &llvm::MachineSchedulerID = MachineScheduler::ID;
Andrew Trick96f678f2012-01-13 06:30:30 +0000103
Andrew Trick42b7a712012-01-17 06:55:03 +0000104INITIALIZE_PASS_BEGIN(MachineScheduler, "misched",
Andrew Trick96f678f2012-01-13 06:30:30 +0000105 "Machine Instruction Scheduler", false, false)
106INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
107INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
108INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
Andrew Trick42b7a712012-01-17 06:55:03 +0000109INITIALIZE_PASS_END(MachineScheduler, "misched",
Andrew Trick96f678f2012-01-13 06:30:30 +0000110 "Machine Instruction Scheduler", false, false)
111
Andrew Trick42b7a712012-01-17 06:55:03 +0000112MachineScheduler::MachineScheduler()
Andrew Trickc174eaf2012-03-08 01:41:12 +0000113: MachineFunctionPass(ID) {
Andrew Trick42b7a712012-01-17 06:55:03 +0000114 initializeMachineSchedulerPass(*PassRegistry::getPassRegistry());
Andrew Trick96f678f2012-01-13 06:30:30 +0000115}
116
Andrew Trick42b7a712012-01-17 06:55:03 +0000117void MachineScheduler::getAnalysisUsage(AnalysisUsage &AU) const {
Andrew Trick96f678f2012-01-13 06:30:30 +0000118 AU.setPreservesCFG();
119 AU.addRequiredID(MachineDominatorsID);
120 AU.addRequired<MachineLoopInfo>();
121 AU.addRequired<AliasAnalysis>();
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000122 AU.addRequired<TargetPassConfig>();
Andrew Trick96f678f2012-01-13 06:30:30 +0000123 AU.addRequired<SlotIndexes>();
124 AU.addPreserved<SlotIndexes>();
125 AU.addRequired<LiveIntervals>();
126 AU.addPreserved<LiveIntervals>();
Andrew Trick96f678f2012-01-13 06:30:30 +0000127 MachineFunctionPass::getAnalysisUsage(AU);
128}
129
Andrew Trick96f678f2012-01-13 06:30:30 +0000130MachinePassRegistry MachineSchedRegistry::Registry;
131
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000132/// A dummy default scheduler factory indicates whether the scheduler
133/// is overridden on the command line.
134static ScheduleDAGInstrs *useDefaultMachineSched(MachineSchedContext *C) {
135 return 0;
136}
Andrew Trick96f678f2012-01-13 06:30:30 +0000137
138/// MachineSchedOpt allows command line selection of the scheduler.
139static cl::opt<MachineSchedRegistry::ScheduleDAGCtor, false,
140 RegisterPassParser<MachineSchedRegistry> >
141MachineSchedOpt("misched",
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000142 cl::init(&useDefaultMachineSched), cl::Hidden,
Andrew Trick96f678f2012-01-13 06:30:30 +0000143 cl::desc("Machine instruction scheduler to use"));
144
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000145static MachineSchedRegistry
Andrew Trick17d35e52012-03-14 04:00:41 +0000146DefaultSchedRegistry("default", "Use the target's default scheduler choice.",
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000147 useDefaultMachineSched);
148
Andrew Trick17d35e52012-03-14 04:00:41 +0000149/// Forward declare the standard machine scheduler. This will be used as the
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000150/// default scheduler if the target does not set a default.
Andrew Trick17d35e52012-03-14 04:00:41 +0000151static ScheduleDAGInstrs *createConvergingSched(MachineSchedContext *C);
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000152
Andrew Trickeb45ebb2012-04-24 18:04:34 +0000153
154/// Decrement this iterator until reaching the top or a non-debug instr.
155static MachineBasicBlock::iterator
156priorNonDebug(MachineBasicBlock::iterator I, MachineBasicBlock::iterator Beg) {
157 assert(I != Beg && "reached the top of the region, cannot decrement");
158 while (--I != Beg) {
159 if (!I->isDebugValue())
160 break;
161 }
162 return I;
163}
164
165/// If this iterator is a debug value, increment until reaching the End or a
166/// non-debug instruction.
167static MachineBasicBlock::iterator
168nextIfDebug(MachineBasicBlock::iterator I, MachineBasicBlock::iterator End) {
Andrew Trick811d92682012-05-17 18:35:03 +0000169 for(; I != End; ++I) {
Andrew Trickeb45ebb2012-04-24 18:04:34 +0000170 if (!I->isDebugValue())
171 break;
172 }
173 return I;
174}
175
Andrew Trickcb058d52012-03-14 04:00:38 +0000176/// Top-level MachineScheduler pass driver.
177///
178/// Visit blocks in function order. Divide each block into scheduling regions
Andrew Trick17d35e52012-03-14 04:00:41 +0000179/// and visit them bottom-up. Visiting regions bottom-up is not required, but is
180/// consistent with the DAG builder, which traverses the interior of the
181/// scheduling regions bottom-up.
Andrew Trickcb058d52012-03-14 04:00:38 +0000182///
183/// This design avoids exposing scheduling boundaries to the DAG builder,
Andrew Trick17d35e52012-03-14 04:00:41 +0000184/// simplifying the DAG builder's support for "special" target instructions.
185/// At the same time the design allows target schedulers to operate across
Andrew Trickcb058d52012-03-14 04:00:38 +0000186/// scheduling boundaries, for example to bundle the boudary instructions
187/// without reordering them. This creates complexity, because the target
188/// scheduler must update the RegionBegin and RegionEnd positions cached by
189/// ScheduleDAGInstrs whenever adding or removing instructions. A much simpler
190/// design would be to split blocks at scheduling boundaries, but LLVM has a
191/// general bias against block splitting purely for implementation simplicity.
Andrew Trick42b7a712012-01-17 06:55:03 +0000192bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) {
Andrew Trick89c324b2012-05-10 21:06:21 +0000193 DEBUG(dbgs() << "Before MISsched:\n"; mf.print(dbgs()));
194
Andrew Trick96f678f2012-01-13 06:30:30 +0000195 // Initialize the context of the pass.
196 MF = &mf;
197 MLI = &getAnalysis<MachineLoopInfo>();
198 MDT = &getAnalysis<MachineDominatorTree>();
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000199 PassConfig = &getAnalysis<TargetPassConfig>();
Andrew Trickc174eaf2012-03-08 01:41:12 +0000200 AA = &getAnalysis<AliasAnalysis>();
201
Lang Hames907cc8f2012-01-27 22:36:19 +0000202 LIS = &getAnalysis<LiveIntervals>();
Andrew Trickc174eaf2012-03-08 01:41:12 +0000203 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
Andrew Trick96f678f2012-01-13 06:30:30 +0000204
Andrew Trickfff2d3a2013-03-08 05:40:34 +0000205 if (VerifyScheduling) {
206 DEBUG(LIS->print(dbgs()));
207 MF->verify(this, "Before machine scheduling.");
208 }
Andrew Trick86b7e2a2012-04-24 20:36:19 +0000209 RegClassInfo->runOnMachineFunction(*MF);
Andrew Trick006e1ab2012-04-24 17:56:43 +0000210
Andrew Trick96f678f2012-01-13 06:30:30 +0000211 // Select the scheduler, or set the default.
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000212 MachineSchedRegistry::ScheduleDAGCtor Ctor = MachineSchedOpt;
213 if (Ctor == useDefaultMachineSched) {
214 // Get the default scheduler set by the target.
215 Ctor = MachineSchedRegistry::getDefault();
216 if (!Ctor) {
Andrew Trick17d35e52012-03-14 04:00:41 +0000217 Ctor = createConvergingSched;
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000218 MachineSchedRegistry::setDefault(Ctor);
219 }
Andrew Trick96f678f2012-01-13 06:30:30 +0000220 }
221 // Instantiate the selected scheduler.
222 OwningPtr<ScheduleDAGInstrs> Scheduler(Ctor(this));
223
224 // Visit all machine basic blocks.
Andrew Trick006e1ab2012-04-24 17:56:43 +0000225 //
226 // TODO: Visit blocks in global postorder or postorder within the bottom-up
227 // loop tree. Then we can optionally compute global RegPressure.
Andrew Trick96f678f2012-01-13 06:30:30 +0000228 for (MachineFunction::iterator MBB = MF->begin(), MBBEnd = MF->end();
229 MBB != MBBEnd; ++MBB) {
230
Andrew Trick1fabd9f2012-03-09 08:02:51 +0000231 Scheduler->startBlock(MBB);
232
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000233 // Break the block into scheduling regions [I, RegionEnd), and schedule each
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +0000234 // region as soon as it is discovered. RegionEnd points the scheduling
Andrew Trickfe4d6df2012-03-09 22:34:56 +0000235 // boundary at the bottom of the region. The DAG does not include RegionEnd,
236 // but the region does (i.e. the next RegionEnd is above the previous
237 // RegionBegin). If the current block has no terminator then RegionEnd ==
238 // MBB->end() for the bottom region.
239 //
240 // The Scheduler may insert instructions during either schedule() or
241 // exitRegion(), even for empty regions. So the local iterators 'I' and
242 // 'RegionEnd' are invalid across these calls.
Andrew Trick22764532012-11-06 07:10:34 +0000243 unsigned RemainingInstrs = MBB->size();
Andrew Trick7799eb42012-03-09 03:46:39 +0000244 for(MachineBasicBlock::iterator RegionEnd = MBB->end();
Andrew Trickfe4d6df2012-03-09 22:34:56 +0000245 RegionEnd != MBB->begin(); RegionEnd = Scheduler->begin()) {
Andrew Trick006e1ab2012-04-24 17:56:43 +0000246
Andrew Trick1fabd9f2012-03-09 08:02:51 +0000247 // Avoid decrementing RegionEnd for blocks with no terminator.
248 if (RegionEnd != MBB->end()
249 || TII->isSchedulingBoundary(llvm::prior(RegionEnd), MBB, *MF)) {
250 --RegionEnd;
251 // Count the boundary instruction.
Andrew Trick22764532012-11-06 07:10:34 +0000252 --RemainingInstrs;
Andrew Trick1fabd9f2012-03-09 08:02:51 +0000253 }
254
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000255 // The next region starts above the previous region. Look backward in the
256 // instruction stream until we find the nearest boundary.
257 MachineBasicBlock::iterator I = RegionEnd;
Andrew Trick22764532012-11-06 07:10:34 +0000258 for(;I != MBB->begin(); --I, --RemainingInstrs) {
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000259 if (TII->isSchedulingBoundary(llvm::prior(I), MBB, *MF))
260 break;
261 }
Andrew Trick47c14452012-03-07 05:21:52 +0000262 // Notify the scheduler of the region, even if we may skip scheduling
263 // it. Perhaps it still needs to be bundled.
Andrew Trick22764532012-11-06 07:10:34 +0000264 Scheduler->enterRegion(MBB, I, RegionEnd, RemainingInstrs);
Andrew Trick47c14452012-03-07 05:21:52 +0000265
266 // Skip empty scheduling regions (0 or 1 schedulable instructions).
267 if (I == RegionEnd || I == llvm::prior(RegionEnd)) {
Andrew Trick47c14452012-03-07 05:21:52 +0000268 // Close the current region. Bundle the terminator if needed.
Andrew Trickfe4d6df2012-03-09 22:34:56 +0000269 // This invalidates 'RegionEnd' and 'I'.
Andrew Trick47c14452012-03-07 05:21:52 +0000270 Scheduler->exitRegion();
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000271 continue;
Andrew Trick3c58ba82012-01-14 02:17:18 +0000272 }
Andrew Trickbb0a2422012-05-24 22:11:14 +0000273 DEBUG(dbgs() << "********** MI Scheduling **********\n");
Craig Topper96601ca2012-08-22 06:07:19 +0000274 DEBUG(dbgs() << MF->getName()
Andrew Trickc8554232013-01-25 07:45:31 +0000275 << ":BB#" << MBB->getNumber() << " " << MBB->getName()
276 << "\n From: " << *I << " To: ";
Andrew Trick291411c2012-02-08 02:17:21 +0000277 if (RegionEnd != MBB->end()) dbgs() << *RegionEnd;
278 else dbgs() << "End";
Andrew Trick22764532012-11-06 07:10:34 +0000279 dbgs() << " Remaining: " << RemainingInstrs << "\n");
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000280
Andrew Trickd24da972012-03-09 03:46:42 +0000281 // Schedule a region: possibly reorder instructions.
Andrew Trickfe4d6df2012-03-09 22:34:56 +0000282 // This invalidates 'RegionEnd' and 'I'.
Andrew Trick953be892012-03-07 23:00:49 +0000283 Scheduler->schedule();
Andrew Trickd24da972012-03-09 03:46:42 +0000284
285 // Close the current region.
Andrew Trick47c14452012-03-07 05:21:52 +0000286 Scheduler->exitRegion();
287
288 // Scheduling has invalidated the current iterator 'I'. Ask the
289 // scheduler for the top of it's scheduled region.
290 RegionEnd = Scheduler->begin();
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000291 }
Andrew Trick22764532012-11-06 07:10:34 +0000292 assert(RemainingInstrs == 0 && "Instruction count mismatch!");
Andrew Trick953be892012-03-07 23:00:49 +0000293 Scheduler->finishBlock();
Andrew Trick96f678f2012-01-13 06:30:30 +0000294 }
Andrew Trick830da402012-04-01 07:24:23 +0000295 Scheduler->finalizeSchedule();
Andrew Trickaad37f12012-03-21 04:12:12 +0000296 DEBUG(LIS->print(dbgs()));
Andrew Trickfff2d3a2013-03-08 05:40:34 +0000297 if (VerifyScheduling)
298 MF->verify(this, "After machine scheduling.");
Andrew Trick96f678f2012-01-13 06:30:30 +0000299 return true;
300}
301
Andrew Trick42b7a712012-01-17 06:55:03 +0000302void MachineScheduler::print(raw_ostream &O, const Module* m) const {
Andrew Trick96f678f2012-01-13 06:30:30 +0000303 // unimplemented
304}
305
Manman Renb720be62012-09-11 22:23:19 +0000306#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Andrew Trick78e5efe2012-09-11 00:39:15 +0000307void ReadyQueue::dump() {
Andrew Trick11189f72013-04-05 00:31:29 +0000308 dbgs() << " " << Name << ": ";
Andrew Trick78e5efe2012-09-11 00:39:15 +0000309 for (unsigned i = 0, e = Queue.size(); i < e; ++i)
310 dbgs() << Queue[i]->NodeNum << " ";
311 dbgs() << "\n";
312}
313#endif
Andrew Trick17d35e52012-03-14 04:00:41 +0000314
315//===----------------------------------------------------------------------===//
316// ScheduleDAGMI - Base class for MachineInstr scheduling with LiveIntervals
317// preservation.
318//===----------------------------------------------------------------------===//
319
Andrew Trick178f7d02013-01-25 04:01:04 +0000320ScheduleDAGMI::~ScheduleDAGMI() {
321 delete DFSResult;
322 DeleteContainerPointers(Mutations);
323 delete SchedImpl;
324}
325
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000326bool ScheduleDAGMI::addEdge(SUnit *SuccSU, const SDep &PredDep) {
Andrew Trick6996fd02012-11-12 19:52:20 +0000327 if (SuccSU != &ExitSU) {
328 // Do not use WillCreateCycle, it assumes SD scheduling.
329 // If Pred is reachable from Succ, then the edge creates a cycle.
330 if (Topo.IsReachable(PredDep.getSUnit(), SuccSU))
331 return false;
332 Topo.AddPred(SuccSU, PredDep.getSUnit());
333 }
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000334 SuccSU->addPred(PredDep, /*Required=*/!PredDep.isArtificial());
335 // Return true regardless of whether a new edge needed to be inserted.
336 return true;
337}
338
Andrew Trickc174eaf2012-03-08 01:41:12 +0000339/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. When
340/// NumPredsLeft reaches zero, release the successor node.
Andrew Trick0a39d4e2012-05-24 22:11:09 +0000341///
342/// FIXME: Adjust SuccSU height based on MinLatency.
Andrew Trick17d35e52012-03-14 04:00:41 +0000343void ScheduleDAGMI::releaseSucc(SUnit *SU, SDep *SuccEdge) {
Andrew Trickc174eaf2012-03-08 01:41:12 +0000344 SUnit *SuccSU = SuccEdge->getSUnit();
345
Andrew Trickae692f22012-11-12 19:28:57 +0000346 if (SuccEdge->isWeak()) {
347 --SuccSU->WeakPredsLeft;
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000348 if (SuccEdge->isCluster())
349 NextClusterSucc = SuccSU;
Andrew Trickae692f22012-11-12 19:28:57 +0000350 return;
351 }
Andrew Trickc174eaf2012-03-08 01:41:12 +0000352#ifndef NDEBUG
353 if (SuccSU->NumPredsLeft == 0) {
354 dbgs() << "*** Scheduling failed! ***\n";
355 SuccSU->dump(this);
356 dbgs() << " has been released too many times!\n";
357 llvm_unreachable(0);
358 }
359#endif
360 --SuccSU->NumPredsLeft;
361 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
Andrew Trick17d35e52012-03-14 04:00:41 +0000362 SchedImpl->releaseTopNode(SuccSU);
Andrew Trickc174eaf2012-03-08 01:41:12 +0000363}
364
365/// releaseSuccessors - Call releaseSucc on each of SU's successors.
Andrew Trick17d35e52012-03-14 04:00:41 +0000366void ScheduleDAGMI::releaseSuccessors(SUnit *SU) {
Andrew Trickc174eaf2012-03-08 01:41:12 +0000367 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
368 I != E; ++I) {
369 releaseSucc(SU, &*I);
370 }
371}
372
Andrew Trick17d35e52012-03-14 04:00:41 +0000373/// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. When
374/// NumSuccsLeft reaches zero, release the predecessor node.
Andrew Trick0a39d4e2012-05-24 22:11:09 +0000375///
376/// FIXME: Adjust PredSU height based on MinLatency.
Andrew Trick17d35e52012-03-14 04:00:41 +0000377void ScheduleDAGMI::releasePred(SUnit *SU, SDep *PredEdge) {
378 SUnit *PredSU = PredEdge->getSUnit();
379
Andrew Trickae692f22012-11-12 19:28:57 +0000380 if (PredEdge->isWeak()) {
381 --PredSU->WeakSuccsLeft;
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000382 if (PredEdge->isCluster())
383 NextClusterPred = PredSU;
Andrew Trickae692f22012-11-12 19:28:57 +0000384 return;
385 }
Andrew Trick17d35e52012-03-14 04:00:41 +0000386#ifndef NDEBUG
387 if (PredSU->NumSuccsLeft == 0) {
388 dbgs() << "*** Scheduling failed! ***\n";
389 PredSU->dump(this);
390 dbgs() << " has been released too many times!\n";
391 llvm_unreachable(0);
392 }
393#endif
394 --PredSU->NumSuccsLeft;
395 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU)
396 SchedImpl->releaseBottomNode(PredSU);
397}
398
399/// releasePredecessors - Call releasePred on each of SU's predecessors.
400void ScheduleDAGMI::releasePredecessors(SUnit *SU) {
401 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
402 I != E; ++I) {
403 releasePred(SU, &*I);
404 }
405}
406
Andrew Trick4392f0f2013-04-13 06:07:40 +0000407/// This is normally called from the main scheduler loop but may also be invoked
408/// by the scheduling strategy to perform additional code motion.
Andrew Trick17d35e52012-03-14 04:00:41 +0000409void ScheduleDAGMI::moveInstruction(MachineInstr *MI,
410 MachineBasicBlock::iterator InsertPos) {
Andrew Trick811d92682012-05-17 18:35:03 +0000411 // Advance RegionBegin if the first instruction moves down.
Andrew Trick1ce062f2012-03-21 04:12:10 +0000412 if (&*RegionBegin == MI)
Andrew Trick811d92682012-05-17 18:35:03 +0000413 ++RegionBegin;
414
415 // Update the instruction stream.
Andrew Trick17d35e52012-03-14 04:00:41 +0000416 BB->splice(InsertPos, BB, MI);
Andrew Trick811d92682012-05-17 18:35:03 +0000417
418 // Update LiveIntervals
Andrew Trick27c28ce2012-10-16 00:22:51 +0000419 LIS->handleMove(MI, /*UpdateFlags=*/true);
Andrew Trick811d92682012-05-17 18:35:03 +0000420
421 // Recede RegionBegin if an instruction moves above the first.
Andrew Trick17d35e52012-03-14 04:00:41 +0000422 if (RegionBegin == InsertPos)
423 RegionBegin = MI;
424}
425
Andrew Trick0b0d8992012-03-21 04:12:07 +0000426bool ScheduleDAGMI::checkSchedLimit() {
427#ifndef NDEBUG
428 if (NumInstrsScheduled == MISchedCutoff && MISchedCutoff != ~0U) {
429 CurrentTop = CurrentBottom;
430 return false;
431 }
432 ++NumInstrsScheduled;
433#endif
434 return true;
435}
436
Andrew Trick006e1ab2012-04-24 17:56:43 +0000437/// enterRegion - Called back from MachineScheduler::runOnMachineFunction after
438/// crossing a scheduling boundary. [begin, end) includes all instructions in
439/// the region, including the boundary itself and single-instruction regions
440/// that don't get scheduled.
441void ScheduleDAGMI::enterRegion(MachineBasicBlock *bb,
442 MachineBasicBlock::iterator begin,
443 MachineBasicBlock::iterator end,
444 unsigned endcount)
445{
446 ScheduleDAGInstrs::enterRegion(bb, begin, end, endcount);
Andrew Trick7f8ab782012-05-10 21:06:10 +0000447
448 // For convenience remember the end of the liveness region.
449 LiveRegionEnd =
450 (RegionEnd == bb->end()) ? RegionEnd : llvm::next(RegionEnd);
451}
452
453// Setup the register pressure trackers for the top scheduled top and bottom
454// scheduled regions.
455void ScheduleDAGMI::initRegPressure() {
456 TopRPTracker.init(&MF, RegClassInfo, LIS, BB, RegionBegin);
457 BotRPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd);
458
459 // Close the RPTracker to finalize live ins.
460 RPTracker.closeRegion();
461
Andrew Trickbb0a2422012-05-24 22:11:14 +0000462 DEBUG(RPTracker.getPressure().dump(TRI));
463
Andrew Trick7f8ab782012-05-10 21:06:10 +0000464 // Initialize the live ins and live outs.
465 TopRPTracker.addLiveRegs(RPTracker.getPressure().LiveInRegs);
466 BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs);
467
468 // Close one end of the tracker so we can call
469 // getMaxUpward/DownwardPressureDelta before advancing across any
470 // instructions. This converts currently live regs into live ins/outs.
471 TopRPTracker.closeTop();
472 BotRPTracker.closeBottom();
473
474 // Account for liveness generated by the region boundary.
475 if (LiveRegionEnd != RegionEnd)
476 BotRPTracker.recede();
477
478 assert(BotRPTracker.getPos() == RegionEnd && "Can't find the region bottom");
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000479
480 // Cache the list of excess pressure sets in this region. This will also track
481 // the max pressure in the scheduled code for these sets.
482 RegionCriticalPSets.clear();
Jakub Staszakb74564a2013-01-25 21:44:27 +0000483 const std::vector<unsigned> &RegionPressure =
484 RPTracker.getPressure().MaxSetPressure;
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000485 for (unsigned i = 0, e = RegionPressure.size(); i < e; ++i) {
486 unsigned Limit = TRI->getRegPressureSetLimit(i);
Andrew Trick78e5efe2012-09-11 00:39:15 +0000487 DEBUG(dbgs() << TRI->getRegPressureSetName(i)
488 << "Limit " << Limit
489 << " Actual " << RegionPressure[i] << "\n");
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000490 if (RegionPressure[i] > Limit)
491 RegionCriticalPSets.push_back(PressureElement(i, 0));
492 }
493 DEBUG(dbgs() << "Excess PSets: ";
494 for (unsigned i = 0, e = RegionCriticalPSets.size(); i != e; ++i)
495 dbgs() << TRI->getRegPressureSetName(
496 RegionCriticalPSets[i].PSetID) << " ";
497 dbgs() << "\n");
498}
499
500// FIXME: When the pressure tracker deals in pressure differences then we won't
501// iterate over all RegionCriticalPSets[i].
502void ScheduleDAGMI::
Jakub Staszakb717a502013-02-16 15:47:26 +0000503updateScheduledPressure(const std::vector<unsigned> &NewMaxPressure) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000504 for (unsigned i = 0, e = RegionCriticalPSets.size(); i < e; ++i) {
505 unsigned ID = RegionCriticalPSets[i].PSetID;
506 int &MaxUnits = RegionCriticalPSets[i].UnitIncrease;
507 if ((int)NewMaxPressure[ID] > MaxUnits)
508 MaxUnits = NewMaxPressure[ID];
509 }
Andrew Trick006e1ab2012-04-24 17:56:43 +0000510}
511
Andrew Trick17d35e52012-03-14 04:00:41 +0000512/// schedule - Called back from MachineScheduler::runOnMachineFunction
Andrew Trick006e1ab2012-04-24 17:56:43 +0000513/// after setting up the current scheduling region. [RegionBegin, RegionEnd)
514/// only includes instructions that have DAG nodes, not scheduling boundaries.
Andrew Trick78e5efe2012-09-11 00:39:15 +0000515///
516/// This is a skeletal driver, with all the functionality pushed into helpers,
517/// so that it can be easilly extended by experimental schedulers. Generally,
518/// implementing MachineSchedStrategy should be sufficient to implement a new
519/// scheduling algorithm. However, if a scheduler further subclasses
520/// ScheduleDAGMI then it will want to override this virtual method in order to
521/// update any specialized state.
Andrew Trick17d35e52012-03-14 04:00:41 +0000522void ScheduleDAGMI::schedule() {
Andrew Trick78e5efe2012-09-11 00:39:15 +0000523 buildDAGWithRegPressure();
524
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000525 Topo.InitDAGTopologicalSorting();
526
Andrew Trickd039b382012-09-14 17:22:42 +0000527 postprocessDAG();
528
Andrew Trick4e1fb182013-01-25 06:33:57 +0000529 SmallVector<SUnit*, 8> TopRoots, BotRoots;
530 findRootsAndBiasEdges(TopRoots, BotRoots);
531
532 // Initialize the strategy before modifying the DAG.
533 // This may initialize a DFSResult to be used for queue priority.
534 SchedImpl->initialize(this);
535
Andrew Trick78e5efe2012-09-11 00:39:15 +0000536 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
537 SUnits[su].dumpAll(this));
Andrew Trick4e1fb182013-01-25 06:33:57 +0000538 if (ViewMISchedDAGs) viewGraph();
Andrew Trick78e5efe2012-09-11 00:39:15 +0000539
Andrew Trick4e1fb182013-01-25 06:33:57 +0000540 // Initialize ready queues now that the DAG and priority data are finalized.
541 initQueues(TopRoots, BotRoots);
Andrew Trick78e5efe2012-09-11 00:39:15 +0000542
543 bool IsTopNode = false;
544 while (SUnit *SU = SchedImpl->pickNode(IsTopNode)) {
Andrew Trick30c6ec22012-10-08 18:53:53 +0000545 assert(!SU->isScheduled && "Node already scheduled");
Andrew Trick78e5efe2012-09-11 00:39:15 +0000546 if (!checkSchedLimit())
547 break;
548
549 scheduleMI(SU, IsTopNode);
550
551 updateQueues(SU, IsTopNode);
552 }
553 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone.");
554
555 placeDebugValues();
Andrew Trick3b87f622012-11-07 07:05:09 +0000556
557 DEBUG({
Andrew Trickb4221042012-11-28 03:42:47 +0000558 unsigned BBNum = begin()->getParent()->getNumber();
Andrew Trick3b87f622012-11-07 07:05:09 +0000559 dbgs() << "*** Final schedule for BB#" << BBNum << " ***\n";
560 dumpSchedule();
561 dbgs() << '\n';
562 });
Andrew Trick78e5efe2012-09-11 00:39:15 +0000563}
564
565/// Build the DAG and setup three register pressure trackers.
566void ScheduleDAGMI::buildDAGWithRegPressure() {
Andrew Trick7f8ab782012-05-10 21:06:10 +0000567 // Initialize the register pressure tracker used by buildSchedGraph.
568 RPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd);
Andrew Trick006e1ab2012-04-24 17:56:43 +0000569
Andrew Trick7f8ab782012-05-10 21:06:10 +0000570 // Account for liveness generate by the region boundary.
571 if (LiveRegionEnd != RegionEnd)
572 RPTracker.recede();
573
574 // Build the DAG, and compute current register pressure.
Andrew Trick006e1ab2012-04-24 17:56:43 +0000575 buildSchedGraph(AA, &RPTracker);
Andrew Trickc174eaf2012-03-08 01:41:12 +0000576
Andrew Trick7f8ab782012-05-10 21:06:10 +0000577 // Initialize top/bottom trackers after computing region pressure.
578 initRegPressure();
Andrew Trick78e5efe2012-09-11 00:39:15 +0000579}
Andrew Trick7f8ab782012-05-10 21:06:10 +0000580
Andrew Trickd039b382012-09-14 17:22:42 +0000581/// Apply each ScheduleDAGMutation step in order.
582void ScheduleDAGMI::postprocessDAG() {
583 for (unsigned i = 0, e = Mutations.size(); i < e; ++i) {
584 Mutations[i]->apply(this);
585 }
586}
587
Andrew Trick4e1fb182013-01-25 06:33:57 +0000588void ScheduleDAGMI::computeDFSResult() {
Andrew Trick178f7d02013-01-25 04:01:04 +0000589 if (!DFSResult)
590 DFSResult = new SchedDFSResult(/*BottomU*/true, MinSubtreeSize);
591 DFSResult->clear();
Andrew Trick178f7d02013-01-25 04:01:04 +0000592 ScheduledTrees.clear();
Andrew Trick4e1fb182013-01-25 06:33:57 +0000593 DFSResult->resize(SUnits.size());
594 DFSResult->compute(SUnits);
Andrew Trick178f7d02013-01-25 04:01:04 +0000595 ScheduledTrees.resize(DFSResult->getNumSubtrees());
596}
597
Andrew Trick4e1fb182013-01-25 06:33:57 +0000598void ScheduleDAGMI::findRootsAndBiasEdges(SmallVectorImpl<SUnit*> &TopRoots,
599 SmallVectorImpl<SUnit*> &BotRoots) {
Andrew Trick1e94e982012-10-15 18:02:27 +0000600 for (std::vector<SUnit>::iterator
601 I = SUnits.begin(), E = SUnits.end(); I != E; ++I) {
Andrew Trickae692f22012-11-12 19:28:57 +0000602 SUnit *SU = &(*I);
Andrew Trick4c6a2ba2013-01-29 06:26:35 +0000603 assert(!SU->isBoundaryNode() && "Boundary node should not be in SUnits");
Andrew Trickdb417062013-01-24 02:09:57 +0000604
605 // Order predecessors so DFSResult follows the critical path.
606 SU->biasCriticalPath();
607
Andrew Trick1e94e982012-10-15 18:02:27 +0000608 // A SUnit is ready to top schedule if it has no predecessors.
Andrew Trick4c6a2ba2013-01-29 06:26:35 +0000609 if (!I->NumPredsLeft)
Andrew Trick4e1fb182013-01-25 06:33:57 +0000610 TopRoots.push_back(SU);
Andrew Trick1e94e982012-10-15 18:02:27 +0000611 // A SUnit is ready to bottom schedule if it has no successors.
Andrew Trick4c6a2ba2013-01-29 06:26:35 +0000612 if (!I->NumSuccsLeft)
Andrew Trickae692f22012-11-12 19:28:57 +0000613 BotRoots.push_back(SU);
Andrew Trick1e94e982012-10-15 18:02:27 +0000614 }
Andrew Trick4c6a2ba2013-01-29 06:26:35 +0000615 ExitSU.biasCriticalPath();
Andrew Trick1e94e982012-10-15 18:02:27 +0000616}
617
Andrew Trick78e5efe2012-09-11 00:39:15 +0000618/// Identify DAG roots and setup scheduler queues.
Andrew Trick4e1fb182013-01-25 06:33:57 +0000619void ScheduleDAGMI::initQueues(ArrayRef<SUnit*> TopRoots,
620 ArrayRef<SUnit*> BotRoots) {
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000621 NextClusterSucc = NULL;
622 NextClusterPred = NULL;
Andrew Trick1e94e982012-10-15 18:02:27 +0000623
Andrew Trickae692f22012-11-12 19:28:57 +0000624 // Release all DAG roots for scheduling, not including EntrySU/ExitSU.
Andrew Trick4e1fb182013-01-25 06:33:57 +0000625 //
626 // Nodes with unreleased weak edges can still be roots.
627 // Release top roots in forward order.
628 for (SmallVectorImpl<SUnit*>::const_iterator
629 I = TopRoots.begin(), E = TopRoots.end(); I != E; ++I) {
630 SchedImpl->releaseTopNode(*I);
631 }
632 // Release bottom roots in reverse order so the higher priority nodes appear
633 // first. This is more natural and slightly more efficient.
634 for (SmallVectorImpl<SUnit*>::const_reverse_iterator
635 I = BotRoots.rbegin(), E = BotRoots.rend(); I != E; ++I) {
636 SchedImpl->releaseBottomNode(*I);
637 }
Andrew Trickae692f22012-11-12 19:28:57 +0000638
Andrew Trickc174eaf2012-03-08 01:41:12 +0000639 releaseSuccessors(&EntrySU);
Andrew Trick17d35e52012-03-14 04:00:41 +0000640 releasePredecessors(&ExitSU);
Andrew Trickc174eaf2012-03-08 01:41:12 +0000641
Andrew Trick1e94e982012-10-15 18:02:27 +0000642 SchedImpl->registerRoots();
643
Andrew Trick657b75b2012-12-01 01:22:49 +0000644 // Advance past initial DebugValues.
645 assert(TopRPTracker.getPos() == RegionBegin && "bad initial Top tracker");
Andrew Trickeb45ebb2012-04-24 18:04:34 +0000646 CurrentTop = nextIfDebug(RegionBegin, RegionEnd);
Andrew Trick657b75b2012-12-01 01:22:49 +0000647 TopRPTracker.setPos(CurrentTop);
648
Andrew Trick17d35e52012-03-14 04:00:41 +0000649 CurrentBottom = RegionEnd;
Andrew Trick78e5efe2012-09-11 00:39:15 +0000650}
Andrew Trickc174eaf2012-03-08 01:41:12 +0000651
Andrew Trick78e5efe2012-09-11 00:39:15 +0000652/// Move an instruction and update register pressure.
653void ScheduleDAGMI::scheduleMI(SUnit *SU, bool IsTopNode) {
654 // Move the instruction to its new location in the instruction stream.
655 MachineInstr *MI = SU->getInstr();
Andrew Trickc174eaf2012-03-08 01:41:12 +0000656
Andrew Trick78e5efe2012-09-11 00:39:15 +0000657 if (IsTopNode) {
658 assert(SU->isTopReady() && "node still has unscheduled dependencies");
659 if (&*CurrentTop == MI)
660 CurrentTop = nextIfDebug(++CurrentTop, CurrentBottom);
Andrew Trick17d35e52012-03-14 04:00:41 +0000661 else {
Andrew Trick78e5efe2012-09-11 00:39:15 +0000662 moveInstruction(MI, CurrentTop);
663 TopRPTracker.setPos(MI);
Andrew Trick17d35e52012-03-14 04:00:41 +0000664 }
Andrew Trick000b2502012-04-24 18:04:37 +0000665
Andrew Trick78e5efe2012-09-11 00:39:15 +0000666 // Update top scheduled pressure.
667 TopRPTracker.advance();
668 assert(TopRPTracker.getPos() == CurrentTop && "out of sync");
669 updateScheduledPressure(TopRPTracker.getPressure().MaxSetPressure);
670 }
671 else {
672 assert(SU->isBottomReady() && "node still has unscheduled dependencies");
673 MachineBasicBlock::iterator priorII =
674 priorNonDebug(CurrentBottom, CurrentTop);
675 if (&*priorII == MI)
676 CurrentBottom = priorII;
677 else {
678 if (&*CurrentTop == MI) {
679 CurrentTop = nextIfDebug(++CurrentTop, priorII);
680 TopRPTracker.setPos(CurrentTop);
681 }
682 moveInstruction(MI, CurrentBottom);
683 CurrentBottom = MI;
684 }
685 // Update bottom scheduled pressure.
686 BotRPTracker.recede();
687 assert(BotRPTracker.getPos() == CurrentBottom && "out of sync");
688 updateScheduledPressure(BotRPTracker.getPressure().MaxSetPressure);
689 }
690}
691
692/// Update scheduler queues after scheduling an instruction.
693void ScheduleDAGMI::updateQueues(SUnit *SU, bool IsTopNode) {
694 // Release dependent instructions for scheduling.
695 if (IsTopNode)
696 releaseSuccessors(SU);
697 else
698 releasePredecessors(SU);
699
700 SU->isScheduled = true;
701
Andrew Trick178f7d02013-01-25 04:01:04 +0000702 if (DFSResult) {
703 unsigned SubtreeID = DFSResult->getSubtreeID(SU);
704 if (!ScheduledTrees.test(SubtreeID)) {
705 ScheduledTrees.set(SubtreeID);
706 DFSResult->scheduleTree(SubtreeID);
707 SchedImpl->scheduleTree(SubtreeID);
708 }
709 }
710
Andrew Trick78e5efe2012-09-11 00:39:15 +0000711 // Notify the scheduling strategy after updating the DAG.
712 SchedImpl->schedNode(SU, IsTopNode);
Andrew Trick000b2502012-04-24 18:04:37 +0000713}
714
715/// Reinsert any remaining debug_values, just like the PostRA scheduler.
716void ScheduleDAGMI::placeDebugValues() {
717 // If first instruction was a DBG_VALUE then put it back.
718 if (FirstDbgValue) {
719 BB->splice(RegionBegin, BB, FirstDbgValue);
720 RegionBegin = FirstDbgValue;
721 }
722
723 for (std::vector<std::pair<MachineInstr *, MachineInstr *> >::iterator
724 DI = DbgValues.end(), DE = DbgValues.begin(); DI != DE; --DI) {
725 std::pair<MachineInstr *, MachineInstr *> P = *prior(DI);
726 MachineInstr *DbgValue = P.first;
727 MachineBasicBlock::iterator OrigPrevMI = P.second;
Andrew Trick67bdd422012-12-01 01:22:38 +0000728 if (&*RegionBegin == DbgValue)
729 ++RegionBegin;
Andrew Trick000b2502012-04-24 18:04:37 +0000730 BB->splice(++OrigPrevMI, BB, DbgValue);
731 if (OrigPrevMI == llvm::prior(RegionEnd))
732 RegionEnd = DbgValue;
733 }
734 DbgValues.clear();
735 FirstDbgValue = NULL;
Andrew Trickc174eaf2012-03-08 01:41:12 +0000736}
737
Andrew Trick3b87f622012-11-07 07:05:09 +0000738#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
739void ScheduleDAGMI::dumpSchedule() const {
740 for (MachineBasicBlock::iterator MI = begin(), ME = end(); MI != ME; ++MI) {
741 if (SUnit *SU = getSUnit(&(*MI)))
742 SU->dump(this);
743 else
744 dbgs() << "Missing SUnit\n";
745 }
746}
747#endif
748
Andrew Trick6996fd02012-11-12 19:52:20 +0000749//===----------------------------------------------------------------------===//
750// LoadClusterMutation - DAG post-processing to cluster loads.
751//===----------------------------------------------------------------------===//
752
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000753namespace {
754/// \brief Post-process the DAG to create cluster edges between neighboring
755/// loads.
756class LoadClusterMutation : public ScheduleDAGMutation {
757 struct LoadInfo {
758 SUnit *SU;
759 unsigned BaseReg;
760 unsigned Offset;
761 LoadInfo(SUnit *su, unsigned reg, unsigned ofs)
762 : SU(su), BaseReg(reg), Offset(ofs) {}
763 };
764 static bool LoadInfoLess(const LoadClusterMutation::LoadInfo &LHS,
765 const LoadClusterMutation::LoadInfo &RHS);
766
767 const TargetInstrInfo *TII;
768 const TargetRegisterInfo *TRI;
769public:
770 LoadClusterMutation(const TargetInstrInfo *tii,
771 const TargetRegisterInfo *tri)
772 : TII(tii), TRI(tri) {}
773
774 virtual void apply(ScheduleDAGMI *DAG);
775protected:
776 void clusterNeighboringLoads(ArrayRef<SUnit*> Loads, ScheduleDAGMI *DAG);
777};
778} // anonymous
779
780bool LoadClusterMutation::LoadInfoLess(
781 const LoadClusterMutation::LoadInfo &LHS,
782 const LoadClusterMutation::LoadInfo &RHS) {
783 if (LHS.BaseReg != RHS.BaseReg)
784 return LHS.BaseReg < RHS.BaseReg;
785 return LHS.Offset < RHS.Offset;
786}
787
788void LoadClusterMutation::clusterNeighboringLoads(ArrayRef<SUnit*> Loads,
789 ScheduleDAGMI *DAG) {
790 SmallVector<LoadClusterMutation::LoadInfo,32> LoadRecords;
791 for (unsigned Idx = 0, End = Loads.size(); Idx != End; ++Idx) {
792 SUnit *SU = Loads[Idx];
793 unsigned BaseReg;
794 unsigned Offset;
795 if (TII->getLdStBaseRegImmOfs(SU->getInstr(), BaseReg, Offset, TRI))
796 LoadRecords.push_back(LoadInfo(SU, BaseReg, Offset));
797 }
798 if (LoadRecords.size() < 2)
799 return;
800 std::sort(LoadRecords.begin(), LoadRecords.end(), LoadInfoLess);
801 unsigned ClusterLength = 1;
802 for (unsigned Idx = 0, End = LoadRecords.size(); Idx < (End - 1); ++Idx) {
803 if (LoadRecords[Idx].BaseReg != LoadRecords[Idx+1].BaseReg) {
804 ClusterLength = 1;
805 continue;
806 }
807
808 SUnit *SUa = LoadRecords[Idx].SU;
809 SUnit *SUb = LoadRecords[Idx+1].SU;
Andrew Tricka7d2d562012-11-12 21:28:10 +0000810 if (TII->shouldClusterLoads(SUa->getInstr(), SUb->getInstr(), ClusterLength)
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000811 && DAG->addEdge(SUb, SDep(SUa, SDep::Cluster))) {
812
813 DEBUG(dbgs() << "Cluster loads SU(" << SUa->NodeNum << ") - SU("
814 << SUb->NodeNum << ")\n");
815 // Copy successor edges from SUa to SUb. Interleaving computation
816 // dependent on SUa can prevent load combining due to register reuse.
817 // Predecessor edges do not need to be copied from SUb to SUa since nearby
818 // loads should have effectively the same inputs.
819 for (SUnit::const_succ_iterator
820 SI = SUa->Succs.begin(), SE = SUa->Succs.end(); SI != SE; ++SI) {
821 if (SI->getSUnit() == SUb)
822 continue;
823 DEBUG(dbgs() << " Copy Succ SU(" << SI->getSUnit()->NodeNum << ")\n");
824 DAG->addEdge(SI->getSUnit(), SDep(SUb, SDep::Artificial));
825 }
826 ++ClusterLength;
827 }
828 else
829 ClusterLength = 1;
830 }
831}
832
833/// \brief Callback from DAG postProcessing to create cluster edges for loads.
834void LoadClusterMutation::apply(ScheduleDAGMI *DAG) {
835 // Map DAG NodeNum to store chain ID.
836 DenseMap<unsigned, unsigned> StoreChainIDs;
837 // Map each store chain to a set of dependent loads.
838 SmallVector<SmallVector<SUnit*,4>, 32> StoreChainDependents;
839 for (unsigned Idx = 0, End = DAG->SUnits.size(); Idx != End; ++Idx) {
840 SUnit *SU = &DAG->SUnits[Idx];
841 if (!SU->getInstr()->mayLoad())
842 continue;
843 unsigned ChainPredID = DAG->SUnits.size();
844 for (SUnit::const_pred_iterator
845 PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) {
846 if (PI->isCtrl()) {
847 ChainPredID = PI->getSUnit()->NodeNum;
848 break;
849 }
850 }
851 // Check if this chain-like pred has been seen
852 // before. ChainPredID==MaxNodeID for loads at the top of the schedule.
853 unsigned NumChains = StoreChainDependents.size();
854 std::pair<DenseMap<unsigned, unsigned>::iterator, bool> Result =
855 StoreChainIDs.insert(std::make_pair(ChainPredID, NumChains));
856 if (Result.second)
857 StoreChainDependents.resize(NumChains + 1);
858 StoreChainDependents[Result.first->second].push_back(SU);
859 }
860 // Iterate over the store chains.
861 for (unsigned Idx = 0, End = StoreChainDependents.size(); Idx != End; ++Idx)
862 clusterNeighboringLoads(StoreChainDependents[Idx], DAG);
863}
864
Andrew Trickc174eaf2012-03-08 01:41:12 +0000865//===----------------------------------------------------------------------===//
Andrew Trick6996fd02012-11-12 19:52:20 +0000866// MacroFusion - DAG post-processing to encourage fusion of macro ops.
867//===----------------------------------------------------------------------===//
868
869namespace {
870/// \brief Post-process the DAG to create cluster edges between instructions
871/// that may be fused by the processor into a single operation.
872class MacroFusion : public ScheduleDAGMutation {
873 const TargetInstrInfo *TII;
874public:
875 MacroFusion(const TargetInstrInfo *tii): TII(tii) {}
876
877 virtual void apply(ScheduleDAGMI *DAG);
878};
879} // anonymous
880
881/// \brief Callback from DAG postProcessing to create cluster edges to encourage
882/// fused operations.
883void MacroFusion::apply(ScheduleDAGMI *DAG) {
884 // For now, assume targets can only fuse with the branch.
885 MachineInstr *Branch = DAG->ExitSU.getInstr();
886 if (!Branch)
887 return;
888
889 for (unsigned Idx = DAG->SUnits.size(); Idx > 0;) {
890 SUnit *SU = &DAG->SUnits[--Idx];
891 if (!TII->shouldScheduleAdjacent(SU->getInstr(), Branch))
892 continue;
893
894 // Create a single weak edge from SU to ExitSU. The only effect is to cause
895 // bottom-up scheduling to heavily prioritize the clustered SU. There is no
896 // need to copy predecessor edges from ExitSU to SU, since top-down
897 // scheduling cannot prioritize ExitSU anyway. To defer top-down scheduling
898 // of SU, we could create an artificial edge from the deepest root, but it
899 // hasn't been needed yet.
900 bool Success = DAG->addEdge(&DAG->ExitSU, SDep(SU, SDep::Cluster));
901 (void)Success;
902 assert(Success && "No DAG nodes should be reachable from ExitSU");
903
904 DEBUG(dbgs() << "Macro Fuse SU(" << SU->NodeNum << ")\n");
905 break;
906 }
907}
908
909//===----------------------------------------------------------------------===//
Andrew Trick17d35e52012-03-14 04:00:41 +0000910// ConvergingScheduler - Implementation of the standard MachineSchedStrategy.
Andrew Trick42b7a712012-01-17 06:55:03 +0000911//===----------------------------------------------------------------------===//
912
913namespace {
Andrew Trick17d35e52012-03-14 04:00:41 +0000914/// ConvergingScheduler shrinks the unscheduled zone using heuristics to balance
915/// the schedule.
916class ConvergingScheduler : public MachineSchedStrategy {
Andrew Trick3b87f622012-11-07 07:05:09 +0000917public:
918 /// Represent the type of SchedCandidate found within a single queue.
919 /// pickNodeBidirectional depends on these listed by decreasing priority.
920 enum CandReason {
Andrew Trick4392f0f2013-04-13 06:07:40 +0000921 NoCand, PhysRegCopy, SingleExcess, SingleCritical, Cluster,
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000922 ResourceReduce, ResourceDemand, BotHeightReduce, BotPathReduce,
923 TopDepthReduce, TopPathReduce, SingleMax, MultiPressure, NextDefUse,
924 NodeOrder};
Andrew Trick3b87f622012-11-07 07:05:09 +0000925
926#ifndef NDEBUG
927 static const char *getReasonStr(ConvergingScheduler::CandReason Reason);
928#endif
929
930 /// Policy for scheduling the next instruction in the candidate's zone.
931 struct CandPolicy {
932 bool ReduceLatency;
933 unsigned ReduceResIdx;
934 unsigned DemandResIdx;
935
936 CandPolicy(): ReduceLatency(false), ReduceResIdx(0), DemandResIdx(0) {}
937 };
938
939 /// Status of an instruction's critical resource consumption.
940 struct SchedResourceDelta {
941 // Count critical resources in the scheduled region required by SU.
942 unsigned CritResources;
943
944 // Count critical resources from another region consumed by SU.
945 unsigned DemandedResources;
946
947 SchedResourceDelta(): CritResources(0), DemandedResources(0) {}
948
949 bool operator==(const SchedResourceDelta &RHS) const {
950 return CritResources == RHS.CritResources
951 && DemandedResources == RHS.DemandedResources;
952 }
953 bool operator!=(const SchedResourceDelta &RHS) const {
954 return !operator==(RHS);
955 }
956 };
Andrew Trick7196a8f2012-05-10 21:06:16 +0000957
958 /// Store the state used by ConvergingScheduler heuristics, required for the
959 /// lifetime of one invocation of pickNode().
960 struct SchedCandidate {
Andrew Trick3b87f622012-11-07 07:05:09 +0000961 CandPolicy Policy;
962
Andrew Trick7196a8f2012-05-10 21:06:16 +0000963 // The best SUnit candidate.
964 SUnit *SU;
965
Andrew Trick3b87f622012-11-07 07:05:09 +0000966 // The reason for this candidate.
967 CandReason Reason;
968
Andrew Trick7196a8f2012-05-10 21:06:16 +0000969 // Register pressure values for the best candidate.
970 RegPressureDelta RPDelta;
971
Andrew Trick3b87f622012-11-07 07:05:09 +0000972 // Critical resource consumption of the best candidate.
973 SchedResourceDelta ResDelta;
974
975 SchedCandidate(const CandPolicy &policy)
976 : Policy(policy), SU(NULL), Reason(NoCand) {}
977
978 bool isValid() const { return SU; }
979
980 // Copy the status of another candidate without changing policy.
981 void setBest(SchedCandidate &Best) {
982 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
983 SU = Best.SU;
984 Reason = Best.Reason;
985 RPDelta = Best.RPDelta;
986 ResDelta = Best.ResDelta;
987 }
988
989 void initResourceDelta(const ScheduleDAGMI *DAG,
990 const TargetSchedModel *SchedModel);
Andrew Trick7196a8f2012-05-10 21:06:16 +0000991 };
Andrew Trick3b87f622012-11-07 07:05:09 +0000992
993 /// Summarize the unscheduled region.
994 struct SchedRemainder {
995 // Critical path through the DAG in expected latency.
996 unsigned CriticalPath;
997
998 // Unscheduled resources
999 SmallVector<unsigned, 16> RemainingCounts;
1000 // Critical resource for the unscheduled zone.
1001 unsigned CritResIdx;
1002 // Number of micro-ops left to schedule.
1003 unsigned RemainingMicroOps;
Andrew Trick3b87f622012-11-07 07:05:09 +00001004
Andrew Trick3b87f622012-11-07 07:05:09 +00001005 void reset() {
1006 CriticalPath = 0;
1007 RemainingCounts.clear();
1008 CritResIdx = 0;
1009 RemainingMicroOps = 0;
Andrew Trick3b87f622012-11-07 07:05:09 +00001010 }
1011
1012 SchedRemainder() { reset(); }
1013
1014 void init(ScheduleDAGMI *DAG, const TargetSchedModel *SchedModel);
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001015
1016 unsigned getMaxRemainingCount(const TargetSchedModel *SchedModel) const {
1017 if (!SchedModel->hasInstrSchedModel())
1018 return 0;
1019
1020 return std::max(
1021 RemainingMicroOps * SchedModel->getMicroOpFactor(),
1022 RemainingCounts[CritResIdx]);
1023 }
Andrew Trick3b87f622012-11-07 07:05:09 +00001024 };
Andrew Trick7196a8f2012-05-10 21:06:16 +00001025
Andrew Trickf3234242012-05-24 22:11:12 +00001026 /// Each Scheduling boundary is associated with ready queues. It tracks the
Andrew Trick3b87f622012-11-07 07:05:09 +00001027 /// current cycle in the direction of movement, and maintains the state
Andrew Trickf3234242012-05-24 22:11:12 +00001028 /// of "hazards" and other interlocks at the current cycle.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001029 struct SchedBoundary {
Andrew Trick7f8c74c2012-06-29 03:23:22 +00001030 ScheduleDAGMI *DAG;
Andrew Trick412cd2f2012-10-10 05:43:09 +00001031 const TargetSchedModel *SchedModel;
Andrew Trick3b87f622012-11-07 07:05:09 +00001032 SchedRemainder *Rem;
Andrew Trick7f8c74c2012-06-29 03:23:22 +00001033
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001034 ReadyQueue Available;
1035 ReadyQueue Pending;
1036 bool CheckPending;
1037
Andrew Trick3b87f622012-11-07 07:05:09 +00001038 // For heuristics, keep a list of the nodes that immediately depend on the
1039 // most recently scheduled node.
1040 SmallPtrSet<const SUnit*, 8> NextSUs;
1041
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001042 ScheduleHazardRecognizer *HazardRec;
1043
1044 unsigned CurrCycle;
1045 unsigned IssueCount;
1046
1047 /// MinReadyCycle - Cycle of the soonest available instruction.
1048 unsigned MinReadyCycle;
1049
Andrew Trick3b87f622012-11-07 07:05:09 +00001050 // The expected latency of the critical path in this scheduled zone.
1051 unsigned ExpectedLatency;
1052
1053 // Resources used in the scheduled zone beyond this boundary.
1054 SmallVector<unsigned, 16> ResourceCounts;
1055
1056 // Cache the critical resources ID in this scheduled zone.
1057 unsigned CritResIdx;
1058
1059 // Is the scheduled region resource limited vs. latency limited.
1060 bool IsResourceLimited;
1061
1062 unsigned ExpectedCount;
1063
Andrew Trick3b87f622012-11-07 07:05:09 +00001064#ifndef NDEBUG
Andrew Trickb7e02892012-06-05 21:11:27 +00001065 // Remember the greatest min operand latency.
1066 unsigned MaxMinLatency;
Andrew Trick3b87f622012-11-07 07:05:09 +00001067#endif
1068
1069 void reset() {
Andrew Trickecb8c2b2013-02-13 19:22:27 +00001070 // A new HazardRec is created for each DAG and owned by SchedBoundary.
1071 delete HazardRec;
1072
Andrew Trick3b87f622012-11-07 07:05:09 +00001073 Available.clear();
1074 Pending.clear();
1075 CheckPending = false;
1076 NextSUs.clear();
1077 HazardRec = 0;
1078 CurrCycle = 0;
1079 IssueCount = 0;
1080 MinReadyCycle = UINT_MAX;
1081 ExpectedLatency = 0;
1082 ResourceCounts.resize(1);
1083 assert(!ResourceCounts[0] && "nonzero count for bad resource");
1084 CritResIdx = 0;
1085 IsResourceLimited = false;
1086 ExpectedCount = 0;
Andrew Trick3b87f622012-11-07 07:05:09 +00001087#ifndef NDEBUG
1088 MaxMinLatency = 0;
1089#endif
1090 // Reserve a zero-count for invalid CritResIdx.
1091 ResourceCounts.resize(1);
1092 }
Andrew Trickb7e02892012-06-05 21:11:27 +00001093
Andrew Trickf3234242012-05-24 22:11:12 +00001094 /// Pending queues extend the ready queues with the same ID and the
1095 /// PendingFlag set.
1096 SchedBoundary(unsigned ID, const Twine &Name):
Andrew Trick3b87f622012-11-07 07:05:09 +00001097 DAG(0), SchedModel(0), Rem(0), Available(ID, Name+".A"),
Andrew Trickecb8c2b2013-02-13 19:22:27 +00001098 Pending(ID << ConvergingScheduler::LogMaxQID, Name+".P"),
1099 HazardRec(0) {
Andrew Trick3b87f622012-11-07 07:05:09 +00001100 reset();
1101 }
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001102
1103 ~SchedBoundary() { delete HazardRec; }
1104
Andrew Trick3b87f622012-11-07 07:05:09 +00001105 void init(ScheduleDAGMI *dag, const TargetSchedModel *smodel,
1106 SchedRemainder *rem);
Andrew Trick412cd2f2012-10-10 05:43:09 +00001107
Andrew Trickf3234242012-05-24 22:11:12 +00001108 bool isTop() const {
1109 return Available.getID() == ConvergingScheduler::TopQID;
1110 }
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001111
Andrew Trick3b87f622012-11-07 07:05:09 +00001112 unsigned getUnscheduledLatency(SUnit *SU) const {
1113 if (isTop())
1114 return SU->getHeight();
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001115 return SU->getDepth() + SU->Latency;
Andrew Trick3b87f622012-11-07 07:05:09 +00001116 }
1117
1118 unsigned getCriticalCount() const {
1119 return ResourceCounts[CritResIdx];
1120 }
1121
Andrew Trick5559ffa2012-06-29 03:23:24 +00001122 bool checkHazard(SUnit *SU);
1123
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001124 void setLatencyPolicy(CandPolicy &Policy);
Andrew Trick3b87f622012-11-07 07:05:09 +00001125
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001126 void releaseNode(SUnit *SU, unsigned ReadyCycle);
1127
1128 void bumpCycle();
1129
Andrew Trick3b87f622012-11-07 07:05:09 +00001130 void countResource(unsigned PIdx, unsigned Cycles);
1131
Andrew Trick7f8c74c2012-06-29 03:23:22 +00001132 void bumpNode(SUnit *SU);
Andrew Trickb7e02892012-06-05 21:11:27 +00001133
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001134 void releasePending();
1135
1136 void removeReady(SUnit *SU);
1137
1138 SUnit *pickOnlyChoice();
1139 };
1140
Andrew Trick3b87f622012-11-07 07:05:09 +00001141private:
Andrew Trick17d35e52012-03-14 04:00:41 +00001142 ScheduleDAGMI *DAG;
Andrew Trick412cd2f2012-10-10 05:43:09 +00001143 const TargetSchedModel *SchedModel;
Andrew Trick7196a8f2012-05-10 21:06:16 +00001144 const TargetRegisterInfo *TRI;
Andrew Trick42b7a712012-01-17 06:55:03 +00001145
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001146 // State of the top and bottom scheduled instruction boundaries.
Andrew Trick3b87f622012-11-07 07:05:09 +00001147 SchedRemainder Rem;
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001148 SchedBoundary Top;
1149 SchedBoundary Bot;
Andrew Trick17d35e52012-03-14 04:00:41 +00001150
1151public:
Andrew Trickf3234242012-05-24 22:11:12 +00001152 /// SUnit::NodeQueueId: 0 (none), 1 (top), 2 (bot), 3 (both)
Andrew Trick7196a8f2012-05-10 21:06:16 +00001153 enum {
1154 TopQID = 1,
Andrew Trickf3234242012-05-24 22:11:12 +00001155 BotQID = 2,
1156 LogMaxQID = 2
Andrew Trick7196a8f2012-05-10 21:06:16 +00001157 };
1158
Andrew Trickf3234242012-05-24 22:11:12 +00001159 ConvergingScheduler():
Andrew Trick412cd2f2012-10-10 05:43:09 +00001160 DAG(0), SchedModel(0), TRI(0), Top(TopQID, "TopQ"), Bot(BotQID, "BotQ") {}
Andrew Trickd38f87e2012-05-10 21:06:12 +00001161
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001162 virtual void initialize(ScheduleDAGMI *dag);
Andrew Trick17d35e52012-03-14 04:00:41 +00001163
Andrew Trick7196a8f2012-05-10 21:06:16 +00001164 virtual SUnit *pickNode(bool &IsTopNode);
Andrew Trick17d35e52012-03-14 04:00:41 +00001165
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001166 virtual void schedNode(SUnit *SU, bool IsTopNode);
1167
1168 virtual void releaseTopNode(SUnit *SU);
1169
1170 virtual void releaseBottomNode(SUnit *SU);
1171
Andrew Trick3b87f622012-11-07 07:05:09 +00001172 virtual void registerRoots();
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001173
Andrew Trick3b87f622012-11-07 07:05:09 +00001174protected:
1175 void balanceZones(
1176 ConvergingScheduler::SchedBoundary &CriticalZone,
1177 ConvergingScheduler::SchedCandidate &CriticalCand,
1178 ConvergingScheduler::SchedBoundary &OppositeZone,
1179 ConvergingScheduler::SchedCandidate &OppositeCand);
1180
1181 void checkResourceLimits(ConvergingScheduler::SchedCandidate &TopCand,
1182 ConvergingScheduler::SchedCandidate &BotCand);
1183
1184 void tryCandidate(SchedCandidate &Cand,
1185 SchedCandidate &TryCand,
1186 SchedBoundary &Zone,
1187 const RegPressureTracker &RPTracker,
1188 RegPressureTracker &TempTracker);
1189
1190 SUnit *pickNodeBidirectional(bool &IsTopNode);
1191
1192 void pickNodeFromQueue(SchedBoundary &Zone,
1193 const RegPressureTracker &RPTracker,
1194 SchedCandidate &Candidate);
1195
Andrew Trick4392f0f2013-04-13 06:07:40 +00001196 void reschedulePhysRegCopies(SUnit *SU, bool isTop);
1197
Andrew Trick28ebc892012-05-10 21:06:19 +00001198#ifndef NDEBUG
Andrew Trick11189f72013-04-05 00:31:29 +00001199 void traceCandidate(const SchedCandidate &Cand);
Andrew Trick28ebc892012-05-10 21:06:19 +00001200#endif
Andrew Trick42b7a712012-01-17 06:55:03 +00001201};
1202} // namespace
1203
Andrew Trick3b87f622012-11-07 07:05:09 +00001204void ConvergingScheduler::SchedRemainder::
1205init(ScheduleDAGMI *DAG, const TargetSchedModel *SchedModel) {
1206 reset();
1207 if (!SchedModel->hasInstrSchedModel())
1208 return;
1209 RemainingCounts.resize(SchedModel->getNumProcResourceKinds());
1210 for (std::vector<SUnit>::iterator
1211 I = DAG->SUnits.begin(), E = DAG->SUnits.end(); I != E; ++I) {
1212 const MCSchedClassDesc *SC = DAG->getSchedClass(&*I);
1213 RemainingMicroOps += SchedModel->getNumMicroOps(I->getInstr(), SC);
1214 for (TargetSchedModel::ProcResIter
1215 PI = SchedModel->getWriteProcResBegin(SC),
1216 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
1217 unsigned PIdx = PI->ProcResourceIdx;
1218 unsigned Factor = SchedModel->getResourceFactor(PIdx);
1219 RemainingCounts[PIdx] += (Factor * PI->Cycles);
1220 }
1221 }
Andrew Trick071966f2012-12-18 20:52:49 +00001222 for (unsigned PIdx = 0, PEnd = SchedModel->getNumProcResourceKinds();
1223 PIdx != PEnd; ++PIdx) {
1224 if ((int)(RemainingCounts[PIdx] - RemainingCounts[CritResIdx])
1225 >= (int)SchedModel->getLatencyFactor()) {
1226 CritResIdx = PIdx;
1227 }
1228 }
Andrew Trick3b87f622012-11-07 07:05:09 +00001229}
1230
1231void ConvergingScheduler::SchedBoundary::
1232init(ScheduleDAGMI *dag, const TargetSchedModel *smodel, SchedRemainder *rem) {
1233 reset();
1234 DAG = dag;
1235 SchedModel = smodel;
1236 Rem = rem;
1237 if (SchedModel->hasInstrSchedModel())
1238 ResourceCounts.resize(SchedModel->getNumProcResourceKinds());
1239}
1240
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001241void ConvergingScheduler::initialize(ScheduleDAGMI *dag) {
1242 DAG = dag;
Andrew Trick412cd2f2012-10-10 05:43:09 +00001243 SchedModel = DAG->getSchedModel();
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001244 TRI = DAG->TRI;
Andrew Trickecb8c2b2013-02-13 19:22:27 +00001245
Andrew Trick3b87f622012-11-07 07:05:09 +00001246 Rem.init(DAG, SchedModel);
1247 Top.init(DAG, SchedModel, &Rem);
1248 Bot.init(DAG, SchedModel, &Rem);
1249
1250 // Initialize resource counts.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001251
Andrew Trick412cd2f2012-10-10 05:43:09 +00001252 // Initialize the HazardRecognizers. If itineraries don't exist, are empty, or
1253 // are disabled, then these HazardRecs will be disabled.
1254 const InstrItineraryData *Itin = SchedModel->getInstrItineraries();
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001255 const TargetMachine &TM = DAG->MF.getTarget();
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001256 Top.HazardRec = TM.getInstrInfo()->CreateTargetMIHazardRecognizer(Itin, DAG);
1257 Bot.HazardRec = TM.getInstrInfo()->CreateTargetMIHazardRecognizer(Itin, DAG);
1258
1259 assert((!ForceTopDown || !ForceBottomUp) &&
1260 "-misched-topdown incompatible with -misched-bottomup");
1261}
1262
1263void ConvergingScheduler::releaseTopNode(SUnit *SU) {
Andrew Trickb7e02892012-06-05 21:11:27 +00001264 if (SU->isScheduled)
1265 return;
1266
Andrew Trickd4539602012-12-18 20:52:52 +00001267 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
Andrew Trickb7e02892012-06-05 21:11:27 +00001268 I != E; ++I) {
1269 unsigned PredReadyCycle = I->getSUnit()->TopReadyCycle;
Andrew Trickffd25262012-08-23 00:39:43 +00001270 unsigned MinLatency = I->getMinLatency();
Andrew Trickb7e02892012-06-05 21:11:27 +00001271#ifndef NDEBUG
Andrew Trickffd25262012-08-23 00:39:43 +00001272 Top.MaxMinLatency = std::max(MinLatency, Top.MaxMinLatency);
Andrew Trickb7e02892012-06-05 21:11:27 +00001273#endif
Andrew Trickffd25262012-08-23 00:39:43 +00001274 if (SU->TopReadyCycle < PredReadyCycle + MinLatency)
1275 SU->TopReadyCycle = PredReadyCycle + MinLatency;
Andrew Trickb7e02892012-06-05 21:11:27 +00001276 }
1277 Top.releaseNode(SU, SU->TopReadyCycle);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001278}
1279
1280void ConvergingScheduler::releaseBottomNode(SUnit *SU) {
Andrew Trickb7e02892012-06-05 21:11:27 +00001281 if (SU->isScheduled)
1282 return;
1283
1284 assert(SU->getInstr() && "Scheduled SUnit must have instr");
1285
1286 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
1287 I != E; ++I) {
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001288 if (I->isWeak())
1289 continue;
Andrew Trickb7e02892012-06-05 21:11:27 +00001290 unsigned SuccReadyCycle = I->getSUnit()->BotReadyCycle;
Andrew Trickffd25262012-08-23 00:39:43 +00001291 unsigned MinLatency = I->getMinLatency();
Andrew Trickb7e02892012-06-05 21:11:27 +00001292#ifndef NDEBUG
Andrew Trickffd25262012-08-23 00:39:43 +00001293 Bot.MaxMinLatency = std::max(MinLatency, Bot.MaxMinLatency);
Andrew Trickb7e02892012-06-05 21:11:27 +00001294#endif
Andrew Trickffd25262012-08-23 00:39:43 +00001295 if (SU->BotReadyCycle < SuccReadyCycle + MinLatency)
1296 SU->BotReadyCycle = SuccReadyCycle + MinLatency;
Andrew Trickb7e02892012-06-05 21:11:27 +00001297 }
1298 Bot.releaseNode(SU, SU->BotReadyCycle);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001299}
1300
Andrew Trick3b87f622012-11-07 07:05:09 +00001301void ConvergingScheduler::registerRoots() {
1302 Rem.CriticalPath = DAG->ExitSU.getDepth();
1303 // Some roots may not feed into ExitSU. Check all of them in case.
1304 for (std::vector<SUnit*>::const_iterator
1305 I = Bot.Available.begin(), E = Bot.Available.end(); I != E; ++I) {
1306 if ((*I)->getDepth() > Rem.CriticalPath)
1307 Rem.CriticalPath = (*I)->getDepth();
1308 }
1309 DEBUG(dbgs() << "Critical Path: " << Rem.CriticalPath << '\n');
1310}
1311
Andrew Trick5559ffa2012-06-29 03:23:24 +00001312/// Does this SU have a hazard within the current instruction group.
1313///
1314/// The scheduler supports two modes of hazard recognition. The first is the
1315/// ScheduleHazardRecognizer API. It is a fully general hazard recognizer that
1316/// supports highly complicated in-order reservation tables
1317/// (ScoreboardHazardRecognizer) and arbitraty target-specific logic.
1318///
1319/// The second is a streamlined mechanism that checks for hazards based on
1320/// simple counters that the scheduler itself maintains. It explicitly checks
1321/// for instruction dispatch limitations, including the number of micro-ops that
1322/// can dispatch per cycle.
1323///
1324/// TODO: Also check whether the SU must start a new group.
1325bool ConvergingScheduler::SchedBoundary::checkHazard(SUnit *SU) {
1326 if (HazardRec->isEnabled())
1327 return HazardRec->getHazardType(SU) != ScheduleHazardRecognizer::NoHazard;
1328
Andrew Trick412cd2f2012-10-10 05:43:09 +00001329 unsigned uops = SchedModel->getNumMicroOps(SU->getInstr());
Andrew Trick3b87f622012-11-07 07:05:09 +00001330 if ((IssueCount > 0) && (IssueCount + uops > SchedModel->getIssueWidth())) {
1331 DEBUG(dbgs() << " SU(" << SU->NodeNum << ") uops="
1332 << SchedModel->getNumMicroOps(SU->getInstr()) << '\n');
Andrew Trick5559ffa2012-06-29 03:23:24 +00001333 return true;
Andrew Trick3b87f622012-11-07 07:05:09 +00001334 }
Andrew Trick5559ffa2012-06-29 03:23:24 +00001335 return false;
1336}
1337
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001338/// Compute the remaining latency to determine whether ILP should be increased.
1339void ConvergingScheduler::SchedBoundary::setLatencyPolicy(CandPolicy &Policy) {
1340 // FIXME: compile time. In all, we visit four queues here one we should only
1341 // need to visit the one that was last popped if we cache the result.
1342 unsigned RemLatency = 0;
1343 for (ReadyQueue::iterator I = Available.begin(), E = Available.end();
1344 I != E; ++I) {
1345 unsigned L = getUnscheduledLatency(*I);
Andrew Trickbaedcd72013-04-13 06:07:49 +00001346 DEBUG(dbgs() << " " << Available.getName()
1347 << " RemLatency SU(" << (*I)->NodeNum << ") " << L << '\n');
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001348 if (L > RemLatency)
1349 RemLatency = L;
1350 }
1351 for (ReadyQueue::iterator I = Pending.begin(), E = Pending.end();
1352 I != E; ++I) {
1353 unsigned L = getUnscheduledLatency(*I);
1354 if (L > RemLatency)
1355 RemLatency = L;
1356 }
Andrew Trick47579cf2013-01-09 03:36:49 +00001357 unsigned CriticalPathLimit = Rem->CriticalPath + SchedModel->getILPWindow();
Andrew Trickbaedcd72013-04-13 06:07:49 +00001358 DEBUG(dbgs() << " " << Available.getName()
1359 << " ExpectedLatency " << ExpectedLatency
1360 << " CP Limit " << CriticalPathLimit << '\n');
Andrew Trick47579cf2013-01-09 03:36:49 +00001361 if (RemLatency + ExpectedLatency >= CriticalPathLimit
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001362 && RemLatency > Rem->getMaxRemainingCount(SchedModel)) {
1363 Policy.ReduceLatency = true;
Andrew Trickbaedcd72013-04-13 06:07:49 +00001364 DEBUG(dbgs() << " Increase ILP: " << Available.getName() << '\n');
Andrew Trick3b87f622012-11-07 07:05:09 +00001365 }
1366}
1367
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001368void ConvergingScheduler::SchedBoundary::releaseNode(SUnit *SU,
1369 unsigned ReadyCycle) {
Andrew Trick3b87f622012-11-07 07:05:09 +00001370
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001371 if (ReadyCycle < MinReadyCycle)
1372 MinReadyCycle = ReadyCycle;
1373
1374 // Check for interlocks first. For the purpose of other heuristics, an
1375 // instruction that cannot issue appears as if it's not in the ReadyQueue.
Andrew Trick5559ffa2012-06-29 03:23:24 +00001376 if (ReadyCycle > CurrCycle || checkHazard(SU))
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001377 Pending.push(SU);
1378 else
1379 Available.push(SU);
Andrew Trick3b87f622012-11-07 07:05:09 +00001380
1381 // Record this node as an immediate dependent of the scheduled node.
1382 NextSUs.insert(SU);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001383}
1384
1385/// Move the boundary of scheduled code by one cycle.
1386void ConvergingScheduler::SchedBoundary::bumpCycle() {
Andrew Trick412cd2f2012-10-10 05:43:09 +00001387 unsigned Width = SchedModel->getIssueWidth();
Andrew Trick7f8c74c2012-06-29 03:23:22 +00001388 IssueCount = (IssueCount <= Width) ? 0 : IssueCount - Width;
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001389
Andrew Trick3b87f622012-11-07 07:05:09 +00001390 unsigned NextCycle = CurrCycle + 1;
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001391 assert(MinReadyCycle < UINT_MAX && "MinReadyCycle uninitialized");
Andrew Trick3b87f622012-11-07 07:05:09 +00001392 if (MinReadyCycle > NextCycle) {
1393 IssueCount = 0;
1394 NextCycle = MinReadyCycle;
1395 }
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001396
1397 if (!HazardRec->isEnabled()) {
Andrew Trickb7e02892012-06-05 21:11:27 +00001398 // Bypass HazardRec virtual calls.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001399 CurrCycle = NextCycle;
1400 }
1401 else {
Andrew Trickb7e02892012-06-05 21:11:27 +00001402 // Bypass getHazardType calls in case of long latency.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001403 for (; CurrCycle != NextCycle; ++CurrCycle) {
1404 if (isTop())
1405 HazardRec->AdvanceCycle();
1406 else
1407 HazardRec->RecedeCycle();
1408 }
1409 }
1410 CheckPending = true;
Andrew Trick3b87f622012-11-07 07:05:09 +00001411 IsResourceLimited = getCriticalCount() > std::max(ExpectedLatency, CurrCycle);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001412
Andrew Trick11189f72013-04-05 00:31:29 +00001413 DEBUG(dbgs() << " " << Available.getName()
1414 << " Cycle: " << CurrCycle << '\n');
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001415}
1416
Andrew Trick3b87f622012-11-07 07:05:09 +00001417/// Add the given processor resource to this scheduled zone.
1418void ConvergingScheduler::SchedBoundary::countResource(unsigned PIdx,
1419 unsigned Cycles) {
1420 unsigned Factor = SchedModel->getResourceFactor(PIdx);
1421 DEBUG(dbgs() << " " << SchedModel->getProcResource(PIdx)->Name
1422 << " +(" << Cycles << "x" << Factor
1423 << ") / " << SchedModel->getLatencyFactor() << '\n');
1424
1425 unsigned Count = Factor * Cycles;
1426 ResourceCounts[PIdx] += Count;
1427 assert(Rem->RemainingCounts[PIdx] >= Count && "resource double counted");
1428 Rem->RemainingCounts[PIdx] -= Count;
1429
Andrew Trick3b87f622012-11-07 07:05:09 +00001430 // Check if this resource exceeds the current critical resource by a full
1431 // cycle. If so, it becomes the critical resource.
1432 if ((int)(ResourceCounts[PIdx] - ResourceCounts[CritResIdx])
1433 >= (int)SchedModel->getLatencyFactor()) {
1434 CritResIdx = PIdx;
1435 DEBUG(dbgs() << " *** Critical resource "
1436 << SchedModel->getProcResource(PIdx)->Name << " x"
1437 << ResourceCounts[PIdx] << '\n');
1438 }
1439}
1440
Andrew Trickb7e02892012-06-05 21:11:27 +00001441/// Move the boundary of scheduled code by one SUnit.
Andrew Trick7f8c74c2012-06-29 03:23:22 +00001442void ConvergingScheduler::SchedBoundary::bumpNode(SUnit *SU) {
Andrew Trickb7e02892012-06-05 21:11:27 +00001443 // Update the reservation table.
1444 if (HazardRec->isEnabled()) {
1445 if (!isTop() && SU->isCall) {
1446 // Calls are scheduled with their preceding instructions. For bottom-up
1447 // scheduling, clear the pipeline state before emitting.
1448 HazardRec->Reset();
1449 }
1450 HazardRec->EmitInstruction(SU);
1451 }
Andrew Trick3b87f622012-11-07 07:05:09 +00001452 // Update resource counts and critical resource.
1453 if (SchedModel->hasInstrSchedModel()) {
1454 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
1455 Rem->RemainingMicroOps -= SchedModel->getNumMicroOps(SU->getInstr(), SC);
1456 for (TargetSchedModel::ProcResIter
1457 PI = SchedModel->getWriteProcResBegin(SC),
1458 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
1459 countResource(PI->ProcResourceIdx, PI->Cycles);
1460 }
1461 }
1462 if (isTop()) {
1463 if (SU->getDepth() > ExpectedLatency)
1464 ExpectedLatency = SU->getDepth();
1465 }
1466 else {
1467 if (SU->getHeight() > ExpectedLatency)
1468 ExpectedLatency = SU->getHeight();
1469 }
1470
1471 IsResourceLimited = getCriticalCount() > std::max(ExpectedLatency, CurrCycle);
1472
Andrew Trick5559ffa2012-06-29 03:23:24 +00001473 // Check the instruction group dispatch limit.
1474 // TODO: Check if this SU must end a dispatch group.
Andrew Trick412cd2f2012-10-10 05:43:09 +00001475 IssueCount += SchedModel->getNumMicroOps(SU->getInstr());
Andrew Trick3b87f622012-11-07 07:05:09 +00001476
1477 // checkHazard prevents scheduling multiple instructions per cycle that exceed
1478 // issue width. However, we commonly reach the maximum. In this case
1479 // opportunistically bump the cycle to avoid uselessly checking everything in
1480 // the readyQ. Furthermore, a single instruction may produce more than one
1481 // cycle's worth of micro-ops.
Andrew Trick412cd2f2012-10-10 05:43:09 +00001482 if (IssueCount >= SchedModel->getIssueWidth()) {
Andrew Trick3b87f622012-11-07 07:05:09 +00001483 DEBUG(dbgs() << " *** Max instrs at cycle " << CurrCycle << '\n');
Andrew Trickb7e02892012-06-05 21:11:27 +00001484 bumpCycle();
1485 }
1486}
1487
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001488/// Release pending ready nodes in to the available queue. This makes them
1489/// visible to heuristics.
1490void ConvergingScheduler::SchedBoundary::releasePending() {
1491 // If the available queue is empty, it is safe to reset MinReadyCycle.
1492 if (Available.empty())
1493 MinReadyCycle = UINT_MAX;
1494
1495 // Check to see if any of the pending instructions are ready to issue. If
1496 // so, add them to the available queue.
1497 for (unsigned i = 0, e = Pending.size(); i != e; ++i) {
1498 SUnit *SU = *(Pending.begin()+i);
Andrew Trickb7e02892012-06-05 21:11:27 +00001499 unsigned ReadyCycle = isTop() ? SU->TopReadyCycle : SU->BotReadyCycle;
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001500
1501 if (ReadyCycle < MinReadyCycle)
1502 MinReadyCycle = ReadyCycle;
1503
1504 if (ReadyCycle > CurrCycle)
1505 continue;
1506
Andrew Trick5559ffa2012-06-29 03:23:24 +00001507 if (checkHazard(SU))
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001508 continue;
1509
1510 Available.push(SU);
1511 Pending.remove(Pending.begin()+i);
1512 --i; --e;
1513 }
Andrew Trick3b87f622012-11-07 07:05:09 +00001514 DEBUG(if (!Pending.empty()) Pending.dump());
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001515 CheckPending = false;
1516}
1517
1518/// Remove SU from the ready set for this boundary.
1519void ConvergingScheduler::SchedBoundary::removeReady(SUnit *SU) {
1520 if (Available.isInQueue(SU))
1521 Available.remove(Available.find(SU));
1522 else {
1523 assert(Pending.isInQueue(SU) && "bad ready count");
1524 Pending.remove(Pending.find(SU));
1525 }
1526}
1527
1528/// If this queue only has one ready candidate, return it. As a side effect,
Andrew Trick3b87f622012-11-07 07:05:09 +00001529/// defer any nodes that now hit a hazard, and advance the cycle until at least
1530/// one node is ready. If multiple instructions are ready, return NULL.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001531SUnit *ConvergingScheduler::SchedBoundary::pickOnlyChoice() {
1532 if (CheckPending)
1533 releasePending();
1534
Andrew Trick3b87f622012-11-07 07:05:09 +00001535 if (IssueCount > 0) {
1536 // Defer any ready instrs that now have a hazard.
1537 for (ReadyQueue::iterator I = Available.begin(); I != Available.end();) {
1538 if (checkHazard(*I)) {
1539 Pending.push(*I);
1540 I = Available.remove(I);
1541 continue;
1542 }
1543 ++I;
1544 }
1545 }
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001546 for (unsigned i = 0; Available.empty(); ++i) {
Andrew Trickb7e02892012-06-05 21:11:27 +00001547 assert(i <= (HazardRec->getMaxLookAhead() + MaxMinLatency) &&
1548 "permanent hazard"); (void)i;
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001549 bumpCycle();
1550 releasePending();
1551 }
1552 if (Available.size() == 1)
1553 return *Available.begin();
1554 return NULL;
1555}
1556
Andrew Trick3b87f622012-11-07 07:05:09 +00001557/// Record the candidate policy for opposite zones with different critical
1558/// resources.
1559///
1560/// If the CriticalZone is latency limited, don't force a policy for the
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001561/// candidates here. Instead, setLatencyPolicy sets ReduceLatency if needed.
Andrew Trick3b87f622012-11-07 07:05:09 +00001562void ConvergingScheduler::balanceZones(
1563 ConvergingScheduler::SchedBoundary &CriticalZone,
1564 ConvergingScheduler::SchedCandidate &CriticalCand,
1565 ConvergingScheduler::SchedBoundary &OppositeZone,
1566 ConvergingScheduler::SchedCandidate &OppositeCand) {
1567
1568 if (!CriticalZone.IsResourceLimited)
1569 return;
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001570 assert(SchedModel->hasInstrSchedModel() && "required schedmodel");
Andrew Trick3b87f622012-11-07 07:05:09 +00001571
1572 SchedRemainder *Rem = CriticalZone.Rem;
1573
1574 // If the critical zone is overconsuming a resource relative to the
1575 // remainder, try to reduce it.
1576 unsigned RemainingCritCount =
1577 Rem->RemainingCounts[CriticalZone.CritResIdx];
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001578 if ((int)(Rem->getMaxRemainingCount(SchedModel) - RemainingCritCount)
Andrew Trick3b87f622012-11-07 07:05:09 +00001579 > (int)SchedModel->getLatencyFactor()) {
1580 CriticalCand.Policy.ReduceResIdx = CriticalZone.CritResIdx;
Andrew Trickbaedcd72013-04-13 06:07:49 +00001581 DEBUG(dbgs() << " Balance " << CriticalZone.Available.getName()
1582 << " reduce "
Andrew Trick3b87f622012-11-07 07:05:09 +00001583 << SchedModel->getProcResource(CriticalZone.CritResIdx)->Name
1584 << '\n');
1585 }
1586 // If the other zone is underconsuming a resource relative to the full zone,
1587 // try to increase it.
1588 unsigned OppositeCount =
1589 OppositeZone.ResourceCounts[CriticalZone.CritResIdx];
1590 if ((int)(OppositeZone.ExpectedCount - OppositeCount)
1591 > (int)SchedModel->getLatencyFactor()) {
1592 OppositeCand.Policy.DemandResIdx = CriticalZone.CritResIdx;
Andrew Trickbaedcd72013-04-13 06:07:49 +00001593 DEBUG(dbgs() << " Balance " << OppositeZone.Available.getName()
1594 << " demand "
Andrew Trick3b87f622012-11-07 07:05:09 +00001595 << SchedModel->getProcResource(OppositeZone.CritResIdx)->Name
1596 << '\n');
1597 }
Andrew Trick28ebc892012-05-10 21:06:19 +00001598}
Andrew Trick3b87f622012-11-07 07:05:09 +00001599
1600/// Determine if the scheduled zones exceed resource limits or critical path and
1601/// set each candidate's ReduceHeight policy accordingly.
1602void ConvergingScheduler::checkResourceLimits(
1603 ConvergingScheduler::SchedCandidate &TopCand,
1604 ConvergingScheduler::SchedCandidate &BotCand) {
1605
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001606 // Set ReduceLatency to true if needed.
Andrew Trickeed4e012013-01-11 17:51:16 +00001607 Bot.setLatencyPolicy(BotCand.Policy);
1608 Top.setLatencyPolicy(TopCand.Policy);
Andrew Trick3b87f622012-11-07 07:05:09 +00001609
1610 // Handle resource-limited regions.
1611 if (Top.IsResourceLimited && Bot.IsResourceLimited
1612 && Top.CritResIdx == Bot.CritResIdx) {
1613 // If the scheduled critical resource in both zones is no longer the
1614 // critical remaining resource, attempt to reduce resource height both ways.
1615 if (Top.CritResIdx != Rem.CritResIdx) {
1616 TopCand.Policy.ReduceResIdx = Top.CritResIdx;
1617 BotCand.Policy.ReduceResIdx = Bot.CritResIdx;
Andrew Trickbaedcd72013-04-13 06:07:49 +00001618 DEBUG(dbgs() << " Reduce scheduled "
Andrew Trick3b87f622012-11-07 07:05:09 +00001619 << SchedModel->getProcResource(Top.CritResIdx)->Name << '\n');
1620 }
1621 return;
1622 }
1623 // Handle latency-limited regions.
1624 if (!Top.IsResourceLimited && !Bot.IsResourceLimited) {
1625 // If the total scheduled expected latency exceeds the region's critical
1626 // path then reduce latency both ways.
1627 //
1628 // Just because a zone is not resource limited does not mean it is latency
1629 // limited. Unbuffered resource, such as max micro-ops may cause CurrCycle
1630 // to exceed expected latency.
1631 if ((Top.ExpectedLatency + Bot.ExpectedLatency >= Rem.CriticalPath)
1632 && (Rem.CriticalPath > Top.CurrCycle + Bot.CurrCycle)) {
1633 TopCand.Policy.ReduceLatency = true;
1634 BotCand.Policy.ReduceLatency = true;
Andrew Trickbaedcd72013-04-13 06:07:49 +00001635 DEBUG(dbgs() << " Reduce scheduled latency " << Top.ExpectedLatency
Andrew Trick3b87f622012-11-07 07:05:09 +00001636 << " + " << Bot.ExpectedLatency << '\n');
1637 }
1638 return;
1639 }
1640 // The critical resource is different in each zone, so request balancing.
1641
1642 // Compute the cost of each zone.
Andrew Trick3b87f622012-11-07 07:05:09 +00001643 Top.ExpectedCount = std::max(Top.ExpectedLatency, Top.CurrCycle);
1644 Top.ExpectedCount = std::max(
1645 Top.getCriticalCount(),
1646 Top.ExpectedCount * SchedModel->getLatencyFactor());
1647 Bot.ExpectedCount = std::max(Bot.ExpectedLatency, Bot.CurrCycle);
1648 Bot.ExpectedCount = std::max(
1649 Bot.getCriticalCount(),
1650 Bot.ExpectedCount * SchedModel->getLatencyFactor());
1651
1652 balanceZones(Top, TopCand, Bot, BotCand);
1653 balanceZones(Bot, BotCand, Top, TopCand);
1654}
1655
1656void ConvergingScheduler::SchedCandidate::
1657initResourceDelta(const ScheduleDAGMI *DAG,
1658 const TargetSchedModel *SchedModel) {
1659 if (!Policy.ReduceResIdx && !Policy.DemandResIdx)
1660 return;
1661
1662 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
1663 for (TargetSchedModel::ProcResIter
1664 PI = SchedModel->getWriteProcResBegin(SC),
1665 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
1666 if (PI->ProcResourceIdx == Policy.ReduceResIdx)
1667 ResDelta.CritResources += PI->Cycles;
1668 if (PI->ProcResourceIdx == Policy.DemandResIdx)
1669 ResDelta.DemandedResources += PI->Cycles;
1670 }
1671}
1672
1673/// Return true if this heuristic determines order.
Andrew Trick614dacc2013-04-05 00:31:34 +00001674static bool tryLess(int TryVal, int CandVal,
Andrew Trick3b87f622012-11-07 07:05:09 +00001675 ConvergingScheduler::SchedCandidate &TryCand,
1676 ConvergingScheduler::SchedCandidate &Cand,
1677 ConvergingScheduler::CandReason Reason) {
1678 if (TryVal < CandVal) {
1679 TryCand.Reason = Reason;
1680 return true;
1681 }
1682 if (TryVal > CandVal) {
1683 if (Cand.Reason > Reason)
1684 Cand.Reason = Reason;
1685 return true;
1686 }
1687 return false;
1688}
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001689
Andrew Trick614dacc2013-04-05 00:31:34 +00001690static bool tryGreater(int TryVal, int CandVal,
Andrew Trick3b87f622012-11-07 07:05:09 +00001691 ConvergingScheduler::SchedCandidate &TryCand,
1692 ConvergingScheduler::SchedCandidate &Cand,
1693 ConvergingScheduler::CandReason Reason) {
1694 if (TryVal > CandVal) {
1695 TryCand.Reason = Reason;
1696 return true;
1697 }
1698 if (TryVal < CandVal) {
1699 if (Cand.Reason > Reason)
1700 Cand.Reason = Reason;
1701 return true;
1702 }
1703 return false;
1704}
1705
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001706static unsigned getWeakLeft(const SUnit *SU, bool isTop) {
1707 return (isTop) ? SU->WeakPredsLeft : SU->WeakSuccsLeft;
1708}
1709
Andrew Trick4392f0f2013-04-13 06:07:40 +00001710/// Minimize physical register live ranges. Regalloc wants them adjacent to
1711/// their physreg def/use.
1712///
1713/// FIXME: This is an unnecessary check on the critical path. Most are root/leaf
1714/// copies which can be prescheduled. The rest (e.g. x86 MUL) could be bundled
1715/// with the operation that produces or consumes the physreg. We'll do this when
1716/// regalloc has support for parallel copies.
1717static int biasPhysRegCopy(const SUnit *SU, bool isTop) {
1718 const MachineInstr *MI = SU->getInstr();
1719 if (!MI->isCopy())
1720 return 0;
1721
1722 unsigned ScheduledOper = isTop ? 1 : 0;
1723 unsigned UnscheduledOper = isTop ? 0 : 1;
1724 // If we have already scheduled the physreg produce/consumer, immediately
1725 // schedule the copy.
1726 if (TargetRegisterInfo::isPhysicalRegister(
1727 MI->getOperand(ScheduledOper).getReg()))
1728 return 1;
1729 // If the physreg is at the boundary, defer it. Otherwise schedule it
1730 // immediately to free the dependent. We can hoist the copy later.
1731 bool AtBoundary = isTop ? !SU->NumSuccsLeft : !SU->NumPredsLeft;
1732 if (TargetRegisterInfo::isPhysicalRegister(
1733 MI->getOperand(UnscheduledOper).getReg()))
1734 return AtBoundary ? -1 : 1;
1735 return 0;
1736}
1737
Andrew Trick3b87f622012-11-07 07:05:09 +00001738/// Apply a set of heursitics to a new candidate. Heuristics are currently
1739/// hierarchical. This may be more efficient than a graduated cost model because
1740/// we don't need to evaluate all aspects of the model for each node in the
1741/// queue. But it's really done to make the heuristics easier to debug and
1742/// statistically analyze.
1743///
1744/// \param Cand provides the policy and current best candidate.
1745/// \param TryCand refers to the next SUnit candidate, otherwise uninitialized.
1746/// \param Zone describes the scheduled zone that we are extending.
1747/// \param RPTracker describes reg pressure within the scheduled zone.
1748/// \param TempTracker is a scratch pressure tracker to reuse in queries.
1749void ConvergingScheduler::tryCandidate(SchedCandidate &Cand,
1750 SchedCandidate &TryCand,
1751 SchedBoundary &Zone,
1752 const RegPressureTracker &RPTracker,
1753 RegPressureTracker &TempTracker) {
1754
1755 // Always initialize TryCand's RPDelta.
1756 TempTracker.getMaxPressureDelta(TryCand.SU->getInstr(), TryCand.RPDelta,
1757 DAG->getRegionCriticalPSets(),
1758 DAG->getRegPressure().MaxSetPressure);
1759
1760 // Initialize the candidate if needed.
1761 if (!Cand.isValid()) {
1762 TryCand.Reason = NodeOrder;
1763 return;
1764 }
Andrew Trick4392f0f2013-04-13 06:07:40 +00001765
1766 if (tryGreater(biasPhysRegCopy(TryCand.SU, Zone.isTop()),
1767 biasPhysRegCopy(Cand.SU, Zone.isTop()),
1768 TryCand, Cand, PhysRegCopy))
1769 return;
1770
Andrew Trick3b87f622012-11-07 07:05:09 +00001771 // Avoid exceeding the target's limit.
1772 if (tryLess(TryCand.RPDelta.Excess.UnitIncrease,
1773 Cand.RPDelta.Excess.UnitIncrease, TryCand, Cand, SingleExcess))
1774 return;
1775 if (Cand.Reason == SingleExcess)
1776 Cand.Reason = MultiPressure;
1777
1778 // Avoid increasing the max critical pressure in the scheduled region.
1779 if (tryLess(TryCand.RPDelta.CriticalMax.UnitIncrease,
1780 Cand.RPDelta.CriticalMax.UnitIncrease,
1781 TryCand, Cand, SingleCritical))
1782 return;
1783 if (Cand.Reason == SingleCritical)
1784 Cand.Reason = MultiPressure;
1785
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001786 // Keep clustered nodes together to encourage downstream peephole
1787 // optimizations which may reduce resource requirements.
1788 //
1789 // This is a best effort to set things up for a post-RA pass. Optimizations
1790 // like generating loads of multiple registers should ideally be done within
1791 // the scheduler pass by combining the loads during DAG postprocessing.
1792 const SUnit *NextClusterSU =
1793 Zone.isTop() ? DAG->getNextClusterSucc() : DAG->getNextClusterPred();
1794 if (tryGreater(TryCand.SU == NextClusterSU, Cand.SU == NextClusterSU,
1795 TryCand, Cand, Cluster))
1796 return;
1797 // Currently, weak edges are for clustering, so we hard-code that reason.
1798 // However, deferring the current TryCand will not change Cand's reason.
1799 CandReason OrigReason = Cand.Reason;
1800 if (tryLess(getWeakLeft(TryCand.SU, Zone.isTop()),
1801 getWeakLeft(Cand.SU, Zone.isTop()),
1802 TryCand, Cand, Cluster)) {
1803 Cand.Reason = OrigReason;
1804 return;
1805 }
Andrew Trick3b87f622012-11-07 07:05:09 +00001806 // Avoid critical resource consumption and balance the schedule.
1807 TryCand.initResourceDelta(DAG, SchedModel);
1808 if (tryLess(TryCand.ResDelta.CritResources, Cand.ResDelta.CritResources,
1809 TryCand, Cand, ResourceReduce))
1810 return;
1811 if (tryGreater(TryCand.ResDelta.DemandedResources,
1812 Cand.ResDelta.DemandedResources,
1813 TryCand, Cand, ResourceDemand))
1814 return;
1815
1816 // Avoid serializing long latency dependence chains.
1817 if (Cand.Policy.ReduceLatency) {
1818 if (Zone.isTop()) {
1819 if (Cand.SU->getDepth() * SchedModel->getLatencyFactor()
1820 > Zone.ExpectedCount) {
1821 if (tryLess(TryCand.SU->getDepth(), Cand.SU->getDepth(),
1822 TryCand, Cand, TopDepthReduce))
1823 return;
1824 }
1825 if (tryGreater(TryCand.SU->getHeight(), Cand.SU->getHeight(),
1826 TryCand, Cand, TopPathReduce))
1827 return;
1828 }
1829 else {
1830 if (Cand.SU->getHeight() * SchedModel->getLatencyFactor()
1831 > Zone.ExpectedCount) {
1832 if (tryLess(TryCand.SU->getHeight(), Cand.SU->getHeight(),
1833 TryCand, Cand, BotHeightReduce))
1834 return;
1835 }
1836 if (tryGreater(TryCand.SU->getDepth(), Cand.SU->getDepth(),
1837 TryCand, Cand, BotPathReduce))
1838 return;
1839 }
1840 }
1841
1842 // Avoid increasing the max pressure of the entire region.
1843 if (tryLess(TryCand.RPDelta.CurrentMax.UnitIncrease,
1844 Cand.RPDelta.CurrentMax.UnitIncrease, TryCand, Cand, SingleMax))
1845 return;
1846 if (Cand.Reason == SingleMax)
1847 Cand.Reason = MultiPressure;
1848
1849 // Prefer immediate defs/users of the last scheduled instruction. This is a
1850 // nice pressure avoidance strategy that also conserves the processor's
1851 // register renaming resources and keeps the machine code readable.
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001852 if (tryGreater(Zone.NextSUs.count(TryCand.SU), Zone.NextSUs.count(Cand.SU),
1853 TryCand, Cand, NextDefUse))
Andrew Trick3b87f622012-11-07 07:05:09 +00001854 return;
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001855
Andrew Trick3b87f622012-11-07 07:05:09 +00001856 // Fall through to original instruction order.
1857 if ((Zone.isTop() && TryCand.SU->NodeNum < Cand.SU->NodeNum)
1858 || (!Zone.isTop() && TryCand.SU->NodeNum > Cand.SU->NodeNum)) {
1859 TryCand.Reason = NodeOrder;
1860 }
1861}
Andrew Trick28ebc892012-05-10 21:06:19 +00001862
Andrew Trick5429a6b2012-05-17 22:37:09 +00001863/// pickNodeFromQueue helper that returns true if the LHS reg pressure effect is
1864/// more desirable than RHS from scheduling standpoint.
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001865static bool compareRPDelta(const RegPressureDelta &LHS,
1866 const RegPressureDelta &RHS) {
1867 // Compare each component of pressure in decreasing order of importance
1868 // without checking if any are valid. Invalid PressureElements are assumed to
1869 // have UnitIncrease==0, so are neutral.
Andrew Trickc8fe4ec2012-05-24 22:11:01 +00001870
1871 // Avoid increasing the max critical pressure in the scheduled region.
Andrew Trick3b87f622012-11-07 07:05:09 +00001872 if (LHS.Excess.UnitIncrease != RHS.Excess.UnitIncrease) {
Andrew Trickbaedcd72013-04-13 06:07:49 +00001873 DEBUG(dbgs() << " RP excess top - bot: "
Andrew Trick3b87f622012-11-07 07:05:09 +00001874 << (LHS.Excess.UnitIncrease - RHS.Excess.UnitIncrease) << '\n');
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001875 return LHS.Excess.UnitIncrease < RHS.Excess.UnitIncrease;
Andrew Trick3b87f622012-11-07 07:05:09 +00001876 }
Andrew Trickc8fe4ec2012-05-24 22:11:01 +00001877 // Avoid increasing the max critical pressure in the scheduled region.
Andrew Trick3b87f622012-11-07 07:05:09 +00001878 if (LHS.CriticalMax.UnitIncrease != RHS.CriticalMax.UnitIncrease) {
Andrew Trickbaedcd72013-04-13 06:07:49 +00001879 DEBUG(dbgs() << " RP critical top - bot: "
Andrew Trick3b87f622012-11-07 07:05:09 +00001880 << (LHS.CriticalMax.UnitIncrease - RHS.CriticalMax.UnitIncrease)
1881 << '\n');
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001882 return LHS.CriticalMax.UnitIncrease < RHS.CriticalMax.UnitIncrease;
Andrew Trick3b87f622012-11-07 07:05:09 +00001883 }
Andrew Trickc8fe4ec2012-05-24 22:11:01 +00001884 // Avoid increasing the max pressure of the entire region.
Andrew Trick3b87f622012-11-07 07:05:09 +00001885 if (LHS.CurrentMax.UnitIncrease != RHS.CurrentMax.UnitIncrease) {
Andrew Trickbaedcd72013-04-13 06:07:49 +00001886 DEBUG(dbgs() << " RP current top - bot: "
Andrew Trick3b87f622012-11-07 07:05:09 +00001887 << (LHS.CurrentMax.UnitIncrease - RHS.CurrentMax.UnitIncrease)
1888 << '\n');
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001889 return LHS.CurrentMax.UnitIncrease < RHS.CurrentMax.UnitIncrease;
Andrew Trick3b87f622012-11-07 07:05:09 +00001890 }
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001891 return false;
1892}
1893
Andrew Trick3b87f622012-11-07 07:05:09 +00001894#ifndef NDEBUG
1895const char *ConvergingScheduler::getReasonStr(
1896 ConvergingScheduler::CandReason Reason) {
1897 switch (Reason) {
1898 case NoCand: return "NOCAND ";
Andrew Trick4392f0f2013-04-13 06:07:40 +00001899 case PhysRegCopy: return "PREG-COPY";
Andrew Trick3b87f622012-11-07 07:05:09 +00001900 case SingleExcess: return "REG-EXCESS";
1901 case SingleCritical: return "REG-CRIT ";
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001902 case Cluster: return "CLUSTER ";
Andrew Trick3b87f622012-11-07 07:05:09 +00001903 case SingleMax: return "REG-MAX ";
1904 case MultiPressure: return "REG-MULTI ";
1905 case ResourceReduce: return "RES-REDUCE";
1906 case ResourceDemand: return "RES-DEMAND";
1907 case TopDepthReduce: return "TOP-DEPTH ";
1908 case TopPathReduce: return "TOP-PATH ";
1909 case BotHeightReduce:return "BOT-HEIGHT";
1910 case BotPathReduce: return "BOT-PATH ";
1911 case NextDefUse: return "DEF-USE ";
1912 case NodeOrder: return "ORDER ";
1913 };
Benjamin Kramerb7546872012-11-09 15:45:22 +00001914 llvm_unreachable("Unknown reason!");
Andrew Trick3b87f622012-11-07 07:05:09 +00001915}
1916
Andrew Trick11189f72013-04-05 00:31:29 +00001917void ConvergingScheduler::traceCandidate(const SchedCandidate &Cand) {
Andrew Trick3b87f622012-11-07 07:05:09 +00001918 PressureElement P;
1919 unsigned ResIdx = 0;
1920 unsigned Latency = 0;
1921 switch (Cand.Reason) {
1922 default:
1923 break;
1924 case SingleExcess:
1925 P = Cand.RPDelta.Excess;
1926 break;
1927 case SingleCritical:
1928 P = Cand.RPDelta.CriticalMax;
1929 break;
1930 case SingleMax:
1931 P = Cand.RPDelta.CurrentMax;
1932 break;
1933 case ResourceReduce:
1934 ResIdx = Cand.Policy.ReduceResIdx;
1935 break;
1936 case ResourceDemand:
1937 ResIdx = Cand.Policy.DemandResIdx;
1938 break;
1939 case TopDepthReduce:
1940 Latency = Cand.SU->getDepth();
1941 break;
1942 case TopPathReduce:
1943 Latency = Cand.SU->getHeight();
1944 break;
1945 case BotHeightReduce:
1946 Latency = Cand.SU->getHeight();
1947 break;
1948 case BotPathReduce:
1949 Latency = Cand.SU->getDepth();
1950 break;
1951 }
Andrew Trick11189f72013-04-05 00:31:29 +00001952 dbgs() << " SU(" << Cand.SU->NodeNum << ") " << getReasonStr(Cand.Reason);
Andrew Trick3b87f622012-11-07 07:05:09 +00001953 if (P.isValid())
Andrew Trick11189f72013-04-05 00:31:29 +00001954 dbgs() << " " << TRI->getRegPressureSetName(P.PSetID)
1955 << ":" << P.UnitIncrease << " ";
Andrew Trick3b87f622012-11-07 07:05:09 +00001956 else
Andrew Trick11189f72013-04-05 00:31:29 +00001957 dbgs() << " ";
Andrew Trick3b87f622012-11-07 07:05:09 +00001958 if (ResIdx)
Andrew Trick11189f72013-04-05 00:31:29 +00001959 dbgs() << " " << SchedModel->getProcResource(ResIdx)->Name << " ";
Andrew Trick3b87f622012-11-07 07:05:09 +00001960 else
1961 dbgs() << " ";
Andrew Trick11189f72013-04-05 00:31:29 +00001962 if (Latency)
1963 dbgs() << " " << Latency << " cycles ";
1964 else
1965 dbgs() << " ";
1966 dbgs() << '\n';
Andrew Trick3b87f622012-11-07 07:05:09 +00001967}
1968#endif
1969
Andrew Trick7196a8f2012-05-10 21:06:16 +00001970/// Pick the best candidate from the top queue.
1971///
1972/// TODO: getMaxPressureDelta results can be mostly cached for each SUnit during
1973/// DAG building. To adjust for the current scheduling location we need to
1974/// maintain the number of vreg uses remaining to be top-scheduled.
Andrew Trick3b87f622012-11-07 07:05:09 +00001975void ConvergingScheduler::pickNodeFromQueue(SchedBoundary &Zone,
1976 const RegPressureTracker &RPTracker,
1977 SchedCandidate &Cand) {
1978 ReadyQueue &Q = Zone.Available;
1979
Andrew Trickf3234242012-05-24 22:11:12 +00001980 DEBUG(Q.dump());
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001981
Andrew Trick7196a8f2012-05-10 21:06:16 +00001982 // getMaxPressureDelta temporarily modifies the tracker.
1983 RegPressureTracker &TempTracker = const_cast<RegPressureTracker&>(RPTracker);
1984
Andrew Trick8c2d9212012-05-24 22:11:03 +00001985 for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) {
Andrew Trick7196a8f2012-05-10 21:06:16 +00001986
Andrew Trick3b87f622012-11-07 07:05:09 +00001987 SchedCandidate TryCand(Cand.Policy);
1988 TryCand.SU = *I;
1989 tryCandidate(Cand, TryCand, Zone, RPTracker, TempTracker);
1990 if (TryCand.Reason != NoCand) {
1991 // Initialize resource delta if needed in case future heuristics query it.
1992 if (TryCand.ResDelta == SchedResourceDelta())
1993 TryCand.initResourceDelta(DAG, SchedModel);
1994 Cand.setBest(TryCand);
Andrew Trick11189f72013-04-05 00:31:29 +00001995 DEBUG(traceCandidate(Cand));
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001996 }
Andrew Trick7196a8f2012-05-10 21:06:16 +00001997 }
Andrew Trick3b87f622012-11-07 07:05:09 +00001998}
1999
2000static void tracePick(const ConvergingScheduler::SchedCandidate &Cand,
2001 bool IsTop) {
Andrew Trickbaedcd72013-04-13 06:07:49 +00002002 DEBUG(dbgs() << "Pick " << (IsTop ? "Top " : "Bot ")
Andrew Trick3b87f622012-11-07 07:05:09 +00002003 << ConvergingScheduler::getReasonStr(Cand.Reason) << '\n');
Andrew Trick7196a8f2012-05-10 21:06:16 +00002004}
2005
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002006/// Pick the best candidate node from either the top or bottom queue.
Andrew Trick3b87f622012-11-07 07:05:09 +00002007SUnit *ConvergingScheduler::pickNodeBidirectional(bool &IsTopNode) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002008 // Schedule as far as possible in the direction of no choice. This is most
2009 // efficient, but also provides the best heuristics for CriticalPSets.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002010 if (SUnit *SU = Bot.pickOnlyChoice()) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002011 IsTopNode = false;
Andrew Trickbaedcd72013-04-13 06:07:49 +00002012 DEBUG(dbgs() << "Pick Top NOCAND\n");
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002013 return SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002014 }
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002015 if (SUnit *SU = Top.pickOnlyChoice()) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002016 IsTopNode = true;
Andrew Trickbaedcd72013-04-13 06:07:49 +00002017 DEBUG(dbgs() << "Pick Bot NOCAND\n");
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002018 return SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002019 }
Andrew Trick3b87f622012-11-07 07:05:09 +00002020 CandPolicy NoPolicy;
2021 SchedCandidate BotCand(NoPolicy);
2022 SchedCandidate TopCand(NoPolicy);
2023 checkResourceLimits(TopCand, BotCand);
2024
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002025 // Prefer bottom scheduling when heuristics are silent.
Andrew Trick3b87f622012-11-07 07:05:09 +00002026 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand);
2027 assert(BotCand.Reason != NoCand && "failed to find the first candidate");
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002028
2029 // If either Q has a single candidate that provides the least increase in
2030 // Excess pressure, we can immediately schedule from that Q.
2031 //
2032 // RegionCriticalPSets summarizes the pressure within the scheduled region and
2033 // affects picking from either Q. If scheduling in one direction must
2034 // increase pressure for one of the excess PSets, then schedule in that
2035 // direction first to provide more freedom in the other direction.
Andrew Trick3b87f622012-11-07 07:05:09 +00002036 if (BotCand.Reason == SingleExcess || BotCand.Reason == SingleCritical) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002037 IsTopNode = false;
Andrew Trick3b87f622012-11-07 07:05:09 +00002038 tracePick(BotCand, IsTopNode);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002039 return BotCand.SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002040 }
2041 // Check if the top Q has a better candidate.
Andrew Trick3b87f622012-11-07 07:05:09 +00002042 pickNodeFromQueue(Top, DAG->getTopRPTracker(), TopCand);
2043 assert(TopCand.Reason != NoCand && "failed to find the first candidate");
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002044
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002045 // If either Q has a single candidate that minimizes pressure above the
2046 // original region's pressure pick it.
Andrew Trick3b87f622012-11-07 07:05:09 +00002047 if (TopCand.Reason <= SingleMax || BotCand.Reason <= SingleMax) {
2048 if (TopCand.Reason < BotCand.Reason) {
2049 IsTopNode = true;
2050 tracePick(TopCand, IsTopNode);
2051 return TopCand.SU;
2052 }
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002053 IsTopNode = false;
Andrew Trick3b87f622012-11-07 07:05:09 +00002054 tracePick(BotCand, IsTopNode);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002055 return BotCand.SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002056 }
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002057 // Check for a salient pressure difference and pick the best from either side.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002058 if (compareRPDelta(TopCand.RPDelta, BotCand.RPDelta)) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002059 IsTopNode = true;
Andrew Trick3b87f622012-11-07 07:05:09 +00002060 tracePick(TopCand, IsTopNode);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002061 return TopCand.SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002062 }
Andrew Trick3b87f622012-11-07 07:05:09 +00002063 // Otherwise prefer the bottom candidate, in node order if all else failed.
2064 if (TopCand.Reason < BotCand.Reason) {
2065 IsTopNode = true;
2066 tracePick(TopCand, IsTopNode);
2067 return TopCand.SU;
2068 }
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002069 IsTopNode = false;
Andrew Trick3b87f622012-11-07 07:05:09 +00002070 tracePick(BotCand, IsTopNode);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002071 return BotCand.SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002072}
2073
2074/// Pick the best node to balance the schedule. Implements MachineSchedStrategy.
Andrew Trick7196a8f2012-05-10 21:06:16 +00002075SUnit *ConvergingScheduler::pickNode(bool &IsTopNode) {
2076 if (DAG->top() == DAG->bottom()) {
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002077 assert(Top.Available.empty() && Top.Pending.empty() &&
2078 Bot.Available.empty() && Bot.Pending.empty() && "ReadyQ garbage");
Andrew Trick7196a8f2012-05-10 21:06:16 +00002079 return NULL;
2080 }
Andrew Trick7196a8f2012-05-10 21:06:16 +00002081 SUnit *SU;
Andrew Trick30c6ec22012-10-08 18:53:53 +00002082 do {
2083 if (ForceTopDown) {
2084 SU = Top.pickOnlyChoice();
2085 if (!SU) {
Andrew Trick3b87f622012-11-07 07:05:09 +00002086 CandPolicy NoPolicy;
2087 SchedCandidate TopCand(NoPolicy);
2088 pickNodeFromQueue(Top, DAG->getTopRPTracker(), TopCand);
2089 assert(TopCand.Reason != NoCand && "failed to find the first candidate");
Andrew Trick30c6ec22012-10-08 18:53:53 +00002090 SU = TopCand.SU;
2091 }
2092 IsTopNode = true;
Andrew Trick8ddd9d52012-05-24 23:11:17 +00002093 }
Andrew Trick30c6ec22012-10-08 18:53:53 +00002094 else if (ForceBottomUp) {
2095 SU = Bot.pickOnlyChoice();
2096 if (!SU) {
Andrew Trick3b87f622012-11-07 07:05:09 +00002097 CandPolicy NoPolicy;
2098 SchedCandidate BotCand(NoPolicy);
2099 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand);
2100 assert(BotCand.Reason != NoCand && "failed to find the first candidate");
Andrew Trick30c6ec22012-10-08 18:53:53 +00002101 SU = BotCand.SU;
2102 }
2103 IsTopNode = false;
Andrew Trick8ddd9d52012-05-24 23:11:17 +00002104 }
Andrew Trick30c6ec22012-10-08 18:53:53 +00002105 else {
Andrew Trick3b87f622012-11-07 07:05:09 +00002106 SU = pickNodeBidirectional(IsTopNode);
Andrew Trick30c6ec22012-10-08 18:53:53 +00002107 }
2108 } while (SU->isScheduled);
2109
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002110 if (SU->isTopReady())
2111 Top.removeReady(SU);
2112 if (SU->isBottomReady())
2113 Bot.removeReady(SU);
Andrew Trickc7a098f2012-05-25 02:02:39 +00002114
Andrew Trickbaedcd72013-04-13 06:07:49 +00002115 DEBUG(dbgs() << "Scheduling SU(" << SU->NodeNum << ") " << *SU->getInstr());
Andrew Trick7196a8f2012-05-10 21:06:16 +00002116 return SU;
2117}
2118
Andrew Trick4392f0f2013-04-13 06:07:40 +00002119void ConvergingScheduler::reschedulePhysRegCopies(SUnit *SU, bool isTop) {
2120
2121 MachineBasicBlock::iterator InsertPos = SU->getInstr();
2122 if (!isTop)
2123 ++InsertPos;
2124 SmallVectorImpl<SDep> &Deps = isTop ? SU->Preds : SU->Succs;
2125
2126 // Find already scheduled copies with a single physreg dependence and move
2127 // them just above the scheduled instruction.
2128 for (SmallVectorImpl<SDep>::iterator I = Deps.begin(), E = Deps.end();
2129 I != E; ++I) {
2130 if (I->getKind() != SDep::Data || !TRI->isPhysicalRegister(I->getReg()))
2131 continue;
2132 SUnit *DepSU = I->getSUnit();
2133 if (isTop ? DepSU->Succs.size() > 1 : DepSU->Preds.size() > 1)
2134 continue;
2135 MachineInstr *Copy = DepSU->getInstr();
2136 if (!Copy->isCopy())
2137 continue;
2138 DEBUG(dbgs() << " Rescheduling physreg copy ";
2139 I->getSUnit()->dump(DAG));
2140 DAG->moveInstruction(Copy, InsertPos);
2141 }
2142}
2143
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002144/// Update the scheduler's state after scheduling a node. This is the same node
2145/// that was just returned by pickNode(). However, ScheduleDAGMI needs to update
Andrew Trickb7e02892012-06-05 21:11:27 +00002146/// it's state based on the current cycle before MachineSchedStrategy does.
Andrew Trick4392f0f2013-04-13 06:07:40 +00002147///
2148/// FIXME: Eventually, we may bundle physreg copies rather than rescheduling
2149/// them here. See comments in biasPhysRegCopy.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002150void ConvergingScheduler::schedNode(SUnit *SU, bool IsTopNode) {
Andrew Trickb7e02892012-06-05 21:11:27 +00002151 if (IsTopNode) {
2152 SU->TopReadyCycle = Top.CurrCycle;
Andrew Trick7f8c74c2012-06-29 03:23:22 +00002153 Top.bumpNode(SU);
Andrew Trick4392f0f2013-04-13 06:07:40 +00002154 if (SU->hasPhysRegUses)
2155 reschedulePhysRegCopies(SU, true);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002156 }
Andrew Trickb7e02892012-06-05 21:11:27 +00002157 else {
2158 SU->BotReadyCycle = Bot.CurrCycle;
Andrew Trick7f8c74c2012-06-29 03:23:22 +00002159 Bot.bumpNode(SU);
Andrew Trick4392f0f2013-04-13 06:07:40 +00002160 if (SU->hasPhysRegDefs)
2161 reschedulePhysRegCopies(SU, false);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002162 }
2163}
2164
Andrew Trick17d35e52012-03-14 04:00:41 +00002165/// Create the standard converging machine scheduler. This will be used as the
2166/// default scheduler if the target does not set a default.
2167static ScheduleDAGInstrs *createConvergingSched(MachineSchedContext *C) {
Benjamin Kramer689e0b42012-03-14 11:26:37 +00002168 assert((!ForceTopDown || !ForceBottomUp) &&
Andrew Trick17d35e52012-03-14 04:00:41 +00002169 "-misched-topdown incompatible with -misched-bottomup");
Andrew Trick9b5caaa2012-11-12 19:40:10 +00002170 ScheduleDAGMI *DAG = new ScheduleDAGMI(C, new ConvergingScheduler());
2171 // Register DAG post-processors.
2172 if (EnableLoadCluster)
2173 DAG->addMutation(new LoadClusterMutation(DAG->TII, DAG->TRI));
Andrew Trick6996fd02012-11-12 19:52:20 +00002174 if (EnableMacroFusion)
2175 DAG->addMutation(new MacroFusion(DAG->TII));
Andrew Trick9b5caaa2012-11-12 19:40:10 +00002176 return DAG;
Andrew Trick42b7a712012-01-17 06:55:03 +00002177}
2178static MachineSchedRegistry
Andrew Trick17d35e52012-03-14 04:00:41 +00002179ConvergingSchedRegistry("converge", "Standard converging scheduler.",
2180 createConvergingSched);
Andrew Trick42b7a712012-01-17 06:55:03 +00002181
2182//===----------------------------------------------------------------------===//
Andrew Trick1e94e982012-10-15 18:02:27 +00002183// ILP Scheduler. Currently for experimental analysis of heuristics.
2184//===----------------------------------------------------------------------===//
2185
2186namespace {
2187/// \brief Order nodes by the ILP metric.
2188struct ILPOrder {
Andrew Trick178f7d02013-01-25 04:01:04 +00002189 const SchedDFSResult *DFSResult;
2190 const BitVector *ScheduledTrees;
Andrew Trick1e94e982012-10-15 18:02:27 +00002191 bool MaximizeILP;
2192
Andrew Trick178f7d02013-01-25 04:01:04 +00002193 ILPOrder(bool MaxILP): DFSResult(0), ScheduledTrees(0), MaximizeILP(MaxILP) {}
Andrew Trick1e94e982012-10-15 18:02:27 +00002194
2195 /// \brief Apply a less-than relation on node priority.
Andrew Trick8b1496c2012-11-28 05:13:28 +00002196 ///
2197 /// (Return true if A comes after B in the Q.)
Andrew Trick1e94e982012-10-15 18:02:27 +00002198 bool operator()(const SUnit *A, const SUnit *B) const {
Andrew Trick8b1496c2012-11-28 05:13:28 +00002199 unsigned SchedTreeA = DFSResult->getSubtreeID(A);
2200 unsigned SchedTreeB = DFSResult->getSubtreeID(B);
2201 if (SchedTreeA != SchedTreeB) {
2202 // Unscheduled trees have lower priority.
2203 if (ScheduledTrees->test(SchedTreeA) != ScheduledTrees->test(SchedTreeB))
2204 return ScheduledTrees->test(SchedTreeB);
2205
2206 // Trees with shallower connections have have lower priority.
2207 if (DFSResult->getSubtreeLevel(SchedTreeA)
2208 != DFSResult->getSubtreeLevel(SchedTreeB)) {
2209 return DFSResult->getSubtreeLevel(SchedTreeA)
2210 < DFSResult->getSubtreeLevel(SchedTreeB);
2211 }
2212 }
Andrew Trick1e94e982012-10-15 18:02:27 +00002213 if (MaximizeILP)
Andrew Trick8b1496c2012-11-28 05:13:28 +00002214 return DFSResult->getILP(A) < DFSResult->getILP(B);
Andrew Trick1e94e982012-10-15 18:02:27 +00002215 else
Andrew Trick8b1496c2012-11-28 05:13:28 +00002216 return DFSResult->getILP(A) > DFSResult->getILP(B);
Andrew Trick1e94e982012-10-15 18:02:27 +00002217 }
2218};
2219
2220/// \brief Schedule based on the ILP metric.
2221class ILPScheduler : public MachineSchedStrategy {
Andrew Trick8b1496c2012-11-28 05:13:28 +00002222 /// In case all subtrees are eventually connected to a common root through
2223 /// data dependence (e.g. reduction), place an upper limit on their size.
2224 ///
2225 /// FIXME: A subtree limit is generally good, but in the situation commented
2226 /// above, where multiple similar subtrees feed a common root, we should
2227 /// only split at a point where the resulting subtrees will be balanced.
2228 /// (a motivating test case must be found).
2229 static const unsigned SubtreeLimit = 16;
2230
Andrew Trick178f7d02013-01-25 04:01:04 +00002231 ScheduleDAGMI *DAG;
Andrew Trick1e94e982012-10-15 18:02:27 +00002232 ILPOrder Cmp;
2233
2234 std::vector<SUnit*> ReadyQ;
2235public:
Andrew Trick178f7d02013-01-25 04:01:04 +00002236 ILPScheduler(bool MaximizeILP): DAG(0), Cmp(MaximizeILP) {}
Andrew Trick1e94e982012-10-15 18:02:27 +00002237
Andrew Trick178f7d02013-01-25 04:01:04 +00002238 virtual void initialize(ScheduleDAGMI *dag) {
2239 DAG = dag;
Andrew Trick4e1fb182013-01-25 06:33:57 +00002240 DAG->computeDFSResult();
Andrew Trick178f7d02013-01-25 04:01:04 +00002241 Cmp.DFSResult = DAG->getDFSResult();
2242 Cmp.ScheduledTrees = &DAG->getScheduledTrees();
Andrew Trick1e94e982012-10-15 18:02:27 +00002243 ReadyQ.clear();
Andrew Trick1e94e982012-10-15 18:02:27 +00002244 }
2245
2246 virtual void registerRoots() {
Benjamin Kramer5175fd92012-11-29 14:36:26 +00002247 // Restore the heap in ReadyQ with the updated DFS results.
2248 std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
Andrew Trick1e94e982012-10-15 18:02:27 +00002249 }
2250
2251 /// Implement MachineSchedStrategy interface.
2252 /// -----------------------------------------
2253
Andrew Trick8b1496c2012-11-28 05:13:28 +00002254 /// Callback to select the highest priority node from the ready Q.
Andrew Trick1e94e982012-10-15 18:02:27 +00002255 virtual SUnit *pickNode(bool &IsTopNode) {
2256 if (ReadyQ.empty()) return NULL;
Matt Arsenault26c417b2013-03-21 00:57:21 +00002257 std::pop_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
Andrew Trick1e94e982012-10-15 18:02:27 +00002258 SUnit *SU = ReadyQ.back();
2259 ReadyQ.pop_back();
2260 IsTopNode = false;
Andrew Trickbaedcd72013-04-13 06:07:49 +00002261 DEBUG(dbgs() << "Pick node " << "SU(" << SU->NodeNum << ") "
Andrew Trick178f7d02013-01-25 04:01:04 +00002262 << " ILP: " << DAG->getDFSResult()->getILP(SU)
2263 << " Tree: " << DAG->getDFSResult()->getSubtreeID(SU) << " @"
2264 << DAG->getDFSResult()->getSubtreeLevel(
Andrew Trickbaedcd72013-04-13 06:07:49 +00002265 DAG->getDFSResult()->getSubtreeID(SU)) << '\n'
2266 << "Scheduling " << *SU->getInstr());
Andrew Trick1e94e982012-10-15 18:02:27 +00002267 return SU;
2268 }
2269
Andrew Trick178f7d02013-01-25 04:01:04 +00002270 /// \brief Scheduler callback to notify that a new subtree is scheduled.
2271 virtual void scheduleTree(unsigned SubtreeID) {
2272 std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
2273 }
2274
Andrew Trick8b1496c2012-11-28 05:13:28 +00002275 /// Callback after a node is scheduled. Mark a newly scheduled tree, notify
2276 /// DFSResults, and resort the priority Q.
2277 virtual void schedNode(SUnit *SU, bool IsTopNode) {
2278 assert(!IsTopNode && "SchedDFSResult needs bottom-up");
Andrew Trick8b1496c2012-11-28 05:13:28 +00002279 }
Andrew Trick1e94e982012-10-15 18:02:27 +00002280
2281 virtual void releaseTopNode(SUnit *) { /*only called for top roots*/ }
2282
2283 virtual void releaseBottomNode(SUnit *SU) {
2284 ReadyQ.push_back(SU);
2285 std::push_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
2286 }
2287};
2288} // namespace
2289
2290static ScheduleDAGInstrs *createILPMaxScheduler(MachineSchedContext *C) {
2291 return new ScheduleDAGMI(C, new ILPScheduler(true));
2292}
2293static ScheduleDAGInstrs *createILPMinScheduler(MachineSchedContext *C) {
2294 return new ScheduleDAGMI(C, new ILPScheduler(false));
2295}
2296static MachineSchedRegistry ILPMaxRegistry(
2297 "ilpmax", "Schedule bottom-up for max ILP", createILPMaxScheduler);
2298static MachineSchedRegistry ILPMinRegistry(
2299 "ilpmin", "Schedule bottom-up for min ILP", createILPMinScheduler);
2300
2301//===----------------------------------------------------------------------===//
Andrew Trick5edf2f02012-01-14 02:17:06 +00002302// Machine Instruction Shuffler for Correctness Testing
2303//===----------------------------------------------------------------------===//
2304
Andrew Trick96f678f2012-01-13 06:30:30 +00002305#ifndef NDEBUG
2306namespace {
Andrew Trick17d35e52012-03-14 04:00:41 +00002307/// Apply a less-than relation on the node order, which corresponds to the
2308/// instruction order prior to scheduling. IsReverse implements greater-than.
2309template<bool IsReverse>
2310struct SUnitOrder {
Andrew Trickc6cf11b2012-01-17 06:55:07 +00002311 bool operator()(SUnit *A, SUnit *B) const {
Andrew Trick17d35e52012-03-14 04:00:41 +00002312 if (IsReverse)
2313 return A->NodeNum > B->NodeNum;
2314 else
2315 return A->NodeNum < B->NodeNum;
Andrew Trickc6cf11b2012-01-17 06:55:07 +00002316 }
2317};
2318
Andrew Trick96f678f2012-01-13 06:30:30 +00002319/// Reorder instructions as much as possible.
Andrew Trick17d35e52012-03-14 04:00:41 +00002320class InstructionShuffler : public MachineSchedStrategy {
2321 bool IsAlternating;
2322 bool IsTopDown;
2323
2324 // Using a less-than relation (SUnitOrder<false>) for the TopQ priority
2325 // gives nodes with a higher number higher priority causing the latest
2326 // instructions to be scheduled first.
2327 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<false> >
2328 TopQ;
2329 // When scheduling bottom-up, use greater-than as the queue priority.
2330 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<true> >
2331 BottomQ;
Andrew Trick96f678f2012-01-13 06:30:30 +00002332public:
Andrew Trick17d35e52012-03-14 04:00:41 +00002333 InstructionShuffler(bool alternate, bool topdown)
2334 : IsAlternating(alternate), IsTopDown(topdown) {}
Andrew Trick96f678f2012-01-13 06:30:30 +00002335
Andrew Trick17d35e52012-03-14 04:00:41 +00002336 virtual void initialize(ScheduleDAGMI *) {
2337 TopQ.clear();
2338 BottomQ.clear();
2339 }
Andrew Trickc6cf11b2012-01-17 06:55:07 +00002340
Andrew Trick17d35e52012-03-14 04:00:41 +00002341 /// Implement MachineSchedStrategy interface.
2342 /// -----------------------------------------
2343
2344 virtual SUnit *pickNode(bool &IsTopNode) {
2345 SUnit *SU;
2346 if (IsTopDown) {
2347 do {
2348 if (TopQ.empty()) return NULL;
2349 SU = TopQ.top();
2350 TopQ.pop();
2351 } while (SU->isScheduled);
2352 IsTopNode = true;
2353 }
2354 else {
2355 do {
2356 if (BottomQ.empty()) return NULL;
2357 SU = BottomQ.top();
2358 BottomQ.pop();
2359 } while (SU->isScheduled);
2360 IsTopNode = false;
2361 }
2362 if (IsAlternating)
2363 IsTopDown = !IsTopDown;
Andrew Trickc6cf11b2012-01-17 06:55:07 +00002364 return SU;
2365 }
2366
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002367 virtual void schedNode(SUnit *SU, bool IsTopNode) {}
2368
Andrew Trick17d35e52012-03-14 04:00:41 +00002369 virtual void releaseTopNode(SUnit *SU) {
2370 TopQ.push(SU);
2371 }
2372 virtual void releaseBottomNode(SUnit *SU) {
2373 BottomQ.push(SU);
Andrew Trick96f678f2012-01-13 06:30:30 +00002374 }
2375};
2376} // namespace
2377
Andrew Trickc174eaf2012-03-08 01:41:12 +00002378static ScheduleDAGInstrs *createInstructionShuffler(MachineSchedContext *C) {
Andrew Trick17d35e52012-03-14 04:00:41 +00002379 bool Alternate = !ForceTopDown && !ForceBottomUp;
2380 bool TopDown = !ForceBottomUp;
Benjamin Kramer689e0b42012-03-14 11:26:37 +00002381 assert((TopDown || !ForceTopDown) &&
Andrew Trick17d35e52012-03-14 04:00:41 +00002382 "-misched-topdown incompatible with -misched-bottomup");
2383 return new ScheduleDAGMI(C, new InstructionShuffler(Alternate, TopDown));
Andrew Trick96f678f2012-01-13 06:30:30 +00002384}
Andrew Trick17d35e52012-03-14 04:00:41 +00002385static MachineSchedRegistry ShufflerRegistry(
2386 "shuffle", "Shuffle machine instructions alternating directions",
2387 createInstructionShuffler);
Andrew Trick96f678f2012-01-13 06:30:30 +00002388#endif // !NDEBUG
Andrew Trick30849792013-01-25 07:45:29 +00002389
2390//===----------------------------------------------------------------------===//
2391// GraphWriter support for ScheduleDAGMI.
2392//===----------------------------------------------------------------------===//
2393
2394#ifndef NDEBUG
2395namespace llvm {
2396
2397template<> struct GraphTraits<
2398 ScheduleDAGMI*> : public GraphTraits<ScheduleDAG*> {};
2399
2400template<>
2401struct DOTGraphTraits<ScheduleDAGMI*> : public DefaultDOTGraphTraits {
2402
2403 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
2404
2405 static std::string getGraphName(const ScheduleDAG *G) {
2406 return G->MF.getName();
2407 }
2408
2409 static bool renderGraphFromBottomUp() {
2410 return true;
2411 }
2412
2413 static bool isNodeHidden(const SUnit *Node) {
2414 return (Node->NumPreds > 10 || Node->NumSuccs > 10);
2415 }
2416
2417 static bool hasNodeAddressLabel(const SUnit *Node,
2418 const ScheduleDAG *Graph) {
2419 return false;
2420 }
2421
2422 /// If you want to override the dot attributes printed for a particular
2423 /// edge, override this method.
2424 static std::string getEdgeAttributes(const SUnit *Node,
2425 SUnitIterator EI,
2426 const ScheduleDAG *Graph) {
2427 if (EI.isArtificialDep())
2428 return "color=cyan,style=dashed";
2429 if (EI.isCtrlDep())
2430 return "color=blue,style=dashed";
2431 return "";
2432 }
2433
2434 static std::string getNodeLabel(const SUnit *SU, const ScheduleDAG *G) {
2435 std::string Str;
2436 raw_string_ostream SS(Str);
2437 SS << "SU(" << SU->NodeNum << ')';
2438 return SS.str();
2439 }
2440 static std::string getNodeDescription(const SUnit *SU, const ScheduleDAG *G) {
2441 return G->getGraphNodeLabel(SU);
2442 }
2443
2444 static std::string getNodeAttributes(const SUnit *N,
2445 const ScheduleDAG *Graph) {
2446 std::string Str("shape=Mrecord");
2447 const SchedDFSResult *DFS =
2448 static_cast<const ScheduleDAGMI*>(Graph)->getDFSResult();
2449 if (DFS) {
2450 Str += ",style=filled,fillcolor=\"#";
2451 Str += DOT::getColorString(DFS->getSubtreeID(N));
2452 Str += '"';
2453 }
2454 return Str;
2455 }
2456};
2457} // namespace llvm
2458#endif // NDEBUG
2459
2460/// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
2461/// rendered using 'dot'.
2462///
2463void ScheduleDAGMI::viewGraph(const Twine &Name, const Twine &Title) {
2464#ifndef NDEBUG
2465 ViewGraph(this, Name, false, Title);
2466#else
2467 errs() << "ScheduleDAGMI::viewGraph is only available in debug builds on "
2468 << "systems with Graphviz or gv!\n";
2469#endif // NDEBUG
2470}
2471
2472/// Out-of-line implementation with no arguments is handy for gdb.
2473void ScheduleDAGMI::viewGraph() {
2474 viewGraph(getDAGName(), "Scheduling-Units Graph for " + getDAGName());
2475}