blob: 32aedbee94697f8e4edfcaa26495974cbc420337 [file] [log] [blame]
Andrew Trick5429a6b2012-05-17 22:37:09 +00001//===- MachineScheduler.cpp - Machine Instruction Scheduler ---------------===//
Andrew Trick96f678f2012-01-13 06:30:30 +00002//
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// MachineScheduler schedules machine instructions after phi elimination. It
11// preserves LiveIntervals so it can be invoked before register allocation.
12//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "misched"
16
Andrew Trickc174eaf2012-03-08 01:41:12 +000017#include "llvm/CodeGen/MachineScheduler.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000018#include "llvm/ADT/OwningPtr.h"
19#include "llvm/ADT/PriorityQueue.h"
20#include "llvm/Analysis/AliasAnalysis.h"
21#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Jakub Staszak760fa5d2013-03-10 13:11:23 +000022#include "llvm/CodeGen/MachineDominators.h"
23#include "llvm/CodeGen/MachineLoopInfo.h"
Andrew Trick96f678f2012-01-13 06:30:30 +000024#include "llvm/CodeGen/Passes.h"
Andrew Trick15252602012-06-06 20:29:31 +000025#include "llvm/CodeGen/RegisterClassInfo.h"
Andrew Trick53e98a22012-11-28 05:13:24 +000026#include "llvm/CodeGen/ScheduleDFS.h"
Andrew Trick0a39d4e2012-05-24 22:11:09 +000027#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
Andrew Trick96f678f2012-01-13 06:30:30 +000028#include "llvm/Support/CommandLine.h"
29#include "llvm/Support/Debug.h"
30#include "llvm/Support/ErrorHandling.h"
Andrew Trick30849792013-01-25 07:45:29 +000031#include "llvm/Support/GraphWriter.h"
Andrew Trick96f678f2012-01-13 06:30:30 +000032#include "llvm/Support/raw_ostream.h"
Andrew Trickc6cf11b2012-01-17 06:55:07 +000033#include <queue>
34
Andrew Trick96f678f2012-01-13 06:30:30 +000035using namespace llvm;
36
Andrew Trick78e5efe2012-09-11 00:39:15 +000037namespace llvm {
38cl::opt<bool> ForceTopDown("misched-topdown", cl::Hidden,
39 cl::desc("Force top-down list scheduling"));
40cl::opt<bool> ForceBottomUp("misched-bottomup", cl::Hidden,
41 cl::desc("Force bottom-up list scheduling"));
42}
Andrew Trick17d35e52012-03-14 04:00:41 +000043
Andrew Trick0df7f882012-03-07 00:18:25 +000044#ifndef NDEBUG
45static cl::opt<bool> ViewMISchedDAGs("view-misched-dags", cl::Hidden,
46 cl::desc("Pop up a window to show MISched dags after they are processed"));
Lang Hames23f1cbb2012-03-19 18:38:38 +000047
48static cl::opt<unsigned> MISchedCutoff("misched-cutoff", cl::Hidden,
49 cl::desc("Stop scheduling after N instructions"), cl::init(~0U));
Andrew Trick0df7f882012-03-07 00:18:25 +000050#else
51static bool ViewMISchedDAGs = false;
52#endif // NDEBUG
53
Andrew Tricke38afe12013-04-24 15:54:43 +000054// FIXME: remove this flag after initial testing. It should always be a good
55// thing.
56static cl::opt<bool> EnableCopyConstrain("misched-vcopy", cl::Hidden,
57 cl::desc("Constrain vreg copies."), cl::init(true));
58
Andrew Trick9b5caaa2012-11-12 19:40:10 +000059static cl::opt<bool> EnableLoadCluster("misched-cluster", cl::Hidden,
Andrew Trickad1cc1d2012-11-13 08:47:29 +000060 cl::desc("Enable load clustering."), cl::init(true));
Andrew Trick9b5caaa2012-11-12 19:40:10 +000061
Andrew Trick6996fd02012-11-12 19:52:20 +000062// Experimental heuristics
63static cl::opt<bool> EnableMacroFusion("misched-fusion", cl::Hidden,
Andrew Trickad1cc1d2012-11-13 08:47:29 +000064 cl::desc("Enable scheduling for macro fusion."), cl::init(true));
Andrew Trick6996fd02012-11-12 19:52:20 +000065
Andrew Trickfff2d3a2013-03-08 05:40:34 +000066static cl::opt<bool> VerifyScheduling("verify-misched", cl::Hidden,
67 cl::desc("Verify machine instrs before and after machine scheduling"));
68
Andrew Trick178f7d02013-01-25 04:01:04 +000069// DAG subtrees must have at least this many nodes.
70static const unsigned MinSubtreeSize = 8;
71
Andrew Trick5edf2f02012-01-14 02:17:06 +000072//===----------------------------------------------------------------------===//
73// Machine Instruction Scheduling Pass and Registry
74//===----------------------------------------------------------------------===//
75
Andrew Trick86b7e2a2012-04-24 20:36:19 +000076MachineSchedContext::MachineSchedContext():
77 MF(0), MLI(0), MDT(0), PassConfig(0), AA(0), LIS(0) {
78 RegClassInfo = new RegisterClassInfo();
79}
80
81MachineSchedContext::~MachineSchedContext() {
82 delete RegClassInfo;
83}
84
Andrew Trick96f678f2012-01-13 06:30:30 +000085namespace {
Andrew Trick42b7a712012-01-17 06:55:03 +000086/// MachineScheduler runs after coalescing and before register allocation.
Andrew Trickc174eaf2012-03-08 01:41:12 +000087class MachineScheduler : public MachineSchedContext,
88 public MachineFunctionPass {
Andrew Trick96f678f2012-01-13 06:30:30 +000089public:
Andrew Trick42b7a712012-01-17 06:55:03 +000090 MachineScheduler();
Andrew Trick96f678f2012-01-13 06:30:30 +000091
92 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
93
94 virtual void releaseMemory() {}
95
96 virtual bool runOnMachineFunction(MachineFunction&);
97
98 virtual void print(raw_ostream &O, const Module* = 0) const;
99
100 static char ID; // Class identification, replacement for typeinfo
101};
102} // namespace
103
Andrew Trick42b7a712012-01-17 06:55:03 +0000104char MachineScheduler::ID = 0;
Andrew Trick96f678f2012-01-13 06:30:30 +0000105
Andrew Trick42b7a712012-01-17 06:55:03 +0000106char &llvm::MachineSchedulerID = MachineScheduler::ID;
Andrew Trick96f678f2012-01-13 06:30:30 +0000107
Andrew Trick42b7a712012-01-17 06:55:03 +0000108INITIALIZE_PASS_BEGIN(MachineScheduler, "misched",
Andrew Trick96f678f2012-01-13 06:30:30 +0000109 "Machine Instruction Scheduler", false, false)
110INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
111INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
112INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
Andrew Trick42b7a712012-01-17 06:55:03 +0000113INITIALIZE_PASS_END(MachineScheduler, "misched",
Andrew Trick96f678f2012-01-13 06:30:30 +0000114 "Machine Instruction Scheduler", false, false)
115
Andrew Trick42b7a712012-01-17 06:55:03 +0000116MachineScheduler::MachineScheduler()
Andrew Trickc174eaf2012-03-08 01:41:12 +0000117: MachineFunctionPass(ID) {
Andrew Trick42b7a712012-01-17 06:55:03 +0000118 initializeMachineSchedulerPass(*PassRegistry::getPassRegistry());
Andrew Trick96f678f2012-01-13 06:30:30 +0000119}
120
Andrew Trick42b7a712012-01-17 06:55:03 +0000121void MachineScheduler::getAnalysisUsage(AnalysisUsage &AU) const {
Andrew Trick96f678f2012-01-13 06:30:30 +0000122 AU.setPreservesCFG();
123 AU.addRequiredID(MachineDominatorsID);
124 AU.addRequired<MachineLoopInfo>();
125 AU.addRequired<AliasAnalysis>();
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000126 AU.addRequired<TargetPassConfig>();
Andrew Trick96f678f2012-01-13 06:30:30 +0000127 AU.addRequired<SlotIndexes>();
128 AU.addPreserved<SlotIndexes>();
129 AU.addRequired<LiveIntervals>();
130 AU.addPreserved<LiveIntervals>();
Andrew Trick96f678f2012-01-13 06:30:30 +0000131 MachineFunctionPass::getAnalysisUsage(AU);
132}
133
Andrew Trick96f678f2012-01-13 06:30:30 +0000134MachinePassRegistry MachineSchedRegistry::Registry;
135
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000136/// A dummy default scheduler factory indicates whether the scheduler
137/// is overridden on the command line.
138static ScheduleDAGInstrs *useDefaultMachineSched(MachineSchedContext *C) {
139 return 0;
140}
Andrew Trick96f678f2012-01-13 06:30:30 +0000141
142/// MachineSchedOpt allows command line selection of the scheduler.
143static cl::opt<MachineSchedRegistry::ScheduleDAGCtor, false,
144 RegisterPassParser<MachineSchedRegistry> >
145MachineSchedOpt("misched",
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000146 cl::init(&useDefaultMachineSched), cl::Hidden,
Andrew Trick96f678f2012-01-13 06:30:30 +0000147 cl::desc("Machine instruction scheduler to use"));
148
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000149static MachineSchedRegistry
Andrew Trick17d35e52012-03-14 04:00:41 +0000150DefaultSchedRegistry("default", "Use the target's default scheduler choice.",
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000151 useDefaultMachineSched);
152
Andrew Trick17d35e52012-03-14 04:00:41 +0000153/// Forward declare the standard machine scheduler. This will be used as the
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000154/// default scheduler if the target does not set a default.
Andrew Trick17d35e52012-03-14 04:00:41 +0000155static ScheduleDAGInstrs *createConvergingSched(MachineSchedContext *C);
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000156
Andrew Trickeb45ebb2012-04-24 18:04:34 +0000157
158/// Decrement this iterator until reaching the top or a non-debug instr.
159static MachineBasicBlock::iterator
160priorNonDebug(MachineBasicBlock::iterator I, MachineBasicBlock::iterator Beg) {
161 assert(I != Beg && "reached the top of the region, cannot decrement");
162 while (--I != Beg) {
163 if (!I->isDebugValue())
164 break;
165 }
166 return I;
167}
168
169/// If this iterator is a debug value, increment until reaching the End or a
170/// non-debug instruction.
171static MachineBasicBlock::iterator
172nextIfDebug(MachineBasicBlock::iterator I, MachineBasicBlock::iterator End) {
Andrew Trick811d92682012-05-17 18:35:03 +0000173 for(; I != End; ++I) {
Andrew Trickeb45ebb2012-04-24 18:04:34 +0000174 if (!I->isDebugValue())
175 break;
176 }
177 return I;
178}
179
Andrew Trickcb058d52012-03-14 04:00:38 +0000180/// Top-level MachineScheduler pass driver.
181///
182/// Visit blocks in function order. Divide each block into scheduling regions
Andrew Trick17d35e52012-03-14 04:00:41 +0000183/// and visit them bottom-up. Visiting regions bottom-up is not required, but is
184/// consistent with the DAG builder, which traverses the interior of the
185/// scheduling regions bottom-up.
Andrew Trickcb058d52012-03-14 04:00:38 +0000186///
187/// This design avoids exposing scheduling boundaries to the DAG builder,
Andrew Trick17d35e52012-03-14 04:00:41 +0000188/// simplifying the DAG builder's support for "special" target instructions.
189/// At the same time the design allows target schedulers to operate across
Andrew Trickcb058d52012-03-14 04:00:38 +0000190/// scheduling boundaries, for example to bundle the boudary instructions
191/// without reordering them. This creates complexity, because the target
192/// scheduler must update the RegionBegin and RegionEnd positions cached by
193/// ScheduleDAGInstrs whenever adding or removing instructions. A much simpler
194/// design would be to split blocks at scheduling boundaries, but LLVM has a
195/// general bias against block splitting purely for implementation simplicity.
Andrew Trick42b7a712012-01-17 06:55:03 +0000196bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) {
Andrew Trick89c324b2012-05-10 21:06:21 +0000197 DEBUG(dbgs() << "Before MISsched:\n"; mf.print(dbgs()));
198
Andrew Trick96f678f2012-01-13 06:30:30 +0000199 // Initialize the context of the pass.
200 MF = &mf;
201 MLI = &getAnalysis<MachineLoopInfo>();
202 MDT = &getAnalysis<MachineDominatorTree>();
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000203 PassConfig = &getAnalysis<TargetPassConfig>();
Andrew Trickc174eaf2012-03-08 01:41:12 +0000204 AA = &getAnalysis<AliasAnalysis>();
205
Lang Hames907cc8f2012-01-27 22:36:19 +0000206 LIS = &getAnalysis<LiveIntervals>();
Andrew Trickc174eaf2012-03-08 01:41:12 +0000207 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
Andrew Trick96f678f2012-01-13 06:30:30 +0000208
Andrew Trickfff2d3a2013-03-08 05:40:34 +0000209 if (VerifyScheduling) {
210 DEBUG(LIS->print(dbgs()));
211 MF->verify(this, "Before machine scheduling.");
212 }
Andrew Trick86b7e2a2012-04-24 20:36:19 +0000213 RegClassInfo->runOnMachineFunction(*MF);
Andrew Trick006e1ab2012-04-24 17:56:43 +0000214
Andrew Trick96f678f2012-01-13 06:30:30 +0000215 // Select the scheduler, or set the default.
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000216 MachineSchedRegistry::ScheduleDAGCtor Ctor = MachineSchedOpt;
217 if (Ctor == useDefaultMachineSched) {
218 // Get the default scheduler set by the target.
219 Ctor = MachineSchedRegistry::getDefault();
220 if (!Ctor) {
Andrew Trick17d35e52012-03-14 04:00:41 +0000221 Ctor = createConvergingSched;
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000222 MachineSchedRegistry::setDefault(Ctor);
223 }
Andrew Trick96f678f2012-01-13 06:30:30 +0000224 }
225 // Instantiate the selected scheduler.
226 OwningPtr<ScheduleDAGInstrs> Scheduler(Ctor(this));
227
228 // Visit all machine basic blocks.
Andrew Trick006e1ab2012-04-24 17:56:43 +0000229 //
230 // TODO: Visit blocks in global postorder or postorder within the bottom-up
231 // loop tree. Then we can optionally compute global RegPressure.
Andrew Trick96f678f2012-01-13 06:30:30 +0000232 for (MachineFunction::iterator MBB = MF->begin(), MBBEnd = MF->end();
233 MBB != MBBEnd; ++MBB) {
234
Andrew Trick1fabd9f2012-03-09 08:02:51 +0000235 Scheduler->startBlock(MBB);
236
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000237 // Break the block into scheduling regions [I, RegionEnd), and schedule each
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +0000238 // region as soon as it is discovered. RegionEnd points the scheduling
Andrew Trickfe4d6df2012-03-09 22:34:56 +0000239 // boundary at the bottom of the region. The DAG does not include RegionEnd,
240 // but the region does (i.e. the next RegionEnd is above the previous
241 // RegionBegin). If the current block has no terminator then RegionEnd ==
242 // MBB->end() for the bottom region.
243 //
244 // The Scheduler may insert instructions during either schedule() or
245 // exitRegion(), even for empty regions. So the local iterators 'I' and
246 // 'RegionEnd' are invalid across these calls.
Andrew Trick22764532012-11-06 07:10:34 +0000247 unsigned RemainingInstrs = MBB->size();
Andrew Trick7799eb42012-03-09 03:46:39 +0000248 for(MachineBasicBlock::iterator RegionEnd = MBB->end();
Andrew Trickfe4d6df2012-03-09 22:34:56 +0000249 RegionEnd != MBB->begin(); RegionEnd = Scheduler->begin()) {
Andrew Trick006e1ab2012-04-24 17:56:43 +0000250
Andrew Trick1fabd9f2012-03-09 08:02:51 +0000251 // Avoid decrementing RegionEnd for blocks with no terminator.
252 if (RegionEnd != MBB->end()
253 || TII->isSchedulingBoundary(llvm::prior(RegionEnd), MBB, *MF)) {
254 --RegionEnd;
255 // Count the boundary instruction.
Andrew Trick22764532012-11-06 07:10:34 +0000256 --RemainingInstrs;
Andrew Trick1fabd9f2012-03-09 08:02:51 +0000257 }
258
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000259 // The next region starts above the previous region. Look backward in the
260 // instruction stream until we find the nearest boundary.
261 MachineBasicBlock::iterator I = RegionEnd;
Andrew Trick22764532012-11-06 07:10:34 +0000262 for(;I != MBB->begin(); --I, --RemainingInstrs) {
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000263 if (TII->isSchedulingBoundary(llvm::prior(I), MBB, *MF))
264 break;
265 }
Andrew Trick47c14452012-03-07 05:21:52 +0000266 // Notify the scheduler of the region, even if we may skip scheduling
267 // it. Perhaps it still needs to be bundled.
Andrew Trick22764532012-11-06 07:10:34 +0000268 Scheduler->enterRegion(MBB, I, RegionEnd, RemainingInstrs);
Andrew Trick47c14452012-03-07 05:21:52 +0000269
270 // Skip empty scheduling regions (0 or 1 schedulable instructions).
271 if (I == RegionEnd || I == llvm::prior(RegionEnd)) {
Andrew Trick47c14452012-03-07 05:21:52 +0000272 // Close the current region. Bundle the terminator if needed.
Andrew Trickfe4d6df2012-03-09 22:34:56 +0000273 // This invalidates 'RegionEnd' and 'I'.
Andrew Trick47c14452012-03-07 05:21:52 +0000274 Scheduler->exitRegion();
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000275 continue;
Andrew Trick3c58ba82012-01-14 02:17:18 +0000276 }
Andrew Trickbb0a2422012-05-24 22:11:14 +0000277 DEBUG(dbgs() << "********** MI Scheduling **********\n");
Craig Topper96601ca2012-08-22 06:07:19 +0000278 DEBUG(dbgs() << MF->getName()
Andrew Trickc8554232013-01-25 07:45:31 +0000279 << ":BB#" << MBB->getNumber() << " " << MBB->getName()
280 << "\n From: " << *I << " To: ";
Andrew Trick291411c2012-02-08 02:17:21 +0000281 if (RegionEnd != MBB->end()) dbgs() << *RegionEnd;
282 else dbgs() << "End";
Andrew Trick22764532012-11-06 07:10:34 +0000283 dbgs() << " Remaining: " << RemainingInstrs << "\n");
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000284
Andrew Trickd24da972012-03-09 03:46:42 +0000285 // Schedule a region: possibly reorder instructions.
Andrew Trickfe4d6df2012-03-09 22:34:56 +0000286 // This invalidates 'RegionEnd' and 'I'.
Andrew Trick953be892012-03-07 23:00:49 +0000287 Scheduler->schedule();
Andrew Trickd24da972012-03-09 03:46:42 +0000288
289 // Close the current region.
Andrew Trick47c14452012-03-07 05:21:52 +0000290 Scheduler->exitRegion();
291
292 // Scheduling has invalidated the current iterator 'I'. Ask the
293 // scheduler for the top of it's scheduled region.
294 RegionEnd = Scheduler->begin();
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000295 }
Andrew Trick22764532012-11-06 07:10:34 +0000296 assert(RemainingInstrs == 0 && "Instruction count mismatch!");
Andrew Trick953be892012-03-07 23:00:49 +0000297 Scheduler->finishBlock();
Andrew Trick96f678f2012-01-13 06:30:30 +0000298 }
Andrew Trick830da402012-04-01 07:24:23 +0000299 Scheduler->finalizeSchedule();
Andrew Trickaad37f12012-03-21 04:12:12 +0000300 DEBUG(LIS->print(dbgs()));
Andrew Trickfff2d3a2013-03-08 05:40:34 +0000301 if (VerifyScheduling)
302 MF->verify(this, "After machine scheduling.");
Andrew Trick96f678f2012-01-13 06:30:30 +0000303 return true;
304}
305
Andrew Trick42b7a712012-01-17 06:55:03 +0000306void MachineScheduler::print(raw_ostream &O, const Module* m) const {
Andrew Trick96f678f2012-01-13 06:30:30 +0000307 // unimplemented
308}
309
Manman Renb720be62012-09-11 22:23:19 +0000310#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Andrew Trick78e5efe2012-09-11 00:39:15 +0000311void ReadyQueue::dump() {
Andrew Trick11189f72013-04-05 00:31:29 +0000312 dbgs() << " " << Name << ": ";
Andrew Trick78e5efe2012-09-11 00:39:15 +0000313 for (unsigned i = 0, e = Queue.size(); i < e; ++i)
314 dbgs() << Queue[i]->NodeNum << " ";
315 dbgs() << "\n";
316}
317#endif
Andrew Trick17d35e52012-03-14 04:00:41 +0000318
319//===----------------------------------------------------------------------===//
320// ScheduleDAGMI - Base class for MachineInstr scheduling with LiveIntervals
321// preservation.
322//===----------------------------------------------------------------------===//
323
Andrew Trick178f7d02013-01-25 04:01:04 +0000324ScheduleDAGMI::~ScheduleDAGMI() {
325 delete DFSResult;
326 DeleteContainerPointers(Mutations);
327 delete SchedImpl;
328}
329
Andrew Tricke38afe12013-04-24 15:54:43 +0000330bool ScheduleDAGMI::canAddEdge(SUnit *SuccSU, SUnit *PredSU) {
331 return SuccSU == &ExitSU || !Topo.IsReachable(PredSU, SuccSU);
332}
333
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000334bool ScheduleDAGMI::addEdge(SUnit *SuccSU, const SDep &PredDep) {
Andrew Trick6996fd02012-11-12 19:52:20 +0000335 if (SuccSU != &ExitSU) {
336 // Do not use WillCreateCycle, it assumes SD scheduling.
337 // If Pred is reachable from Succ, then the edge creates a cycle.
338 if (Topo.IsReachable(PredDep.getSUnit(), SuccSU))
339 return false;
340 Topo.AddPred(SuccSU, PredDep.getSUnit());
341 }
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000342 SuccSU->addPred(PredDep, /*Required=*/!PredDep.isArtificial());
343 // Return true regardless of whether a new edge needed to be inserted.
344 return true;
345}
346
Andrew Trickc174eaf2012-03-08 01:41:12 +0000347/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. When
348/// NumPredsLeft reaches zero, release the successor node.
Andrew Trick0a39d4e2012-05-24 22:11:09 +0000349///
350/// FIXME: Adjust SuccSU height based on MinLatency.
Andrew Trick17d35e52012-03-14 04:00:41 +0000351void ScheduleDAGMI::releaseSucc(SUnit *SU, SDep *SuccEdge) {
Andrew Trickc174eaf2012-03-08 01:41:12 +0000352 SUnit *SuccSU = SuccEdge->getSUnit();
353
Andrew Trickae692f22012-11-12 19:28:57 +0000354 if (SuccEdge->isWeak()) {
355 --SuccSU->WeakPredsLeft;
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000356 if (SuccEdge->isCluster())
357 NextClusterSucc = SuccSU;
Andrew Trickae692f22012-11-12 19:28:57 +0000358 return;
359 }
Andrew Trickc174eaf2012-03-08 01:41:12 +0000360#ifndef NDEBUG
361 if (SuccSU->NumPredsLeft == 0) {
362 dbgs() << "*** Scheduling failed! ***\n";
363 SuccSU->dump(this);
364 dbgs() << " has been released too many times!\n";
365 llvm_unreachable(0);
366 }
367#endif
368 --SuccSU->NumPredsLeft;
369 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
Andrew Trick17d35e52012-03-14 04:00:41 +0000370 SchedImpl->releaseTopNode(SuccSU);
Andrew Trickc174eaf2012-03-08 01:41:12 +0000371}
372
373/// releaseSuccessors - Call releaseSucc on each of SU's successors.
Andrew Trick17d35e52012-03-14 04:00:41 +0000374void ScheduleDAGMI::releaseSuccessors(SUnit *SU) {
Andrew Trickc174eaf2012-03-08 01:41:12 +0000375 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
376 I != E; ++I) {
377 releaseSucc(SU, &*I);
378 }
379}
380
Andrew Trick17d35e52012-03-14 04:00:41 +0000381/// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. When
382/// NumSuccsLeft reaches zero, release the predecessor node.
Andrew Trick0a39d4e2012-05-24 22:11:09 +0000383///
384/// FIXME: Adjust PredSU height based on MinLatency.
Andrew Trick17d35e52012-03-14 04:00:41 +0000385void ScheduleDAGMI::releasePred(SUnit *SU, SDep *PredEdge) {
386 SUnit *PredSU = PredEdge->getSUnit();
387
Andrew Trickae692f22012-11-12 19:28:57 +0000388 if (PredEdge->isWeak()) {
389 --PredSU->WeakSuccsLeft;
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000390 if (PredEdge->isCluster())
391 NextClusterPred = PredSU;
Andrew Trickae692f22012-11-12 19:28:57 +0000392 return;
393 }
Andrew Trick17d35e52012-03-14 04:00:41 +0000394#ifndef NDEBUG
395 if (PredSU->NumSuccsLeft == 0) {
396 dbgs() << "*** Scheduling failed! ***\n";
397 PredSU->dump(this);
398 dbgs() << " has been released too many times!\n";
399 llvm_unreachable(0);
400 }
401#endif
402 --PredSU->NumSuccsLeft;
403 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU)
404 SchedImpl->releaseBottomNode(PredSU);
405}
406
407/// releasePredecessors - Call releasePred on each of SU's predecessors.
408void ScheduleDAGMI::releasePredecessors(SUnit *SU) {
409 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
410 I != E; ++I) {
411 releasePred(SU, &*I);
412 }
413}
414
Andrew Trick4392f0f2013-04-13 06:07:40 +0000415/// This is normally called from the main scheduler loop but may also be invoked
416/// by the scheduling strategy to perform additional code motion.
Andrew Trick17d35e52012-03-14 04:00:41 +0000417void ScheduleDAGMI::moveInstruction(MachineInstr *MI,
418 MachineBasicBlock::iterator InsertPos) {
Andrew Trick811d92682012-05-17 18:35:03 +0000419 // Advance RegionBegin if the first instruction moves down.
Andrew Trick1ce062f2012-03-21 04:12:10 +0000420 if (&*RegionBegin == MI)
Andrew Trick811d92682012-05-17 18:35:03 +0000421 ++RegionBegin;
422
423 // Update the instruction stream.
Andrew Trick17d35e52012-03-14 04:00:41 +0000424 BB->splice(InsertPos, BB, MI);
Andrew Trick811d92682012-05-17 18:35:03 +0000425
426 // Update LiveIntervals
Andrew Trick27c28ce2012-10-16 00:22:51 +0000427 LIS->handleMove(MI, /*UpdateFlags=*/true);
Andrew Trick811d92682012-05-17 18:35:03 +0000428
429 // Recede RegionBegin if an instruction moves above the first.
Andrew Trick17d35e52012-03-14 04:00:41 +0000430 if (RegionBegin == InsertPos)
431 RegionBegin = MI;
432}
433
Andrew Trick0b0d8992012-03-21 04:12:07 +0000434bool ScheduleDAGMI::checkSchedLimit() {
435#ifndef NDEBUG
436 if (NumInstrsScheduled == MISchedCutoff && MISchedCutoff != ~0U) {
437 CurrentTop = CurrentBottom;
438 return false;
439 }
440 ++NumInstrsScheduled;
441#endif
442 return true;
443}
444
Andrew Trick006e1ab2012-04-24 17:56:43 +0000445/// enterRegion - Called back from MachineScheduler::runOnMachineFunction after
446/// crossing a scheduling boundary. [begin, end) includes all instructions in
447/// the region, including the boundary itself and single-instruction regions
448/// that don't get scheduled.
449void ScheduleDAGMI::enterRegion(MachineBasicBlock *bb,
450 MachineBasicBlock::iterator begin,
451 MachineBasicBlock::iterator end,
452 unsigned endcount)
453{
454 ScheduleDAGInstrs::enterRegion(bb, begin, end, endcount);
Andrew Trick7f8ab782012-05-10 21:06:10 +0000455
456 // For convenience remember the end of the liveness region.
457 LiveRegionEnd =
458 (RegionEnd == bb->end()) ? RegionEnd : llvm::next(RegionEnd);
459}
460
461// Setup the register pressure trackers for the top scheduled top and bottom
462// scheduled regions.
463void ScheduleDAGMI::initRegPressure() {
464 TopRPTracker.init(&MF, RegClassInfo, LIS, BB, RegionBegin);
465 BotRPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd);
466
467 // Close the RPTracker to finalize live ins.
468 RPTracker.closeRegion();
469
Andrew Trickbb0a2422012-05-24 22:11:14 +0000470 DEBUG(RPTracker.getPressure().dump(TRI));
471
Andrew Trick7f8ab782012-05-10 21:06:10 +0000472 // Initialize the live ins and live outs.
473 TopRPTracker.addLiveRegs(RPTracker.getPressure().LiveInRegs);
474 BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs);
475
476 // Close one end of the tracker so we can call
477 // getMaxUpward/DownwardPressureDelta before advancing across any
478 // instructions. This converts currently live regs into live ins/outs.
479 TopRPTracker.closeTop();
480 BotRPTracker.closeBottom();
481
482 // Account for liveness generated by the region boundary.
483 if (LiveRegionEnd != RegionEnd)
484 BotRPTracker.recede();
485
486 assert(BotRPTracker.getPos() == RegionEnd && "Can't find the region bottom");
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000487
488 // Cache the list of excess pressure sets in this region. This will also track
489 // the max pressure in the scheduled code for these sets.
490 RegionCriticalPSets.clear();
Jakub Staszakb74564a2013-01-25 21:44:27 +0000491 const std::vector<unsigned> &RegionPressure =
492 RPTracker.getPressure().MaxSetPressure;
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000493 for (unsigned i = 0, e = RegionPressure.size(); i < e; ++i) {
494 unsigned Limit = TRI->getRegPressureSetLimit(i);
Andrew Trick78e5efe2012-09-11 00:39:15 +0000495 DEBUG(dbgs() << TRI->getRegPressureSetName(i)
496 << "Limit " << Limit
497 << " Actual " << RegionPressure[i] << "\n");
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000498 if (RegionPressure[i] > Limit)
499 RegionCriticalPSets.push_back(PressureElement(i, 0));
500 }
501 DEBUG(dbgs() << "Excess PSets: ";
502 for (unsigned i = 0, e = RegionCriticalPSets.size(); i != e; ++i)
503 dbgs() << TRI->getRegPressureSetName(
504 RegionCriticalPSets[i].PSetID) << " ";
505 dbgs() << "\n");
506}
507
508// FIXME: When the pressure tracker deals in pressure differences then we won't
509// iterate over all RegionCriticalPSets[i].
510void ScheduleDAGMI::
Jakub Staszakb717a502013-02-16 15:47:26 +0000511updateScheduledPressure(const std::vector<unsigned> &NewMaxPressure) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000512 for (unsigned i = 0, e = RegionCriticalPSets.size(); i < e; ++i) {
513 unsigned ID = RegionCriticalPSets[i].PSetID;
514 int &MaxUnits = RegionCriticalPSets[i].UnitIncrease;
515 if ((int)NewMaxPressure[ID] > MaxUnits)
516 MaxUnits = NewMaxPressure[ID];
517 }
Andrew Trick811a3722013-04-24 15:54:36 +0000518 DEBUG(
519 for (unsigned i = 0, e = NewMaxPressure.size(); i < e; ++i) {
520 unsigned Limit = TRI->getRegPressureSetLimit(i);
521 if (NewMaxPressure[i] > Limit ) {
522 dbgs() << " " << TRI->getRegPressureSetName(i) << ": "
523 << NewMaxPressure[i] << " > " << Limit << "\n";
524 }
525 });
Andrew Trick006e1ab2012-04-24 17:56:43 +0000526}
527
Andrew Trick17d35e52012-03-14 04:00:41 +0000528/// schedule - Called back from MachineScheduler::runOnMachineFunction
Andrew Trick006e1ab2012-04-24 17:56:43 +0000529/// after setting up the current scheduling region. [RegionBegin, RegionEnd)
530/// only includes instructions that have DAG nodes, not scheduling boundaries.
Andrew Trick78e5efe2012-09-11 00:39:15 +0000531///
532/// This is a skeletal driver, with all the functionality pushed into helpers,
533/// so that it can be easilly extended by experimental schedulers. Generally,
534/// implementing MachineSchedStrategy should be sufficient to implement a new
535/// scheduling algorithm. However, if a scheduler further subclasses
536/// ScheduleDAGMI then it will want to override this virtual method in order to
537/// update any specialized state.
Andrew Trick17d35e52012-03-14 04:00:41 +0000538void ScheduleDAGMI::schedule() {
Andrew Trick78e5efe2012-09-11 00:39:15 +0000539 buildDAGWithRegPressure();
540
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000541 Topo.InitDAGTopologicalSorting();
542
Andrew Trickd039b382012-09-14 17:22:42 +0000543 postprocessDAG();
544
Andrew Trick4e1fb182013-01-25 06:33:57 +0000545 SmallVector<SUnit*, 8> TopRoots, BotRoots;
546 findRootsAndBiasEdges(TopRoots, BotRoots);
547
548 // Initialize the strategy before modifying the DAG.
549 // This may initialize a DFSResult to be used for queue priority.
550 SchedImpl->initialize(this);
551
Andrew Trick78e5efe2012-09-11 00:39:15 +0000552 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
553 SUnits[su].dumpAll(this));
Andrew Trick4e1fb182013-01-25 06:33:57 +0000554 if (ViewMISchedDAGs) viewGraph();
Andrew Trick78e5efe2012-09-11 00:39:15 +0000555
Andrew Trick4e1fb182013-01-25 06:33:57 +0000556 // Initialize ready queues now that the DAG and priority data are finalized.
557 initQueues(TopRoots, BotRoots);
Andrew Trick78e5efe2012-09-11 00:39:15 +0000558
559 bool IsTopNode = false;
560 while (SUnit *SU = SchedImpl->pickNode(IsTopNode)) {
Andrew Trick30c6ec22012-10-08 18:53:53 +0000561 assert(!SU->isScheduled && "Node already scheduled");
Andrew Trick78e5efe2012-09-11 00:39:15 +0000562 if (!checkSchedLimit())
563 break;
564
565 scheduleMI(SU, IsTopNode);
566
567 updateQueues(SU, IsTopNode);
568 }
569 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone.");
570
571 placeDebugValues();
Andrew Trick3b87f622012-11-07 07:05:09 +0000572
573 DEBUG({
Andrew Trickb4221042012-11-28 03:42:47 +0000574 unsigned BBNum = begin()->getParent()->getNumber();
Andrew Trick3b87f622012-11-07 07:05:09 +0000575 dbgs() << "*** Final schedule for BB#" << BBNum << " ***\n";
576 dumpSchedule();
577 dbgs() << '\n';
578 });
Andrew Trick78e5efe2012-09-11 00:39:15 +0000579}
580
581/// Build the DAG and setup three register pressure trackers.
582void ScheduleDAGMI::buildDAGWithRegPressure() {
Andrew Trick7f8ab782012-05-10 21:06:10 +0000583 // Initialize the register pressure tracker used by buildSchedGraph.
584 RPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd);
Andrew Trick006e1ab2012-04-24 17:56:43 +0000585
Andrew Trick7f8ab782012-05-10 21:06:10 +0000586 // Account for liveness generate by the region boundary.
587 if (LiveRegionEnd != RegionEnd)
588 RPTracker.recede();
589
590 // Build the DAG, and compute current register pressure.
Andrew Trick006e1ab2012-04-24 17:56:43 +0000591 buildSchedGraph(AA, &RPTracker);
Andrew Trickc174eaf2012-03-08 01:41:12 +0000592
Andrew Trick7f8ab782012-05-10 21:06:10 +0000593 // Initialize top/bottom trackers after computing region pressure.
594 initRegPressure();
Andrew Trick78e5efe2012-09-11 00:39:15 +0000595}
Andrew Trick7f8ab782012-05-10 21:06:10 +0000596
Andrew Trickd039b382012-09-14 17:22:42 +0000597/// Apply each ScheduleDAGMutation step in order.
598void ScheduleDAGMI::postprocessDAG() {
599 for (unsigned i = 0, e = Mutations.size(); i < e; ++i) {
600 Mutations[i]->apply(this);
601 }
602}
603
Andrew Trick4e1fb182013-01-25 06:33:57 +0000604void ScheduleDAGMI::computeDFSResult() {
Andrew Trick178f7d02013-01-25 04:01:04 +0000605 if (!DFSResult)
606 DFSResult = new SchedDFSResult(/*BottomU*/true, MinSubtreeSize);
607 DFSResult->clear();
Andrew Trick178f7d02013-01-25 04:01:04 +0000608 ScheduledTrees.clear();
Andrew Trick4e1fb182013-01-25 06:33:57 +0000609 DFSResult->resize(SUnits.size());
610 DFSResult->compute(SUnits);
Andrew Trick178f7d02013-01-25 04:01:04 +0000611 ScheduledTrees.resize(DFSResult->getNumSubtrees());
612}
613
Andrew Trick4e1fb182013-01-25 06:33:57 +0000614void ScheduleDAGMI::findRootsAndBiasEdges(SmallVectorImpl<SUnit*> &TopRoots,
615 SmallVectorImpl<SUnit*> &BotRoots) {
Andrew Trick1e94e982012-10-15 18:02:27 +0000616 for (std::vector<SUnit>::iterator
617 I = SUnits.begin(), E = SUnits.end(); I != E; ++I) {
Andrew Trickae692f22012-11-12 19:28:57 +0000618 SUnit *SU = &(*I);
Andrew Trick4c6a2ba2013-01-29 06:26:35 +0000619 assert(!SU->isBoundaryNode() && "Boundary node should not be in SUnits");
Andrew Trickdb417062013-01-24 02:09:57 +0000620
621 // Order predecessors so DFSResult follows the critical path.
622 SU->biasCriticalPath();
623
Andrew Trick1e94e982012-10-15 18:02:27 +0000624 // A SUnit is ready to top schedule if it has no predecessors.
Andrew Trick4c6a2ba2013-01-29 06:26:35 +0000625 if (!I->NumPredsLeft)
Andrew Trick4e1fb182013-01-25 06:33:57 +0000626 TopRoots.push_back(SU);
Andrew Trick1e94e982012-10-15 18:02:27 +0000627 // A SUnit is ready to bottom schedule if it has no successors.
Andrew Trick4c6a2ba2013-01-29 06:26:35 +0000628 if (!I->NumSuccsLeft)
Andrew Trickae692f22012-11-12 19:28:57 +0000629 BotRoots.push_back(SU);
Andrew Trick1e94e982012-10-15 18:02:27 +0000630 }
Andrew Trick4c6a2ba2013-01-29 06:26:35 +0000631 ExitSU.biasCriticalPath();
Andrew Trick1e94e982012-10-15 18:02:27 +0000632}
633
Andrew Trick78e5efe2012-09-11 00:39:15 +0000634/// Identify DAG roots and setup scheduler queues.
Andrew Trick4e1fb182013-01-25 06:33:57 +0000635void ScheduleDAGMI::initQueues(ArrayRef<SUnit*> TopRoots,
636 ArrayRef<SUnit*> BotRoots) {
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000637 NextClusterSucc = NULL;
638 NextClusterPred = NULL;
Andrew Trick1e94e982012-10-15 18:02:27 +0000639
Andrew Trickae692f22012-11-12 19:28:57 +0000640 // Release all DAG roots for scheduling, not including EntrySU/ExitSU.
Andrew Trick4e1fb182013-01-25 06:33:57 +0000641 //
642 // Nodes with unreleased weak edges can still be roots.
643 // Release top roots in forward order.
644 for (SmallVectorImpl<SUnit*>::const_iterator
645 I = TopRoots.begin(), E = TopRoots.end(); I != E; ++I) {
646 SchedImpl->releaseTopNode(*I);
647 }
648 // Release bottom roots in reverse order so the higher priority nodes appear
649 // first. This is more natural and slightly more efficient.
650 for (SmallVectorImpl<SUnit*>::const_reverse_iterator
651 I = BotRoots.rbegin(), E = BotRoots.rend(); I != E; ++I) {
652 SchedImpl->releaseBottomNode(*I);
653 }
Andrew Trickae692f22012-11-12 19:28:57 +0000654
Andrew Trickc174eaf2012-03-08 01:41:12 +0000655 releaseSuccessors(&EntrySU);
Andrew Trick17d35e52012-03-14 04:00:41 +0000656 releasePredecessors(&ExitSU);
Andrew Trickc174eaf2012-03-08 01:41:12 +0000657
Andrew Trick1e94e982012-10-15 18:02:27 +0000658 SchedImpl->registerRoots();
659
Andrew Trick657b75b2012-12-01 01:22:49 +0000660 // Advance past initial DebugValues.
661 assert(TopRPTracker.getPos() == RegionBegin && "bad initial Top tracker");
Andrew Trickeb45ebb2012-04-24 18:04:34 +0000662 CurrentTop = nextIfDebug(RegionBegin, RegionEnd);
Andrew Trick657b75b2012-12-01 01:22:49 +0000663 TopRPTracker.setPos(CurrentTop);
664
Andrew Trick17d35e52012-03-14 04:00:41 +0000665 CurrentBottom = RegionEnd;
Andrew Trick78e5efe2012-09-11 00:39:15 +0000666}
Andrew Trickc174eaf2012-03-08 01:41:12 +0000667
Andrew Trick78e5efe2012-09-11 00:39:15 +0000668/// Move an instruction and update register pressure.
669void ScheduleDAGMI::scheduleMI(SUnit *SU, bool IsTopNode) {
670 // Move the instruction to its new location in the instruction stream.
671 MachineInstr *MI = SU->getInstr();
Andrew Trickc174eaf2012-03-08 01:41:12 +0000672
Andrew Trick78e5efe2012-09-11 00:39:15 +0000673 if (IsTopNode) {
674 assert(SU->isTopReady() && "node still has unscheduled dependencies");
675 if (&*CurrentTop == MI)
676 CurrentTop = nextIfDebug(++CurrentTop, CurrentBottom);
Andrew Trick17d35e52012-03-14 04:00:41 +0000677 else {
Andrew Trick78e5efe2012-09-11 00:39:15 +0000678 moveInstruction(MI, CurrentTop);
679 TopRPTracker.setPos(MI);
Andrew Trick17d35e52012-03-14 04:00:41 +0000680 }
Andrew Trick000b2502012-04-24 18:04:37 +0000681
Andrew Trick78e5efe2012-09-11 00:39:15 +0000682 // Update top scheduled pressure.
683 TopRPTracker.advance();
684 assert(TopRPTracker.getPos() == CurrentTop && "out of sync");
685 updateScheduledPressure(TopRPTracker.getPressure().MaxSetPressure);
686 }
687 else {
688 assert(SU->isBottomReady() && "node still has unscheduled dependencies");
689 MachineBasicBlock::iterator priorII =
690 priorNonDebug(CurrentBottom, CurrentTop);
691 if (&*priorII == MI)
692 CurrentBottom = priorII;
693 else {
694 if (&*CurrentTop == MI) {
695 CurrentTop = nextIfDebug(++CurrentTop, priorII);
696 TopRPTracker.setPos(CurrentTop);
697 }
698 moveInstruction(MI, CurrentBottom);
699 CurrentBottom = MI;
700 }
701 // Update bottom scheduled pressure.
702 BotRPTracker.recede();
703 assert(BotRPTracker.getPos() == CurrentBottom && "out of sync");
704 updateScheduledPressure(BotRPTracker.getPressure().MaxSetPressure);
705 }
706}
707
708/// Update scheduler queues after scheduling an instruction.
709void ScheduleDAGMI::updateQueues(SUnit *SU, bool IsTopNode) {
710 // Release dependent instructions for scheduling.
711 if (IsTopNode)
712 releaseSuccessors(SU);
713 else
714 releasePredecessors(SU);
715
716 SU->isScheduled = true;
717
Andrew Trick178f7d02013-01-25 04:01:04 +0000718 if (DFSResult) {
719 unsigned SubtreeID = DFSResult->getSubtreeID(SU);
720 if (!ScheduledTrees.test(SubtreeID)) {
721 ScheduledTrees.set(SubtreeID);
722 DFSResult->scheduleTree(SubtreeID);
723 SchedImpl->scheduleTree(SubtreeID);
724 }
725 }
726
Andrew Trick78e5efe2012-09-11 00:39:15 +0000727 // Notify the scheduling strategy after updating the DAG.
728 SchedImpl->schedNode(SU, IsTopNode);
Andrew Trick000b2502012-04-24 18:04:37 +0000729}
730
731/// Reinsert any remaining debug_values, just like the PostRA scheduler.
732void ScheduleDAGMI::placeDebugValues() {
733 // If first instruction was a DBG_VALUE then put it back.
734 if (FirstDbgValue) {
735 BB->splice(RegionBegin, BB, FirstDbgValue);
736 RegionBegin = FirstDbgValue;
737 }
738
739 for (std::vector<std::pair<MachineInstr *, MachineInstr *> >::iterator
740 DI = DbgValues.end(), DE = DbgValues.begin(); DI != DE; --DI) {
741 std::pair<MachineInstr *, MachineInstr *> P = *prior(DI);
742 MachineInstr *DbgValue = P.first;
743 MachineBasicBlock::iterator OrigPrevMI = P.second;
Andrew Trick67bdd422012-12-01 01:22:38 +0000744 if (&*RegionBegin == DbgValue)
745 ++RegionBegin;
Andrew Trick000b2502012-04-24 18:04:37 +0000746 BB->splice(++OrigPrevMI, BB, DbgValue);
747 if (OrigPrevMI == llvm::prior(RegionEnd))
748 RegionEnd = DbgValue;
749 }
750 DbgValues.clear();
751 FirstDbgValue = NULL;
Andrew Trickc174eaf2012-03-08 01:41:12 +0000752}
753
Andrew Trick3b87f622012-11-07 07:05:09 +0000754#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
755void ScheduleDAGMI::dumpSchedule() const {
756 for (MachineBasicBlock::iterator MI = begin(), ME = end(); MI != ME; ++MI) {
757 if (SUnit *SU = getSUnit(&(*MI)))
758 SU->dump(this);
759 else
760 dbgs() << "Missing SUnit\n";
761 }
762}
763#endif
764
Andrew Trick6996fd02012-11-12 19:52:20 +0000765//===----------------------------------------------------------------------===//
766// LoadClusterMutation - DAG post-processing to cluster loads.
767//===----------------------------------------------------------------------===//
768
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000769namespace {
770/// \brief Post-process the DAG to create cluster edges between neighboring
771/// loads.
772class LoadClusterMutation : public ScheduleDAGMutation {
773 struct LoadInfo {
774 SUnit *SU;
775 unsigned BaseReg;
776 unsigned Offset;
777 LoadInfo(SUnit *su, unsigned reg, unsigned ofs)
778 : SU(su), BaseReg(reg), Offset(ofs) {}
779 };
780 static bool LoadInfoLess(const LoadClusterMutation::LoadInfo &LHS,
781 const LoadClusterMutation::LoadInfo &RHS);
782
783 const TargetInstrInfo *TII;
784 const TargetRegisterInfo *TRI;
785public:
786 LoadClusterMutation(const TargetInstrInfo *tii,
787 const TargetRegisterInfo *tri)
788 : TII(tii), TRI(tri) {}
789
790 virtual void apply(ScheduleDAGMI *DAG);
791protected:
792 void clusterNeighboringLoads(ArrayRef<SUnit*> Loads, ScheduleDAGMI *DAG);
793};
794} // anonymous
795
796bool LoadClusterMutation::LoadInfoLess(
797 const LoadClusterMutation::LoadInfo &LHS,
798 const LoadClusterMutation::LoadInfo &RHS) {
799 if (LHS.BaseReg != RHS.BaseReg)
800 return LHS.BaseReg < RHS.BaseReg;
801 return LHS.Offset < RHS.Offset;
802}
803
804void LoadClusterMutation::clusterNeighboringLoads(ArrayRef<SUnit*> Loads,
805 ScheduleDAGMI *DAG) {
806 SmallVector<LoadClusterMutation::LoadInfo,32> LoadRecords;
807 for (unsigned Idx = 0, End = Loads.size(); Idx != End; ++Idx) {
808 SUnit *SU = Loads[Idx];
809 unsigned BaseReg;
810 unsigned Offset;
811 if (TII->getLdStBaseRegImmOfs(SU->getInstr(), BaseReg, Offset, TRI))
812 LoadRecords.push_back(LoadInfo(SU, BaseReg, Offset));
813 }
814 if (LoadRecords.size() < 2)
815 return;
816 std::sort(LoadRecords.begin(), LoadRecords.end(), LoadInfoLess);
817 unsigned ClusterLength = 1;
818 for (unsigned Idx = 0, End = LoadRecords.size(); Idx < (End - 1); ++Idx) {
819 if (LoadRecords[Idx].BaseReg != LoadRecords[Idx+1].BaseReg) {
820 ClusterLength = 1;
821 continue;
822 }
823
824 SUnit *SUa = LoadRecords[Idx].SU;
825 SUnit *SUb = LoadRecords[Idx+1].SU;
Andrew Tricka7d2d562012-11-12 21:28:10 +0000826 if (TII->shouldClusterLoads(SUa->getInstr(), SUb->getInstr(), ClusterLength)
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000827 && DAG->addEdge(SUb, SDep(SUa, SDep::Cluster))) {
828
829 DEBUG(dbgs() << "Cluster loads SU(" << SUa->NodeNum << ") - SU("
830 << SUb->NodeNum << ")\n");
831 // Copy successor edges from SUa to SUb. Interleaving computation
832 // dependent on SUa can prevent load combining due to register reuse.
833 // Predecessor edges do not need to be copied from SUb to SUa since nearby
834 // loads should have effectively the same inputs.
835 for (SUnit::const_succ_iterator
836 SI = SUa->Succs.begin(), SE = SUa->Succs.end(); SI != SE; ++SI) {
837 if (SI->getSUnit() == SUb)
838 continue;
839 DEBUG(dbgs() << " Copy Succ SU(" << SI->getSUnit()->NodeNum << ")\n");
840 DAG->addEdge(SI->getSUnit(), SDep(SUb, SDep::Artificial));
841 }
842 ++ClusterLength;
843 }
844 else
845 ClusterLength = 1;
846 }
847}
848
849/// \brief Callback from DAG postProcessing to create cluster edges for loads.
850void LoadClusterMutation::apply(ScheduleDAGMI *DAG) {
851 // Map DAG NodeNum to store chain ID.
852 DenseMap<unsigned, unsigned> StoreChainIDs;
853 // Map each store chain to a set of dependent loads.
854 SmallVector<SmallVector<SUnit*,4>, 32> StoreChainDependents;
855 for (unsigned Idx = 0, End = DAG->SUnits.size(); Idx != End; ++Idx) {
856 SUnit *SU = &DAG->SUnits[Idx];
857 if (!SU->getInstr()->mayLoad())
858 continue;
859 unsigned ChainPredID = DAG->SUnits.size();
860 for (SUnit::const_pred_iterator
861 PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) {
862 if (PI->isCtrl()) {
863 ChainPredID = PI->getSUnit()->NodeNum;
864 break;
865 }
866 }
867 // Check if this chain-like pred has been seen
868 // before. ChainPredID==MaxNodeID for loads at the top of the schedule.
869 unsigned NumChains = StoreChainDependents.size();
870 std::pair<DenseMap<unsigned, unsigned>::iterator, bool> Result =
871 StoreChainIDs.insert(std::make_pair(ChainPredID, NumChains));
872 if (Result.second)
873 StoreChainDependents.resize(NumChains + 1);
874 StoreChainDependents[Result.first->second].push_back(SU);
875 }
876 // Iterate over the store chains.
877 for (unsigned Idx = 0, End = StoreChainDependents.size(); Idx != End; ++Idx)
878 clusterNeighboringLoads(StoreChainDependents[Idx], DAG);
879}
880
Andrew Trickc174eaf2012-03-08 01:41:12 +0000881//===----------------------------------------------------------------------===//
Andrew Trick6996fd02012-11-12 19:52:20 +0000882// MacroFusion - DAG post-processing to encourage fusion of macro ops.
883//===----------------------------------------------------------------------===//
884
885namespace {
886/// \brief Post-process the DAG to create cluster edges between instructions
887/// that may be fused by the processor into a single operation.
888class MacroFusion : public ScheduleDAGMutation {
889 const TargetInstrInfo *TII;
890public:
891 MacroFusion(const TargetInstrInfo *tii): TII(tii) {}
892
893 virtual void apply(ScheduleDAGMI *DAG);
894};
895} // anonymous
896
897/// \brief Callback from DAG postProcessing to create cluster edges to encourage
898/// fused operations.
899void MacroFusion::apply(ScheduleDAGMI *DAG) {
900 // For now, assume targets can only fuse with the branch.
901 MachineInstr *Branch = DAG->ExitSU.getInstr();
902 if (!Branch)
903 return;
904
905 for (unsigned Idx = DAG->SUnits.size(); Idx > 0;) {
906 SUnit *SU = &DAG->SUnits[--Idx];
907 if (!TII->shouldScheduleAdjacent(SU->getInstr(), Branch))
908 continue;
909
910 // Create a single weak edge from SU to ExitSU. The only effect is to cause
911 // bottom-up scheduling to heavily prioritize the clustered SU. There is no
912 // need to copy predecessor edges from ExitSU to SU, since top-down
913 // scheduling cannot prioritize ExitSU anyway. To defer top-down scheduling
914 // of SU, we could create an artificial edge from the deepest root, but it
915 // hasn't been needed yet.
916 bool Success = DAG->addEdge(&DAG->ExitSU, SDep(SU, SDep::Cluster));
917 (void)Success;
918 assert(Success && "No DAG nodes should be reachable from ExitSU");
919
920 DEBUG(dbgs() << "Macro Fuse SU(" << SU->NodeNum << ")\n");
921 break;
922 }
923}
924
925//===----------------------------------------------------------------------===//
Andrew Tricke38afe12013-04-24 15:54:43 +0000926// CopyConstrain - DAG post-processing to encourage copy elimination.
927//===----------------------------------------------------------------------===//
928
929namespace {
930/// \brief Post-process the DAG to create weak edges from all uses of a copy to
931/// the one use that defines the copy's source vreg, most likely an induction
932/// variable increment.
933class CopyConstrain : public ScheduleDAGMutation {
934 // Transient state.
935 SlotIndex RegionBeginIdx;
Andrew Tricka264a202013-04-24 23:19:56 +0000936 // RegionEndIdx is the slot index of the last non-debug instruction in the
937 // scheduling region. So we may have RegionBeginIdx == RegionEndIdx.
Andrew Tricke38afe12013-04-24 15:54:43 +0000938 SlotIndex RegionEndIdx;
939public:
940 CopyConstrain(const TargetInstrInfo *, const TargetRegisterInfo *) {}
941
942 virtual void apply(ScheduleDAGMI *DAG);
943
944protected:
945 void constrainLocalCopy(SUnit *CopySU, ScheduleDAGMI *DAG);
946};
947} // anonymous
948
949/// constrainLocalCopy handles two possibilities:
950/// 1) Local src:
951/// I0: = dst
952/// I1: src = ...
953/// I2: = dst
954/// I3: dst = src (copy)
955/// (create pred->succ edges I0->I1, I2->I1)
956///
957/// 2) Local copy:
958/// I0: dst = src (copy)
959/// I1: = dst
960/// I2: src = ...
961/// I3: = dst
962/// (create pred->succ edges I1->I2, I3->I2)
963///
964/// Although the MachineScheduler is currently constrained to single blocks,
965/// this algorithm should handle extended blocks. An EBB is a set of
966/// contiguously numbered blocks such that the previous block in the EBB is
967/// always the single predecessor.
968void CopyConstrain::constrainLocalCopy(SUnit *CopySU, ScheduleDAGMI *DAG) {
969 LiveIntervals *LIS = DAG->getLIS();
970 MachineInstr *Copy = CopySU->getInstr();
971
972 // Check for pure vreg copies.
973 unsigned SrcReg = Copy->getOperand(1).getReg();
974 if (!TargetRegisterInfo::isVirtualRegister(SrcReg))
975 return;
976
977 unsigned DstReg = Copy->getOperand(0).getReg();
978 if (!TargetRegisterInfo::isVirtualRegister(DstReg))
979 return;
980
981 // Check if either the dest or source is local. If it's live across a back
982 // edge, it's not local. Note that if both vregs are live across the back
983 // edge, we cannot successfully contrain the copy without cyclic scheduling.
984 unsigned LocalReg = DstReg;
985 unsigned GlobalReg = SrcReg;
986 LiveInterval *LocalLI = &LIS->getInterval(LocalReg);
987 if (!LocalLI->isLocal(RegionBeginIdx, RegionEndIdx)) {
988 LocalReg = SrcReg;
989 GlobalReg = DstReg;
990 LocalLI = &LIS->getInterval(LocalReg);
991 if (!LocalLI->isLocal(RegionBeginIdx, RegionEndIdx))
992 return;
993 }
994 LiveInterval *GlobalLI = &LIS->getInterval(GlobalReg);
995
996 // Find the global segment after the start of the local LI.
997 LiveInterval::iterator GlobalSegment = GlobalLI->find(LocalLI->beginIndex());
998 // If GlobalLI does not overlap LocalLI->start, then a copy directly feeds a
999 // local live range. We could create edges from other global uses to the local
1000 // start, but the coalescer should have already eliminated these cases, so
1001 // don't bother dealing with it.
1002 if (GlobalSegment == GlobalLI->end())
1003 return;
1004
1005 // If GlobalSegment is killed at the LocalLI->start, the call to find()
1006 // returned the next global segment. But if GlobalSegment overlaps with
1007 // LocalLI->start, then advance to the next segement. If a hole in GlobalLI
1008 // exists in LocalLI's vicinity, GlobalSegment will be the end of the hole.
1009 if (GlobalSegment->contains(LocalLI->beginIndex()))
1010 ++GlobalSegment;
1011
1012 if (GlobalSegment == GlobalLI->end())
1013 return;
1014
1015 // Check if GlobalLI contains a hole in the vicinity of LocalLI.
1016 if (GlobalSegment != GlobalLI->begin()) {
1017 // Two address defs have no hole.
1018 if (SlotIndex::isSameInstr(llvm::prior(GlobalSegment)->end,
1019 GlobalSegment->start)) {
1020 return;
1021 }
1022 // If GlobalLI has a prior segment, it must be live into the EBB. Otherwise
1023 // it would be a disconnected component in the live range.
1024 assert(llvm::prior(GlobalSegment)->start < LocalLI->beginIndex() &&
1025 "Disconnected LRG within the scheduling region.");
1026 }
1027 MachineInstr *GlobalDef = LIS->getInstructionFromIndex(GlobalSegment->start);
1028 if (!GlobalDef)
1029 return;
1030
1031 SUnit *GlobalSU = DAG->getSUnit(GlobalDef);
1032 if (!GlobalSU)
1033 return;
1034
1035 // GlobalDef is the bottom of the GlobalLI hole. Open the hole by
1036 // constraining the uses of the last local def to precede GlobalDef.
1037 SmallVector<SUnit*,8> LocalUses;
1038 const VNInfo *LastLocalVN = LocalLI->getVNInfoBefore(LocalLI->endIndex());
1039 MachineInstr *LastLocalDef = LIS->getInstructionFromIndex(LastLocalVN->def);
1040 SUnit *LastLocalSU = DAG->getSUnit(LastLocalDef);
1041 for (SUnit::const_succ_iterator
1042 I = LastLocalSU->Succs.begin(), E = LastLocalSU->Succs.end();
1043 I != E; ++I) {
1044 if (I->getKind() != SDep::Data || I->getReg() != LocalReg)
1045 continue;
1046 if (I->getSUnit() == GlobalSU)
1047 continue;
1048 if (!DAG->canAddEdge(GlobalSU, I->getSUnit()))
1049 return;
1050 LocalUses.push_back(I->getSUnit());
1051 }
1052 // Open the top of the GlobalLI hole by constraining any earlier global uses
1053 // to precede the start of LocalLI.
1054 SmallVector<SUnit*,8> GlobalUses;
1055 MachineInstr *FirstLocalDef =
1056 LIS->getInstructionFromIndex(LocalLI->beginIndex());
1057 SUnit *FirstLocalSU = DAG->getSUnit(FirstLocalDef);
1058 for (SUnit::const_pred_iterator
1059 I = GlobalSU->Preds.begin(), E = GlobalSU->Preds.end(); I != E; ++I) {
1060 if (I->getKind() != SDep::Anti || I->getReg() != GlobalReg)
1061 continue;
1062 if (I->getSUnit() == FirstLocalSU)
1063 continue;
1064 if (!DAG->canAddEdge(FirstLocalSU, I->getSUnit()))
1065 return;
1066 GlobalUses.push_back(I->getSUnit());
1067 }
1068 DEBUG(dbgs() << "Constraining copy SU(" << CopySU->NodeNum << ")\n");
1069 // Add the weak edges.
1070 for (SmallVectorImpl<SUnit*>::const_iterator
1071 I = LocalUses.begin(), E = LocalUses.end(); I != E; ++I) {
1072 DEBUG(dbgs() << " Local use SU(" << (*I)->NodeNum << ") -> SU("
1073 << GlobalSU->NodeNum << ")\n");
1074 DAG->addEdge(GlobalSU, SDep(*I, SDep::Weak));
1075 }
1076 for (SmallVectorImpl<SUnit*>::const_iterator
1077 I = GlobalUses.begin(), E = GlobalUses.end(); I != E; ++I) {
1078 DEBUG(dbgs() << " Global use SU(" << (*I)->NodeNum << ") -> SU("
1079 << FirstLocalSU->NodeNum << ")\n");
1080 DAG->addEdge(FirstLocalSU, SDep(*I, SDep::Weak));
1081 }
1082}
1083
1084/// \brief Callback from DAG postProcessing to create weak edges to encourage
1085/// copy elimination.
1086void CopyConstrain::apply(ScheduleDAGMI *DAG) {
Andrew Tricka264a202013-04-24 23:19:56 +00001087 MachineBasicBlock::iterator FirstPos = nextIfDebug(DAG->begin(), DAG->end());
1088 if (FirstPos == DAG->end())
1089 return;
1090 RegionBeginIdx = DAG->getLIS()->getInstructionIndex(&*FirstPos);
Andrew Tricke38afe12013-04-24 15:54:43 +00001091 RegionEndIdx = DAG->getLIS()->getInstructionIndex(
1092 &*priorNonDebug(DAG->end(), DAG->begin()));
1093
1094 for (unsigned Idx = 0, End = DAG->SUnits.size(); Idx != End; ++Idx) {
1095 SUnit *SU = &DAG->SUnits[Idx];
1096 if (!SU->getInstr()->isCopy())
1097 continue;
1098
1099 constrainLocalCopy(SU, DAG);
1100 }
1101}
1102
1103//===----------------------------------------------------------------------===//
Andrew Trick17d35e52012-03-14 04:00:41 +00001104// ConvergingScheduler - Implementation of the standard MachineSchedStrategy.
Andrew Trick42b7a712012-01-17 06:55:03 +00001105//===----------------------------------------------------------------------===//
1106
1107namespace {
Andrew Trick17d35e52012-03-14 04:00:41 +00001108/// ConvergingScheduler shrinks the unscheduled zone using heuristics to balance
1109/// the schedule.
1110class ConvergingScheduler : public MachineSchedStrategy {
Andrew Trick3b87f622012-11-07 07:05:09 +00001111public:
1112 /// Represent the type of SchedCandidate found within a single queue.
1113 /// pickNodeBidirectional depends on these listed by decreasing priority.
1114 enum CandReason {
Andrew Tricke38afe12013-04-24 15:54:43 +00001115 NoCand, PhysRegCopy, SingleExcess, SingleCritical, Cluster, Weak,
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001116 ResourceReduce, ResourceDemand, BotHeightReduce, BotPathReduce,
1117 TopDepthReduce, TopPathReduce, SingleMax, MultiPressure, NextDefUse,
1118 NodeOrder};
Andrew Trick3b87f622012-11-07 07:05:09 +00001119
1120#ifndef NDEBUG
1121 static const char *getReasonStr(ConvergingScheduler::CandReason Reason);
1122#endif
1123
1124 /// Policy for scheduling the next instruction in the candidate's zone.
1125 struct CandPolicy {
1126 bool ReduceLatency;
1127 unsigned ReduceResIdx;
1128 unsigned DemandResIdx;
1129
1130 CandPolicy(): ReduceLatency(false), ReduceResIdx(0), DemandResIdx(0) {}
1131 };
1132
1133 /// Status of an instruction's critical resource consumption.
1134 struct SchedResourceDelta {
1135 // Count critical resources in the scheduled region required by SU.
1136 unsigned CritResources;
1137
1138 // Count critical resources from another region consumed by SU.
1139 unsigned DemandedResources;
1140
1141 SchedResourceDelta(): CritResources(0), DemandedResources(0) {}
1142
1143 bool operator==(const SchedResourceDelta &RHS) const {
1144 return CritResources == RHS.CritResources
1145 && DemandedResources == RHS.DemandedResources;
1146 }
1147 bool operator!=(const SchedResourceDelta &RHS) const {
1148 return !operator==(RHS);
1149 }
1150 };
Andrew Trick7196a8f2012-05-10 21:06:16 +00001151
1152 /// Store the state used by ConvergingScheduler heuristics, required for the
1153 /// lifetime of one invocation of pickNode().
1154 struct SchedCandidate {
Andrew Trick3b87f622012-11-07 07:05:09 +00001155 CandPolicy Policy;
1156
Andrew Trick7196a8f2012-05-10 21:06:16 +00001157 // The best SUnit candidate.
1158 SUnit *SU;
1159
Andrew Trick3b87f622012-11-07 07:05:09 +00001160 // The reason for this candidate.
1161 CandReason Reason;
1162
Andrew Trick7196a8f2012-05-10 21:06:16 +00001163 // Register pressure values for the best candidate.
1164 RegPressureDelta RPDelta;
1165
Andrew Trick3b87f622012-11-07 07:05:09 +00001166 // Critical resource consumption of the best candidate.
1167 SchedResourceDelta ResDelta;
1168
1169 SchedCandidate(const CandPolicy &policy)
1170 : Policy(policy), SU(NULL), Reason(NoCand) {}
1171
1172 bool isValid() const { return SU; }
1173
1174 // Copy the status of another candidate without changing policy.
1175 void setBest(SchedCandidate &Best) {
1176 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
1177 SU = Best.SU;
1178 Reason = Best.Reason;
1179 RPDelta = Best.RPDelta;
1180 ResDelta = Best.ResDelta;
1181 }
1182
1183 void initResourceDelta(const ScheduleDAGMI *DAG,
1184 const TargetSchedModel *SchedModel);
Andrew Trick7196a8f2012-05-10 21:06:16 +00001185 };
Andrew Trick3b87f622012-11-07 07:05:09 +00001186
1187 /// Summarize the unscheduled region.
1188 struct SchedRemainder {
1189 // Critical path through the DAG in expected latency.
1190 unsigned CriticalPath;
1191
1192 // Unscheduled resources
1193 SmallVector<unsigned, 16> RemainingCounts;
1194 // Critical resource for the unscheduled zone.
1195 unsigned CritResIdx;
1196 // Number of micro-ops left to schedule.
1197 unsigned RemainingMicroOps;
Andrew Trick3b87f622012-11-07 07:05:09 +00001198
Andrew Trick3b87f622012-11-07 07:05:09 +00001199 void reset() {
1200 CriticalPath = 0;
1201 RemainingCounts.clear();
1202 CritResIdx = 0;
1203 RemainingMicroOps = 0;
Andrew Trick3b87f622012-11-07 07:05:09 +00001204 }
1205
1206 SchedRemainder() { reset(); }
1207
1208 void init(ScheduleDAGMI *DAG, const TargetSchedModel *SchedModel);
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001209
1210 unsigned getMaxRemainingCount(const TargetSchedModel *SchedModel) const {
1211 if (!SchedModel->hasInstrSchedModel())
1212 return 0;
1213
1214 return std::max(
1215 RemainingMicroOps * SchedModel->getMicroOpFactor(),
1216 RemainingCounts[CritResIdx]);
1217 }
Andrew Trick3b87f622012-11-07 07:05:09 +00001218 };
Andrew Trick7196a8f2012-05-10 21:06:16 +00001219
Andrew Trickf3234242012-05-24 22:11:12 +00001220 /// Each Scheduling boundary is associated with ready queues. It tracks the
Andrew Trick3b87f622012-11-07 07:05:09 +00001221 /// current cycle in the direction of movement, and maintains the state
Andrew Trickf3234242012-05-24 22:11:12 +00001222 /// of "hazards" and other interlocks at the current cycle.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001223 struct SchedBoundary {
Andrew Trick7f8c74c2012-06-29 03:23:22 +00001224 ScheduleDAGMI *DAG;
Andrew Trick412cd2f2012-10-10 05:43:09 +00001225 const TargetSchedModel *SchedModel;
Andrew Trick3b87f622012-11-07 07:05:09 +00001226 SchedRemainder *Rem;
Andrew Trick7f8c74c2012-06-29 03:23:22 +00001227
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001228 ReadyQueue Available;
1229 ReadyQueue Pending;
1230 bool CheckPending;
1231
Andrew Trick3b87f622012-11-07 07:05:09 +00001232 // For heuristics, keep a list of the nodes that immediately depend on the
1233 // most recently scheduled node.
1234 SmallPtrSet<const SUnit*, 8> NextSUs;
1235
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001236 ScheduleHazardRecognizer *HazardRec;
1237
1238 unsigned CurrCycle;
1239 unsigned IssueCount;
1240
1241 /// MinReadyCycle - Cycle of the soonest available instruction.
1242 unsigned MinReadyCycle;
1243
Andrew Trick3b87f622012-11-07 07:05:09 +00001244 // The expected latency of the critical path in this scheduled zone.
1245 unsigned ExpectedLatency;
1246
1247 // Resources used in the scheduled zone beyond this boundary.
1248 SmallVector<unsigned, 16> ResourceCounts;
1249
1250 // Cache the critical resources ID in this scheduled zone.
1251 unsigned CritResIdx;
1252
1253 // Is the scheduled region resource limited vs. latency limited.
1254 bool IsResourceLimited;
1255
1256 unsigned ExpectedCount;
1257
Andrew Trick3b87f622012-11-07 07:05:09 +00001258#ifndef NDEBUG
Andrew Trickb7e02892012-06-05 21:11:27 +00001259 // Remember the greatest min operand latency.
1260 unsigned MaxMinLatency;
Andrew Trick3b87f622012-11-07 07:05:09 +00001261#endif
1262
1263 void reset() {
Andrew Trickecb8c2b2013-02-13 19:22:27 +00001264 // A new HazardRec is created for each DAG and owned by SchedBoundary.
1265 delete HazardRec;
1266
Andrew Trick3b87f622012-11-07 07:05:09 +00001267 Available.clear();
1268 Pending.clear();
1269 CheckPending = false;
1270 NextSUs.clear();
1271 HazardRec = 0;
1272 CurrCycle = 0;
1273 IssueCount = 0;
1274 MinReadyCycle = UINT_MAX;
1275 ExpectedLatency = 0;
1276 ResourceCounts.resize(1);
1277 assert(!ResourceCounts[0] && "nonzero count for bad resource");
1278 CritResIdx = 0;
1279 IsResourceLimited = false;
1280 ExpectedCount = 0;
Andrew Trick3b87f622012-11-07 07:05:09 +00001281#ifndef NDEBUG
1282 MaxMinLatency = 0;
1283#endif
1284 // Reserve a zero-count for invalid CritResIdx.
1285 ResourceCounts.resize(1);
1286 }
Andrew Trickb7e02892012-06-05 21:11:27 +00001287
Andrew Trickf3234242012-05-24 22:11:12 +00001288 /// Pending queues extend the ready queues with the same ID and the
1289 /// PendingFlag set.
1290 SchedBoundary(unsigned ID, const Twine &Name):
Andrew Trick3b87f622012-11-07 07:05:09 +00001291 DAG(0), SchedModel(0), Rem(0), Available(ID, Name+".A"),
Andrew Trickecb8c2b2013-02-13 19:22:27 +00001292 Pending(ID << ConvergingScheduler::LogMaxQID, Name+".P"),
1293 HazardRec(0) {
Andrew Trick3b87f622012-11-07 07:05:09 +00001294 reset();
1295 }
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001296
1297 ~SchedBoundary() { delete HazardRec; }
1298
Andrew Trick3b87f622012-11-07 07:05:09 +00001299 void init(ScheduleDAGMI *dag, const TargetSchedModel *smodel,
1300 SchedRemainder *rem);
Andrew Trick412cd2f2012-10-10 05:43:09 +00001301
Andrew Trickf3234242012-05-24 22:11:12 +00001302 bool isTop() const {
1303 return Available.getID() == ConvergingScheduler::TopQID;
1304 }
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001305
Andrew Trick3b87f622012-11-07 07:05:09 +00001306 unsigned getUnscheduledLatency(SUnit *SU) const {
1307 if (isTop())
1308 return SU->getHeight();
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001309 return SU->getDepth() + SU->Latency;
Andrew Trick3b87f622012-11-07 07:05:09 +00001310 }
1311
1312 unsigned getCriticalCount() const {
1313 return ResourceCounts[CritResIdx];
1314 }
1315
Andrew Trick5559ffa2012-06-29 03:23:24 +00001316 bool checkHazard(SUnit *SU);
1317
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001318 void setLatencyPolicy(CandPolicy &Policy);
Andrew Trick3b87f622012-11-07 07:05:09 +00001319
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001320 void releaseNode(SUnit *SU, unsigned ReadyCycle);
1321
1322 void bumpCycle();
1323
Andrew Trick3b87f622012-11-07 07:05:09 +00001324 void countResource(unsigned PIdx, unsigned Cycles);
1325
Andrew Trick7f8c74c2012-06-29 03:23:22 +00001326 void bumpNode(SUnit *SU);
Andrew Trickb7e02892012-06-05 21:11:27 +00001327
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001328 void releasePending();
1329
1330 void removeReady(SUnit *SU);
1331
1332 SUnit *pickOnlyChoice();
1333 };
1334
Andrew Trick3b87f622012-11-07 07:05:09 +00001335private:
Andrew Trick17d35e52012-03-14 04:00:41 +00001336 ScheduleDAGMI *DAG;
Andrew Trick412cd2f2012-10-10 05:43:09 +00001337 const TargetSchedModel *SchedModel;
Andrew Trick7196a8f2012-05-10 21:06:16 +00001338 const TargetRegisterInfo *TRI;
Andrew Trick42b7a712012-01-17 06:55:03 +00001339
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001340 // State of the top and bottom scheduled instruction boundaries.
Andrew Trick3b87f622012-11-07 07:05:09 +00001341 SchedRemainder Rem;
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001342 SchedBoundary Top;
1343 SchedBoundary Bot;
Andrew Trick17d35e52012-03-14 04:00:41 +00001344
1345public:
Andrew Trickf3234242012-05-24 22:11:12 +00001346 /// SUnit::NodeQueueId: 0 (none), 1 (top), 2 (bot), 3 (both)
Andrew Trick7196a8f2012-05-10 21:06:16 +00001347 enum {
1348 TopQID = 1,
Andrew Trickf3234242012-05-24 22:11:12 +00001349 BotQID = 2,
1350 LogMaxQID = 2
Andrew Trick7196a8f2012-05-10 21:06:16 +00001351 };
1352
Andrew Trickf3234242012-05-24 22:11:12 +00001353 ConvergingScheduler():
Andrew Trick412cd2f2012-10-10 05:43:09 +00001354 DAG(0), SchedModel(0), TRI(0), Top(TopQID, "TopQ"), Bot(BotQID, "BotQ") {}
Andrew Trickd38f87e2012-05-10 21:06:12 +00001355
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001356 virtual void initialize(ScheduleDAGMI *dag);
Andrew Trick17d35e52012-03-14 04:00:41 +00001357
Andrew Trick7196a8f2012-05-10 21:06:16 +00001358 virtual SUnit *pickNode(bool &IsTopNode);
Andrew Trick17d35e52012-03-14 04:00:41 +00001359
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001360 virtual void schedNode(SUnit *SU, bool IsTopNode);
1361
1362 virtual void releaseTopNode(SUnit *SU);
1363
1364 virtual void releaseBottomNode(SUnit *SU);
1365
Andrew Trick3b87f622012-11-07 07:05:09 +00001366 virtual void registerRoots();
Andrew Trick73a0d8e2012-05-17 18:35:10 +00001367
Andrew Trick3b87f622012-11-07 07:05:09 +00001368protected:
1369 void balanceZones(
1370 ConvergingScheduler::SchedBoundary &CriticalZone,
1371 ConvergingScheduler::SchedCandidate &CriticalCand,
1372 ConvergingScheduler::SchedBoundary &OppositeZone,
1373 ConvergingScheduler::SchedCandidate &OppositeCand);
1374
1375 void checkResourceLimits(ConvergingScheduler::SchedCandidate &TopCand,
1376 ConvergingScheduler::SchedCandidate &BotCand);
1377
1378 void tryCandidate(SchedCandidate &Cand,
1379 SchedCandidate &TryCand,
1380 SchedBoundary &Zone,
1381 const RegPressureTracker &RPTracker,
1382 RegPressureTracker &TempTracker);
1383
1384 SUnit *pickNodeBidirectional(bool &IsTopNode);
1385
1386 void pickNodeFromQueue(SchedBoundary &Zone,
1387 const RegPressureTracker &RPTracker,
1388 SchedCandidate &Candidate);
1389
Andrew Trick4392f0f2013-04-13 06:07:40 +00001390 void reschedulePhysRegCopies(SUnit *SU, bool isTop);
1391
Andrew Trick28ebc892012-05-10 21:06:19 +00001392#ifndef NDEBUG
Andrew Trick11189f72013-04-05 00:31:29 +00001393 void traceCandidate(const SchedCandidate &Cand);
Andrew Trick28ebc892012-05-10 21:06:19 +00001394#endif
Andrew Trick42b7a712012-01-17 06:55:03 +00001395};
1396} // namespace
1397
Andrew Trick3b87f622012-11-07 07:05:09 +00001398void ConvergingScheduler::SchedRemainder::
1399init(ScheduleDAGMI *DAG, const TargetSchedModel *SchedModel) {
1400 reset();
1401 if (!SchedModel->hasInstrSchedModel())
1402 return;
1403 RemainingCounts.resize(SchedModel->getNumProcResourceKinds());
1404 for (std::vector<SUnit>::iterator
1405 I = DAG->SUnits.begin(), E = DAG->SUnits.end(); I != E; ++I) {
1406 const MCSchedClassDesc *SC = DAG->getSchedClass(&*I);
1407 RemainingMicroOps += SchedModel->getNumMicroOps(I->getInstr(), SC);
1408 for (TargetSchedModel::ProcResIter
1409 PI = SchedModel->getWriteProcResBegin(SC),
1410 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
1411 unsigned PIdx = PI->ProcResourceIdx;
1412 unsigned Factor = SchedModel->getResourceFactor(PIdx);
1413 RemainingCounts[PIdx] += (Factor * PI->Cycles);
1414 }
1415 }
Andrew Trick071966f2012-12-18 20:52:49 +00001416 for (unsigned PIdx = 0, PEnd = SchedModel->getNumProcResourceKinds();
1417 PIdx != PEnd; ++PIdx) {
1418 if ((int)(RemainingCounts[PIdx] - RemainingCounts[CritResIdx])
1419 >= (int)SchedModel->getLatencyFactor()) {
1420 CritResIdx = PIdx;
1421 }
1422 }
Andrew Trick3b87f622012-11-07 07:05:09 +00001423}
1424
1425void ConvergingScheduler::SchedBoundary::
1426init(ScheduleDAGMI *dag, const TargetSchedModel *smodel, SchedRemainder *rem) {
1427 reset();
1428 DAG = dag;
1429 SchedModel = smodel;
1430 Rem = rem;
1431 if (SchedModel->hasInstrSchedModel())
1432 ResourceCounts.resize(SchedModel->getNumProcResourceKinds());
1433}
1434
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001435void ConvergingScheduler::initialize(ScheduleDAGMI *dag) {
1436 DAG = dag;
Andrew Trick412cd2f2012-10-10 05:43:09 +00001437 SchedModel = DAG->getSchedModel();
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001438 TRI = DAG->TRI;
Andrew Trickecb8c2b2013-02-13 19:22:27 +00001439
Andrew Trick3b87f622012-11-07 07:05:09 +00001440 Rem.init(DAG, SchedModel);
1441 Top.init(DAG, SchedModel, &Rem);
1442 Bot.init(DAG, SchedModel, &Rem);
1443
1444 // Initialize resource counts.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001445
Andrew Trick412cd2f2012-10-10 05:43:09 +00001446 // Initialize the HazardRecognizers. If itineraries don't exist, are empty, or
1447 // are disabled, then these HazardRecs will be disabled.
1448 const InstrItineraryData *Itin = SchedModel->getInstrItineraries();
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001449 const TargetMachine &TM = DAG->MF.getTarget();
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001450 Top.HazardRec = TM.getInstrInfo()->CreateTargetMIHazardRecognizer(Itin, DAG);
1451 Bot.HazardRec = TM.getInstrInfo()->CreateTargetMIHazardRecognizer(Itin, DAG);
1452
1453 assert((!ForceTopDown || !ForceBottomUp) &&
1454 "-misched-topdown incompatible with -misched-bottomup");
1455}
1456
1457void ConvergingScheduler::releaseTopNode(SUnit *SU) {
Andrew Trickb7e02892012-06-05 21:11:27 +00001458 if (SU->isScheduled)
1459 return;
1460
Andrew Trickd4539602012-12-18 20:52:52 +00001461 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
Andrew Trickb7e02892012-06-05 21:11:27 +00001462 I != E; ++I) {
1463 unsigned PredReadyCycle = I->getSUnit()->TopReadyCycle;
Andrew Trickffd25262012-08-23 00:39:43 +00001464 unsigned MinLatency = I->getMinLatency();
Andrew Trickb7e02892012-06-05 21:11:27 +00001465#ifndef NDEBUG
Andrew Trickffd25262012-08-23 00:39:43 +00001466 Top.MaxMinLatency = std::max(MinLatency, Top.MaxMinLatency);
Andrew Trickb7e02892012-06-05 21:11:27 +00001467#endif
Andrew Trickffd25262012-08-23 00:39:43 +00001468 if (SU->TopReadyCycle < PredReadyCycle + MinLatency)
1469 SU->TopReadyCycle = PredReadyCycle + MinLatency;
Andrew Trickb7e02892012-06-05 21:11:27 +00001470 }
1471 Top.releaseNode(SU, SU->TopReadyCycle);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001472}
1473
1474void ConvergingScheduler::releaseBottomNode(SUnit *SU) {
Andrew Trickb7e02892012-06-05 21:11:27 +00001475 if (SU->isScheduled)
1476 return;
1477
1478 assert(SU->getInstr() && "Scheduled SUnit must have instr");
1479
1480 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
1481 I != E; ++I) {
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001482 if (I->isWeak())
1483 continue;
Andrew Trickb7e02892012-06-05 21:11:27 +00001484 unsigned SuccReadyCycle = I->getSUnit()->BotReadyCycle;
Andrew Trickffd25262012-08-23 00:39:43 +00001485 unsigned MinLatency = I->getMinLatency();
Andrew Trickb7e02892012-06-05 21:11:27 +00001486#ifndef NDEBUG
Andrew Trickffd25262012-08-23 00:39:43 +00001487 Bot.MaxMinLatency = std::max(MinLatency, Bot.MaxMinLatency);
Andrew Trickb7e02892012-06-05 21:11:27 +00001488#endif
Andrew Trickffd25262012-08-23 00:39:43 +00001489 if (SU->BotReadyCycle < SuccReadyCycle + MinLatency)
1490 SU->BotReadyCycle = SuccReadyCycle + MinLatency;
Andrew Trickb7e02892012-06-05 21:11:27 +00001491 }
1492 Bot.releaseNode(SU, SU->BotReadyCycle);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001493}
1494
Andrew Trick3b87f622012-11-07 07:05:09 +00001495void ConvergingScheduler::registerRoots() {
1496 Rem.CriticalPath = DAG->ExitSU.getDepth();
1497 // Some roots may not feed into ExitSU. Check all of them in case.
1498 for (std::vector<SUnit*>::const_iterator
1499 I = Bot.Available.begin(), E = Bot.Available.end(); I != E; ++I) {
1500 if ((*I)->getDepth() > Rem.CriticalPath)
1501 Rem.CriticalPath = (*I)->getDepth();
1502 }
1503 DEBUG(dbgs() << "Critical Path: " << Rem.CriticalPath << '\n');
1504}
1505
Andrew Trick5559ffa2012-06-29 03:23:24 +00001506/// Does this SU have a hazard within the current instruction group.
1507///
1508/// The scheduler supports two modes of hazard recognition. The first is the
1509/// ScheduleHazardRecognizer API. It is a fully general hazard recognizer that
1510/// supports highly complicated in-order reservation tables
1511/// (ScoreboardHazardRecognizer) and arbitraty target-specific logic.
1512///
1513/// The second is a streamlined mechanism that checks for hazards based on
1514/// simple counters that the scheduler itself maintains. It explicitly checks
1515/// for instruction dispatch limitations, including the number of micro-ops that
1516/// can dispatch per cycle.
1517///
1518/// TODO: Also check whether the SU must start a new group.
1519bool ConvergingScheduler::SchedBoundary::checkHazard(SUnit *SU) {
1520 if (HazardRec->isEnabled())
1521 return HazardRec->getHazardType(SU) != ScheduleHazardRecognizer::NoHazard;
1522
Andrew Trick412cd2f2012-10-10 05:43:09 +00001523 unsigned uops = SchedModel->getNumMicroOps(SU->getInstr());
Andrew Trick3b87f622012-11-07 07:05:09 +00001524 if ((IssueCount > 0) && (IssueCount + uops > SchedModel->getIssueWidth())) {
1525 DEBUG(dbgs() << " SU(" << SU->NodeNum << ") uops="
1526 << SchedModel->getNumMicroOps(SU->getInstr()) << '\n');
Andrew Trick5559ffa2012-06-29 03:23:24 +00001527 return true;
Andrew Trick3b87f622012-11-07 07:05:09 +00001528 }
Andrew Trick5559ffa2012-06-29 03:23:24 +00001529 return false;
1530}
1531
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001532/// Compute the remaining latency to determine whether ILP should be increased.
1533void ConvergingScheduler::SchedBoundary::setLatencyPolicy(CandPolicy &Policy) {
1534 // FIXME: compile time. In all, we visit four queues here one we should only
1535 // need to visit the one that was last popped if we cache the result.
1536 unsigned RemLatency = 0;
1537 for (ReadyQueue::iterator I = Available.begin(), E = Available.end();
1538 I != E; ++I) {
1539 unsigned L = getUnscheduledLatency(*I);
Andrew Trickbaedcd72013-04-13 06:07:49 +00001540 DEBUG(dbgs() << " " << Available.getName()
1541 << " RemLatency SU(" << (*I)->NodeNum << ") " << L << '\n');
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001542 if (L > RemLatency)
1543 RemLatency = L;
1544 }
1545 for (ReadyQueue::iterator I = Pending.begin(), E = Pending.end();
1546 I != E; ++I) {
1547 unsigned L = getUnscheduledLatency(*I);
1548 if (L > RemLatency)
1549 RemLatency = L;
1550 }
Andrew Trick47579cf2013-01-09 03:36:49 +00001551 unsigned CriticalPathLimit = Rem->CriticalPath + SchedModel->getILPWindow();
Andrew Trickbaedcd72013-04-13 06:07:49 +00001552 DEBUG(dbgs() << " " << Available.getName()
1553 << " ExpectedLatency " << ExpectedLatency
1554 << " CP Limit " << CriticalPathLimit << '\n');
Andrew Trick47579cf2013-01-09 03:36:49 +00001555 if (RemLatency + ExpectedLatency >= CriticalPathLimit
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001556 && RemLatency > Rem->getMaxRemainingCount(SchedModel)) {
1557 Policy.ReduceLatency = true;
Andrew Trickbaedcd72013-04-13 06:07:49 +00001558 DEBUG(dbgs() << " Increase ILP: " << Available.getName() << '\n');
Andrew Trick3b87f622012-11-07 07:05:09 +00001559 }
1560}
1561
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001562void ConvergingScheduler::SchedBoundary::releaseNode(SUnit *SU,
1563 unsigned ReadyCycle) {
Andrew Trick3b87f622012-11-07 07:05:09 +00001564
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001565 if (ReadyCycle < MinReadyCycle)
1566 MinReadyCycle = ReadyCycle;
1567
1568 // Check for interlocks first. For the purpose of other heuristics, an
1569 // instruction that cannot issue appears as if it's not in the ReadyQueue.
Andrew Trick5559ffa2012-06-29 03:23:24 +00001570 if (ReadyCycle > CurrCycle || checkHazard(SU))
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001571 Pending.push(SU);
1572 else
1573 Available.push(SU);
Andrew Trick3b87f622012-11-07 07:05:09 +00001574
1575 // Record this node as an immediate dependent of the scheduled node.
1576 NextSUs.insert(SU);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001577}
1578
1579/// Move the boundary of scheduled code by one cycle.
1580void ConvergingScheduler::SchedBoundary::bumpCycle() {
Andrew Trick412cd2f2012-10-10 05:43:09 +00001581 unsigned Width = SchedModel->getIssueWidth();
Andrew Trick7f8c74c2012-06-29 03:23:22 +00001582 IssueCount = (IssueCount <= Width) ? 0 : IssueCount - Width;
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001583
Andrew Trick3b87f622012-11-07 07:05:09 +00001584 unsigned NextCycle = CurrCycle + 1;
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001585 assert(MinReadyCycle < UINT_MAX && "MinReadyCycle uninitialized");
Andrew Trick3b87f622012-11-07 07:05:09 +00001586 if (MinReadyCycle > NextCycle) {
1587 IssueCount = 0;
1588 NextCycle = MinReadyCycle;
1589 }
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001590
1591 if (!HazardRec->isEnabled()) {
Andrew Trickb7e02892012-06-05 21:11:27 +00001592 // Bypass HazardRec virtual calls.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001593 CurrCycle = NextCycle;
1594 }
1595 else {
Andrew Trickb7e02892012-06-05 21:11:27 +00001596 // Bypass getHazardType calls in case of long latency.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001597 for (; CurrCycle != NextCycle; ++CurrCycle) {
1598 if (isTop())
1599 HazardRec->AdvanceCycle();
1600 else
1601 HazardRec->RecedeCycle();
1602 }
1603 }
1604 CheckPending = true;
Andrew Trick3b87f622012-11-07 07:05:09 +00001605 IsResourceLimited = getCriticalCount() > std::max(ExpectedLatency, CurrCycle);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001606
Andrew Trick11189f72013-04-05 00:31:29 +00001607 DEBUG(dbgs() << " " << Available.getName()
1608 << " Cycle: " << CurrCycle << '\n');
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001609}
1610
Andrew Trick3b87f622012-11-07 07:05:09 +00001611/// Add the given processor resource to this scheduled zone.
1612void ConvergingScheduler::SchedBoundary::countResource(unsigned PIdx,
1613 unsigned Cycles) {
1614 unsigned Factor = SchedModel->getResourceFactor(PIdx);
1615 DEBUG(dbgs() << " " << SchedModel->getProcResource(PIdx)->Name
1616 << " +(" << Cycles << "x" << Factor
1617 << ") / " << SchedModel->getLatencyFactor() << '\n');
1618
1619 unsigned Count = Factor * Cycles;
1620 ResourceCounts[PIdx] += Count;
1621 assert(Rem->RemainingCounts[PIdx] >= Count && "resource double counted");
1622 Rem->RemainingCounts[PIdx] -= Count;
1623
Andrew Trick3b87f622012-11-07 07:05:09 +00001624 // Check if this resource exceeds the current critical resource by a full
1625 // cycle. If so, it becomes the critical resource.
1626 if ((int)(ResourceCounts[PIdx] - ResourceCounts[CritResIdx])
1627 >= (int)SchedModel->getLatencyFactor()) {
1628 CritResIdx = PIdx;
1629 DEBUG(dbgs() << " *** Critical resource "
1630 << SchedModel->getProcResource(PIdx)->Name << " x"
1631 << ResourceCounts[PIdx] << '\n');
1632 }
1633}
1634
Andrew Trickb7e02892012-06-05 21:11:27 +00001635/// Move the boundary of scheduled code by one SUnit.
Andrew Trick7f8c74c2012-06-29 03:23:22 +00001636void ConvergingScheduler::SchedBoundary::bumpNode(SUnit *SU) {
Andrew Trickb7e02892012-06-05 21:11:27 +00001637 // Update the reservation table.
1638 if (HazardRec->isEnabled()) {
1639 if (!isTop() && SU->isCall) {
1640 // Calls are scheduled with their preceding instructions. For bottom-up
1641 // scheduling, clear the pipeline state before emitting.
1642 HazardRec->Reset();
1643 }
1644 HazardRec->EmitInstruction(SU);
1645 }
Andrew Trick3b87f622012-11-07 07:05:09 +00001646 // Update resource counts and critical resource.
1647 if (SchedModel->hasInstrSchedModel()) {
1648 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
1649 Rem->RemainingMicroOps -= SchedModel->getNumMicroOps(SU->getInstr(), SC);
1650 for (TargetSchedModel::ProcResIter
1651 PI = SchedModel->getWriteProcResBegin(SC),
1652 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
1653 countResource(PI->ProcResourceIdx, PI->Cycles);
1654 }
1655 }
1656 if (isTop()) {
1657 if (SU->getDepth() > ExpectedLatency)
1658 ExpectedLatency = SU->getDepth();
1659 }
1660 else {
1661 if (SU->getHeight() > ExpectedLatency)
1662 ExpectedLatency = SU->getHeight();
1663 }
1664
1665 IsResourceLimited = getCriticalCount() > std::max(ExpectedLatency, CurrCycle);
1666
Andrew Trick5559ffa2012-06-29 03:23:24 +00001667 // Check the instruction group dispatch limit.
1668 // TODO: Check if this SU must end a dispatch group.
Andrew Trick412cd2f2012-10-10 05:43:09 +00001669 IssueCount += SchedModel->getNumMicroOps(SU->getInstr());
Andrew Trick3b87f622012-11-07 07:05:09 +00001670
1671 // checkHazard prevents scheduling multiple instructions per cycle that exceed
1672 // issue width. However, we commonly reach the maximum. In this case
1673 // opportunistically bump the cycle to avoid uselessly checking everything in
1674 // the readyQ. Furthermore, a single instruction may produce more than one
1675 // cycle's worth of micro-ops.
Andrew Trick412cd2f2012-10-10 05:43:09 +00001676 if (IssueCount >= SchedModel->getIssueWidth()) {
Andrew Trick3b87f622012-11-07 07:05:09 +00001677 DEBUG(dbgs() << " *** Max instrs at cycle " << CurrCycle << '\n');
Andrew Trickb7e02892012-06-05 21:11:27 +00001678 bumpCycle();
1679 }
1680}
1681
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001682/// Release pending ready nodes in to the available queue. This makes them
1683/// visible to heuristics.
1684void ConvergingScheduler::SchedBoundary::releasePending() {
1685 // If the available queue is empty, it is safe to reset MinReadyCycle.
1686 if (Available.empty())
1687 MinReadyCycle = UINT_MAX;
1688
1689 // Check to see if any of the pending instructions are ready to issue. If
1690 // so, add them to the available queue.
1691 for (unsigned i = 0, e = Pending.size(); i != e; ++i) {
1692 SUnit *SU = *(Pending.begin()+i);
Andrew Trickb7e02892012-06-05 21:11:27 +00001693 unsigned ReadyCycle = isTop() ? SU->TopReadyCycle : SU->BotReadyCycle;
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001694
1695 if (ReadyCycle < MinReadyCycle)
1696 MinReadyCycle = ReadyCycle;
1697
1698 if (ReadyCycle > CurrCycle)
1699 continue;
1700
Andrew Trick5559ffa2012-06-29 03:23:24 +00001701 if (checkHazard(SU))
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001702 continue;
1703
1704 Available.push(SU);
1705 Pending.remove(Pending.begin()+i);
1706 --i; --e;
1707 }
Andrew Trick3b87f622012-11-07 07:05:09 +00001708 DEBUG(if (!Pending.empty()) Pending.dump());
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001709 CheckPending = false;
1710}
1711
1712/// Remove SU from the ready set for this boundary.
1713void ConvergingScheduler::SchedBoundary::removeReady(SUnit *SU) {
1714 if (Available.isInQueue(SU))
1715 Available.remove(Available.find(SU));
1716 else {
1717 assert(Pending.isInQueue(SU) && "bad ready count");
1718 Pending.remove(Pending.find(SU));
1719 }
1720}
1721
1722/// If this queue only has one ready candidate, return it. As a side effect,
Andrew Trick3b87f622012-11-07 07:05:09 +00001723/// defer any nodes that now hit a hazard, and advance the cycle until at least
1724/// one node is ready. If multiple instructions are ready, return NULL.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001725SUnit *ConvergingScheduler::SchedBoundary::pickOnlyChoice() {
1726 if (CheckPending)
1727 releasePending();
1728
Andrew Trick3b87f622012-11-07 07:05:09 +00001729 if (IssueCount > 0) {
1730 // Defer any ready instrs that now have a hazard.
1731 for (ReadyQueue::iterator I = Available.begin(); I != Available.end();) {
1732 if (checkHazard(*I)) {
1733 Pending.push(*I);
1734 I = Available.remove(I);
1735 continue;
1736 }
1737 ++I;
1738 }
1739 }
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001740 for (unsigned i = 0; Available.empty(); ++i) {
Andrew Trickb7e02892012-06-05 21:11:27 +00001741 assert(i <= (HazardRec->getMaxLookAhead() + MaxMinLatency) &&
1742 "permanent hazard"); (void)i;
Andrew Trick0a39d4e2012-05-24 22:11:09 +00001743 bumpCycle();
1744 releasePending();
1745 }
1746 if (Available.size() == 1)
1747 return *Available.begin();
1748 return NULL;
1749}
1750
Andrew Trick3b87f622012-11-07 07:05:09 +00001751/// Record the candidate policy for opposite zones with different critical
1752/// resources.
1753///
1754/// If the CriticalZone is latency limited, don't force a policy for the
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001755/// candidates here. Instead, setLatencyPolicy sets ReduceLatency if needed.
Andrew Trick3b87f622012-11-07 07:05:09 +00001756void ConvergingScheduler::balanceZones(
1757 ConvergingScheduler::SchedBoundary &CriticalZone,
1758 ConvergingScheduler::SchedCandidate &CriticalCand,
1759 ConvergingScheduler::SchedBoundary &OppositeZone,
1760 ConvergingScheduler::SchedCandidate &OppositeCand) {
1761
1762 if (!CriticalZone.IsResourceLimited)
1763 return;
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001764 assert(SchedModel->hasInstrSchedModel() && "required schedmodel");
Andrew Trick3b87f622012-11-07 07:05:09 +00001765
1766 SchedRemainder *Rem = CriticalZone.Rem;
1767
1768 // If the critical zone is overconsuming a resource relative to the
1769 // remainder, try to reduce it.
1770 unsigned RemainingCritCount =
1771 Rem->RemainingCounts[CriticalZone.CritResIdx];
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001772 if ((int)(Rem->getMaxRemainingCount(SchedModel) - RemainingCritCount)
Andrew Trick3b87f622012-11-07 07:05:09 +00001773 > (int)SchedModel->getLatencyFactor()) {
1774 CriticalCand.Policy.ReduceResIdx = CriticalZone.CritResIdx;
Andrew Trickbaedcd72013-04-13 06:07:49 +00001775 DEBUG(dbgs() << " Balance " << CriticalZone.Available.getName()
1776 << " reduce "
Andrew Trick3b87f622012-11-07 07:05:09 +00001777 << SchedModel->getProcResource(CriticalZone.CritResIdx)->Name
1778 << '\n');
1779 }
1780 // If the other zone is underconsuming a resource relative to the full zone,
1781 // try to increase it.
1782 unsigned OppositeCount =
1783 OppositeZone.ResourceCounts[CriticalZone.CritResIdx];
1784 if ((int)(OppositeZone.ExpectedCount - OppositeCount)
1785 > (int)SchedModel->getLatencyFactor()) {
1786 OppositeCand.Policy.DemandResIdx = CriticalZone.CritResIdx;
Andrew Trickbaedcd72013-04-13 06:07:49 +00001787 DEBUG(dbgs() << " Balance " << OppositeZone.Available.getName()
1788 << " demand "
Andrew Trick3b87f622012-11-07 07:05:09 +00001789 << SchedModel->getProcResource(OppositeZone.CritResIdx)->Name
1790 << '\n');
1791 }
Andrew Trick28ebc892012-05-10 21:06:19 +00001792}
Andrew Trick3b87f622012-11-07 07:05:09 +00001793
1794/// Determine if the scheduled zones exceed resource limits or critical path and
1795/// set each candidate's ReduceHeight policy accordingly.
1796void ConvergingScheduler::checkResourceLimits(
1797 ConvergingScheduler::SchedCandidate &TopCand,
1798 ConvergingScheduler::SchedCandidate &BotCand) {
1799
Andrew Trick44fd0bc2012-12-18 20:52:56 +00001800 // Set ReduceLatency to true if needed.
Andrew Trickeed4e012013-01-11 17:51:16 +00001801 Bot.setLatencyPolicy(BotCand.Policy);
1802 Top.setLatencyPolicy(TopCand.Policy);
Andrew Trick3b87f622012-11-07 07:05:09 +00001803
1804 // Handle resource-limited regions.
1805 if (Top.IsResourceLimited && Bot.IsResourceLimited
1806 && Top.CritResIdx == Bot.CritResIdx) {
1807 // If the scheduled critical resource in both zones is no longer the
1808 // critical remaining resource, attempt to reduce resource height both ways.
1809 if (Top.CritResIdx != Rem.CritResIdx) {
1810 TopCand.Policy.ReduceResIdx = Top.CritResIdx;
1811 BotCand.Policy.ReduceResIdx = Bot.CritResIdx;
Andrew Trickbaedcd72013-04-13 06:07:49 +00001812 DEBUG(dbgs() << " Reduce scheduled "
Andrew Trick3b87f622012-11-07 07:05:09 +00001813 << SchedModel->getProcResource(Top.CritResIdx)->Name << '\n');
1814 }
1815 return;
1816 }
1817 // Handle latency-limited regions.
1818 if (!Top.IsResourceLimited && !Bot.IsResourceLimited) {
1819 // If the total scheduled expected latency exceeds the region's critical
1820 // path then reduce latency both ways.
1821 //
1822 // Just because a zone is not resource limited does not mean it is latency
1823 // limited. Unbuffered resource, such as max micro-ops may cause CurrCycle
1824 // to exceed expected latency.
1825 if ((Top.ExpectedLatency + Bot.ExpectedLatency >= Rem.CriticalPath)
1826 && (Rem.CriticalPath > Top.CurrCycle + Bot.CurrCycle)) {
1827 TopCand.Policy.ReduceLatency = true;
1828 BotCand.Policy.ReduceLatency = true;
Andrew Trickbaedcd72013-04-13 06:07:49 +00001829 DEBUG(dbgs() << " Reduce scheduled latency " << Top.ExpectedLatency
Andrew Trick3b87f622012-11-07 07:05:09 +00001830 << " + " << Bot.ExpectedLatency << '\n');
1831 }
1832 return;
1833 }
1834 // The critical resource is different in each zone, so request balancing.
1835
1836 // Compute the cost of each zone.
Andrew Trick3b87f622012-11-07 07:05:09 +00001837 Top.ExpectedCount = std::max(Top.ExpectedLatency, Top.CurrCycle);
1838 Top.ExpectedCount = std::max(
1839 Top.getCriticalCount(),
1840 Top.ExpectedCount * SchedModel->getLatencyFactor());
1841 Bot.ExpectedCount = std::max(Bot.ExpectedLatency, Bot.CurrCycle);
1842 Bot.ExpectedCount = std::max(
1843 Bot.getCriticalCount(),
1844 Bot.ExpectedCount * SchedModel->getLatencyFactor());
1845
1846 balanceZones(Top, TopCand, Bot, BotCand);
1847 balanceZones(Bot, BotCand, Top, TopCand);
1848}
1849
1850void ConvergingScheduler::SchedCandidate::
1851initResourceDelta(const ScheduleDAGMI *DAG,
1852 const TargetSchedModel *SchedModel) {
1853 if (!Policy.ReduceResIdx && !Policy.DemandResIdx)
1854 return;
1855
1856 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
1857 for (TargetSchedModel::ProcResIter
1858 PI = SchedModel->getWriteProcResBegin(SC),
1859 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
1860 if (PI->ProcResourceIdx == Policy.ReduceResIdx)
1861 ResDelta.CritResources += PI->Cycles;
1862 if (PI->ProcResourceIdx == Policy.DemandResIdx)
1863 ResDelta.DemandedResources += PI->Cycles;
1864 }
1865}
1866
1867/// Return true if this heuristic determines order.
Andrew Trick614dacc2013-04-05 00:31:34 +00001868static bool tryLess(int TryVal, int CandVal,
Andrew Trick3b87f622012-11-07 07:05:09 +00001869 ConvergingScheduler::SchedCandidate &TryCand,
1870 ConvergingScheduler::SchedCandidate &Cand,
1871 ConvergingScheduler::CandReason Reason) {
1872 if (TryVal < CandVal) {
1873 TryCand.Reason = Reason;
1874 return true;
1875 }
1876 if (TryVal > CandVal) {
1877 if (Cand.Reason > Reason)
1878 Cand.Reason = Reason;
1879 return true;
1880 }
1881 return false;
1882}
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001883
Andrew Trick614dacc2013-04-05 00:31:34 +00001884static bool tryGreater(int TryVal, int CandVal,
Andrew Trick3b87f622012-11-07 07:05:09 +00001885 ConvergingScheduler::SchedCandidate &TryCand,
1886 ConvergingScheduler::SchedCandidate &Cand,
1887 ConvergingScheduler::CandReason Reason) {
1888 if (TryVal > CandVal) {
1889 TryCand.Reason = Reason;
1890 return true;
1891 }
1892 if (TryVal < CandVal) {
1893 if (Cand.Reason > Reason)
1894 Cand.Reason = Reason;
1895 return true;
1896 }
1897 return false;
1898}
1899
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001900static unsigned getWeakLeft(const SUnit *SU, bool isTop) {
1901 return (isTop) ? SU->WeakPredsLeft : SU->WeakSuccsLeft;
1902}
1903
Andrew Trick4392f0f2013-04-13 06:07:40 +00001904/// Minimize physical register live ranges. Regalloc wants them adjacent to
1905/// their physreg def/use.
1906///
1907/// FIXME: This is an unnecessary check on the critical path. Most are root/leaf
1908/// copies which can be prescheduled. The rest (e.g. x86 MUL) could be bundled
1909/// with the operation that produces or consumes the physreg. We'll do this when
1910/// regalloc has support for parallel copies.
1911static int biasPhysRegCopy(const SUnit *SU, bool isTop) {
1912 const MachineInstr *MI = SU->getInstr();
1913 if (!MI->isCopy())
1914 return 0;
1915
1916 unsigned ScheduledOper = isTop ? 1 : 0;
1917 unsigned UnscheduledOper = isTop ? 0 : 1;
1918 // If we have already scheduled the physreg produce/consumer, immediately
1919 // schedule the copy.
1920 if (TargetRegisterInfo::isPhysicalRegister(
1921 MI->getOperand(ScheduledOper).getReg()))
1922 return 1;
1923 // If the physreg is at the boundary, defer it. Otherwise schedule it
1924 // immediately to free the dependent. We can hoist the copy later.
1925 bool AtBoundary = isTop ? !SU->NumSuccsLeft : !SU->NumPredsLeft;
1926 if (TargetRegisterInfo::isPhysicalRegister(
1927 MI->getOperand(UnscheduledOper).getReg()))
1928 return AtBoundary ? -1 : 1;
1929 return 0;
1930}
1931
Andrew Trick3b87f622012-11-07 07:05:09 +00001932/// Apply a set of heursitics to a new candidate. Heuristics are currently
1933/// hierarchical. This may be more efficient than a graduated cost model because
1934/// we don't need to evaluate all aspects of the model for each node in the
1935/// queue. But it's really done to make the heuristics easier to debug and
1936/// statistically analyze.
1937///
1938/// \param Cand provides the policy and current best candidate.
1939/// \param TryCand refers to the next SUnit candidate, otherwise uninitialized.
1940/// \param Zone describes the scheduled zone that we are extending.
1941/// \param RPTracker describes reg pressure within the scheduled zone.
1942/// \param TempTracker is a scratch pressure tracker to reuse in queries.
1943void ConvergingScheduler::tryCandidate(SchedCandidate &Cand,
1944 SchedCandidate &TryCand,
1945 SchedBoundary &Zone,
1946 const RegPressureTracker &RPTracker,
1947 RegPressureTracker &TempTracker) {
1948
1949 // Always initialize TryCand's RPDelta.
1950 TempTracker.getMaxPressureDelta(TryCand.SU->getInstr(), TryCand.RPDelta,
1951 DAG->getRegionCriticalPSets(),
1952 DAG->getRegPressure().MaxSetPressure);
1953
1954 // Initialize the candidate if needed.
1955 if (!Cand.isValid()) {
1956 TryCand.Reason = NodeOrder;
1957 return;
1958 }
Andrew Trick4392f0f2013-04-13 06:07:40 +00001959
1960 if (tryGreater(biasPhysRegCopy(TryCand.SU, Zone.isTop()),
1961 biasPhysRegCopy(Cand.SU, Zone.isTop()),
1962 TryCand, Cand, PhysRegCopy))
1963 return;
1964
Andrew Trick3b87f622012-11-07 07:05:09 +00001965 // Avoid exceeding the target's limit.
1966 if (tryLess(TryCand.RPDelta.Excess.UnitIncrease,
1967 Cand.RPDelta.Excess.UnitIncrease, TryCand, Cand, SingleExcess))
1968 return;
1969 if (Cand.Reason == SingleExcess)
1970 Cand.Reason = MultiPressure;
1971
1972 // Avoid increasing the max critical pressure in the scheduled region.
1973 if (tryLess(TryCand.RPDelta.CriticalMax.UnitIncrease,
1974 Cand.RPDelta.CriticalMax.UnitIncrease,
1975 TryCand, Cand, SingleCritical))
1976 return;
1977 if (Cand.Reason == SingleCritical)
1978 Cand.Reason = MultiPressure;
1979
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001980 // Keep clustered nodes together to encourage downstream peephole
1981 // optimizations which may reduce resource requirements.
1982 //
1983 // This is a best effort to set things up for a post-RA pass. Optimizations
1984 // like generating loads of multiple registers should ideally be done within
1985 // the scheduler pass by combining the loads during DAG postprocessing.
1986 const SUnit *NextClusterSU =
1987 Zone.isTop() ? DAG->getNextClusterSucc() : DAG->getNextClusterPred();
1988 if (tryGreater(TryCand.SU == NextClusterSU, Cand.SU == NextClusterSU,
1989 TryCand, Cand, Cluster))
1990 return;
Andrew Tricke38afe12013-04-24 15:54:43 +00001991
1992 // Weak edges are for clustering and other constraints.
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001993 if (tryLess(getWeakLeft(TryCand.SU, Zone.isTop()),
1994 getWeakLeft(Cand.SU, Zone.isTop()),
Andrew Tricke38afe12013-04-24 15:54:43 +00001995 TryCand, Cand, Weak)) {
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001996 return;
1997 }
Andrew Trick3b87f622012-11-07 07:05:09 +00001998 // Avoid critical resource consumption and balance the schedule.
1999 TryCand.initResourceDelta(DAG, SchedModel);
2000 if (tryLess(TryCand.ResDelta.CritResources, Cand.ResDelta.CritResources,
2001 TryCand, Cand, ResourceReduce))
2002 return;
2003 if (tryGreater(TryCand.ResDelta.DemandedResources,
2004 Cand.ResDelta.DemandedResources,
2005 TryCand, Cand, ResourceDemand))
2006 return;
2007
2008 // Avoid serializing long latency dependence chains.
2009 if (Cand.Policy.ReduceLatency) {
2010 if (Zone.isTop()) {
2011 if (Cand.SU->getDepth() * SchedModel->getLatencyFactor()
2012 > Zone.ExpectedCount) {
2013 if (tryLess(TryCand.SU->getDepth(), Cand.SU->getDepth(),
2014 TryCand, Cand, TopDepthReduce))
2015 return;
2016 }
2017 if (tryGreater(TryCand.SU->getHeight(), Cand.SU->getHeight(),
2018 TryCand, Cand, TopPathReduce))
2019 return;
2020 }
2021 else {
2022 if (Cand.SU->getHeight() * SchedModel->getLatencyFactor()
2023 > Zone.ExpectedCount) {
2024 if (tryLess(TryCand.SU->getHeight(), Cand.SU->getHeight(),
2025 TryCand, Cand, BotHeightReduce))
2026 return;
2027 }
2028 if (tryGreater(TryCand.SU->getDepth(), Cand.SU->getDepth(),
2029 TryCand, Cand, BotPathReduce))
2030 return;
2031 }
2032 }
2033
2034 // Avoid increasing the max pressure of the entire region.
2035 if (tryLess(TryCand.RPDelta.CurrentMax.UnitIncrease,
2036 Cand.RPDelta.CurrentMax.UnitIncrease, TryCand, Cand, SingleMax))
2037 return;
2038 if (Cand.Reason == SingleMax)
2039 Cand.Reason = MultiPressure;
2040
2041 // Prefer immediate defs/users of the last scheduled instruction. This is a
2042 // nice pressure avoidance strategy that also conserves the processor's
2043 // register renaming resources and keeps the machine code readable.
Andrew Trick9b5caaa2012-11-12 19:40:10 +00002044 if (tryGreater(Zone.NextSUs.count(TryCand.SU), Zone.NextSUs.count(Cand.SU),
2045 TryCand, Cand, NextDefUse))
Andrew Trick3b87f622012-11-07 07:05:09 +00002046 return;
Andrew Trick9b5caaa2012-11-12 19:40:10 +00002047
Andrew Trick3b87f622012-11-07 07:05:09 +00002048 // Fall through to original instruction order.
2049 if ((Zone.isTop() && TryCand.SU->NodeNum < Cand.SU->NodeNum)
2050 || (!Zone.isTop() && TryCand.SU->NodeNum > Cand.SU->NodeNum)) {
2051 TryCand.Reason = NodeOrder;
2052 }
2053}
Andrew Trick28ebc892012-05-10 21:06:19 +00002054
Andrew Trick5429a6b2012-05-17 22:37:09 +00002055/// pickNodeFromQueue helper that returns true if the LHS reg pressure effect is
2056/// more desirable than RHS from scheduling standpoint.
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002057static bool compareRPDelta(const RegPressureDelta &LHS,
2058 const RegPressureDelta &RHS) {
2059 // Compare each component of pressure in decreasing order of importance
2060 // without checking if any are valid. Invalid PressureElements are assumed to
2061 // have UnitIncrease==0, so are neutral.
Andrew Trickc8fe4ec2012-05-24 22:11:01 +00002062
2063 // Avoid increasing the max critical pressure in the scheduled region.
Andrew Trick3b87f622012-11-07 07:05:09 +00002064 if (LHS.Excess.UnitIncrease != RHS.Excess.UnitIncrease) {
Andrew Trickbaedcd72013-04-13 06:07:49 +00002065 DEBUG(dbgs() << " RP excess top - bot: "
Andrew Trick3b87f622012-11-07 07:05:09 +00002066 << (LHS.Excess.UnitIncrease - RHS.Excess.UnitIncrease) << '\n');
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002067 return LHS.Excess.UnitIncrease < RHS.Excess.UnitIncrease;
Andrew Trick3b87f622012-11-07 07:05:09 +00002068 }
Andrew Trickc8fe4ec2012-05-24 22:11:01 +00002069 // Avoid increasing the max critical pressure in the scheduled region.
Andrew Trick3b87f622012-11-07 07:05:09 +00002070 if (LHS.CriticalMax.UnitIncrease != RHS.CriticalMax.UnitIncrease) {
Andrew Trickbaedcd72013-04-13 06:07:49 +00002071 DEBUG(dbgs() << " RP critical top - bot: "
Andrew Trick3b87f622012-11-07 07:05:09 +00002072 << (LHS.CriticalMax.UnitIncrease - RHS.CriticalMax.UnitIncrease)
2073 << '\n');
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002074 return LHS.CriticalMax.UnitIncrease < RHS.CriticalMax.UnitIncrease;
Andrew Trick3b87f622012-11-07 07:05:09 +00002075 }
Andrew Trickc8fe4ec2012-05-24 22:11:01 +00002076 // Avoid increasing the max pressure of the entire region.
Andrew Trick3b87f622012-11-07 07:05:09 +00002077 if (LHS.CurrentMax.UnitIncrease != RHS.CurrentMax.UnitIncrease) {
Andrew Trickbaedcd72013-04-13 06:07:49 +00002078 DEBUG(dbgs() << " RP current top - bot: "
Andrew Trick3b87f622012-11-07 07:05:09 +00002079 << (LHS.CurrentMax.UnitIncrease - RHS.CurrentMax.UnitIncrease)
2080 << '\n');
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002081 return LHS.CurrentMax.UnitIncrease < RHS.CurrentMax.UnitIncrease;
Andrew Trick3b87f622012-11-07 07:05:09 +00002082 }
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002083 return false;
2084}
2085
Andrew Trick3b87f622012-11-07 07:05:09 +00002086#ifndef NDEBUG
2087const char *ConvergingScheduler::getReasonStr(
2088 ConvergingScheduler::CandReason Reason) {
2089 switch (Reason) {
2090 case NoCand: return "NOCAND ";
Andrew Trick4392f0f2013-04-13 06:07:40 +00002091 case PhysRegCopy: return "PREG-COPY";
Andrew Trick3b87f622012-11-07 07:05:09 +00002092 case SingleExcess: return "REG-EXCESS";
2093 case SingleCritical: return "REG-CRIT ";
Andrew Trick9b5caaa2012-11-12 19:40:10 +00002094 case Cluster: return "CLUSTER ";
Andrew Tricke38afe12013-04-24 15:54:43 +00002095 case Weak: return "WEAK ";
Andrew Trick3b87f622012-11-07 07:05:09 +00002096 case SingleMax: return "REG-MAX ";
2097 case MultiPressure: return "REG-MULTI ";
2098 case ResourceReduce: return "RES-REDUCE";
2099 case ResourceDemand: return "RES-DEMAND";
2100 case TopDepthReduce: return "TOP-DEPTH ";
2101 case TopPathReduce: return "TOP-PATH ";
2102 case BotHeightReduce:return "BOT-HEIGHT";
2103 case BotPathReduce: return "BOT-PATH ";
2104 case NextDefUse: return "DEF-USE ";
2105 case NodeOrder: return "ORDER ";
2106 };
Benjamin Kramerb7546872012-11-09 15:45:22 +00002107 llvm_unreachable("Unknown reason!");
Andrew Trick3b87f622012-11-07 07:05:09 +00002108}
2109
Andrew Trick11189f72013-04-05 00:31:29 +00002110void ConvergingScheduler::traceCandidate(const SchedCandidate &Cand) {
Andrew Trick3b87f622012-11-07 07:05:09 +00002111 PressureElement P;
2112 unsigned ResIdx = 0;
2113 unsigned Latency = 0;
2114 switch (Cand.Reason) {
2115 default:
2116 break;
2117 case SingleExcess:
2118 P = Cand.RPDelta.Excess;
2119 break;
2120 case SingleCritical:
2121 P = Cand.RPDelta.CriticalMax;
2122 break;
2123 case SingleMax:
2124 P = Cand.RPDelta.CurrentMax;
2125 break;
2126 case ResourceReduce:
2127 ResIdx = Cand.Policy.ReduceResIdx;
2128 break;
2129 case ResourceDemand:
2130 ResIdx = Cand.Policy.DemandResIdx;
2131 break;
2132 case TopDepthReduce:
2133 Latency = Cand.SU->getDepth();
2134 break;
2135 case TopPathReduce:
2136 Latency = Cand.SU->getHeight();
2137 break;
2138 case BotHeightReduce:
2139 Latency = Cand.SU->getHeight();
2140 break;
2141 case BotPathReduce:
2142 Latency = Cand.SU->getDepth();
2143 break;
2144 }
Andrew Trick11189f72013-04-05 00:31:29 +00002145 dbgs() << " SU(" << Cand.SU->NodeNum << ") " << getReasonStr(Cand.Reason);
Andrew Trick3b87f622012-11-07 07:05:09 +00002146 if (P.isValid())
Andrew Trick11189f72013-04-05 00:31:29 +00002147 dbgs() << " " << TRI->getRegPressureSetName(P.PSetID)
2148 << ":" << P.UnitIncrease << " ";
Andrew Trick3b87f622012-11-07 07:05:09 +00002149 else
Andrew Trick11189f72013-04-05 00:31:29 +00002150 dbgs() << " ";
Andrew Trick3b87f622012-11-07 07:05:09 +00002151 if (ResIdx)
Andrew Trick11189f72013-04-05 00:31:29 +00002152 dbgs() << " " << SchedModel->getProcResource(ResIdx)->Name << " ";
Andrew Trick3b87f622012-11-07 07:05:09 +00002153 else
2154 dbgs() << " ";
Andrew Trick11189f72013-04-05 00:31:29 +00002155 if (Latency)
2156 dbgs() << " " << Latency << " cycles ";
2157 else
2158 dbgs() << " ";
2159 dbgs() << '\n';
Andrew Trick3b87f622012-11-07 07:05:09 +00002160}
2161#endif
2162
Andrew Trick7196a8f2012-05-10 21:06:16 +00002163/// Pick the best candidate from the top queue.
2164///
2165/// TODO: getMaxPressureDelta results can be mostly cached for each SUnit during
2166/// DAG building. To adjust for the current scheduling location we need to
2167/// maintain the number of vreg uses remaining to be top-scheduled.
Andrew Trick3b87f622012-11-07 07:05:09 +00002168void ConvergingScheduler::pickNodeFromQueue(SchedBoundary &Zone,
2169 const RegPressureTracker &RPTracker,
2170 SchedCandidate &Cand) {
2171 ReadyQueue &Q = Zone.Available;
2172
Andrew Trickf3234242012-05-24 22:11:12 +00002173 DEBUG(Q.dump());
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002174
Andrew Trick7196a8f2012-05-10 21:06:16 +00002175 // getMaxPressureDelta temporarily modifies the tracker.
2176 RegPressureTracker &TempTracker = const_cast<RegPressureTracker&>(RPTracker);
2177
Andrew Trick8c2d9212012-05-24 22:11:03 +00002178 for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) {
Andrew Trick7196a8f2012-05-10 21:06:16 +00002179
Andrew Trick3b87f622012-11-07 07:05:09 +00002180 SchedCandidate TryCand(Cand.Policy);
2181 TryCand.SU = *I;
2182 tryCandidate(Cand, TryCand, Zone, RPTracker, TempTracker);
2183 if (TryCand.Reason != NoCand) {
2184 // Initialize resource delta if needed in case future heuristics query it.
2185 if (TryCand.ResDelta == SchedResourceDelta())
2186 TryCand.initResourceDelta(DAG, SchedModel);
2187 Cand.setBest(TryCand);
Andrew Trick11189f72013-04-05 00:31:29 +00002188 DEBUG(traceCandidate(Cand));
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002189 }
Andrew Trick7196a8f2012-05-10 21:06:16 +00002190 }
Andrew Trick3b87f622012-11-07 07:05:09 +00002191}
2192
2193static void tracePick(const ConvergingScheduler::SchedCandidate &Cand,
2194 bool IsTop) {
Andrew Trickbaedcd72013-04-13 06:07:49 +00002195 DEBUG(dbgs() << "Pick " << (IsTop ? "Top " : "Bot ")
Andrew Trick3b87f622012-11-07 07:05:09 +00002196 << ConvergingScheduler::getReasonStr(Cand.Reason) << '\n');
Andrew Trick7196a8f2012-05-10 21:06:16 +00002197}
2198
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002199/// Pick the best candidate node from either the top or bottom queue.
Andrew Trick3b87f622012-11-07 07:05:09 +00002200SUnit *ConvergingScheduler::pickNodeBidirectional(bool &IsTopNode) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002201 // Schedule as far as possible in the direction of no choice. This is most
2202 // efficient, but also provides the best heuristics for CriticalPSets.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002203 if (SUnit *SU = Bot.pickOnlyChoice()) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002204 IsTopNode = false;
Andrew Trickbaedcd72013-04-13 06:07:49 +00002205 DEBUG(dbgs() << "Pick Top NOCAND\n");
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002206 return SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002207 }
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002208 if (SUnit *SU = Top.pickOnlyChoice()) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002209 IsTopNode = true;
Andrew Trickbaedcd72013-04-13 06:07:49 +00002210 DEBUG(dbgs() << "Pick Bot NOCAND\n");
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002211 return SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002212 }
Andrew Trick3b87f622012-11-07 07:05:09 +00002213 CandPolicy NoPolicy;
2214 SchedCandidate BotCand(NoPolicy);
2215 SchedCandidate TopCand(NoPolicy);
2216 checkResourceLimits(TopCand, BotCand);
2217
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002218 // Prefer bottom scheduling when heuristics are silent.
Andrew Trick3b87f622012-11-07 07:05:09 +00002219 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand);
2220 assert(BotCand.Reason != NoCand && "failed to find the first candidate");
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002221
2222 // If either Q has a single candidate that provides the least increase in
2223 // Excess pressure, we can immediately schedule from that Q.
2224 //
2225 // RegionCriticalPSets summarizes the pressure within the scheduled region and
2226 // affects picking from either Q. If scheduling in one direction must
2227 // increase pressure for one of the excess PSets, then schedule in that
2228 // direction first to provide more freedom in the other direction.
Andrew Trick3b87f622012-11-07 07:05:09 +00002229 if (BotCand.Reason == SingleExcess || BotCand.Reason == SingleCritical) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002230 IsTopNode = false;
Andrew Trick3b87f622012-11-07 07:05:09 +00002231 tracePick(BotCand, IsTopNode);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002232 return BotCand.SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002233 }
2234 // Check if the top Q has a better candidate.
Andrew Trick3b87f622012-11-07 07:05:09 +00002235 pickNodeFromQueue(Top, DAG->getTopRPTracker(), TopCand);
2236 assert(TopCand.Reason != NoCand && "failed to find the first candidate");
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002237
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002238 // If either Q has a single candidate that minimizes pressure above the
2239 // original region's pressure pick it.
Andrew Trick3b87f622012-11-07 07:05:09 +00002240 if (TopCand.Reason <= SingleMax || BotCand.Reason <= SingleMax) {
2241 if (TopCand.Reason < BotCand.Reason) {
2242 IsTopNode = true;
2243 tracePick(TopCand, IsTopNode);
2244 return TopCand.SU;
2245 }
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002246 IsTopNode = false;
Andrew Trick3b87f622012-11-07 07:05:09 +00002247 tracePick(BotCand, IsTopNode);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002248 return BotCand.SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002249 }
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002250 // Check for a salient pressure difference and pick the best from either side.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002251 if (compareRPDelta(TopCand.RPDelta, BotCand.RPDelta)) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002252 IsTopNode = true;
Andrew Trick3b87f622012-11-07 07:05:09 +00002253 tracePick(TopCand, IsTopNode);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002254 return TopCand.SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002255 }
Andrew Trick3b87f622012-11-07 07:05:09 +00002256 // Otherwise prefer the bottom candidate, in node order if all else failed.
2257 if (TopCand.Reason < BotCand.Reason) {
2258 IsTopNode = true;
2259 tracePick(TopCand, IsTopNode);
2260 return TopCand.SU;
2261 }
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002262 IsTopNode = false;
Andrew Trick3b87f622012-11-07 07:05:09 +00002263 tracePick(BotCand, IsTopNode);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002264 return BotCand.SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002265}
2266
2267/// Pick the best node to balance the schedule. Implements MachineSchedStrategy.
Andrew Trick7196a8f2012-05-10 21:06:16 +00002268SUnit *ConvergingScheduler::pickNode(bool &IsTopNode) {
2269 if (DAG->top() == DAG->bottom()) {
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002270 assert(Top.Available.empty() && Top.Pending.empty() &&
2271 Bot.Available.empty() && Bot.Pending.empty() && "ReadyQ garbage");
Andrew Trick7196a8f2012-05-10 21:06:16 +00002272 return NULL;
2273 }
Andrew Trick7196a8f2012-05-10 21:06:16 +00002274 SUnit *SU;
Andrew Trick30c6ec22012-10-08 18:53:53 +00002275 do {
2276 if (ForceTopDown) {
2277 SU = Top.pickOnlyChoice();
2278 if (!SU) {
Andrew Trick3b87f622012-11-07 07:05:09 +00002279 CandPolicy NoPolicy;
2280 SchedCandidate TopCand(NoPolicy);
2281 pickNodeFromQueue(Top, DAG->getTopRPTracker(), TopCand);
2282 assert(TopCand.Reason != NoCand && "failed to find the first candidate");
Andrew Trick30c6ec22012-10-08 18:53:53 +00002283 SU = TopCand.SU;
2284 }
2285 IsTopNode = true;
Andrew Trick8ddd9d52012-05-24 23:11:17 +00002286 }
Andrew Trick30c6ec22012-10-08 18:53:53 +00002287 else if (ForceBottomUp) {
2288 SU = Bot.pickOnlyChoice();
2289 if (!SU) {
Andrew Trick3b87f622012-11-07 07:05:09 +00002290 CandPolicy NoPolicy;
2291 SchedCandidate BotCand(NoPolicy);
2292 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand);
2293 assert(BotCand.Reason != NoCand && "failed to find the first candidate");
Andrew Trick30c6ec22012-10-08 18:53:53 +00002294 SU = BotCand.SU;
2295 }
2296 IsTopNode = false;
Andrew Trick8ddd9d52012-05-24 23:11:17 +00002297 }
Andrew Trick30c6ec22012-10-08 18:53:53 +00002298 else {
Andrew Trick3b87f622012-11-07 07:05:09 +00002299 SU = pickNodeBidirectional(IsTopNode);
Andrew Trick30c6ec22012-10-08 18:53:53 +00002300 }
2301 } while (SU->isScheduled);
2302
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002303 if (SU->isTopReady())
2304 Top.removeReady(SU);
2305 if (SU->isBottomReady())
2306 Bot.removeReady(SU);
Andrew Trickc7a098f2012-05-25 02:02:39 +00002307
Andrew Trickbaedcd72013-04-13 06:07:49 +00002308 DEBUG(dbgs() << "Scheduling SU(" << SU->NodeNum << ") " << *SU->getInstr());
Andrew Trick7196a8f2012-05-10 21:06:16 +00002309 return SU;
2310}
2311
Andrew Trick4392f0f2013-04-13 06:07:40 +00002312void ConvergingScheduler::reschedulePhysRegCopies(SUnit *SU, bool isTop) {
2313
2314 MachineBasicBlock::iterator InsertPos = SU->getInstr();
2315 if (!isTop)
2316 ++InsertPos;
2317 SmallVectorImpl<SDep> &Deps = isTop ? SU->Preds : SU->Succs;
2318
2319 // Find already scheduled copies with a single physreg dependence and move
2320 // them just above the scheduled instruction.
2321 for (SmallVectorImpl<SDep>::iterator I = Deps.begin(), E = Deps.end();
2322 I != E; ++I) {
2323 if (I->getKind() != SDep::Data || !TRI->isPhysicalRegister(I->getReg()))
2324 continue;
2325 SUnit *DepSU = I->getSUnit();
2326 if (isTop ? DepSU->Succs.size() > 1 : DepSU->Preds.size() > 1)
2327 continue;
2328 MachineInstr *Copy = DepSU->getInstr();
2329 if (!Copy->isCopy())
2330 continue;
2331 DEBUG(dbgs() << " Rescheduling physreg copy ";
2332 I->getSUnit()->dump(DAG));
2333 DAG->moveInstruction(Copy, InsertPos);
2334 }
2335}
2336
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002337/// Update the scheduler's state after scheduling a node. This is the same node
2338/// that was just returned by pickNode(). However, ScheduleDAGMI needs to update
Andrew Trickb7e02892012-06-05 21:11:27 +00002339/// it's state based on the current cycle before MachineSchedStrategy does.
Andrew Trick4392f0f2013-04-13 06:07:40 +00002340///
2341/// FIXME: Eventually, we may bundle physreg copies rather than rescheduling
2342/// them here. See comments in biasPhysRegCopy.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002343void ConvergingScheduler::schedNode(SUnit *SU, bool IsTopNode) {
Andrew Trickb7e02892012-06-05 21:11:27 +00002344 if (IsTopNode) {
2345 SU->TopReadyCycle = Top.CurrCycle;
Andrew Trick7f8c74c2012-06-29 03:23:22 +00002346 Top.bumpNode(SU);
Andrew Trick4392f0f2013-04-13 06:07:40 +00002347 if (SU->hasPhysRegUses)
2348 reschedulePhysRegCopies(SU, true);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002349 }
Andrew Trickb7e02892012-06-05 21:11:27 +00002350 else {
2351 SU->BotReadyCycle = Bot.CurrCycle;
Andrew Trick7f8c74c2012-06-29 03:23:22 +00002352 Bot.bumpNode(SU);
Andrew Trick4392f0f2013-04-13 06:07:40 +00002353 if (SU->hasPhysRegDefs)
2354 reschedulePhysRegCopies(SU, false);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002355 }
2356}
2357
Andrew Trick17d35e52012-03-14 04:00:41 +00002358/// Create the standard converging machine scheduler. This will be used as the
2359/// default scheduler if the target does not set a default.
2360static ScheduleDAGInstrs *createConvergingSched(MachineSchedContext *C) {
Benjamin Kramer689e0b42012-03-14 11:26:37 +00002361 assert((!ForceTopDown || !ForceBottomUp) &&
Andrew Trick17d35e52012-03-14 04:00:41 +00002362 "-misched-topdown incompatible with -misched-bottomup");
Andrew Trick9b5caaa2012-11-12 19:40:10 +00002363 ScheduleDAGMI *DAG = new ScheduleDAGMI(C, new ConvergingScheduler());
2364 // Register DAG post-processors.
Andrew Tricke38afe12013-04-24 15:54:43 +00002365 //
2366 // FIXME: extend the mutation API to allow earlier mutations to instantiate
2367 // data and pass it to later mutations. Have a single mutation that gathers
2368 // the interesting nodes in one pass.
2369 if (EnableCopyConstrain)
2370 DAG->addMutation(new CopyConstrain(DAG->TII, DAG->TRI));
Andrew Trick9b5caaa2012-11-12 19:40:10 +00002371 if (EnableLoadCluster)
2372 DAG->addMutation(new LoadClusterMutation(DAG->TII, DAG->TRI));
Andrew Trick6996fd02012-11-12 19:52:20 +00002373 if (EnableMacroFusion)
2374 DAG->addMutation(new MacroFusion(DAG->TII));
Andrew Trick9b5caaa2012-11-12 19:40:10 +00002375 return DAG;
Andrew Trick42b7a712012-01-17 06:55:03 +00002376}
2377static MachineSchedRegistry
Andrew Trick17d35e52012-03-14 04:00:41 +00002378ConvergingSchedRegistry("converge", "Standard converging scheduler.",
2379 createConvergingSched);
Andrew Trick42b7a712012-01-17 06:55:03 +00002380
2381//===----------------------------------------------------------------------===//
Andrew Trick1e94e982012-10-15 18:02:27 +00002382// ILP Scheduler. Currently for experimental analysis of heuristics.
2383//===----------------------------------------------------------------------===//
2384
2385namespace {
2386/// \brief Order nodes by the ILP metric.
2387struct ILPOrder {
Andrew Trick178f7d02013-01-25 04:01:04 +00002388 const SchedDFSResult *DFSResult;
2389 const BitVector *ScheduledTrees;
Andrew Trick1e94e982012-10-15 18:02:27 +00002390 bool MaximizeILP;
2391
Andrew Trick178f7d02013-01-25 04:01:04 +00002392 ILPOrder(bool MaxILP): DFSResult(0), ScheduledTrees(0), MaximizeILP(MaxILP) {}
Andrew Trick1e94e982012-10-15 18:02:27 +00002393
2394 /// \brief Apply a less-than relation on node priority.
Andrew Trick8b1496c2012-11-28 05:13:28 +00002395 ///
2396 /// (Return true if A comes after B in the Q.)
Andrew Trick1e94e982012-10-15 18:02:27 +00002397 bool operator()(const SUnit *A, const SUnit *B) const {
Andrew Trick8b1496c2012-11-28 05:13:28 +00002398 unsigned SchedTreeA = DFSResult->getSubtreeID(A);
2399 unsigned SchedTreeB = DFSResult->getSubtreeID(B);
2400 if (SchedTreeA != SchedTreeB) {
2401 // Unscheduled trees have lower priority.
2402 if (ScheduledTrees->test(SchedTreeA) != ScheduledTrees->test(SchedTreeB))
2403 return ScheduledTrees->test(SchedTreeB);
2404
2405 // Trees with shallower connections have have lower priority.
2406 if (DFSResult->getSubtreeLevel(SchedTreeA)
2407 != DFSResult->getSubtreeLevel(SchedTreeB)) {
2408 return DFSResult->getSubtreeLevel(SchedTreeA)
2409 < DFSResult->getSubtreeLevel(SchedTreeB);
2410 }
2411 }
Andrew Trick1e94e982012-10-15 18:02:27 +00002412 if (MaximizeILP)
Andrew Trick8b1496c2012-11-28 05:13:28 +00002413 return DFSResult->getILP(A) < DFSResult->getILP(B);
Andrew Trick1e94e982012-10-15 18:02:27 +00002414 else
Andrew Trick8b1496c2012-11-28 05:13:28 +00002415 return DFSResult->getILP(A) > DFSResult->getILP(B);
Andrew Trick1e94e982012-10-15 18:02:27 +00002416 }
2417};
2418
2419/// \brief Schedule based on the ILP metric.
2420class ILPScheduler : public MachineSchedStrategy {
Andrew Trick8b1496c2012-11-28 05:13:28 +00002421 /// In case all subtrees are eventually connected to a common root through
2422 /// data dependence (e.g. reduction), place an upper limit on their size.
2423 ///
2424 /// FIXME: A subtree limit is generally good, but in the situation commented
2425 /// above, where multiple similar subtrees feed a common root, we should
2426 /// only split at a point where the resulting subtrees will be balanced.
2427 /// (a motivating test case must be found).
2428 static const unsigned SubtreeLimit = 16;
2429
Andrew Trick178f7d02013-01-25 04:01:04 +00002430 ScheduleDAGMI *DAG;
Andrew Trick1e94e982012-10-15 18:02:27 +00002431 ILPOrder Cmp;
2432
2433 std::vector<SUnit*> ReadyQ;
2434public:
Andrew Trick178f7d02013-01-25 04:01:04 +00002435 ILPScheduler(bool MaximizeILP): DAG(0), Cmp(MaximizeILP) {}
Andrew Trick1e94e982012-10-15 18:02:27 +00002436
Andrew Trick178f7d02013-01-25 04:01:04 +00002437 virtual void initialize(ScheduleDAGMI *dag) {
2438 DAG = dag;
Andrew Trick4e1fb182013-01-25 06:33:57 +00002439 DAG->computeDFSResult();
Andrew Trick178f7d02013-01-25 04:01:04 +00002440 Cmp.DFSResult = DAG->getDFSResult();
2441 Cmp.ScheduledTrees = &DAG->getScheduledTrees();
Andrew Trick1e94e982012-10-15 18:02:27 +00002442 ReadyQ.clear();
Andrew Trick1e94e982012-10-15 18:02:27 +00002443 }
2444
2445 virtual void registerRoots() {
Benjamin Kramer5175fd92012-11-29 14:36:26 +00002446 // Restore the heap in ReadyQ with the updated DFS results.
2447 std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
Andrew Trick1e94e982012-10-15 18:02:27 +00002448 }
2449
2450 /// Implement MachineSchedStrategy interface.
2451 /// -----------------------------------------
2452
Andrew Trick8b1496c2012-11-28 05:13:28 +00002453 /// Callback to select the highest priority node from the ready Q.
Andrew Trick1e94e982012-10-15 18:02:27 +00002454 virtual SUnit *pickNode(bool &IsTopNode) {
2455 if (ReadyQ.empty()) return NULL;
Matt Arsenault26c417b2013-03-21 00:57:21 +00002456 std::pop_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
Andrew Trick1e94e982012-10-15 18:02:27 +00002457 SUnit *SU = ReadyQ.back();
2458 ReadyQ.pop_back();
2459 IsTopNode = false;
Andrew Trickbaedcd72013-04-13 06:07:49 +00002460 DEBUG(dbgs() << "Pick node " << "SU(" << SU->NodeNum << ") "
Andrew Trick178f7d02013-01-25 04:01:04 +00002461 << " ILP: " << DAG->getDFSResult()->getILP(SU)
2462 << " Tree: " << DAG->getDFSResult()->getSubtreeID(SU) << " @"
2463 << DAG->getDFSResult()->getSubtreeLevel(
Andrew Trickbaedcd72013-04-13 06:07:49 +00002464 DAG->getDFSResult()->getSubtreeID(SU)) << '\n'
2465 << "Scheduling " << *SU->getInstr());
Andrew Trick1e94e982012-10-15 18:02:27 +00002466 return SU;
2467 }
2468
Andrew Trick178f7d02013-01-25 04:01:04 +00002469 /// \brief Scheduler callback to notify that a new subtree is scheduled.
2470 virtual void scheduleTree(unsigned SubtreeID) {
2471 std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
2472 }
2473
Andrew Trick8b1496c2012-11-28 05:13:28 +00002474 /// Callback after a node is scheduled. Mark a newly scheduled tree, notify
2475 /// DFSResults, and resort the priority Q.
2476 virtual void schedNode(SUnit *SU, bool IsTopNode) {
2477 assert(!IsTopNode && "SchedDFSResult needs bottom-up");
Andrew Trick8b1496c2012-11-28 05:13:28 +00002478 }
Andrew Trick1e94e982012-10-15 18:02:27 +00002479
2480 virtual void releaseTopNode(SUnit *) { /*only called for top roots*/ }
2481
2482 virtual void releaseBottomNode(SUnit *SU) {
2483 ReadyQ.push_back(SU);
2484 std::push_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
2485 }
2486};
2487} // namespace
2488
2489static ScheduleDAGInstrs *createILPMaxScheduler(MachineSchedContext *C) {
2490 return new ScheduleDAGMI(C, new ILPScheduler(true));
2491}
2492static ScheduleDAGInstrs *createILPMinScheduler(MachineSchedContext *C) {
2493 return new ScheduleDAGMI(C, new ILPScheduler(false));
2494}
2495static MachineSchedRegistry ILPMaxRegistry(
2496 "ilpmax", "Schedule bottom-up for max ILP", createILPMaxScheduler);
2497static MachineSchedRegistry ILPMinRegistry(
2498 "ilpmin", "Schedule bottom-up for min ILP", createILPMinScheduler);
2499
2500//===----------------------------------------------------------------------===//
Andrew Trick5edf2f02012-01-14 02:17:06 +00002501// Machine Instruction Shuffler for Correctness Testing
2502//===----------------------------------------------------------------------===//
2503
Andrew Trick96f678f2012-01-13 06:30:30 +00002504#ifndef NDEBUG
2505namespace {
Andrew Trick17d35e52012-03-14 04:00:41 +00002506/// Apply a less-than relation on the node order, which corresponds to the
2507/// instruction order prior to scheduling. IsReverse implements greater-than.
2508template<bool IsReverse>
2509struct SUnitOrder {
Andrew Trickc6cf11b2012-01-17 06:55:07 +00002510 bool operator()(SUnit *A, SUnit *B) const {
Andrew Trick17d35e52012-03-14 04:00:41 +00002511 if (IsReverse)
2512 return A->NodeNum > B->NodeNum;
2513 else
2514 return A->NodeNum < B->NodeNum;
Andrew Trickc6cf11b2012-01-17 06:55:07 +00002515 }
2516};
2517
Andrew Trick96f678f2012-01-13 06:30:30 +00002518/// Reorder instructions as much as possible.
Andrew Trick17d35e52012-03-14 04:00:41 +00002519class InstructionShuffler : public MachineSchedStrategy {
2520 bool IsAlternating;
2521 bool IsTopDown;
2522
2523 // Using a less-than relation (SUnitOrder<false>) for the TopQ priority
2524 // gives nodes with a higher number higher priority causing the latest
2525 // instructions to be scheduled first.
2526 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<false> >
2527 TopQ;
2528 // When scheduling bottom-up, use greater-than as the queue priority.
2529 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<true> >
2530 BottomQ;
Andrew Trick96f678f2012-01-13 06:30:30 +00002531public:
Andrew Trick17d35e52012-03-14 04:00:41 +00002532 InstructionShuffler(bool alternate, bool topdown)
2533 : IsAlternating(alternate), IsTopDown(topdown) {}
Andrew Trick96f678f2012-01-13 06:30:30 +00002534
Andrew Trick17d35e52012-03-14 04:00:41 +00002535 virtual void initialize(ScheduleDAGMI *) {
2536 TopQ.clear();
2537 BottomQ.clear();
2538 }
Andrew Trickc6cf11b2012-01-17 06:55:07 +00002539
Andrew Trick17d35e52012-03-14 04:00:41 +00002540 /// Implement MachineSchedStrategy interface.
2541 /// -----------------------------------------
2542
2543 virtual SUnit *pickNode(bool &IsTopNode) {
2544 SUnit *SU;
2545 if (IsTopDown) {
2546 do {
2547 if (TopQ.empty()) return NULL;
2548 SU = TopQ.top();
2549 TopQ.pop();
2550 } while (SU->isScheduled);
2551 IsTopNode = true;
2552 }
2553 else {
2554 do {
2555 if (BottomQ.empty()) return NULL;
2556 SU = BottomQ.top();
2557 BottomQ.pop();
2558 } while (SU->isScheduled);
2559 IsTopNode = false;
2560 }
2561 if (IsAlternating)
2562 IsTopDown = !IsTopDown;
Andrew Trickc6cf11b2012-01-17 06:55:07 +00002563 return SU;
2564 }
2565
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002566 virtual void schedNode(SUnit *SU, bool IsTopNode) {}
2567
Andrew Trick17d35e52012-03-14 04:00:41 +00002568 virtual void releaseTopNode(SUnit *SU) {
2569 TopQ.push(SU);
2570 }
2571 virtual void releaseBottomNode(SUnit *SU) {
2572 BottomQ.push(SU);
Andrew Trick96f678f2012-01-13 06:30:30 +00002573 }
2574};
2575} // namespace
2576
Andrew Trickc174eaf2012-03-08 01:41:12 +00002577static ScheduleDAGInstrs *createInstructionShuffler(MachineSchedContext *C) {
Andrew Trick17d35e52012-03-14 04:00:41 +00002578 bool Alternate = !ForceTopDown && !ForceBottomUp;
2579 bool TopDown = !ForceBottomUp;
Benjamin Kramer689e0b42012-03-14 11:26:37 +00002580 assert((TopDown || !ForceTopDown) &&
Andrew Trick17d35e52012-03-14 04:00:41 +00002581 "-misched-topdown incompatible with -misched-bottomup");
2582 return new ScheduleDAGMI(C, new InstructionShuffler(Alternate, TopDown));
Andrew Trick96f678f2012-01-13 06:30:30 +00002583}
Andrew Trick17d35e52012-03-14 04:00:41 +00002584static MachineSchedRegistry ShufflerRegistry(
2585 "shuffle", "Shuffle machine instructions alternating directions",
2586 createInstructionShuffler);
Andrew Trick96f678f2012-01-13 06:30:30 +00002587#endif // !NDEBUG
Andrew Trick30849792013-01-25 07:45:29 +00002588
2589//===----------------------------------------------------------------------===//
2590// GraphWriter support for ScheduleDAGMI.
2591//===----------------------------------------------------------------------===//
2592
2593#ifndef NDEBUG
2594namespace llvm {
2595
2596template<> struct GraphTraits<
2597 ScheduleDAGMI*> : public GraphTraits<ScheduleDAG*> {};
2598
2599template<>
2600struct DOTGraphTraits<ScheduleDAGMI*> : public DefaultDOTGraphTraits {
2601
2602 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
2603
2604 static std::string getGraphName(const ScheduleDAG *G) {
2605 return G->MF.getName();
2606 }
2607
2608 static bool renderGraphFromBottomUp() {
2609 return true;
2610 }
2611
2612 static bool isNodeHidden(const SUnit *Node) {
2613 return (Node->NumPreds > 10 || Node->NumSuccs > 10);
2614 }
2615
2616 static bool hasNodeAddressLabel(const SUnit *Node,
2617 const ScheduleDAG *Graph) {
2618 return false;
2619 }
2620
2621 /// If you want to override the dot attributes printed for a particular
2622 /// edge, override this method.
2623 static std::string getEdgeAttributes(const SUnit *Node,
2624 SUnitIterator EI,
2625 const ScheduleDAG *Graph) {
2626 if (EI.isArtificialDep())
2627 return "color=cyan,style=dashed";
2628 if (EI.isCtrlDep())
2629 return "color=blue,style=dashed";
2630 return "";
2631 }
2632
2633 static std::string getNodeLabel(const SUnit *SU, const ScheduleDAG *G) {
2634 std::string Str;
2635 raw_string_ostream SS(Str);
2636 SS << "SU(" << SU->NodeNum << ')';
2637 return SS.str();
2638 }
2639 static std::string getNodeDescription(const SUnit *SU, const ScheduleDAG *G) {
2640 return G->getGraphNodeLabel(SU);
2641 }
2642
2643 static std::string getNodeAttributes(const SUnit *N,
2644 const ScheduleDAG *Graph) {
2645 std::string Str("shape=Mrecord");
2646 const SchedDFSResult *DFS =
2647 static_cast<const ScheduleDAGMI*>(Graph)->getDFSResult();
2648 if (DFS) {
2649 Str += ",style=filled,fillcolor=\"#";
2650 Str += DOT::getColorString(DFS->getSubtreeID(N));
2651 Str += '"';
2652 }
2653 return Str;
2654 }
2655};
2656} // namespace llvm
2657#endif // NDEBUG
2658
2659/// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
2660/// rendered using 'dot'.
2661///
2662void ScheduleDAGMI::viewGraph(const Twine &Name, const Twine &Title) {
2663#ifndef NDEBUG
2664 ViewGraph(this, Name, false, Title);
2665#else
2666 errs() << "ScheduleDAGMI::viewGraph is only available in debug builds on "
2667 << "systems with Graphviz or gv!\n";
2668#endif // NDEBUG
2669}
2670
2671/// Out-of-line implementation with no arguments is handy for gdb.
2672void ScheduleDAGMI::viewGraph() {
2673 viewGraph(getDAGName(), "Scheduling-Units Graph for " + getDAGName());
2674}