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