blob: bc81464954b9f18e24ef8612c557ed97fdfdd0d5 [file] [log] [blame]
Dale Johannesen72f15962007-07-13 17:31:29 +00001//===----- SchedulePostRAList.cpp - list scheduler ------------------------===//
Dale Johannesene7e7d0d2007-07-13 17:13:54 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dale Johannesene7e7d0d2007-07-13 17:13:54 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This implements a top-down list scheduler, using standard algorithms.
11// The basic approach uses a priority queue of available nodes to schedule.
12// One at a time, nodes are taken from the priority queue (thus in priority
13// order), checked for legality to schedule, and emitted if legal.
14//
15// Nodes may not be legal to schedule either due to structural hazards (e.g.
16// pipeline or resource constraints) or because an input to the instruction has
17// not completed execution.
18//
19//===----------------------------------------------------------------------===//
20
21#define DEBUG_TYPE "post-RA-sched"
David Goodwin82c72482009-10-28 18:29:54 +000022#include "AntiDepBreaker.h"
David Goodwin34877712009-10-26 19:32:42 +000023#include "AggressiveAntiDepBreaker.h"
David Goodwin2e7be612009-10-26 16:59:04 +000024#include "CriticalAntiDepBreaker.h"
Jakob Stoklund Olesenfa796dd2011-06-16 21:56:21 +000025#include "RegisterClassInfo.h"
Dan Gohman6dc75fe2009-02-06 17:12:10 +000026#include "ScheduleDAGInstrs.h"
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000027#include "llvm/CodeGen/Passes.h"
Dan Gohman343f0c02008-11-19 23:18:57 +000028#include "llvm/CodeGen/LatencyPriorityQueue.h"
29#include "llvm/CodeGen/SchedulerRegistry.h"
Dan Gohman3f237442008-12-16 03:25:46 +000030#include "llvm/CodeGen/MachineDominators.h"
David Goodwinc7951f82009-10-01 19:45:32 +000031#include "llvm/CodeGen/MachineFrameInfo.h"
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000032#include "llvm/CodeGen/MachineFunctionPass.h"
Dan Gohman3f237442008-12-16 03:25:46 +000033#include "llvm/CodeGen/MachineLoopInfo.h"
Dan Gohman21d90032008-11-25 00:52:40 +000034#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman2836c282009-01-16 01:33:36 +000035#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
Dan Gohmana70dca12009-10-09 23:27:56 +000036#include "llvm/Analysis/AliasAnalysis.h"
Dan Gohmanbed353d2009-02-10 23:29:38 +000037#include "llvm/Target/TargetLowering.h"
Dan Gohman79ce2762009-01-15 19:20:50 +000038#include "llvm/Target/TargetMachine.h"
Dan Gohman21d90032008-11-25 00:52:40 +000039#include "llvm/Target/TargetInstrInfo.h"
40#include "llvm/Target/TargetRegisterInfo.h"
Evan Cheng5b1b44892011-07-01 21:01:15 +000041#include "llvm/Target/TargetSubtargetInfo.h"
David Goodwine10deca2009-10-26 22:31:16 +000042#include "llvm/Support/CommandLine.h"
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000043#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000044#include "llvm/Support/ErrorHandling.h"
David Goodwin3a5f0d42009-08-11 01:44:26 +000045#include "llvm/Support/raw_ostream.h"
David Goodwin2e7be612009-10-26 16:59:04 +000046#include "llvm/ADT/BitVector.h"
Dan Gohman343f0c02008-11-19 23:18:57 +000047#include "llvm/ADT/Statistic.h"
David Goodwin88a589c2009-08-25 17:03:05 +000048#include <set>
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000049using namespace llvm;
50
Dan Gohman2836c282009-01-16 01:33:36 +000051STATISTIC(NumNoops, "Number of noops inserted");
Dan Gohman343f0c02008-11-19 23:18:57 +000052STATISTIC(NumStalls, "Number of pipeline stalls");
David Goodwin2e7be612009-10-26 16:59:04 +000053STATISTIC(NumFixedAnti, "Number of fixed anti-dependencies");
Dan Gohman343f0c02008-11-19 23:18:57 +000054
David Goodwin471850a2009-10-01 21:46:35 +000055// Post-RA scheduling is enabled with
Evan Cheng5b1b44892011-07-01 21:01:15 +000056// TargetSubtargetInfo.enablePostRAScheduler(). This flag can be used to
David Goodwin471850a2009-10-01 21:46:35 +000057// override the target.
58static cl::opt<bool>
59EnablePostRAScheduler("post-RA-scheduler",
60 cl::desc("Enable scheduling after register allocation"),
David Goodwin9843a932009-10-01 22:19:57 +000061 cl::init(false), cl::Hidden);
David Goodwin2e7be612009-10-26 16:59:04 +000062static cl::opt<std::string>
Dan Gohman21d90032008-11-25 00:52:40 +000063EnableAntiDepBreaking("break-anti-dependencies",
David Goodwin2e7be612009-10-26 16:59:04 +000064 cl::desc("Break post-RA scheduling anti-dependencies: "
65 "\"critical\", \"all\", or \"none\""),
66 cl::init("none"), cl::Hidden);
Dan Gohman2836c282009-01-16 01:33:36 +000067
David Goodwin1f152282009-09-01 18:34:03 +000068// If DebugDiv > 0 then only schedule MBB with (ID % DebugDiv) == DebugMod
69static cl::opt<int>
70DebugDiv("postra-sched-debugdiv",
71 cl::desc("Debug control MBBs that are scheduled"),
72 cl::init(0), cl::Hidden);
73static cl::opt<int>
74DebugMod("postra-sched-debugmod",
75 cl::desc("Debug control MBBs that are scheduled"),
76 cl::init(0), cl::Hidden);
77
David Goodwinada0ef82009-10-26 19:41:00 +000078AntiDepBreaker::~AntiDepBreaker() { }
79
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000080namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000081 class PostRAScheduler : public MachineFunctionPass {
Dan Gohmana70dca12009-10-09 23:27:56 +000082 AliasAnalysis *AA;
Evan Cheng86050dc2010-06-18 23:09:54 +000083 const TargetInstrInfo *TII;
Jakob Stoklund Olesenfa796dd2011-06-16 21:56:21 +000084 RegisterClassInfo RegClassInfo;
Dan Gohmana70dca12009-10-09 23:27:56 +000085
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000086 public:
87 static char ID;
Andrew Trickc7d081b2012-02-08 21:22:53 +000088 PostRAScheduler() : MachineFunctionPass(ID) {}
Dan Gohman21d90032008-11-25 00:52:40 +000089
Dan Gohman3f237442008-12-16 03:25:46 +000090 void getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman845012e2009-07-31 23:37:33 +000091 AU.setPreservesCFG();
Dan Gohmana70dca12009-10-09 23:27:56 +000092 AU.addRequired<AliasAnalysis>();
Andrew Trickc7d081b2012-02-08 21:22:53 +000093 AU.addRequired<TargetPassConfig>();
Dan Gohman3f237442008-12-16 03:25:46 +000094 AU.addRequired<MachineDominatorTree>();
95 AU.addPreserved<MachineDominatorTree>();
96 AU.addRequired<MachineLoopInfo>();
97 AU.addPreserved<MachineLoopInfo>();
98 MachineFunctionPass::getAnalysisUsage(AU);
99 }
100
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000101 const char *getPassName() const {
Dan Gohman21d90032008-11-25 00:52:40 +0000102 return "Post RA top-down list latency scheduler";
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000103 }
104
105 bool runOnMachineFunction(MachineFunction &Fn);
106 };
Dan Gohman343f0c02008-11-19 23:18:57 +0000107 char PostRAScheduler::ID = 0;
108
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000109 class SchedulePostRATDList : public ScheduleDAGInstrs {
Dan Gohman343f0c02008-11-19 23:18:57 +0000110 /// AvailableQueue - The priority queue to use for the available SUnits.
Dan Gohmanc1ae8c92009-10-21 01:44:44 +0000111 ///
Dan Gohman343f0c02008-11-19 23:18:57 +0000112 LatencyPriorityQueue AvailableQueue;
Jim Grosbach90013032010-05-14 21:19:48 +0000113
Dan Gohman343f0c02008-11-19 23:18:57 +0000114 /// PendingQueue - This contains all of the instructions whose operands have
115 /// been issued, but their results are not ready yet (due to the latency of
116 /// the operation). Once the operands becomes available, the instruction is
117 /// added to the AvailableQueue.
118 std::vector<SUnit*> PendingQueue;
119
Dan Gohman21d90032008-11-25 00:52:40 +0000120 /// Topo - A topological ordering for SUnits.
121 ScheduleDAGTopologicalSort Topo;
Dan Gohman343f0c02008-11-19 23:18:57 +0000122
Dan Gohman2836c282009-01-16 01:33:36 +0000123 /// HazardRec - The hazard recognizer to use.
124 ScheduleHazardRecognizer *HazardRec;
125
David Goodwin2e7be612009-10-26 16:59:04 +0000126 /// AntiDepBreak - Anti-dependence breaking object, or NULL if none
127 AntiDepBreaker *AntiDepBreak;
128
Dan Gohmana70dca12009-10-09 23:27:56 +0000129 /// AA - AliasAnalysis for making memory reference queries.
130 AliasAnalysis *AA;
131
Dan Gohmanc1ae8c92009-10-21 01:44:44 +0000132 /// KillIndices - The index of the most recent kill (proceding bottom-up),
133 /// or ~0u if the register is not live.
Bill Wendling24173da2010-07-15 20:01:02 +0000134 std::vector<unsigned> KillIndices;
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000135
Dan Gohman21d90032008-11-25 00:52:40 +0000136 public:
Andrew Trick2da8bc82010-12-24 05:03:26 +0000137 SchedulePostRATDList(
138 MachineFunction &MF, MachineLoopInfo &MLI, MachineDominatorTree &MDT,
Jakob Stoklund Olesenfa796dd2011-06-16 21:56:21 +0000139 AliasAnalysis *AA, const RegisterClassInfo&,
Evan Cheng5b1b44892011-07-01 21:01:15 +0000140 TargetSubtargetInfo::AntiDepBreakMode AntiDepMode,
Andrew Trick2da8bc82010-12-24 05:03:26 +0000141 SmallVectorImpl<TargetRegisterClass*> &CriticalPathRCs);
Dan Gohman2836c282009-01-16 01:33:36 +0000142
Andrew Trick2da8bc82010-12-24 05:03:26 +0000143 ~SchedulePostRATDList();
Dan Gohman343f0c02008-11-19 23:18:57 +0000144
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000145 /// StartBlock - Initialize register live-range state for scheduling in
146 /// this block.
147 ///
148 void StartBlock(MachineBasicBlock *BB);
149
150 /// Schedule - Schedule the instruction range using list scheduling.
151 ///
Dan Gohman343f0c02008-11-19 23:18:57 +0000152 void Schedule();
Jim Grosbach90013032010-05-14 21:19:48 +0000153
Dan Gohmanc1ae8c92009-10-21 01:44:44 +0000154 /// Observe - Update liveness information to account for the current
155 /// instruction, which will not be scheduled.
156 ///
157 void Observe(MachineInstr *MI, unsigned Count);
158
159 /// FinishBlock - Clean up register live-range state.
160 ///
161 void FinishBlock();
162
David Goodwin2e7be612009-10-26 16:59:04 +0000163 /// FixupKills - Fix register kill flags that have been made
164 /// invalid due to scheduling
165 ///
166 void FixupKills(MachineBasicBlock *MBB);
167
Dan Gohman343f0c02008-11-19 23:18:57 +0000168 private:
David Goodwin557bbe62009-11-20 19:32:48 +0000169 void ReleaseSucc(SUnit *SU, SDep *SuccEdge);
170 void ReleaseSuccessors(SUnit *SU);
171 void ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle);
172 void ListScheduleTopDown();
David Goodwin5e411782009-09-03 22:15:25 +0000173 void StartBlockForKills(MachineBasicBlock *BB);
Jim Grosbach90013032010-05-14 21:19:48 +0000174
David Goodwin8f909342009-09-23 16:35:25 +0000175 // ToggleKillFlag - Toggle a register operand kill flag. Other
176 // adjustments may be made to the instruction if necessary. Return
177 // true if the operand has been deleted, false if not.
178 bool ToggleKillFlag(MachineInstr *MI, MachineOperand &MO);
Dan Gohman343f0c02008-11-19 23:18:57 +0000179 };
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000180}
181
Andrew Trick2da8bc82010-12-24 05:03:26 +0000182SchedulePostRATDList::SchedulePostRATDList(
183 MachineFunction &MF, MachineLoopInfo &MLI, MachineDominatorTree &MDT,
Jakob Stoklund Olesenfa796dd2011-06-16 21:56:21 +0000184 AliasAnalysis *AA, const RegisterClassInfo &RCI,
Evan Cheng5b1b44892011-07-01 21:01:15 +0000185 TargetSubtargetInfo::AntiDepBreakMode AntiDepMode,
Andrew Trick2da8bc82010-12-24 05:03:26 +0000186 SmallVectorImpl<TargetRegisterClass*> &CriticalPathRCs)
Andrew Trick5e920d72012-01-14 02:17:12 +0000187 : ScheduleDAGInstrs(MF, MLI, MDT, /*IsPostRA=*/true), Topo(SUnits), AA(AA),
Andrew Trick2da8bc82010-12-24 05:03:26 +0000188 KillIndices(TRI->getNumRegs())
189{
190 const TargetMachine &TM = MF.getTarget();
191 const InstrItineraryData *InstrItins = TM.getInstrItineraryData();
192 HazardRec =
193 TM.getInstrInfo()->CreateTargetPostRAHazardRecognizer(InstrItins, this);
194 AntiDepBreak =
Evan Cheng5b1b44892011-07-01 21:01:15 +0000195 ((AntiDepMode == TargetSubtargetInfo::ANTIDEP_ALL) ?
Jakob Stoklund Olesenfa796dd2011-06-16 21:56:21 +0000196 (AntiDepBreaker *)new AggressiveAntiDepBreaker(MF, RCI, CriticalPathRCs) :
Evan Cheng5b1b44892011-07-01 21:01:15 +0000197 ((AntiDepMode == TargetSubtargetInfo::ANTIDEP_CRITICAL) ?
Jakob Stoklund Olesenfa796dd2011-06-16 21:56:21 +0000198 (AntiDepBreaker *)new CriticalAntiDepBreaker(MF, RCI) : NULL));
Andrew Trick2da8bc82010-12-24 05:03:26 +0000199}
200
201SchedulePostRATDList::~SchedulePostRATDList() {
202 delete HazardRec;
203 delete AntiDepBreak;
204}
205
Dan Gohman343f0c02008-11-19 23:18:57 +0000206bool PostRAScheduler::runOnMachineFunction(MachineFunction &Fn) {
Evan Cheng86050dc2010-06-18 23:09:54 +0000207 TII = Fn.getTarget().getInstrInfo();
Andrew Trick2da8bc82010-12-24 05:03:26 +0000208 MachineLoopInfo &MLI = getAnalysis<MachineLoopInfo>();
209 MachineDominatorTree &MDT = getAnalysis<MachineDominatorTree>();
210 AliasAnalysis *AA = &getAnalysis<AliasAnalysis>();
Andrew Trickc7d081b2012-02-08 21:22:53 +0000211 TargetPassConfig *PassConfig = &getAnalysis<TargetPassConfig>();
212
Jakob Stoklund Olesenfa796dd2011-06-16 21:56:21 +0000213 RegClassInfo.runOnMachineFunction(Fn);
Dan Gohman5bf7c2a2009-10-10 00:15:38 +0000214
David Goodwin471850a2009-10-01 21:46:35 +0000215 // Check for explicit enable/disable of post-ra scheduling.
Evan Chengddfd1372011-12-14 02:11:42 +0000216 TargetSubtargetInfo::AntiDepBreakMode AntiDepMode =
217 TargetSubtargetInfo::ANTIDEP_NONE;
David Goodwin87d21b92009-11-13 19:52:48 +0000218 SmallVector<TargetRegisterClass*, 4> CriticalPathRCs;
David Goodwin471850a2009-10-01 21:46:35 +0000219 if (EnablePostRAScheduler.getPosition() > 0) {
220 if (!EnablePostRAScheduler)
Evan Chengc83da2f92009-10-16 06:10:34 +0000221 return false;
David Goodwin471850a2009-10-01 21:46:35 +0000222 } else {
Evan Chengc83da2f92009-10-16 06:10:34 +0000223 // Check that post-RA scheduling is enabled for this target.
Andrew Trick2da8bc82010-12-24 05:03:26 +0000224 // This may upgrade the AntiDepMode.
Evan Cheng5b1b44892011-07-01 21:01:15 +0000225 const TargetSubtargetInfo &ST = Fn.getTarget().getSubtarget<TargetSubtargetInfo>();
Andrew Trickc7d081b2012-02-08 21:22:53 +0000226 if (!ST.enablePostRAScheduler(PassConfig->getOptLevel(), AntiDepMode,
227 CriticalPathRCs))
Evan Chengc83da2f92009-10-16 06:10:34 +0000228 return false;
David Goodwin471850a2009-10-01 21:46:35 +0000229 }
David Goodwin0dad89f2009-09-30 00:10:16 +0000230
David Goodwin4c3715c2009-10-22 23:19:17 +0000231 // Check for antidep breaking override...
232 if (EnableAntiDepBreaking.getPosition() > 0) {
Evan Cheng5b1b44892011-07-01 21:01:15 +0000233 AntiDepMode = (EnableAntiDepBreaking == "all")
234 ? TargetSubtargetInfo::ANTIDEP_ALL
235 : ((EnableAntiDepBreaking == "critical")
236 ? TargetSubtargetInfo::ANTIDEP_CRITICAL
237 : TargetSubtargetInfo::ANTIDEP_NONE);
David Goodwin4c3715c2009-10-22 23:19:17 +0000238 }
239
David Greenee1b21292010-01-05 01:26:01 +0000240 DEBUG(dbgs() << "PostRAScheduler\n");
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000241
Jakob Stoklund Olesenfa796dd2011-06-16 21:56:21 +0000242 SchedulePostRATDList Scheduler(Fn, MLI, MDT, AA, RegClassInfo, AntiDepMode,
Andrew Trick2da8bc82010-12-24 05:03:26 +0000243 CriticalPathRCs);
Dan Gohman79ce2762009-01-15 19:20:50 +0000244
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000245 // Loop over all of the basic blocks
246 for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
Dan Gohman343f0c02008-11-19 23:18:57 +0000247 MBB != MBBe; ++MBB) {
David Goodwin1f152282009-09-01 18:34:03 +0000248#ifndef NDEBUG
249 // If DebugDiv > 0 then only schedule MBB with (ID % DebugDiv) == DebugMod
250 if (DebugDiv > 0) {
251 static int bbcnt = 0;
252 if (bbcnt++ % DebugDiv != DebugMod)
253 continue;
Benjamin Kramera7b0cb72011-11-15 16:27:03 +0000254 dbgs() << "*** DEBUG scheduling " << Fn.getFunction()->getName()
255 << ":BB#" << MBB->getNumber() << " ***\n";
David Goodwin1f152282009-09-01 18:34:03 +0000256 }
257#endif
258
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000259 // Initialize register live-range state for scheduling in this block.
260 Scheduler.StartBlock(MBB);
261
Dan Gohmanf7119392009-01-16 22:10:20 +0000262 // Schedule each sequence of instructions not interrupted by a label
263 // or anything else that effectively needs to shut down scheduling.
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000264 MachineBasicBlock::iterator Current = MBB->end();
Dan Gohman47ac0f02009-02-11 04:27:20 +0000265 unsigned Count = MBB->size(), CurrentCount = Count;
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000266 for (MachineBasicBlock::iterator I = Current; I != MBB->begin(); ) {
Evan Cheng86050dc2010-06-18 23:09:54 +0000267 MachineInstr *MI = llvm::prior(I);
268 if (TII->isSchedulingBoundary(MI, MBB, Fn)) {
Dan Gohman1274ced2009-03-10 18:10:43 +0000269 Scheduler.Run(MBB, I, Current, CurrentCount);
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000270 Scheduler.EmitSchedule();
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000271 Current = MI;
Dan Gohman47ac0f02009-02-11 04:27:20 +0000272 CurrentCount = Count - 1;
Dan Gohman1274ced2009-03-10 18:10:43 +0000273 Scheduler.Observe(MI, CurrentCount);
Dan Gohmanf7119392009-01-16 22:10:20 +0000274 }
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000275 I = MI;
Dan Gohman47ac0f02009-02-11 04:27:20 +0000276 --Count;
Evan Chengddfd1372011-12-14 02:11:42 +0000277 if (MI->isBundle())
278 Count -= MI->getBundleSize();
Dan Gohman43f07fb2009-02-03 18:57:45 +0000279 }
Dan Gohman47ac0f02009-02-11 04:27:20 +0000280 assert(Count == 0 && "Instruction count mismatch!");
Duncan Sands9e8bd0b2009-03-11 09:04:34 +0000281 assert((MBB->begin() == Current || CurrentCount != 0) &&
Dan Gohman1274ced2009-03-10 18:10:43 +0000282 "Instruction count mismatch!");
283 Scheduler.Run(MBB, MBB->begin(), Current, CurrentCount);
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000284 Scheduler.EmitSchedule();
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000285
286 // Clean up register live-range state.
287 Scheduler.FinishBlock();
David Goodwin88a589c2009-08-25 17:03:05 +0000288
David Goodwin5e411782009-09-03 22:15:25 +0000289 // Update register kills
David Goodwin88a589c2009-08-25 17:03:05 +0000290 Scheduler.FixupKills(MBB);
Dan Gohman343f0c02008-11-19 23:18:57 +0000291 }
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000292
293 return true;
294}
Jim Grosbach90013032010-05-14 21:19:48 +0000295
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000296/// StartBlock - Initialize register live-range state for scheduling in
297/// this block.
Dan Gohman21d90032008-11-25 00:52:40 +0000298///
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000299void SchedulePostRATDList::StartBlock(MachineBasicBlock *BB) {
300 // Call the superclass.
301 ScheduleDAGInstrs::StartBlock(BB);
Dan Gohman21d90032008-11-25 00:52:40 +0000302
David Goodwin2e7be612009-10-26 16:59:04 +0000303 // Reset the hazard recognizer and anti-dep breaker.
David Goodwind94a4e52009-08-10 15:55:25 +0000304 HazardRec->Reset();
David Goodwin2e7be612009-10-26 16:59:04 +0000305 if (AntiDepBreak != NULL)
306 AntiDepBreak->StartBlock(BB);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000307}
308
309/// Schedule - Schedule the instruction range using list scheduling.
310///
311void SchedulePostRATDList::Schedule() {
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000312 // Build the scheduling graph.
Dan Gohmana70dca12009-10-09 23:27:56 +0000313 BuildSchedGraph(AA);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000314
David Goodwin2e7be612009-10-26 16:59:04 +0000315 if (AntiDepBreak != NULL) {
Jim Grosbach90013032010-05-14 21:19:48 +0000316 unsigned Broken =
David Goodwin557bbe62009-11-20 19:32:48 +0000317 AntiDepBreak->BreakAntiDependencies(SUnits, Begin, InsertPos,
Devang Patele29e8e12011-06-02 21:26:52 +0000318 InsertPosIndex, DbgValues);
Jim Grosbach90013032010-05-14 21:19:48 +0000319
David Goodwin557bbe62009-11-20 19:32:48 +0000320 if (Broken != 0) {
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000321 // We made changes. Update the dependency graph.
322 // Theoretically we could update the graph in place:
323 // When a live range is changed to use a different register, remove
324 // the def's anti-dependence *and* output-dependence edges due to
325 // that register, and add new anti-dependence and output-dependence
326 // edges based on the next live range of the register.
David Goodwin557bbe62009-11-20 19:32:48 +0000327 SUnits.clear();
328 Sequence.clear();
329 EntrySU = SUnit();
330 ExitSU = SUnit();
331 BuildSchedGraph(AA);
Jim Grosbach90013032010-05-14 21:19:48 +0000332
David Goodwin2e7be612009-10-26 16:59:04 +0000333 NumFixedAnti += Broken;
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000334 }
335 }
336
David Greenee1b21292010-01-05 01:26:01 +0000337 DEBUG(dbgs() << "********** List Scheduling **********\n");
David Goodwind94a4e52009-08-10 15:55:25 +0000338 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
339 SUnits[su].dumpAll(this));
340
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000341 AvailableQueue.initNodes(SUnits);
David Goodwin557bbe62009-11-20 19:32:48 +0000342 ListScheduleTopDown();
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000343 AvailableQueue.releaseState();
344}
345
346/// Observe - Update liveness information to account for the current
347/// instruction, which will not be scheduled.
348///
Dan Gohman47ac0f02009-02-11 04:27:20 +0000349void SchedulePostRATDList::Observe(MachineInstr *MI, unsigned Count) {
David Goodwin2e7be612009-10-26 16:59:04 +0000350 if (AntiDepBreak != NULL)
351 AntiDepBreak->Observe(MI, Count, InsertPosIndex);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000352}
353
354/// FinishBlock - Clean up register live-range state.
355///
356void SchedulePostRATDList::FinishBlock() {
David Goodwin2e7be612009-10-26 16:59:04 +0000357 if (AntiDepBreak != NULL)
358 AntiDepBreak->FinishBlock();
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000359
360 // Call the superclass.
361 ScheduleDAGInstrs::FinishBlock();
362}
363
David Goodwin5e411782009-09-03 22:15:25 +0000364/// StartBlockForKills - Initialize register live-range state for updating kills
365///
366void SchedulePostRATDList::StartBlockForKills(MachineBasicBlock *BB) {
367 // Initialize the indices to indicate that no registers are live.
David Goodwin990d2852009-12-09 17:18:22 +0000368 for (unsigned i = 0; i < TRI->getNumRegs(); ++i)
369 KillIndices[i] = ~0u;
David Goodwin5e411782009-09-03 22:15:25 +0000370
371 // Determine the live-out physregs for this block.
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000372 if (!BB->empty() && BB->back().isReturn()) {
David Goodwin5e411782009-09-03 22:15:25 +0000373 // In a return block, examine the function live-out regs.
374 for (MachineRegisterInfo::liveout_iterator I = MRI.liveout_begin(),
375 E = MRI.liveout_end(); I != E; ++I) {
376 unsigned Reg = *I;
377 KillIndices[Reg] = BB->size();
378 // Repeat, for all subregs.
379 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
380 *Subreg; ++Subreg) {
381 KillIndices[*Subreg] = BB->size();
382 }
383 }
384 }
385 else {
386 // In a non-return block, examine the live-in regs of all successors.
387 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
388 SE = BB->succ_end(); SI != SE; ++SI) {
389 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
390 E = (*SI)->livein_end(); I != E; ++I) {
391 unsigned Reg = *I;
392 KillIndices[Reg] = BB->size();
393 // Repeat, for all subregs.
394 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
395 *Subreg; ++Subreg) {
396 KillIndices[*Subreg] = BB->size();
397 }
398 }
399 }
400 }
401}
402
David Goodwin8f909342009-09-23 16:35:25 +0000403bool SchedulePostRATDList::ToggleKillFlag(MachineInstr *MI,
404 MachineOperand &MO) {
405 // Setting kill flag...
406 if (!MO.isKill()) {
407 MO.setIsKill(true);
408 return false;
409 }
Jim Grosbach90013032010-05-14 21:19:48 +0000410
David Goodwin8f909342009-09-23 16:35:25 +0000411 // If MO itself is live, clear the kill flag...
412 if (KillIndices[MO.getReg()] != ~0u) {
413 MO.setIsKill(false);
414 return false;
415 }
416
417 // If any subreg of MO is live, then create an imp-def for that
418 // subreg and keep MO marked as killed.
Benjamin Kramer8bff4af2009-10-02 15:59:52 +0000419 MO.setIsKill(false);
David Goodwin8f909342009-09-23 16:35:25 +0000420 bool AllDead = true;
421 const unsigned SuperReg = MO.getReg();
422 for (const unsigned *Subreg = TRI->getSubRegisters(SuperReg);
423 *Subreg; ++Subreg) {
424 if (KillIndices[*Subreg] != ~0u) {
425 MI->addOperand(MachineOperand::CreateReg(*Subreg,
426 true /*IsDef*/,
427 true /*IsImp*/,
428 false /*IsKill*/,
429 false /*IsDead*/));
430 AllDead = false;
431 }
432 }
433
Dan Gohmanc1ae8c92009-10-21 01:44:44 +0000434 if(AllDead)
Benjamin Kramer8bff4af2009-10-02 15:59:52 +0000435 MO.setIsKill(true);
David Goodwin8f909342009-09-23 16:35:25 +0000436 return false;
437}
438
David Goodwin88a589c2009-08-25 17:03:05 +0000439/// FixupKills - Fix the register kill flags, they may have been made
440/// incorrect by instruction reordering.
441///
442void SchedulePostRATDList::FixupKills(MachineBasicBlock *MBB) {
David Greenee1b21292010-01-05 01:26:01 +0000443 DEBUG(dbgs() << "Fixup kills for BB#" << MBB->getNumber() << '\n');
David Goodwin88a589c2009-08-25 17:03:05 +0000444
445 std::set<unsigned> killedRegs;
446 BitVector ReservedRegs = TRI->getReservedRegs(MF);
David Goodwin5e411782009-09-03 22:15:25 +0000447
448 StartBlockForKills(MBB);
Jim Grosbach90013032010-05-14 21:19:48 +0000449
David Goodwin7886cd82009-08-29 00:11:13 +0000450 // Examine block from end to start...
David Goodwin88a589c2009-08-25 17:03:05 +0000451 unsigned Count = MBB->size();
452 for (MachineBasicBlock::iterator I = MBB->end(), E = MBB->begin();
453 I != E; --Count) {
454 MachineInstr *MI = --I;
Dale Johannesenb0812f12010-03-05 00:02:59 +0000455 if (MI->isDebugValue())
456 continue;
David Goodwin88a589c2009-08-25 17:03:05 +0000457
David Goodwin7886cd82009-08-29 00:11:13 +0000458 // Update liveness. Registers that are defed but not used in this
459 // instruction are now dead. Mark register and all subregs as they
460 // are completely defined.
461 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
462 MachineOperand &MO = MI->getOperand(i);
463 if (!MO.isReg()) continue;
464 unsigned Reg = MO.getReg();
465 if (Reg == 0) continue;
466 if (!MO.isDef()) continue;
467 // Ignore two-addr defs.
468 if (MI->isRegTiedToUseOperand(i)) continue;
Jim Grosbach90013032010-05-14 21:19:48 +0000469
David Goodwin7886cd82009-08-29 00:11:13 +0000470 KillIndices[Reg] = ~0u;
Jim Grosbach90013032010-05-14 21:19:48 +0000471
David Goodwin7886cd82009-08-29 00:11:13 +0000472 // Repeat for all subregs.
473 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
474 *Subreg; ++Subreg) {
475 KillIndices[*Subreg] = ~0u;
476 }
477 }
David Goodwin88a589c2009-08-25 17:03:05 +0000478
David Goodwin8f909342009-09-23 16:35:25 +0000479 // Examine all used registers and set/clear kill flag. When a
480 // register is used multiple times we only set the kill flag on
481 // the first use.
David Goodwin88a589c2009-08-25 17:03:05 +0000482 killedRegs.clear();
483 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
484 MachineOperand &MO = MI->getOperand(i);
485 if (!MO.isReg() || !MO.isUse()) continue;
486 unsigned Reg = MO.getReg();
487 if ((Reg == 0) || ReservedRegs.test(Reg)) continue;
488
David Goodwin7886cd82009-08-29 00:11:13 +0000489 bool kill = false;
490 if (killedRegs.find(Reg) == killedRegs.end()) {
491 kill = true;
492 // A register is not killed if any subregs are live...
493 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
494 *Subreg; ++Subreg) {
495 if (KillIndices[*Subreg] != ~0u) {
496 kill = false;
497 break;
498 }
499 }
500
501 // If subreg is not live, then register is killed if it became
502 // live in this instruction
503 if (kill)
504 kill = (KillIndices[Reg] == ~0u);
505 }
Jim Grosbach90013032010-05-14 21:19:48 +0000506
David Goodwin88a589c2009-08-25 17:03:05 +0000507 if (MO.isKill() != kill) {
David Greenee1b21292010-01-05 01:26:01 +0000508 DEBUG(dbgs() << "Fixing " << MO << " in ");
Jakob Stoklund Olesen15d75d92009-12-03 01:49:56 +0000509 // Warning: ToggleKillFlag may invalidate MO.
510 ToggleKillFlag(MI, MO);
David Goodwin88a589c2009-08-25 17:03:05 +0000511 DEBUG(MI->dump());
512 }
Jim Grosbach90013032010-05-14 21:19:48 +0000513
David Goodwin88a589c2009-08-25 17:03:05 +0000514 killedRegs.insert(Reg);
515 }
Jim Grosbach90013032010-05-14 21:19:48 +0000516
David Goodwina3251db2009-08-31 20:47:02 +0000517 // Mark any used register (that is not using undef) and subregs as
518 // now live...
David Goodwin7886cd82009-08-29 00:11:13 +0000519 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
520 MachineOperand &MO = MI->getOperand(i);
David Goodwina3251db2009-08-31 20:47:02 +0000521 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
David Goodwin7886cd82009-08-29 00:11:13 +0000522 unsigned Reg = MO.getReg();
523 if ((Reg == 0) || ReservedRegs.test(Reg)) continue;
524
David Goodwin7886cd82009-08-29 00:11:13 +0000525 KillIndices[Reg] = Count;
Jim Grosbach90013032010-05-14 21:19:48 +0000526
David Goodwin7886cd82009-08-29 00:11:13 +0000527 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
528 *Subreg; ++Subreg) {
529 KillIndices[*Subreg] = Count;
530 }
531 }
David Goodwin88a589c2009-08-25 17:03:05 +0000532 }
533}
534
Dan Gohman343f0c02008-11-19 23:18:57 +0000535//===----------------------------------------------------------------------===//
536// Top-Down Scheduling
537//===----------------------------------------------------------------------===//
538
539/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. Add it to
540/// the PendingQueue if the count reaches zero. Also update its cycle bound.
David Goodwin557bbe62009-11-20 19:32:48 +0000541void SchedulePostRATDList::ReleaseSucc(SUnit *SU, SDep *SuccEdge) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000542 SUnit *SuccSU = SuccEdge->getSUnit();
Reid Klecknerc277ab02009-09-30 20:15:38 +0000543
Dan Gohman343f0c02008-11-19 23:18:57 +0000544#ifndef NDEBUG
Reid Klecknerc277ab02009-09-30 20:15:38 +0000545 if (SuccSU->NumPredsLeft == 0) {
David Greenee1b21292010-01-05 01:26:01 +0000546 dbgs() << "*** Scheduling failed! ***\n";
Dan Gohman343f0c02008-11-19 23:18:57 +0000547 SuccSU->dump(this);
David Greenee1b21292010-01-05 01:26:01 +0000548 dbgs() << " has been released too many times!\n";
Torok Edwinc23197a2009-07-14 16:55:14 +0000549 llvm_unreachable(0);
Dan Gohman343f0c02008-11-19 23:18:57 +0000550 }
551#endif
Reid Klecknerc277ab02009-09-30 20:15:38 +0000552 --SuccSU->NumPredsLeft;
553
Andrew Trick89fd4372011-05-06 18:14:32 +0000554 // Standard scheduler algorithms will recompute the depth of the successor
Andrew Trick15ab3592011-05-06 17:09:08 +0000555 // here as such:
556 // SuccSU->setDepthToAtLeast(SU->getDepth() + SuccEdge->getLatency());
557 //
558 // However, we lazily compute node depth instead. Note that
559 // ScheduleNodeTopDown has already updated the depth of this node which causes
560 // all descendents to be marked dirty. Setting the successor depth explicitly
561 // here would cause depth to be recomputed for all its ancestors. If the
562 // successor is not yet ready (because of a transitively redundant edge) then
563 // this causes depth computation to be quadratic in the size of the DAG.
Jim Grosbach90013032010-05-14 21:19:48 +0000564
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000565 // If all the node's predecessors are scheduled, this node is ready
566 // to be scheduled. Ignore the special ExitSU node.
567 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
Dan Gohman343f0c02008-11-19 23:18:57 +0000568 PendingQueue.push_back(SuccSU);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000569}
570
571/// ReleaseSuccessors - Call ReleaseSucc on each of SU's successors.
David Goodwin557bbe62009-11-20 19:32:48 +0000572void SchedulePostRATDList::ReleaseSuccessors(SUnit *SU) {
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000573 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
David Goodwin4de099d2009-11-03 20:57:50 +0000574 I != E; ++I) {
David Goodwin557bbe62009-11-20 19:32:48 +0000575 ReleaseSucc(SU, &*I);
David Goodwin4de099d2009-11-03 20:57:50 +0000576 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000577}
578
579/// ScheduleNodeTopDown - Add the node to the schedule. Decrement the pending
580/// count of its successors. If a successor pending count is zero, add it to
581/// the Available queue.
David Goodwin557bbe62009-11-20 19:32:48 +0000582void SchedulePostRATDList::ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle) {
David Greenee1b21292010-01-05 01:26:01 +0000583 DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: ");
Dan Gohman343f0c02008-11-19 23:18:57 +0000584 DEBUG(SU->dump(this));
Jim Grosbach90013032010-05-14 21:19:48 +0000585
Dan Gohman343f0c02008-11-19 23:18:57 +0000586 Sequence.push_back(SU);
Jim Grosbach90013032010-05-14 21:19:48 +0000587 assert(CurCycle >= SU->getDepth() &&
David Goodwin4de099d2009-11-03 20:57:50 +0000588 "Node scheduled above its depth!");
David Goodwin557bbe62009-11-20 19:32:48 +0000589 SU->setDepthToAtLeast(CurCycle);
Dan Gohman343f0c02008-11-19 23:18:57 +0000590
David Goodwin557bbe62009-11-20 19:32:48 +0000591 ReleaseSuccessors(SU);
Dan Gohman343f0c02008-11-19 23:18:57 +0000592 SU->isScheduled = true;
593 AvailableQueue.ScheduledNode(SU);
594}
595
596/// ListScheduleTopDown - The main loop of list scheduling for top-down
597/// schedulers.
David Goodwin557bbe62009-11-20 19:32:48 +0000598void SchedulePostRATDList::ListScheduleTopDown() {
Dan Gohman343f0c02008-11-19 23:18:57 +0000599 unsigned CurCycle = 0;
Jim Grosbach90013032010-05-14 21:19:48 +0000600
David Goodwin4de099d2009-11-03 20:57:50 +0000601 // We're scheduling top-down but we're visiting the regions in
602 // bottom-up order, so we don't know the hazards at the start of a
603 // region. So assume no hazards (this should usually be ok as most
604 // blocks are a single region).
605 HazardRec->Reset();
606
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000607 // Release any successors of the special Entry node.
David Goodwin557bbe62009-11-20 19:32:48 +0000608 ReleaseSuccessors(&EntrySU);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000609
David Goodwin557bbe62009-11-20 19:32:48 +0000610 // Add all leaves to Available queue.
Dan Gohman343f0c02008-11-19 23:18:57 +0000611 for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
612 // It is available if it has no predecessors.
David Goodwin4de099d2009-11-03 20:57:50 +0000613 bool available = SUnits[i].Preds.empty();
David Goodwin4de099d2009-11-03 20:57:50 +0000614 if (available) {
Dan Gohman343f0c02008-11-19 23:18:57 +0000615 AvailableQueue.push(&SUnits[i]);
616 SUnits[i].isAvailable = true;
617 }
618 }
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000619
David Goodwin2ffb0ce2009-08-12 21:47:46 +0000620 // In any cycle where we can't schedule any instructions, we must
621 // stall or emit a noop, depending on the target.
Benjamin Kramerbe441c02009-09-06 12:10:17 +0000622 bool CycleHasInsts = false;
David Goodwin2ffb0ce2009-08-12 21:47:46 +0000623
Dan Gohman343f0c02008-11-19 23:18:57 +0000624 // While Available queue is not empty, grab the node with the highest
625 // priority. If it is not ready put it back. Schedule the node.
Dan Gohman2836c282009-01-16 01:33:36 +0000626 std::vector<SUnit*> NotReady;
Dan Gohman343f0c02008-11-19 23:18:57 +0000627 Sequence.reserve(SUnits.size());
628 while (!AvailableQueue.empty() || !PendingQueue.empty()) {
629 // Check to see if any of the pending instructions are ready to issue. If
630 // so, add them to the available queue.
Dan Gohman3f237442008-12-16 03:25:46 +0000631 unsigned MinDepth = ~0u;
Dan Gohman343f0c02008-11-19 23:18:57 +0000632 for (unsigned i = 0, e = PendingQueue.size(); i != e; ++i) {
David Goodwin557bbe62009-11-20 19:32:48 +0000633 if (PendingQueue[i]->getDepth() <= CurCycle) {
Dan Gohman343f0c02008-11-19 23:18:57 +0000634 AvailableQueue.push(PendingQueue[i]);
635 PendingQueue[i]->isAvailable = true;
636 PendingQueue[i] = PendingQueue.back();
637 PendingQueue.pop_back();
638 --i; --e;
David Goodwin557bbe62009-11-20 19:32:48 +0000639 } else if (PendingQueue[i]->getDepth() < MinDepth)
640 MinDepth = PendingQueue[i]->getDepth();
Dan Gohman343f0c02008-11-19 23:18:57 +0000641 }
David Goodwinc93d8372009-08-11 17:35:23 +0000642
Andrew Trick2da8bc82010-12-24 05:03:26 +0000643 DEBUG(dbgs() << "\n*** Examining Available\n"; AvailableQueue.dump(this));
David Goodwinc93d8372009-08-11 17:35:23 +0000644
Dan Gohman2836c282009-01-16 01:33:36 +0000645 SUnit *FoundSUnit = 0;
Dan Gohman2836c282009-01-16 01:33:36 +0000646 bool HasNoopHazards = false;
647 while (!AvailableQueue.empty()) {
648 SUnit *CurSUnit = AvailableQueue.pop();
649
650 ScheduleHazardRecognizer::HazardType HT =
Andrew Trick2da8bc82010-12-24 05:03:26 +0000651 HazardRec->getHazardType(CurSUnit, 0/*no stalls*/);
Dan Gohman2836c282009-01-16 01:33:36 +0000652 if (HT == ScheduleHazardRecognizer::NoHazard) {
653 FoundSUnit = CurSUnit;
654 break;
655 }
656
657 // Remember if this is a noop hazard.
658 HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard;
659
660 NotReady.push_back(CurSUnit);
661 }
662
663 // Add the nodes that aren't ready back onto the available list.
664 if (!NotReady.empty()) {
665 AvailableQueue.push_all(NotReady);
666 NotReady.clear();
667 }
668
David Goodwin4de099d2009-11-03 20:57:50 +0000669 // If we found a node to schedule...
Dan Gohman343f0c02008-11-19 23:18:57 +0000670 if (FoundSUnit) {
David Goodwin4de099d2009-11-03 20:57:50 +0000671 // ... schedule the node...
David Goodwin557bbe62009-11-20 19:32:48 +0000672 ScheduleNodeTopDown(FoundSUnit, CurCycle);
Dan Gohman2836c282009-01-16 01:33:36 +0000673 HazardRec->EmitInstruction(FoundSUnit);
Benjamin Kramerbe441c02009-09-06 12:10:17 +0000674 CycleHasInsts = true;
Andrew Trickcf9aa282011-06-01 03:27:56 +0000675 if (HazardRec->atIssueLimit()) {
676 DEBUG(dbgs() << "*** Max instructions per cycle " << CurCycle << '\n');
677 HazardRec->AdvanceCycle();
678 ++CurCycle;
679 CycleHasInsts = false;
680 }
Dan Gohman2836c282009-01-16 01:33:36 +0000681 } else {
Benjamin Kramerbe441c02009-09-06 12:10:17 +0000682 if (CycleHasInsts) {
David Greenee1b21292010-01-05 01:26:01 +0000683 DEBUG(dbgs() << "*** Finished cycle " << CurCycle << '\n');
David Goodwin2ffb0ce2009-08-12 21:47:46 +0000684 HazardRec->AdvanceCycle();
685 } else if (!HasNoopHazards) {
686 // Otherwise, we have a pipeline stall, but no other problem,
687 // just advance the current cycle and try again.
David Greenee1b21292010-01-05 01:26:01 +0000688 DEBUG(dbgs() << "*** Stall in cycle " << CurCycle << '\n');
David Goodwin2ffb0ce2009-08-12 21:47:46 +0000689 HazardRec->AdvanceCycle();
David Goodwin557bbe62009-11-20 19:32:48 +0000690 ++NumStalls;
David Goodwin2ffb0ce2009-08-12 21:47:46 +0000691 } else {
692 // Otherwise, we have no instructions to issue and we have instructions
693 // that will fault if we don't do this right. This is the case for
694 // processors without pipeline interlocks and other cases.
David Greenee1b21292010-01-05 01:26:01 +0000695 DEBUG(dbgs() << "*** Emitting noop in cycle " << CurCycle << '\n');
David Goodwin2ffb0ce2009-08-12 21:47:46 +0000696 HazardRec->EmitNoop();
697 Sequence.push_back(0); // NULL here means noop
David Goodwin557bbe62009-11-20 19:32:48 +0000698 ++NumNoops;
David Goodwin2ffb0ce2009-08-12 21:47:46 +0000699 }
700
Dan Gohman2836c282009-01-16 01:33:36 +0000701 ++CurCycle;
Benjamin Kramerbe441c02009-09-06 12:10:17 +0000702 CycleHasInsts = false;
Dan Gohman343f0c02008-11-19 23:18:57 +0000703 }
704 }
705
706#ifndef NDEBUG
Dan Gohmana1e6d362008-11-20 01:26:25 +0000707 VerifySchedule(/*isBottomUp=*/false);
Dan Gohman343f0c02008-11-19 23:18:57 +0000708#endif
709}
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000710
711//===----------------------------------------------------------------------===//
712// Public Constructor Functions
713//===----------------------------------------------------------------------===//
714
Andrew Trickc7d081b2012-02-08 21:22:53 +0000715FunctionPass *llvm::createPostRAScheduler() {
716 return new PostRAScheduler();
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000717}