blob: efc7bd76ce0270222411c5f941d96e4fbf387de2 [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 Trick86b7e2a2012-04-24 20:36:19 +000017#include "RegisterClassInfo.h"
Andrew Trick006e1ab2012-04-24 17:56:43 +000018#include "RegisterPressure.h"
Andrew Trick96f678f2012-01-13 06:30:30 +000019#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Andrew Trickc174eaf2012-03-08 01:41:12 +000020#include "llvm/CodeGen/MachineScheduler.h"
Andrew Trick96f678f2012-01-13 06:30:30 +000021#include "llvm/CodeGen/Passes.h"
Andrew Tricked395c82012-03-07 23:01:06 +000022#include "llvm/CodeGen/ScheduleDAGInstrs.h"
Andrew Trick0a39d4e2012-05-24 22:11:09 +000023#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
Andrew Trick96f678f2012-01-13 06:30:30 +000024#include "llvm/Analysis/AliasAnalysis.h"
Andrew Tricke9ef4ed2012-01-14 02:17:09 +000025#include "llvm/Target/TargetInstrInfo.h"
Andrew Trick96f678f2012-01-13 06:30:30 +000026#include "llvm/Support/CommandLine.h"
27#include "llvm/Support/Debug.h"
28#include "llvm/Support/ErrorHandling.h"
29#include "llvm/Support/raw_ostream.h"
30#include "llvm/ADT/OwningPtr.h"
Andrew Trick17d35e52012-03-14 04:00:41 +000031#include "llvm/ADT/PriorityQueue.h"
Andrew Trick96f678f2012-01-13 06:30:30 +000032
Andrew Trickc6cf11b2012-01-17 06:55:07 +000033#include <queue>
34
Andrew Trick96f678f2012-01-13 06:30:30 +000035using namespace llvm;
36
Andrew Trick17d35e52012-03-14 04:00:41 +000037static cl::opt<bool> ForceTopDown("misched-topdown", cl::Hidden,
38 cl::desc("Force top-down list scheduling"));
39static cl::opt<bool> ForceBottomUp("misched-bottomup", cl::Hidden,
40 cl::desc("Force bottom-up list scheduling"));
41
Andrew Trick0df7f882012-03-07 00:18:25 +000042#ifndef NDEBUG
43static cl::opt<bool> ViewMISchedDAGs("view-misched-dags", cl::Hidden,
44 cl::desc("Pop up a window to show MISched dags after they are processed"));
Lang Hames23f1cbb2012-03-19 18:38:38 +000045
46static cl::opt<unsigned> MISchedCutoff("misched-cutoff", cl::Hidden,
47 cl::desc("Stop scheduling after N instructions"), cl::init(~0U));
Andrew Trick0df7f882012-03-07 00:18:25 +000048#else
49static bool ViewMISchedDAGs = false;
50#endif // NDEBUG
51
Andrew Trick5edf2f02012-01-14 02:17:06 +000052//===----------------------------------------------------------------------===//
53// Machine Instruction Scheduling Pass and Registry
54//===----------------------------------------------------------------------===//
55
Andrew Trick86b7e2a2012-04-24 20:36:19 +000056MachineSchedContext::MachineSchedContext():
57 MF(0), MLI(0), MDT(0), PassConfig(0), AA(0), LIS(0) {
58 RegClassInfo = new RegisterClassInfo();
59}
60
61MachineSchedContext::~MachineSchedContext() {
62 delete RegClassInfo;
63}
64
Andrew Trick96f678f2012-01-13 06:30:30 +000065namespace {
Andrew Trick42b7a712012-01-17 06:55:03 +000066/// MachineScheduler runs after coalescing and before register allocation.
Andrew Trickc174eaf2012-03-08 01:41:12 +000067class MachineScheduler : public MachineSchedContext,
68 public MachineFunctionPass {
Andrew Trick96f678f2012-01-13 06:30:30 +000069public:
Andrew Trick42b7a712012-01-17 06:55:03 +000070 MachineScheduler();
Andrew Trick96f678f2012-01-13 06:30:30 +000071
72 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
73
74 virtual void releaseMemory() {}
75
76 virtual bool runOnMachineFunction(MachineFunction&);
77
78 virtual void print(raw_ostream &O, const Module* = 0) const;
79
80 static char ID; // Class identification, replacement for typeinfo
81};
82} // namespace
83
Andrew Trick42b7a712012-01-17 06:55:03 +000084char MachineScheduler::ID = 0;
Andrew Trick96f678f2012-01-13 06:30:30 +000085
Andrew Trick42b7a712012-01-17 06:55:03 +000086char &llvm::MachineSchedulerID = MachineScheduler::ID;
Andrew Trick96f678f2012-01-13 06:30:30 +000087
Andrew Trick42b7a712012-01-17 06:55:03 +000088INITIALIZE_PASS_BEGIN(MachineScheduler, "misched",
Andrew Trick96f678f2012-01-13 06:30:30 +000089 "Machine Instruction Scheduler", false, false)
90INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
91INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
92INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
Andrew Trick42b7a712012-01-17 06:55:03 +000093INITIALIZE_PASS_END(MachineScheduler, "misched",
Andrew Trick96f678f2012-01-13 06:30:30 +000094 "Machine Instruction Scheduler", false, false)
95
Andrew Trick42b7a712012-01-17 06:55:03 +000096MachineScheduler::MachineScheduler()
Andrew Trickc174eaf2012-03-08 01:41:12 +000097: MachineFunctionPass(ID) {
Andrew Trick42b7a712012-01-17 06:55:03 +000098 initializeMachineSchedulerPass(*PassRegistry::getPassRegistry());
Andrew Trick96f678f2012-01-13 06:30:30 +000099}
100
Andrew Trick42b7a712012-01-17 06:55:03 +0000101void MachineScheduler::getAnalysisUsage(AnalysisUsage &AU) const {
Andrew Trick96f678f2012-01-13 06:30:30 +0000102 AU.setPreservesCFG();
103 AU.addRequiredID(MachineDominatorsID);
104 AU.addRequired<MachineLoopInfo>();
105 AU.addRequired<AliasAnalysis>();
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000106 AU.addRequired<TargetPassConfig>();
Andrew Trick96f678f2012-01-13 06:30:30 +0000107 AU.addRequired<SlotIndexes>();
108 AU.addPreserved<SlotIndexes>();
109 AU.addRequired<LiveIntervals>();
110 AU.addPreserved<LiveIntervals>();
Andrew Trick96f678f2012-01-13 06:30:30 +0000111 MachineFunctionPass::getAnalysisUsage(AU);
112}
113
Andrew Trick96f678f2012-01-13 06:30:30 +0000114MachinePassRegistry MachineSchedRegistry::Registry;
115
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000116/// A dummy default scheduler factory indicates whether the scheduler
117/// is overridden on the command line.
118static ScheduleDAGInstrs *useDefaultMachineSched(MachineSchedContext *C) {
119 return 0;
120}
Andrew Trick96f678f2012-01-13 06:30:30 +0000121
122/// MachineSchedOpt allows command line selection of the scheduler.
123static cl::opt<MachineSchedRegistry::ScheduleDAGCtor, false,
124 RegisterPassParser<MachineSchedRegistry> >
125MachineSchedOpt("misched",
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000126 cl::init(&useDefaultMachineSched), cl::Hidden,
Andrew Trick96f678f2012-01-13 06:30:30 +0000127 cl::desc("Machine instruction scheduler to use"));
128
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000129static MachineSchedRegistry
Andrew Trick17d35e52012-03-14 04:00:41 +0000130DefaultSchedRegistry("default", "Use the target's default scheduler choice.",
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000131 useDefaultMachineSched);
132
Andrew Trick17d35e52012-03-14 04:00:41 +0000133/// Forward declare the standard machine scheduler. This will be used as the
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000134/// default scheduler if the target does not set a default.
Andrew Trick17d35e52012-03-14 04:00:41 +0000135static ScheduleDAGInstrs *createConvergingSched(MachineSchedContext *C);
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000136
Andrew Trickeb45ebb2012-04-24 18:04:34 +0000137
138/// Decrement this iterator until reaching the top or a non-debug instr.
139static MachineBasicBlock::iterator
140priorNonDebug(MachineBasicBlock::iterator I, MachineBasicBlock::iterator Beg) {
141 assert(I != Beg && "reached the top of the region, cannot decrement");
142 while (--I != Beg) {
143 if (!I->isDebugValue())
144 break;
145 }
146 return I;
147}
148
149/// If this iterator is a debug value, increment until reaching the End or a
150/// non-debug instruction.
151static MachineBasicBlock::iterator
152nextIfDebug(MachineBasicBlock::iterator I, MachineBasicBlock::iterator End) {
Andrew Trick811d92682012-05-17 18:35:03 +0000153 for(; I != End; ++I) {
Andrew Trickeb45ebb2012-04-24 18:04:34 +0000154 if (!I->isDebugValue())
155 break;
156 }
157 return I;
158}
159
Andrew Trickcb058d52012-03-14 04:00:38 +0000160/// Top-level MachineScheduler pass driver.
161///
162/// Visit blocks in function order. Divide each block into scheduling regions
Andrew Trick17d35e52012-03-14 04:00:41 +0000163/// and visit them bottom-up. Visiting regions bottom-up is not required, but is
164/// consistent with the DAG builder, which traverses the interior of the
165/// scheduling regions bottom-up.
Andrew Trickcb058d52012-03-14 04:00:38 +0000166///
167/// This design avoids exposing scheduling boundaries to the DAG builder,
Andrew Trick17d35e52012-03-14 04:00:41 +0000168/// simplifying the DAG builder's support for "special" target instructions.
169/// At the same time the design allows target schedulers to operate across
Andrew Trickcb058d52012-03-14 04:00:38 +0000170/// scheduling boundaries, for example to bundle the boudary instructions
171/// without reordering them. This creates complexity, because the target
172/// scheduler must update the RegionBegin and RegionEnd positions cached by
173/// ScheduleDAGInstrs whenever adding or removing instructions. A much simpler
174/// design would be to split blocks at scheduling boundaries, but LLVM has a
175/// general bias against block splitting purely for implementation simplicity.
Andrew Trick42b7a712012-01-17 06:55:03 +0000176bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) {
Andrew Trick89c324b2012-05-10 21:06:21 +0000177 DEBUG(dbgs() << "Before MISsched:\n"; mf.print(dbgs()));
178
Andrew Trick96f678f2012-01-13 06:30:30 +0000179 // Initialize the context of the pass.
180 MF = &mf;
181 MLI = &getAnalysis<MachineLoopInfo>();
182 MDT = &getAnalysis<MachineDominatorTree>();
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000183 PassConfig = &getAnalysis<TargetPassConfig>();
Andrew Trickc174eaf2012-03-08 01:41:12 +0000184 AA = &getAnalysis<AliasAnalysis>();
185
Lang Hames907cc8f2012-01-27 22:36:19 +0000186 LIS = &getAnalysis<LiveIntervals>();
Andrew Trickc174eaf2012-03-08 01:41:12 +0000187 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
Andrew Trick96f678f2012-01-13 06:30:30 +0000188
Andrew Trick86b7e2a2012-04-24 20:36:19 +0000189 RegClassInfo->runOnMachineFunction(*MF);
Andrew Trick006e1ab2012-04-24 17:56:43 +0000190
Andrew Trick96f678f2012-01-13 06:30:30 +0000191 // Select the scheduler, or set the default.
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000192 MachineSchedRegistry::ScheduleDAGCtor Ctor = MachineSchedOpt;
193 if (Ctor == useDefaultMachineSched) {
194 // Get the default scheduler set by the target.
195 Ctor = MachineSchedRegistry::getDefault();
196 if (!Ctor) {
Andrew Trick17d35e52012-03-14 04:00:41 +0000197 Ctor = createConvergingSched;
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000198 MachineSchedRegistry::setDefault(Ctor);
199 }
Andrew Trick96f678f2012-01-13 06:30:30 +0000200 }
201 // Instantiate the selected scheduler.
202 OwningPtr<ScheduleDAGInstrs> Scheduler(Ctor(this));
203
204 // Visit all machine basic blocks.
Andrew Trick006e1ab2012-04-24 17:56:43 +0000205 //
206 // TODO: Visit blocks in global postorder or postorder within the bottom-up
207 // loop tree. Then we can optionally compute global RegPressure.
Andrew Trick96f678f2012-01-13 06:30:30 +0000208 for (MachineFunction::iterator MBB = MF->begin(), MBBEnd = MF->end();
209 MBB != MBBEnd; ++MBB) {
210
Andrew Trick1fabd9f2012-03-09 08:02:51 +0000211 Scheduler->startBlock(MBB);
212
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000213 // Break the block into scheduling regions [I, RegionEnd), and schedule each
Andrew Trickfe4d6df2012-03-09 22:34:56 +0000214 // region as soon as it is discovered. RegionEnd points the the scheduling
215 // boundary at the bottom of the region. The DAG does not include RegionEnd,
216 // but the region does (i.e. the next RegionEnd is above the previous
217 // RegionBegin). If the current block has no terminator then RegionEnd ==
218 // MBB->end() for the bottom region.
219 //
220 // The Scheduler may insert instructions during either schedule() or
221 // exitRegion(), even for empty regions. So the local iterators 'I' and
222 // 'RegionEnd' are invalid across these calls.
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000223 unsigned RemainingCount = MBB->size();
Andrew Trick7799eb42012-03-09 03:46:39 +0000224 for(MachineBasicBlock::iterator RegionEnd = MBB->end();
Andrew Trickfe4d6df2012-03-09 22:34:56 +0000225 RegionEnd != MBB->begin(); RegionEnd = Scheduler->begin()) {
Andrew Trick006e1ab2012-04-24 17:56:43 +0000226
Andrew Trick1fabd9f2012-03-09 08:02:51 +0000227 // Avoid decrementing RegionEnd for blocks with no terminator.
228 if (RegionEnd != MBB->end()
229 || TII->isSchedulingBoundary(llvm::prior(RegionEnd), MBB, *MF)) {
230 --RegionEnd;
231 // Count the boundary instruction.
232 --RemainingCount;
233 }
234
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000235 // The next region starts above the previous region. Look backward in the
236 // instruction stream until we find the nearest boundary.
237 MachineBasicBlock::iterator I = RegionEnd;
Andrew Trick7799eb42012-03-09 03:46:39 +0000238 for(;I != MBB->begin(); --I, --RemainingCount) {
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000239 if (TII->isSchedulingBoundary(llvm::prior(I), MBB, *MF))
240 break;
241 }
Andrew Trick47c14452012-03-07 05:21:52 +0000242 // Notify the scheduler of the region, even if we may skip scheduling
243 // it. Perhaps it still needs to be bundled.
244 Scheduler->enterRegion(MBB, I, RegionEnd, RemainingCount);
245
246 // Skip empty scheduling regions (0 or 1 schedulable instructions).
247 if (I == RegionEnd || I == llvm::prior(RegionEnd)) {
Andrew Trick47c14452012-03-07 05:21:52 +0000248 // Close the current region. Bundle the terminator if needed.
Andrew Trickfe4d6df2012-03-09 22:34:56 +0000249 // This invalidates 'RegionEnd' and 'I'.
Andrew Trick47c14452012-03-07 05:21:52 +0000250 Scheduler->exitRegion();
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000251 continue;
Andrew Trick3c58ba82012-01-14 02:17:18 +0000252 }
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000253 DEBUG(dbgs() << "MachineScheduling " << MF->getFunction()->getName()
Andrew Trick291411c2012-02-08 02:17:21 +0000254 << ":BB#" << MBB->getNumber() << "\n From: " << *I << " To: ";
255 if (RegionEnd != MBB->end()) dbgs() << *RegionEnd;
256 else dbgs() << "End";
257 dbgs() << " Remaining: " << RemainingCount << "\n");
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000258
Andrew Trickd24da972012-03-09 03:46:42 +0000259 // Schedule a region: possibly reorder instructions.
Andrew Trickfe4d6df2012-03-09 22:34:56 +0000260 // This invalidates 'RegionEnd' and 'I'.
Andrew Trick953be892012-03-07 23:00:49 +0000261 Scheduler->schedule();
Andrew Trickd24da972012-03-09 03:46:42 +0000262
263 // Close the current region.
Andrew Trick47c14452012-03-07 05:21:52 +0000264 Scheduler->exitRegion();
265
266 // Scheduling has invalidated the current iterator 'I'. Ask the
267 // scheduler for the top of it's scheduled region.
268 RegionEnd = Scheduler->begin();
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000269 }
270 assert(RemainingCount == 0 && "Instruction count mismatch!");
Andrew Trick953be892012-03-07 23:00:49 +0000271 Scheduler->finishBlock();
Andrew Trick96f678f2012-01-13 06:30:30 +0000272 }
Andrew Trick830da402012-04-01 07:24:23 +0000273 Scheduler->finalizeSchedule();
Andrew Trickaad37f12012-03-21 04:12:12 +0000274 DEBUG(LIS->print(dbgs()));
Andrew Trick96f678f2012-01-13 06:30:30 +0000275 return true;
276}
277
Andrew Trick42b7a712012-01-17 06:55:03 +0000278void MachineScheduler::print(raw_ostream &O, const Module* m) const {
Andrew Trick96f678f2012-01-13 06:30:30 +0000279 // unimplemented
280}
281
Andrew Trick5edf2f02012-01-14 02:17:06 +0000282//===----------------------------------------------------------------------===//
Andrew Trick17d35e52012-03-14 04:00:41 +0000283// MachineSchedStrategy - Interface to a machine scheduling algorithm.
284//===----------------------------------------------------------------------===//
Andrew Trickc174eaf2012-03-08 01:41:12 +0000285
286namespace {
Andrew Trick17d35e52012-03-14 04:00:41 +0000287class ScheduleDAGMI;
Andrew Trickc174eaf2012-03-08 01:41:12 +0000288
Andrew Trick17d35e52012-03-14 04:00:41 +0000289/// MachineSchedStrategy - Interface used by ScheduleDAGMI to drive the selected
290/// scheduling algorithm.
291///
292/// If this works well and targets wish to reuse ScheduleDAGMI, we may expose it
293/// in ScheduleDAGInstrs.h
294class MachineSchedStrategy {
295public:
296 virtual ~MachineSchedStrategy() {}
297
298 /// Initialize the strategy after building the DAG for a new region.
299 virtual void initialize(ScheduleDAGMI *DAG) = 0;
300
301 /// Pick the next node to schedule, or return NULL. Set IsTopNode to true to
302 /// schedule the node at the top of the unscheduled region. Otherwise it will
303 /// be scheduled at the bottom.
304 virtual SUnit *pickNode(bool &IsTopNode) = 0;
305
Andrew Trick0a39d4e2012-05-24 22:11:09 +0000306 /// Notify MachineSchedStrategy that ScheduleDAGMI has scheduled a node.
307 virtual void schedNode(SUnit *SU, bool IsTopNode) = 0;
308
Andrew Trick17d35e52012-03-14 04:00:41 +0000309 /// When all predecessor dependencies have been resolved, free this node for
310 /// top-down scheduling.
311 virtual void releaseTopNode(SUnit *SU) = 0;
312 /// When all successor dependencies have been resolved, free this node for
313 /// bottom-up scheduling.
314 virtual void releaseBottomNode(SUnit *SU) = 0;
315};
316} // namespace
317
318//===----------------------------------------------------------------------===//
319// ScheduleDAGMI - Base class for MachineInstr scheduling with LiveIntervals
320// preservation.
321//===----------------------------------------------------------------------===//
322
323namespace {
324/// ScheduleDAGMI is an implementation of ScheduleDAGInstrs that schedules
325/// machine instructions while updating LiveIntervals.
326class ScheduleDAGMI : public ScheduleDAGInstrs {
327 AliasAnalysis *AA;
Andrew Trick006e1ab2012-04-24 17:56:43 +0000328 RegisterClassInfo *RegClassInfo;
Andrew Trick17d35e52012-03-14 04:00:41 +0000329 MachineSchedStrategy *SchedImpl;
330
Andrew Trick7f8ab782012-05-10 21:06:10 +0000331 MachineBasicBlock::iterator LiveRegionEnd;
332
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000333 /// Register pressure in this region computed by buildSchedGraph.
Andrew Trick006e1ab2012-04-24 17:56:43 +0000334 IntervalPressure RegPressure;
335 RegPressureTracker RPTracker;
336
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000337 /// List of pressure sets that exceed the target's pressure limit before
338 /// scheduling, listed in increasing set ID order. Each pressure set is paired
339 /// with its max pressure in the currently scheduled regions.
340 std::vector<PressureElement> RegionCriticalPSets;
341
Andrew Trick17d35e52012-03-14 04:00:41 +0000342 /// The top of the unscheduled zone.
343 MachineBasicBlock::iterator CurrentTop;
Andrew Trick7f8ab782012-05-10 21:06:10 +0000344 IntervalPressure TopPressure;
345 RegPressureTracker TopRPTracker;
Andrew Trick17d35e52012-03-14 04:00:41 +0000346
347 /// The bottom of the unscheduled zone.
348 MachineBasicBlock::iterator CurrentBottom;
Andrew Trick7f8ab782012-05-10 21:06:10 +0000349 IntervalPressure BotPressure;
350 RegPressureTracker BotRPTracker;
Lang Hames23f1cbb2012-03-19 18:38:38 +0000351
352 /// The number of instructions scheduled so far. Used to cut off the
353 /// scheduler at the point determined by misched-cutoff.
354 unsigned NumInstrsScheduled;
Andrew Trick17d35e52012-03-14 04:00:41 +0000355public:
356 ScheduleDAGMI(MachineSchedContext *C, MachineSchedStrategy *S):
357 ScheduleDAGInstrs(*C->MF, *C->MLI, *C->MDT, /*IsPostRA=*/false, C->LIS),
Andrew Trick86b7e2a2012-04-24 20:36:19 +0000358 AA(C->AA), RegClassInfo(C->RegClassInfo), SchedImpl(S),
Andrew Trick7f8ab782012-05-10 21:06:10 +0000359 RPTracker(RegPressure), CurrentTop(), TopRPTracker(TopPressure),
360 CurrentBottom(), BotRPTracker(BotPressure), NumInstrsScheduled(0) {}
Andrew Trick17d35e52012-03-14 04:00:41 +0000361
362 ~ScheduleDAGMI() {
363 delete SchedImpl;
364 }
365
366 MachineBasicBlock::iterator top() const { return CurrentTop; }
367 MachineBasicBlock::iterator bottom() const { return CurrentBottom; }
368
Andrew Trick006e1ab2012-04-24 17:56:43 +0000369 /// Implement the ScheduleDAGInstrs interface for handling the next scheduling
370 /// region. This covers all instructions in a block, while schedule() may only
371 /// cover a subset.
372 void enterRegion(MachineBasicBlock *bb,
373 MachineBasicBlock::iterator begin,
374 MachineBasicBlock::iterator end,
375 unsigned endcount);
376
377 /// Implement ScheduleDAGInstrs interface for scheduling a sequence of
378 /// reorderable instructions.
Andrew Trickc174eaf2012-03-08 01:41:12 +0000379 void schedule();
380
Andrew Trick7196a8f2012-05-10 21:06:16 +0000381 /// Get current register pressure for the top scheduled instructions.
382 const IntervalPressure &getTopPressure() const { return TopPressure; }
383 const RegPressureTracker &getTopRPTracker() const { return TopRPTracker; }
384
385 /// Get current register pressure for the bottom scheduled instructions.
386 const IntervalPressure &getBotPressure() const { return BotPressure; }
387 const RegPressureTracker &getBotRPTracker() const { return BotRPTracker; }
388
389 /// Get register pressure for the entire scheduling region before scheduling.
390 const IntervalPressure &getRegPressure() const { return RegPressure; }
391
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000392 const std::vector<PressureElement> &getRegionCriticalPSets() const {
393 return RegionCriticalPSets;
394 }
395
Andrew Trickc174eaf2012-03-08 01:41:12 +0000396protected:
Andrew Trick7f8ab782012-05-10 21:06:10 +0000397 void initRegPressure();
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000398 void updateScheduledPressure(std::vector<unsigned> NewMaxPressure);
Andrew Trick7f8ab782012-05-10 21:06:10 +0000399
Andrew Trick17d35e52012-03-14 04:00:41 +0000400 void moveInstruction(MachineInstr *MI, MachineBasicBlock::iterator InsertPos);
Andrew Trick0b0d8992012-03-21 04:12:07 +0000401 bool checkSchedLimit();
Andrew Trick17d35e52012-03-14 04:00:41 +0000402
Andrew Trick2aa689d2012-05-24 22:11:05 +0000403 void releaseRoots();
404
Andrew Trickc174eaf2012-03-08 01:41:12 +0000405 void releaseSucc(SUnit *SU, SDep *SuccEdge);
406 void releaseSuccessors(SUnit *SU);
Andrew Trick17d35e52012-03-14 04:00:41 +0000407 void releasePred(SUnit *SU, SDep *PredEdge);
408 void releasePredecessors(SUnit *SU);
Andrew Trick000b2502012-04-24 18:04:37 +0000409
410 void placeDebugValues();
Andrew Trickc174eaf2012-03-08 01:41:12 +0000411};
412} // namespace
413
414/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. When
415/// NumPredsLeft reaches zero, release the successor node.
Andrew Trick0a39d4e2012-05-24 22:11:09 +0000416///
417/// FIXME: Adjust SuccSU height based on MinLatency.
Andrew Trick17d35e52012-03-14 04:00:41 +0000418void ScheduleDAGMI::releaseSucc(SUnit *SU, SDep *SuccEdge) {
Andrew Trickc174eaf2012-03-08 01:41:12 +0000419 SUnit *SuccSU = SuccEdge->getSUnit();
420
421#ifndef NDEBUG
422 if (SuccSU->NumPredsLeft == 0) {
423 dbgs() << "*** Scheduling failed! ***\n";
424 SuccSU->dump(this);
425 dbgs() << " has been released too many times!\n";
426 llvm_unreachable(0);
427 }
428#endif
429 --SuccSU->NumPredsLeft;
430 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
Andrew Trick17d35e52012-03-14 04:00:41 +0000431 SchedImpl->releaseTopNode(SuccSU);
Andrew Trickc174eaf2012-03-08 01:41:12 +0000432}
433
434/// releaseSuccessors - Call releaseSucc on each of SU's successors.
Andrew Trick17d35e52012-03-14 04:00:41 +0000435void ScheduleDAGMI::releaseSuccessors(SUnit *SU) {
Andrew Trickc174eaf2012-03-08 01:41:12 +0000436 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
437 I != E; ++I) {
438 releaseSucc(SU, &*I);
439 }
440}
441
Andrew Trick17d35e52012-03-14 04:00:41 +0000442/// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. When
443/// NumSuccsLeft reaches zero, release the predecessor node.
Andrew Trick0a39d4e2012-05-24 22:11:09 +0000444///
445/// FIXME: Adjust PredSU height based on MinLatency.
Andrew Trick17d35e52012-03-14 04:00:41 +0000446void ScheduleDAGMI::releasePred(SUnit *SU, SDep *PredEdge) {
447 SUnit *PredSU = PredEdge->getSUnit();
448
449#ifndef NDEBUG
450 if (PredSU->NumSuccsLeft == 0) {
451 dbgs() << "*** Scheduling failed! ***\n";
452 PredSU->dump(this);
453 dbgs() << " has been released too many times!\n";
454 llvm_unreachable(0);
455 }
456#endif
457 --PredSU->NumSuccsLeft;
458 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU)
459 SchedImpl->releaseBottomNode(PredSU);
460}
461
462/// releasePredecessors - Call releasePred on each of SU's predecessors.
463void ScheduleDAGMI::releasePredecessors(SUnit *SU) {
464 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
465 I != E; ++I) {
466 releasePred(SU, &*I);
467 }
468}
469
470void ScheduleDAGMI::moveInstruction(MachineInstr *MI,
471 MachineBasicBlock::iterator InsertPos) {
Andrew Trick811d92682012-05-17 18:35:03 +0000472 // Advance RegionBegin if the first instruction moves down.
Andrew Trick1ce062f2012-03-21 04:12:10 +0000473 if (&*RegionBegin == MI)
Andrew Trick811d92682012-05-17 18:35:03 +0000474 ++RegionBegin;
475
476 // Update the instruction stream.
Andrew Trick17d35e52012-03-14 04:00:41 +0000477 BB->splice(InsertPos, BB, MI);
Andrew Trick811d92682012-05-17 18:35:03 +0000478
479 // Update LiveIntervals
Andrew Trick17d35e52012-03-14 04:00:41 +0000480 LIS->handleMove(MI);
Andrew Trick811d92682012-05-17 18:35:03 +0000481
482 // Recede RegionBegin if an instruction moves above the first.
Andrew Trick17d35e52012-03-14 04:00:41 +0000483 if (RegionBegin == InsertPos)
484 RegionBegin = MI;
485}
486
Andrew Trick0b0d8992012-03-21 04:12:07 +0000487bool ScheduleDAGMI::checkSchedLimit() {
488#ifndef NDEBUG
489 if (NumInstrsScheduled == MISchedCutoff && MISchedCutoff != ~0U) {
490 CurrentTop = CurrentBottom;
491 return false;
492 }
493 ++NumInstrsScheduled;
494#endif
495 return true;
496}
497
Andrew Trick006e1ab2012-04-24 17:56:43 +0000498/// enterRegion - Called back from MachineScheduler::runOnMachineFunction after
499/// crossing a scheduling boundary. [begin, end) includes all instructions in
500/// the region, including the boundary itself and single-instruction regions
501/// that don't get scheduled.
502void ScheduleDAGMI::enterRegion(MachineBasicBlock *bb,
503 MachineBasicBlock::iterator begin,
504 MachineBasicBlock::iterator end,
505 unsigned endcount)
506{
507 ScheduleDAGInstrs::enterRegion(bb, begin, end, endcount);
Andrew Trick7f8ab782012-05-10 21:06:10 +0000508
509 // For convenience remember the end of the liveness region.
510 LiveRegionEnd =
511 (RegionEnd == bb->end()) ? RegionEnd : llvm::next(RegionEnd);
512}
513
514// Setup the register pressure trackers for the top scheduled top and bottom
515// scheduled regions.
516void ScheduleDAGMI::initRegPressure() {
517 TopRPTracker.init(&MF, RegClassInfo, LIS, BB, RegionBegin);
518 BotRPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd);
519
520 // Close the RPTracker to finalize live ins.
521 RPTracker.closeRegion();
522
523 // Initialize the live ins and live outs.
524 TopRPTracker.addLiveRegs(RPTracker.getPressure().LiveInRegs);
525 BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs);
526
527 // Close one end of the tracker so we can call
528 // getMaxUpward/DownwardPressureDelta before advancing across any
529 // instructions. This converts currently live regs into live ins/outs.
530 TopRPTracker.closeTop();
531 BotRPTracker.closeBottom();
532
533 // Account for liveness generated by the region boundary.
534 if (LiveRegionEnd != RegionEnd)
535 BotRPTracker.recede();
536
537 assert(BotRPTracker.getPos() == RegionEnd && "Can't find the region bottom");
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000538
539 // Cache the list of excess pressure sets in this region. This will also track
540 // the max pressure in the scheduled code for these sets.
541 RegionCriticalPSets.clear();
542 std::vector<unsigned> RegionPressure = RPTracker.getPressure().MaxSetPressure;
543 for (unsigned i = 0, e = RegionPressure.size(); i < e; ++i) {
544 unsigned Limit = TRI->getRegPressureSetLimit(i);
545 if (RegionPressure[i] > Limit)
546 RegionCriticalPSets.push_back(PressureElement(i, 0));
547 }
548 DEBUG(dbgs() << "Excess PSets: ";
549 for (unsigned i = 0, e = RegionCriticalPSets.size(); i != e; ++i)
550 dbgs() << TRI->getRegPressureSetName(
551 RegionCriticalPSets[i].PSetID) << " ";
552 dbgs() << "\n");
553}
554
555// FIXME: When the pressure tracker deals in pressure differences then we won't
556// iterate over all RegionCriticalPSets[i].
557void ScheduleDAGMI::
558updateScheduledPressure(std::vector<unsigned> NewMaxPressure) {
559 for (unsigned i = 0, e = RegionCriticalPSets.size(); i < e; ++i) {
560 unsigned ID = RegionCriticalPSets[i].PSetID;
561 int &MaxUnits = RegionCriticalPSets[i].UnitIncrease;
562 if ((int)NewMaxPressure[ID] > MaxUnits)
563 MaxUnits = NewMaxPressure[ID];
564 }
Andrew Trick006e1ab2012-04-24 17:56:43 +0000565}
566
Andrew Trick2aa689d2012-05-24 22:11:05 +0000567// Release all DAG roots for scheduling.
568void ScheduleDAGMI::releaseRoots() {
569 SmallVector<SUnit*, 16> BotRoots;
570
571 for (std::vector<SUnit>::iterator
572 I = SUnits.begin(), E = SUnits.end(); I != E; ++I) {
573 // A SUnit is ready to top schedule if it has no predecessors.
574 if (I->Preds.empty())
575 SchedImpl->releaseTopNode(&(*I));
576 // A SUnit is ready to bottom schedule if it has no successors.
577 if (I->Succs.empty())
578 BotRoots.push_back(&(*I));
579 }
580 // Release bottom roots in reverse order so the higher priority nodes appear
581 // first. This is more natural and slightly more efficient.
582 for (SmallVectorImpl<SUnit*>::const_reverse_iterator
583 I = BotRoots.rbegin(), E = BotRoots.rend(); I != E; ++I)
584 SchedImpl->releaseBottomNode(*I);
585}
586
Andrew Trick17d35e52012-03-14 04:00:41 +0000587/// schedule - Called back from MachineScheduler::runOnMachineFunction
Andrew Trick006e1ab2012-04-24 17:56:43 +0000588/// after setting up the current scheduling region. [RegionBegin, RegionEnd)
589/// only includes instructions that have DAG nodes, not scheduling boundaries.
Andrew Trick17d35e52012-03-14 04:00:41 +0000590void ScheduleDAGMI::schedule() {
Andrew Trick7f8ab782012-05-10 21:06:10 +0000591 // Initialize the register pressure tracker used by buildSchedGraph.
592 RPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd);
Andrew Trick006e1ab2012-04-24 17:56:43 +0000593
Andrew Trick7f8ab782012-05-10 21:06:10 +0000594 // Account for liveness generate by the region boundary.
595 if (LiveRegionEnd != RegionEnd)
596 RPTracker.recede();
597
598 // Build the DAG, and compute current register pressure.
Andrew Trick006e1ab2012-04-24 17:56:43 +0000599 buildSchedGraph(AA, &RPTracker);
Andrew Trickc174eaf2012-03-08 01:41:12 +0000600
Andrew Trick7f8ab782012-05-10 21:06:10 +0000601 // Initialize top/bottom trackers after computing region pressure.
602 initRegPressure();
603
Andrew Trickc174eaf2012-03-08 01:41:12 +0000604 DEBUG(dbgs() << "********** MI Scheduling **********\n");
605 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
606 SUnits[su].dumpAll(this));
607
608 if (ViewMISchedDAGs) viewGraph();
609
Andrew Trick17d35e52012-03-14 04:00:41 +0000610 SchedImpl->initialize(this);
611
612 // Release edges from the special Entry node or to the special Exit node.
Andrew Trickc174eaf2012-03-08 01:41:12 +0000613 releaseSuccessors(&EntrySU);
Andrew Trick17d35e52012-03-14 04:00:41 +0000614 releasePredecessors(&ExitSU);
Andrew Trickc174eaf2012-03-08 01:41:12 +0000615
616 // Release all DAG roots for scheduling.
Andrew Trick2aa689d2012-05-24 22:11:05 +0000617 releaseRoots();
Andrew Trickc174eaf2012-03-08 01:41:12 +0000618
Andrew Trickeb45ebb2012-04-24 18:04:34 +0000619 CurrentTop = nextIfDebug(RegionBegin, RegionEnd);
Andrew Trick17d35e52012-03-14 04:00:41 +0000620 CurrentBottom = RegionEnd;
621 bool IsTopNode = false;
622 while (SUnit *SU = SchedImpl->pickNode(IsTopNode)) {
623 DEBUG(dbgs() << "*** " << (IsTopNode ? "Top" : "Bottom")
Andrew Trick0a39d4e2012-05-24 22:11:09 +0000624 << " Scheduling Instruction");
Andrew Trick0b0d8992012-03-21 04:12:07 +0000625 if (!checkSchedLimit())
626 break;
Andrew Trickc174eaf2012-03-08 01:41:12 +0000627
628 // Move the instruction to its new location in the instruction stream.
629 MachineInstr *MI = SU->getInstr();
Andrew Trickc174eaf2012-03-08 01:41:12 +0000630
Andrew Trick17d35e52012-03-14 04:00:41 +0000631 if (IsTopNode) {
632 assert(SU->isTopReady() && "node still has unscheduled dependencies");
633 if (&*CurrentTop == MI)
Andrew Trickeb45ebb2012-04-24 18:04:34 +0000634 CurrentTop = nextIfDebug(++CurrentTop, CurrentBottom);
Andrew Trick811d92682012-05-17 18:35:03 +0000635 else {
Andrew Trick17d35e52012-03-14 04:00:41 +0000636 moveInstruction(MI, CurrentTop);
Andrew Trick811d92682012-05-17 18:35:03 +0000637 TopRPTracker.setPos(MI);
638 }
Andrew Trick7f8ab782012-05-10 21:06:10 +0000639
640 // Update top scheduled pressure.
641 TopRPTracker.advance();
642 assert(TopRPTracker.getPos() == CurrentTop && "out of sync");
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000643 updateScheduledPressure(TopRPTracker.getPressure().MaxSetPressure);
Andrew Trick7f8ab782012-05-10 21:06:10 +0000644
Andrew Trick17d35e52012-03-14 04:00:41 +0000645 // Release dependent instructions for scheduling.
646 releaseSuccessors(SU);
647 }
648 else {
649 assert(SU->isBottomReady() && "node still has unscheduled dependencies");
Andrew Trickeb45ebb2012-04-24 18:04:34 +0000650 MachineBasicBlock::iterator priorII =
651 priorNonDebug(CurrentBottom, CurrentTop);
652 if (&*priorII == MI)
653 CurrentBottom = priorII;
Andrew Trick17d35e52012-03-14 04:00:41 +0000654 else {
Andrew Trick811d92682012-05-17 18:35:03 +0000655 if (&*CurrentTop == MI) {
656 CurrentTop = nextIfDebug(++CurrentTop, priorII);
657 TopRPTracker.setPos(CurrentTop);
658 }
Andrew Trick17d35e52012-03-14 04:00:41 +0000659 moveInstruction(MI, CurrentBottom);
660 CurrentBottom = MI;
661 }
Andrew Trick7f8ab782012-05-10 21:06:10 +0000662 // Update bottom scheduled pressure.
663 BotRPTracker.recede();
664 assert(BotRPTracker.getPos() == CurrentBottom && "out of sync");
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000665 updateScheduledPressure(BotRPTracker.getPressure().MaxSetPressure);
Andrew Trick7f8ab782012-05-10 21:06:10 +0000666
Andrew Trick17d35e52012-03-14 04:00:41 +0000667 // Release dependent instructions for scheduling.
668 releasePredecessors(SU);
669 }
670 SU->isScheduled = true;
Andrew Trick0a39d4e2012-05-24 22:11:09 +0000671 SchedImpl->schedNode(SU, IsTopNode);
672 DEBUG(SU->dump(this));
Andrew Trickc174eaf2012-03-08 01:41:12 +0000673 }
Andrew Trick17d35e52012-03-14 04:00:41 +0000674 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone.");
Andrew Trick000b2502012-04-24 18:04:37 +0000675
676 placeDebugValues();
677}
678
679/// Reinsert any remaining debug_values, just like the PostRA scheduler.
680void ScheduleDAGMI::placeDebugValues() {
681 // If first instruction was a DBG_VALUE then put it back.
682 if (FirstDbgValue) {
683 BB->splice(RegionBegin, BB, FirstDbgValue);
684 RegionBegin = FirstDbgValue;
685 }
686
687 for (std::vector<std::pair<MachineInstr *, MachineInstr *> >::iterator
688 DI = DbgValues.end(), DE = DbgValues.begin(); DI != DE; --DI) {
689 std::pair<MachineInstr *, MachineInstr *> P = *prior(DI);
690 MachineInstr *DbgValue = P.first;
691 MachineBasicBlock::iterator OrigPrevMI = P.second;
692 BB->splice(++OrigPrevMI, BB, DbgValue);
693 if (OrigPrevMI == llvm::prior(RegionEnd))
694 RegionEnd = DbgValue;
695 }
696 DbgValues.clear();
697 FirstDbgValue = NULL;
Andrew Trickc174eaf2012-03-08 01:41:12 +0000698}
699
700//===----------------------------------------------------------------------===//
Andrew Trick17d35e52012-03-14 04:00:41 +0000701// ConvergingScheduler - Implementation of the standard MachineSchedStrategy.
Andrew Trick42b7a712012-01-17 06:55:03 +0000702//===----------------------------------------------------------------------===//
703
704namespace {
Andrew Trick7196a8f2012-05-10 21:06:16 +0000705/// Wrapper around a vector of SUnits with some basic convenience methods.
Andrew Trick8c2d9212012-05-24 22:11:03 +0000706struct ReadyQueue {
Andrew Trickd38f87e2012-05-10 21:06:12 +0000707 typedef std::vector<SUnit*>::iterator iterator;
708
709 unsigned ID;
710 std::vector<SUnit*> Queue;
711
Andrew Trick8c2d9212012-05-24 22:11:03 +0000712 ReadyQueue(unsigned id): ID(id) {}
Andrew Trickd38f87e2012-05-10 21:06:12 +0000713
714 bool isInQueue(SUnit *SU) const {
715 return SU->NodeQueueId & ID;
716 }
717
718 bool empty() const { return Queue.empty(); }
719
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000720 unsigned size() const { return Queue.size(); }
721
Andrew Trick16716c72012-05-10 21:06:14 +0000722 iterator begin() { return Queue.begin(); }
723
724 iterator end() { return Queue.end(); }
725
Andrew Trickd38f87e2012-05-10 21:06:12 +0000726 iterator find(SUnit *SU) {
727 return std::find(Queue.begin(), Queue.end(), SU);
728 }
729
730 void push(SUnit *SU) {
731 Queue.push_back(SU);
Andrew Trick7196a8f2012-05-10 21:06:16 +0000732 SU->NodeQueueId |= ID;
Andrew Trickd38f87e2012-05-10 21:06:12 +0000733 }
734
735 void remove(iterator I) {
Andrew Trick7196a8f2012-05-10 21:06:16 +0000736 (*I)->NodeQueueId &= ~ID;
Andrew Trickd38f87e2012-05-10 21:06:12 +0000737 *I = Queue.back();
738 Queue.pop_back();
739 }
Andrew Trick81f1be32012-05-17 18:35:13 +0000740
741 void dump(const char* Name) {
742 dbgs() << Name << ": ";
743 for (unsigned i = 0, e = Queue.size(); i < e; ++i)
744 dbgs() << Queue[i]->NodeNum << " ";
745 dbgs() << "\n";
746 }
Andrew Trickd38f87e2012-05-10 21:06:12 +0000747};
748
Andrew Trick17d35e52012-03-14 04:00:41 +0000749/// ConvergingScheduler shrinks the unscheduled zone using heuristics to balance
750/// the schedule.
751class ConvergingScheduler : public MachineSchedStrategy {
Andrew Trick7196a8f2012-05-10 21:06:16 +0000752
753 /// Store the state used by ConvergingScheduler heuristics, required for the
754 /// lifetime of one invocation of pickNode().
755 struct SchedCandidate {
756 // The best SUnit candidate.
757 SUnit *SU;
758
759 // Register pressure values for the best candidate.
760 RegPressureDelta RPDelta;
761
762 SchedCandidate(): SU(NULL) {}
763 };
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000764 /// Represent the type of SchedCandidate found within a single queue.
765 enum CandResult {
766 NoCand, NodeOrder, SingleExcess, SingleCritical, SingleMax, MultiPressure };
Andrew Trick7196a8f2012-05-10 21:06:16 +0000767
Andrew Trick0a39d4e2012-05-24 22:11:09 +0000768 struct SchedBoundary {
769 ReadyQueue Available;
770 ReadyQueue Pending;
771 bool CheckPending;
772
773 ScheduleHazardRecognizer *HazardRec;
774
775 unsigned CurrCycle;
776 unsigned IssueCount;
777
778 /// MinReadyCycle - Cycle of the soonest available instruction.
779 unsigned MinReadyCycle;
780
781 /// Pending queues extend the ready queues with the same ID.
782 SchedBoundary(unsigned ID):
783 Available(ID), Pending(ID), CheckPending(false), HazardRec(0),
784 CurrCycle(0), IssueCount(0), MinReadyCycle(UINT_MAX) {}
785
786 ~SchedBoundary() { delete HazardRec; }
787
788 bool isTop() const { return Available.ID == ConvergingScheduler::TopQID; }
789
790 void releaseNode(SUnit *SU, unsigned ReadyCycle);
791
792 void bumpCycle();
793
794 void releasePending();
795
796 void removeReady(SUnit *SU);
797
798 SUnit *pickOnlyChoice();
799 };
800
Andrew Trick17d35e52012-03-14 04:00:41 +0000801 ScheduleDAGMI *DAG;
Andrew Trick7196a8f2012-05-10 21:06:16 +0000802 const TargetRegisterInfo *TRI;
Andrew Trick42b7a712012-01-17 06:55:03 +0000803
Andrew Trick0a39d4e2012-05-24 22:11:09 +0000804 // State of the top and bottom scheduled instruction boundaries.
805 SchedBoundary Top;
806 SchedBoundary Bot;
Andrew Trick17d35e52012-03-14 04:00:41 +0000807
808public:
Andrew Trick7196a8f2012-05-10 21:06:16 +0000809 /// SUnit::NodeQueueId = 0 (none), = 1 (top), = 2 (bottom), = 3 (both)
810 enum {
811 TopQID = 1,
812 BotQID = 2
813 };
814
Andrew Trick0a39d4e2012-05-24 22:11:09 +0000815 ConvergingScheduler(): DAG(0), TRI(0), Top(TopQID), Bot(BotQID) {}
Andrew Trick7196a8f2012-05-10 21:06:16 +0000816
817 static const char *getQName(unsigned ID) {
818 switch(ID) {
819 default: return "NoQ";
820 case TopQID: return "TopQ";
821 case BotQID: return "BotQ";
822 };
823 }
Andrew Trickd38f87e2012-05-10 21:06:12 +0000824
Andrew Trick0a39d4e2012-05-24 22:11:09 +0000825 virtual void initialize(ScheduleDAGMI *dag);
Andrew Trick17d35e52012-03-14 04:00:41 +0000826
Andrew Trick7196a8f2012-05-10 21:06:16 +0000827 virtual SUnit *pickNode(bool &IsTopNode);
Andrew Trick17d35e52012-03-14 04:00:41 +0000828
Andrew Trick0a39d4e2012-05-24 22:11:09 +0000829 virtual void schedNode(SUnit *SU, bool IsTopNode);
830
831 virtual void releaseTopNode(SUnit *SU);
832
833 virtual void releaseBottomNode(SUnit *SU);
834
Andrew Trick7196a8f2012-05-10 21:06:16 +0000835protected:
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000836 SUnit *pickNodeBidrectional(bool &IsTopNode);
837
Andrew Trick8c2d9212012-05-24 22:11:03 +0000838 CandResult pickNodeFromQueue(ReadyQueue &Q,
839 const RegPressureTracker &RPTracker,
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000840 SchedCandidate &Candidate);
Andrew Trick28ebc892012-05-10 21:06:19 +0000841#ifndef NDEBUG
842 void traceCandidate(const char *Label, unsigned QID, SUnit *SU,
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000843 PressureElement P = PressureElement());
Andrew Trick28ebc892012-05-10 21:06:19 +0000844#endif
Andrew Trick42b7a712012-01-17 06:55:03 +0000845};
846} // namespace
847
Andrew Trick0a39d4e2012-05-24 22:11:09 +0000848void ConvergingScheduler::initialize(ScheduleDAGMI *dag) {
849 DAG = dag;
850 TRI = DAG->TRI;
851
852 // Initialize the HazardRecognizers.
853 const TargetMachine &TM = DAG->MF.getTarget();
854 const InstrItineraryData *Itin = TM.getInstrItineraryData();
855 Top.HazardRec = TM.getInstrInfo()->CreateTargetMIHazardRecognizer(Itin, DAG);
856 Bot.HazardRec = TM.getInstrInfo()->CreateTargetMIHazardRecognizer(Itin, DAG);
857
858 assert((!ForceTopDown || !ForceBottomUp) &&
859 "-misched-topdown incompatible with -misched-bottomup");
860}
861
862void ConvergingScheduler::releaseTopNode(SUnit *SU) {
863 Top.releaseNode(SU, SU->getDepth());
864}
865
866void ConvergingScheduler::releaseBottomNode(SUnit *SU) {
867 Bot.releaseNode(SU, SU->getHeight());
868}
869
870void ConvergingScheduler::SchedBoundary::releaseNode(SUnit *SU,
871 unsigned ReadyCycle) {
872 if (SU->isScheduled)
873 return;
874
875 if (ReadyCycle < MinReadyCycle)
876 MinReadyCycle = ReadyCycle;
877
878 // Check for interlocks first. For the purpose of other heuristics, an
879 // instruction that cannot issue appears as if it's not in the ReadyQueue.
880 if (HazardRec->isEnabled()
881 && HazardRec->getHazardType(SU) != ScheduleHazardRecognizer::NoHazard)
882 Pending.push(SU);
883 else
884 Available.push(SU);
885}
886
887/// Move the boundary of scheduled code by one cycle.
888void ConvergingScheduler::SchedBoundary::bumpCycle() {
889 IssueCount = 0;
890
891 assert(MinReadyCycle < UINT_MAX && "MinReadyCycle uninitialized");
892 unsigned NextCycle = std::max(CurrCycle + 1, MinReadyCycle);
893
894 if (!HazardRec->isEnabled()) {
895 // Bypass lots of virtual calls in case of long latency.
896 CurrCycle = NextCycle;
897 }
898 else {
899 for (; CurrCycle != NextCycle; ++CurrCycle) {
900 if (isTop())
901 HazardRec->AdvanceCycle();
902 else
903 HazardRec->RecedeCycle();
904 }
905 }
906 CheckPending = true;
907
908 DEBUG(dbgs() << "*** " << getQName(Available.ID) << " cycle "
909 << CurrCycle << '\n');
910}
911
912/// Release pending ready nodes in to the available queue. This makes them
913/// visible to heuristics.
914void ConvergingScheduler::SchedBoundary::releasePending() {
915 // If the available queue is empty, it is safe to reset MinReadyCycle.
916 if (Available.empty())
917 MinReadyCycle = UINT_MAX;
918
919 // Check to see if any of the pending instructions are ready to issue. If
920 // so, add them to the available queue.
921 for (unsigned i = 0, e = Pending.size(); i != e; ++i) {
922 SUnit *SU = *(Pending.begin()+i);
923 unsigned ReadyCycle = isTop() ? SU->getHeight() : SU->getDepth();
924
925 if (ReadyCycle < MinReadyCycle)
926 MinReadyCycle = ReadyCycle;
927
928 if (ReadyCycle > CurrCycle)
929 continue;
930
931 if (HazardRec->isEnabled()
932 && HazardRec->getHazardType(SU) != ScheduleHazardRecognizer::NoHazard)
933 continue;
934
935 Available.push(SU);
936 Pending.remove(Pending.begin()+i);
937 --i; --e;
938 }
939 CheckPending = false;
940}
941
942/// Remove SU from the ready set for this boundary.
943void ConvergingScheduler::SchedBoundary::removeReady(SUnit *SU) {
944 if (Available.isInQueue(SU))
945 Available.remove(Available.find(SU));
946 else {
947 assert(Pending.isInQueue(SU) && "bad ready count");
948 Pending.remove(Pending.find(SU));
949 }
950}
951
952/// If this queue only has one ready candidate, return it. As a side effect,
953/// advance the cycle until at least one node is ready. If multiple instructions
954/// are ready, return NULL.
955SUnit *ConvergingScheduler::SchedBoundary::pickOnlyChoice() {
956 if (CheckPending)
957 releasePending();
958
959 for (unsigned i = 0; Available.empty(); ++i) {
960 assert(i <= HazardRec->getMaxLookAhead() && "permanent hazard"); (void)i;
961 bumpCycle();
962 releasePending();
963 }
964 if (Available.size() == 1)
965 return *Available.begin();
966 return NULL;
967}
968
Andrew Trick28ebc892012-05-10 21:06:19 +0000969#ifndef NDEBUG
Andrew Trick0a39d4e2012-05-24 22:11:09 +0000970void ConvergingScheduler::traceCandidate(const char *Label, unsigned QID,
971 SUnit *SU, PressureElement P) {
972 dbgs() << Label << " " << getQName(QID) << " ";
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000973 if (P.isValid())
974 dbgs() << TRI->getRegPressureSetName(P.PSetID) << ":" << P.UnitIncrease
975 << " ";
Andrew Trick28ebc892012-05-10 21:06:19 +0000976 else
977 dbgs() << " ";
978 SU->dump(DAG);
979}
980#endif
981
Andrew Trick5429a6b2012-05-17 22:37:09 +0000982/// pickNodeFromQueue helper that returns true if the LHS reg pressure effect is
983/// more desirable than RHS from scheduling standpoint.
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000984static bool compareRPDelta(const RegPressureDelta &LHS,
985 const RegPressureDelta &RHS) {
986 // Compare each component of pressure in decreasing order of importance
987 // without checking if any are valid. Invalid PressureElements are assumed to
988 // have UnitIncrease==0, so are neutral.
Andrew Trickc8fe4ec2012-05-24 22:11:01 +0000989
990 // Avoid increasing the max critical pressure in the scheduled region.
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000991 if (LHS.Excess.UnitIncrease != RHS.Excess.UnitIncrease)
992 return LHS.Excess.UnitIncrease < RHS.Excess.UnitIncrease;
993
Andrew Trickc8fe4ec2012-05-24 22:11:01 +0000994 // Avoid increasing the max critical pressure in the scheduled region.
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000995 if (LHS.CriticalMax.UnitIncrease != RHS.CriticalMax.UnitIncrease)
996 return LHS.CriticalMax.UnitIncrease < RHS.CriticalMax.UnitIncrease;
997
Andrew Trickc8fe4ec2012-05-24 22:11:01 +0000998 // Avoid increasing the max pressure of the entire region.
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000999 if (LHS.CurrentMax.UnitIncrease != RHS.CurrentMax.UnitIncrease)
1000 return LHS.CurrentMax.UnitIncrease < RHS.CurrentMax.UnitIncrease;
1001
1002 return false;
1003}
1004
Andrew Trick7196a8f2012-05-10 21:06:16 +00001005/// Pick the best candidate from the top queue.
1006///
1007/// TODO: getMaxPressureDelta results can be mostly cached for each SUnit during
1008/// DAG building. To adjust for the current scheduling location we need to
1009/// maintain the number of vreg uses remaining to be top-scheduled.
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001010ConvergingScheduler::CandResult ConvergingScheduler::
Andrew Trick8c2d9212012-05-24 22:11:03 +00001011pickNodeFromQueue(ReadyQueue &Q, const RegPressureTracker &RPTracker,
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001012 SchedCandidate &Candidate) {
Andrew Trick81f1be32012-05-17 18:35:13 +00001013 DEBUG(Q.dump(getQName(Q.ID)));
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001014
Andrew Trick7196a8f2012-05-10 21:06:16 +00001015 // getMaxPressureDelta temporarily modifies the tracker.
1016 RegPressureTracker &TempTracker = const_cast<RegPressureTracker&>(RPTracker);
1017
1018 // BestSU remains NULL if no top candidates beat the best existing candidate.
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001019 CandResult FoundCandidate = NoCand;
Andrew Trick8c2d9212012-05-24 22:11:03 +00001020 for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) {
Andrew Trick7196a8f2012-05-10 21:06:16 +00001021 RegPressureDelta RPDelta;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001022 TempTracker.getMaxPressureDelta((*I)->getInstr(), RPDelta,
1023 DAG->getRegionCriticalPSets(),
1024 DAG->getRegPressure().MaxSetPressure);
Andrew Trick7196a8f2012-05-10 21:06:16 +00001025
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001026 // Initialize the candidate if needed.
1027 if (!Candidate.SU) {
1028 Candidate.SU = *I;
1029 Candidate.RPDelta = RPDelta;
1030 FoundCandidate = NodeOrder;
1031 continue;
1032 }
Andrew Trick7196a8f2012-05-10 21:06:16 +00001033 // Avoid exceeding the target's limit.
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001034 if (RPDelta.Excess.UnitIncrease < Candidate.RPDelta.Excess.UnitIncrease) {
1035 DEBUG(traceCandidate("ECAND", Q.ID, *I, RPDelta.Excess));
Andrew Trick7196a8f2012-05-10 21:06:16 +00001036 Candidate.SU = *I;
1037 Candidate.RPDelta = RPDelta;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001038 FoundCandidate = SingleExcess;
Andrew Trick7196a8f2012-05-10 21:06:16 +00001039 continue;
1040 }
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001041 if (RPDelta.Excess.UnitIncrease > Candidate.RPDelta.Excess.UnitIncrease)
Andrew Trick7196a8f2012-05-10 21:06:16 +00001042 continue;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001043 if (FoundCandidate == SingleExcess)
1044 FoundCandidate = MultiPressure;
Andrew Trick7196a8f2012-05-10 21:06:16 +00001045
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001046 // Avoid increasing the max critical pressure in the scheduled region.
1047 if (RPDelta.CriticalMax.UnitIncrease
1048 < Candidate.RPDelta.CriticalMax.UnitIncrease) {
1049 DEBUG(traceCandidate("PCAND", Q.ID, *I, RPDelta.CriticalMax));
Andrew Trick7196a8f2012-05-10 21:06:16 +00001050 Candidate.SU = *I;
1051 Candidate.RPDelta = RPDelta;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001052 FoundCandidate = SingleCritical;
Andrew Trick7196a8f2012-05-10 21:06:16 +00001053 continue;
1054 }
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001055 if (RPDelta.CriticalMax.UnitIncrease
1056 > Candidate.RPDelta.CriticalMax.UnitIncrease)
Andrew Trick7196a8f2012-05-10 21:06:16 +00001057 continue;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001058 if (FoundCandidate == SingleCritical)
1059 FoundCandidate = MultiPressure;
1060
1061 // Avoid increasing the max pressure of the entire region.
1062 if (RPDelta.CurrentMax.UnitIncrease
1063 < Candidate.RPDelta.CurrentMax.UnitIncrease) {
1064 DEBUG(traceCandidate("MCAND", Q.ID, *I, RPDelta.CurrentMax));
1065 Candidate.SU = *I;
1066 Candidate.RPDelta = RPDelta;
1067 FoundCandidate = SingleMax;
1068 continue;
1069 }
1070 if (RPDelta.CurrentMax.UnitIncrease
1071 > Candidate.RPDelta.CurrentMax.UnitIncrease)
1072 continue;
1073 if (FoundCandidate == SingleMax)
1074 FoundCandidate = MultiPressure;
Andrew Trick7196a8f2012-05-10 21:06:16 +00001075
1076 // Fall through to original instruction order.
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001077 // Only consider node order if Candidate was chosen from this Q.
1078 if (FoundCandidate == NoCand)
Andrew Trick7196a8f2012-05-10 21:06:16 +00001079 continue;
1080
1081 if ((Q.ID == TopQID && (*I)->NodeNum < Candidate.SU->NodeNum)
1082 || (Q.ID == BotQID && (*I)->NodeNum > Candidate.SU->NodeNum)) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001083 DEBUG(traceCandidate("NCAND", Q.ID, *I));
Andrew Trick7196a8f2012-05-10 21:06:16 +00001084 Candidate.SU = *I;
1085 Candidate.RPDelta = RPDelta;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001086 FoundCandidate = NodeOrder;
Andrew Trick7196a8f2012-05-10 21:06:16 +00001087 }
1088 }
1089 return FoundCandidate;
1090}
1091
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001092/// Pick the best candidate node from either the top or bottom queue.
1093SUnit *ConvergingScheduler::pickNodeBidrectional(bool &IsTopNode) {
1094 // Schedule as far as possible in the direction of no choice. This is most
1095 // efficient, but also provides the best heuristics for CriticalPSets.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001096 if (SUnit *SU = Bot.pickOnlyChoice()) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001097 IsTopNode = false;
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001098 return SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001099 }
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001100 if (SUnit *SU = Top.pickOnlyChoice()) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001101 IsTopNode = true;
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001102 return SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001103 }
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001104 SchedCandidate BotCand;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001105 // Prefer bottom scheduling when heuristics are silent.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001106 CandResult BotResult = pickNodeFromQueue(Bot.Available,
1107 DAG->getBotRPTracker(), BotCand);
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001108 assert(BotResult != NoCand && "failed to find the first candidate");
1109
1110 // If either Q has a single candidate that provides the least increase in
1111 // Excess pressure, we can immediately schedule from that Q.
1112 //
1113 // RegionCriticalPSets summarizes the pressure within the scheduled region and
1114 // affects picking from either Q. If scheduling in one direction must
1115 // increase pressure for one of the excess PSets, then schedule in that
1116 // direction first to provide more freedom in the other direction.
1117 if (BotResult == SingleExcess || BotResult == SingleCritical) {
1118 IsTopNode = false;
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001119 return BotCand.SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001120 }
1121 // Check if the top Q has a better candidate.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001122 SchedCandidate TopCand;
1123 CandResult TopResult = pickNodeFromQueue(Top.Available,
1124 DAG->getTopRPTracker(), TopCand);
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001125 assert(TopResult != NoCand && "failed to find the first candidate");
1126
1127 if (TopResult == SingleExcess || TopResult == SingleCritical) {
1128 IsTopNode = true;
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001129 return TopCand.SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001130 }
1131 // If either Q has a single candidate that minimizes pressure above the
1132 // original region's pressure pick it.
1133 if (BotResult == SingleMax) {
1134 IsTopNode = false;
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001135 return BotCand.SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001136 }
1137 if (TopResult == SingleMax) {
1138 IsTopNode = true;
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001139 return TopCand.SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001140 }
1141 // Check for a salient pressure difference and pick the best from either side.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001142 if (compareRPDelta(TopCand.RPDelta, BotCand.RPDelta)) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001143 IsTopNode = true;
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001144 return TopCand.SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001145 }
1146 // Otherwise prefer the bottom candidate in node order.
1147 IsTopNode = false;
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001148 return BotCand.SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001149}
1150
1151/// Pick the best node to balance the schedule. Implements MachineSchedStrategy.
Andrew Trick7196a8f2012-05-10 21:06:16 +00001152SUnit *ConvergingScheduler::pickNode(bool &IsTopNode) {
1153 if (DAG->top() == DAG->bottom()) {
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001154 assert(Top.Available.empty() && Top.Pending.empty() &&
1155 Bot.Available.empty() && Bot.Pending.empty() && "ReadyQ garbage");
Andrew Trick7196a8f2012-05-10 21:06:16 +00001156 return NULL;
1157 }
Andrew Trick7196a8f2012-05-10 21:06:16 +00001158 SUnit *SU;
1159 if (ForceTopDown) {
1160 SU = DAG->getSUnit(DAG->top());
1161 IsTopNode = true;
1162 }
1163 else if (ForceBottomUp) {
1164 SU = DAG->getSUnit(priorNonDebug(DAG->bottom(), DAG->top()));
1165 IsTopNode = false;
1166 }
1167 else {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001168 SU = pickNodeBidrectional(IsTopNode);
Andrew Trick7196a8f2012-05-10 21:06:16 +00001169 }
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001170 if (SU->isTopReady())
1171 Top.removeReady(SU);
1172 if (SU->isBottomReady())
1173 Bot.removeReady(SU);
Andrew Trick7196a8f2012-05-10 21:06:16 +00001174 return SU;
1175}
1176
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001177/// Update the scheduler's state after scheduling a node. This is the same node
1178/// that was just returned by pickNode(). However, ScheduleDAGMI needs to update
1179/// it's state based on the current cycle before MachineSchedStrategy.
1180void ConvergingScheduler::schedNode(SUnit *SU, bool IsTopNode) {
1181 DEBUG(dbgs() << " in cycle " << (IsTopNode ? Top.CurrCycle : Bot.CurrCycle)
1182 << '\n');
1183
1184 // Update the reservation table.
1185 if (IsTopNode && Top.HazardRec->isEnabled()) {
1186 Top.HazardRec->EmitInstruction(SU);
1187 if (Top.HazardRec->atIssueLimit()) {
1188 DEBUG(dbgs() << "*** Max instrs at cycle " << Top.CurrCycle << '\n');
1189 Top.bumpCycle();
1190 }
1191 }
1192 else if (Bot.HazardRec->isEnabled()) {
1193 if (SU->isCall) {
1194 // Calls are scheduled with their preceding instructions. For bottom-up
1195 // scheduling, clear the pipeline state before emitting.
1196 Bot.HazardRec->Reset();
1197 }
1198 Bot.HazardRec->EmitInstruction(SU);
1199 if (Bot.HazardRec->atIssueLimit()) {
1200 DEBUG(dbgs() << "*** Max instrs at cycle " << Bot.CurrCycle << '\n');
1201 Bot.bumpCycle();
1202 }
1203 }
1204}
1205
Andrew Trick17d35e52012-03-14 04:00:41 +00001206/// Create the standard converging machine scheduler. This will be used as the
1207/// default scheduler if the target does not set a default.
1208static ScheduleDAGInstrs *createConvergingSched(MachineSchedContext *C) {
Benjamin Kramer689e0b42012-03-14 11:26:37 +00001209 assert((!ForceTopDown || !ForceBottomUp) &&
Andrew Trick17d35e52012-03-14 04:00:41 +00001210 "-misched-topdown incompatible with -misched-bottomup");
1211 return new ScheduleDAGMI(C, new ConvergingScheduler());
Andrew Trick42b7a712012-01-17 06:55:03 +00001212}
1213static MachineSchedRegistry
Andrew Trick17d35e52012-03-14 04:00:41 +00001214ConvergingSchedRegistry("converge", "Standard converging scheduler.",
1215 createConvergingSched);
Andrew Trick42b7a712012-01-17 06:55:03 +00001216
1217//===----------------------------------------------------------------------===//
Andrew Trick5edf2f02012-01-14 02:17:06 +00001218// Machine Instruction Shuffler for Correctness Testing
1219//===----------------------------------------------------------------------===//
1220
Andrew Trick96f678f2012-01-13 06:30:30 +00001221#ifndef NDEBUG
1222namespace {
Andrew Trick17d35e52012-03-14 04:00:41 +00001223/// Apply a less-than relation on the node order, which corresponds to the
1224/// instruction order prior to scheduling. IsReverse implements greater-than.
1225template<bool IsReverse>
1226struct SUnitOrder {
Andrew Trickc6cf11b2012-01-17 06:55:07 +00001227 bool operator()(SUnit *A, SUnit *B) const {
Andrew Trick17d35e52012-03-14 04:00:41 +00001228 if (IsReverse)
1229 return A->NodeNum > B->NodeNum;
1230 else
1231 return A->NodeNum < B->NodeNum;
Andrew Trickc6cf11b2012-01-17 06:55:07 +00001232 }
1233};
1234
Andrew Trick96f678f2012-01-13 06:30:30 +00001235/// Reorder instructions as much as possible.
Andrew Trick17d35e52012-03-14 04:00:41 +00001236class InstructionShuffler : public MachineSchedStrategy {
1237 bool IsAlternating;
1238 bool IsTopDown;
1239
1240 // Using a less-than relation (SUnitOrder<false>) for the TopQ priority
1241 // gives nodes with a higher number higher priority causing the latest
1242 // instructions to be scheduled first.
1243 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<false> >
1244 TopQ;
1245 // When scheduling bottom-up, use greater-than as the queue priority.
1246 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<true> >
1247 BottomQ;
Andrew Trick96f678f2012-01-13 06:30:30 +00001248public:
Andrew Trick17d35e52012-03-14 04:00:41 +00001249 InstructionShuffler(bool alternate, bool topdown)
1250 : IsAlternating(alternate), IsTopDown(topdown) {}
Andrew Trick96f678f2012-01-13 06:30:30 +00001251
Andrew Trick17d35e52012-03-14 04:00:41 +00001252 virtual void initialize(ScheduleDAGMI *) {
1253 TopQ.clear();
1254 BottomQ.clear();
1255 }
Andrew Trickc6cf11b2012-01-17 06:55:07 +00001256
Andrew Trick17d35e52012-03-14 04:00:41 +00001257 /// Implement MachineSchedStrategy interface.
1258 /// -----------------------------------------
1259
1260 virtual SUnit *pickNode(bool &IsTopNode) {
1261 SUnit *SU;
1262 if (IsTopDown) {
1263 do {
1264 if (TopQ.empty()) return NULL;
1265 SU = TopQ.top();
1266 TopQ.pop();
1267 } while (SU->isScheduled);
1268 IsTopNode = true;
1269 }
1270 else {
1271 do {
1272 if (BottomQ.empty()) return NULL;
1273 SU = BottomQ.top();
1274 BottomQ.pop();
1275 } while (SU->isScheduled);
1276 IsTopNode = false;
1277 }
1278 if (IsAlternating)
1279 IsTopDown = !IsTopDown;
Andrew Trickc6cf11b2012-01-17 06:55:07 +00001280 return SU;
1281 }
1282
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001283 virtual void schedNode(SUnit *SU, bool IsTopNode) {}
1284
Andrew Trick17d35e52012-03-14 04:00:41 +00001285 virtual void releaseTopNode(SUnit *SU) {
1286 TopQ.push(SU);
1287 }
1288 virtual void releaseBottomNode(SUnit *SU) {
1289 BottomQ.push(SU);
Andrew Trick96f678f2012-01-13 06:30:30 +00001290 }
1291};
1292} // namespace
1293
Andrew Trickc174eaf2012-03-08 01:41:12 +00001294static ScheduleDAGInstrs *createInstructionShuffler(MachineSchedContext *C) {
Andrew Trick17d35e52012-03-14 04:00:41 +00001295 bool Alternate = !ForceTopDown && !ForceBottomUp;
1296 bool TopDown = !ForceBottomUp;
Benjamin Kramer689e0b42012-03-14 11:26:37 +00001297 assert((TopDown || !ForceTopDown) &&
Andrew Trick17d35e52012-03-14 04:00:41 +00001298 "-misched-topdown incompatible with -misched-bottomup");
1299 return new ScheduleDAGMI(C, new InstructionShuffler(Alternate, TopDown));
Andrew Trick96f678f2012-01-13 06:30:30 +00001300}
Andrew Trick17d35e52012-03-14 04:00:41 +00001301static MachineSchedRegistry ShufflerRegistry(
1302 "shuffle", "Shuffle machine instructions alternating directions",
1303 createInstructionShuffler);
Andrew Trick96f678f2012-01-13 06:30:30 +00001304#endif // !NDEBUG