blob: dc0c098a795ab6f885371fc52552a4e377fdfc3c [file] [log] [blame]
Andrew Trick96f678f2012-01-13 06:30:30 +00001//===- MachineScheduler.cpp - Machine Instruction Scheduler ---------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// 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 Trick96f678f2012-01-13 06:30:30 +000017#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Andrew Trickc174eaf2012-03-08 01:41:12 +000018#include "llvm/CodeGen/MachineScheduler.h"
Andrew Trick96f678f2012-01-13 06:30:30 +000019#include "llvm/CodeGen/Passes.h"
Andrew Tricked395c82012-03-07 23:01:06 +000020#include "llvm/CodeGen/ScheduleDAGInstrs.h"
Andrew Trick96f678f2012-01-13 06:30:30 +000021#include "llvm/Analysis/AliasAnalysis.h"
Andrew Tricke9ef4ed2012-01-14 02:17:09 +000022#include "llvm/Target/TargetInstrInfo.h"
Andrew Trick96f678f2012-01-13 06:30:30 +000023#include "llvm/Support/CommandLine.h"
24#include "llvm/Support/Debug.h"
25#include "llvm/Support/ErrorHandling.h"
26#include "llvm/Support/raw_ostream.h"
27#include "llvm/ADT/OwningPtr.h"
28
Andrew Trickc6cf11b2012-01-17 06:55:07 +000029#include <queue>
30
Andrew Trick96f678f2012-01-13 06:30:30 +000031using namespace llvm;
32
Andrew Trick0df7f882012-03-07 00:18:25 +000033#ifndef NDEBUG
34static cl::opt<bool> ViewMISchedDAGs("view-misched-dags", cl::Hidden,
35 cl::desc("Pop up a window to show MISched dags after they are processed"));
36#else
37static bool ViewMISchedDAGs = false;
38#endif // NDEBUG
39
Andrew Trick5edf2f02012-01-14 02:17:06 +000040//===----------------------------------------------------------------------===//
41// Machine Instruction Scheduling Pass and Registry
42//===----------------------------------------------------------------------===//
43
Andrew Trick96f678f2012-01-13 06:30:30 +000044namespace {
Andrew Trick42b7a712012-01-17 06:55:03 +000045/// MachineScheduler runs after coalescing and before register allocation.
Andrew Trickc174eaf2012-03-08 01:41:12 +000046class MachineScheduler : public MachineSchedContext,
47 public MachineFunctionPass {
Andrew Trick96f678f2012-01-13 06:30:30 +000048public:
Andrew Trick42b7a712012-01-17 06:55:03 +000049 MachineScheduler();
Andrew Trick96f678f2012-01-13 06:30:30 +000050
51 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
52
53 virtual void releaseMemory() {}
54
55 virtual bool runOnMachineFunction(MachineFunction&);
56
57 virtual void print(raw_ostream &O, const Module* = 0) const;
58
59 static char ID; // Class identification, replacement for typeinfo
60};
61} // namespace
62
Andrew Trick42b7a712012-01-17 06:55:03 +000063char MachineScheduler::ID = 0;
Andrew Trick96f678f2012-01-13 06:30:30 +000064
Andrew Trick42b7a712012-01-17 06:55:03 +000065char &llvm::MachineSchedulerID = MachineScheduler::ID;
Andrew Trick96f678f2012-01-13 06:30:30 +000066
Andrew Trick42b7a712012-01-17 06:55:03 +000067INITIALIZE_PASS_BEGIN(MachineScheduler, "misched",
Andrew Trick96f678f2012-01-13 06:30:30 +000068 "Machine Instruction Scheduler", false, false)
69INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
70INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
71INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
Andrew Trick42b7a712012-01-17 06:55:03 +000072INITIALIZE_PASS_END(MachineScheduler, "misched",
Andrew Trick96f678f2012-01-13 06:30:30 +000073 "Machine Instruction Scheduler", false, false)
74
Andrew Trick42b7a712012-01-17 06:55:03 +000075MachineScheduler::MachineScheduler()
Andrew Trickc174eaf2012-03-08 01:41:12 +000076: MachineFunctionPass(ID) {
Andrew Trick42b7a712012-01-17 06:55:03 +000077 initializeMachineSchedulerPass(*PassRegistry::getPassRegistry());
Andrew Trick96f678f2012-01-13 06:30:30 +000078}
79
Andrew Trick42b7a712012-01-17 06:55:03 +000080void MachineScheduler::getAnalysisUsage(AnalysisUsage &AU) const {
Andrew Trick96f678f2012-01-13 06:30:30 +000081 AU.setPreservesCFG();
82 AU.addRequiredID(MachineDominatorsID);
83 AU.addRequired<MachineLoopInfo>();
84 AU.addRequired<AliasAnalysis>();
Andrew Trickd04ec0c2012-03-09 00:52:20 +000085 AU.addRequired<TargetPassConfig>();
Andrew Trick96f678f2012-01-13 06:30:30 +000086 AU.addRequired<SlotIndexes>();
87 AU.addPreserved<SlotIndexes>();
88 AU.addRequired<LiveIntervals>();
89 AU.addPreserved<LiveIntervals>();
Andrew Trick96f678f2012-01-13 06:30:30 +000090 MachineFunctionPass::getAnalysisUsage(AU);
91}
92
Andrew Trick96f678f2012-01-13 06:30:30 +000093MachinePassRegistry MachineSchedRegistry::Registry;
94
Andrew Trickd04ec0c2012-03-09 00:52:20 +000095/// A dummy default scheduler factory indicates whether the scheduler
96/// is overridden on the command line.
97static ScheduleDAGInstrs *useDefaultMachineSched(MachineSchedContext *C) {
98 return 0;
99}
Andrew Trick96f678f2012-01-13 06:30:30 +0000100
101/// MachineSchedOpt allows command line selection of the scheduler.
102static cl::opt<MachineSchedRegistry::ScheduleDAGCtor, false,
103 RegisterPassParser<MachineSchedRegistry> >
104MachineSchedOpt("misched",
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000105 cl::init(&useDefaultMachineSched), cl::Hidden,
Andrew Trick96f678f2012-01-13 06:30:30 +0000106 cl::desc("Machine instruction scheduler to use"));
107
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000108static MachineSchedRegistry
109SchedDefaultRegistry("default", "Use the target's default scheduler choice.",
110 useDefaultMachineSched);
111
112/// Forward declare the common machine scheduler. This will be used as the
113/// default scheduler if the target does not set a default.
114static ScheduleDAGInstrs *createCommonMachineSched(MachineSchedContext *C);
115
Andrew Trick42b7a712012-01-17 06:55:03 +0000116bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) {
Andrew Trick96f678f2012-01-13 06:30:30 +0000117 // Initialize the context of the pass.
118 MF = &mf;
119 MLI = &getAnalysis<MachineLoopInfo>();
120 MDT = &getAnalysis<MachineDominatorTree>();
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000121 PassConfig = &getAnalysis<TargetPassConfig>();
Andrew Trickc174eaf2012-03-08 01:41:12 +0000122 AA = &getAnalysis<AliasAnalysis>();
123
Lang Hames907cc8f2012-01-27 22:36:19 +0000124 LIS = &getAnalysis<LiveIntervals>();
Andrew Trickc174eaf2012-03-08 01:41:12 +0000125 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
Andrew Trick96f678f2012-01-13 06:30:30 +0000126
127 // Select the scheduler, or set the default.
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000128 MachineSchedRegistry::ScheduleDAGCtor Ctor = MachineSchedOpt;
129 if (Ctor == useDefaultMachineSched) {
130 // Get the default scheduler set by the target.
131 Ctor = MachineSchedRegistry::getDefault();
132 if (!Ctor) {
133 Ctor = createCommonMachineSched;
134 MachineSchedRegistry::setDefault(Ctor);
135 }
Andrew Trick96f678f2012-01-13 06:30:30 +0000136 }
137 // Instantiate the selected scheduler.
138 OwningPtr<ScheduleDAGInstrs> Scheduler(Ctor(this));
139
140 // Visit all machine basic blocks.
141 for (MachineFunction::iterator MBB = MF->begin(), MBBEnd = MF->end();
142 MBB != MBBEnd; ++MBB) {
143
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000144 // Break the block into scheduling regions [I, RegionEnd), and schedule each
145 // region as soon as it is discovered.
146 unsigned RemainingCount = MBB->size();
Andrew Trick7799eb42012-03-09 03:46:39 +0000147 for(MachineBasicBlock::iterator RegionEnd = MBB->end();
148 RegionEnd != MBB->begin();) {
Andrew Trick953be892012-03-07 23:00:49 +0000149 Scheduler->startBlock(MBB);
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000150 // The next region starts above the previous region. Look backward in the
151 // instruction stream until we find the nearest boundary.
152 MachineBasicBlock::iterator I = RegionEnd;
Andrew Trick7799eb42012-03-09 03:46:39 +0000153 for(;I != MBB->begin(); --I, --RemainingCount) {
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000154 if (TII->isSchedulingBoundary(llvm::prior(I), MBB, *MF))
155 break;
156 }
Andrew Trick47c14452012-03-07 05:21:52 +0000157 // Notify the scheduler of the region, even if we may skip scheduling
158 // it. Perhaps it still needs to be bundled.
159 Scheduler->enterRegion(MBB, I, RegionEnd, RemainingCount);
160
161 // Skip empty scheduling regions (0 or 1 schedulable instructions).
162 if (I == RegionEnd || I == llvm::prior(RegionEnd)) {
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000163 RegionEnd = llvm::prior(RegionEnd);
Andrew Trick47c14452012-03-07 05:21:52 +0000164 if (I != RegionEnd)
165 --RemainingCount;
166 // Close the current region. Bundle the terminator if needed.
167 Scheduler->exitRegion();
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000168 continue;
Andrew Trick3c58ba82012-01-14 02:17:18 +0000169 }
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000170 DEBUG(dbgs() << "MachineScheduling " << MF->getFunction()->getName()
Andrew Trick291411c2012-02-08 02:17:21 +0000171 << ":BB#" << MBB->getNumber() << "\n From: " << *I << " To: ";
172 if (RegionEnd != MBB->end()) dbgs() << *RegionEnd;
173 else dbgs() << "End";
174 dbgs() << " Remaining: " << RemainingCount << "\n");
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000175
Andrew Trickd24da972012-03-09 03:46:42 +0000176 // Schedule a region: possibly reorder instructions.
Andrew Trick953be892012-03-07 23:00:49 +0000177 Scheduler->schedule();
Andrew Trickd24da972012-03-09 03:46:42 +0000178
179 // Close the current region.
Andrew Trick47c14452012-03-07 05:21:52 +0000180 Scheduler->exitRegion();
181
182 // Scheduling has invalidated the current iterator 'I'. Ask the
183 // scheduler for the top of it's scheduled region.
184 RegionEnd = Scheduler->begin();
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000185 }
186 assert(RemainingCount == 0 && "Instruction count mismatch!");
Andrew Trick953be892012-03-07 23:00:49 +0000187 Scheduler->finishBlock();
Andrew Trick96f678f2012-01-13 06:30:30 +0000188 }
189 return true;
190}
191
Andrew Trick42b7a712012-01-17 06:55:03 +0000192void MachineScheduler::print(raw_ostream &O, const Module* m) const {
Andrew Trick96f678f2012-01-13 06:30:30 +0000193 // unimplemented
194}
195
Andrew Trick5edf2f02012-01-14 02:17:06 +0000196//===----------------------------------------------------------------------===//
Andrew Trickc174eaf2012-03-08 01:41:12 +0000197// ScheduleTopeDownLive - Base class for basic top-down scheduling with
198// LiveIntervals preservation.
199// ===----------------------------------------------------------------------===//
200
201namespace {
202/// ScheduleTopDownLive is an implementation of ScheduleDAGInstrs that schedules
203/// machine instructions while updating LiveIntervals.
204class ScheduleTopDownLive : public ScheduleDAGInstrs {
205 AliasAnalysis *AA;
206public:
207 ScheduleTopDownLive(MachineSchedContext *C):
208 ScheduleDAGInstrs(*C->MF, *C->MLI, *C->MDT, /*IsPostRA=*/false, C->LIS),
209 AA(C->AA) {}
210
211 /// ScheduleDAGInstrs interface.
212 void schedule();
213
214 /// Interface implemented by the selected top-down liveinterval scheduler.
215 ///
216 /// Pick the next node to schedule, or return NULL.
217 virtual SUnit *pickNode() = 0;
218
219 /// When all preceeding dependencies have been resolved, free this node for
220 /// scheduling.
221 virtual void releaseNode(SUnit *SU) = 0;
222
223protected:
224 void releaseSucc(SUnit *SU, SDep *SuccEdge);
225 void releaseSuccessors(SUnit *SU);
226};
227} // namespace
228
229/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. When
230/// NumPredsLeft reaches zero, release the successor node.
231void ScheduleTopDownLive::releaseSucc(SUnit *SU, SDep *SuccEdge) {
232 SUnit *SuccSU = SuccEdge->getSUnit();
233
234#ifndef NDEBUG
235 if (SuccSU->NumPredsLeft == 0) {
236 dbgs() << "*** Scheduling failed! ***\n";
237 SuccSU->dump(this);
238 dbgs() << " has been released too many times!\n";
239 llvm_unreachable(0);
240 }
241#endif
242 --SuccSU->NumPredsLeft;
243 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
244 releaseNode(SuccSU);
245}
246
247/// releaseSuccessors - Call releaseSucc on each of SU's successors.
248void ScheduleTopDownLive::releaseSuccessors(SUnit *SU) {
249 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
250 I != E; ++I) {
251 releaseSucc(SU, &*I);
252 }
253}
254
255/// schedule - This is called back from ScheduleDAGInstrs::Run() when it's
256/// time to do some work.
257void ScheduleTopDownLive::schedule() {
258 buildSchedGraph(AA);
259
260 DEBUG(dbgs() << "********** MI Scheduling **********\n");
261 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
262 SUnits[su].dumpAll(this));
263
264 if (ViewMISchedDAGs) viewGraph();
265
266 // Release any successors of the special Entry node. It is currently unused,
267 // but we keep up appearances.
268 releaseSuccessors(&EntrySU);
269
270 // Release all DAG roots for scheduling.
271 for (std::vector<SUnit>::iterator I = SUnits.begin(), E = SUnits.end();
272 I != E; ++I) {
273 // A SUnit is ready to schedule if it has no predecessors.
274 if (I->Preds.empty())
275 releaseNode(&(*I));
276 }
277
278 MachineBasicBlock::iterator InsertPos = Begin;
279 while (SUnit *SU = pickNode()) {
280 DEBUG(dbgs() << "*** Scheduling Instruction:\n"; SU->dump(this));
281
282 // Move the instruction to its new location in the instruction stream.
283 MachineInstr *MI = SU->getInstr();
284 if (&*InsertPos == MI)
285 ++InsertPos;
286 else {
287 BB->splice(InsertPos, BB, MI);
288 LIS->handleMove(MI);
289 if (Begin == InsertPos)
290 Begin = MI;
291 }
292
293 // Release dependent instructions for scheduling.
294 releaseSuccessors(SU);
295 }
296}
297
298//===----------------------------------------------------------------------===//
299// Placeholder for the default machine instruction scheduler.
Andrew Trick42b7a712012-01-17 06:55:03 +0000300//===----------------------------------------------------------------------===//
301
302namespace {
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000303class CommonMachineScheduler : public ScheduleDAGInstrs {
Andrew Trickc174eaf2012-03-08 01:41:12 +0000304 AliasAnalysis *AA;
Andrew Trick42b7a712012-01-17 06:55:03 +0000305public:
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000306 CommonMachineScheduler(MachineSchedContext *C):
Andrew Trickc174eaf2012-03-08 01:41:12 +0000307 ScheduleDAGInstrs(*C->MF, *C->MLI, *C->MDT, /*IsPostRA=*/false, C->LIS),
308 AA(C->AA) {}
Andrew Trick42b7a712012-01-17 06:55:03 +0000309
Andrew Trick953be892012-03-07 23:00:49 +0000310 /// schedule - This is called back from ScheduleDAGInstrs::Run() when it's
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000311 /// time to do some work.
Andrew Trick953be892012-03-07 23:00:49 +0000312 void schedule();
Andrew Trick42b7a712012-01-17 06:55:03 +0000313};
314} // namespace
315
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000316/// The common machine scheduler will be used as the default scheduler if the
317/// target does not set a default.
318static ScheduleDAGInstrs *createCommonMachineSched(MachineSchedContext *C) {
319 return new CommonMachineScheduler(C);
Andrew Trick42b7a712012-01-17 06:55:03 +0000320}
321static MachineSchedRegistry
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000322SchedCommonRegistry("common", "Use the target's default scheduler choice.",
323 createCommonMachineSched);
Andrew Trick42b7a712012-01-17 06:55:03 +0000324
Andrew Trick42b7a712012-01-17 06:55:03 +0000325/// Schedule - This is called back from ScheduleDAGInstrs::Run() when it's
326/// time to do some work.
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000327void CommonMachineScheduler::schedule() {
Andrew Trickc174eaf2012-03-08 01:41:12 +0000328 buildSchedGraph(AA);
Andrew Trick42b7a712012-01-17 06:55:03 +0000329
330 DEBUG(dbgs() << "********** MI Scheduling **********\n");
331 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
332 SUnits[su].dumpAll(this));
333
334 // TODO: Put interesting things here.
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000335 //
336 // When this is fully implemented, it will become a subclass of
337 // ScheduleTopDownLive. So this driver will disappear.
Andrew Trick42b7a712012-01-17 06:55:03 +0000338}
339
340//===----------------------------------------------------------------------===//
Andrew Trick5edf2f02012-01-14 02:17:06 +0000341// Machine Instruction Shuffler for Correctness Testing
342//===----------------------------------------------------------------------===//
343
Andrew Trick96f678f2012-01-13 06:30:30 +0000344#ifndef NDEBUG
345namespace {
Andrew Trickb4566a92012-02-22 06:08:11 +0000346// Nodes with a higher number have higher priority. This way we attempt to
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000347// schedule the latest instructions earliest.
348//
349// TODO: Relies on the property of the BuildSchedGraph that results in SUnits
Andrew Trickb4566a92012-02-22 06:08:11 +0000350// being ordered in sequence top-down.
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000351struct ShuffleSUnitOrder {
352 bool operator()(SUnit *A, SUnit *B) const {
Andrew Trickb4566a92012-02-22 06:08:11 +0000353 return A->NodeNum < B->NodeNum;
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000354 }
355};
356
Andrew Trick96f678f2012-01-13 06:30:30 +0000357/// Reorder instructions as much as possible.
Andrew Trick42b7a712012-01-17 06:55:03 +0000358class InstructionShuffler : public ScheduleTopDownLive {
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000359 std::priority_queue<SUnit*, std::vector<SUnit*>, ShuffleSUnitOrder> Queue;
Andrew Trick96f678f2012-01-13 06:30:30 +0000360public:
Andrew Trickc174eaf2012-03-08 01:41:12 +0000361 InstructionShuffler(MachineSchedContext *C):
362 ScheduleTopDownLive(C) {}
Andrew Trick96f678f2012-01-13 06:30:30 +0000363
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000364 /// ScheduleTopDownLive Interface
365
366 virtual SUnit *pickNode() {
367 if (Queue.empty()) return NULL;
368 SUnit *SU = Queue.top();
369 Queue.pop();
370 return SU;
371 }
372
373 virtual void releaseNode(SUnit *SU) {
374 Queue.push(SU);
Andrew Trick96f678f2012-01-13 06:30:30 +0000375 }
376};
377} // namespace
378
Andrew Trickc174eaf2012-03-08 01:41:12 +0000379static ScheduleDAGInstrs *createInstructionShuffler(MachineSchedContext *C) {
380 return new InstructionShuffler(C);
Andrew Trick96f678f2012-01-13 06:30:30 +0000381}
382static MachineSchedRegistry ShufflerRegistry("shuffle",
383 "Shuffle machine instructions",
384 createInstructionShuffler);
385#endif // !NDEBUG