blob: ba87f5a7ab3c58fc04dcaa5fafc5d9622997ff14 [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
17#include "ScheduleDAGInstrs.h"
18#include "LiveDebugVariables.h"
19#include "llvm/CodeGen/LiveIntervalAnalysis.h"
20#include "llvm/CodeGen/MachinePassRegistry.h"
21#include "llvm/CodeGen/Passes.h"
22#include "llvm/Analysis/AliasAnalysis.h"
Andrew Tricke9ef4ed2012-01-14 02:17:09 +000023#include "llvm/Target/TargetInstrInfo.h"
Andrew Trick96f678f2012-01-13 06:30:30 +000024#include "llvm/Support/CommandLine.h"
25#include "llvm/Support/Debug.h"
26#include "llvm/Support/ErrorHandling.h"
27#include "llvm/Support/raw_ostream.h"
28#include "llvm/ADT/OwningPtr.h"
29
Andrew Trickc6cf11b2012-01-17 06:55:07 +000030#include <queue>
31
Andrew Trick96f678f2012-01-13 06:30:30 +000032using namespace llvm;
33
Andrew Trick5edf2f02012-01-14 02:17:06 +000034//===----------------------------------------------------------------------===//
35// Machine Instruction Scheduling Pass and Registry
36//===----------------------------------------------------------------------===//
37
Andrew Trick96f678f2012-01-13 06:30:30 +000038namespace {
Andrew Trick42b7a712012-01-17 06:55:03 +000039/// MachineScheduler runs after coalescing and before register allocation.
40class MachineScheduler : public MachineFunctionPass {
Andrew Trick96f678f2012-01-13 06:30:30 +000041public:
42 MachineFunction *MF;
Andrew Trick5edf2f02012-01-14 02:17:06 +000043 const TargetInstrInfo *TII;
Andrew Trick96f678f2012-01-13 06:30:30 +000044 const MachineLoopInfo *MLI;
45 const MachineDominatorTree *MDT;
Lang Hames907cc8f2012-01-27 22:36:19 +000046 LiveIntervals *LIS;
Andrew Trick96f678f2012-01-13 06:30:30 +000047
Andrew Trick42b7a712012-01-17 06:55:03 +000048 MachineScheduler();
Andrew Trick96f678f2012-01-13 06:30:30 +000049
50 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
51
52 virtual void releaseMemory() {}
53
54 virtual bool runOnMachineFunction(MachineFunction&);
55
56 virtual void print(raw_ostream &O, const Module* = 0) const;
57
58 static char ID; // Class identification, replacement for typeinfo
59};
60} // namespace
61
Andrew Trick42b7a712012-01-17 06:55:03 +000062char MachineScheduler::ID = 0;
Andrew Trick96f678f2012-01-13 06:30:30 +000063
Andrew Trick42b7a712012-01-17 06:55:03 +000064char &llvm::MachineSchedulerID = MachineScheduler::ID;
Andrew Trick96f678f2012-01-13 06:30:30 +000065
Andrew Trick42b7a712012-01-17 06:55:03 +000066INITIALIZE_PASS_BEGIN(MachineScheduler, "misched",
Andrew Trick96f678f2012-01-13 06:30:30 +000067 "Machine Instruction Scheduler", false, false)
68INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
69INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
70INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
71INITIALIZE_PASS_DEPENDENCY(LiveDebugVariables)
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 Trick96f678f2012-01-13 06:30:30 +000076: MachineFunctionPass(ID), MF(0), MLI(0), MDT(0) {
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>();
85 AU.addPreserved<AliasAnalysis>();
86 AU.addRequired<SlotIndexes>();
87 AU.addPreserved<SlotIndexes>();
88 AU.addRequired<LiveIntervals>();
89 AU.addPreserved<LiveIntervals>();
90 AU.addRequired<LiveDebugVariables>();
91 AU.addPreserved<LiveDebugVariables>();
Andrew Trick96f678f2012-01-13 06:30:30 +000092 MachineFunctionPass::getAnalysisUsage(AU);
93}
94
95namespace {
Andrew Trick96f678f2012-01-13 06:30:30 +000096/// MachineSchedRegistry provides a selection of available machine instruction
97/// schedulers.
98class MachineSchedRegistry : public MachinePassRegistryNode {
99public:
Andrew Trick42b7a712012-01-17 06:55:03 +0000100 typedef ScheduleDAGInstrs *(*ScheduleDAGCtor)(MachineScheduler *);
Andrew Trick96f678f2012-01-13 06:30:30 +0000101
102 // RegisterPassParser requires a (misnamed) FunctionPassCtor type.
103 typedef ScheduleDAGCtor FunctionPassCtor;
104
105 static MachinePassRegistry Registry;
106
107 MachineSchedRegistry(const char *N, const char *D, ScheduleDAGCtor C)
108 : MachinePassRegistryNode(N, D, (MachinePassCtor)C) {
109 Registry.Add(this);
110 }
111 ~MachineSchedRegistry() { Registry.Remove(this); }
112
113 // Accessors.
114 //
115 MachineSchedRegistry *getNext() const {
116 return (MachineSchedRegistry *)MachinePassRegistryNode::getNext();
117 }
118 static MachineSchedRegistry *getList() {
119 return (MachineSchedRegistry *)Registry.getList();
120 }
121 static ScheduleDAGCtor getDefault() {
122 return (ScheduleDAGCtor)Registry.getDefault();
123 }
124 static void setDefault(ScheduleDAGCtor C) {
125 Registry.setDefault((MachinePassCtor)C);
126 }
127 static void setListener(MachinePassRegistryListener *L) {
128 Registry.setListener(L);
129 }
130};
131} // namespace
132
133MachinePassRegistry MachineSchedRegistry::Registry;
134
Andrew Trick42b7a712012-01-17 06:55:03 +0000135static ScheduleDAGInstrs *createDefaultMachineSched(MachineScheduler *P);
Andrew Trick96f678f2012-01-13 06:30:30 +0000136
137/// MachineSchedOpt allows command line selection of the scheduler.
138static cl::opt<MachineSchedRegistry::ScheduleDAGCtor, false,
139 RegisterPassParser<MachineSchedRegistry> >
140MachineSchedOpt("misched",
141 cl::init(&createDefaultMachineSched), cl::Hidden,
142 cl::desc("Machine instruction scheduler to use"));
143
Andrew Trick5edf2f02012-01-14 02:17:06 +0000144//===----------------------------------------------------------------------===//
Andrew Trick42b7a712012-01-17 06:55:03 +0000145// Machine Instruction Scheduling Common Implementation
Andrew Trick5edf2f02012-01-14 02:17:06 +0000146//===----------------------------------------------------------------------===//
147
148namespace {
Andrew Trick78b29612012-02-09 00:40:52 +0000149/// ScheduleTopDownLive is an implementation of ScheduleDAGInstrs that schedules
Andrew Trick5edf2f02012-01-14 02:17:06 +0000150/// machine instructions while updating LiveIntervals.
Andrew Trick42b7a712012-01-17 06:55:03 +0000151class ScheduleTopDownLive : public ScheduleDAGInstrs {
152protected:
153 MachineScheduler *Pass;
Andrew Trick5edf2f02012-01-14 02:17:06 +0000154public:
Andrew Trick42b7a712012-01-17 06:55:03 +0000155 ScheduleTopDownLive(MachineScheduler *P):
Andrew Trick5e920d72012-01-14 02:17:12 +0000156 ScheduleDAGInstrs(*P->MF, *P->MLI, *P->MDT, /*IsPostRA=*/false), Pass(P) {}
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000157
158 /// ScheduleDAGInstrs callback.
159 void Schedule();
160
161 /// Interface implemented by the selected top-down liveinterval scheduler.
162 ///
163 /// Pick the next node to schedule, or return NULL.
164 virtual SUnit *pickNode() = 0;
165
166 /// When all preceeding dependencies have been resolved, free this node for
167 /// scheduling.
168 virtual void releaseNode(SUnit *SU) = 0;
169
170protected:
171 void releaseSucc(SUnit *SU, SDep *SuccEdge);
172 void releaseSuccessors(SUnit *SU);
Andrew Trick5edf2f02012-01-14 02:17:06 +0000173};
174} // namespace
175
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000176/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. When
177/// NumPredsLeft reaches zero, release the successor node.
178void ScheduleTopDownLive::releaseSucc(SUnit *SU, SDep *SuccEdge) {
179 SUnit *SuccSU = SuccEdge->getSUnit();
180
181#ifndef NDEBUG
182 if (SuccSU->NumPredsLeft == 0) {
183 dbgs() << "*** Scheduling failed! ***\n";
184 SuccSU->dump(this);
185 dbgs() << " has been released too many times!\n";
186 llvm_unreachable(0);
187 }
188#endif
189 --SuccSU->NumPredsLeft;
190 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
191 releaseNode(SuccSU);
192}
193
194/// releaseSuccessors - Call releaseSucc on each of SU's successors.
195void ScheduleTopDownLive::releaseSuccessors(SUnit *SU) {
196 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
197 I != E; ++I) {
198 releaseSucc(SU, &*I);
199 }
200}
201
202/// Schedule - This is called back from ScheduleDAGInstrs::Run() when it's
203/// time to do some work.
204void ScheduleTopDownLive::Schedule() {
205 BuildSchedGraph(&Pass->getAnalysis<AliasAnalysis>());
206
207 DEBUG(dbgs() << "********** MI Scheduling **********\n");
208 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
209 SUnits[su].dumpAll(this));
210
211 // Release any successors of the special Entry node. It is currently unused,
212 // but we keep up appearances.
213 releaseSuccessors(&EntrySU);
214
215 // Release all DAG roots for scheduling.
216 for (std::vector<SUnit>::iterator I = SUnits.begin(), E = SUnits.end();
217 I != E; ++I) {
218 // A SUnit is ready to schedule if it has no predecessors.
219 if (I->Preds.empty())
220 releaseNode(&(*I));
221 }
222
223 InsertPos = Begin;
224 while (SUnit *SU = pickNode()) {
225 DEBUG(dbgs() << "*** Scheduling Instruction:\n"; SU->dump(this));
226
227 // Move the instruction to its new location in the instruction stream.
228 MachineInstr *MI = SU->getInstr();
229 if (&*InsertPos == MI)
230 ++InsertPos;
231 else {
Lang Hames907cc8f2012-01-27 22:36:19 +0000232 Pass->LIS->moveInstr(InsertPos, MI);
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000233 if (Begin == InsertPos)
234 Begin = MI;
235 }
236
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000237 // Release dependent instructions for scheduling.
238 releaseSuccessors(SU);
239 }
240}
241
Andrew Trick42b7a712012-01-17 06:55:03 +0000242bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) {
Andrew Trick96f678f2012-01-13 06:30:30 +0000243 // Initialize the context of the pass.
244 MF = &mf;
245 MLI = &getAnalysis<MachineLoopInfo>();
246 MDT = &getAnalysis<MachineDominatorTree>();
Lang Hames907cc8f2012-01-27 22:36:19 +0000247 LIS = &getAnalysis<LiveIntervals>();
Andrew Trick5edf2f02012-01-14 02:17:06 +0000248 TII = MF->getTarget().getInstrInfo();
Andrew Trick96f678f2012-01-13 06:30:30 +0000249
250 // Select the scheduler, or set the default.
251 MachineSchedRegistry::ScheduleDAGCtor Ctor =
252 MachineSchedRegistry::getDefault();
253 if (!Ctor) {
254 Ctor = MachineSchedOpt;
255 MachineSchedRegistry::setDefault(Ctor);
256 }
257 // Instantiate the selected scheduler.
258 OwningPtr<ScheduleDAGInstrs> Scheduler(Ctor(this));
259
260 // Visit all machine basic blocks.
261 for (MachineFunction::iterator MBB = MF->begin(), MBBEnd = MF->end();
262 MBB != MBBEnd; ++MBB) {
263
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000264 // Break the block into scheduling regions [I, RegionEnd), and schedule each
265 // region as soon as it is discovered.
266 unsigned RemainingCount = MBB->size();
267 for(MachineBasicBlock::iterator RegionEnd = MBB->end();
268 RegionEnd != MBB->begin();) {
269 // The next region starts above the previous region. Look backward in the
270 // instruction stream until we find the nearest boundary.
271 MachineBasicBlock::iterator I = RegionEnd;
Andrew Trick3c58ba82012-01-14 02:17:18 +0000272 for(;I != MBB->begin(); --I, --RemainingCount) {
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000273 if (TII->isSchedulingBoundary(llvm::prior(I), MBB, *MF))
274 break;
275 }
Andrew Trick3c58ba82012-01-14 02:17:18 +0000276 if (I == RegionEnd) {
277 // Skip empty scheduling regions.
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000278 RegionEnd = llvm::prior(RegionEnd);
Andrew Trick3c58ba82012-01-14 02:17:18 +0000279 --RemainingCount;
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000280 continue;
281 }
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000282 // Skip regions with one instruction.
283 if (I == llvm::prior(RegionEnd)) {
284 RegionEnd = llvm::prior(RegionEnd);
285 continue;
Andrew Trick3c58ba82012-01-14 02:17:18 +0000286 }
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000287 DEBUG(dbgs() << "MachineScheduling " << MF->getFunction()->getName()
Andrew Trick291411c2012-02-08 02:17:21 +0000288 << ":BB#" << MBB->getNumber() << "\n From: " << *I << " To: ";
289 if (RegionEnd != MBB->end()) dbgs() << *RegionEnd;
290 else dbgs() << "End";
291 dbgs() << " Remaining: " << RemainingCount << "\n");
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000292
293 // Inform ScheduleDAGInstrs of the region being scheduled. It calls back
294 // to our Schedule() method.
295 Scheduler->Run(MBB, I, RegionEnd, MBB->size());
296 RegionEnd = Scheduler->Begin;
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000297 }
298 assert(RemainingCount == 0 && "Instruction count mismatch!");
Andrew Trick96f678f2012-01-13 06:30:30 +0000299 }
300 return true;
301}
302
Andrew Trick42b7a712012-01-17 06:55:03 +0000303void MachineScheduler::print(raw_ostream &O, const Module* m) const {
Andrew Trick96f678f2012-01-13 06:30:30 +0000304 // unimplemented
305}
306
Andrew Trick5edf2f02012-01-14 02:17:06 +0000307//===----------------------------------------------------------------------===//
Andrew Trick42b7a712012-01-17 06:55:03 +0000308// Placeholder for extending the machine instruction scheduler.
309//===----------------------------------------------------------------------===//
310
311namespace {
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000312class DefaultMachineScheduler : public ScheduleDAGInstrs {
313 MachineScheduler *Pass;
Andrew Trick42b7a712012-01-17 06:55:03 +0000314public:
315 DefaultMachineScheduler(MachineScheduler *P):
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000316 ScheduleDAGInstrs(*P->MF, *P->MLI, *P->MDT, /*IsPostRA=*/false), Pass(P) {}
Andrew Trick42b7a712012-01-17 06:55:03 +0000317
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000318 /// Schedule - This is called back from ScheduleDAGInstrs::Run() when it's
319 /// time to do some work.
Andrew Trick42b7a712012-01-17 06:55:03 +0000320 void Schedule();
321};
322} // namespace
323
324static ScheduleDAGInstrs *createDefaultMachineSched(MachineScheduler *P) {
325 return new DefaultMachineScheduler(P);
326}
327static MachineSchedRegistry
328SchedDefaultRegistry("default", "Activate the scheduler pass, "
329 "but don't reorder instructions",
330 createDefaultMachineSched);
331
332
333/// Schedule - This is called back from ScheduleDAGInstrs::Run() when it's
334/// time to do some work.
335void DefaultMachineScheduler::Schedule() {
336 BuildSchedGraph(&Pass->getAnalysis<AliasAnalysis>());
337
338 DEBUG(dbgs() << "********** MI Scheduling **********\n");
339 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
340 SUnits[su].dumpAll(this));
341
342 // TODO: Put interesting things here.
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000343 //
344 // When this is fully implemented, it will become a subclass of
345 // ScheduleTopDownLive. So this driver will disappear.
Andrew Trick42b7a712012-01-17 06:55:03 +0000346}
347
348//===----------------------------------------------------------------------===//
Andrew Trick5edf2f02012-01-14 02:17:06 +0000349// Machine Instruction Shuffler for Correctness Testing
350//===----------------------------------------------------------------------===//
351
Andrew Trick96f678f2012-01-13 06:30:30 +0000352#ifndef NDEBUG
353namespace {
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000354// Nodes with a higher number have lower priority. This way we attempt to
355// schedule the latest instructions earliest.
356//
357// TODO: Relies on the property of the BuildSchedGraph that results in SUnits
358// being ordered in sequence bottom-up. This will be formalized, probably be
359// constructing SUnits in a prepass.
360struct ShuffleSUnitOrder {
361 bool operator()(SUnit *A, SUnit *B) const {
362 return A->NodeNum > B->NodeNum;
363 }
364};
365
Andrew Trick96f678f2012-01-13 06:30:30 +0000366/// Reorder instructions as much as possible.
Andrew Trick42b7a712012-01-17 06:55:03 +0000367class InstructionShuffler : public ScheduleTopDownLive {
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000368 std::priority_queue<SUnit*, std::vector<SUnit*>, ShuffleSUnitOrder> Queue;
Andrew Trick96f678f2012-01-13 06:30:30 +0000369public:
Andrew Trick42b7a712012-01-17 06:55:03 +0000370 InstructionShuffler(MachineScheduler *P):
371 ScheduleTopDownLive(P) {}
Andrew Trick96f678f2012-01-13 06:30:30 +0000372
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000373 /// ScheduleTopDownLive Interface
374
375 virtual SUnit *pickNode() {
376 if (Queue.empty()) return NULL;
377 SUnit *SU = Queue.top();
378 Queue.pop();
379 return SU;
380 }
381
382 virtual void releaseNode(SUnit *SU) {
383 Queue.push(SU);
Andrew Trick96f678f2012-01-13 06:30:30 +0000384 }
385};
386} // namespace
387
Andrew Trick42b7a712012-01-17 06:55:03 +0000388static ScheduleDAGInstrs *createInstructionShuffler(MachineScheduler *P) {
Andrew Trick96f678f2012-01-13 06:30:30 +0000389 return new InstructionShuffler(P);
390}
391static MachineSchedRegistry ShufflerRegistry("shuffle",
392 "Shuffle machine instructions",
393 createInstructionShuffler);
394#endif // !NDEBUG