blob: eddc4890306c0ea068154444ba36061c7ec3d160 [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 Gohmanbed353d2009-02-10 23:29:38 +000034#include "llvm/Target/TargetLowering.h"
Dan Gohman79ce2762009-01-15 19:20:50 +000035#include "llvm/Target/TargetMachine.h"
Dan Gohman21d90032008-11-25 00:52:40 +000036#include "llvm/Target/TargetInstrInfo.h"
37#include "llvm/Target/TargetRegisterInfo.h"
David Goodwin0dad89f2009-09-30 00:10:16 +000038#include "llvm/Target/TargetSubtarget.h"
Chris Lattner459525d2008-01-14 19:00:06 +000039#include "llvm/Support/Compiler.h"
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000040#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000041#include "llvm/Support/ErrorHandling.h"
David Goodwin3a5f0d42009-08-11 01:44:26 +000042#include "llvm/Support/raw_ostream.h"
Dan Gohman343f0c02008-11-19 23:18:57 +000043#include "llvm/ADT/Statistic.h"
Dan Gohman21d90032008-11-25 00:52:40 +000044#include <map>
David Goodwin88a589c2009-08-25 17:03:05 +000045#include <set>
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000046using namespace llvm;
47
Dan Gohman2836c282009-01-16 01:33:36 +000048STATISTIC(NumNoops, "Number of noops inserted");
Dan Gohman343f0c02008-11-19 23:18:57 +000049STATISTIC(NumStalls, "Number of pipeline stalls");
50
David Goodwin471850a2009-10-01 21:46:35 +000051// Post-RA scheduling is enabled with
52// TargetSubtarget.enablePostRAScheduler(). This flag can be used to
53// override the target.
54static cl::opt<bool>
55EnablePostRAScheduler("post-RA-scheduler",
56 cl::desc("Enable scheduling after register allocation"),
57 cl::init(false));
Dan Gohman21d90032008-11-25 00:52:40 +000058static cl::opt<bool>
59EnableAntiDepBreaking("break-anti-dependencies",
Dan Gohman00dc84a2008-12-16 19:27:52 +000060 cl::desc("Break post-RA scheduling anti-dependencies"),
61 cl::init(true), cl::Hidden);
Dan Gohman2836c282009-01-16 01:33:36 +000062static cl::opt<bool>
63EnablePostRAHazardAvoidance("avoid-hazards",
David Goodwind94a4e52009-08-10 15:55:25 +000064 cl::desc("Enable exact hazard avoidance"),
David Goodwin5e411782009-09-03 22:15:25 +000065 cl::init(true), cl::Hidden);
Dan Gohman2836c282009-01-16 01:33:36 +000066
David Goodwin1f152282009-09-01 18:34:03 +000067// If DebugDiv > 0 then only schedule MBB with (ID % DebugDiv) == DebugMod
68static cl::opt<int>
69DebugDiv("postra-sched-debugdiv",
70 cl::desc("Debug control MBBs that are scheduled"),
71 cl::init(0), cl::Hidden);
72static cl::opt<int>
73DebugMod("postra-sched-debugmod",
74 cl::desc("Debug control MBBs that are scheduled"),
75 cl::init(0), cl::Hidden);
76
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000077namespace {
Dan Gohman343f0c02008-11-19 23:18:57 +000078 class VISIBILITY_HIDDEN PostRAScheduler : public MachineFunctionPass {
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000079 public:
80 static char ID;
Dan Gohman343f0c02008-11-19 23:18:57 +000081 PostRAScheduler() : MachineFunctionPass(&ID) {}
Dan Gohman21d90032008-11-25 00:52:40 +000082
Dan Gohman3f237442008-12-16 03:25:46 +000083 void getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman845012e2009-07-31 23:37:33 +000084 AU.setPreservesCFG();
Dan Gohman3f237442008-12-16 03:25:46 +000085 AU.addRequired<MachineDominatorTree>();
86 AU.addPreserved<MachineDominatorTree>();
87 AU.addRequired<MachineLoopInfo>();
88 AU.addPreserved<MachineLoopInfo>();
89 MachineFunctionPass::getAnalysisUsage(AU);
90 }
91
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000092 const char *getPassName() const {
Dan Gohman21d90032008-11-25 00:52:40 +000093 return "Post RA top-down list latency scheduler";
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000094 }
95
96 bool runOnMachineFunction(MachineFunction &Fn);
97 };
Dan Gohman343f0c02008-11-19 23:18:57 +000098 char PostRAScheduler::ID = 0;
99
100 class VISIBILITY_HIDDEN SchedulePostRATDList : public ScheduleDAGInstrs {
Dan Gohman343f0c02008-11-19 23:18:57 +0000101 /// AvailableQueue - The priority queue to use for the available SUnits.
102 ///
103 LatencyPriorityQueue AvailableQueue;
104
105 /// PendingQueue - This contains all of the instructions whose operands have
106 /// been issued, but their results are not ready yet (due to the latency of
107 /// the operation). Once the operands becomes available, the instruction is
108 /// added to the AvailableQueue.
109 std::vector<SUnit*> PendingQueue;
110
Dan Gohman21d90032008-11-25 00:52:40 +0000111 /// Topo - A topological ordering for SUnits.
112 ScheduleDAGTopologicalSort Topo;
Dan Gohman343f0c02008-11-19 23:18:57 +0000113
Dan Gohman79ce2762009-01-15 19:20:50 +0000114 /// AllocatableSet - The set of allocatable registers.
115 /// We'll be ignoring anti-dependencies on non-allocatable registers,
116 /// because they may not be safe to break.
117 const BitVector AllocatableSet;
118
Dan Gohman2836c282009-01-16 01:33:36 +0000119 /// HazardRec - The hazard recognizer to use.
120 ScheduleHazardRecognizer *HazardRec;
121
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000122 /// Classes - For live regs that are only used in one register class in a
123 /// live range, the register class. If the register is not live, the
124 /// corresponding value is null. If the register is live but used in
125 /// multiple register classes, the corresponding value is -1 casted to a
126 /// pointer.
127 const TargetRegisterClass *
128 Classes[TargetRegisterInfo::FirstVirtualRegister];
129
130 /// RegRegs - Map registers to all their references within a live range.
131 std::multimap<unsigned, MachineOperand *> RegRefs;
132
Evan Cheng714e8bc2009-10-01 08:26:23 +0000133 /// KillIndices - The index of the most recent kill (proceding bottom-up),
134 /// or ~0u if the register is not live.
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000135 unsigned KillIndices[TargetRegisterInfo::FirstVirtualRegister];
136
Evan Cheng714e8bc2009-10-01 08:26:23 +0000137 /// DefIndices - The index of the most recent complete def (proceding bottom
138 /// up), or ~0u if the register is live.
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000139 unsigned DefIndices[TargetRegisterInfo::FirstVirtualRegister];
140
Evan Cheng714e8bc2009-10-01 08:26:23 +0000141 /// KeepRegs - A set of registers which are live and cannot be changed to
142 /// break anti-dependencies.
143 SmallSet<unsigned, 4> KeepRegs;
144
Dan Gohman21d90032008-11-25 00:52:40 +0000145 public:
Dan Gohman79ce2762009-01-15 19:20:50 +0000146 SchedulePostRATDList(MachineFunction &MF,
Dan Gohman3f237442008-12-16 03:25:46 +0000147 const MachineLoopInfo &MLI,
Dan Gohman2836c282009-01-16 01:33:36 +0000148 const MachineDominatorTree &MDT,
149 ScheduleHazardRecognizer *HR)
Dan Gohman79ce2762009-01-15 19:20:50 +0000150 : ScheduleDAGInstrs(MF, MLI, MDT), Topo(SUnits),
Dan Gohman2836c282009-01-16 01:33:36 +0000151 AllocatableSet(TRI->getAllocatableSet(MF)),
152 HazardRec(HR) {}
153
154 ~SchedulePostRATDList() {
155 delete HazardRec;
156 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000157
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000158 /// StartBlock - Initialize register live-range state for scheduling in
159 /// this block.
160 ///
161 void StartBlock(MachineBasicBlock *BB);
162
163 /// Schedule - Schedule the instruction range using list scheduling.
164 ///
Dan Gohman343f0c02008-11-19 23:18:57 +0000165 void Schedule();
David Goodwin88a589c2009-08-25 17:03:05 +0000166
167 /// FixupKills - Fix register kill flags that have been made
168 /// invalid due to scheduling
169 ///
170 void FixupKills(MachineBasicBlock *MBB);
Dan Gohman343f0c02008-11-19 23:18:57 +0000171
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000172 /// Observe - Update liveness information to account for the current
173 /// instruction, which will not be scheduled.
174 ///
Dan Gohman47ac0f02009-02-11 04:27:20 +0000175 void Observe(MachineInstr *MI, unsigned Count);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000176
177 /// FinishBlock - Clean up register live-range state.
178 ///
179 void FinishBlock();
180
Dan Gohman343f0c02008-11-19 23:18:57 +0000181 private:
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000182 void PrescanInstruction(MachineInstr *MI);
183 void ScanInstruction(MachineInstr *MI, unsigned Count);
Dan Gohman54e4c362008-12-09 22:54:47 +0000184 void ReleaseSucc(SUnit *SU, SDep *SuccEdge);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000185 void ReleaseSuccessors(SUnit *SU);
Dan Gohman343f0c02008-11-19 23:18:57 +0000186 void ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle);
187 void ListScheduleTopDown();
Dan Gohman21d90032008-11-25 00:52:40 +0000188 bool BreakAntiDependencies();
Dan Gohman26255ad2009-08-12 01:33:27 +0000189 unsigned findSuitableFreeRegister(unsigned AntiDepReg,
190 unsigned LastNewReg,
191 const TargetRegisterClass *);
David Goodwin5e411782009-09-03 22:15:25 +0000192 void StartBlockForKills(MachineBasicBlock *BB);
David Goodwin8f909342009-09-23 16:35:25 +0000193
194 // ToggleKillFlag - Toggle a register operand kill flag. Other
195 // adjustments may be made to the instruction if necessary. Return
196 // true if the operand has been deleted, false if not.
197 bool ToggleKillFlag(MachineInstr *MI, MachineOperand &MO);
Dan Gohman343f0c02008-11-19 23:18:57 +0000198 };
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000199}
200
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000201/// isSchedulingBoundary - Test if the given instruction should be
202/// considered a scheduling boundary. This primarily includes labels
203/// and terminators.
204///
205static bool isSchedulingBoundary(const MachineInstr *MI,
206 const MachineFunction &MF) {
207 // Terminators and labels can't be scheduled around.
208 if (MI->getDesc().isTerminator() || MI->isLabel())
209 return true;
210
Dan Gohmanbed353d2009-02-10 23:29:38 +0000211 // Don't attempt to schedule around any instruction that modifies
212 // a stack-oriented pointer, as it's unlikely to be profitable. This
213 // saves compile time, because it doesn't require every single
214 // stack slot reference to depend on the instruction that does the
215 // modification.
216 const TargetLowering &TLI = *MF.getTarget().getTargetLowering();
217 if (MI->modifiesRegister(TLI.getStackPointerRegisterToSaveRestore()))
218 return true;
219
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000220 return false;
221}
222
Dan Gohman343f0c02008-11-19 23:18:57 +0000223bool PostRAScheduler::runOnMachineFunction(MachineFunction &Fn) {
David Goodwin471850a2009-10-01 21:46:35 +0000224 // Check for explicit enable/disable of post-ra scheduling.
225 if (EnablePostRAScheduler.getPosition() > 0) {
226 if (!EnablePostRAScheduler)
227 return true;
228 } else {
229 // Check that post-RA scheduling is enabled for this function
230 const TargetSubtarget &ST = Fn.getTarget().getSubtarget<TargetSubtarget>();
231 if (!ST.enablePostRAScheduler())
232 return true;
233 }
David Goodwin0dad89f2009-09-30 00:10:16 +0000234
David Goodwin3a5f0d42009-08-11 01:44:26 +0000235 DEBUG(errs() << "PostRAScheduler\n");
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000236
Dan Gohman3f237442008-12-16 03:25:46 +0000237 const MachineLoopInfo &MLI = getAnalysis<MachineLoopInfo>();
238 const MachineDominatorTree &MDT = getAnalysis<MachineDominatorTree>();
David Goodwind94a4e52009-08-10 15:55:25 +0000239 const InstrItineraryData &InstrItins = Fn.getTarget().getInstrItineraryData();
Dan Gohman2836c282009-01-16 01:33:36 +0000240 ScheduleHazardRecognizer *HR = EnablePostRAHazardAvoidance ?
David Goodwind94a4e52009-08-10 15:55:25 +0000241 (ScheduleHazardRecognizer *)new ExactHazardRecognizer(InstrItins) :
242 (ScheduleHazardRecognizer *)new SimpleHazardRecognizer();
Dan Gohman3f237442008-12-16 03:25:46 +0000243
Dan Gohman2836c282009-01-16 01:33:36 +0000244 SchedulePostRATDList Scheduler(Fn, MLI, MDT, HR);
Dan Gohman79ce2762009-01-15 19:20:50 +0000245
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000246 // Loop over all of the basic blocks
247 for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
Dan Gohman343f0c02008-11-19 23:18:57 +0000248 MBB != MBBe; ++MBB) {
David Goodwin1f152282009-09-01 18:34:03 +0000249#ifndef NDEBUG
250 // If DebugDiv > 0 then only schedule MBB with (ID % DebugDiv) == DebugMod
251 if (DebugDiv > 0) {
252 static int bbcnt = 0;
253 if (bbcnt++ % DebugDiv != DebugMod)
254 continue;
255 errs() << "*** DEBUG scheduling " << Fn.getFunction()->getNameStr() <<
256 ":MBB ID#" << MBB->getNumber() << " ***\n";
257 }
258#endif
259
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000260 // Initialize register live-range state for scheduling in this block.
261 Scheduler.StartBlock(MBB);
262
Dan Gohmanf7119392009-01-16 22:10:20 +0000263 // Schedule each sequence of instructions not interrupted by a label
264 // or anything else that effectively needs to shut down scheduling.
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000265 MachineBasicBlock::iterator Current = MBB->end();
Dan Gohman47ac0f02009-02-11 04:27:20 +0000266 unsigned Count = MBB->size(), CurrentCount = Count;
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000267 for (MachineBasicBlock::iterator I = Current; I != MBB->begin(); ) {
268 MachineInstr *MI = prior(I);
269 if (isSchedulingBoundary(MI, Fn)) {
Dan Gohman1274ced2009-03-10 18:10:43 +0000270 Scheduler.Run(MBB, I, Current, CurrentCount);
Evan Chengfb2e7522009-09-18 21:02:19 +0000271 Scheduler.EmitSchedule(0);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000272 Current = MI;
Dan Gohman47ac0f02009-02-11 04:27:20 +0000273 CurrentCount = Count - 1;
Dan Gohman1274ced2009-03-10 18:10:43 +0000274 Scheduler.Observe(MI, CurrentCount);
Dan Gohmanf7119392009-01-16 22:10:20 +0000275 }
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000276 I = MI;
Dan Gohman47ac0f02009-02-11 04:27:20 +0000277 --Count;
Dan Gohman43f07fb2009-02-03 18:57:45 +0000278 }
Dan Gohman47ac0f02009-02-11 04:27:20 +0000279 assert(Count == 0 && "Instruction count mismatch!");
Duncan Sands9e8bd0b2009-03-11 09:04:34 +0000280 assert((MBB->begin() == Current || CurrentCount != 0) &&
Dan Gohman1274ced2009-03-10 18:10:43 +0000281 "Instruction count mismatch!");
282 Scheduler.Run(MBB, MBB->begin(), Current, CurrentCount);
Evan Chengfb2e7522009-09-18 21:02:19 +0000283 Scheduler.EmitSchedule(0);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000284
285 // Clean up register live-range state.
286 Scheduler.FinishBlock();
David Goodwin88a589c2009-08-25 17:03:05 +0000287
David Goodwin5e411782009-09-03 22:15:25 +0000288 // Update register kills
David Goodwin88a589c2009-08-25 17:03:05 +0000289 Scheduler.FixupKills(MBB);
Dan Gohman343f0c02008-11-19 23:18:57 +0000290 }
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000291
292 return true;
293}
294
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000295/// StartBlock - Initialize register live-range state for scheduling in
296/// this block.
Dan Gohman21d90032008-11-25 00:52:40 +0000297///
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000298void SchedulePostRATDList::StartBlock(MachineBasicBlock *BB) {
299 // Call the superclass.
300 ScheduleDAGInstrs::StartBlock(BB);
Dan Gohman21d90032008-11-25 00:52:40 +0000301
David Goodwind94a4e52009-08-10 15:55:25 +0000302 // Reset the hazard recognizer.
303 HazardRec->Reset();
304
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000305 // Clear out the register class data.
306 std::fill(Classes, array_endof(Classes),
307 static_cast<const TargetRegisterClass *>(0));
Dan Gohman21d90032008-11-25 00:52:40 +0000308
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000309 // Initialize the indices to indicate that no registers are live.
Dan Gohman6c3643c2008-12-19 22:23:43 +0000310 std::fill(KillIndices, array_endof(KillIndices), ~0u);
Dan Gohman21d90032008-11-25 00:52:40 +0000311 std::fill(DefIndices, array_endof(DefIndices), BB->size());
312
Evan Cheng714e8bc2009-10-01 08:26:23 +0000313 // Clear "do not change" set.
314 KeepRegs.clear();
315
Dan Gohman21d90032008-11-25 00:52:40 +0000316 // Determine the live-out physregs for this block.
David Goodwinc7951f82009-10-01 19:45:32 +0000317 if (!BB->empty() && BB->back().getDesc().isReturn()) {
Dan Gohman21d90032008-11-25 00:52:40 +0000318 // In a return block, examine the function live-out regs.
319 for (MachineRegisterInfo::liveout_iterator I = MRI.liveout_begin(),
320 E = MRI.liveout_end(); I != E; ++I) {
321 unsigned Reg = *I;
322 Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
323 KillIndices[Reg] = BB->size();
Dan Gohman6c3643c2008-12-19 22:23:43 +0000324 DefIndices[Reg] = ~0u;
Dan Gohman21d90032008-11-25 00:52:40 +0000325 // Repeat, for all aliases.
326 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
327 unsigned AliasReg = *Alias;
328 Classes[AliasReg] = reinterpret_cast<TargetRegisterClass *>(-1);
329 KillIndices[AliasReg] = BB->size();
Dan Gohman6c3643c2008-12-19 22:23:43 +0000330 DefIndices[AliasReg] = ~0u;
Dan Gohman21d90032008-11-25 00:52:40 +0000331 }
332 }
David Goodwinc7951f82009-10-01 19:45:32 +0000333 } else {
Dan Gohman21d90032008-11-25 00:52:40 +0000334 // In a non-return block, examine the live-in regs of all successors.
335 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
Dan Gohman47ac0f02009-02-11 04:27:20 +0000336 SE = BB->succ_end(); SI != SE; ++SI)
Dan Gohman21d90032008-11-25 00:52:40 +0000337 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
338 E = (*SI)->livein_end(); I != E; ++I) {
339 unsigned Reg = *I;
340 Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
341 KillIndices[Reg] = BB->size();
Dan Gohman6c3643c2008-12-19 22:23:43 +0000342 DefIndices[Reg] = ~0u;
Dan Gohman21d90032008-11-25 00:52:40 +0000343 // Repeat, for all aliases.
344 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
345 unsigned AliasReg = *Alias;
346 Classes[AliasReg] = reinterpret_cast<TargetRegisterClass *>(-1);
347 KillIndices[AliasReg] = BB->size();
Dan Gohman6c3643c2008-12-19 22:23:43 +0000348 DefIndices[AliasReg] = ~0u;
Dan Gohman21d90032008-11-25 00:52:40 +0000349 }
350 }
351
David Goodwinc7951f82009-10-01 19:45:32 +0000352 // Also mark as live-out any callee-saved registers that were not
353 // saved in the prolog.
354 const MachineFrameInfo *MFI = MF.getFrameInfo();
355 BitVector Pristine = MFI->getPristineRegs(BB);
356 for (const unsigned *I = TRI->getCalleeSavedRegs(); *I; ++I) {
357 unsigned Reg = *I;
358 if (!Pristine.test(Reg)) continue;
359 Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
360 KillIndices[Reg] = BB->size();
361 DefIndices[Reg] = ~0u;
362 // Repeat, for all aliases.
363 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
364 unsigned AliasReg = *Alias;
365 Classes[AliasReg] = reinterpret_cast<TargetRegisterClass *>(-1);
366 KillIndices[AliasReg] = BB->size();
367 DefIndices[AliasReg] = ~0u;
368 }
Dan Gohman21d90032008-11-25 00:52:40 +0000369 }
370 }
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000371}
372
373/// Schedule - Schedule the instruction range using list scheduling.
374///
375void SchedulePostRATDList::Schedule() {
David Goodwin3a5f0d42009-08-11 01:44:26 +0000376 DEBUG(errs() << "********** List Scheduling **********\n");
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000377
378 // Build the scheduling graph.
379 BuildSchedGraph();
380
381 if (EnableAntiDepBreaking) {
382 if (BreakAntiDependencies()) {
383 // We made changes. Update the dependency graph.
384 // Theoretically we could update the graph in place:
385 // When a live range is changed to use a different register, remove
386 // the def's anti-dependence *and* output-dependence edges due to
387 // that register, and add new anti-dependence and output-dependence
388 // edges based on the next live range of the register.
389 SUnits.clear();
390 EntrySU = SUnit();
391 ExitSU = SUnit();
392 BuildSchedGraph();
393 }
394 }
395
David Goodwind94a4e52009-08-10 15:55:25 +0000396 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
397 SUnits[su].dumpAll(this));
398
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000399 AvailableQueue.initNodes(SUnits);
400
401 ListScheduleTopDown();
402
403 AvailableQueue.releaseState();
404}
405
406/// Observe - Update liveness information to account for the current
407/// instruction, which will not be scheduled.
408///
Dan Gohman47ac0f02009-02-11 04:27:20 +0000409void SchedulePostRATDList::Observe(MachineInstr *MI, unsigned Count) {
Dan Gohman1274ced2009-03-10 18:10:43 +0000410 assert(Count < InsertPosIndex && "Instruction index out of expected range!");
411
412 // Any register which was defined within the previous scheduling region
413 // may have been rescheduled and its lifetime may overlap with registers
414 // in ways not reflected in our current liveness state. For each such
415 // register, adjust the liveness state to be conservatively correct.
416 for (unsigned Reg = 0; Reg != TargetRegisterInfo::FirstVirtualRegister; ++Reg)
417 if (DefIndices[Reg] < InsertPosIndex && DefIndices[Reg] >= Count) {
418 assert(KillIndices[Reg] == ~0u && "Clobbered register is live!");
419 // Mark this register to be non-renamable.
420 Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
421 // Move the def index to the end of the previous region, to reflect
422 // that the def could theoretically have been scheduled at the end.
423 DefIndices[Reg] = InsertPosIndex;
424 }
425
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000426 PrescanInstruction(MI);
Dan Gohman47ac0f02009-02-11 04:27:20 +0000427 ScanInstruction(MI, Count);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000428}
429
430/// FinishBlock - Clean up register live-range state.
431///
432void SchedulePostRATDList::FinishBlock() {
433 RegRefs.clear();
434
435 // Call the superclass.
436 ScheduleDAGInstrs::FinishBlock();
437}
438
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000439/// CriticalPathStep - Return the next SUnit after SU on the bottom-up
440/// critical path.
441static SDep *CriticalPathStep(SUnit *SU) {
442 SDep *Next = 0;
443 unsigned NextDepth = 0;
444 // Find the predecessor edge with the greatest depth.
445 for (SUnit::pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end();
446 P != PE; ++P) {
447 SUnit *PredSU = P->getSUnit();
448 unsigned PredLatency = P->getLatency();
449 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency;
450 // In the case of a latency tie, prefer an anti-dependency edge over
451 // other types of edges.
452 if (NextDepth < PredTotalLatency ||
453 (NextDepth == PredTotalLatency && P->getKind() == SDep::Anti)) {
454 NextDepth = PredTotalLatency;
455 Next = &*P;
456 }
457 }
458 return Next;
459}
460
461void SchedulePostRATDList::PrescanInstruction(MachineInstr *MI) {
462 // Scan the register operands for this instruction and update
463 // Classes and RegRefs.
464 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
465 MachineOperand &MO = MI->getOperand(i);
466 if (!MO.isReg()) continue;
467 unsigned Reg = MO.getReg();
468 if (Reg == 0) continue;
Chris Lattner2a386882009-07-29 21:36:49 +0000469 const TargetRegisterClass *NewRC = 0;
470
471 if (i < MI->getDesc().getNumOperands())
472 NewRC = MI->getDesc().OpInfo[i].getRegClass(TRI);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000473
474 // For now, only allow the register to be changed if its register
475 // class is consistent across all uses.
476 if (!Classes[Reg] && NewRC)
477 Classes[Reg] = NewRC;
478 else if (!NewRC || Classes[Reg] != NewRC)
479 Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
480
481 // Now check for aliases.
482 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
483 // If an alias of the reg is used during the live range, give up.
484 // Note that this allows us to skip checking if AntiDepReg
485 // overlaps with any of the aliases, among other things.
486 unsigned AliasReg = *Alias;
487 if (Classes[AliasReg]) {
488 Classes[AliasReg] = reinterpret_cast<TargetRegisterClass *>(-1);
489 Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
490 }
491 }
492
493 // If we're still willing to consider this register, note the reference.
494 if (Classes[Reg] != reinterpret_cast<TargetRegisterClass *>(-1))
495 RegRefs.insert(std::make_pair(Reg, &MO));
David Goodwinc7951f82009-10-01 19:45:32 +0000496
497 // It's not safe to change register allocation for source operands of
498 // that have special allocation requirements.
499 if (MO.isUse() && MI->getDesc().hasExtraSrcRegAllocReq()) {
500 if (KeepRegs.insert(Reg)) {
501 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
502 *Subreg; ++Subreg)
503 KeepRegs.insert(*Subreg);
504 }
505 }
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000506 }
507}
508
509void SchedulePostRATDList::ScanInstruction(MachineInstr *MI,
510 unsigned Count) {
511 // Update liveness.
512 // Proceding upwards, registers that are defed but not used in this
513 // instruction are now dead.
514 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
515 MachineOperand &MO = MI->getOperand(i);
516 if (!MO.isReg()) continue;
517 unsigned Reg = MO.getReg();
518 if (Reg == 0) continue;
519 if (!MO.isDef()) continue;
520 // Ignore two-addr defs.
Bob Wilsond9df5012009-04-09 17:16:43 +0000521 if (MI->isRegTiedToUseOperand(i)) continue;
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000522
523 DefIndices[Reg] = Count;
524 KillIndices[Reg] = ~0u;
Evan Cheng714e8bc2009-10-01 08:26:23 +0000525 assert(((KillIndices[Reg] == ~0u) !=
526 (DefIndices[Reg] == ~0u)) &&
527 "Kill and Def maps aren't consistent for Reg!");
528 KeepRegs.erase(Reg);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000529 Classes[Reg] = 0;
530 RegRefs.erase(Reg);
531 // Repeat, for all subregs.
532 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
533 *Subreg; ++Subreg) {
534 unsigned SubregReg = *Subreg;
535 DefIndices[SubregReg] = Count;
536 KillIndices[SubregReg] = ~0u;
Evan Cheng714e8bc2009-10-01 08:26:23 +0000537 KeepRegs.erase(SubregReg);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000538 Classes[SubregReg] = 0;
539 RegRefs.erase(SubregReg);
540 }
David Goodwin7886cd82009-08-29 00:11:13 +0000541 // Conservatively mark super-registers as unusable.
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000542 for (const unsigned *Super = TRI->getSuperRegisters(Reg);
543 *Super; ++Super) {
544 unsigned SuperReg = *Super;
545 Classes[SuperReg] = reinterpret_cast<TargetRegisterClass *>(-1);
546 }
547 }
548 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
549 MachineOperand &MO = MI->getOperand(i);
550 if (!MO.isReg()) continue;
551 unsigned Reg = MO.getReg();
552 if (Reg == 0) continue;
553 if (!MO.isUse()) continue;
554
Chris Lattner2a386882009-07-29 21:36:49 +0000555 const TargetRegisterClass *NewRC = 0;
556 if (i < MI->getDesc().getNumOperands())
557 NewRC = MI->getDesc().OpInfo[i].getRegClass(TRI);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000558
559 // For now, only allow the register to be changed if its register
560 // class is consistent across all uses.
561 if (!Classes[Reg] && NewRC)
562 Classes[Reg] = NewRC;
563 else if (!NewRC || Classes[Reg] != NewRC)
564 Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
565
566 RegRefs.insert(std::make_pair(Reg, &MO));
567
568 // It wasn't previously live but now it is, this is a kill.
569 if (KillIndices[Reg] == ~0u) {
570 KillIndices[Reg] = Count;
571 DefIndices[Reg] = ~0u;
Dan Gohman47ac0f02009-02-11 04:27:20 +0000572 assert(((KillIndices[Reg] == ~0u) !=
573 (DefIndices[Reg] == ~0u)) &&
574 "Kill and Def maps aren't consistent for Reg!");
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000575 }
576 // Repeat, for all aliases.
577 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
578 unsigned AliasReg = *Alias;
579 if (KillIndices[AliasReg] == ~0u) {
580 KillIndices[AliasReg] = Count;
581 DefIndices[AliasReg] = ~0u;
582 }
583 }
584 }
585}
586
Dan Gohman26255ad2009-08-12 01:33:27 +0000587unsigned
588SchedulePostRATDList::findSuitableFreeRegister(unsigned AntiDepReg,
589 unsigned LastNewReg,
590 const TargetRegisterClass *RC) {
591 for (TargetRegisterClass::iterator R = RC->allocation_order_begin(MF),
592 RE = RC->allocation_order_end(MF); R != RE; ++R) {
593 unsigned NewReg = *R;
594 // Don't replace a register with itself.
595 if (NewReg == AntiDepReg) continue;
596 // Don't replace a register with one that was recently used to repair
597 // an anti-dependence with this AntiDepReg, because that would
598 // re-introduce that anti-dependence.
599 if (NewReg == LastNewReg) continue;
600 // If NewReg is dead and NewReg's most recent def is not before
601 // AntiDepReg's kill, it's safe to replace AntiDepReg with NewReg.
602 assert(((KillIndices[AntiDepReg] == ~0u) != (DefIndices[AntiDepReg] == ~0u)) &&
603 "Kill and Def maps aren't consistent for AntiDepReg!");
604 assert(((KillIndices[NewReg] == ~0u) != (DefIndices[NewReg] == ~0u)) &&
605 "Kill and Def maps aren't consistent for NewReg!");
Dan Gohmanda277572009-08-12 01:44:20 +0000606 if (KillIndices[NewReg] != ~0u ||
607 Classes[NewReg] == reinterpret_cast<TargetRegisterClass *>(-1) ||
608 KillIndices[AntiDepReg] > DefIndices[NewReg])
Dan Gohman26255ad2009-08-12 01:33:27 +0000609 continue;
610 return NewReg;
611 }
612
613 // No registers are free and available!
614 return 0;
615}
616
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000617/// BreakAntiDependencies - Identifiy anti-dependencies along the critical path
618/// of the ScheduleDAG and break them by renaming registers.
619///
620bool SchedulePostRATDList::BreakAntiDependencies() {
621 // The code below assumes that there is at least one instruction,
622 // so just duck out immediately if the block is empty.
623 if (SUnits.empty()) return false;
624
625 // Find the node at the bottom of the critical path.
626 SUnit *Max = 0;
627 for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
628 SUnit *SU = &SUnits[i];
629 if (!Max || SU->getDepth() + SU->Latency > Max->getDepth() + Max->Latency)
630 Max = SU;
631 }
632
David Goodwin3a5f0d42009-08-11 01:44:26 +0000633 DEBUG(errs() << "Critical path has total latency "
634 << (Max->getDepth() + Max->Latency) << "\n");
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000635
636 // Track progress along the critical path through the SUnit graph as we walk
637 // the instructions.
638 SUnit *CriticalPathSU = Max;
639 MachineInstr *CriticalPathMI = CriticalPathSU->getInstr();
Dan Gohman21d90032008-11-25 00:52:40 +0000640
641 // Consider this pattern:
642 // A = ...
643 // ... = A
644 // A = ...
645 // ... = A
646 // A = ...
647 // ... = A
648 // A = ...
649 // ... = A
650 // There are three anti-dependencies here, and without special care,
651 // we'd break all of them using the same register:
652 // A = ...
653 // ... = A
654 // B = ...
655 // ... = B
656 // B = ...
657 // ... = B
658 // B = ...
659 // ... = B
660 // because at each anti-dependence, B is the first register that
661 // isn't A which is free. This re-introduces anti-dependencies
662 // at all but one of the original anti-dependencies that we were
663 // trying to break. To avoid this, keep track of the most recent
David Goodwinc93d8372009-08-11 17:35:23 +0000664 // register that each register was replaced with, avoid
Dan Gohman21d90032008-11-25 00:52:40 +0000665 // using it to repair an anti-dependence on the same register.
666 // This lets us produce this:
667 // A = ...
668 // ... = A
669 // B = ...
670 // ... = B
671 // C = ...
672 // ... = C
673 // B = ...
674 // ... = B
675 // This still has an anti-dependence on B, but at least it isn't on the
676 // original critical path.
677 //
678 // TODO: If we tracked more than one register here, we could potentially
679 // fix that remaining critical edge too. This is a little more involved,
680 // because unlike the most recent register, less recent registers should
681 // still be considered, though only if no other registers are available.
682 unsigned LastNewReg[TargetRegisterInfo::FirstVirtualRegister] = {};
683
Dan Gohman21d90032008-11-25 00:52:40 +0000684 // Attempt to break anti-dependence edges on the critical path. Walk the
685 // instructions from the bottom up, tracking information about liveness
686 // as we go to help determine which registers are available.
687 bool Changed = false;
Dan Gohman47ac0f02009-02-11 04:27:20 +0000688 unsigned Count = InsertPosIndex - 1;
689 for (MachineBasicBlock::iterator I = InsertPos, E = Begin;
Dan Gohman43f07fb2009-02-03 18:57:45 +0000690 I != E; --Count) {
691 MachineInstr *MI = --I;
Dan Gohman21d90032008-11-25 00:52:40 +0000692
Dan Gohman00dc84a2008-12-16 19:27:52 +0000693 // Check if this instruction has a dependence on the critical path that
694 // is an anti-dependence that we may be able to break. If it is, set
695 // AntiDepReg to the non-zero register associated with the anti-dependence.
696 //
697 // We limit our attention to the critical path as a heuristic to avoid
698 // breaking anti-dependence edges that aren't going to significantly
699 // impact the overall schedule. There are a limited number of registers
700 // and we want to save them for the important edges.
701 //
702 // TODO: Instructions with multiple defs could have multiple
703 // anti-dependencies. The current code here only knows how to break one
704 // edge per instruction. Note that we'd have to be able to break all of
705 // the anti-dependencies in an instruction in order to be effective.
706 unsigned AntiDepReg = 0;
707 if (MI == CriticalPathMI) {
708 if (SDep *Edge = CriticalPathStep(CriticalPathSU)) {
709 SUnit *NextSU = Edge->getSUnit();
710
711 // Only consider anti-dependence edges.
712 if (Edge->getKind() == SDep::Anti) {
713 AntiDepReg = Edge->getReg();
714 assert(AntiDepReg != 0 && "Anti-dependence on reg0?");
Dan Gohman49bb50e2009-01-16 21:57:43 +0000715 if (!AllocatableSet.test(AntiDepReg))
Evan Cheng714e8bc2009-10-01 08:26:23 +0000716 // Don't break anti-dependencies on non-allocatable registers.
717 AntiDepReg = 0;
718 else if (KeepRegs.count(AntiDepReg))
719 // Don't break anti-dependencies if an use down below requires
720 // this exact register.
Dan Gohman49bb50e2009-01-16 21:57:43 +0000721 AntiDepReg = 0;
722 else {
Dan Gohman00dc84a2008-12-16 19:27:52 +0000723 // If the SUnit has other dependencies on the SUnit that it
724 // anti-depends on, don't bother breaking the anti-dependency
725 // since those edges would prevent such units from being
726 // scheduled past each other regardless.
727 //
728 // Also, if there are dependencies on other SUnits with the
729 // same register as the anti-dependency, don't attempt to
730 // break it.
731 for (SUnit::pred_iterator P = CriticalPathSU->Preds.begin(),
732 PE = CriticalPathSU->Preds.end(); P != PE; ++P)
733 if (P->getSUnit() == NextSU ?
734 (P->getKind() != SDep::Anti || P->getReg() != AntiDepReg) :
735 (P->getKind() == SDep::Data && P->getReg() == AntiDepReg)) {
736 AntiDepReg = 0;
737 break;
738 }
739 }
740 }
741 CriticalPathSU = NextSU;
742 CriticalPathMI = CriticalPathSU->getInstr();
743 } else {
744 // We've reached the end of the critical path.
745 CriticalPathSU = 0;
746 CriticalPathMI = 0;
747 }
748 }
Dan Gohman21d90032008-11-25 00:52:40 +0000749
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000750 PrescanInstruction(MI);
751
Evan Cheng714e8bc2009-10-01 08:26:23 +0000752 if (MI->getDesc().hasExtraDefRegAllocReq())
753 // If this instruction's defs have special allocation requirement, don't
754 // break this anti-dependency.
755 AntiDepReg = 0;
756 else if (AntiDepReg) {
757 // If this instruction has a use of AntiDepReg, breaking it
758 // is invalid.
759 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
760 MachineOperand &MO = MI->getOperand(i);
761 if (!MO.isReg()) continue;
762 unsigned Reg = MO.getReg();
763 if (Reg == 0) continue;
764 if (MO.isUse() && AntiDepReg == Reg) {
765 AntiDepReg = 0;
766 break;
767 }
Dan Gohman21d90032008-11-25 00:52:40 +0000768 }
Dan Gohman21d90032008-11-25 00:52:40 +0000769 }
770
771 // Determine AntiDepReg's register class, if it is live and is
772 // consistently used within a single class.
773 const TargetRegisterClass *RC = AntiDepReg != 0 ? Classes[AntiDepReg] : 0;
Nick Lewyckya89d1022008-11-27 17:29:52 +0000774 assert((AntiDepReg == 0 || RC != NULL) &&
Dan Gohman21d90032008-11-25 00:52:40 +0000775 "Register should be live if it's causing an anti-dependence!");
776 if (RC == reinterpret_cast<TargetRegisterClass *>(-1))
777 AntiDepReg = 0;
778
779 // Look for a suitable register to use to break the anti-depenence.
780 //
781 // TODO: Instead of picking the first free register, consider which might
782 // be the best.
783 if (AntiDepReg != 0) {
Dan Gohman26255ad2009-08-12 01:33:27 +0000784 if (unsigned NewReg = findSuitableFreeRegister(AntiDepReg,
785 LastNewReg[AntiDepReg],
786 RC)) {
787 DEBUG(errs() << "Breaking anti-dependence edge on "
788 << TRI->getName(AntiDepReg)
789 << " with " << RegRefs.count(AntiDepReg) << " references"
790 << " using " << TRI->getName(NewReg) << "!\n");
Dan Gohman21d90032008-11-25 00:52:40 +0000791
Dan Gohman26255ad2009-08-12 01:33:27 +0000792 // Update the references to the old register to refer to the new
793 // register.
794 std::pair<std::multimap<unsigned, MachineOperand *>::iterator,
795 std::multimap<unsigned, MachineOperand *>::iterator>
796 Range = RegRefs.equal_range(AntiDepReg);
797 for (std::multimap<unsigned, MachineOperand *>::iterator
798 Q = Range.first, QE = Range.second; Q != QE; ++Q)
799 Q->second->setReg(NewReg);
Dan Gohman21d90032008-11-25 00:52:40 +0000800
Dan Gohman26255ad2009-08-12 01:33:27 +0000801 // We just went back in time and modified history; the
802 // liveness information for the anti-depenence reg is now
803 // inconsistent. Set the state as if it were dead.
804 Classes[NewReg] = Classes[AntiDepReg];
805 DefIndices[NewReg] = DefIndices[AntiDepReg];
806 KillIndices[NewReg] = KillIndices[AntiDepReg];
807 assert(((KillIndices[NewReg] == ~0u) !=
808 (DefIndices[NewReg] == ~0u)) &&
809 "Kill and Def maps aren't consistent for NewReg!");
Dan Gohman21d90032008-11-25 00:52:40 +0000810
Dan Gohman26255ad2009-08-12 01:33:27 +0000811 Classes[AntiDepReg] = 0;
812 DefIndices[AntiDepReg] = KillIndices[AntiDepReg];
813 KillIndices[AntiDepReg] = ~0u;
814 assert(((KillIndices[AntiDepReg] == ~0u) !=
815 (DefIndices[AntiDepReg] == ~0u)) &&
816 "Kill and Def maps aren't consistent for AntiDepReg!");
Dan Gohman21d90032008-11-25 00:52:40 +0000817
Dan Gohman26255ad2009-08-12 01:33:27 +0000818 RegRefs.erase(AntiDepReg);
819 Changed = true;
820 LastNewReg[AntiDepReg] = NewReg;
Dan Gohman21d90032008-11-25 00:52:40 +0000821 }
822 }
823
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000824 ScanInstruction(MI, Count);
Dan Gohman21d90032008-11-25 00:52:40 +0000825 }
Dan Gohman21d90032008-11-25 00:52:40 +0000826
827 return Changed;
828}
829
David Goodwin5e411782009-09-03 22:15:25 +0000830/// StartBlockForKills - Initialize register live-range state for updating kills
831///
832void SchedulePostRATDList::StartBlockForKills(MachineBasicBlock *BB) {
833 // Initialize the indices to indicate that no registers are live.
834 std::fill(KillIndices, array_endof(KillIndices), ~0u);
835
836 // Determine the live-out physregs for this block.
837 if (!BB->empty() && BB->back().getDesc().isReturn()) {
838 // In a return block, examine the function live-out regs.
839 for (MachineRegisterInfo::liveout_iterator I = MRI.liveout_begin(),
840 E = MRI.liveout_end(); I != E; ++I) {
841 unsigned Reg = *I;
842 KillIndices[Reg] = BB->size();
843 // Repeat, for all subregs.
844 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
845 *Subreg; ++Subreg) {
846 KillIndices[*Subreg] = BB->size();
847 }
848 }
849 }
850 else {
851 // In a non-return block, examine the live-in regs of all successors.
852 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
853 SE = BB->succ_end(); SI != SE; ++SI) {
854 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
855 E = (*SI)->livein_end(); I != E; ++I) {
856 unsigned Reg = *I;
857 KillIndices[Reg] = BB->size();
858 // Repeat, for all subregs.
859 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
860 *Subreg; ++Subreg) {
861 KillIndices[*Subreg] = BB->size();
862 }
863 }
864 }
865 }
866}
867
David Goodwin8f909342009-09-23 16:35:25 +0000868bool SchedulePostRATDList::ToggleKillFlag(MachineInstr *MI,
869 MachineOperand &MO) {
870 // Setting kill flag...
871 if (!MO.isKill()) {
872 MO.setIsKill(true);
873 return false;
874 }
875
876 // If MO itself is live, clear the kill flag...
877 if (KillIndices[MO.getReg()] != ~0u) {
878 MO.setIsKill(false);
879 return false;
880 }
881
882 // If any subreg of MO is live, then create an imp-def for that
883 // subreg and keep MO marked as killed.
884 bool AllDead = true;
885 const unsigned SuperReg = MO.getReg();
886 for (const unsigned *Subreg = TRI->getSubRegisters(SuperReg);
887 *Subreg; ++Subreg) {
888 if (KillIndices[*Subreg] != ~0u) {
889 MI->addOperand(MachineOperand::CreateReg(*Subreg,
890 true /*IsDef*/,
891 true /*IsImp*/,
892 false /*IsKill*/,
893 false /*IsDead*/));
894 AllDead = false;
895 }
896 }
897
898 MO.setIsKill(AllDead);
899 return false;
900}
901
David Goodwin88a589c2009-08-25 17:03:05 +0000902/// FixupKills - Fix the register kill flags, they may have been made
903/// incorrect by instruction reordering.
904///
905void SchedulePostRATDList::FixupKills(MachineBasicBlock *MBB) {
906 DEBUG(errs() << "Fixup kills for BB ID#" << MBB->getNumber() << '\n');
907
908 std::set<unsigned> killedRegs;
909 BitVector ReservedRegs = TRI->getReservedRegs(MF);
David Goodwin5e411782009-09-03 22:15:25 +0000910
911 StartBlockForKills(MBB);
David Goodwin7886cd82009-08-29 00:11:13 +0000912
913 // Examine block from end to start...
David Goodwin88a589c2009-08-25 17:03:05 +0000914 unsigned Count = MBB->size();
915 for (MachineBasicBlock::iterator I = MBB->end(), E = MBB->begin();
916 I != E; --Count) {
917 MachineInstr *MI = --I;
918
David Goodwin7886cd82009-08-29 00:11:13 +0000919 // Update liveness. Registers that are defed but not used in this
920 // instruction are now dead. Mark register and all subregs as they
921 // are completely defined.
922 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
923 MachineOperand &MO = MI->getOperand(i);
924 if (!MO.isReg()) continue;
925 unsigned Reg = MO.getReg();
926 if (Reg == 0) continue;
927 if (!MO.isDef()) continue;
928 // Ignore two-addr defs.
929 if (MI->isRegTiedToUseOperand(i)) continue;
930
David Goodwin7886cd82009-08-29 00:11:13 +0000931 KillIndices[Reg] = ~0u;
932
933 // Repeat for all subregs.
934 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
935 *Subreg; ++Subreg) {
936 KillIndices[*Subreg] = ~0u;
937 }
938 }
David Goodwin88a589c2009-08-25 17:03:05 +0000939
David Goodwin8f909342009-09-23 16:35:25 +0000940 // Examine all used registers and set/clear kill flag. When a
941 // register is used multiple times we only set the kill flag on
942 // the first use.
David Goodwin88a589c2009-08-25 17:03:05 +0000943 killedRegs.clear();
944 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
945 MachineOperand &MO = MI->getOperand(i);
946 if (!MO.isReg() || !MO.isUse()) continue;
947 unsigned Reg = MO.getReg();
948 if ((Reg == 0) || ReservedRegs.test(Reg)) continue;
949
David Goodwin7886cd82009-08-29 00:11:13 +0000950 bool kill = false;
951 if (killedRegs.find(Reg) == killedRegs.end()) {
952 kill = true;
953 // A register is not killed if any subregs are live...
954 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
955 *Subreg; ++Subreg) {
956 if (KillIndices[*Subreg] != ~0u) {
957 kill = false;
958 break;
959 }
960 }
961
962 // If subreg is not live, then register is killed if it became
963 // live in this instruction
964 if (kill)
965 kill = (KillIndices[Reg] == ~0u);
966 }
967
David Goodwin88a589c2009-08-25 17:03:05 +0000968 if (MO.isKill() != kill) {
David Goodwin8f909342009-09-23 16:35:25 +0000969 bool removed = ToggleKillFlag(MI, MO);
970 if (removed) {
971 DEBUG(errs() << "Fixed <removed> in ");
972 } else {
973 DEBUG(errs() << "Fixed " << MO << " in ");
974 }
David Goodwin88a589c2009-08-25 17:03:05 +0000975 DEBUG(MI->dump());
976 }
David Goodwin7886cd82009-08-29 00:11:13 +0000977
David Goodwin88a589c2009-08-25 17:03:05 +0000978 killedRegs.insert(Reg);
979 }
David Goodwin7886cd82009-08-29 00:11:13 +0000980
David Goodwina3251db2009-08-31 20:47:02 +0000981 // Mark any used register (that is not using undef) and subregs as
982 // now live...
David Goodwin7886cd82009-08-29 00:11:13 +0000983 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
984 MachineOperand &MO = MI->getOperand(i);
David Goodwina3251db2009-08-31 20:47:02 +0000985 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
David Goodwin7886cd82009-08-29 00:11:13 +0000986 unsigned Reg = MO.getReg();
987 if ((Reg == 0) || ReservedRegs.test(Reg)) continue;
988
David Goodwin7886cd82009-08-29 00:11:13 +0000989 KillIndices[Reg] = Count;
990
991 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
992 *Subreg; ++Subreg) {
993 KillIndices[*Subreg] = Count;
994 }
995 }
David Goodwin88a589c2009-08-25 17:03:05 +0000996 }
997}
998
Dan Gohman343f0c02008-11-19 23:18:57 +0000999//===----------------------------------------------------------------------===//
1000// Top-Down Scheduling
1001//===----------------------------------------------------------------------===//
1002
1003/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. Add it to
1004/// the PendingQueue if the count reaches zero. Also update its cycle bound.
Dan Gohman54e4c362008-12-09 22:54:47 +00001005void SchedulePostRATDList::ReleaseSucc(SUnit *SU, SDep *SuccEdge) {
1006 SUnit *SuccSU = SuccEdge->getSUnit();
Reid Klecknerc277ab02009-09-30 20:15:38 +00001007
Dan Gohman343f0c02008-11-19 23:18:57 +00001008#ifndef NDEBUG
Reid Klecknerc277ab02009-09-30 20:15:38 +00001009 if (SuccSU->NumPredsLeft == 0) {
Chris Lattner103289e2009-08-23 07:19:13 +00001010 errs() << "*** Scheduling failed! ***\n";
Dan Gohman343f0c02008-11-19 23:18:57 +00001011 SuccSU->dump(this);
Chris Lattner103289e2009-08-23 07:19:13 +00001012 errs() << " has been released too many times!\n";
Torok Edwinc23197a2009-07-14 16:55:14 +00001013 llvm_unreachable(0);
Dan Gohman343f0c02008-11-19 23:18:57 +00001014 }
1015#endif
Reid Klecknerc277ab02009-09-30 20:15:38 +00001016 --SuccSU->NumPredsLeft;
1017
Dan Gohman343f0c02008-11-19 23:18:57 +00001018 // Compute how many cycles it will be before this actually becomes
1019 // available. This is the max of the start time of all predecessors plus
1020 // their latencies.
Dan Gohman3f237442008-12-16 03:25:46 +00001021 SuccSU->setDepthToAtLeast(SU->getDepth() + SuccEdge->getLatency());
Dan Gohman343f0c02008-11-19 23:18:57 +00001022
Dan Gohman9e64bbb2009-02-10 23:27:53 +00001023 // If all the node's predecessors are scheduled, this node is ready
1024 // to be scheduled. Ignore the special ExitSU node.
1025 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
Dan Gohman343f0c02008-11-19 23:18:57 +00001026 PendingQueue.push_back(SuccSU);
Dan Gohman9e64bbb2009-02-10 23:27:53 +00001027}
1028
1029/// ReleaseSuccessors - Call ReleaseSucc on each of SU's successors.
1030void SchedulePostRATDList::ReleaseSuccessors(SUnit *SU) {
1031 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
1032 I != E; ++I)
1033 ReleaseSucc(SU, &*I);
Dan Gohman343f0c02008-11-19 23:18:57 +00001034}
1035
1036/// ScheduleNodeTopDown - Add the node to the schedule. Decrement the pending
1037/// count of its successors. If a successor pending count is zero, add it to
1038/// the Available queue.
1039void SchedulePostRATDList::ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle) {
David Goodwin3a5f0d42009-08-11 01:44:26 +00001040 DEBUG(errs() << "*** Scheduling [" << CurCycle << "]: ");
Dan Gohman343f0c02008-11-19 23:18:57 +00001041 DEBUG(SU->dump(this));
1042
1043 Sequence.push_back(SU);
Dan Gohman3f237442008-12-16 03:25:46 +00001044 assert(CurCycle >= SU->getDepth() && "Node scheduled above its depth!");
1045 SU->setDepthToAtLeast(CurCycle);
Dan Gohman343f0c02008-11-19 23:18:57 +00001046
Dan Gohman9e64bbb2009-02-10 23:27:53 +00001047 ReleaseSuccessors(SU);
Dan Gohman343f0c02008-11-19 23:18:57 +00001048 SU->isScheduled = true;
1049 AvailableQueue.ScheduledNode(SU);
1050}
1051
1052/// ListScheduleTopDown - The main loop of list scheduling for top-down
1053/// schedulers.
1054void SchedulePostRATDList::ListScheduleTopDown() {
1055 unsigned CurCycle = 0;
1056
Dan Gohman9e64bbb2009-02-10 23:27:53 +00001057 // Release any successors of the special Entry node.
1058 ReleaseSuccessors(&EntrySU);
1059
Dan Gohman343f0c02008-11-19 23:18:57 +00001060 // All leaves to Available queue.
1061 for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
1062 // It is available if it has no predecessors.
1063 if (SUnits[i].Preds.empty()) {
1064 AvailableQueue.push(&SUnits[i]);
1065 SUnits[i].isAvailable = true;
1066 }
1067 }
Dan Gohman9e64bbb2009-02-10 23:27:53 +00001068
David Goodwin2ffb0ce2009-08-12 21:47:46 +00001069 // In any cycle where we can't schedule any instructions, we must
1070 // stall or emit a noop, depending on the target.
Benjamin Kramerbe441c02009-09-06 12:10:17 +00001071 bool CycleHasInsts = false;
David Goodwin2ffb0ce2009-08-12 21:47:46 +00001072
Dan Gohman343f0c02008-11-19 23:18:57 +00001073 // While Available queue is not empty, grab the node with the highest
1074 // priority. If it is not ready put it back. Schedule the node.
Dan Gohman2836c282009-01-16 01:33:36 +00001075 std::vector<SUnit*> NotReady;
Dan Gohman343f0c02008-11-19 23:18:57 +00001076 Sequence.reserve(SUnits.size());
1077 while (!AvailableQueue.empty() || !PendingQueue.empty()) {
1078 // Check to see if any of the pending instructions are ready to issue. If
1079 // so, add them to the available queue.
Dan Gohman3f237442008-12-16 03:25:46 +00001080 unsigned MinDepth = ~0u;
Dan Gohman343f0c02008-11-19 23:18:57 +00001081 for (unsigned i = 0, e = PendingQueue.size(); i != e; ++i) {
Dan Gohman3f237442008-12-16 03:25:46 +00001082 if (PendingQueue[i]->getDepth() <= CurCycle) {
Dan Gohman343f0c02008-11-19 23:18:57 +00001083 AvailableQueue.push(PendingQueue[i]);
1084 PendingQueue[i]->isAvailable = true;
1085 PendingQueue[i] = PendingQueue.back();
1086 PendingQueue.pop_back();
1087 --i; --e;
Dan Gohman3f237442008-12-16 03:25:46 +00001088 } else if (PendingQueue[i]->getDepth() < MinDepth)
1089 MinDepth = PendingQueue[i]->getDepth();
Dan Gohman343f0c02008-11-19 23:18:57 +00001090 }
David Goodwinc93d8372009-08-11 17:35:23 +00001091
David Goodwin7cd01182009-08-11 17:56:42 +00001092 DEBUG(errs() << "\n*** Examining Available\n";
1093 LatencyPriorityQueue q = AvailableQueue;
1094 while (!q.empty()) {
1095 SUnit *su = q.pop();
1096 errs() << "Height " << su->getHeight() << ": ";
1097 su->dump(this);
1098 });
David Goodwinc93d8372009-08-11 17:35:23 +00001099
Dan Gohman2836c282009-01-16 01:33:36 +00001100 SUnit *FoundSUnit = 0;
1101
1102 bool HasNoopHazards = false;
1103 while (!AvailableQueue.empty()) {
1104 SUnit *CurSUnit = AvailableQueue.pop();
1105
1106 ScheduleHazardRecognizer::HazardType HT =
1107 HazardRec->getHazardType(CurSUnit);
1108 if (HT == ScheduleHazardRecognizer::NoHazard) {
1109 FoundSUnit = CurSUnit;
1110 break;
1111 }
1112
1113 // Remember if this is a noop hazard.
1114 HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard;
1115
1116 NotReady.push_back(CurSUnit);
1117 }
1118
1119 // Add the nodes that aren't ready back onto the available list.
1120 if (!NotReady.empty()) {
1121 AvailableQueue.push_all(NotReady);
1122 NotReady.clear();
1123 }
1124
Dan Gohman343f0c02008-11-19 23:18:57 +00001125 // If we found a node to schedule, do it now.
1126 if (FoundSUnit) {
1127 ScheduleNodeTopDown(FoundSUnit, CurCycle);
Dan Gohman2836c282009-01-16 01:33:36 +00001128 HazardRec->EmitInstruction(FoundSUnit);
Benjamin Kramerbe441c02009-09-06 12:10:17 +00001129 CycleHasInsts = true;
Dan Gohman343f0c02008-11-19 23:18:57 +00001130
David Goodwind94a4e52009-08-10 15:55:25 +00001131 // If we are using the target-specific hazards, then don't
1132 // advance the cycle time just because we schedule a node. If
1133 // the target allows it we can schedule multiple nodes in the
1134 // same cycle.
1135 if (!EnablePostRAHazardAvoidance) {
1136 if (FoundSUnit->Latency) // Don't increment CurCycle for pseudo-ops!
1137 ++CurCycle;
1138 }
Dan Gohman2836c282009-01-16 01:33:36 +00001139 } else {
Benjamin Kramerbe441c02009-09-06 12:10:17 +00001140 if (CycleHasInsts) {
David Goodwin2ffb0ce2009-08-12 21:47:46 +00001141 DEBUG(errs() << "*** Finished cycle " << CurCycle << '\n');
1142 HazardRec->AdvanceCycle();
1143 } else if (!HasNoopHazards) {
1144 // Otherwise, we have a pipeline stall, but no other problem,
1145 // just advance the current cycle and try again.
1146 DEBUG(errs() << "*** Stall in cycle " << CurCycle << '\n');
1147 HazardRec->AdvanceCycle();
1148 ++NumStalls;
1149 } else {
1150 // Otherwise, we have no instructions to issue and we have instructions
1151 // that will fault if we don't do this right. This is the case for
1152 // processors without pipeline interlocks and other cases.
1153 DEBUG(errs() << "*** Emitting noop in cycle " << CurCycle << '\n');
1154 HazardRec->EmitNoop();
1155 Sequence.push_back(0); // NULL here means noop
1156 ++NumNoops;
1157 }
1158
Dan Gohman2836c282009-01-16 01:33:36 +00001159 ++CurCycle;
Benjamin Kramerbe441c02009-09-06 12:10:17 +00001160 CycleHasInsts = false;
Dan Gohman343f0c02008-11-19 23:18:57 +00001161 }
1162 }
1163
1164#ifndef NDEBUG
Dan Gohmana1e6d362008-11-20 01:26:25 +00001165 VerifySchedule(/*isBottomUp=*/false);
Dan Gohman343f0c02008-11-19 23:18:57 +00001166#endif
1167}
Dale Johannesene7e7d0d2007-07-13 17:13:54 +00001168
1169//===----------------------------------------------------------------------===//
1170// Public Constructor Functions
1171//===----------------------------------------------------------------------===//
1172
1173FunctionPass *llvm::createPostRAScheduler() {
Dan Gohman343f0c02008-11-19 23:18:57 +00001174 return new PostRAScheduler();
Dale Johannesene7e7d0d2007-07-13 17:13:54 +00001175}