Fixup register kills after scheduling.
[oota-llvm.git] / lib / CodeGen / PostRASchedulerList.cpp
1 //===----- SchedulePostRAList.cpp - list scheduler ------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // 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"
22 #include "ExactHazardRecognizer.h"
23 #include "SimpleHazardRecognizer.h"
24 #include "ScheduleDAGInstrs.h"
25 #include "llvm/CodeGen/Passes.h"
26 #include "llvm/CodeGen/LatencyPriorityQueue.h"
27 #include "llvm/CodeGen/SchedulerRegistry.h"
28 #include "llvm/CodeGen/MachineDominators.h"
29 #include "llvm/CodeGen/MachineFunctionPass.h"
30 #include "llvm/CodeGen/MachineLoopInfo.h"
31 #include "llvm/CodeGen/MachineRegisterInfo.h"
32 #include "llvm/CodeGen/ScheduleHazardRecognizer.h"
33 #include "llvm/Target/TargetLowering.h"
34 #include "llvm/Target/TargetMachine.h"
35 #include "llvm/Target/TargetInstrInfo.h"
36 #include "llvm/Target/TargetRegisterInfo.h"
37 #include "llvm/Support/Compiler.h"
38 #include "llvm/Support/Debug.h"
39 #include "llvm/Support/ErrorHandling.h"
40 #include "llvm/Support/raw_ostream.h"
41 #include "llvm/ADT/Statistic.h"
42 #include <map>
43 #include <set>
44 using namespace llvm;
45
46 STATISTIC(NumNoops, "Number of noops inserted");
47 STATISTIC(NumStalls, "Number of pipeline stalls");
48
49 static cl::opt<bool>
50 EnableAntiDepBreaking("break-anti-dependencies",
51                       cl::desc("Break post-RA scheduling anti-dependencies"),
52                       cl::init(true), cl::Hidden);
53
54 static cl::opt<bool>
55 EnablePostRAHazardAvoidance("avoid-hazards",
56                       cl::desc("Enable exact hazard avoidance"),
57                       cl::init(false), cl::Hidden);
58
59 namespace {
60   class VISIBILITY_HIDDEN PostRAScheduler : public MachineFunctionPass {
61   public:
62     static char ID;
63     PostRAScheduler() : MachineFunctionPass(&ID) {}
64
65     void getAnalysisUsage(AnalysisUsage &AU) const {
66       AU.setPreservesCFG();
67       AU.addRequired<MachineDominatorTree>();
68       AU.addPreserved<MachineDominatorTree>();
69       AU.addRequired<MachineLoopInfo>();
70       AU.addPreserved<MachineLoopInfo>();
71       MachineFunctionPass::getAnalysisUsage(AU);
72     }
73
74     const char *getPassName() const {
75       return "Post RA top-down list latency scheduler";
76     }
77
78     bool runOnMachineFunction(MachineFunction &Fn);
79   };
80   char PostRAScheduler::ID = 0;
81
82   class VISIBILITY_HIDDEN SchedulePostRATDList : public ScheduleDAGInstrs {
83     /// AvailableQueue - The priority queue to use for the available SUnits.
84     ///
85     LatencyPriorityQueue AvailableQueue;
86   
87     /// PendingQueue - This contains all of the instructions whose operands have
88     /// been issued, but their results are not ready yet (due to the latency of
89     /// the operation).  Once the operands becomes available, the instruction is
90     /// added to the AvailableQueue.
91     std::vector<SUnit*> PendingQueue;
92
93     /// Topo - A topological ordering for SUnits.
94     ScheduleDAGTopologicalSort Topo;
95
96     /// AllocatableSet - The set of allocatable registers.
97     /// We'll be ignoring anti-dependencies on non-allocatable registers,
98     /// because they may not be safe to break.
99     const BitVector AllocatableSet;
100
101     /// HazardRec - The hazard recognizer to use.
102     ScheduleHazardRecognizer *HazardRec;
103
104     /// Classes - For live regs that are only used in one register class in a
105     /// live range, the register class. If the register is not live, the
106     /// corresponding value is null. If the register is live but used in
107     /// multiple register classes, the corresponding value is -1 casted to a
108     /// pointer.
109     const TargetRegisterClass *
110       Classes[TargetRegisterInfo::FirstVirtualRegister];
111
112     /// RegRegs - Map registers to all their references within a live range.
113     std::multimap<unsigned, MachineOperand *> RegRefs;
114
115     /// The index of the most recent kill (proceding bottom-up), or ~0u if
116     /// the register is not live.
117     unsigned KillIndices[TargetRegisterInfo::FirstVirtualRegister];
118
119     /// The index of the most recent complete def (proceding bottom up), or ~0u
120     /// if the register is live.
121     unsigned DefIndices[TargetRegisterInfo::FirstVirtualRegister];
122
123   public:
124     SchedulePostRATDList(MachineFunction &MF,
125                          const MachineLoopInfo &MLI,
126                          const MachineDominatorTree &MDT,
127                          ScheduleHazardRecognizer *HR)
128       : ScheduleDAGInstrs(MF, MLI, MDT), Topo(SUnits),
129         AllocatableSet(TRI->getAllocatableSet(MF)),
130         HazardRec(HR) {}
131
132     ~SchedulePostRATDList() {
133       delete HazardRec;
134     }
135
136     /// StartBlock - Initialize register live-range state for scheduling in
137     /// this block.
138     ///
139     void StartBlock(MachineBasicBlock *BB);
140
141     /// Schedule - Schedule the instruction range using list scheduling.
142     ///
143     void Schedule();
144     
145     /// FixupKills - Fix register kill flags that have been made
146     /// invalid due to scheduling
147     ///
148     void FixupKills(MachineBasicBlock *MBB);
149
150     /// Observe - Update liveness information to account for the current
151     /// instruction, which will not be scheduled.
152     ///
153     void Observe(MachineInstr *MI, unsigned Count);
154
155     /// FinishBlock - Clean up register live-range state.
156     ///
157     void FinishBlock();
158
159     /// GenerateLivenessForKills - If true then generate Def/Kill
160     /// information for use in updating register kill. If false then
161     /// generate Def/Kill information for anti-dependence breaking.
162     bool GenerateLivenessForKills;
163
164   private:
165     void PrescanInstruction(MachineInstr *MI);
166     void ScanInstruction(MachineInstr *MI, unsigned Count);
167     void ReleaseSucc(SUnit *SU, SDep *SuccEdge);
168     void ReleaseSuccessors(SUnit *SU);
169     void ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle);
170     void ListScheduleTopDown();
171     bool BreakAntiDependencies();
172     unsigned findSuitableFreeRegister(unsigned AntiDepReg,
173                                       unsigned LastNewReg,
174                                       const TargetRegisterClass *);
175   };
176 }
177
178 /// isSchedulingBoundary - Test if the given instruction should be
179 /// considered a scheduling boundary. This primarily includes labels
180 /// and terminators.
181 ///
182 static bool isSchedulingBoundary(const MachineInstr *MI,
183                                  const MachineFunction &MF) {
184   // Terminators and labels can't be scheduled around.
185   if (MI->getDesc().isTerminator() || MI->isLabel())
186     return true;
187
188   // Don't attempt to schedule around any instruction that modifies
189   // a stack-oriented pointer, as it's unlikely to be profitable. This
190   // saves compile time, because it doesn't require every single
191   // stack slot reference to depend on the instruction that does the
192   // modification.
193   const TargetLowering &TLI = *MF.getTarget().getTargetLowering();
194   if (MI->modifiesRegister(TLI.getStackPointerRegisterToSaveRestore()))
195     return true;
196
197   return false;
198 }
199
200 bool PostRAScheduler::runOnMachineFunction(MachineFunction &Fn) {
201   DEBUG(errs() << "PostRAScheduler\n");
202
203   const MachineLoopInfo &MLI = getAnalysis<MachineLoopInfo>();
204   const MachineDominatorTree &MDT = getAnalysis<MachineDominatorTree>();
205   const InstrItineraryData &InstrItins = Fn.getTarget().getInstrItineraryData();
206   ScheduleHazardRecognizer *HR = EnablePostRAHazardAvoidance ?
207     (ScheduleHazardRecognizer *)new ExactHazardRecognizer(InstrItins) :
208     (ScheduleHazardRecognizer *)new SimpleHazardRecognizer();
209
210   SchedulePostRATDList Scheduler(Fn, MLI, MDT, HR);
211
212   // Loop over all of the basic blocks
213   for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
214        MBB != MBBe; ++MBB) {
215     // Initialize register live-range state for scheduling in this block.
216     Scheduler.GenerateLivenessForKills = false;
217     Scheduler.StartBlock(MBB);
218
219     // Schedule each sequence of instructions not interrupted by a label
220     // or anything else that effectively needs to shut down scheduling.
221     MachineBasicBlock::iterator Current = MBB->end();
222     unsigned Count = MBB->size(), CurrentCount = Count;
223     for (MachineBasicBlock::iterator I = Current; I != MBB->begin(); ) {
224       MachineInstr *MI = prior(I);
225       if (isSchedulingBoundary(MI, Fn)) {
226         Scheduler.Run(MBB, I, Current, CurrentCount);
227         Scheduler.EmitSchedule();
228         Current = MI;
229         CurrentCount = Count - 1;
230         Scheduler.Observe(MI, CurrentCount);
231       }
232       I = MI;
233       --Count;
234     }
235     assert(Count == 0 && "Instruction count mismatch!");
236     assert((MBB->begin() == Current || CurrentCount != 0) &&
237            "Instruction count mismatch!");
238     Scheduler.Run(MBB, MBB->begin(), Current, CurrentCount);
239     Scheduler.EmitSchedule();
240
241     // Clean up register live-range state.
242     Scheduler.FinishBlock();
243
244     // Initialize register live-range state again and update register kills
245     Scheduler.GenerateLivenessForKills = true;
246     Scheduler.StartBlock(MBB);
247     Scheduler.FixupKills(MBB);
248     Scheduler.FinishBlock();
249   }
250
251   return true;
252 }
253   
254 /// StartBlock - Initialize register live-range state for scheduling in
255 /// this block.
256 ///
257 void SchedulePostRATDList::StartBlock(MachineBasicBlock *BB) {
258   // Call the superclass.
259   ScheduleDAGInstrs::StartBlock(BB);
260
261   // Reset the hazard recognizer.
262   HazardRec->Reset();
263
264   // Clear out the register class data.
265   std::fill(Classes, array_endof(Classes),
266             static_cast<const TargetRegisterClass *>(0));
267
268   // Initialize the indices to indicate that no registers are live.
269   std::fill(KillIndices, array_endof(KillIndices), ~0u);
270   std::fill(DefIndices, array_endof(DefIndices), BB->size());
271
272   // Determine the live-out physregs for this block.
273   if (!BB->empty() && BB->back().getDesc().isReturn())
274     // In a return block, examine the function live-out regs.
275     for (MachineRegisterInfo::liveout_iterator I = MRI.liveout_begin(),
276          E = MRI.liveout_end(); I != E; ++I) {
277       unsigned Reg = *I;
278       Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
279       KillIndices[Reg] = BB->size();
280       DefIndices[Reg] = ~0u;
281       // Repeat, for all aliases.
282       for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
283         unsigned AliasReg = *Alias;
284         Classes[AliasReg] = reinterpret_cast<TargetRegisterClass *>(-1);
285         KillIndices[AliasReg] = BB->size();
286         DefIndices[AliasReg] = ~0u;
287       }
288     }
289   else
290     // In a non-return block, examine the live-in regs of all successors.
291     for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
292          SE = BB->succ_end(); SI != SE; ++SI)
293       for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
294            E = (*SI)->livein_end(); I != E; ++I) {
295         unsigned Reg = *I;
296         Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
297         KillIndices[Reg] = BB->size();
298         DefIndices[Reg] = ~0u;
299         // Repeat, for all aliases.
300         for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
301           unsigned AliasReg = *Alias;
302           Classes[AliasReg] = reinterpret_cast<TargetRegisterClass *>(-1);
303           KillIndices[AliasReg] = BB->size();
304           DefIndices[AliasReg] = ~0u;
305         }
306       }
307
308   if (!GenerateLivenessForKills) {
309     // Consider callee-saved registers as live-out, since we're running after
310     // prologue/epilogue insertion so there's no way to add additional
311     // saved registers.
312     //
313     // TODO: If the callee saves and restores these, then we can potentially
314     // use them between the save and the restore. To do that, we could scan
315     // the exit blocks to see which of these registers are defined.
316     // Alternatively, callee-saved registers that aren't saved and restored
317     // could be marked live-in in every block.
318     for (const unsigned *I = TRI->getCalleeSavedRegs(); *I; ++I) {
319       unsigned Reg = *I;
320       Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
321       KillIndices[Reg] = BB->size();
322       DefIndices[Reg] = ~0u;
323       // Repeat, for all aliases.
324       for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
325         unsigned AliasReg = *Alias;
326         Classes[AliasReg] = reinterpret_cast<TargetRegisterClass *>(-1);
327         KillIndices[AliasReg] = BB->size();
328         DefIndices[AliasReg] = ~0u;
329       }
330     }
331   }
332 }
333
334 /// Schedule - Schedule the instruction range using list scheduling.
335 ///
336 void SchedulePostRATDList::Schedule() {
337   DEBUG(errs() << "********** List Scheduling **********\n");
338   
339   // Build the scheduling graph.
340   BuildSchedGraph();
341
342   if (EnableAntiDepBreaking) {
343     if (BreakAntiDependencies()) {
344       // We made changes. Update the dependency graph.
345       // Theoretically we could update the graph in place:
346       // When a live range is changed to use a different register, remove
347       // the def's anti-dependence *and* output-dependence edges due to
348       // that register, and add new anti-dependence and output-dependence
349       // edges based on the next live range of the register.
350       SUnits.clear();
351       EntrySU = SUnit();
352       ExitSU = SUnit();
353       BuildSchedGraph();
354     }
355   }
356
357   DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
358           SUnits[su].dumpAll(this));
359
360   AvailableQueue.initNodes(SUnits);
361
362   ListScheduleTopDown();
363   
364   AvailableQueue.releaseState();
365 }
366
367 /// Observe - Update liveness information to account for the current
368 /// instruction, which will not be scheduled.
369 ///
370 void SchedulePostRATDList::Observe(MachineInstr *MI, unsigned Count) {
371   assert(Count < InsertPosIndex && "Instruction index out of expected range!");
372
373   // Any register which was defined within the previous scheduling region
374   // may have been rescheduled and its lifetime may overlap with registers
375   // in ways not reflected in our current liveness state. For each such
376   // register, adjust the liveness state to be conservatively correct.
377   for (unsigned Reg = 0; Reg != TargetRegisterInfo::FirstVirtualRegister; ++Reg)
378     if (DefIndices[Reg] < InsertPosIndex && DefIndices[Reg] >= Count) {
379       assert(KillIndices[Reg] == ~0u && "Clobbered register is live!");
380       // Mark this register to be non-renamable.
381       Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
382       // Move the def index to the end of the previous region, to reflect
383       // that the def could theoretically have been scheduled at the end.
384       DefIndices[Reg] = InsertPosIndex;
385     }
386
387   PrescanInstruction(MI);
388   ScanInstruction(MI, Count);
389 }
390
391 /// FinishBlock - Clean up register live-range state.
392 ///
393 void SchedulePostRATDList::FinishBlock() {
394   RegRefs.clear();
395
396   // Call the superclass.
397   ScheduleDAGInstrs::FinishBlock();
398 }
399
400 /// CriticalPathStep - Return the next SUnit after SU on the bottom-up
401 /// critical path.
402 static SDep *CriticalPathStep(SUnit *SU) {
403   SDep *Next = 0;
404   unsigned NextDepth = 0;
405   // Find the predecessor edge with the greatest depth.
406   for (SUnit::pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end();
407        P != PE; ++P) {
408     SUnit *PredSU = P->getSUnit();
409     unsigned PredLatency = P->getLatency();
410     unsigned PredTotalLatency = PredSU->getDepth() + PredLatency;
411     // In the case of a latency tie, prefer an anti-dependency edge over
412     // other types of edges.
413     if (NextDepth < PredTotalLatency ||
414         (NextDepth == PredTotalLatency && P->getKind() == SDep::Anti)) {
415       NextDepth = PredTotalLatency;
416       Next = &*P;
417     }
418   }
419   return Next;
420 }
421
422 void SchedulePostRATDList::PrescanInstruction(MachineInstr *MI) {
423   // Scan the register operands for this instruction and update
424   // Classes and RegRefs.
425   for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
426     MachineOperand &MO = MI->getOperand(i);
427     if (!MO.isReg()) continue;
428     unsigned Reg = MO.getReg();
429     if (Reg == 0) continue;
430     const TargetRegisterClass *NewRC = 0;
431     
432     if (i < MI->getDesc().getNumOperands())
433       NewRC = MI->getDesc().OpInfo[i].getRegClass(TRI);
434
435     // For now, only allow the register to be changed if its register
436     // class is consistent across all uses.
437     if (!Classes[Reg] && NewRC)
438       Classes[Reg] = NewRC;
439     else if (!NewRC || Classes[Reg] != NewRC)
440       Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
441
442     // Now check for aliases.
443     for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
444       // If an alias of the reg is used during the live range, give up.
445       // Note that this allows us to skip checking if AntiDepReg
446       // overlaps with any of the aliases, among other things.
447       unsigned AliasReg = *Alias;
448       if (Classes[AliasReg]) {
449         Classes[AliasReg] = reinterpret_cast<TargetRegisterClass *>(-1);
450         Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
451       }
452     }
453
454     // If we're still willing to consider this register, note the reference.
455     if (Classes[Reg] != reinterpret_cast<TargetRegisterClass *>(-1))
456       RegRefs.insert(std::make_pair(Reg, &MO));
457   }
458 }
459
460 void SchedulePostRATDList::ScanInstruction(MachineInstr *MI,
461                                            unsigned Count) {
462   // Update liveness.
463   // Proceding upwards, registers that are defed but not used in this
464   // instruction are now dead.
465   for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
466     MachineOperand &MO = MI->getOperand(i);
467     if (!MO.isReg()) continue;
468     unsigned Reg = MO.getReg();
469     if (Reg == 0) continue;
470     if (!MO.isDef()) continue;
471     // Ignore two-addr defs.
472     if (MI->isRegTiedToUseOperand(i)) continue;
473
474     DefIndices[Reg] = Count;
475     KillIndices[Reg] = ~0u;
476           assert(((KillIndices[Reg] == ~0u) !=
477                   (DefIndices[Reg] == ~0u)) &&
478                "Kill and Def maps aren't consistent for Reg!");
479     Classes[Reg] = 0;
480     RegRefs.erase(Reg);
481     // Repeat, for all subregs.
482     for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
483          *Subreg; ++Subreg) {
484       unsigned SubregReg = *Subreg;
485       DefIndices[SubregReg] = Count;
486       KillIndices[SubregReg] = ~0u;
487       Classes[SubregReg] = 0;
488       RegRefs.erase(SubregReg);
489     }
490     // Conservatively mark super-registers as unusable. If
491     // initializing for kill updating, then mark all supers as defined
492     // as well.
493     for (const unsigned *Super = TRI->getSuperRegisters(Reg);
494          *Super; ++Super) {
495       unsigned SuperReg = *Super;
496       Classes[SuperReg] = reinterpret_cast<TargetRegisterClass *>(-1);
497       if (GenerateLivenessForKills) {
498         DefIndices[SuperReg] = Count;
499         KillIndices[SuperReg] = ~0u;
500       }
501     }
502   }
503   for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
504     MachineOperand &MO = MI->getOperand(i);
505     if (!MO.isReg()) continue;
506     unsigned Reg = MO.getReg();
507     if (Reg == 0) continue;
508     if (!MO.isUse()) continue;
509
510     const TargetRegisterClass *NewRC = 0;
511     if (i < MI->getDesc().getNumOperands())
512       NewRC = MI->getDesc().OpInfo[i].getRegClass(TRI);
513
514     // For now, only allow the register to be changed if its register
515     // class is consistent across all uses.
516     if (!Classes[Reg] && NewRC)
517       Classes[Reg] = NewRC;
518     else if (!NewRC || Classes[Reg] != NewRC)
519       Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
520
521     RegRefs.insert(std::make_pair(Reg, &MO));
522
523     // It wasn't previously live but now it is, this is a kill.
524     if (KillIndices[Reg] == ~0u) {
525       KillIndices[Reg] = Count;
526       DefIndices[Reg] = ~0u;
527           assert(((KillIndices[Reg] == ~0u) !=
528                   (DefIndices[Reg] == ~0u)) &&
529                "Kill and Def maps aren't consistent for Reg!");
530     }
531     // Repeat, for all aliases.
532     for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
533       unsigned AliasReg = *Alias;
534       if (KillIndices[AliasReg] == ~0u) {
535         KillIndices[AliasReg] = Count;
536         DefIndices[AliasReg] = ~0u;
537       }
538     }
539   }
540 }
541
542 unsigned
543 SchedulePostRATDList::findSuitableFreeRegister(unsigned AntiDepReg,
544                                                unsigned LastNewReg,
545                                                const TargetRegisterClass *RC) {
546   for (TargetRegisterClass::iterator R = RC->allocation_order_begin(MF),
547        RE = RC->allocation_order_end(MF); R != RE; ++R) {
548     unsigned NewReg = *R;
549     // Don't replace a register with itself.
550     if (NewReg == AntiDepReg) continue;
551     // Don't replace a register with one that was recently used to repair
552     // an anti-dependence with this AntiDepReg, because that would
553     // re-introduce that anti-dependence.
554     if (NewReg == LastNewReg) continue;
555     // If NewReg is dead and NewReg's most recent def is not before
556     // AntiDepReg's kill, it's safe to replace AntiDepReg with NewReg.
557     assert(((KillIndices[AntiDepReg] == ~0u) != (DefIndices[AntiDepReg] == ~0u)) &&
558            "Kill and Def maps aren't consistent for AntiDepReg!");
559     assert(((KillIndices[NewReg] == ~0u) != (DefIndices[NewReg] == ~0u)) &&
560            "Kill and Def maps aren't consistent for NewReg!");
561     if (KillIndices[NewReg] != ~0u ||
562         Classes[NewReg] == reinterpret_cast<TargetRegisterClass *>(-1) ||
563         KillIndices[AntiDepReg] > DefIndices[NewReg])
564       continue;
565     return NewReg;
566   }
567
568   // No registers are free and available!
569   return 0;
570 }
571
572 /// BreakAntiDependencies - Identifiy anti-dependencies along the critical path
573 /// of the ScheduleDAG and break them by renaming registers.
574 ///
575 bool SchedulePostRATDList::BreakAntiDependencies() {
576   // The code below assumes that there is at least one instruction,
577   // so just duck out immediately if the block is empty.
578   if (SUnits.empty()) return false;
579
580   // Find the node at the bottom of the critical path.
581   SUnit *Max = 0;
582   for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
583     SUnit *SU = &SUnits[i];
584     if (!Max || SU->getDepth() + SU->Latency > Max->getDepth() + Max->Latency)
585       Max = SU;
586   }
587
588   DEBUG(errs() << "Critical path has total latency "
589         << (Max->getDepth() + Max->Latency) << "\n");
590
591   // Track progress along the critical path through the SUnit graph as we walk
592   // the instructions.
593   SUnit *CriticalPathSU = Max;
594   MachineInstr *CriticalPathMI = CriticalPathSU->getInstr();
595
596   // Consider this pattern:
597   //   A = ...
598   //   ... = A
599   //   A = ...
600   //   ... = A
601   //   A = ...
602   //   ... = A
603   //   A = ...
604   //   ... = A
605   // There are three anti-dependencies here, and without special care,
606   // we'd break all of them using the same register:
607   //   A = ...
608   //   ... = A
609   //   B = ...
610   //   ... = B
611   //   B = ...
612   //   ... = B
613   //   B = ...
614   //   ... = B
615   // because at each anti-dependence, B is the first register that
616   // isn't A which is free.  This re-introduces anti-dependencies
617   // at all but one of the original anti-dependencies that we were
618   // trying to break.  To avoid this, keep track of the most recent
619   // register that each register was replaced with, avoid
620   // using it to repair an anti-dependence on the same register.
621   // This lets us produce this:
622   //   A = ...
623   //   ... = A
624   //   B = ...
625   //   ... = B
626   //   C = ...
627   //   ... = C
628   //   B = ...
629   //   ... = B
630   // This still has an anti-dependence on B, but at least it isn't on the
631   // original critical path.
632   //
633   // TODO: If we tracked more than one register here, we could potentially
634   // fix that remaining critical edge too. This is a little more involved,
635   // because unlike the most recent register, less recent registers should
636   // still be considered, though only if no other registers are available.
637   unsigned LastNewReg[TargetRegisterInfo::FirstVirtualRegister] = {};
638
639   // Attempt to break anti-dependence edges on the critical path. Walk the
640   // instructions from the bottom up, tracking information about liveness
641   // as we go to help determine which registers are available.
642   bool Changed = false;
643   unsigned Count = InsertPosIndex - 1;
644   for (MachineBasicBlock::iterator I = InsertPos, E = Begin;
645        I != E; --Count) {
646     MachineInstr *MI = --I;
647
648     // After regalloc, IMPLICIT_DEF instructions aren't safe to treat as
649     // dependence-breaking. In the case of an INSERT_SUBREG, the IMPLICIT_DEF
650     // is left behind appearing to clobber the super-register, while the
651     // subregister needs to remain live. So we just ignore them.
652     if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF)
653       continue;
654
655     // Check if this instruction has a dependence on the critical path that
656     // is an anti-dependence that we may be able to break. If it is, set
657     // AntiDepReg to the non-zero register associated with the anti-dependence.
658     //
659     // We limit our attention to the critical path as a heuristic to avoid
660     // breaking anti-dependence edges that aren't going to significantly
661     // impact the overall schedule. There are a limited number of registers
662     // and we want to save them for the important edges.
663     // 
664     // TODO: Instructions with multiple defs could have multiple
665     // anti-dependencies. The current code here only knows how to break one
666     // edge per instruction. Note that we'd have to be able to break all of
667     // the anti-dependencies in an instruction in order to be effective.
668     unsigned AntiDepReg = 0;
669     if (MI == CriticalPathMI) {
670       if (SDep *Edge = CriticalPathStep(CriticalPathSU)) {
671         SUnit *NextSU = Edge->getSUnit();
672
673         // Only consider anti-dependence edges.
674         if (Edge->getKind() == SDep::Anti) {
675           AntiDepReg = Edge->getReg();
676           assert(AntiDepReg != 0 && "Anti-dependence on reg0?");
677           // Don't break anti-dependencies on non-allocatable registers.
678           if (!AllocatableSet.test(AntiDepReg))
679             AntiDepReg = 0;
680           else {
681             // If the SUnit has other dependencies on the SUnit that it
682             // anti-depends on, don't bother breaking the anti-dependency
683             // since those edges would prevent such units from being
684             // scheduled past each other regardless.
685             //
686             // Also, if there are dependencies on other SUnits with the
687             // same register as the anti-dependency, don't attempt to
688             // break it.
689             for (SUnit::pred_iterator P = CriticalPathSU->Preds.begin(),
690                  PE = CriticalPathSU->Preds.end(); P != PE; ++P)
691               if (P->getSUnit() == NextSU ?
692                     (P->getKind() != SDep::Anti || P->getReg() != AntiDepReg) :
693                     (P->getKind() == SDep::Data && P->getReg() == AntiDepReg)) {
694                 AntiDepReg = 0;
695                 break;
696               }
697           }
698         }
699         CriticalPathSU = NextSU;
700         CriticalPathMI = CriticalPathSU->getInstr();
701       } else {
702         // We've reached the end of the critical path.
703         CriticalPathSU = 0;
704         CriticalPathMI = 0;
705       }
706     }
707
708     PrescanInstruction(MI);
709
710     // If this instruction has a use of AntiDepReg, breaking it
711     // is invalid.
712     for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
713       MachineOperand &MO = MI->getOperand(i);
714       if (!MO.isReg()) continue;
715       unsigned Reg = MO.getReg();
716       if (Reg == 0) continue;
717       if (MO.isUse() && AntiDepReg == Reg) {
718         AntiDepReg = 0;
719         break;
720       }
721     }
722
723     // Determine AntiDepReg's register class, if it is live and is
724     // consistently used within a single class.
725     const TargetRegisterClass *RC = AntiDepReg != 0 ? Classes[AntiDepReg] : 0;
726     assert((AntiDepReg == 0 || RC != NULL) &&
727            "Register should be live if it's causing an anti-dependence!");
728     if (RC == reinterpret_cast<TargetRegisterClass *>(-1))
729       AntiDepReg = 0;
730
731     // Look for a suitable register to use to break the anti-depenence.
732     //
733     // TODO: Instead of picking the first free register, consider which might
734     // be the best.
735     if (AntiDepReg != 0) {
736       if (unsigned NewReg = findSuitableFreeRegister(AntiDepReg,
737                                                      LastNewReg[AntiDepReg],
738                                                      RC)) {
739         DEBUG(errs() << "Breaking anti-dependence edge on "
740               << TRI->getName(AntiDepReg)
741               << " with " << RegRefs.count(AntiDepReg) << " references"
742               << " using " << TRI->getName(NewReg) << "!\n");
743
744         // Update the references to the old register to refer to the new
745         // register.
746         std::pair<std::multimap<unsigned, MachineOperand *>::iterator,
747                   std::multimap<unsigned, MachineOperand *>::iterator>
748            Range = RegRefs.equal_range(AntiDepReg);
749         for (std::multimap<unsigned, MachineOperand *>::iterator
750              Q = Range.first, QE = Range.second; Q != QE; ++Q)
751           Q->second->setReg(NewReg);
752
753         // We just went back in time and modified history; the
754         // liveness information for the anti-depenence reg is now
755         // inconsistent. Set the state as if it were dead.
756         Classes[NewReg] = Classes[AntiDepReg];
757         DefIndices[NewReg] = DefIndices[AntiDepReg];
758         KillIndices[NewReg] = KillIndices[AntiDepReg];
759         assert(((KillIndices[NewReg] == ~0u) !=
760                 (DefIndices[NewReg] == ~0u)) &&
761              "Kill and Def maps aren't consistent for NewReg!");
762
763         Classes[AntiDepReg] = 0;
764         DefIndices[AntiDepReg] = KillIndices[AntiDepReg];
765         KillIndices[AntiDepReg] = ~0u;
766         assert(((KillIndices[AntiDepReg] == ~0u) !=
767                 (DefIndices[AntiDepReg] == ~0u)) &&
768              "Kill and Def maps aren't consistent for AntiDepReg!");
769
770         RegRefs.erase(AntiDepReg);
771         Changed = true;
772         LastNewReg[AntiDepReg] = NewReg;
773       }
774     }
775
776     ScanInstruction(MI, Count);
777   }
778
779   return Changed;
780 }
781
782 /// FixupKills - Fix the register kill flags, they may have been made
783 /// incorrect by instruction reordering.
784 ///
785 void SchedulePostRATDList::FixupKills(MachineBasicBlock *MBB) {
786   DEBUG(errs() << "Fixup kills for BB ID#" << MBB->getNumber() << '\n');
787
788   std::set<unsigned> killedRegs;
789   BitVector ReservedRegs = TRI->getReservedRegs(MF);
790
791   unsigned Count = MBB->size();
792   for (MachineBasicBlock::iterator I = MBB->end(), E = MBB->begin();
793        I != E; --Count) {
794     MachineInstr *MI = --I;
795
796     // After regalloc, IMPLICIT_DEF instructions aren't safe to treat as
797     // dependence-breaking. In the case of an INSERT_SUBREG, the IMPLICIT_DEF
798     // is left behind appearing to clobber the super-register, while the
799     // subregister needs to remain live. So we just ignore them.
800     if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF)
801       continue;
802
803     PrescanInstruction(MI);
804     ScanInstruction(MI, Count);
805
806     // Examine all used registers and set kill flag. When a register
807     // is used multiple times we only set the kill flag on the first
808     // use.
809     killedRegs.clear();
810     for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
811       MachineOperand &MO = MI->getOperand(i);
812       if (!MO.isReg() || !MO.isUse()) continue;
813       unsigned Reg = MO.getReg();
814       if ((Reg == 0) || ReservedRegs.test(Reg)) continue;
815
816       bool kill = ((KillIndices[Reg] == Count) && 
817                    (killedRegs.find(Reg) == killedRegs.end()));
818       if (MO.isKill() != kill) {
819         MO.setIsKill(kill);
820         DEBUG(errs() << "Fixed " << MO << " in ");
821         DEBUG(MI->dump());
822       }
823
824       killedRegs.insert(Reg);
825     }
826   }
827 }
828
829 //===----------------------------------------------------------------------===//
830 //  Top-Down Scheduling
831 //===----------------------------------------------------------------------===//
832
833 /// ReleaseSucc - Decrement the NumPredsLeft count of a successor. Add it to
834 /// the PendingQueue if the count reaches zero. Also update its cycle bound.
835 void SchedulePostRATDList::ReleaseSucc(SUnit *SU, SDep *SuccEdge) {
836   SUnit *SuccSU = SuccEdge->getSUnit();
837   --SuccSU->NumPredsLeft;
838   
839 #ifndef NDEBUG
840   if (SuccSU->NumPredsLeft < 0) {
841     errs() << "*** Scheduling failed! ***\n";
842     SuccSU->dump(this);
843     errs() << " has been released too many times!\n";
844     llvm_unreachable(0);
845   }
846 #endif
847   
848   // Compute how many cycles it will be before this actually becomes
849   // available.  This is the max of the start time of all predecessors plus
850   // their latencies.
851   SuccSU->setDepthToAtLeast(SU->getDepth() + SuccEdge->getLatency());
852   
853   // If all the node's predecessors are scheduled, this node is ready
854   // to be scheduled. Ignore the special ExitSU node.
855   if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
856     PendingQueue.push_back(SuccSU);
857 }
858
859 /// ReleaseSuccessors - Call ReleaseSucc on each of SU's successors.
860 void SchedulePostRATDList::ReleaseSuccessors(SUnit *SU) {
861   for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
862        I != E; ++I)
863     ReleaseSucc(SU, &*I);
864 }
865
866 /// ScheduleNodeTopDown - Add the node to the schedule. Decrement the pending
867 /// count of its successors. If a successor pending count is zero, add it to
868 /// the Available queue.
869 void SchedulePostRATDList::ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle) {
870   DEBUG(errs() << "*** Scheduling [" << CurCycle << "]: ");
871   DEBUG(SU->dump(this));
872   
873   Sequence.push_back(SU);
874   assert(CurCycle >= SU->getDepth() && "Node scheduled above its depth!");
875   SU->setDepthToAtLeast(CurCycle);
876
877   ReleaseSuccessors(SU);
878   SU->isScheduled = true;
879   AvailableQueue.ScheduledNode(SU);
880 }
881
882 /// ListScheduleTopDown - The main loop of list scheduling for top-down
883 /// schedulers.
884 void SchedulePostRATDList::ListScheduleTopDown() {
885   unsigned CurCycle = 0;
886
887   // Release any successors of the special Entry node.
888   ReleaseSuccessors(&EntrySU);
889
890   // All leaves to Available queue.
891   for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
892     // It is available if it has no predecessors.
893     if (SUnits[i].Preds.empty()) {
894       AvailableQueue.push(&SUnits[i]);
895       SUnits[i].isAvailable = true;
896     }
897   }
898
899   // In any cycle where we can't schedule any instructions, we must
900   // stall or emit a noop, depending on the target.
901   bool CycleInstCnt = 0;
902
903   // While Available queue is not empty, grab the node with the highest
904   // priority. If it is not ready put it back.  Schedule the node.
905   std::vector<SUnit*> NotReady;
906   Sequence.reserve(SUnits.size());
907   while (!AvailableQueue.empty() || !PendingQueue.empty()) {
908     // Check to see if any of the pending instructions are ready to issue.  If
909     // so, add them to the available queue.
910     unsigned MinDepth = ~0u;
911     for (unsigned i = 0, e = PendingQueue.size(); i != e; ++i) {
912       if (PendingQueue[i]->getDepth() <= CurCycle) {
913         AvailableQueue.push(PendingQueue[i]);
914         PendingQueue[i]->isAvailable = true;
915         PendingQueue[i] = PendingQueue.back();
916         PendingQueue.pop_back();
917         --i; --e;
918       } else if (PendingQueue[i]->getDepth() < MinDepth)
919         MinDepth = PendingQueue[i]->getDepth();
920     }
921
922     DEBUG(errs() << "\n*** Examining Available\n";
923           LatencyPriorityQueue q = AvailableQueue;
924           while (!q.empty()) {
925             SUnit *su = q.pop();
926             errs() << "Height " << su->getHeight() << ": ";
927             su->dump(this);
928           });
929
930     SUnit *FoundSUnit = 0;
931
932     bool HasNoopHazards = false;
933     while (!AvailableQueue.empty()) {
934       SUnit *CurSUnit = AvailableQueue.pop();
935
936       ScheduleHazardRecognizer::HazardType HT =
937         HazardRec->getHazardType(CurSUnit);
938       if (HT == ScheduleHazardRecognizer::NoHazard) {
939         FoundSUnit = CurSUnit;
940         break;
941       }
942
943       // Remember if this is a noop hazard.
944       HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard;
945
946       NotReady.push_back(CurSUnit);
947     }
948
949     // Add the nodes that aren't ready back onto the available list.
950     if (!NotReady.empty()) {
951       AvailableQueue.push_all(NotReady);
952       NotReady.clear();
953     }
954
955     // If we found a node to schedule, do it now.
956     if (FoundSUnit) {
957       ScheduleNodeTopDown(FoundSUnit, CurCycle);
958       HazardRec->EmitInstruction(FoundSUnit);
959       CycleInstCnt++;
960
961       // If we are using the target-specific hazards, then don't
962       // advance the cycle time just because we schedule a node. If
963       // the target allows it we can schedule multiple nodes in the
964       // same cycle.
965       if (!EnablePostRAHazardAvoidance) {
966         if (FoundSUnit->Latency)  // Don't increment CurCycle for pseudo-ops!
967           ++CurCycle;
968       }
969     } else {
970       if (CycleInstCnt > 0) {
971         DEBUG(errs() << "*** Finished cycle " << CurCycle << '\n');
972         HazardRec->AdvanceCycle();
973       } else if (!HasNoopHazards) {
974         // Otherwise, we have a pipeline stall, but no other problem,
975         // just advance the current cycle and try again.
976         DEBUG(errs() << "*** Stall in cycle " << CurCycle << '\n');
977         HazardRec->AdvanceCycle();
978         ++NumStalls;
979       } else {
980         // Otherwise, we have no instructions to issue and we have instructions
981         // that will fault if we don't do this right.  This is the case for
982         // processors without pipeline interlocks and other cases.
983         DEBUG(errs() << "*** Emitting noop in cycle " << CurCycle << '\n');
984         HazardRec->EmitNoop();
985         Sequence.push_back(0);   // NULL here means noop
986         ++NumNoops;
987       }
988
989       ++CurCycle;
990       CycleInstCnt = 0;
991     }
992   }
993
994 #ifndef NDEBUG
995   VerifySchedule(/*isBottomUp=*/false);
996 #endif
997 }
998
999 //===----------------------------------------------------------------------===//
1000 //                         Public Constructor Functions
1001 //===----------------------------------------------------------------------===//
1002
1003 FunctionPass *llvm::createPostRAScheduler() {
1004   return new PostRAScheduler();
1005 }