blob: 66bcf8cec82e6e0f53973c0a70d9797847850668 [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 Goodwind94a4e52009-08-10 15:55:25 +000022#include "ExactHazardRecognizer.h"
23#include "SimpleHazardRecognizer.h"
Dan Gohman6dc75fe2009-02-06 17:12:10 +000024#include "ScheduleDAGInstrs.h"
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000025#include "llvm/CodeGen/Passes.h"
Dan Gohman343f0c02008-11-19 23:18:57 +000026#include "llvm/CodeGen/LatencyPriorityQueue.h"
27#include "llvm/CodeGen/SchedulerRegistry.h"
Dan Gohman3f237442008-12-16 03:25:46 +000028#include "llvm/CodeGen/MachineDominators.h"
David Goodwinc7951f82009-10-01 19:45:32 +000029#include "llvm/CodeGen/MachineFrameInfo.h"
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000030#include "llvm/CodeGen/MachineFunctionPass.h"
Dan Gohman3f237442008-12-16 03:25:46 +000031#include "llvm/CodeGen/MachineLoopInfo.h"
Dan Gohman21d90032008-11-25 00:52:40 +000032#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman2836c282009-01-16 01:33:36 +000033#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
Dan Gohmana70dca12009-10-09 23:27:56 +000034#include "llvm/Analysis/AliasAnalysis.h"
Dan Gohmanbed353d2009-02-10 23:29:38 +000035#include "llvm/Target/TargetLowering.h"
Dan Gohman79ce2762009-01-15 19:20:50 +000036#include "llvm/Target/TargetMachine.h"
Dan Gohman21d90032008-11-25 00:52:40 +000037#include "llvm/Target/TargetInstrInfo.h"
38#include "llvm/Target/TargetRegisterInfo.h"
David Goodwin0dad89f2009-09-30 00:10:16 +000039#include "llvm/Target/TargetSubtarget.h"
Chris Lattner459525d2008-01-14 19:00:06 +000040#include "llvm/Support/Compiler.h"
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000041#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000042#include "llvm/Support/ErrorHandling.h"
David Goodwin3a5f0d42009-08-11 01:44:26 +000043#include "llvm/Support/raw_ostream.h"
Dan Gohman343f0c02008-11-19 23:18:57 +000044#include "llvm/ADT/Statistic.h"
Dan Gohman21d90032008-11-25 00:52:40 +000045#include <map>
David Goodwin88a589c2009-08-25 17:03:05 +000046#include <set>
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000047using namespace llvm;
48
Dan Gohman2836c282009-01-16 01:33:36 +000049STATISTIC(NumNoops, "Number of noops inserted");
Dan Gohman343f0c02008-11-19 23:18:57 +000050STATISTIC(NumStalls, "Number of pipeline stalls");
51
David Goodwin471850a2009-10-01 21:46:35 +000052// Post-RA scheduling is enabled with
53// TargetSubtarget.enablePostRAScheduler(). This flag can be used to
54// override the target.
55static cl::opt<bool>
56EnablePostRAScheduler("post-RA-scheduler",
57 cl::desc("Enable scheduling after register allocation"),
David Goodwin9843a932009-10-01 22:19:57 +000058 cl::init(false), cl::Hidden);
Dan Gohman21d90032008-11-25 00:52:40 +000059static cl::opt<bool>
60EnableAntiDepBreaking("break-anti-dependencies",
Dan Gohman00dc84a2008-12-16 19:27:52 +000061 cl::desc("Break post-RA scheduling anti-dependencies"),
62 cl::init(true), cl::Hidden);
Dan Gohman2836c282009-01-16 01:33:36 +000063static cl::opt<bool>
64EnablePostRAHazardAvoidance("avoid-hazards",
David Goodwind94a4e52009-08-10 15:55:25 +000065 cl::desc("Enable exact hazard avoidance"),
David Goodwin5e411782009-09-03 22:15:25 +000066 cl::init(true), 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
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000078namespace {
Dan Gohman343f0c02008-11-19 23:18:57 +000079 class VISIBILITY_HIDDEN PostRAScheduler : public MachineFunctionPass {
Dan Gohmana70dca12009-10-09 23:27:56 +000080 AliasAnalysis *AA;
81
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000082 public:
83 static char ID;
Dan Gohman343f0c02008-11-19 23:18:57 +000084 PostRAScheduler() : MachineFunctionPass(&ID) {}
Dan Gohman21d90032008-11-25 00:52:40 +000085
Dan Gohman3f237442008-12-16 03:25:46 +000086 void getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman845012e2009-07-31 23:37:33 +000087 AU.setPreservesCFG();
Dan Gohmana70dca12009-10-09 23:27:56 +000088 AU.addRequired<AliasAnalysis>();
Dan Gohman3f237442008-12-16 03:25:46 +000089 AU.addRequired<MachineDominatorTree>();
90 AU.addPreserved<MachineDominatorTree>();
91 AU.addRequired<MachineLoopInfo>();
92 AU.addPreserved<MachineLoopInfo>();
93 MachineFunctionPass::getAnalysisUsage(AU);
94 }
95
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000096 const char *getPassName() const {
Dan Gohman21d90032008-11-25 00:52:40 +000097 return "Post RA top-down list latency scheduler";
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000098 }
99
100 bool runOnMachineFunction(MachineFunction &Fn);
101 };
Dan Gohman343f0c02008-11-19 23:18:57 +0000102 char PostRAScheduler::ID = 0;
103
104 class VISIBILITY_HIDDEN SchedulePostRATDList : public ScheduleDAGInstrs {
Dan Gohman343f0c02008-11-19 23:18:57 +0000105 /// AvailableQueue - The priority queue to use for the available SUnits.
106 ///
107 LatencyPriorityQueue AvailableQueue;
108
109 /// PendingQueue - This contains all of the instructions whose operands have
110 /// been issued, but their results are not ready yet (due to the latency of
111 /// the operation). Once the operands becomes available, the instruction is
112 /// added to the AvailableQueue.
113 std::vector<SUnit*> PendingQueue;
114
Dan Gohman21d90032008-11-25 00:52:40 +0000115 /// Topo - A topological ordering for SUnits.
116 ScheduleDAGTopologicalSort Topo;
Dan Gohman343f0c02008-11-19 23:18:57 +0000117
Dan Gohman79ce2762009-01-15 19:20:50 +0000118 /// AllocatableSet - The set of allocatable registers.
119 /// We'll be ignoring anti-dependencies on non-allocatable registers,
120 /// because they may not be safe to break.
121 const BitVector AllocatableSet;
122
Dan Gohman2836c282009-01-16 01:33:36 +0000123 /// HazardRec - The hazard recognizer to use.
124 ScheduleHazardRecognizer *HazardRec;
125
Dan Gohmana70dca12009-10-09 23:27:56 +0000126 /// AA - AliasAnalysis for making memory reference queries.
127 AliasAnalysis *AA;
128
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000129 /// Classes - For live regs that are only used in one register class in a
130 /// live range, the register class. If the register is not live, the
131 /// corresponding value is null. If the register is live but used in
132 /// multiple register classes, the corresponding value is -1 casted to a
133 /// pointer.
134 const TargetRegisterClass *
135 Classes[TargetRegisterInfo::FirstVirtualRegister];
136
137 /// RegRegs - Map registers to all their references within a live range.
138 std::multimap<unsigned, MachineOperand *> RegRefs;
139
Evan Cheng714e8bc2009-10-01 08:26:23 +0000140 /// KillIndices - The index of the most recent kill (proceding bottom-up),
141 /// or ~0u if the register is not live.
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000142 unsigned KillIndices[TargetRegisterInfo::FirstVirtualRegister];
143
Evan Cheng714e8bc2009-10-01 08:26:23 +0000144 /// DefIndices - The index of the most recent complete def (proceding bottom
145 /// up), or ~0u if the register is live.
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000146 unsigned DefIndices[TargetRegisterInfo::FirstVirtualRegister];
147
Evan Cheng714e8bc2009-10-01 08:26:23 +0000148 /// KeepRegs - A set of registers which are live and cannot be changed to
149 /// break anti-dependencies.
150 SmallSet<unsigned, 4> KeepRegs;
151
Dan Gohman21d90032008-11-25 00:52:40 +0000152 public:
Dan Gohman79ce2762009-01-15 19:20:50 +0000153 SchedulePostRATDList(MachineFunction &MF,
Dan Gohman3f237442008-12-16 03:25:46 +0000154 const MachineLoopInfo &MLI,
Dan Gohman2836c282009-01-16 01:33:36 +0000155 const MachineDominatorTree &MDT,
Dan Gohmana70dca12009-10-09 23:27:56 +0000156 ScheduleHazardRecognizer *HR,
157 AliasAnalysis *aa)
Dan Gohman79ce2762009-01-15 19:20:50 +0000158 : ScheduleDAGInstrs(MF, MLI, MDT), Topo(SUnits),
Dan Gohman2836c282009-01-16 01:33:36 +0000159 AllocatableSet(TRI->getAllocatableSet(MF)),
Dan Gohmana70dca12009-10-09 23:27:56 +0000160 HazardRec(HR), AA(aa) {}
Dan Gohman2836c282009-01-16 01:33:36 +0000161
162 ~SchedulePostRATDList() {
163 delete HazardRec;
164 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000165
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000166 /// StartBlock - Initialize register live-range state for scheduling in
167 /// this block.
168 ///
169 void StartBlock(MachineBasicBlock *BB);
170
171 /// Schedule - Schedule the instruction range using list scheduling.
172 ///
Dan Gohman343f0c02008-11-19 23:18:57 +0000173 void Schedule();
David Goodwin88a589c2009-08-25 17:03:05 +0000174
175 /// FixupKills - Fix register kill flags that have been made
176 /// invalid due to scheduling
177 ///
178 void FixupKills(MachineBasicBlock *MBB);
Dan Gohman343f0c02008-11-19 23:18:57 +0000179
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000180 /// Observe - Update liveness information to account for the current
181 /// instruction, which will not be scheduled.
182 ///
Dan Gohman47ac0f02009-02-11 04:27:20 +0000183 void Observe(MachineInstr *MI, unsigned Count);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000184
185 /// FinishBlock - Clean up register live-range state.
186 ///
187 void FinishBlock();
188
Dan Gohman343f0c02008-11-19 23:18:57 +0000189 private:
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000190 void PrescanInstruction(MachineInstr *MI);
191 void ScanInstruction(MachineInstr *MI, unsigned Count);
Dan Gohman54e4c362008-12-09 22:54:47 +0000192 void ReleaseSucc(SUnit *SU, SDep *SuccEdge);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000193 void ReleaseSuccessors(SUnit *SU);
Dan Gohman343f0c02008-11-19 23:18:57 +0000194 void ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle);
195 void ListScheduleTopDown();
Dan Gohman21d90032008-11-25 00:52:40 +0000196 bool BreakAntiDependencies();
Dan Gohman26255ad2009-08-12 01:33:27 +0000197 unsigned findSuitableFreeRegister(unsigned AntiDepReg,
198 unsigned LastNewReg,
199 const TargetRegisterClass *);
David Goodwin5e411782009-09-03 22:15:25 +0000200 void StartBlockForKills(MachineBasicBlock *BB);
David Goodwin8f909342009-09-23 16:35:25 +0000201
202 // ToggleKillFlag - Toggle a register operand kill flag. Other
203 // adjustments may be made to the instruction if necessary. Return
204 // true if the operand has been deleted, false if not.
205 bool ToggleKillFlag(MachineInstr *MI, MachineOperand &MO);
Dan Gohman343f0c02008-11-19 23:18:57 +0000206 };
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000207}
208
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000209/// isSchedulingBoundary - Test if the given instruction should be
210/// considered a scheduling boundary. This primarily includes labels
211/// and terminators.
212///
213static bool isSchedulingBoundary(const MachineInstr *MI,
214 const MachineFunction &MF) {
215 // Terminators and labels can't be scheduled around.
216 if (MI->getDesc().isTerminator() || MI->isLabel())
217 return true;
218
Dan Gohmanbed353d2009-02-10 23:29:38 +0000219 // Don't attempt to schedule around any instruction that modifies
220 // a stack-oriented pointer, as it's unlikely to be profitable. This
221 // saves compile time, because it doesn't require every single
222 // stack slot reference to depend on the instruction that does the
223 // modification.
224 const TargetLowering &TLI = *MF.getTarget().getTargetLowering();
225 if (MI->modifiesRegister(TLI.getStackPointerRegisterToSaveRestore()))
226 return true;
227
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000228 return false;
229}
230
Dan Gohman343f0c02008-11-19 23:18:57 +0000231bool PostRAScheduler::runOnMachineFunction(MachineFunction &Fn) {
Dan Gohman5bf7c2a2009-10-10 00:15:38 +0000232 AA = &getAnalysis<AliasAnalysis>();
233
David Goodwin471850a2009-10-01 21:46:35 +0000234 // Check for explicit enable/disable of post-ra scheduling.
235 if (EnablePostRAScheduler.getPosition() > 0) {
236 if (!EnablePostRAScheduler)
237 return true;
238 } else {
239 // Check that post-RA scheduling is enabled for this function
240 const TargetSubtarget &ST = Fn.getTarget().getSubtarget<TargetSubtarget>();
241 if (!ST.enablePostRAScheduler())
242 return true;
243 }
David Goodwin0dad89f2009-09-30 00:10:16 +0000244
David Goodwin3a5f0d42009-08-11 01:44:26 +0000245 DEBUG(errs() << "PostRAScheduler\n");
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000246
Dan Gohman3f237442008-12-16 03:25:46 +0000247 const MachineLoopInfo &MLI = getAnalysis<MachineLoopInfo>();
248 const MachineDominatorTree &MDT = getAnalysis<MachineDominatorTree>();
David Goodwind94a4e52009-08-10 15:55:25 +0000249 const InstrItineraryData &InstrItins = Fn.getTarget().getInstrItineraryData();
Dan Gohman2836c282009-01-16 01:33:36 +0000250 ScheduleHazardRecognizer *HR = EnablePostRAHazardAvoidance ?
David Goodwind94a4e52009-08-10 15:55:25 +0000251 (ScheduleHazardRecognizer *)new ExactHazardRecognizer(InstrItins) :
252 (ScheduleHazardRecognizer *)new SimpleHazardRecognizer();
Dan Gohman3f237442008-12-16 03:25:46 +0000253
Dan Gohmana70dca12009-10-09 23:27:56 +0000254 SchedulePostRATDList Scheduler(Fn, MLI, MDT, HR, AA);
Dan Gohman79ce2762009-01-15 19:20:50 +0000255
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000256 // Loop over all of the basic blocks
257 for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
Dan Gohman343f0c02008-11-19 23:18:57 +0000258 MBB != MBBe; ++MBB) {
David Goodwin1f152282009-09-01 18:34:03 +0000259#ifndef NDEBUG
260 // If DebugDiv > 0 then only schedule MBB with (ID % DebugDiv) == DebugMod
261 if (DebugDiv > 0) {
262 static int bbcnt = 0;
263 if (bbcnt++ % DebugDiv != DebugMod)
264 continue;
265 errs() << "*** DEBUG scheduling " << Fn.getFunction()->getNameStr() <<
266 ":MBB ID#" << MBB->getNumber() << " ***\n";
267 }
268#endif
269
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000270 // Initialize register live-range state for scheduling in this block.
271 Scheduler.StartBlock(MBB);
272
Dan Gohmanf7119392009-01-16 22:10:20 +0000273 // Schedule each sequence of instructions not interrupted by a label
274 // or anything else that effectively needs to shut down scheduling.
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000275 MachineBasicBlock::iterator Current = MBB->end();
Dan Gohman47ac0f02009-02-11 04:27:20 +0000276 unsigned Count = MBB->size(), CurrentCount = Count;
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000277 for (MachineBasicBlock::iterator I = Current; I != MBB->begin(); ) {
278 MachineInstr *MI = prior(I);
279 if (isSchedulingBoundary(MI, Fn)) {
Dan Gohman1274ced2009-03-10 18:10:43 +0000280 Scheduler.Run(MBB, I, Current, CurrentCount);
Evan Chengfb2e7522009-09-18 21:02:19 +0000281 Scheduler.EmitSchedule(0);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000282 Current = MI;
Dan Gohman47ac0f02009-02-11 04:27:20 +0000283 CurrentCount = Count - 1;
Dan Gohman1274ced2009-03-10 18:10:43 +0000284 Scheduler.Observe(MI, CurrentCount);
Dan Gohmanf7119392009-01-16 22:10:20 +0000285 }
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000286 I = MI;
Dan Gohman47ac0f02009-02-11 04:27:20 +0000287 --Count;
Dan Gohman43f07fb2009-02-03 18:57:45 +0000288 }
Dan Gohman47ac0f02009-02-11 04:27:20 +0000289 assert(Count == 0 && "Instruction count mismatch!");
Duncan Sands9e8bd0b2009-03-11 09:04:34 +0000290 assert((MBB->begin() == Current || CurrentCount != 0) &&
Dan Gohman1274ced2009-03-10 18:10:43 +0000291 "Instruction count mismatch!");
292 Scheduler.Run(MBB, MBB->begin(), Current, CurrentCount);
Evan Chengfb2e7522009-09-18 21:02:19 +0000293 Scheduler.EmitSchedule(0);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000294
295 // Clean up register live-range state.
296 Scheduler.FinishBlock();
David Goodwin88a589c2009-08-25 17:03:05 +0000297
David Goodwin5e411782009-09-03 22:15:25 +0000298 // Update register kills
David Goodwin88a589c2009-08-25 17:03:05 +0000299 Scheduler.FixupKills(MBB);
Dan Gohman343f0c02008-11-19 23:18:57 +0000300 }
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000301
302 return true;
303}
304
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000305/// StartBlock - Initialize register live-range state for scheduling in
306/// this block.
Dan Gohman21d90032008-11-25 00:52:40 +0000307///
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000308void SchedulePostRATDList::StartBlock(MachineBasicBlock *BB) {
309 // Call the superclass.
310 ScheduleDAGInstrs::StartBlock(BB);
Dan Gohman21d90032008-11-25 00:52:40 +0000311
David Goodwind94a4e52009-08-10 15:55:25 +0000312 // Reset the hazard recognizer.
313 HazardRec->Reset();
314
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000315 // Clear out the register class data.
316 std::fill(Classes, array_endof(Classes),
317 static_cast<const TargetRegisterClass *>(0));
Dan Gohman21d90032008-11-25 00:52:40 +0000318
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000319 // Initialize the indices to indicate that no registers are live.
Dan Gohman6c3643c2008-12-19 22:23:43 +0000320 std::fill(KillIndices, array_endof(KillIndices), ~0u);
Dan Gohman21d90032008-11-25 00:52:40 +0000321 std::fill(DefIndices, array_endof(DefIndices), BB->size());
322
Evan Cheng714e8bc2009-10-01 08:26:23 +0000323 // Clear "do not change" set.
324 KeepRegs.clear();
325
David Goodwin63bcbb72009-10-01 23:28:47 +0000326 bool IsReturnBlock = (!BB->empty() && BB->back().getDesc().isReturn());
327
Dan Gohman21d90032008-11-25 00:52:40 +0000328 // Determine the live-out physregs for this block.
David Goodwin63bcbb72009-10-01 23:28:47 +0000329 if (IsReturnBlock) {
Dan Gohman21d90032008-11-25 00:52:40 +0000330 // In a return block, examine the function live-out regs.
331 for (MachineRegisterInfo::liveout_iterator I = MRI.liveout_begin(),
332 E = MRI.liveout_end(); I != E; ++I) {
333 unsigned Reg = *I;
334 Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
335 KillIndices[Reg] = BB->size();
Dan Gohman6c3643c2008-12-19 22:23:43 +0000336 DefIndices[Reg] = ~0u;
Dan Gohman21d90032008-11-25 00:52:40 +0000337 // Repeat, for all aliases.
338 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
339 unsigned AliasReg = *Alias;
340 Classes[AliasReg] = reinterpret_cast<TargetRegisterClass *>(-1);
341 KillIndices[AliasReg] = BB->size();
Dan Gohman6c3643c2008-12-19 22:23:43 +0000342 DefIndices[AliasReg] = ~0u;
Dan Gohman21d90032008-11-25 00:52:40 +0000343 }
344 }
David Goodwinc7951f82009-10-01 19:45:32 +0000345 } else {
Dan Gohman21d90032008-11-25 00:52:40 +0000346 // In a non-return block, examine the live-in regs of all successors.
347 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
Dan Gohman47ac0f02009-02-11 04:27:20 +0000348 SE = BB->succ_end(); SI != SE; ++SI)
Dan Gohman21d90032008-11-25 00:52:40 +0000349 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
350 E = (*SI)->livein_end(); I != E; ++I) {
351 unsigned Reg = *I;
352 Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
353 KillIndices[Reg] = BB->size();
Dan Gohman6c3643c2008-12-19 22:23:43 +0000354 DefIndices[Reg] = ~0u;
Dan Gohman21d90032008-11-25 00:52:40 +0000355 // Repeat, for all aliases.
356 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
357 unsigned AliasReg = *Alias;
358 Classes[AliasReg] = reinterpret_cast<TargetRegisterClass *>(-1);
359 KillIndices[AliasReg] = BB->size();
Dan Gohman6c3643c2008-12-19 22:23:43 +0000360 DefIndices[AliasReg] = ~0u;
Dan Gohman21d90032008-11-25 00:52:40 +0000361 }
362 }
David Goodwin63bcbb72009-10-01 23:28:47 +0000363 }
Dan Gohman21d90032008-11-25 00:52:40 +0000364
David Goodwin63bcbb72009-10-01 23:28:47 +0000365 // Mark live-out callee-saved registers. In a return block this is
366 // all callee-saved registers. In non-return this is any
367 // callee-saved register that is not saved in the prolog.
368 const MachineFrameInfo *MFI = MF.getFrameInfo();
369 BitVector Pristine = MFI->getPristineRegs(BB);
370 for (const unsigned *I = TRI->getCalleeSavedRegs(); *I; ++I) {
371 unsigned Reg = *I;
372 if (!IsReturnBlock && !Pristine.test(Reg)) continue;
373 Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
374 KillIndices[Reg] = BB->size();
375 DefIndices[Reg] = ~0u;
376 // Repeat, for all aliases.
377 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
378 unsigned AliasReg = *Alias;
379 Classes[AliasReg] = reinterpret_cast<TargetRegisterClass *>(-1);
380 KillIndices[AliasReg] = BB->size();
381 DefIndices[AliasReg] = ~0u;
Dan Gohman21d90032008-11-25 00:52:40 +0000382 }
383 }
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000384}
385
386/// Schedule - Schedule the instruction range using list scheduling.
387///
388void SchedulePostRATDList::Schedule() {
David Goodwin3a5f0d42009-08-11 01:44:26 +0000389 DEBUG(errs() << "********** List Scheduling **********\n");
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000390
391 // Build the scheduling graph.
Dan Gohmana70dca12009-10-09 23:27:56 +0000392 BuildSchedGraph(AA);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000393
394 if (EnableAntiDepBreaking) {
395 if (BreakAntiDependencies()) {
396 // We made changes. Update the dependency graph.
397 // Theoretically we could update the graph in place:
398 // When a live range is changed to use a different register, remove
399 // the def's anti-dependence *and* output-dependence edges due to
400 // that register, and add new anti-dependence and output-dependence
401 // edges based on the next live range of the register.
402 SUnits.clear();
403 EntrySU = SUnit();
404 ExitSU = SUnit();
Dan Gohmana70dca12009-10-09 23:27:56 +0000405 BuildSchedGraph(AA);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000406 }
407 }
408
David Goodwind94a4e52009-08-10 15:55:25 +0000409 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
410 SUnits[su].dumpAll(this));
411
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000412 AvailableQueue.initNodes(SUnits);
413
414 ListScheduleTopDown();
415
416 AvailableQueue.releaseState();
417}
418
419/// Observe - Update liveness information to account for the current
420/// instruction, which will not be scheduled.
421///
Dan Gohman47ac0f02009-02-11 04:27:20 +0000422void SchedulePostRATDList::Observe(MachineInstr *MI, unsigned Count) {
Dan Gohman1274ced2009-03-10 18:10:43 +0000423 assert(Count < InsertPosIndex && "Instruction index out of expected range!");
424
425 // Any register which was defined within the previous scheduling region
426 // may have been rescheduled and its lifetime may overlap with registers
427 // in ways not reflected in our current liveness state. For each such
428 // register, adjust the liveness state to be conservatively correct.
429 for (unsigned Reg = 0; Reg != TargetRegisterInfo::FirstVirtualRegister; ++Reg)
430 if (DefIndices[Reg] < InsertPosIndex && DefIndices[Reg] >= Count) {
431 assert(KillIndices[Reg] == ~0u && "Clobbered register is live!");
432 // Mark this register to be non-renamable.
433 Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
434 // Move the def index to the end of the previous region, to reflect
435 // that the def could theoretically have been scheduled at the end.
436 DefIndices[Reg] = InsertPosIndex;
437 }
438
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000439 PrescanInstruction(MI);
Dan Gohman47ac0f02009-02-11 04:27:20 +0000440 ScanInstruction(MI, Count);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000441}
442
443/// FinishBlock - Clean up register live-range state.
444///
445void SchedulePostRATDList::FinishBlock() {
446 RegRefs.clear();
447
448 // Call the superclass.
449 ScheduleDAGInstrs::FinishBlock();
450}
451
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000452/// CriticalPathStep - Return the next SUnit after SU on the bottom-up
453/// critical path.
454static SDep *CriticalPathStep(SUnit *SU) {
455 SDep *Next = 0;
456 unsigned NextDepth = 0;
457 // Find the predecessor edge with the greatest depth.
458 for (SUnit::pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end();
459 P != PE; ++P) {
460 SUnit *PredSU = P->getSUnit();
461 unsigned PredLatency = P->getLatency();
462 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency;
463 // In the case of a latency tie, prefer an anti-dependency edge over
464 // other types of edges.
465 if (NextDepth < PredTotalLatency ||
466 (NextDepth == PredTotalLatency && P->getKind() == SDep::Anti)) {
467 NextDepth = PredTotalLatency;
468 Next = &*P;
469 }
470 }
471 return Next;
472}
473
474void SchedulePostRATDList::PrescanInstruction(MachineInstr *MI) {
475 // Scan the register operands for this instruction and update
476 // Classes and RegRefs.
477 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
478 MachineOperand &MO = MI->getOperand(i);
479 if (!MO.isReg()) continue;
480 unsigned Reg = MO.getReg();
481 if (Reg == 0) continue;
Chris Lattner2a386882009-07-29 21:36:49 +0000482 const TargetRegisterClass *NewRC = 0;
483
484 if (i < MI->getDesc().getNumOperands())
485 NewRC = MI->getDesc().OpInfo[i].getRegClass(TRI);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000486
487 // For now, only allow the register to be changed if its register
488 // class is consistent across all uses.
489 if (!Classes[Reg] && NewRC)
490 Classes[Reg] = NewRC;
491 else if (!NewRC || Classes[Reg] != NewRC)
492 Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
493
494 // Now check for aliases.
495 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
496 // If an alias of the reg is used during the live range, give up.
497 // Note that this allows us to skip checking if AntiDepReg
498 // overlaps with any of the aliases, among other things.
499 unsigned AliasReg = *Alias;
500 if (Classes[AliasReg]) {
501 Classes[AliasReg] = reinterpret_cast<TargetRegisterClass *>(-1);
502 Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
503 }
504 }
505
506 // If we're still willing to consider this register, note the reference.
507 if (Classes[Reg] != reinterpret_cast<TargetRegisterClass *>(-1))
508 RegRefs.insert(std::make_pair(Reg, &MO));
David Goodwinc7951f82009-10-01 19:45:32 +0000509
510 // It's not safe to change register allocation for source operands of
511 // that have special allocation requirements.
512 if (MO.isUse() && MI->getDesc().hasExtraSrcRegAllocReq()) {
513 if (KeepRegs.insert(Reg)) {
514 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
515 *Subreg; ++Subreg)
516 KeepRegs.insert(*Subreg);
517 }
518 }
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000519 }
520}
521
522void SchedulePostRATDList::ScanInstruction(MachineInstr *MI,
523 unsigned Count) {
524 // Update liveness.
525 // Proceding upwards, registers that are defed but not used in this
526 // instruction are now dead.
527 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
528 MachineOperand &MO = MI->getOperand(i);
529 if (!MO.isReg()) continue;
530 unsigned Reg = MO.getReg();
531 if (Reg == 0) continue;
532 if (!MO.isDef()) continue;
533 // Ignore two-addr defs.
Bob Wilsond9df5012009-04-09 17:16:43 +0000534 if (MI->isRegTiedToUseOperand(i)) continue;
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000535
536 DefIndices[Reg] = Count;
537 KillIndices[Reg] = ~0u;
Evan Cheng714e8bc2009-10-01 08:26:23 +0000538 assert(((KillIndices[Reg] == ~0u) !=
539 (DefIndices[Reg] == ~0u)) &&
540 "Kill and Def maps aren't consistent for Reg!");
541 KeepRegs.erase(Reg);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000542 Classes[Reg] = 0;
543 RegRefs.erase(Reg);
544 // Repeat, for all subregs.
545 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
546 *Subreg; ++Subreg) {
547 unsigned SubregReg = *Subreg;
548 DefIndices[SubregReg] = Count;
549 KillIndices[SubregReg] = ~0u;
Evan Cheng714e8bc2009-10-01 08:26:23 +0000550 KeepRegs.erase(SubregReg);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000551 Classes[SubregReg] = 0;
552 RegRefs.erase(SubregReg);
553 }
David Goodwin7886cd82009-08-29 00:11:13 +0000554 // Conservatively mark super-registers as unusable.
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000555 for (const unsigned *Super = TRI->getSuperRegisters(Reg);
556 *Super; ++Super) {
557 unsigned SuperReg = *Super;
558 Classes[SuperReg] = reinterpret_cast<TargetRegisterClass *>(-1);
559 }
560 }
561 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
562 MachineOperand &MO = MI->getOperand(i);
563 if (!MO.isReg()) continue;
564 unsigned Reg = MO.getReg();
565 if (Reg == 0) continue;
566 if (!MO.isUse()) continue;
567
Chris Lattner2a386882009-07-29 21:36:49 +0000568 const TargetRegisterClass *NewRC = 0;
569 if (i < MI->getDesc().getNumOperands())
570 NewRC = MI->getDesc().OpInfo[i].getRegClass(TRI);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000571
572 // For now, only allow the register to be changed if its register
573 // class is consistent across all uses.
574 if (!Classes[Reg] && NewRC)
575 Classes[Reg] = NewRC;
576 else if (!NewRC || Classes[Reg] != NewRC)
577 Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
578
579 RegRefs.insert(std::make_pair(Reg, &MO));
580
581 // It wasn't previously live but now it is, this is a kill.
582 if (KillIndices[Reg] == ~0u) {
583 KillIndices[Reg] = Count;
584 DefIndices[Reg] = ~0u;
Dan Gohman47ac0f02009-02-11 04:27:20 +0000585 assert(((KillIndices[Reg] == ~0u) !=
586 (DefIndices[Reg] == ~0u)) &&
587 "Kill and Def maps aren't consistent for Reg!");
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000588 }
589 // Repeat, for all aliases.
590 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
591 unsigned AliasReg = *Alias;
592 if (KillIndices[AliasReg] == ~0u) {
593 KillIndices[AliasReg] = Count;
594 DefIndices[AliasReg] = ~0u;
595 }
596 }
597 }
598}
599
Dan Gohman26255ad2009-08-12 01:33:27 +0000600unsigned
601SchedulePostRATDList::findSuitableFreeRegister(unsigned AntiDepReg,
602 unsigned LastNewReg,
603 const TargetRegisterClass *RC) {
604 for (TargetRegisterClass::iterator R = RC->allocation_order_begin(MF),
605 RE = RC->allocation_order_end(MF); R != RE; ++R) {
606 unsigned NewReg = *R;
607 // Don't replace a register with itself.
608 if (NewReg == AntiDepReg) continue;
609 // Don't replace a register with one that was recently used to repair
610 // an anti-dependence with this AntiDepReg, because that would
611 // re-introduce that anti-dependence.
612 if (NewReg == LastNewReg) continue;
613 // If NewReg is dead and NewReg's most recent def is not before
614 // AntiDepReg's kill, it's safe to replace AntiDepReg with NewReg.
615 assert(((KillIndices[AntiDepReg] == ~0u) != (DefIndices[AntiDepReg] == ~0u)) &&
616 "Kill and Def maps aren't consistent for AntiDepReg!");
617 assert(((KillIndices[NewReg] == ~0u) != (DefIndices[NewReg] == ~0u)) &&
618 "Kill and Def maps aren't consistent for NewReg!");
Dan Gohmanda277572009-08-12 01:44:20 +0000619 if (KillIndices[NewReg] != ~0u ||
620 Classes[NewReg] == reinterpret_cast<TargetRegisterClass *>(-1) ||
621 KillIndices[AntiDepReg] > DefIndices[NewReg])
Dan Gohman26255ad2009-08-12 01:33:27 +0000622 continue;
623 return NewReg;
624 }
625
626 // No registers are free and available!
627 return 0;
628}
629
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000630/// BreakAntiDependencies - Identifiy anti-dependencies along the critical path
631/// of the ScheduleDAG and break them by renaming registers.
632///
633bool SchedulePostRATDList::BreakAntiDependencies() {
634 // The code below assumes that there is at least one instruction,
635 // so just duck out immediately if the block is empty.
636 if (SUnits.empty()) return false;
637
638 // Find the node at the bottom of the critical path.
639 SUnit *Max = 0;
640 for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
641 SUnit *SU = &SUnits[i];
642 if (!Max || SU->getDepth() + SU->Latency > Max->getDepth() + Max->Latency)
643 Max = SU;
644 }
645
David Goodwin3a5f0d42009-08-11 01:44:26 +0000646 DEBUG(errs() << "Critical path has total latency "
647 << (Max->getDepth() + Max->Latency) << "\n");
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000648
649 // Track progress along the critical path through the SUnit graph as we walk
650 // the instructions.
651 SUnit *CriticalPathSU = Max;
652 MachineInstr *CriticalPathMI = CriticalPathSU->getInstr();
Dan Gohman21d90032008-11-25 00:52:40 +0000653
654 // Consider this pattern:
655 // A = ...
656 // ... = A
657 // A = ...
658 // ... = A
659 // A = ...
660 // ... = A
661 // A = ...
662 // ... = A
663 // There are three anti-dependencies here, and without special care,
664 // we'd break all of them using the same register:
665 // A = ...
666 // ... = A
667 // B = ...
668 // ... = B
669 // B = ...
670 // ... = B
671 // B = ...
672 // ... = B
673 // because at each anti-dependence, B is the first register that
674 // isn't A which is free. This re-introduces anti-dependencies
675 // at all but one of the original anti-dependencies that we were
676 // trying to break. To avoid this, keep track of the most recent
David Goodwinc93d8372009-08-11 17:35:23 +0000677 // register that each register was replaced with, avoid
Dan Gohman21d90032008-11-25 00:52:40 +0000678 // using it to repair an anti-dependence on the same register.
679 // This lets us produce this:
680 // A = ...
681 // ... = A
682 // B = ...
683 // ... = B
684 // C = ...
685 // ... = C
686 // B = ...
687 // ... = B
688 // This still has an anti-dependence on B, but at least it isn't on the
689 // original critical path.
690 //
691 // TODO: If we tracked more than one register here, we could potentially
692 // fix that remaining critical edge too. This is a little more involved,
693 // because unlike the most recent register, less recent registers should
694 // still be considered, though only if no other registers are available.
695 unsigned LastNewReg[TargetRegisterInfo::FirstVirtualRegister] = {};
696
Dan Gohman21d90032008-11-25 00:52:40 +0000697 // Attempt to break anti-dependence edges on the critical path. Walk the
698 // instructions from the bottom up, tracking information about liveness
699 // as we go to help determine which registers are available.
700 bool Changed = false;
Dan Gohman47ac0f02009-02-11 04:27:20 +0000701 unsigned Count = InsertPosIndex - 1;
702 for (MachineBasicBlock::iterator I = InsertPos, E = Begin;
Dan Gohman43f07fb2009-02-03 18:57:45 +0000703 I != E; --Count) {
704 MachineInstr *MI = --I;
Dan Gohman21d90032008-11-25 00:52:40 +0000705
Dan Gohman00dc84a2008-12-16 19:27:52 +0000706 // Check if this instruction has a dependence on the critical path that
707 // is an anti-dependence that we may be able to break. If it is, set
708 // AntiDepReg to the non-zero register associated with the anti-dependence.
709 //
710 // We limit our attention to the critical path as a heuristic to avoid
711 // breaking anti-dependence edges that aren't going to significantly
712 // impact the overall schedule. There are a limited number of registers
713 // and we want to save them for the important edges.
714 //
715 // TODO: Instructions with multiple defs could have multiple
716 // anti-dependencies. The current code here only knows how to break one
717 // edge per instruction. Note that we'd have to be able to break all of
718 // the anti-dependencies in an instruction in order to be effective.
719 unsigned AntiDepReg = 0;
720 if (MI == CriticalPathMI) {
721 if (SDep *Edge = CriticalPathStep(CriticalPathSU)) {
722 SUnit *NextSU = Edge->getSUnit();
723
724 // Only consider anti-dependence edges.
725 if (Edge->getKind() == SDep::Anti) {
726 AntiDepReg = Edge->getReg();
727 assert(AntiDepReg != 0 && "Anti-dependence on reg0?");
Dan Gohman49bb50e2009-01-16 21:57:43 +0000728 if (!AllocatableSet.test(AntiDepReg))
Evan Cheng714e8bc2009-10-01 08:26:23 +0000729 // Don't break anti-dependencies on non-allocatable registers.
730 AntiDepReg = 0;
731 else if (KeepRegs.count(AntiDepReg))
732 // Don't break anti-dependencies if an use down below requires
733 // this exact register.
Dan Gohman49bb50e2009-01-16 21:57:43 +0000734 AntiDepReg = 0;
735 else {
Dan Gohman00dc84a2008-12-16 19:27:52 +0000736 // If the SUnit has other dependencies on the SUnit that it
737 // anti-depends on, don't bother breaking the anti-dependency
738 // since those edges would prevent such units from being
739 // scheduled past each other regardless.
740 //
741 // Also, if there are dependencies on other SUnits with the
742 // same register as the anti-dependency, don't attempt to
743 // break it.
744 for (SUnit::pred_iterator P = CriticalPathSU->Preds.begin(),
745 PE = CriticalPathSU->Preds.end(); P != PE; ++P)
746 if (P->getSUnit() == NextSU ?
747 (P->getKind() != SDep::Anti || P->getReg() != AntiDepReg) :
748 (P->getKind() == SDep::Data && P->getReg() == AntiDepReg)) {
749 AntiDepReg = 0;
750 break;
751 }
752 }
753 }
754 CriticalPathSU = NextSU;
755 CriticalPathMI = CriticalPathSU->getInstr();
756 } else {
757 // We've reached the end of the critical path.
758 CriticalPathSU = 0;
759 CriticalPathMI = 0;
760 }
761 }
Dan Gohman21d90032008-11-25 00:52:40 +0000762
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000763 PrescanInstruction(MI);
764
Evan Cheng714e8bc2009-10-01 08:26:23 +0000765 if (MI->getDesc().hasExtraDefRegAllocReq())
766 // If this instruction's defs have special allocation requirement, don't
767 // break this anti-dependency.
768 AntiDepReg = 0;
769 else if (AntiDepReg) {
770 // If this instruction has a use of AntiDepReg, breaking it
771 // is invalid.
772 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
773 MachineOperand &MO = MI->getOperand(i);
774 if (!MO.isReg()) continue;
775 unsigned Reg = MO.getReg();
776 if (Reg == 0) continue;
777 if (MO.isUse() && AntiDepReg == Reg) {
778 AntiDepReg = 0;
779 break;
780 }
Dan Gohman21d90032008-11-25 00:52:40 +0000781 }
Dan Gohman21d90032008-11-25 00:52:40 +0000782 }
783
784 // Determine AntiDepReg's register class, if it is live and is
785 // consistently used within a single class.
786 const TargetRegisterClass *RC = AntiDepReg != 0 ? Classes[AntiDepReg] : 0;
Nick Lewyckya89d1022008-11-27 17:29:52 +0000787 assert((AntiDepReg == 0 || RC != NULL) &&
Dan Gohman21d90032008-11-25 00:52:40 +0000788 "Register should be live if it's causing an anti-dependence!");
789 if (RC == reinterpret_cast<TargetRegisterClass *>(-1))
790 AntiDepReg = 0;
791
792 // Look for a suitable register to use to break the anti-depenence.
793 //
794 // TODO: Instead of picking the first free register, consider which might
795 // be the best.
796 if (AntiDepReg != 0) {
Dan Gohman26255ad2009-08-12 01:33:27 +0000797 if (unsigned NewReg = findSuitableFreeRegister(AntiDepReg,
798 LastNewReg[AntiDepReg],
799 RC)) {
800 DEBUG(errs() << "Breaking anti-dependence edge on "
801 << TRI->getName(AntiDepReg)
802 << " with " << RegRefs.count(AntiDepReg) << " references"
803 << " using " << TRI->getName(NewReg) << "!\n");
Dan Gohman21d90032008-11-25 00:52:40 +0000804
Dan Gohman26255ad2009-08-12 01:33:27 +0000805 // Update the references to the old register to refer to the new
806 // register.
807 std::pair<std::multimap<unsigned, MachineOperand *>::iterator,
808 std::multimap<unsigned, MachineOperand *>::iterator>
809 Range = RegRefs.equal_range(AntiDepReg);
810 for (std::multimap<unsigned, MachineOperand *>::iterator
811 Q = Range.first, QE = Range.second; Q != QE; ++Q)
812 Q->second->setReg(NewReg);
Dan Gohman21d90032008-11-25 00:52:40 +0000813
Dan Gohman26255ad2009-08-12 01:33:27 +0000814 // We just went back in time and modified history; the
815 // liveness information for the anti-depenence reg is now
816 // inconsistent. Set the state as if it were dead.
817 Classes[NewReg] = Classes[AntiDepReg];
818 DefIndices[NewReg] = DefIndices[AntiDepReg];
819 KillIndices[NewReg] = KillIndices[AntiDepReg];
820 assert(((KillIndices[NewReg] == ~0u) !=
821 (DefIndices[NewReg] == ~0u)) &&
822 "Kill and Def maps aren't consistent for NewReg!");
Dan Gohman21d90032008-11-25 00:52:40 +0000823
Dan Gohman26255ad2009-08-12 01:33:27 +0000824 Classes[AntiDepReg] = 0;
825 DefIndices[AntiDepReg] = KillIndices[AntiDepReg];
826 KillIndices[AntiDepReg] = ~0u;
827 assert(((KillIndices[AntiDepReg] == ~0u) !=
828 (DefIndices[AntiDepReg] == ~0u)) &&
829 "Kill and Def maps aren't consistent for AntiDepReg!");
Dan Gohman21d90032008-11-25 00:52:40 +0000830
Dan Gohman26255ad2009-08-12 01:33:27 +0000831 RegRefs.erase(AntiDepReg);
832 Changed = true;
833 LastNewReg[AntiDepReg] = NewReg;
Dan Gohman21d90032008-11-25 00:52:40 +0000834 }
835 }
836
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000837 ScanInstruction(MI, Count);
Dan Gohman21d90032008-11-25 00:52:40 +0000838 }
Dan Gohman21d90032008-11-25 00:52:40 +0000839
840 return Changed;
841}
842
David Goodwin5e411782009-09-03 22:15:25 +0000843/// StartBlockForKills - Initialize register live-range state for updating kills
844///
845void SchedulePostRATDList::StartBlockForKills(MachineBasicBlock *BB) {
846 // Initialize the indices to indicate that no registers are live.
847 std::fill(KillIndices, array_endof(KillIndices), ~0u);
848
849 // Determine the live-out physregs for this block.
850 if (!BB->empty() && BB->back().getDesc().isReturn()) {
851 // In a return block, examine the function live-out regs.
852 for (MachineRegisterInfo::liveout_iterator I = MRI.liveout_begin(),
853 E = MRI.liveout_end(); I != E; ++I) {
854 unsigned Reg = *I;
855 KillIndices[Reg] = BB->size();
856 // Repeat, for all subregs.
857 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
858 *Subreg; ++Subreg) {
859 KillIndices[*Subreg] = BB->size();
860 }
861 }
862 }
863 else {
864 // In a non-return block, examine the live-in regs of all successors.
865 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
866 SE = BB->succ_end(); SI != SE; ++SI) {
867 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
868 E = (*SI)->livein_end(); I != E; ++I) {
869 unsigned Reg = *I;
870 KillIndices[Reg] = BB->size();
871 // Repeat, for all subregs.
872 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
873 *Subreg; ++Subreg) {
874 KillIndices[*Subreg] = BB->size();
875 }
876 }
877 }
878 }
879}
880
David Goodwin8f909342009-09-23 16:35:25 +0000881bool SchedulePostRATDList::ToggleKillFlag(MachineInstr *MI,
882 MachineOperand &MO) {
883 // Setting kill flag...
884 if (!MO.isKill()) {
885 MO.setIsKill(true);
886 return false;
887 }
888
889 // If MO itself is live, clear the kill flag...
890 if (KillIndices[MO.getReg()] != ~0u) {
891 MO.setIsKill(false);
892 return false;
893 }
894
895 // If any subreg of MO is live, then create an imp-def for that
896 // subreg and keep MO marked as killed.
Benjamin Kramer8bff4af2009-10-02 15:59:52 +0000897 MO.setIsKill(false);
David Goodwin8f909342009-09-23 16:35:25 +0000898 bool AllDead = true;
899 const unsigned SuperReg = MO.getReg();
900 for (const unsigned *Subreg = TRI->getSubRegisters(SuperReg);
901 *Subreg; ++Subreg) {
902 if (KillIndices[*Subreg] != ~0u) {
903 MI->addOperand(MachineOperand::CreateReg(*Subreg,
904 true /*IsDef*/,
905 true /*IsImp*/,
906 false /*IsKill*/,
907 false /*IsDead*/));
908 AllDead = false;
909 }
910 }
911
Benjamin Kramer8bff4af2009-10-02 15:59:52 +0000912 if(AllDead)
913 MO.setIsKill(true);
David Goodwin8f909342009-09-23 16:35:25 +0000914 return false;
915}
916
David Goodwin88a589c2009-08-25 17:03:05 +0000917/// FixupKills - Fix the register kill flags, they may have been made
918/// incorrect by instruction reordering.
919///
920void SchedulePostRATDList::FixupKills(MachineBasicBlock *MBB) {
921 DEBUG(errs() << "Fixup kills for BB ID#" << MBB->getNumber() << '\n');
922
923 std::set<unsigned> killedRegs;
924 BitVector ReservedRegs = TRI->getReservedRegs(MF);
David Goodwin5e411782009-09-03 22:15:25 +0000925
926 StartBlockForKills(MBB);
David Goodwin7886cd82009-08-29 00:11:13 +0000927
928 // Examine block from end to start...
David Goodwin88a589c2009-08-25 17:03:05 +0000929 unsigned Count = MBB->size();
930 for (MachineBasicBlock::iterator I = MBB->end(), E = MBB->begin();
931 I != E; --Count) {
932 MachineInstr *MI = --I;
933
David Goodwin7886cd82009-08-29 00:11:13 +0000934 // Update liveness. Registers that are defed but not used in this
935 // instruction are now dead. Mark register and all subregs as they
936 // are completely defined.
937 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
938 MachineOperand &MO = MI->getOperand(i);
939 if (!MO.isReg()) continue;
940 unsigned Reg = MO.getReg();
941 if (Reg == 0) continue;
942 if (!MO.isDef()) continue;
943 // Ignore two-addr defs.
944 if (MI->isRegTiedToUseOperand(i)) continue;
945
David Goodwin7886cd82009-08-29 00:11:13 +0000946 KillIndices[Reg] = ~0u;
947
948 // Repeat for all subregs.
949 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
950 *Subreg; ++Subreg) {
951 KillIndices[*Subreg] = ~0u;
952 }
953 }
David Goodwin88a589c2009-08-25 17:03:05 +0000954
David Goodwin8f909342009-09-23 16:35:25 +0000955 // Examine all used registers and set/clear kill flag. When a
956 // register is used multiple times we only set the kill flag on
957 // the first use.
David Goodwin88a589c2009-08-25 17:03:05 +0000958 killedRegs.clear();
959 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
960 MachineOperand &MO = MI->getOperand(i);
961 if (!MO.isReg() || !MO.isUse()) continue;
962 unsigned Reg = MO.getReg();
963 if ((Reg == 0) || ReservedRegs.test(Reg)) continue;
964
David Goodwin7886cd82009-08-29 00:11:13 +0000965 bool kill = false;
966 if (killedRegs.find(Reg) == killedRegs.end()) {
967 kill = true;
968 // A register is not killed if any subregs are live...
969 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
970 *Subreg; ++Subreg) {
971 if (KillIndices[*Subreg] != ~0u) {
972 kill = false;
973 break;
974 }
975 }
976
977 // If subreg is not live, then register is killed if it became
978 // live in this instruction
979 if (kill)
980 kill = (KillIndices[Reg] == ~0u);
981 }
982
David Goodwin88a589c2009-08-25 17:03:05 +0000983 if (MO.isKill() != kill) {
David Goodwin8f909342009-09-23 16:35:25 +0000984 bool removed = ToggleKillFlag(MI, MO);
985 if (removed) {
986 DEBUG(errs() << "Fixed <removed> in ");
987 } else {
988 DEBUG(errs() << "Fixed " << MO << " in ");
989 }
David Goodwin88a589c2009-08-25 17:03:05 +0000990 DEBUG(MI->dump());
991 }
David Goodwin7886cd82009-08-29 00:11:13 +0000992
David Goodwin88a589c2009-08-25 17:03:05 +0000993 killedRegs.insert(Reg);
994 }
David Goodwin7886cd82009-08-29 00:11:13 +0000995
David Goodwina3251db2009-08-31 20:47:02 +0000996 // Mark any used register (that is not using undef) and subregs as
997 // now live...
David Goodwin7886cd82009-08-29 00:11:13 +0000998 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
999 MachineOperand &MO = MI->getOperand(i);
David Goodwina3251db2009-08-31 20:47:02 +00001000 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
David Goodwin7886cd82009-08-29 00:11:13 +00001001 unsigned Reg = MO.getReg();
1002 if ((Reg == 0) || ReservedRegs.test(Reg)) continue;
1003
David Goodwin7886cd82009-08-29 00:11:13 +00001004 KillIndices[Reg] = Count;
1005
1006 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
1007 *Subreg; ++Subreg) {
1008 KillIndices[*Subreg] = Count;
1009 }
1010 }
David Goodwin88a589c2009-08-25 17:03:05 +00001011 }
1012}
1013
Dan Gohman343f0c02008-11-19 23:18:57 +00001014//===----------------------------------------------------------------------===//
1015// Top-Down Scheduling
1016//===----------------------------------------------------------------------===//
1017
1018/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. Add it to
1019/// the PendingQueue if the count reaches zero. Also update its cycle bound.
Dan Gohman54e4c362008-12-09 22:54:47 +00001020void SchedulePostRATDList::ReleaseSucc(SUnit *SU, SDep *SuccEdge) {
1021 SUnit *SuccSU = SuccEdge->getSUnit();
Reid Klecknerc277ab02009-09-30 20:15:38 +00001022
Dan Gohman343f0c02008-11-19 23:18:57 +00001023#ifndef NDEBUG
Reid Klecknerc277ab02009-09-30 20:15:38 +00001024 if (SuccSU->NumPredsLeft == 0) {
Chris Lattner103289e2009-08-23 07:19:13 +00001025 errs() << "*** Scheduling failed! ***\n";
Dan Gohman343f0c02008-11-19 23:18:57 +00001026 SuccSU->dump(this);
Chris Lattner103289e2009-08-23 07:19:13 +00001027 errs() << " has been released too many times!\n";
Torok Edwinc23197a2009-07-14 16:55:14 +00001028 llvm_unreachable(0);
Dan Gohman343f0c02008-11-19 23:18:57 +00001029 }
1030#endif
Reid Klecknerc277ab02009-09-30 20:15:38 +00001031 --SuccSU->NumPredsLeft;
1032
Dan Gohman343f0c02008-11-19 23:18:57 +00001033 // Compute how many cycles it will be before this actually becomes
1034 // available. This is the max of the start time of all predecessors plus
1035 // their latencies.
Dan Gohman3f237442008-12-16 03:25:46 +00001036 SuccSU->setDepthToAtLeast(SU->getDepth() + SuccEdge->getLatency());
Dan Gohman343f0c02008-11-19 23:18:57 +00001037
Dan Gohman9e64bbb2009-02-10 23:27:53 +00001038 // If all the node's predecessors are scheduled, this node is ready
1039 // to be scheduled. Ignore the special ExitSU node.
1040 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
Dan Gohman343f0c02008-11-19 23:18:57 +00001041 PendingQueue.push_back(SuccSU);
Dan Gohman9e64bbb2009-02-10 23:27:53 +00001042}
1043
1044/// ReleaseSuccessors - Call ReleaseSucc on each of SU's successors.
1045void SchedulePostRATDList::ReleaseSuccessors(SUnit *SU) {
1046 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
1047 I != E; ++I)
1048 ReleaseSucc(SU, &*I);
Dan Gohman343f0c02008-11-19 23:18:57 +00001049}
1050
1051/// ScheduleNodeTopDown - Add the node to the schedule. Decrement the pending
1052/// count of its successors. If a successor pending count is zero, add it to
1053/// the Available queue.
1054void SchedulePostRATDList::ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle) {
David Goodwin3a5f0d42009-08-11 01:44:26 +00001055 DEBUG(errs() << "*** Scheduling [" << CurCycle << "]: ");
Dan Gohman343f0c02008-11-19 23:18:57 +00001056 DEBUG(SU->dump(this));
1057
1058 Sequence.push_back(SU);
Dan Gohman3f237442008-12-16 03:25:46 +00001059 assert(CurCycle >= SU->getDepth() && "Node scheduled above its depth!");
1060 SU->setDepthToAtLeast(CurCycle);
Dan Gohman343f0c02008-11-19 23:18:57 +00001061
Dan Gohman9e64bbb2009-02-10 23:27:53 +00001062 ReleaseSuccessors(SU);
Dan Gohman343f0c02008-11-19 23:18:57 +00001063 SU->isScheduled = true;
1064 AvailableQueue.ScheduledNode(SU);
1065}
1066
1067/// ListScheduleTopDown - The main loop of list scheduling for top-down
1068/// schedulers.
1069void SchedulePostRATDList::ListScheduleTopDown() {
1070 unsigned CurCycle = 0;
1071
Dan Gohman9e64bbb2009-02-10 23:27:53 +00001072 // Release any successors of the special Entry node.
1073 ReleaseSuccessors(&EntrySU);
1074
Dan Gohman343f0c02008-11-19 23:18:57 +00001075 // All leaves to Available queue.
1076 for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
1077 // It is available if it has no predecessors.
1078 if (SUnits[i].Preds.empty()) {
1079 AvailableQueue.push(&SUnits[i]);
1080 SUnits[i].isAvailable = true;
1081 }
1082 }
Dan Gohman9e64bbb2009-02-10 23:27:53 +00001083
David Goodwin2ffb0ce2009-08-12 21:47:46 +00001084 // In any cycle where we can't schedule any instructions, we must
1085 // stall or emit a noop, depending on the target.
Benjamin Kramerbe441c02009-09-06 12:10:17 +00001086 bool CycleHasInsts = false;
David Goodwin2ffb0ce2009-08-12 21:47:46 +00001087
Dan Gohman343f0c02008-11-19 23:18:57 +00001088 // While Available queue is not empty, grab the node with the highest
1089 // priority. If it is not ready put it back. Schedule the node.
Dan Gohman2836c282009-01-16 01:33:36 +00001090 std::vector<SUnit*> NotReady;
Dan Gohman343f0c02008-11-19 23:18:57 +00001091 Sequence.reserve(SUnits.size());
1092 while (!AvailableQueue.empty() || !PendingQueue.empty()) {
1093 // Check to see if any of the pending instructions are ready to issue. If
1094 // so, add them to the available queue.
Dan Gohman3f237442008-12-16 03:25:46 +00001095 unsigned MinDepth = ~0u;
Dan Gohman343f0c02008-11-19 23:18:57 +00001096 for (unsigned i = 0, e = PendingQueue.size(); i != e; ++i) {
Dan Gohman3f237442008-12-16 03:25:46 +00001097 if (PendingQueue[i]->getDepth() <= CurCycle) {
Dan Gohman343f0c02008-11-19 23:18:57 +00001098 AvailableQueue.push(PendingQueue[i]);
1099 PendingQueue[i]->isAvailable = true;
1100 PendingQueue[i] = PendingQueue.back();
1101 PendingQueue.pop_back();
1102 --i; --e;
Dan Gohman3f237442008-12-16 03:25:46 +00001103 } else if (PendingQueue[i]->getDepth() < MinDepth)
1104 MinDepth = PendingQueue[i]->getDepth();
Dan Gohman343f0c02008-11-19 23:18:57 +00001105 }
David Goodwinc93d8372009-08-11 17:35:23 +00001106
David Goodwin7cd01182009-08-11 17:56:42 +00001107 DEBUG(errs() << "\n*** Examining Available\n";
1108 LatencyPriorityQueue q = AvailableQueue;
1109 while (!q.empty()) {
1110 SUnit *su = q.pop();
1111 errs() << "Height " << su->getHeight() << ": ";
1112 su->dump(this);
1113 });
David Goodwinc93d8372009-08-11 17:35:23 +00001114
Dan Gohman2836c282009-01-16 01:33:36 +00001115 SUnit *FoundSUnit = 0;
1116
1117 bool HasNoopHazards = false;
1118 while (!AvailableQueue.empty()) {
1119 SUnit *CurSUnit = AvailableQueue.pop();
1120
1121 ScheduleHazardRecognizer::HazardType HT =
1122 HazardRec->getHazardType(CurSUnit);
1123 if (HT == ScheduleHazardRecognizer::NoHazard) {
1124 FoundSUnit = CurSUnit;
1125 break;
1126 }
1127
1128 // Remember if this is a noop hazard.
1129 HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard;
1130
1131 NotReady.push_back(CurSUnit);
1132 }
1133
1134 // Add the nodes that aren't ready back onto the available list.
1135 if (!NotReady.empty()) {
1136 AvailableQueue.push_all(NotReady);
1137 NotReady.clear();
1138 }
1139
Dan Gohman343f0c02008-11-19 23:18:57 +00001140 // If we found a node to schedule, do it now.
1141 if (FoundSUnit) {
1142 ScheduleNodeTopDown(FoundSUnit, CurCycle);
Dan Gohman2836c282009-01-16 01:33:36 +00001143 HazardRec->EmitInstruction(FoundSUnit);
Benjamin Kramerbe441c02009-09-06 12:10:17 +00001144 CycleHasInsts = true;
Dan Gohman343f0c02008-11-19 23:18:57 +00001145
David Goodwind94a4e52009-08-10 15:55:25 +00001146 // If we are using the target-specific hazards, then don't
1147 // advance the cycle time just because we schedule a node. If
1148 // the target allows it we can schedule multiple nodes in the
1149 // same cycle.
1150 if (!EnablePostRAHazardAvoidance) {
1151 if (FoundSUnit->Latency) // Don't increment CurCycle for pseudo-ops!
1152 ++CurCycle;
1153 }
Dan Gohman2836c282009-01-16 01:33:36 +00001154 } else {
Benjamin Kramerbe441c02009-09-06 12:10:17 +00001155 if (CycleHasInsts) {
David Goodwin2ffb0ce2009-08-12 21:47:46 +00001156 DEBUG(errs() << "*** Finished cycle " << CurCycle << '\n');
1157 HazardRec->AdvanceCycle();
1158 } else if (!HasNoopHazards) {
1159 // Otherwise, we have a pipeline stall, but no other problem,
1160 // just advance the current cycle and try again.
1161 DEBUG(errs() << "*** Stall in cycle " << CurCycle << '\n');
1162 HazardRec->AdvanceCycle();
1163 ++NumStalls;
1164 } else {
1165 // Otherwise, we have no instructions to issue and we have instructions
1166 // that will fault if we don't do this right. This is the case for
1167 // processors without pipeline interlocks and other cases.
1168 DEBUG(errs() << "*** Emitting noop in cycle " << CurCycle << '\n');
1169 HazardRec->EmitNoop();
1170 Sequence.push_back(0); // NULL here means noop
1171 ++NumNoops;
1172 }
1173
Dan Gohman2836c282009-01-16 01:33:36 +00001174 ++CurCycle;
Benjamin Kramerbe441c02009-09-06 12:10:17 +00001175 CycleHasInsts = false;
Dan Gohman343f0c02008-11-19 23:18:57 +00001176 }
1177 }
1178
1179#ifndef NDEBUG
Dan Gohmana1e6d362008-11-20 01:26:25 +00001180 VerifySchedule(/*isBottomUp=*/false);
Dan Gohman343f0c02008-11-19 23:18:57 +00001181#endif
1182}
Dale Johannesene7e7d0d2007-07-13 17:13:54 +00001183
1184//===----------------------------------------------------------------------===//
1185// Public Constructor Functions
1186//===----------------------------------------------------------------------===//
1187
1188FunctionPass *llvm::createPostRAScheduler() {
Dan Gohman343f0c02008-11-19 23:18:57 +00001189 return new PostRAScheduler();
Dale Johannesene7e7d0d2007-07-13 17:13:54 +00001190}