blob: a554254794aafcf8f9495c19a32d5f461a258483 [file] [log] [blame]
Andrew Trick6a50baa2012-05-17 22:37:09 +00001//===- MachineScheduler.cpp - Machine Instruction Scheduler ---------------===//
Andrew Tricke77e84e2012-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
Andrew Trick02a80da2012-03-08 01:41:12 +000015#include "llvm/CodeGen/MachineScheduler.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/ADT/PriorityQueue.h"
17#include "llvm/Analysis/AliasAnalysis.h"
18#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Jakub Staszakdf17ddd2013-03-10 13:11:23 +000019#include "llvm/CodeGen/MachineDominators.h"
20#include "llvm/CodeGen/MachineLoopInfo.h"
Andrew Trick736dd9a2013-06-21 18:32:58 +000021#include "llvm/CodeGen/MachineRegisterInfo.h"
Andrew Tricke77e84e2012-01-13 06:30:30 +000022#include "llvm/CodeGen/Passes.h"
Andrew Trick05ff4662012-06-06 20:29:31 +000023#include "llvm/CodeGen/RegisterClassInfo.h"
Andrew Trickcd1c2f92012-11-28 05:13:24 +000024#include "llvm/CodeGen/ScheduleDFS.h"
Andrew Trick61f1a272012-05-24 22:11:09 +000025#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
Andrew Tricke77e84e2012-01-13 06:30:30 +000026#include "llvm/Support/CommandLine.h"
27#include "llvm/Support/Debug.h"
28#include "llvm/Support/ErrorHandling.h"
Andrew Trickea9fd952013-01-25 07:45:29 +000029#include "llvm/Support/GraphWriter.h"
Andrew Tricke77e84e2012-01-13 06:30:30 +000030#include "llvm/Support/raw_ostream.h"
Jakub Staszak80df8b82013-06-14 00:00:13 +000031#include "llvm/Target/TargetInstrInfo.h"
Andrew Trick7ccdc5c2012-01-17 06:55:07 +000032#include <queue>
33
Andrew Tricke77e84e2012-01-13 06:30:30 +000034using namespace llvm;
35
Chandler Carruth1b9dde02014-04-22 02:02:50 +000036#define DEBUG_TYPE "misched"
37
Andrew Trick7a8e1002012-09-11 00:39:15 +000038namespace llvm {
39cl::opt<bool> ForceTopDown("misched-topdown", cl::Hidden,
40 cl::desc("Force top-down list scheduling"));
41cl::opt<bool> ForceBottomUp("misched-bottomup", cl::Hidden,
42 cl::desc("Force bottom-up list scheduling"));
Gerolf Hoflehnerb5220dc2014-08-07 21:49:44 +000043cl::opt<bool>
44DumpCriticalPathLength("misched-dcpl", cl::Hidden,
45 cl::desc("Print critical path length to stdout"));
Andrew Trick7a8e1002012-09-11 00:39:15 +000046}
Andrew Trick8823dec2012-03-14 04:00:41 +000047
Andrew Tricka5f19562012-03-07 00:18:25 +000048#ifndef NDEBUG
49static cl::opt<bool> ViewMISchedDAGs("view-misched-dags", cl::Hidden,
50 cl::desc("Pop up a window to show MISched dags after they are processed"));
Lang Hamesdd98c492012-03-19 18:38:38 +000051
52static cl::opt<unsigned> MISchedCutoff("misched-cutoff", cl::Hidden,
53 cl::desc("Stop scheduling after N instructions"), cl::init(~0U));
Andrew Trick33e05d72013-12-28 21:57:02 +000054
55static cl::opt<std::string> SchedOnlyFunc("misched-only-func", cl::Hidden,
56 cl::desc("Only schedule this function"));
57static cl::opt<unsigned> SchedOnlyBlock("misched-only-block", cl::Hidden,
58 cl::desc("Only schedule this MBB#"));
Andrew Tricka5f19562012-03-07 00:18:25 +000059#else
60static bool ViewMISchedDAGs = false;
61#endif // NDEBUG
62
Andrew Trickb6e74712013-09-04 20:59:59 +000063static cl::opt<bool> EnableRegPressure("misched-regpressure", cl::Hidden,
64 cl::desc("Enable register pressure scheduling."), cl::init(true));
65
Andrew Trickc01b0042013-08-23 17:48:43 +000066static cl::opt<bool> EnableCyclicPath("misched-cyclicpath", cl::Hidden,
Andrew Trick6c88b352013-09-09 23:31:14 +000067 cl::desc("Enable cyclic critical path analysis."), cl::init(true));
Andrew Trickc01b0042013-08-23 17:48:43 +000068
Andrew Tricka7714a02012-11-12 19:40:10 +000069static cl::opt<bool> EnableLoadCluster("misched-cluster", cl::Hidden,
Andrew Trick108c88c2012-11-13 08:47:29 +000070 cl::desc("Enable load clustering."), cl::init(true));
Andrew Tricka7714a02012-11-12 19:40:10 +000071
Andrew Trick263280242012-11-12 19:52:20 +000072// Experimental heuristics
73static cl::opt<bool> EnableMacroFusion("misched-fusion", cl::Hidden,
Andrew Trick108c88c2012-11-13 08:47:29 +000074 cl::desc("Enable scheduling for macro fusion."), cl::init(true));
Andrew Trick263280242012-11-12 19:52:20 +000075
Andrew Trick48f2a722013-03-08 05:40:34 +000076static cl::opt<bool> VerifyScheduling("verify-misched", cl::Hidden,
77 cl::desc("Verify machine instrs before and after machine scheduling"));
78
Andrew Trick44f750a2013-01-25 04:01:04 +000079// DAG subtrees must have at least this many nodes.
80static const unsigned MinSubtreeSize = 8;
81
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000082// Pin the vtables to this file.
83void MachineSchedStrategy::anchor() {}
84void ScheduleDAGMutation::anchor() {}
85
Andrew Trick63440872012-01-14 02:17:06 +000086//===----------------------------------------------------------------------===//
87// Machine Instruction Scheduling Pass and Registry
88//===----------------------------------------------------------------------===//
89
Andrew Trick4d4b5462012-04-24 20:36:19 +000090MachineSchedContext::MachineSchedContext():
Craig Topperc0196b12014-04-14 00:51:57 +000091 MF(nullptr), MLI(nullptr), MDT(nullptr), PassConfig(nullptr), AA(nullptr), LIS(nullptr) {
Andrew Trick4d4b5462012-04-24 20:36:19 +000092 RegClassInfo = new RegisterClassInfo();
93}
94
95MachineSchedContext::~MachineSchedContext() {
96 delete RegClassInfo;
97}
98
Andrew Tricke77e84e2012-01-13 06:30:30 +000099namespace {
Andrew Trickd7f890e2013-12-28 21:56:47 +0000100/// Base class for a machine scheduler class that can run at any point.
101class MachineSchedulerBase : public MachineSchedContext,
102 public MachineFunctionPass {
103public:
104 MachineSchedulerBase(char &ID): MachineFunctionPass(ID) {}
105
Craig Topperc0196b12014-04-14 00:51:57 +0000106 void print(raw_ostream &O, const Module* = nullptr) const override;
Andrew Trickd7f890e2013-12-28 21:56:47 +0000107
108protected:
109 void scheduleRegions(ScheduleDAGInstrs &Scheduler);
110};
111
Andrew Tricke1c034f2012-01-17 06:55:03 +0000112/// MachineScheduler runs after coalescing and before register allocation.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000113class MachineScheduler : public MachineSchedulerBase {
Andrew Tricke77e84e2012-01-13 06:30:30 +0000114public:
Andrew Tricke1c034f2012-01-17 06:55:03 +0000115 MachineScheduler();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000116
Craig Topper4584cd52014-03-07 09:26:03 +0000117 void getAnalysisUsage(AnalysisUsage &AU) const override;
Andrew Tricke77e84e2012-01-13 06:30:30 +0000118
Craig Topper4584cd52014-03-07 09:26:03 +0000119 bool runOnMachineFunction(MachineFunction&) override;
Andrew Tricke77e84e2012-01-13 06:30:30 +0000120
Andrew Tricke77e84e2012-01-13 06:30:30 +0000121 static char ID; // Class identification, replacement for typeinfo
Andrew Trick978674b2013-09-20 05:14:41 +0000122
123protected:
124 ScheduleDAGInstrs *createMachineScheduler();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000125};
Andrew Trick17080b92013-12-28 21:56:51 +0000126
127/// PostMachineScheduler runs after shortly before code emission.
128class PostMachineScheduler : public MachineSchedulerBase {
129public:
130 PostMachineScheduler();
131
Craig Topper4584cd52014-03-07 09:26:03 +0000132 void getAnalysisUsage(AnalysisUsage &AU) const override;
Andrew Trick17080b92013-12-28 21:56:51 +0000133
Craig Topper4584cd52014-03-07 09:26:03 +0000134 bool runOnMachineFunction(MachineFunction&) override;
Andrew Trick17080b92013-12-28 21:56:51 +0000135
136 static char ID; // Class identification, replacement for typeinfo
137
138protected:
139 ScheduleDAGInstrs *createPostMachineScheduler();
140};
Andrew Tricke77e84e2012-01-13 06:30:30 +0000141} // namespace
142
Andrew Tricke1c034f2012-01-17 06:55:03 +0000143char MachineScheduler::ID = 0;
Andrew Tricke77e84e2012-01-13 06:30:30 +0000144
Andrew Tricke1c034f2012-01-17 06:55:03 +0000145char &llvm::MachineSchedulerID = MachineScheduler::ID;
Andrew Tricke77e84e2012-01-13 06:30:30 +0000146
Akira Hatanaka7ba78302014-12-13 04:52:04 +0000147INITIALIZE_PASS_BEGIN(MachineScheduler, "machine-scheduler",
Andrew Tricke77e84e2012-01-13 06:30:30 +0000148 "Machine Instruction Scheduler", false, false)
149INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
150INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
151INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
Akira Hatanaka7ba78302014-12-13 04:52:04 +0000152INITIALIZE_PASS_END(MachineScheduler, "machine-scheduler",
Andrew Tricke77e84e2012-01-13 06:30:30 +0000153 "Machine Instruction Scheduler", false, false)
154
Andrew Tricke1c034f2012-01-17 06:55:03 +0000155MachineScheduler::MachineScheduler()
Andrew Trickd7f890e2013-12-28 21:56:47 +0000156: MachineSchedulerBase(ID) {
Andrew Tricke1c034f2012-01-17 06:55:03 +0000157 initializeMachineSchedulerPass(*PassRegistry::getPassRegistry());
Andrew Tricke77e84e2012-01-13 06:30:30 +0000158}
159
Andrew Tricke1c034f2012-01-17 06:55:03 +0000160void MachineScheduler::getAnalysisUsage(AnalysisUsage &AU) const {
Andrew Tricke77e84e2012-01-13 06:30:30 +0000161 AU.setPreservesCFG();
162 AU.addRequiredID(MachineDominatorsID);
163 AU.addRequired<MachineLoopInfo>();
164 AU.addRequired<AliasAnalysis>();
Andrew Trick45300682012-03-09 00:52:20 +0000165 AU.addRequired<TargetPassConfig>();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000166 AU.addRequired<SlotIndexes>();
167 AU.addPreserved<SlotIndexes>();
168 AU.addRequired<LiveIntervals>();
169 AU.addPreserved<LiveIntervals>();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000170 MachineFunctionPass::getAnalysisUsage(AU);
171}
172
Andrew Trick17080b92013-12-28 21:56:51 +0000173char PostMachineScheduler::ID = 0;
174
175char &llvm::PostMachineSchedulerID = PostMachineScheduler::ID;
176
177INITIALIZE_PASS(PostMachineScheduler, "postmisched",
Saleem Abdulrasool7230b372013-12-28 22:47:55 +0000178 "PostRA Machine Instruction Scheduler", false, false)
Andrew Trick17080b92013-12-28 21:56:51 +0000179
180PostMachineScheduler::PostMachineScheduler()
181: MachineSchedulerBase(ID) {
182 initializePostMachineSchedulerPass(*PassRegistry::getPassRegistry());
183}
184
185void PostMachineScheduler::getAnalysisUsage(AnalysisUsage &AU) const {
186 AU.setPreservesCFG();
187 AU.addRequiredID(MachineDominatorsID);
188 AU.addRequired<MachineLoopInfo>();
189 AU.addRequired<TargetPassConfig>();
190 MachineFunctionPass::getAnalysisUsage(AU);
191}
192
Andrew Tricke77e84e2012-01-13 06:30:30 +0000193MachinePassRegistry MachineSchedRegistry::Registry;
194
Andrew Trick45300682012-03-09 00:52:20 +0000195/// A dummy default scheduler factory indicates whether the scheduler
196/// is overridden on the command line.
197static ScheduleDAGInstrs *useDefaultMachineSched(MachineSchedContext *C) {
Craig Topperc0196b12014-04-14 00:51:57 +0000198 return nullptr;
Andrew Trick45300682012-03-09 00:52:20 +0000199}
Andrew Tricke77e84e2012-01-13 06:30:30 +0000200
201/// MachineSchedOpt allows command line selection of the scheduler.
202static cl::opt<MachineSchedRegistry::ScheduleDAGCtor, false,
203 RegisterPassParser<MachineSchedRegistry> >
204MachineSchedOpt("misched",
Andrew Trick45300682012-03-09 00:52:20 +0000205 cl::init(&useDefaultMachineSched), cl::Hidden,
Andrew Tricke77e84e2012-01-13 06:30:30 +0000206 cl::desc("Machine instruction scheduler to use"));
207
Andrew Trick45300682012-03-09 00:52:20 +0000208static MachineSchedRegistry
Andrew Trick8823dec2012-03-14 04:00:41 +0000209DefaultSchedRegistry("default", "Use the target's default scheduler choice.",
Andrew Trick45300682012-03-09 00:52:20 +0000210 useDefaultMachineSched);
211
Andrew Trick8823dec2012-03-14 04:00:41 +0000212/// Forward declare the standard machine scheduler. This will be used as the
Andrew Trick45300682012-03-09 00:52:20 +0000213/// default scheduler if the target does not set a default.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000214static ScheduleDAGInstrs *createGenericSchedLive(MachineSchedContext *C);
215static ScheduleDAGInstrs *createGenericSchedPostRA(MachineSchedContext *C);
Andrew Trickcc45a282012-04-24 18:04:34 +0000216
217/// Decrement this iterator until reaching the top or a non-debug instr.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000218static MachineBasicBlock::const_iterator
219priorNonDebug(MachineBasicBlock::const_iterator I,
220 MachineBasicBlock::const_iterator Beg) {
Andrew Trickcc45a282012-04-24 18:04:34 +0000221 assert(I != Beg && "reached the top of the region, cannot decrement");
222 while (--I != Beg) {
223 if (!I->isDebugValue())
224 break;
225 }
226 return I;
227}
228
Andrew Trick2bc74c22013-08-30 04:36:57 +0000229/// Non-const version.
230static MachineBasicBlock::iterator
231priorNonDebug(MachineBasicBlock::iterator I,
232 MachineBasicBlock::const_iterator Beg) {
233 return const_cast<MachineInstr*>(
234 &*priorNonDebug(MachineBasicBlock::const_iterator(I), Beg));
235}
236
Andrew Trickcc45a282012-04-24 18:04:34 +0000237/// If this iterator is a debug value, increment until reaching the End or a
238/// non-debug instruction.
Andrew Trick2c4f8b72013-08-31 05:17:58 +0000239static MachineBasicBlock::const_iterator
240nextIfDebug(MachineBasicBlock::const_iterator I,
241 MachineBasicBlock::const_iterator End) {
Andrew Trick463b2f12012-05-17 18:35:03 +0000242 for(; I != End; ++I) {
Andrew Trickcc45a282012-04-24 18:04:34 +0000243 if (!I->isDebugValue())
244 break;
245 }
246 return I;
247}
248
Andrew Trick2c4f8b72013-08-31 05:17:58 +0000249/// Non-const version.
250static MachineBasicBlock::iterator
251nextIfDebug(MachineBasicBlock::iterator I,
252 MachineBasicBlock::const_iterator End) {
253 // Cast the return value to nonconst MachineInstr, then cast to an
254 // instr_iterator, which does not check for null, finally return a
255 // bundle_iterator.
256 return MachineBasicBlock::instr_iterator(
257 const_cast<MachineInstr*>(
258 &*nextIfDebug(MachineBasicBlock::const_iterator(I), End)));
259}
260
Andrew Trickdc4c1ad2013-09-24 17:11:19 +0000261/// Instantiate a ScheduleDAGInstrs that will be owned by the caller.
Andrew Trick978674b2013-09-20 05:14:41 +0000262ScheduleDAGInstrs *MachineScheduler::createMachineScheduler() {
263 // Select the scheduler, or set the default.
264 MachineSchedRegistry::ScheduleDAGCtor Ctor = MachineSchedOpt;
265 if (Ctor != useDefaultMachineSched)
266 return Ctor(this);
267
268 // Get the default scheduler set by the target for this function.
269 ScheduleDAGInstrs *Scheduler = PassConfig->createMachineScheduler(this);
270 if (Scheduler)
271 return Scheduler;
272
273 // Default to GenericScheduler.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000274 return createGenericSchedLive(this);
Andrew Trick978674b2013-09-20 05:14:41 +0000275}
276
Andrew Trick17080b92013-12-28 21:56:51 +0000277/// Instantiate a ScheduleDAGInstrs for PostRA scheduling that will be owned by
278/// the caller. We don't have a command line option to override the postRA
279/// scheduler. The Target must configure it.
280ScheduleDAGInstrs *PostMachineScheduler::createPostMachineScheduler() {
281 // Get the postRA scheduler set by the target for this function.
282 ScheduleDAGInstrs *Scheduler = PassConfig->createPostMachineScheduler(this);
283 if (Scheduler)
284 return Scheduler;
285
286 // Default to GenericScheduler.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000287 return createGenericSchedPostRA(this);
Andrew Trick17080b92013-12-28 21:56:51 +0000288}
289
Andrew Trick72515be2012-03-14 04:00:38 +0000290/// Top-level MachineScheduler pass driver.
291///
292/// Visit blocks in function order. Divide each block into scheduling regions
Andrew Trick8823dec2012-03-14 04:00:41 +0000293/// and visit them bottom-up. Visiting regions bottom-up is not required, but is
294/// consistent with the DAG builder, which traverses the interior of the
295/// scheduling regions bottom-up.
Andrew Trick72515be2012-03-14 04:00:38 +0000296///
297/// This design avoids exposing scheduling boundaries to the DAG builder,
Andrew Trick8823dec2012-03-14 04:00:41 +0000298/// simplifying the DAG builder's support for "special" target instructions.
299/// At the same time the design allows target schedulers to operate across
Andrew Trick72515be2012-03-14 04:00:38 +0000300/// scheduling boundaries, for example to bundle the boudary instructions
301/// without reordering them. This creates complexity, because the target
302/// scheduler must update the RegionBegin and RegionEnd positions cached by
303/// ScheduleDAGInstrs whenever adding or removing instructions. A much simpler
304/// design would be to split blocks at scheduling boundaries, but LLVM has a
305/// general bias against block splitting purely for implementation simplicity.
Andrew Tricke1c034f2012-01-17 06:55:03 +0000306bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) {
Andrew Trickc5d70082012-05-10 21:06:21 +0000307 DEBUG(dbgs() << "Before MISsched:\n"; mf.print(dbgs()));
308
Andrew Tricke77e84e2012-01-13 06:30:30 +0000309 // Initialize the context of the pass.
310 MF = &mf;
311 MLI = &getAnalysis<MachineLoopInfo>();
312 MDT = &getAnalysis<MachineDominatorTree>();
Andrew Trick45300682012-03-09 00:52:20 +0000313 PassConfig = &getAnalysis<TargetPassConfig>();
Andrew Trick02a80da2012-03-08 01:41:12 +0000314 AA = &getAnalysis<AliasAnalysis>();
315
Lang Hamesad33d5a2012-01-27 22:36:19 +0000316 LIS = &getAnalysis<LiveIntervals>();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000317
Andrew Trick48f2a722013-03-08 05:40:34 +0000318 if (VerifyScheduling) {
Andrew Trick97064962013-07-25 07:26:26 +0000319 DEBUG(LIS->dump());
Andrew Trick48f2a722013-03-08 05:40:34 +0000320 MF->verify(this, "Before machine scheduling.");
321 }
Andrew Trick4d4b5462012-04-24 20:36:19 +0000322 RegClassInfo->runOnMachineFunction(*MF);
Andrew Trick88639922012-04-24 17:56:43 +0000323
Andrew Trick978674b2013-09-20 05:14:41 +0000324 // Instantiate the selected scheduler for this target, function, and
325 // optimization level.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000326 std::unique_ptr<ScheduleDAGInstrs> Scheduler(createMachineScheduler());
Andrew Trickd7f890e2013-12-28 21:56:47 +0000327 scheduleRegions(*Scheduler);
328
329 DEBUG(LIS->dump());
330 if (VerifyScheduling)
331 MF->verify(this, "After machine scheduling.");
332 return true;
333}
334
Andrew Trick17080b92013-12-28 21:56:51 +0000335bool PostMachineScheduler::runOnMachineFunction(MachineFunction &mf) {
Paul Robinson7c99ec52014-03-31 17:43:35 +0000336 if (skipOptnoneFunction(*mf.getFunction()))
337 return false;
338
Andrew Trick8d2ee372014-06-04 07:06:27 +0000339 const TargetSubtargetInfo &ST =
340 mf.getTarget().getSubtarget<TargetSubtargetInfo>();
341 if (!ST.enablePostMachineScheduler()) {
342 DEBUG(dbgs() << "Subtarget disables post-MI-sched.\n");
343 return false;
344 }
Andrew Trick17080b92013-12-28 21:56:51 +0000345 DEBUG(dbgs() << "Before post-MI-sched:\n"; mf.print(dbgs()));
346
347 // Initialize the context of the pass.
348 MF = &mf;
349 PassConfig = &getAnalysis<TargetPassConfig>();
350
351 if (VerifyScheduling)
352 MF->verify(this, "Before post machine scheduling.");
353
354 // Instantiate the selected scheduler for this target, function, and
355 // optimization level.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000356 std::unique_ptr<ScheduleDAGInstrs> Scheduler(createPostMachineScheduler());
Andrew Trick17080b92013-12-28 21:56:51 +0000357 scheduleRegions(*Scheduler);
358
359 if (VerifyScheduling)
360 MF->verify(this, "After post machine scheduling.");
361 return true;
362}
363
Andrew Trickd14d7c22013-12-28 21:56:57 +0000364/// Return true of the given instruction should not be included in a scheduling
365/// region.
366///
367/// MachineScheduler does not currently support scheduling across calls. To
368/// handle calls, the DAG builder needs to be modified to create register
369/// anti/output dependencies on the registers clobbered by the call's regmask
370/// operand. In PreRA scheduling, the stack pointer adjustment already prevents
371/// scheduling across calls. In PostRA scheduling, we need the isCall to enforce
372/// the boundary, but there would be no benefit to postRA scheduling across
373/// calls this late anyway.
374static bool isSchedBoundary(MachineBasicBlock::iterator MI,
375 MachineBasicBlock *MBB,
376 MachineFunction *MF,
377 const TargetInstrInfo *TII,
378 bool IsPostRA) {
379 return MI->isCall() || TII->isSchedulingBoundary(MI, MBB, *MF);
380}
381
Andrew Trickd7f890e2013-12-28 21:56:47 +0000382/// Main driver for both MachineScheduler and PostMachineScheduler.
383void MachineSchedulerBase::scheduleRegions(ScheduleDAGInstrs &Scheduler) {
Eric Christopherfc6de422014-08-05 02:39:49 +0000384 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
Andrew Trickd14d7c22013-12-28 21:56:57 +0000385 bool IsPostRA = Scheduler.isPostRA();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000386
387 // Visit all machine basic blocks.
Andrew Trick88639922012-04-24 17:56:43 +0000388 //
389 // TODO: Visit blocks in global postorder or postorder within the bottom-up
390 // loop tree. Then we can optionally compute global RegPressure.
Andrew Tricke77e84e2012-01-13 06:30:30 +0000391 for (MachineFunction::iterator MBB = MF->begin(), MBBEnd = MF->end();
392 MBB != MBBEnd; ++MBB) {
393
Andrew Trickd7f890e2013-12-28 21:56:47 +0000394 Scheduler.startBlock(MBB);
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000395
Andrew Trick33e05d72013-12-28 21:57:02 +0000396#ifndef NDEBUG
397 if (SchedOnlyFunc.getNumOccurrences() && SchedOnlyFunc != MF->getName())
398 continue;
399 if (SchedOnlyBlock.getNumOccurrences()
400 && (int)SchedOnlyBlock != MBB->getNumber())
401 continue;
402#endif
403
Andrew Trick7e120f42012-01-14 02:17:09 +0000404 // Break the block into scheduling regions [I, RegionEnd), and schedule each
Sylvestre Ledru35521e22012-07-23 08:51:15 +0000405 // region as soon as it is discovered. RegionEnd points the scheduling
Andrew Trickaf1bee72012-03-09 22:34:56 +0000406 // boundary at the bottom of the region. The DAG does not include RegionEnd,
407 // but the region does (i.e. the next RegionEnd is above the previous
408 // RegionBegin). If the current block has no terminator then RegionEnd ==
409 // MBB->end() for the bottom region.
410 //
411 // The Scheduler may insert instructions during either schedule() or
412 // exitRegion(), even for empty regions. So the local iterators 'I' and
413 // 'RegionEnd' are invalid across these calls.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000414 //
415 // MBB::size() uses instr_iterator to count. Here we need a bundle to count
416 // as a single instruction.
417 unsigned RemainingInstrs = std::distance(MBB->begin(), MBB->end());
Andrew Tricka21daf72012-03-09 03:46:39 +0000418 for(MachineBasicBlock::iterator RegionEnd = MBB->end();
Andrew Trickd7f890e2013-12-28 21:56:47 +0000419 RegionEnd != MBB->begin(); RegionEnd = Scheduler.begin()) {
Andrew Trick88639922012-04-24 17:56:43 +0000420
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000421 // Avoid decrementing RegionEnd for blocks with no terminator.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000422 if (RegionEnd != MBB->end() ||
423 isSchedBoundary(std::prev(RegionEnd), MBB, MF, TII, IsPostRA)) {
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000424 --RegionEnd;
425 // Count the boundary instruction.
Andrew Trick4d1fa712012-11-06 07:10:34 +0000426 --RemainingInstrs;
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000427 }
428
Andrew Trick7e120f42012-01-14 02:17:09 +0000429 // The next region starts above the previous region. Look backward in the
430 // instruction stream until we find the nearest boundary.
Andrew Tricka53e1012013-08-23 17:48:33 +0000431 unsigned NumRegionInstrs = 0;
Andrew Trick7e120f42012-01-14 02:17:09 +0000432 MachineBasicBlock::iterator I = RegionEnd;
Andrea Di Biagiod65fd9f2014-12-12 15:09:58 +0000433 for(;I != MBB->begin(); --I, --RemainingInstrs) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000434 if (isSchedBoundary(std::prev(I), MBB, MF, TII, IsPostRA))
Andrew Trick7e120f42012-01-14 02:17:09 +0000435 break;
Andrea Di Biagiod65fd9f2014-12-12 15:09:58 +0000436 if (!I->isDebugValue())
437 ++NumRegionInstrs;
Andrew Trick7e120f42012-01-14 02:17:09 +0000438 }
Andrew Trick60cf03e2012-03-07 05:21:52 +0000439 // Notify the scheduler of the region, even if we may skip scheduling
440 // it. Perhaps it still needs to be bundled.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000441 Scheduler.enterRegion(MBB, I, RegionEnd, NumRegionInstrs);
Andrew Trick60cf03e2012-03-07 05:21:52 +0000442
443 // Skip empty scheduling regions (0 or 1 schedulable instructions).
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000444 if (I == RegionEnd || I == std::prev(RegionEnd)) {
Andrew Trick60cf03e2012-03-07 05:21:52 +0000445 // Close the current region. Bundle the terminator if needed.
Andrew Trickaf1bee72012-03-09 22:34:56 +0000446 // This invalidates 'RegionEnd' and 'I'.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000447 Scheduler.exitRegion();
Andrew Trick7ccdc5c2012-01-17 06:55:07 +0000448 continue;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000449 }
Andrew Trickd14d7c22013-12-28 21:56:57 +0000450 DEBUG(dbgs() << "********** " << ((Scheduler.isPostRA()) ? "PostRA " : "")
451 << "MI Scheduling **********\n");
Craig Toppera538d832012-08-22 06:07:19 +0000452 DEBUG(dbgs() << MF->getName()
Andrew Trick54b2ce32013-01-25 07:45:31 +0000453 << ":BB#" << MBB->getNumber() << " " << MBB->getName()
454 << "\n From: " << *I << " To: ";
Andrew Tricke57583a2012-02-08 02:17:21 +0000455 if (RegionEnd != MBB->end()) dbgs() << *RegionEnd;
456 else dbgs() << "End";
Andrew Tricka53e1012013-08-23 17:48:33 +0000457 dbgs() << " RegionInstrs: " << NumRegionInstrs
458 << " Remaining: " << RemainingInstrs << "\n");
Gerolf Hoflehnerb5220dc2014-08-07 21:49:44 +0000459 if (DumpCriticalPathLength) {
460 errs() << MF->getName();
461 errs() << ":BB# " << MBB->getNumber();
462 errs() << " " << MBB->getName() << " \n";
463 }
Andrew Trick7ccdc5c2012-01-17 06:55:07 +0000464
Andrew Trick1c0ec452012-03-09 03:46:42 +0000465 // Schedule a region: possibly reorder instructions.
Andrew Trickaf1bee72012-03-09 22:34:56 +0000466 // This invalidates 'RegionEnd' and 'I'.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000467 Scheduler.schedule();
Andrew Trick1c0ec452012-03-09 03:46:42 +0000468
469 // Close the current region.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000470 Scheduler.exitRegion();
Andrew Trick60cf03e2012-03-07 05:21:52 +0000471
472 // Scheduling has invalidated the current iterator 'I'. Ask the
473 // scheduler for the top of it's scheduled region.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000474 RegionEnd = Scheduler.begin();
Andrew Trick7e120f42012-01-14 02:17:09 +0000475 }
Andrew Trick4d1fa712012-11-06 07:10:34 +0000476 assert(RemainingInstrs == 0 && "Instruction count mismatch!");
Andrew Trickd7f890e2013-12-28 21:56:47 +0000477 Scheduler.finishBlock();
Andrew Trickd14d7c22013-12-28 21:56:57 +0000478 if (Scheduler.isPostRA()) {
479 // FIXME: Ideally, no further passes should rely on kill flags. However,
480 // thumb2 size reduction is currently an exception.
481 Scheduler.fixupKills(MBB);
482 }
Andrew Tricke77e84e2012-01-13 06:30:30 +0000483 }
Andrew Trickd7f890e2013-12-28 21:56:47 +0000484 Scheduler.finalizeSchedule();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000485}
486
Andrew Trickd7f890e2013-12-28 21:56:47 +0000487void MachineSchedulerBase::print(raw_ostream &O, const Module* m) const {
Andrew Tricke77e84e2012-01-13 06:30:30 +0000488 // unimplemented
489}
490
Alp Tokerd8d510a2014-07-01 21:19:13 +0000491LLVM_DUMP_METHOD
Andrew Trick7a8e1002012-09-11 00:39:15 +0000492void ReadyQueue::dump() {
Andrew Trickd40d0f22013-06-17 21:45:05 +0000493 dbgs() << Name << ": ";
Andrew Trick7a8e1002012-09-11 00:39:15 +0000494 for (unsigned i = 0, e = Queue.size(); i < e; ++i)
495 dbgs() << Queue[i]->NodeNum << " ";
496 dbgs() << "\n";
497}
Andrew Trick8823dec2012-03-14 04:00:41 +0000498
499//===----------------------------------------------------------------------===//
Andrew Trickd7f890e2013-12-28 21:56:47 +0000500// ScheduleDAGMI - Basic machine instruction scheduling. This is
501// independent of PreRA/PostRA scheduling and involves no extra book-keeping for
502// virtual registers.
503// ===----------------------------------------------------------------------===/
Andrew Trick8823dec2012-03-14 04:00:41 +0000504
David Blaikie422b93d2014-04-21 20:32:32 +0000505// Provide a vtable anchor.
Andrew Trick44f750a2013-01-25 04:01:04 +0000506ScheduleDAGMI::~ScheduleDAGMI() {
Andrew Trick44f750a2013-01-25 04:01:04 +0000507}
508
Andrew Trick85a1d4c2013-04-24 15:54:43 +0000509bool ScheduleDAGMI::canAddEdge(SUnit *SuccSU, SUnit *PredSU) {
510 return SuccSU == &ExitSU || !Topo.IsReachable(PredSU, SuccSU);
511}
512
Andrew Tricka7714a02012-11-12 19:40:10 +0000513bool ScheduleDAGMI::addEdge(SUnit *SuccSU, const SDep &PredDep) {
Andrew Trick263280242012-11-12 19:52:20 +0000514 if (SuccSU != &ExitSU) {
515 // Do not use WillCreateCycle, it assumes SD scheduling.
516 // If Pred is reachable from Succ, then the edge creates a cycle.
517 if (Topo.IsReachable(PredDep.getSUnit(), SuccSU))
518 return false;
519 Topo.AddPred(SuccSU, PredDep.getSUnit());
520 }
Andrew Tricka7714a02012-11-12 19:40:10 +0000521 SuccSU->addPred(PredDep, /*Required=*/!PredDep.isArtificial());
522 // Return true regardless of whether a new edge needed to be inserted.
523 return true;
524}
525
Andrew Trick02a80da2012-03-08 01:41:12 +0000526/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. When
527/// NumPredsLeft reaches zero, release the successor node.
Andrew Trick61f1a272012-05-24 22:11:09 +0000528///
529/// FIXME: Adjust SuccSU height based on MinLatency.
Andrew Trick8823dec2012-03-14 04:00:41 +0000530void ScheduleDAGMI::releaseSucc(SUnit *SU, SDep *SuccEdge) {
Andrew Trick02a80da2012-03-08 01:41:12 +0000531 SUnit *SuccSU = SuccEdge->getSUnit();
532
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000533 if (SuccEdge->isWeak()) {
534 --SuccSU->WeakPredsLeft;
Andrew Tricka7714a02012-11-12 19:40:10 +0000535 if (SuccEdge->isCluster())
536 NextClusterSucc = SuccSU;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000537 return;
538 }
Andrew Trick02a80da2012-03-08 01:41:12 +0000539#ifndef NDEBUG
540 if (SuccSU->NumPredsLeft == 0) {
541 dbgs() << "*** Scheduling failed! ***\n";
542 SuccSU->dump(this);
543 dbgs() << " has been released too many times!\n";
Craig Topperc0196b12014-04-14 00:51:57 +0000544 llvm_unreachable(nullptr);
Andrew Trick02a80da2012-03-08 01:41:12 +0000545 }
546#endif
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000547 // SU->TopReadyCycle was set to CurrCycle when it was scheduled. However,
548 // CurrCycle may have advanced since then.
549 if (SuccSU->TopReadyCycle < SU->TopReadyCycle + SuccEdge->getLatency())
550 SuccSU->TopReadyCycle = SU->TopReadyCycle + SuccEdge->getLatency();
551
Andrew Trick02a80da2012-03-08 01:41:12 +0000552 --SuccSU->NumPredsLeft;
553 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
Andrew Trick8823dec2012-03-14 04:00:41 +0000554 SchedImpl->releaseTopNode(SuccSU);
Andrew Trick02a80da2012-03-08 01:41:12 +0000555}
556
557/// releaseSuccessors - Call releaseSucc on each of SU's successors.
Andrew Trick8823dec2012-03-14 04:00:41 +0000558void ScheduleDAGMI::releaseSuccessors(SUnit *SU) {
Andrew Trick02a80da2012-03-08 01:41:12 +0000559 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
560 I != E; ++I) {
561 releaseSucc(SU, &*I);
562 }
563}
564
Andrew Trick8823dec2012-03-14 04:00:41 +0000565/// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. When
566/// NumSuccsLeft reaches zero, release the predecessor node.
Andrew Trick61f1a272012-05-24 22:11:09 +0000567///
568/// FIXME: Adjust PredSU height based on MinLatency.
Andrew Trick8823dec2012-03-14 04:00:41 +0000569void ScheduleDAGMI::releasePred(SUnit *SU, SDep *PredEdge) {
570 SUnit *PredSU = PredEdge->getSUnit();
571
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000572 if (PredEdge->isWeak()) {
573 --PredSU->WeakSuccsLeft;
Andrew Tricka7714a02012-11-12 19:40:10 +0000574 if (PredEdge->isCluster())
575 NextClusterPred = PredSU;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000576 return;
577 }
Andrew Trick8823dec2012-03-14 04:00:41 +0000578#ifndef NDEBUG
579 if (PredSU->NumSuccsLeft == 0) {
580 dbgs() << "*** Scheduling failed! ***\n";
581 PredSU->dump(this);
582 dbgs() << " has been released too many times!\n";
Craig Topperc0196b12014-04-14 00:51:57 +0000583 llvm_unreachable(nullptr);
Andrew Trick8823dec2012-03-14 04:00:41 +0000584 }
585#endif
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000586 // SU->BotReadyCycle was set to CurrCycle when it was scheduled. However,
587 // CurrCycle may have advanced since then.
588 if (PredSU->BotReadyCycle < SU->BotReadyCycle + PredEdge->getLatency())
589 PredSU->BotReadyCycle = SU->BotReadyCycle + PredEdge->getLatency();
590
Andrew Trick8823dec2012-03-14 04:00:41 +0000591 --PredSU->NumSuccsLeft;
592 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU)
593 SchedImpl->releaseBottomNode(PredSU);
594}
595
596/// releasePredecessors - Call releasePred on each of SU's predecessors.
597void ScheduleDAGMI::releasePredecessors(SUnit *SU) {
598 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
599 I != E; ++I) {
600 releasePred(SU, &*I);
601 }
602}
603
Andrew Trickd7f890e2013-12-28 21:56:47 +0000604/// enterRegion - Called back from MachineScheduler::runOnMachineFunction after
605/// crossing a scheduling boundary. [begin, end) includes all instructions in
606/// the region, including the boundary itself and single-instruction regions
607/// that don't get scheduled.
608void ScheduleDAGMI::enterRegion(MachineBasicBlock *bb,
609 MachineBasicBlock::iterator begin,
610 MachineBasicBlock::iterator end,
611 unsigned regioninstrs)
612{
613 ScheduleDAGInstrs::enterRegion(bb, begin, end, regioninstrs);
614
615 SchedImpl->initPolicy(begin, end, regioninstrs);
616}
617
Andrew Tricke833e1c2013-04-13 06:07:40 +0000618/// This is normally called from the main scheduler loop but may also be invoked
619/// by the scheduling strategy to perform additional code motion.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000620void ScheduleDAGMI::moveInstruction(
621 MachineInstr *MI, MachineBasicBlock::iterator InsertPos) {
Andrew Trick463b2f12012-05-17 18:35:03 +0000622 // Advance RegionBegin if the first instruction moves down.
Andrew Trick54f7def2012-03-21 04:12:10 +0000623 if (&*RegionBegin == MI)
Andrew Trick463b2f12012-05-17 18:35:03 +0000624 ++RegionBegin;
625
626 // Update the instruction stream.
Andrew Trick8823dec2012-03-14 04:00:41 +0000627 BB->splice(InsertPos, BB, MI);
Andrew Trick463b2f12012-05-17 18:35:03 +0000628
629 // Update LiveIntervals
Andrew Trickd7f890e2013-12-28 21:56:47 +0000630 if (LIS)
631 LIS->handleMove(MI, /*UpdateFlags=*/true);
Andrew Trick463b2f12012-05-17 18:35:03 +0000632
633 // Recede RegionBegin if an instruction moves above the first.
Andrew Trick8823dec2012-03-14 04:00:41 +0000634 if (RegionBegin == InsertPos)
635 RegionBegin = MI;
636}
637
Andrew Trickde670c02012-03-21 04:12:07 +0000638bool ScheduleDAGMI::checkSchedLimit() {
639#ifndef NDEBUG
640 if (NumInstrsScheduled == MISchedCutoff && MISchedCutoff != ~0U) {
641 CurrentTop = CurrentBottom;
642 return false;
643 }
644 ++NumInstrsScheduled;
645#endif
646 return true;
647}
648
Andrew Trickd7f890e2013-12-28 21:56:47 +0000649/// Per-region scheduling driver, called back from
650/// MachineScheduler::runOnMachineFunction. This is a simplified driver that
651/// does not consider liveness or register pressure. It is useful for PostRA
652/// scheduling and potentially other custom schedulers.
653void ScheduleDAGMI::schedule() {
654 // Build the DAG.
655 buildSchedGraph(AA);
656
657 Topo.InitDAGTopologicalSorting();
658
659 postprocessDAG();
660
661 SmallVector<SUnit*, 8> TopRoots, BotRoots;
662 findRootsAndBiasEdges(TopRoots, BotRoots);
663
664 // Initialize the strategy before modifying the DAG.
665 // This may initialize a DFSResult to be used for queue priority.
666 SchedImpl->initialize(this);
667
668 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
669 SUnits[su].dumpAll(this));
670 if (ViewMISchedDAGs) viewGraph();
671
672 // Initialize ready queues now that the DAG and priority data are finalized.
673 initQueues(TopRoots, BotRoots);
674
675 bool IsTopNode = false;
676 while (SUnit *SU = SchedImpl->pickNode(IsTopNode)) {
677 assert(!SU->isScheduled && "Node already scheduled");
678 if (!checkSchedLimit())
679 break;
680
681 MachineInstr *MI = SU->getInstr();
682 if (IsTopNode) {
683 assert(SU->isTopReady() && "node still has unscheduled dependencies");
684 if (&*CurrentTop == MI)
685 CurrentTop = nextIfDebug(++CurrentTop, CurrentBottom);
686 else
687 moveInstruction(MI, CurrentTop);
688 }
689 else {
690 assert(SU->isBottomReady() && "node still has unscheduled dependencies");
691 MachineBasicBlock::iterator priorII =
692 priorNonDebug(CurrentBottom, CurrentTop);
693 if (&*priorII == MI)
694 CurrentBottom = priorII;
695 else {
696 if (&*CurrentTop == MI)
697 CurrentTop = nextIfDebug(++CurrentTop, priorII);
698 moveInstruction(MI, CurrentBottom);
699 CurrentBottom = MI;
700 }
701 }
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000702 // Notify the scheduling strategy before updating the DAG.
Andrew Trick491e34a2014-06-12 22:36:28 +0000703 // This sets the scheduled node's ReadyCycle to CurrCycle. When updateQueues
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000704 // runs, it can then use the accurate ReadyCycle time to determine whether
705 // newly released nodes can move to the readyQ.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000706 SchedImpl->schedNode(SU, IsTopNode);
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000707
708 updateQueues(SU, IsTopNode);
Andrew Trickd7f890e2013-12-28 21:56:47 +0000709 }
710 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone.");
711
712 placeDebugValues();
713
714 DEBUG({
715 unsigned BBNum = begin()->getParent()->getNumber();
716 dbgs() << "*** Final schedule for BB#" << BBNum << " ***\n";
717 dumpSchedule();
718 dbgs() << '\n';
719 });
720}
721
722/// Apply each ScheduleDAGMutation step in order.
723void ScheduleDAGMI::postprocessDAG() {
724 for (unsigned i = 0, e = Mutations.size(); i < e; ++i) {
725 Mutations[i]->apply(this);
726 }
727}
728
729void ScheduleDAGMI::
730findRootsAndBiasEdges(SmallVectorImpl<SUnit*> &TopRoots,
731 SmallVectorImpl<SUnit*> &BotRoots) {
732 for (std::vector<SUnit>::iterator
733 I = SUnits.begin(), E = SUnits.end(); I != E; ++I) {
734 SUnit *SU = &(*I);
735 assert(!SU->isBoundaryNode() && "Boundary node should not be in SUnits");
736
737 // Order predecessors so DFSResult follows the critical path.
738 SU->biasCriticalPath();
739
740 // A SUnit is ready to top schedule if it has no predecessors.
741 if (!I->NumPredsLeft)
742 TopRoots.push_back(SU);
743 // A SUnit is ready to bottom schedule if it has no successors.
744 if (!I->NumSuccsLeft)
745 BotRoots.push_back(SU);
746 }
747 ExitSU.biasCriticalPath();
748}
749
750/// Identify DAG roots and setup scheduler queues.
751void ScheduleDAGMI::initQueues(ArrayRef<SUnit*> TopRoots,
752 ArrayRef<SUnit*> BotRoots) {
Craig Topperc0196b12014-04-14 00:51:57 +0000753 NextClusterSucc = nullptr;
754 NextClusterPred = nullptr;
Andrew Trickd7f890e2013-12-28 21:56:47 +0000755
756 // Release all DAG roots for scheduling, not including EntrySU/ExitSU.
757 //
758 // Nodes with unreleased weak edges can still be roots.
759 // Release top roots in forward order.
760 for (SmallVectorImpl<SUnit*>::const_iterator
761 I = TopRoots.begin(), E = TopRoots.end(); I != E; ++I) {
762 SchedImpl->releaseTopNode(*I);
763 }
764 // Release bottom roots in reverse order so the higher priority nodes appear
765 // first. This is more natural and slightly more efficient.
766 for (SmallVectorImpl<SUnit*>::const_reverse_iterator
767 I = BotRoots.rbegin(), E = BotRoots.rend(); I != E; ++I) {
768 SchedImpl->releaseBottomNode(*I);
769 }
770
771 releaseSuccessors(&EntrySU);
772 releasePredecessors(&ExitSU);
773
774 SchedImpl->registerRoots();
775
776 // Advance past initial DebugValues.
777 CurrentTop = nextIfDebug(RegionBegin, RegionEnd);
778 CurrentBottom = RegionEnd;
779}
780
781/// Update scheduler queues after scheduling an instruction.
782void ScheduleDAGMI::updateQueues(SUnit *SU, bool IsTopNode) {
783 // Release dependent instructions for scheduling.
784 if (IsTopNode)
785 releaseSuccessors(SU);
786 else
787 releasePredecessors(SU);
788
789 SU->isScheduled = true;
790}
791
792/// Reinsert any remaining debug_values, just like the PostRA scheduler.
793void ScheduleDAGMI::placeDebugValues() {
794 // If first instruction was a DBG_VALUE then put it back.
795 if (FirstDbgValue) {
796 BB->splice(RegionBegin, BB, FirstDbgValue);
797 RegionBegin = FirstDbgValue;
798 }
799
800 for (std::vector<std::pair<MachineInstr *, MachineInstr *> >::iterator
801 DI = DbgValues.end(), DE = DbgValues.begin(); DI != DE; --DI) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000802 std::pair<MachineInstr *, MachineInstr *> P = *std::prev(DI);
Andrew Trickd7f890e2013-12-28 21:56:47 +0000803 MachineInstr *DbgValue = P.first;
804 MachineBasicBlock::iterator OrigPrevMI = P.second;
805 if (&*RegionBegin == DbgValue)
806 ++RegionBegin;
807 BB->splice(++OrigPrevMI, BB, DbgValue);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000808 if (OrigPrevMI == std::prev(RegionEnd))
Andrew Trickd7f890e2013-12-28 21:56:47 +0000809 RegionEnd = DbgValue;
810 }
811 DbgValues.clear();
Craig Topperc0196b12014-04-14 00:51:57 +0000812 FirstDbgValue = nullptr;
Andrew Trickd7f890e2013-12-28 21:56:47 +0000813}
814
815#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
816void ScheduleDAGMI::dumpSchedule() const {
817 for (MachineBasicBlock::iterator MI = begin(), ME = end(); MI != ME; ++MI) {
818 if (SUnit *SU = getSUnit(&(*MI)))
819 SU->dump(this);
820 else
821 dbgs() << "Missing SUnit\n";
822 }
823}
824#endif
825
826//===----------------------------------------------------------------------===//
827// ScheduleDAGMILive - Base class for MachineInstr scheduling with LiveIntervals
828// preservation.
829//===----------------------------------------------------------------------===//
830
831ScheduleDAGMILive::~ScheduleDAGMILive() {
832 delete DFSResult;
833}
834
Andrew Trick88639922012-04-24 17:56:43 +0000835/// enterRegion - Called back from MachineScheduler::runOnMachineFunction after
836/// crossing a scheduling boundary. [begin, end) includes all instructions in
837/// the region, including the boundary itself and single-instruction regions
838/// that don't get scheduled.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000839void ScheduleDAGMILive::enterRegion(MachineBasicBlock *bb,
Andrew Trick88639922012-04-24 17:56:43 +0000840 MachineBasicBlock::iterator begin,
841 MachineBasicBlock::iterator end,
Andrew Tricka53e1012013-08-23 17:48:33 +0000842 unsigned regioninstrs)
Andrew Trick88639922012-04-24 17:56:43 +0000843{
Andrew Trickd7f890e2013-12-28 21:56:47 +0000844 // ScheduleDAGMI initializes SchedImpl's per-region policy.
845 ScheduleDAGMI::enterRegion(bb, begin, end, regioninstrs);
Andrew Trick4add42f2012-05-10 21:06:10 +0000846
847 // For convenience remember the end of the liveness region.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000848 LiveRegionEnd = (RegionEnd == bb->end()) ? RegionEnd : std::next(RegionEnd);
Andrew Trick75e411c2013-09-06 17:32:34 +0000849
Andrew Trickb248b4a2013-09-06 17:32:47 +0000850 SUPressureDiffs.clear();
851
Andrew Trick75e411c2013-09-06 17:32:34 +0000852 ShouldTrackPressure = SchedImpl->shouldTrackPressure();
Andrew Trick4add42f2012-05-10 21:06:10 +0000853}
854
855// Setup the register pressure trackers for the top scheduled top and bottom
856// scheduled regions.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000857void ScheduleDAGMILive::initRegPressure() {
Andrew Trick4add42f2012-05-10 21:06:10 +0000858 TopRPTracker.init(&MF, RegClassInfo, LIS, BB, RegionBegin);
859 BotRPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd);
860
861 // Close the RPTracker to finalize live ins.
862 RPTracker.closeRegion();
863
Andrew Trick9c17eab2013-07-30 19:59:12 +0000864 DEBUG(RPTracker.dump());
Andrew Trick79d3eec2012-05-24 22:11:14 +0000865
Andrew Trick4add42f2012-05-10 21:06:10 +0000866 // Initialize the live ins and live outs.
867 TopRPTracker.addLiveRegs(RPTracker.getPressure().LiveInRegs);
868 BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs);
869
870 // Close one end of the tracker so we can call
871 // getMaxUpward/DownwardPressureDelta before advancing across any
872 // instructions. This converts currently live regs into live ins/outs.
873 TopRPTracker.closeTop();
874 BotRPTracker.closeBottom();
875
Andrew Trick9c17eab2013-07-30 19:59:12 +0000876 BotRPTracker.initLiveThru(RPTracker);
877 if (!BotRPTracker.getLiveThru().empty()) {
878 TopRPTracker.initLiveThru(BotRPTracker.getLiveThru());
879 DEBUG(dbgs() << "Live Thru: ";
880 dumpRegSetPressure(BotRPTracker.getLiveThru(), TRI));
881 };
882
Andrew Trick2bc74c22013-08-30 04:36:57 +0000883 // For each live out vreg reduce the pressure change associated with other
884 // uses of the same vreg below the live-out reaching def.
885 updatePressureDiffs(RPTracker.getPressure().LiveOutRegs);
886
Andrew Trick4add42f2012-05-10 21:06:10 +0000887 // Account for liveness generated by the region boundary.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000888 if (LiveRegionEnd != RegionEnd) {
889 SmallVector<unsigned, 8> LiveUses;
890 BotRPTracker.recede(&LiveUses);
891 updatePressureDiffs(LiveUses);
892 }
Andrew Trick4add42f2012-05-10 21:06:10 +0000893
894 assert(BotRPTracker.getPos() == RegionEnd && "Can't find the region bottom");
Andrew Trick22025772012-05-17 18:35:10 +0000895
896 // Cache the list of excess pressure sets in this region. This will also track
897 // the max pressure in the scheduled code for these sets.
898 RegionCriticalPSets.clear();
Jakub Staszakc641ada2013-01-25 21:44:27 +0000899 const std::vector<unsigned> &RegionPressure =
900 RPTracker.getPressure().MaxSetPressure;
Andrew Trick22025772012-05-17 18:35:10 +0000901 for (unsigned i = 0, e = RegionPressure.size(); i < e; ++i) {
Andrew Trick736dd9a2013-06-21 18:32:58 +0000902 unsigned Limit = RegClassInfo->getRegPressureSetLimit(i);
Andrew Trickb55db582013-06-21 18:33:01 +0000903 if (RegionPressure[i] > Limit) {
904 DEBUG(dbgs() << TRI->getRegPressureSetName(i)
905 << " Limit " << Limit
906 << " Actual " << RegionPressure[i] << "\n");
Andrew Trick1a831342013-08-30 03:49:48 +0000907 RegionCriticalPSets.push_back(PressureChange(i));
Andrew Trickb55db582013-06-21 18:33:01 +0000908 }
Andrew Trick22025772012-05-17 18:35:10 +0000909 }
910 DEBUG(dbgs() << "Excess PSets: ";
911 for (unsigned i = 0, e = RegionCriticalPSets.size(); i != e; ++i)
912 dbgs() << TRI->getRegPressureSetName(
Andrew Trick1a831342013-08-30 03:49:48 +0000913 RegionCriticalPSets[i].getPSet()) << " ";
Andrew Trick22025772012-05-17 18:35:10 +0000914 dbgs() << "\n");
915}
916
Andrew Trickd7f890e2013-12-28 21:56:47 +0000917void ScheduleDAGMILive::
Andrew Trickb248b4a2013-09-06 17:32:47 +0000918updateScheduledPressure(const SUnit *SU,
919 const std::vector<unsigned> &NewMaxPressure) {
920 const PressureDiff &PDiff = getPressureDiff(SU);
921 unsigned CritIdx = 0, CritEnd = RegionCriticalPSets.size();
922 for (PressureDiff::const_iterator I = PDiff.begin(), E = PDiff.end();
923 I != E; ++I) {
924 if (!I->isValid())
925 break;
926 unsigned ID = I->getPSet();
927 while (CritIdx != CritEnd && RegionCriticalPSets[CritIdx].getPSet() < ID)
928 ++CritIdx;
929 if (CritIdx != CritEnd && RegionCriticalPSets[CritIdx].getPSet() == ID) {
930 if ((int)NewMaxPressure[ID] > RegionCriticalPSets[CritIdx].getUnitInc()
931 && NewMaxPressure[ID] <= INT16_MAX)
932 RegionCriticalPSets[CritIdx].setUnitInc(NewMaxPressure[ID]);
933 }
934 unsigned Limit = RegClassInfo->getRegPressureSetLimit(ID);
935 if (NewMaxPressure[ID] >= Limit - 2) {
936 DEBUG(dbgs() << " " << TRI->getRegPressureSetName(ID) << ": "
937 << NewMaxPressure[ID] << " > " << Limit << "(+ "
938 << BotRPTracker.getLiveThru()[ID] << " livethru)\n");
939 }
Andrew Trick22025772012-05-17 18:35:10 +0000940 }
Andrew Trick88639922012-04-24 17:56:43 +0000941}
942
Andrew Trick2bc74c22013-08-30 04:36:57 +0000943/// Update the PressureDiff array for liveness after scheduling this
944/// instruction.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000945void ScheduleDAGMILive::updatePressureDiffs(ArrayRef<unsigned> LiveUses) {
Andrew Trick2bc74c22013-08-30 04:36:57 +0000946 for (unsigned LUIdx = 0, LUEnd = LiveUses.size(); LUIdx != LUEnd; ++LUIdx) {
947 /// FIXME: Currently assuming single-use physregs.
948 unsigned Reg = LiveUses[LUIdx];
Andrew Trickffdbefb2013-09-06 17:32:39 +0000949 DEBUG(dbgs() << " LiveReg: " << PrintVRegOrUnit(Reg, TRI) << "\n");
Andrew Trick2bc74c22013-08-30 04:36:57 +0000950 if (!TRI->isVirtualRegister(Reg))
951 continue;
Andrew Trickffdbefb2013-09-06 17:32:39 +0000952
Andrew Trick2bc74c22013-08-30 04:36:57 +0000953 // This may be called before CurrentBottom has been initialized. However,
954 // BotRPTracker must have a valid position. We want the value live into the
955 // instruction or live out of the block, so ask for the previous
956 // instruction's live-out.
957 const LiveInterval &LI = LIS->getInterval(Reg);
958 VNInfo *VNI;
Andrew Trick2c4f8b72013-08-31 05:17:58 +0000959 MachineBasicBlock::const_iterator I =
960 nextIfDebug(BotRPTracker.getPos(), BB->end());
961 if (I == BB->end())
Andrew Trick2bc74c22013-08-30 04:36:57 +0000962 VNI = LI.getVNInfoBefore(LIS->getMBBEndIdx(BB));
963 else {
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000964 LiveQueryResult LRQ = LI.Query(LIS->getInstructionIndex(I));
Andrew Trick2bc74c22013-08-30 04:36:57 +0000965 VNI = LRQ.valueIn();
966 }
967 // RegisterPressureTracker guarantees that readsReg is true for LiveUses.
968 assert(VNI && "No live value at use.");
969 for (VReg2UseMap::iterator
970 UI = VRegUses.find(Reg); UI != VRegUses.end(); ++UI) {
971 SUnit *SU = UI->SU;
Andrew Trickffdbefb2013-09-06 17:32:39 +0000972 DEBUG(dbgs() << " UpdateRegP: SU(" << SU->NodeNum << ") "
973 << *SU->getInstr());
Andrew Trick2bc74c22013-08-30 04:36:57 +0000974 // If this use comes before the reaching def, it cannot be a last use, so
975 // descrease its pressure change.
976 if (!SU->isScheduled && SU != &ExitSU) {
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000977 LiveQueryResult LRQ
978 = LI.Query(LIS->getInstructionIndex(SU->getInstr()));
Andrew Trick2bc74c22013-08-30 04:36:57 +0000979 if (LRQ.valueIn() == VNI)
980 getPressureDiff(SU).addPressureChange(Reg, true, &MRI);
981 }
982 }
983 }
984}
985
Andrew Trick8823dec2012-03-14 04:00:41 +0000986/// schedule - Called back from MachineScheduler::runOnMachineFunction
Andrew Trick88639922012-04-24 17:56:43 +0000987/// after setting up the current scheduling region. [RegionBegin, RegionEnd)
988/// only includes instructions that have DAG nodes, not scheduling boundaries.
Andrew Trick7a8e1002012-09-11 00:39:15 +0000989///
990/// This is a skeletal driver, with all the functionality pushed into helpers,
991/// so that it can be easilly extended by experimental schedulers. Generally,
992/// implementing MachineSchedStrategy should be sufficient to implement a new
993/// scheduling algorithm. However, if a scheduler further subclasses
Andrew Trickd7f890e2013-12-28 21:56:47 +0000994/// ScheduleDAGMILive then it will want to override this virtual method in order
995/// to update any specialized state.
996void ScheduleDAGMILive::schedule() {
Andrew Trick7a8e1002012-09-11 00:39:15 +0000997 buildDAGWithRegPressure();
998
Andrew Tricka7714a02012-11-12 19:40:10 +0000999 Topo.InitDAGTopologicalSorting();
1000
Andrew Tricka2733e92012-09-14 17:22:42 +00001001 postprocessDAG();
1002
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001003 SmallVector<SUnit*, 8> TopRoots, BotRoots;
1004 findRootsAndBiasEdges(TopRoots, BotRoots);
1005
1006 // Initialize the strategy before modifying the DAG.
1007 // This may initialize a DFSResult to be used for queue priority.
1008 SchedImpl->initialize(this);
1009
Andrew Trick7a8e1002012-09-11 00:39:15 +00001010 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
1011 SUnits[su].dumpAll(this));
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001012 if (ViewMISchedDAGs) viewGraph();
Andrew Trick7a8e1002012-09-11 00:39:15 +00001013
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001014 // Initialize ready queues now that the DAG and priority data are finalized.
1015 initQueues(TopRoots, BotRoots);
Andrew Trick7a8e1002012-09-11 00:39:15 +00001016
Andrew Trickd7f890e2013-12-28 21:56:47 +00001017 if (ShouldTrackPressure) {
1018 assert(TopRPTracker.getPos() == RegionBegin && "bad initial Top tracker");
1019 TopRPTracker.setPos(CurrentTop);
1020 }
1021
Andrew Trick7a8e1002012-09-11 00:39:15 +00001022 bool IsTopNode = false;
1023 while (SUnit *SU = SchedImpl->pickNode(IsTopNode)) {
Andrew Trick984d98b2012-10-08 18:53:53 +00001024 assert(!SU->isScheduled && "Node already scheduled");
Andrew Trick7a8e1002012-09-11 00:39:15 +00001025 if (!checkSchedLimit())
1026 break;
1027
1028 scheduleMI(SU, IsTopNode);
1029
1030 updateQueues(SU, IsTopNode);
Andrew Trickd7f890e2013-12-28 21:56:47 +00001031
1032 if (DFSResult) {
1033 unsigned SubtreeID = DFSResult->getSubtreeID(SU);
1034 if (!ScheduledTrees.test(SubtreeID)) {
1035 ScheduledTrees.set(SubtreeID);
1036 DFSResult->scheduleTree(SubtreeID);
1037 SchedImpl->scheduleTree(SubtreeID);
1038 }
1039 }
1040
1041 // Notify the scheduling strategy after updating the DAG.
1042 SchedImpl->schedNode(SU, IsTopNode);
Andrew Trick7a8e1002012-09-11 00:39:15 +00001043 }
1044 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone.");
1045
1046 placeDebugValues();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001047
1048 DEBUG({
Andrew Trickcf7e6972012-11-28 03:42:47 +00001049 unsigned BBNum = begin()->getParent()->getNumber();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001050 dbgs() << "*** Final schedule for BB#" << BBNum << " ***\n";
1051 dumpSchedule();
1052 dbgs() << '\n';
1053 });
Andrew Trick7a8e1002012-09-11 00:39:15 +00001054}
1055
1056/// Build the DAG and setup three register pressure trackers.
Andrew Trickd7f890e2013-12-28 21:56:47 +00001057void ScheduleDAGMILive::buildDAGWithRegPressure() {
Andrew Trickb6e74712013-09-04 20:59:59 +00001058 if (!ShouldTrackPressure) {
1059 RPTracker.reset();
1060 RegionCriticalPSets.clear();
1061 buildSchedGraph(AA);
1062 return;
1063 }
1064
Andrew Trick4add42f2012-05-10 21:06:10 +00001065 // Initialize the register pressure tracker used by buildSchedGraph.
Andrew Trick9c17eab2013-07-30 19:59:12 +00001066 RPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd,
1067 /*TrackUntiedDefs=*/true);
Andrew Trick88639922012-04-24 17:56:43 +00001068
Andrew Trick4add42f2012-05-10 21:06:10 +00001069 // Account for liveness generate by the region boundary.
1070 if (LiveRegionEnd != RegionEnd)
1071 RPTracker.recede();
1072
1073 // Build the DAG, and compute current register pressure.
Andrew Trick1a831342013-08-30 03:49:48 +00001074 buildSchedGraph(AA, &RPTracker, &SUPressureDiffs);
Andrew Trick02a80da2012-03-08 01:41:12 +00001075
Andrew Trick4add42f2012-05-10 21:06:10 +00001076 // Initialize top/bottom trackers after computing region pressure.
1077 initRegPressure();
Andrew Trick7a8e1002012-09-11 00:39:15 +00001078}
Andrew Trick4add42f2012-05-10 21:06:10 +00001079
Andrew Trickd7f890e2013-12-28 21:56:47 +00001080void ScheduleDAGMILive::computeDFSResult() {
Andrew Trick44f750a2013-01-25 04:01:04 +00001081 if (!DFSResult)
1082 DFSResult = new SchedDFSResult(/*BottomU*/true, MinSubtreeSize);
1083 DFSResult->clear();
Andrew Trick44f750a2013-01-25 04:01:04 +00001084 ScheduledTrees.clear();
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001085 DFSResult->resize(SUnits.size());
1086 DFSResult->compute(SUnits);
Andrew Trick44f750a2013-01-25 04:01:04 +00001087 ScheduledTrees.resize(DFSResult->getNumSubtrees());
1088}
1089
Andrew Trick483f4192013-08-29 18:04:49 +00001090/// Compute the max cyclic critical path through the DAG. The scheduling DAG
1091/// only provides the critical path for single block loops. To handle loops that
1092/// span blocks, we could use the vreg path latencies provided by
1093/// MachineTraceMetrics instead. However, MachineTraceMetrics is not currently
1094/// available for use in the scheduler.
1095///
1096/// The cyclic path estimation identifies a def-use pair that crosses the back
Andrew Trickef80f502013-08-30 02:02:12 +00001097/// edge and considers the depth and height of the nodes. For example, consider
Andrew Trick483f4192013-08-29 18:04:49 +00001098/// the following instruction sequence where each instruction has unit latency
1099/// and defines an epomymous virtual register:
1100///
1101/// a->b(a,c)->c(b)->d(c)->exit
1102///
1103/// The cyclic critical path is a two cycles: b->c->b
1104/// The acyclic critical path is four cycles: a->b->c->d->exit
1105/// LiveOutHeight = height(c) = len(c->d->exit) = 2
1106/// LiveOutDepth = depth(c) + 1 = len(a->b->c) + 1 = 3
1107/// LiveInHeight = height(b) + 1 = len(b->c->d->exit) + 1 = 4
1108/// LiveInDepth = depth(b) = len(a->b) = 1
1109///
1110/// LiveOutDepth - LiveInDepth = 3 - 1 = 2
1111/// LiveInHeight - LiveOutHeight = 4 - 2 = 2
1112/// CyclicCriticalPath = min(2, 2) = 2
Andrew Trickd7f890e2013-12-28 21:56:47 +00001113///
1114/// This could be relevant to PostRA scheduling, but is currently implemented
1115/// assuming LiveIntervals.
1116unsigned ScheduleDAGMILive::computeCyclicCriticalPath() {
Andrew Trick483f4192013-08-29 18:04:49 +00001117 // This only applies to single block loop.
1118 if (!BB->isSuccessor(BB))
1119 return 0;
1120
1121 unsigned MaxCyclicLatency = 0;
1122 // Visit each live out vreg def to find def/use pairs that cross iterations.
1123 ArrayRef<unsigned> LiveOuts = RPTracker.getPressure().LiveOutRegs;
1124 for (ArrayRef<unsigned>::iterator RI = LiveOuts.begin(), RE = LiveOuts.end();
1125 RI != RE; ++RI) {
1126 unsigned Reg = *RI;
1127 if (!TRI->isVirtualRegister(Reg))
1128 continue;
1129 const LiveInterval &LI = LIS->getInterval(Reg);
1130 const VNInfo *DefVNI = LI.getVNInfoBefore(LIS->getMBBEndIdx(BB));
1131 if (!DefVNI)
1132 continue;
1133
1134 MachineInstr *DefMI = LIS->getInstructionFromIndex(DefVNI->def);
1135 const SUnit *DefSU = getSUnit(DefMI);
1136 if (!DefSU)
1137 continue;
1138
1139 unsigned LiveOutHeight = DefSU->getHeight();
1140 unsigned LiveOutDepth = DefSU->getDepth() + DefSU->Latency;
1141 // Visit all local users of the vreg def.
1142 for (VReg2UseMap::iterator
1143 UI = VRegUses.find(Reg); UI != VRegUses.end(); ++UI) {
1144 if (UI->SU == &ExitSU)
1145 continue;
1146
1147 // Only consider uses of the phi.
Matthias Braun88dd0ab2013-10-10 21:28:52 +00001148 LiveQueryResult LRQ =
1149 LI.Query(LIS->getInstructionIndex(UI->SU->getInstr()));
Andrew Trick483f4192013-08-29 18:04:49 +00001150 if (!LRQ.valueIn()->isPHIDef())
1151 continue;
1152
1153 // Assume that a path spanning two iterations is a cycle, which could
1154 // overestimate in strange cases. This allows cyclic latency to be
1155 // estimated as the minimum slack of the vreg's depth or height.
1156 unsigned CyclicLatency = 0;
1157 if (LiveOutDepth > UI->SU->getDepth())
1158 CyclicLatency = LiveOutDepth - UI->SU->getDepth();
1159
1160 unsigned LiveInHeight = UI->SU->getHeight() + DefSU->Latency;
1161 if (LiveInHeight > LiveOutHeight) {
1162 if (LiveInHeight - LiveOutHeight < CyclicLatency)
1163 CyclicLatency = LiveInHeight - LiveOutHeight;
1164 }
1165 else
1166 CyclicLatency = 0;
1167
1168 DEBUG(dbgs() << "Cyclic Path: SU(" << DefSU->NodeNum << ") -> SU("
1169 << UI->SU->NodeNum << ") = " << CyclicLatency << "c\n");
1170 if (CyclicLatency > MaxCyclicLatency)
1171 MaxCyclicLatency = CyclicLatency;
1172 }
1173 }
1174 DEBUG(dbgs() << "Cyclic Critical Path: " << MaxCyclicLatency << "c\n");
1175 return MaxCyclicLatency;
1176}
1177
Andrew Trick7a8e1002012-09-11 00:39:15 +00001178/// Move an instruction and update register pressure.
Andrew Trickd7f890e2013-12-28 21:56:47 +00001179void ScheduleDAGMILive::scheduleMI(SUnit *SU, bool IsTopNode) {
Andrew Trick7a8e1002012-09-11 00:39:15 +00001180 // Move the instruction to its new location in the instruction stream.
1181 MachineInstr *MI = SU->getInstr();
Andrew Trick02a80da2012-03-08 01:41:12 +00001182
Andrew Trick7a8e1002012-09-11 00:39:15 +00001183 if (IsTopNode) {
1184 assert(SU->isTopReady() && "node still has unscheduled dependencies");
1185 if (&*CurrentTop == MI)
1186 CurrentTop = nextIfDebug(++CurrentTop, CurrentBottom);
Andrew Trick8823dec2012-03-14 04:00:41 +00001187 else {
Andrew Trick7a8e1002012-09-11 00:39:15 +00001188 moveInstruction(MI, CurrentTop);
1189 TopRPTracker.setPos(MI);
Andrew Trick8823dec2012-03-14 04:00:41 +00001190 }
Andrew Trickc3ea0052012-04-24 18:04:37 +00001191
Andrew Trickb6e74712013-09-04 20:59:59 +00001192 if (ShouldTrackPressure) {
1193 // Update top scheduled pressure.
1194 TopRPTracker.advance();
1195 assert(TopRPTracker.getPos() == CurrentTop && "out of sync");
Andrew Trickb248b4a2013-09-06 17:32:47 +00001196 updateScheduledPressure(SU, TopRPTracker.getPressure().MaxSetPressure);
Andrew Trickb6e74712013-09-04 20:59:59 +00001197 }
Andrew Trick7a8e1002012-09-11 00:39:15 +00001198 }
1199 else {
1200 assert(SU->isBottomReady() && "node still has unscheduled dependencies");
1201 MachineBasicBlock::iterator priorII =
1202 priorNonDebug(CurrentBottom, CurrentTop);
1203 if (&*priorII == MI)
1204 CurrentBottom = priorII;
1205 else {
1206 if (&*CurrentTop == MI) {
1207 CurrentTop = nextIfDebug(++CurrentTop, priorII);
1208 TopRPTracker.setPos(CurrentTop);
1209 }
1210 moveInstruction(MI, CurrentBottom);
1211 CurrentBottom = MI;
1212 }
Andrew Trickb6e74712013-09-04 20:59:59 +00001213 if (ShouldTrackPressure) {
1214 // Update bottom scheduled pressure.
1215 SmallVector<unsigned, 8> LiveUses;
1216 BotRPTracker.recede(&LiveUses);
1217 assert(BotRPTracker.getPos() == CurrentBottom && "out of sync");
Andrew Trickb248b4a2013-09-06 17:32:47 +00001218 updateScheduledPressure(SU, BotRPTracker.getPressure().MaxSetPressure);
Andrew Trickb6e74712013-09-04 20:59:59 +00001219 updatePressureDiffs(LiveUses);
Andrew Trickb6e74712013-09-04 20:59:59 +00001220 }
Andrew Trick7a8e1002012-09-11 00:39:15 +00001221 }
1222}
1223
Andrew Trick263280242012-11-12 19:52:20 +00001224//===----------------------------------------------------------------------===//
1225// LoadClusterMutation - DAG post-processing to cluster loads.
1226//===----------------------------------------------------------------------===//
1227
Andrew Tricka7714a02012-11-12 19:40:10 +00001228namespace {
1229/// \brief Post-process the DAG to create cluster edges between neighboring
1230/// loads.
1231class LoadClusterMutation : public ScheduleDAGMutation {
1232 struct LoadInfo {
1233 SUnit *SU;
1234 unsigned BaseReg;
1235 unsigned Offset;
1236 LoadInfo(SUnit *su, unsigned reg, unsigned ofs)
1237 : SU(su), BaseReg(reg), Offset(ofs) {}
Benjamin Kramerb0f74b22014-03-07 21:35:39 +00001238
1239 bool operator<(const LoadInfo &RHS) const {
1240 return std::tie(BaseReg, Offset) < std::tie(RHS.BaseReg, RHS.Offset);
1241 }
Andrew Tricka7714a02012-11-12 19:40:10 +00001242 };
Andrew Tricka7714a02012-11-12 19:40:10 +00001243
1244 const TargetInstrInfo *TII;
1245 const TargetRegisterInfo *TRI;
1246public:
1247 LoadClusterMutation(const TargetInstrInfo *tii,
1248 const TargetRegisterInfo *tri)
1249 : TII(tii), TRI(tri) {}
1250
Craig Topper4584cd52014-03-07 09:26:03 +00001251 void apply(ScheduleDAGMI *DAG) override;
Andrew Tricka7714a02012-11-12 19:40:10 +00001252protected:
1253 void clusterNeighboringLoads(ArrayRef<SUnit*> Loads, ScheduleDAGMI *DAG);
1254};
1255} // anonymous
1256
Andrew Tricka7714a02012-11-12 19:40:10 +00001257void LoadClusterMutation::clusterNeighboringLoads(ArrayRef<SUnit*> Loads,
1258 ScheduleDAGMI *DAG) {
1259 SmallVector<LoadClusterMutation::LoadInfo,32> LoadRecords;
1260 for (unsigned Idx = 0, End = Loads.size(); Idx != End; ++Idx) {
1261 SUnit *SU = Loads[Idx];
1262 unsigned BaseReg;
1263 unsigned Offset;
1264 if (TII->getLdStBaseRegImmOfs(SU->getInstr(), BaseReg, Offset, TRI))
1265 LoadRecords.push_back(LoadInfo(SU, BaseReg, Offset));
1266 }
1267 if (LoadRecords.size() < 2)
1268 return;
Benjamin Kramerb0f74b22014-03-07 21:35:39 +00001269 std::sort(LoadRecords.begin(), LoadRecords.end());
Andrew Tricka7714a02012-11-12 19:40:10 +00001270 unsigned ClusterLength = 1;
1271 for (unsigned Idx = 0, End = LoadRecords.size(); Idx < (End - 1); ++Idx) {
1272 if (LoadRecords[Idx].BaseReg != LoadRecords[Idx+1].BaseReg) {
1273 ClusterLength = 1;
1274 continue;
1275 }
1276
1277 SUnit *SUa = LoadRecords[Idx].SU;
1278 SUnit *SUb = LoadRecords[Idx+1].SU;
Andrew Trickec369d52012-11-12 21:28:10 +00001279 if (TII->shouldClusterLoads(SUa->getInstr(), SUb->getInstr(), ClusterLength)
Andrew Tricka7714a02012-11-12 19:40:10 +00001280 && DAG->addEdge(SUb, SDep(SUa, SDep::Cluster))) {
1281
1282 DEBUG(dbgs() << "Cluster loads SU(" << SUa->NodeNum << ") - SU("
1283 << SUb->NodeNum << ")\n");
1284 // Copy successor edges from SUa to SUb. Interleaving computation
1285 // dependent on SUa can prevent load combining due to register reuse.
1286 // Predecessor edges do not need to be copied from SUb to SUa since nearby
1287 // loads should have effectively the same inputs.
1288 for (SUnit::const_succ_iterator
1289 SI = SUa->Succs.begin(), SE = SUa->Succs.end(); SI != SE; ++SI) {
1290 if (SI->getSUnit() == SUb)
1291 continue;
1292 DEBUG(dbgs() << " Copy Succ SU(" << SI->getSUnit()->NodeNum << ")\n");
1293 DAG->addEdge(SI->getSUnit(), SDep(SUb, SDep::Artificial));
1294 }
1295 ++ClusterLength;
1296 }
1297 else
1298 ClusterLength = 1;
1299 }
1300}
1301
1302/// \brief Callback from DAG postProcessing to create cluster edges for loads.
1303void LoadClusterMutation::apply(ScheduleDAGMI *DAG) {
1304 // Map DAG NodeNum to store chain ID.
1305 DenseMap<unsigned, unsigned> StoreChainIDs;
1306 // Map each store chain to a set of dependent loads.
1307 SmallVector<SmallVector<SUnit*,4>, 32> StoreChainDependents;
1308 for (unsigned Idx = 0, End = DAG->SUnits.size(); Idx != End; ++Idx) {
1309 SUnit *SU = &DAG->SUnits[Idx];
1310 if (!SU->getInstr()->mayLoad())
1311 continue;
1312 unsigned ChainPredID = DAG->SUnits.size();
1313 for (SUnit::const_pred_iterator
1314 PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) {
1315 if (PI->isCtrl()) {
1316 ChainPredID = PI->getSUnit()->NodeNum;
1317 break;
1318 }
1319 }
1320 // Check if this chain-like pred has been seen
1321 // before. ChainPredID==MaxNodeID for loads at the top of the schedule.
1322 unsigned NumChains = StoreChainDependents.size();
1323 std::pair<DenseMap<unsigned, unsigned>::iterator, bool> Result =
1324 StoreChainIDs.insert(std::make_pair(ChainPredID, NumChains));
1325 if (Result.second)
1326 StoreChainDependents.resize(NumChains + 1);
1327 StoreChainDependents[Result.first->second].push_back(SU);
1328 }
1329 // Iterate over the store chains.
1330 for (unsigned Idx = 0, End = StoreChainDependents.size(); Idx != End; ++Idx)
1331 clusterNeighboringLoads(StoreChainDependents[Idx], DAG);
1332}
1333
Andrew Trick02a80da2012-03-08 01:41:12 +00001334//===----------------------------------------------------------------------===//
Andrew Trick263280242012-11-12 19:52:20 +00001335// MacroFusion - DAG post-processing to encourage fusion of macro ops.
1336//===----------------------------------------------------------------------===//
1337
1338namespace {
1339/// \brief Post-process the DAG to create cluster edges between instructions
1340/// that may be fused by the processor into a single operation.
1341class MacroFusion : public ScheduleDAGMutation {
1342 const TargetInstrInfo *TII;
1343public:
1344 MacroFusion(const TargetInstrInfo *tii): TII(tii) {}
1345
Craig Topper4584cd52014-03-07 09:26:03 +00001346 void apply(ScheduleDAGMI *DAG) override;
Andrew Trick263280242012-11-12 19:52:20 +00001347};
1348} // anonymous
1349
1350/// \brief Callback from DAG postProcessing to create cluster edges to encourage
1351/// fused operations.
1352void MacroFusion::apply(ScheduleDAGMI *DAG) {
1353 // For now, assume targets can only fuse with the branch.
1354 MachineInstr *Branch = DAG->ExitSU.getInstr();
1355 if (!Branch)
1356 return;
1357
1358 for (unsigned Idx = DAG->SUnits.size(); Idx > 0;) {
1359 SUnit *SU = &DAG->SUnits[--Idx];
1360 if (!TII->shouldScheduleAdjacent(SU->getInstr(), Branch))
1361 continue;
1362
1363 // Create a single weak edge from SU to ExitSU. The only effect is to cause
1364 // bottom-up scheduling to heavily prioritize the clustered SU. There is no
1365 // need to copy predecessor edges from ExitSU to SU, since top-down
1366 // scheduling cannot prioritize ExitSU anyway. To defer top-down scheduling
1367 // of SU, we could create an artificial edge from the deepest root, but it
1368 // hasn't been needed yet.
1369 bool Success = DAG->addEdge(&DAG->ExitSU, SDep(SU, SDep::Cluster));
1370 (void)Success;
1371 assert(Success && "No DAG nodes should be reachable from ExitSU");
1372
1373 DEBUG(dbgs() << "Macro Fuse SU(" << SU->NodeNum << ")\n");
1374 break;
1375 }
1376}
1377
1378//===----------------------------------------------------------------------===//
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001379// CopyConstrain - DAG post-processing to encourage copy elimination.
1380//===----------------------------------------------------------------------===//
1381
1382namespace {
1383/// \brief Post-process the DAG to create weak edges from all uses of a copy to
1384/// the one use that defines the copy's source vreg, most likely an induction
1385/// variable increment.
1386class CopyConstrain : public ScheduleDAGMutation {
1387 // Transient state.
1388 SlotIndex RegionBeginIdx;
Andrew Trick2e875172013-04-24 23:19:56 +00001389 // RegionEndIdx is the slot index of the last non-debug instruction in the
1390 // scheduling region. So we may have RegionBeginIdx == RegionEndIdx.
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001391 SlotIndex RegionEndIdx;
1392public:
1393 CopyConstrain(const TargetInstrInfo *, const TargetRegisterInfo *) {}
1394
Craig Topper4584cd52014-03-07 09:26:03 +00001395 void apply(ScheduleDAGMI *DAG) override;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001396
1397protected:
Andrew Trickd7f890e2013-12-28 21:56:47 +00001398 void constrainLocalCopy(SUnit *CopySU, ScheduleDAGMILive *DAG);
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001399};
1400} // anonymous
1401
1402/// constrainLocalCopy handles two possibilities:
1403/// 1) Local src:
1404/// I0: = dst
1405/// I1: src = ...
1406/// I2: = dst
1407/// I3: dst = src (copy)
1408/// (create pred->succ edges I0->I1, I2->I1)
1409///
1410/// 2) Local copy:
1411/// I0: dst = src (copy)
1412/// I1: = dst
1413/// I2: src = ...
1414/// I3: = dst
1415/// (create pred->succ edges I1->I2, I3->I2)
1416///
1417/// Although the MachineScheduler is currently constrained to single blocks,
1418/// this algorithm should handle extended blocks. An EBB is a set of
1419/// contiguously numbered blocks such that the previous block in the EBB is
1420/// always the single predecessor.
Andrew Trickd7f890e2013-12-28 21:56:47 +00001421void CopyConstrain::constrainLocalCopy(SUnit *CopySU, ScheduleDAGMILive *DAG) {
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001422 LiveIntervals *LIS = DAG->getLIS();
1423 MachineInstr *Copy = CopySU->getInstr();
1424
1425 // Check for pure vreg copies.
1426 unsigned SrcReg = Copy->getOperand(1).getReg();
1427 if (!TargetRegisterInfo::isVirtualRegister(SrcReg))
1428 return;
1429
1430 unsigned DstReg = Copy->getOperand(0).getReg();
1431 if (!TargetRegisterInfo::isVirtualRegister(DstReg))
1432 return;
1433
1434 // Check if either the dest or source is local. If it's live across a back
1435 // edge, it's not local. Note that if both vregs are live across the back
1436 // edge, we cannot successfully contrain the copy without cyclic scheduling.
Michael Kuperstein54c61ed2015-01-19 07:30:47 +00001437 // If both the copy's source and dest are local live intervals, then we
1438 // should treat the dest as the global for the purpose of adding
1439 // constraints. This adds edges from source's other uses to the copy.
1440 unsigned LocalReg = SrcReg;
1441 unsigned GlobalReg = DstReg;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001442 LiveInterval *LocalLI = &LIS->getInterval(LocalReg);
1443 if (!LocalLI->isLocal(RegionBeginIdx, RegionEndIdx)) {
Michael Kuperstein54c61ed2015-01-19 07:30:47 +00001444 LocalReg = DstReg;
1445 GlobalReg = SrcReg;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001446 LocalLI = &LIS->getInterval(LocalReg);
1447 if (!LocalLI->isLocal(RegionBeginIdx, RegionEndIdx))
1448 return;
1449 }
1450 LiveInterval *GlobalLI = &LIS->getInterval(GlobalReg);
1451
1452 // Find the global segment after the start of the local LI.
1453 LiveInterval::iterator GlobalSegment = GlobalLI->find(LocalLI->beginIndex());
1454 // If GlobalLI does not overlap LocalLI->start, then a copy directly feeds a
1455 // local live range. We could create edges from other global uses to the local
1456 // start, but the coalescer should have already eliminated these cases, so
1457 // don't bother dealing with it.
1458 if (GlobalSegment == GlobalLI->end())
1459 return;
1460
1461 // If GlobalSegment is killed at the LocalLI->start, the call to find()
1462 // returned the next global segment. But if GlobalSegment overlaps with
1463 // LocalLI->start, then advance to the next segement. If a hole in GlobalLI
1464 // exists in LocalLI's vicinity, GlobalSegment will be the end of the hole.
1465 if (GlobalSegment->contains(LocalLI->beginIndex()))
1466 ++GlobalSegment;
1467
1468 if (GlobalSegment == GlobalLI->end())
1469 return;
1470
1471 // Check if GlobalLI contains a hole in the vicinity of LocalLI.
1472 if (GlobalSegment != GlobalLI->begin()) {
1473 // Two address defs have no hole.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001474 if (SlotIndex::isSameInstr(std::prev(GlobalSegment)->end,
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001475 GlobalSegment->start)) {
1476 return;
1477 }
Andrew Trickd9761772013-07-30 19:59:08 +00001478 // If the prior global segment may be defined by the same two-address
1479 // instruction that also defines LocalLI, then can't make a hole here.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001480 if (SlotIndex::isSameInstr(std::prev(GlobalSegment)->start,
Andrew Trickd9761772013-07-30 19:59:08 +00001481 LocalLI->beginIndex())) {
1482 return;
1483 }
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001484 // If GlobalLI has a prior segment, it must be live into the EBB. Otherwise
1485 // it would be a disconnected component in the live range.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001486 assert(std::prev(GlobalSegment)->start < LocalLI->beginIndex() &&
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001487 "Disconnected LRG within the scheduling region.");
1488 }
1489 MachineInstr *GlobalDef = LIS->getInstructionFromIndex(GlobalSegment->start);
1490 if (!GlobalDef)
1491 return;
1492
1493 SUnit *GlobalSU = DAG->getSUnit(GlobalDef);
1494 if (!GlobalSU)
1495 return;
1496
1497 // GlobalDef is the bottom of the GlobalLI hole. Open the hole by
1498 // constraining the uses of the last local def to precede GlobalDef.
1499 SmallVector<SUnit*,8> LocalUses;
1500 const VNInfo *LastLocalVN = LocalLI->getVNInfoBefore(LocalLI->endIndex());
1501 MachineInstr *LastLocalDef = LIS->getInstructionFromIndex(LastLocalVN->def);
1502 SUnit *LastLocalSU = DAG->getSUnit(LastLocalDef);
1503 for (SUnit::const_succ_iterator
1504 I = LastLocalSU->Succs.begin(), E = LastLocalSU->Succs.end();
1505 I != E; ++I) {
1506 if (I->getKind() != SDep::Data || I->getReg() != LocalReg)
1507 continue;
1508 if (I->getSUnit() == GlobalSU)
1509 continue;
1510 if (!DAG->canAddEdge(GlobalSU, I->getSUnit()))
1511 return;
1512 LocalUses.push_back(I->getSUnit());
1513 }
1514 // Open the top of the GlobalLI hole by constraining any earlier global uses
1515 // to precede the start of LocalLI.
1516 SmallVector<SUnit*,8> GlobalUses;
1517 MachineInstr *FirstLocalDef =
1518 LIS->getInstructionFromIndex(LocalLI->beginIndex());
1519 SUnit *FirstLocalSU = DAG->getSUnit(FirstLocalDef);
1520 for (SUnit::const_pred_iterator
1521 I = GlobalSU->Preds.begin(), E = GlobalSU->Preds.end(); I != E; ++I) {
1522 if (I->getKind() != SDep::Anti || I->getReg() != GlobalReg)
1523 continue;
1524 if (I->getSUnit() == FirstLocalSU)
1525 continue;
1526 if (!DAG->canAddEdge(FirstLocalSU, I->getSUnit()))
1527 return;
1528 GlobalUses.push_back(I->getSUnit());
1529 }
1530 DEBUG(dbgs() << "Constraining copy SU(" << CopySU->NodeNum << ")\n");
1531 // Add the weak edges.
1532 for (SmallVectorImpl<SUnit*>::const_iterator
1533 I = LocalUses.begin(), E = LocalUses.end(); I != E; ++I) {
1534 DEBUG(dbgs() << " Local use SU(" << (*I)->NodeNum << ") -> SU("
1535 << GlobalSU->NodeNum << ")\n");
1536 DAG->addEdge(GlobalSU, SDep(*I, SDep::Weak));
1537 }
1538 for (SmallVectorImpl<SUnit*>::const_iterator
1539 I = GlobalUses.begin(), E = GlobalUses.end(); I != E; ++I) {
1540 DEBUG(dbgs() << " Global use SU(" << (*I)->NodeNum << ") -> SU("
1541 << FirstLocalSU->NodeNum << ")\n");
1542 DAG->addEdge(FirstLocalSU, SDep(*I, SDep::Weak));
1543 }
1544}
1545
1546/// \brief Callback from DAG postProcessing to create weak edges to encourage
1547/// copy elimination.
1548void CopyConstrain::apply(ScheduleDAGMI *DAG) {
Andrew Trickd7f890e2013-12-28 21:56:47 +00001549 assert(DAG->hasVRegLiveness() && "Expect VRegs with LiveIntervals");
1550
Andrew Trick2e875172013-04-24 23:19:56 +00001551 MachineBasicBlock::iterator FirstPos = nextIfDebug(DAG->begin(), DAG->end());
1552 if (FirstPos == DAG->end())
1553 return;
1554 RegionBeginIdx = DAG->getLIS()->getInstructionIndex(&*FirstPos);
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001555 RegionEndIdx = DAG->getLIS()->getInstructionIndex(
1556 &*priorNonDebug(DAG->end(), DAG->begin()));
1557
1558 for (unsigned Idx = 0, End = DAG->SUnits.size(); Idx != End; ++Idx) {
1559 SUnit *SU = &DAG->SUnits[Idx];
1560 if (!SU->getInstr()->isCopy())
1561 continue;
1562
Andrew Trickd7f890e2013-12-28 21:56:47 +00001563 constrainLocalCopy(SU, static_cast<ScheduleDAGMILive*>(DAG));
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001564 }
1565}
1566
1567//===----------------------------------------------------------------------===//
Andrew Trickfc127d12013-12-07 05:59:44 +00001568// MachineSchedStrategy helpers used by GenericScheduler, GenericPostScheduler
1569// and possibly other custom schedulers.
Andrew Trickd14d7c22013-12-28 21:56:57 +00001570//===----------------------------------------------------------------------===//
Andrew Tricke1c034f2012-01-17 06:55:03 +00001571
Andrew Trick5a22df42013-12-05 17:56:02 +00001572static const unsigned InvalidCycle = ~0U;
1573
Andrew Trickfc127d12013-12-07 05:59:44 +00001574SchedBoundary::~SchedBoundary() { delete HazardRec; }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001575
Andrew Trickfc127d12013-12-07 05:59:44 +00001576void SchedBoundary::reset() {
1577 // A new HazardRec is created for each DAG and owned by SchedBoundary.
1578 // Destroying and reconstructing it is very expensive though. So keep
1579 // invalid, placeholder HazardRecs.
1580 if (HazardRec && HazardRec->isEnabled()) {
1581 delete HazardRec;
Craig Topperc0196b12014-04-14 00:51:57 +00001582 HazardRec = nullptr;
Andrew Trickfc127d12013-12-07 05:59:44 +00001583 }
1584 Available.clear();
1585 Pending.clear();
1586 CheckPending = false;
1587 NextSUs.clear();
1588 CurrCycle = 0;
1589 CurrMOps = 0;
1590 MinReadyCycle = UINT_MAX;
1591 ExpectedLatency = 0;
1592 DependentLatency = 0;
1593 RetiredMOps = 0;
1594 MaxExecutedResCount = 0;
1595 ZoneCritResIdx = 0;
1596 IsResourceLimited = false;
1597 ReservedCycles.clear();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001598#ifndef NDEBUG
Andrew Trickd14d7c22013-12-28 21:56:57 +00001599 // Track the maximum number of stall cycles that could arise either from the
1600 // latency of a DAG edge or the number of cycles that a processor resource is
1601 // reserved (SchedBoundary::ReservedCycles).
Andrew Trick7f1ebbe2014-06-07 01:48:43 +00001602 MaxObservedStall = 0;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001603#endif
Andrew Trickfc127d12013-12-07 05:59:44 +00001604 // Reserve a zero-count for invalid CritResIdx.
1605 ExecutedResCounts.resize(1);
1606 assert(!ExecutedResCounts[0] && "nonzero count for bad resource");
1607}
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001608
Andrew Trickfc127d12013-12-07 05:59:44 +00001609void SchedRemainder::
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001610init(ScheduleDAGMI *DAG, const TargetSchedModel *SchedModel) {
1611 reset();
1612 if (!SchedModel->hasInstrSchedModel())
1613 return;
1614 RemainingCounts.resize(SchedModel->getNumProcResourceKinds());
1615 for (std::vector<SUnit>::iterator
1616 I = DAG->SUnits.begin(), E = DAG->SUnits.end(); I != E; ++I) {
1617 const MCSchedClassDesc *SC = DAG->getSchedClass(&*I);
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001618 RemIssueCount += SchedModel->getNumMicroOps(I->getInstr(), SC)
1619 * SchedModel->getMicroOpFactor();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001620 for (TargetSchedModel::ProcResIter
1621 PI = SchedModel->getWriteProcResBegin(SC),
1622 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
1623 unsigned PIdx = PI->ProcResourceIdx;
1624 unsigned Factor = SchedModel->getResourceFactor(PIdx);
1625 RemainingCounts[PIdx] += (Factor * PI->Cycles);
1626 }
1627 }
1628}
1629
Andrew Trickfc127d12013-12-07 05:59:44 +00001630void SchedBoundary::
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001631init(ScheduleDAGMI *dag, const TargetSchedModel *smodel, SchedRemainder *rem) {
1632 reset();
1633 DAG = dag;
1634 SchedModel = smodel;
1635 Rem = rem;
Andrew Trick5a22df42013-12-05 17:56:02 +00001636 if (SchedModel->hasInstrSchedModel()) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001637 ExecutedResCounts.resize(SchedModel->getNumProcResourceKinds());
Andrew Trick5a22df42013-12-05 17:56:02 +00001638 ReservedCycles.resize(SchedModel->getNumProcResourceKinds(), InvalidCycle);
1639 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001640}
1641
Andrew Trick880e5732013-12-05 17:55:58 +00001642/// Compute the stall cycles based on this SUnit's ready time. Heuristics treat
1643/// these "soft stalls" differently than the hard stall cycles based on CPU
1644/// resources and computed by checkHazard(). A fully in-order model
1645/// (MicroOpBufferSize==0) will not make use of this since instructions are not
1646/// available for scheduling until they are ready. However, a weaker in-order
1647/// model may use this for heuristics. For example, if a processor has in-order
1648/// behavior when reading certain resources, this may come into play.
Andrew Trickfc127d12013-12-07 05:59:44 +00001649unsigned SchedBoundary::getLatencyStallCycles(SUnit *SU) {
Andrew Trick880e5732013-12-05 17:55:58 +00001650 if (!SU->isUnbuffered)
1651 return 0;
1652
1653 unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle);
1654 if (ReadyCycle > CurrCycle)
1655 return ReadyCycle - CurrCycle;
1656 return 0;
1657}
1658
Andrew Trick5a22df42013-12-05 17:56:02 +00001659/// Compute the next cycle at which the given processor resource can be
1660/// scheduled.
Andrew Trickfc127d12013-12-07 05:59:44 +00001661unsigned SchedBoundary::
Andrew Trick5a22df42013-12-05 17:56:02 +00001662getNextResourceCycle(unsigned PIdx, unsigned Cycles) {
1663 unsigned NextUnreserved = ReservedCycles[PIdx];
1664 // If this resource has never been used, always return cycle zero.
1665 if (NextUnreserved == InvalidCycle)
1666 return 0;
1667 // For bottom-up scheduling add the cycles needed for the current operation.
1668 if (!isTop())
1669 NextUnreserved += Cycles;
1670 return NextUnreserved;
1671}
1672
Andrew Trick8c9e6722012-06-29 03:23:24 +00001673/// Does this SU have a hazard within the current instruction group.
1674///
1675/// The scheduler supports two modes of hazard recognition. The first is the
1676/// ScheduleHazardRecognizer API. It is a fully general hazard recognizer that
1677/// supports highly complicated in-order reservation tables
1678/// (ScoreboardHazardRecognizer) and arbitraty target-specific logic.
1679///
1680/// The second is a streamlined mechanism that checks for hazards based on
1681/// simple counters that the scheduler itself maintains. It explicitly checks
1682/// for instruction dispatch limitations, including the number of micro-ops that
1683/// can dispatch per cycle.
1684///
1685/// TODO: Also check whether the SU must start a new group.
Andrew Trickfc127d12013-12-07 05:59:44 +00001686bool SchedBoundary::checkHazard(SUnit *SU) {
Andrew Trickd14d7c22013-12-28 21:56:57 +00001687 if (HazardRec->isEnabled()
1688 && HazardRec->getHazardType(SU) != ScheduleHazardRecognizer::NoHazard) {
1689 return true;
1690 }
Andrew Trickdd79f0f2012-10-10 05:43:09 +00001691 unsigned uops = SchedModel->getNumMicroOps(SU->getInstr());
Andrew Tricke2ff5752013-06-15 04:49:49 +00001692 if ((CurrMOps > 0) && (CurrMOps + uops > SchedModel->getIssueWidth())) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001693 DEBUG(dbgs() << " SU(" << SU->NodeNum << ") uops="
1694 << SchedModel->getNumMicroOps(SU->getInstr()) << '\n');
Andrew Trick8c9e6722012-06-29 03:23:24 +00001695 return true;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001696 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001697 if (SchedModel->hasInstrSchedModel() && SU->hasReservedResource) {
1698 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
1699 for (TargetSchedModel::ProcResIter
1700 PI = SchedModel->getWriteProcResBegin(SC),
1701 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
Andrew Trick56327222014-06-27 04:57:05 +00001702 unsigned NRCycle = getNextResourceCycle(PI->ProcResourceIdx, PI->Cycles);
1703 if (NRCycle > CurrCycle) {
Andrew Trick040c0da2014-06-27 05:09:36 +00001704#ifndef NDEBUG
Chad Rosieraba845e2014-07-02 16:46:08 +00001705 MaxObservedStall = std::max(PI->Cycles, MaxObservedStall);
Andrew Trick040c0da2014-06-27 05:09:36 +00001706#endif
Andrew Trick56327222014-06-27 04:57:05 +00001707 DEBUG(dbgs() << " SU(" << SU->NodeNum << ") "
1708 << SchedModel->getResourceName(PI->ProcResourceIdx)
1709 << "=" << NRCycle << "c\n");
Andrew Trick5a22df42013-12-05 17:56:02 +00001710 return true;
Andrew Trick56327222014-06-27 04:57:05 +00001711 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001712 }
1713 }
Andrew Trick8c9e6722012-06-29 03:23:24 +00001714 return false;
1715}
1716
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001717// Find the unscheduled node in ReadySUs with the highest latency.
Andrew Trickfc127d12013-12-07 05:59:44 +00001718unsigned SchedBoundary::
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001719findMaxLatency(ArrayRef<SUnit*> ReadySUs) {
Craig Topperc0196b12014-04-14 00:51:57 +00001720 SUnit *LateSU = nullptr;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001721 unsigned RemLatency = 0;
1722 for (ArrayRef<SUnit*>::iterator I = ReadySUs.begin(), E = ReadySUs.end();
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001723 I != E; ++I) {
1724 unsigned L = getUnscheduledLatency(*I);
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001725 if (L > RemLatency) {
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001726 RemLatency = L;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001727 LateSU = *I;
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001728 }
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001729 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001730 if (LateSU) {
1731 DEBUG(dbgs() << Available.getName() << " RemLatency SU("
1732 << LateSU->NodeNum << ") " << RemLatency << "c\n");
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001733 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001734 return RemLatency;
1735}
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001736
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001737// Count resources in this zone and the remaining unscheduled
1738// instruction. Return the max count, scaled. Set OtherCritIdx to the critical
1739// resource index, or zero if the zone is issue limited.
Andrew Trickfc127d12013-12-07 05:59:44 +00001740unsigned SchedBoundary::
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001741getOtherResourceCount(unsigned &OtherCritIdx) {
Alexey Samsonov64c391d2013-07-19 08:55:18 +00001742 OtherCritIdx = 0;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001743 if (!SchedModel->hasInstrSchedModel())
1744 return 0;
1745
1746 unsigned OtherCritCount = Rem->RemIssueCount
1747 + (RetiredMOps * SchedModel->getMicroOpFactor());
1748 DEBUG(dbgs() << " " << Available.getName() << " + Remain MOps: "
1749 << OtherCritCount / SchedModel->getMicroOpFactor() << '\n');
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001750 for (unsigned PIdx = 1, PEnd = SchedModel->getNumProcResourceKinds();
1751 PIdx != PEnd; ++PIdx) {
1752 unsigned OtherCount = getResourceCount(PIdx) + Rem->RemainingCounts[PIdx];
1753 if (OtherCount > OtherCritCount) {
1754 OtherCritCount = OtherCount;
1755 OtherCritIdx = PIdx;
1756 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001757 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001758 if (OtherCritIdx) {
1759 DEBUG(dbgs() << " " << Available.getName() << " + Remain CritRes: "
1760 << OtherCritCount / SchedModel->getResourceFactor(OtherCritIdx)
Andrew Trickfc127d12013-12-07 05:59:44 +00001761 << " " << SchedModel->getResourceName(OtherCritIdx) << "\n");
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001762 }
1763 return OtherCritCount;
1764}
1765
Andrew Trickfc127d12013-12-07 05:59:44 +00001766void SchedBoundary::releaseNode(SUnit *SU, unsigned ReadyCycle) {
Andrew Trick7f1ebbe2014-06-07 01:48:43 +00001767 assert(SU->getInstr() && "Scheduled SUnit must have instr");
1768
1769#ifndef NDEBUG
Andrew Trick491e34a2014-06-12 22:36:28 +00001770 // ReadyCycle was been bumped up to the CurrCycle when this node was
1771 // scheduled, but CurrCycle may have been eagerly advanced immediately after
1772 // scheduling, so may now be greater than ReadyCycle.
1773 if (ReadyCycle > CurrCycle)
1774 MaxObservedStall = std::max(ReadyCycle - CurrCycle, MaxObservedStall);
Andrew Trick7f1ebbe2014-06-07 01:48:43 +00001775#endif
1776
Andrew Trick61f1a272012-05-24 22:11:09 +00001777 if (ReadyCycle < MinReadyCycle)
1778 MinReadyCycle = ReadyCycle;
1779
1780 // Check for interlocks first. For the purpose of other heuristics, an
1781 // instruction that cannot issue appears as if it's not in the ReadyQueue.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001782 bool IsBuffered = SchedModel->getMicroOpBufferSize() != 0;
1783 if ((!IsBuffered && ReadyCycle > CurrCycle) || checkHazard(SU))
Andrew Trick61f1a272012-05-24 22:11:09 +00001784 Pending.push(SU);
1785 else
1786 Available.push(SU);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001787
1788 // Record this node as an immediate dependent of the scheduled node.
1789 NextSUs.insert(SU);
Andrew Trick61f1a272012-05-24 22:11:09 +00001790}
1791
Andrew Trickfc127d12013-12-07 05:59:44 +00001792void SchedBoundary::releaseTopNode(SUnit *SU) {
1793 if (SU->isScheduled)
1794 return;
1795
Andrew Trickfc127d12013-12-07 05:59:44 +00001796 releaseNode(SU, SU->TopReadyCycle);
1797}
1798
1799void SchedBoundary::releaseBottomNode(SUnit *SU) {
1800 if (SU->isScheduled)
1801 return;
1802
Andrew Trickfc127d12013-12-07 05:59:44 +00001803 releaseNode(SU, SU->BotReadyCycle);
1804}
1805
Andrew Trick61f1a272012-05-24 22:11:09 +00001806/// Move the boundary of scheduled code by one cycle.
Andrew Trickfc127d12013-12-07 05:59:44 +00001807void SchedBoundary::bumpCycle(unsigned NextCycle) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001808 if (SchedModel->getMicroOpBufferSize() == 0) {
1809 assert(MinReadyCycle < UINT_MAX && "MinReadyCycle uninitialized");
1810 if (MinReadyCycle > NextCycle)
1811 NextCycle = MinReadyCycle;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001812 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001813 // Update the current micro-ops, which will issue in the next cycle.
1814 unsigned DecMOps = SchedModel->getIssueWidth() * (NextCycle - CurrCycle);
1815 CurrMOps = (CurrMOps <= DecMOps) ? 0 : CurrMOps - DecMOps;
1816
1817 // Decrement DependentLatency based on the next cycle.
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001818 if ((NextCycle - CurrCycle) > DependentLatency)
1819 DependentLatency = 0;
1820 else
1821 DependentLatency -= (NextCycle - CurrCycle);
Andrew Trick61f1a272012-05-24 22:11:09 +00001822
1823 if (!HazardRec->isEnabled()) {
Andrew Trick45446062012-06-05 21:11:27 +00001824 // Bypass HazardRec virtual calls.
Andrew Trick61f1a272012-05-24 22:11:09 +00001825 CurrCycle = NextCycle;
1826 }
1827 else {
Andrew Trick45446062012-06-05 21:11:27 +00001828 // Bypass getHazardType calls in case of long latency.
Andrew Trick61f1a272012-05-24 22:11:09 +00001829 for (; CurrCycle != NextCycle; ++CurrCycle) {
1830 if (isTop())
1831 HazardRec->AdvanceCycle();
1832 else
1833 HazardRec->RecedeCycle();
1834 }
1835 }
1836 CheckPending = true;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001837 unsigned LFactor = SchedModel->getLatencyFactor();
1838 IsResourceLimited =
1839 (int)(getCriticalCount() - (getScheduledLatency() * LFactor))
1840 > (int)LFactor;
Andrew Trick61f1a272012-05-24 22:11:09 +00001841
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001842 DEBUG(dbgs() << "Cycle: " << CurrCycle << ' ' << Available.getName() << '\n');
1843}
1844
Andrew Trickfc127d12013-12-07 05:59:44 +00001845void SchedBoundary::incExecutedResources(unsigned PIdx, unsigned Count) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001846 ExecutedResCounts[PIdx] += Count;
1847 if (ExecutedResCounts[PIdx] > MaxExecutedResCount)
1848 MaxExecutedResCount = ExecutedResCounts[PIdx];
Andrew Trick61f1a272012-05-24 22:11:09 +00001849}
1850
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001851/// Add the given processor resource to this scheduled zone.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001852///
1853/// \param Cycles indicates the number of consecutive (non-pipelined) cycles
1854/// during which this resource is consumed.
1855///
1856/// \return the next cycle at which the instruction may execute without
1857/// oversubscribing resources.
Andrew Trickfc127d12013-12-07 05:59:44 +00001858unsigned SchedBoundary::
Andrew Trick5a22df42013-12-05 17:56:02 +00001859countResource(unsigned PIdx, unsigned Cycles, unsigned NextCycle) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001860 unsigned Factor = SchedModel->getResourceFactor(PIdx);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001861 unsigned Count = Factor * Cycles;
Andrew Trickfc127d12013-12-07 05:59:44 +00001862 DEBUG(dbgs() << " " << SchedModel->getResourceName(PIdx)
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001863 << " +" << Cycles << "x" << Factor << "u\n");
1864
1865 // Update Executed resources counts.
1866 incExecutedResources(PIdx, Count);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001867 assert(Rem->RemainingCounts[PIdx] >= Count && "resource double counted");
1868 Rem->RemainingCounts[PIdx] -= Count;
1869
Andrew Trickb13ef172013-07-19 00:20:07 +00001870 // Check if this resource exceeds the current critical resource. If so, it
1871 // becomes the critical resource.
1872 if (ZoneCritResIdx != PIdx && (getResourceCount(PIdx) > getCriticalCount())) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001873 ZoneCritResIdx = PIdx;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001874 DEBUG(dbgs() << " *** Critical resource "
Andrew Trickfc127d12013-12-07 05:59:44 +00001875 << SchedModel->getResourceName(PIdx) << ": "
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001876 << getResourceCount(PIdx) / SchedModel->getLatencyFactor() << "c\n");
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001877 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001878 // For reserved resources, record the highest cycle using the resource.
1879 unsigned NextAvailable = getNextResourceCycle(PIdx, Cycles);
1880 if (NextAvailable > CurrCycle) {
1881 DEBUG(dbgs() << " Resource conflict: "
1882 << SchedModel->getProcResource(PIdx)->Name << " reserved until @"
1883 << NextAvailable << "\n");
1884 }
1885 return NextAvailable;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001886}
1887
Andrew Trick45446062012-06-05 21:11:27 +00001888/// Move the boundary of scheduled code by one SUnit.
Andrew Trickfc127d12013-12-07 05:59:44 +00001889void SchedBoundary::bumpNode(SUnit *SU) {
Andrew Trick45446062012-06-05 21:11:27 +00001890 // Update the reservation table.
1891 if (HazardRec->isEnabled()) {
1892 if (!isTop() && SU->isCall) {
1893 // Calls are scheduled with their preceding instructions. For bottom-up
1894 // scheduling, clear the pipeline state before emitting.
1895 HazardRec->Reset();
1896 }
1897 HazardRec->EmitInstruction(SU);
1898 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001899 // checkHazard should prevent scheduling multiple instructions per cycle that
1900 // exceed the issue width.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001901 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
1902 unsigned IncMOps = SchedModel->getNumMicroOps(SU->getInstr());
Daniel Jasper0d92abd2013-12-06 08:58:22 +00001903 assert(
1904 (CurrMOps == 0 || (CurrMOps + IncMOps) <= SchedModel->getIssueWidth()) &&
Andrew Trickf7760a22013-12-06 17:19:20 +00001905 "Cannot schedule this instruction's MicroOps in the current cycle.");
Andrew Trick5a22df42013-12-05 17:56:02 +00001906
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001907 unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle);
1908 DEBUG(dbgs() << " Ready @" << ReadyCycle << "c\n");
1909
Andrew Trick5a22df42013-12-05 17:56:02 +00001910 unsigned NextCycle = CurrCycle;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001911 switch (SchedModel->getMicroOpBufferSize()) {
1912 case 0:
1913 assert(ReadyCycle <= CurrCycle && "Broken PendingQueue");
1914 break;
1915 case 1:
1916 if (ReadyCycle > NextCycle) {
1917 NextCycle = ReadyCycle;
1918 DEBUG(dbgs() << " *** Stall until: " << ReadyCycle << "\n");
1919 }
1920 break;
1921 default:
1922 // We don't currently model the OOO reorder buffer, so consider all
Andrew Trick880e5732013-12-05 17:55:58 +00001923 // scheduled MOps to be "retired". We do loosely model in-order resource
1924 // latency. If this instruction uses an in-order resource, account for any
1925 // likely stall cycles.
1926 if (SU->isUnbuffered && ReadyCycle > NextCycle)
1927 NextCycle = ReadyCycle;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001928 break;
1929 }
1930 RetiredMOps += IncMOps;
1931
1932 // Update resource counts and critical resource.
1933 if (SchedModel->hasInstrSchedModel()) {
1934 unsigned DecRemIssue = IncMOps * SchedModel->getMicroOpFactor();
1935 assert(Rem->RemIssueCount >= DecRemIssue && "MOps double counted");
1936 Rem->RemIssueCount -= DecRemIssue;
1937 if (ZoneCritResIdx) {
1938 // Scale scheduled micro-ops for comparing with the critical resource.
1939 unsigned ScaledMOps =
1940 RetiredMOps * SchedModel->getMicroOpFactor();
1941
1942 // If scaled micro-ops are now more than the previous critical resource by
1943 // a full cycle, then micro-ops issue becomes critical.
1944 if ((int)(ScaledMOps - getResourceCount(ZoneCritResIdx))
1945 >= (int)SchedModel->getLatencyFactor()) {
1946 ZoneCritResIdx = 0;
1947 DEBUG(dbgs() << " *** Critical resource NumMicroOps: "
1948 << ScaledMOps / SchedModel->getLatencyFactor() << "c\n");
1949 }
1950 }
1951 for (TargetSchedModel::ProcResIter
1952 PI = SchedModel->getWriteProcResBegin(SC),
1953 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
1954 unsigned RCycle =
Andrew Trick5a22df42013-12-05 17:56:02 +00001955 countResource(PI->ProcResourceIdx, PI->Cycles, NextCycle);
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001956 if (RCycle > NextCycle)
1957 NextCycle = RCycle;
1958 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001959 if (SU->hasReservedResource) {
1960 // For reserved resources, record the highest cycle using the resource.
1961 // For top-down scheduling, this is the cycle in which we schedule this
1962 // instruction plus the number of cycles the operations reserves the
1963 // resource. For bottom-up is it simply the instruction's cycle.
1964 for (TargetSchedModel::ProcResIter
1965 PI = SchedModel->getWriteProcResBegin(SC),
1966 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
1967 unsigned PIdx = PI->ProcResourceIdx;
Andrew Trickd14d7c22013-12-28 21:56:57 +00001968 if (SchedModel->getProcResource(PIdx)->BufferSize == 0) {
Chad Rosieraba845e2014-07-02 16:46:08 +00001969 if (isTop()) {
1970 ReservedCycles[PIdx] =
1971 std::max(getNextResourceCycle(PIdx, 0), NextCycle + PI->Cycles);
1972 }
1973 else
1974 ReservedCycles[PIdx] = NextCycle;
Andrew Trickd14d7c22013-12-28 21:56:57 +00001975 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001976 }
1977 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001978 }
1979 // Update ExpectedLatency and DependentLatency.
1980 unsigned &TopLatency = isTop() ? ExpectedLatency : DependentLatency;
1981 unsigned &BotLatency = isTop() ? DependentLatency : ExpectedLatency;
1982 if (SU->getDepth() > TopLatency) {
1983 TopLatency = SU->getDepth();
1984 DEBUG(dbgs() << " " << Available.getName()
1985 << " TopLatency SU(" << SU->NodeNum << ") " << TopLatency << "c\n");
1986 }
1987 if (SU->getHeight() > BotLatency) {
1988 BotLatency = SU->getHeight();
1989 DEBUG(dbgs() << " " << Available.getName()
1990 << " BotLatency SU(" << SU->NodeNum << ") " << BotLatency << "c\n");
1991 }
1992 // If we stall for any reason, bump the cycle.
1993 if (NextCycle > CurrCycle) {
1994 bumpCycle(NextCycle);
1995 }
1996 else {
1997 // After updating ZoneCritResIdx and ExpectedLatency, check if we're
Alp Tokercb402912014-01-24 17:20:08 +00001998 // resource limited. If a stall occurred, bumpCycle does this.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001999 unsigned LFactor = SchedModel->getLatencyFactor();
2000 IsResourceLimited =
2001 (int)(getCriticalCount() - (getScheduledLatency() * LFactor))
2002 > (int)LFactor;
2003 }
Andrew Trick5a22df42013-12-05 17:56:02 +00002004 // Update CurrMOps after calling bumpCycle to handle stalls, since bumpCycle
2005 // resets CurrMOps. Loop to handle instructions with more MOps than issue in
2006 // one cycle. Since we commonly reach the max MOps here, opportunistically
2007 // bump the cycle to avoid uselessly checking everything in the readyQ.
2008 CurrMOps += IncMOps;
2009 while (CurrMOps >= SchedModel->getIssueWidth()) {
Andrew Trick5a22df42013-12-05 17:56:02 +00002010 DEBUG(dbgs() << " *** Max MOps " << CurrMOps
2011 << " at cycle " << CurrCycle << '\n');
Andrew Trickd14d7c22013-12-28 21:56:57 +00002012 bumpCycle(++NextCycle);
Andrew Trick5a22df42013-12-05 17:56:02 +00002013 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002014 DEBUG(dumpScheduledState());
Andrew Trick45446062012-06-05 21:11:27 +00002015}
2016
Andrew Trick61f1a272012-05-24 22:11:09 +00002017/// Release pending ready nodes in to the available queue. This makes them
2018/// visible to heuristics.
Andrew Trickfc127d12013-12-07 05:59:44 +00002019void SchedBoundary::releasePending() {
Andrew Trick61f1a272012-05-24 22:11:09 +00002020 // If the available queue is empty, it is safe to reset MinReadyCycle.
2021 if (Available.empty())
2022 MinReadyCycle = UINT_MAX;
2023
2024 // Check to see if any of the pending instructions are ready to issue. If
2025 // so, add them to the available queue.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002026 bool IsBuffered = SchedModel->getMicroOpBufferSize() != 0;
Andrew Trick61f1a272012-05-24 22:11:09 +00002027 for (unsigned i = 0, e = Pending.size(); i != e; ++i) {
2028 SUnit *SU = *(Pending.begin()+i);
Andrew Trick45446062012-06-05 21:11:27 +00002029 unsigned ReadyCycle = isTop() ? SU->TopReadyCycle : SU->BotReadyCycle;
Andrew Trick61f1a272012-05-24 22:11:09 +00002030
2031 if (ReadyCycle < MinReadyCycle)
2032 MinReadyCycle = ReadyCycle;
2033
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002034 if (!IsBuffered && ReadyCycle > CurrCycle)
Andrew Trick61f1a272012-05-24 22:11:09 +00002035 continue;
2036
Andrew Trick8c9e6722012-06-29 03:23:24 +00002037 if (checkHazard(SU))
Andrew Trick61f1a272012-05-24 22:11:09 +00002038 continue;
2039
2040 Available.push(SU);
2041 Pending.remove(Pending.begin()+i);
2042 --i; --e;
2043 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002044 DEBUG(if (!Pending.empty()) Pending.dump());
Andrew Trick61f1a272012-05-24 22:11:09 +00002045 CheckPending = false;
2046}
2047
2048/// Remove SU from the ready set for this boundary.
Andrew Trickfc127d12013-12-07 05:59:44 +00002049void SchedBoundary::removeReady(SUnit *SU) {
Andrew Trick61f1a272012-05-24 22:11:09 +00002050 if (Available.isInQueue(SU))
2051 Available.remove(Available.find(SU));
2052 else {
2053 assert(Pending.isInQueue(SU) && "bad ready count");
2054 Pending.remove(Pending.find(SU));
2055 }
2056}
2057
2058/// If this queue only has one ready candidate, return it. As a side effect,
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002059/// defer any nodes that now hit a hazard, and advance the cycle until at least
2060/// one node is ready. If multiple instructions are ready, return NULL.
Andrew Trickfc127d12013-12-07 05:59:44 +00002061SUnit *SchedBoundary::pickOnlyChoice() {
Andrew Trick61f1a272012-05-24 22:11:09 +00002062 if (CheckPending)
2063 releasePending();
2064
Andrew Tricke2ff5752013-06-15 04:49:49 +00002065 if (CurrMOps > 0) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002066 // Defer any ready instrs that now have a hazard.
2067 for (ReadyQueue::iterator I = Available.begin(); I != Available.end();) {
2068 if (checkHazard(*I)) {
2069 Pending.push(*I);
2070 I = Available.remove(I);
2071 continue;
2072 }
2073 ++I;
2074 }
2075 }
Andrew Trick61f1a272012-05-24 22:11:09 +00002076 for (unsigned i = 0; Available.empty(); ++i) {
Chad Rosieraba845e2014-07-02 16:46:08 +00002077// FIXME: Re-enable assert once PR20057 is resolved.
2078// assert(i <= (HazardRec->getMaxLookAhead() + MaxObservedStall) &&
2079// "permanent hazard");
2080 (void)i;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002081 bumpCycle(CurrCycle + 1);
Andrew Trick61f1a272012-05-24 22:11:09 +00002082 releasePending();
2083 }
2084 if (Available.size() == 1)
2085 return *Available.begin();
Craig Topperc0196b12014-04-14 00:51:57 +00002086 return nullptr;
Andrew Trick61f1a272012-05-24 22:11:09 +00002087}
2088
Andrew Trick8e8415f2013-06-15 05:46:47 +00002089#ifndef NDEBUG
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002090// This is useful information to dump after bumpNode.
2091// Note that the Queue contents are more useful before pickNodeFromQueue.
Andrew Trickfc127d12013-12-07 05:59:44 +00002092void SchedBoundary::dumpScheduledState() {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002093 unsigned ResFactor;
2094 unsigned ResCount;
2095 if (ZoneCritResIdx) {
2096 ResFactor = SchedModel->getResourceFactor(ZoneCritResIdx);
2097 ResCount = getResourceCount(ZoneCritResIdx);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002098 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002099 else {
2100 ResFactor = SchedModel->getMicroOpFactor();
2101 ResCount = RetiredMOps * SchedModel->getMicroOpFactor();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002102 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002103 unsigned LFactor = SchedModel->getLatencyFactor();
2104 dbgs() << Available.getName() << " @" << CurrCycle << "c\n"
2105 << " Retired: " << RetiredMOps;
2106 dbgs() << "\n Executed: " << getExecutedCount() / LFactor << "c";
2107 dbgs() << "\n Critical: " << ResCount / LFactor << "c, "
Andrew Trickfc127d12013-12-07 05:59:44 +00002108 << ResCount / ResFactor << " "
2109 << SchedModel->getResourceName(ZoneCritResIdx)
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002110 << "\n ExpectedLatency: " << ExpectedLatency << "c\n"
2111 << (IsResourceLimited ? " - Resource" : " - Latency")
2112 << " limited.\n";
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002113}
Andrew Trick8e8415f2013-06-15 05:46:47 +00002114#endif
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002115
Andrew Trickfc127d12013-12-07 05:59:44 +00002116//===----------------------------------------------------------------------===//
Andrew Trickd14d7c22013-12-28 21:56:57 +00002117// GenericScheduler - Generic implementation of MachineSchedStrategy.
Andrew Trickfc127d12013-12-07 05:59:44 +00002118//===----------------------------------------------------------------------===//
2119
Andrew Trickd14d7c22013-12-28 21:56:57 +00002120void GenericSchedulerBase::SchedCandidate::
2121initResourceDelta(const ScheduleDAGMI *DAG,
2122 const TargetSchedModel *SchedModel) {
2123 if (!Policy.ReduceResIdx && !Policy.DemandResIdx)
2124 return;
2125
2126 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
2127 for (TargetSchedModel::ProcResIter
2128 PI = SchedModel->getWriteProcResBegin(SC),
2129 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
2130 if (PI->ProcResourceIdx == Policy.ReduceResIdx)
2131 ResDelta.CritResources += PI->Cycles;
2132 if (PI->ProcResourceIdx == Policy.DemandResIdx)
2133 ResDelta.DemandedResources += PI->Cycles;
2134 }
2135}
2136
2137/// Set the CandPolicy given a scheduling zone given the current resources and
2138/// latencies inside and outside the zone.
2139void GenericSchedulerBase::setPolicy(CandPolicy &Policy,
2140 bool IsPostRA,
2141 SchedBoundary &CurrZone,
2142 SchedBoundary *OtherZone) {
2143 // Apply preemptive heuristics based on the the total latency and resources
2144 // inside and outside this zone. Potential stalls should be considered before
2145 // following this policy.
2146
2147 // Compute remaining latency. We need this both to determine whether the
2148 // overall schedule has become latency-limited and whether the instructions
2149 // outside this zone are resource or latency limited.
2150 //
2151 // The "dependent" latency is updated incrementally during scheduling as the
2152 // max height/depth of scheduled nodes minus the cycles since it was
2153 // scheduled:
2154 // DLat = max (N.depth - (CurrCycle - N.ReadyCycle) for N in Zone
2155 //
2156 // The "independent" latency is the max ready queue depth:
2157 // ILat = max N.depth for N in Available|Pending
2158 //
2159 // RemainingLatency is the greater of independent and dependent latency.
2160 unsigned RemLatency = CurrZone.getDependentLatency();
2161 RemLatency = std::max(RemLatency,
2162 CurrZone.findMaxLatency(CurrZone.Available.elements()));
2163 RemLatency = std::max(RemLatency,
2164 CurrZone.findMaxLatency(CurrZone.Pending.elements()));
2165
2166 // Compute the critical resource outside the zone.
Andrew Trick7afe4812013-12-28 22:25:57 +00002167 unsigned OtherCritIdx = 0;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002168 unsigned OtherCount =
2169 OtherZone ? OtherZone->getOtherResourceCount(OtherCritIdx) : 0;
2170
2171 bool OtherResLimited = false;
2172 if (SchedModel->hasInstrSchedModel()) {
2173 unsigned LFactor = SchedModel->getLatencyFactor();
2174 OtherResLimited = (int)(OtherCount - (RemLatency * LFactor)) > (int)LFactor;
2175 }
2176 // Schedule aggressively for latency in PostRA mode. We don't check for
2177 // acyclic latency during PostRA, and highly out-of-order processors will
2178 // skip PostRA scheduling.
2179 if (!OtherResLimited) {
2180 if (IsPostRA || (RemLatency + CurrZone.getCurrCycle() > Rem.CriticalPath)) {
2181 Policy.ReduceLatency |= true;
2182 DEBUG(dbgs() << " " << CurrZone.Available.getName()
2183 << " RemainingLatency " << RemLatency << " + "
2184 << CurrZone.getCurrCycle() << "c > CritPath "
2185 << Rem.CriticalPath << "\n");
2186 }
2187 }
2188 // If the same resource is limiting inside and outside the zone, do nothing.
2189 if (CurrZone.getZoneCritResIdx() == OtherCritIdx)
2190 return;
2191
2192 DEBUG(
2193 if (CurrZone.isResourceLimited()) {
2194 dbgs() << " " << CurrZone.Available.getName() << " ResourceLimited: "
2195 << SchedModel->getResourceName(CurrZone.getZoneCritResIdx())
2196 << "\n";
2197 }
2198 if (OtherResLimited)
2199 dbgs() << " RemainingLimit: "
2200 << SchedModel->getResourceName(OtherCritIdx) << "\n";
2201 if (!CurrZone.isResourceLimited() && !OtherResLimited)
2202 dbgs() << " Latency limited both directions.\n");
2203
2204 if (CurrZone.isResourceLimited() && !Policy.ReduceResIdx)
2205 Policy.ReduceResIdx = CurrZone.getZoneCritResIdx();
2206
2207 if (OtherResLimited)
2208 Policy.DemandResIdx = OtherCritIdx;
2209}
2210
2211#ifndef NDEBUG
2212const char *GenericSchedulerBase::getReasonStr(
2213 GenericSchedulerBase::CandReason Reason) {
2214 switch (Reason) {
2215 case NoCand: return "NOCAND ";
2216 case PhysRegCopy: return "PREG-COPY";
2217 case RegExcess: return "REG-EXCESS";
2218 case RegCritical: return "REG-CRIT ";
2219 case Stall: return "STALL ";
2220 case Cluster: return "CLUSTER ";
2221 case Weak: return "WEAK ";
2222 case RegMax: return "REG-MAX ";
2223 case ResourceReduce: return "RES-REDUCE";
2224 case ResourceDemand: return "RES-DEMAND";
2225 case TopDepthReduce: return "TOP-DEPTH ";
2226 case TopPathReduce: return "TOP-PATH ";
2227 case BotHeightReduce:return "BOT-HEIGHT";
2228 case BotPathReduce: return "BOT-PATH ";
2229 case NextDefUse: return "DEF-USE ";
2230 case NodeOrder: return "ORDER ";
2231 };
2232 llvm_unreachable("Unknown reason!");
2233}
2234
2235void GenericSchedulerBase::traceCandidate(const SchedCandidate &Cand) {
2236 PressureChange P;
2237 unsigned ResIdx = 0;
2238 unsigned Latency = 0;
2239 switch (Cand.Reason) {
2240 default:
2241 break;
2242 case RegExcess:
2243 P = Cand.RPDelta.Excess;
2244 break;
2245 case RegCritical:
2246 P = Cand.RPDelta.CriticalMax;
2247 break;
2248 case RegMax:
2249 P = Cand.RPDelta.CurrentMax;
2250 break;
2251 case ResourceReduce:
2252 ResIdx = Cand.Policy.ReduceResIdx;
2253 break;
2254 case ResourceDemand:
2255 ResIdx = Cand.Policy.DemandResIdx;
2256 break;
2257 case TopDepthReduce:
2258 Latency = Cand.SU->getDepth();
2259 break;
2260 case TopPathReduce:
2261 Latency = Cand.SU->getHeight();
2262 break;
2263 case BotHeightReduce:
2264 Latency = Cand.SU->getHeight();
2265 break;
2266 case BotPathReduce:
2267 Latency = Cand.SU->getDepth();
2268 break;
2269 }
2270 dbgs() << " SU(" << Cand.SU->NodeNum << ") " << getReasonStr(Cand.Reason);
2271 if (P.isValid())
2272 dbgs() << " " << TRI->getRegPressureSetName(P.getPSet())
2273 << ":" << P.getUnitInc() << " ";
2274 else
2275 dbgs() << " ";
2276 if (ResIdx)
2277 dbgs() << " " << SchedModel->getProcResource(ResIdx)->Name << " ";
2278 else
2279 dbgs() << " ";
2280 if (Latency)
2281 dbgs() << " " << Latency << " cycles ";
2282 else
2283 dbgs() << " ";
2284 dbgs() << '\n';
2285}
2286#endif
2287
2288/// Return true if this heuristic determines order.
2289static bool tryLess(int TryVal, int CandVal,
2290 GenericSchedulerBase::SchedCandidate &TryCand,
2291 GenericSchedulerBase::SchedCandidate &Cand,
2292 GenericSchedulerBase::CandReason Reason) {
2293 if (TryVal < CandVal) {
2294 TryCand.Reason = Reason;
2295 return true;
2296 }
2297 if (TryVal > CandVal) {
2298 if (Cand.Reason > Reason)
2299 Cand.Reason = Reason;
2300 return true;
2301 }
2302 Cand.setRepeat(Reason);
2303 return false;
2304}
2305
2306static bool tryGreater(int TryVal, int CandVal,
2307 GenericSchedulerBase::SchedCandidate &TryCand,
2308 GenericSchedulerBase::SchedCandidate &Cand,
2309 GenericSchedulerBase::CandReason Reason) {
2310 if (TryVal > CandVal) {
2311 TryCand.Reason = Reason;
2312 return true;
2313 }
2314 if (TryVal < CandVal) {
2315 if (Cand.Reason > Reason)
2316 Cand.Reason = Reason;
2317 return true;
2318 }
2319 Cand.setRepeat(Reason);
2320 return false;
2321}
2322
2323static bool tryLatency(GenericSchedulerBase::SchedCandidate &TryCand,
2324 GenericSchedulerBase::SchedCandidate &Cand,
2325 SchedBoundary &Zone) {
2326 if (Zone.isTop()) {
2327 if (Cand.SU->getDepth() > Zone.getScheduledLatency()) {
2328 if (tryLess(TryCand.SU->getDepth(), Cand.SU->getDepth(),
2329 TryCand, Cand, GenericSchedulerBase::TopDepthReduce))
2330 return true;
2331 }
2332 if (tryGreater(TryCand.SU->getHeight(), Cand.SU->getHeight(),
2333 TryCand, Cand, GenericSchedulerBase::TopPathReduce))
2334 return true;
2335 }
2336 else {
2337 if (Cand.SU->getHeight() > Zone.getScheduledLatency()) {
2338 if (tryLess(TryCand.SU->getHeight(), Cand.SU->getHeight(),
2339 TryCand, Cand, GenericSchedulerBase::BotHeightReduce))
2340 return true;
2341 }
2342 if (tryGreater(TryCand.SU->getDepth(), Cand.SU->getDepth(),
2343 TryCand, Cand, GenericSchedulerBase::BotPathReduce))
2344 return true;
2345 }
2346 return false;
2347}
2348
2349static void tracePick(const GenericSchedulerBase::SchedCandidate &Cand,
2350 bool IsTop) {
2351 DEBUG(dbgs() << "Pick " << (IsTop ? "Top " : "Bot ")
2352 << GenericSchedulerBase::getReasonStr(Cand.Reason) << '\n');
2353}
2354
Andrew Trickfc127d12013-12-07 05:59:44 +00002355void GenericScheduler::initialize(ScheduleDAGMI *dag) {
Andrew Trickd7f890e2013-12-28 21:56:47 +00002356 assert(dag->hasVRegLiveness() &&
2357 "(PreRA)GenericScheduler needs vreg liveness");
2358 DAG = static_cast<ScheduleDAGMILive*>(dag);
Andrew Trickfc127d12013-12-07 05:59:44 +00002359 SchedModel = DAG->getSchedModel();
2360 TRI = DAG->TRI;
2361
2362 Rem.init(DAG, SchedModel);
2363 Top.init(DAG, SchedModel, &Rem);
2364 Bot.init(DAG, SchedModel, &Rem);
2365
2366 // Initialize resource counts.
2367
2368 // Initialize the HazardRecognizers. If itineraries don't exist, are empty, or
2369 // are disabled, then these HazardRecs will be disabled.
2370 const InstrItineraryData *Itin = SchedModel->getInstrItineraries();
Andrew Trickfc127d12013-12-07 05:59:44 +00002371 if (!Top.HazardRec) {
2372 Top.HazardRec =
Eric Christopher99556d72014-10-14 06:56:25 +00002373 DAG->MF.getSubtarget().getInstrInfo()->CreateTargetMIHazardRecognizer(
Eric Christopherd9134482014-08-04 21:25:23 +00002374 Itin, DAG);
Andrew Trickfc127d12013-12-07 05:59:44 +00002375 }
2376 if (!Bot.HazardRec) {
2377 Bot.HazardRec =
Eric Christopher99556d72014-10-14 06:56:25 +00002378 DAG->MF.getSubtarget().getInstrInfo()->CreateTargetMIHazardRecognizer(
Eric Christopherd9134482014-08-04 21:25:23 +00002379 Itin, DAG);
Andrew Trickfc127d12013-12-07 05:59:44 +00002380 }
2381}
2382
2383/// Initialize the per-region scheduling policy.
2384void GenericScheduler::initPolicy(MachineBasicBlock::iterator Begin,
2385 MachineBasicBlock::iterator End,
2386 unsigned NumRegionInstrs) {
Eric Christopher99556d72014-10-14 06:56:25 +00002387 const MachineFunction &MF = *Begin->getParent()->getParent();
2388 const TargetLowering *TLI = MF.getSubtarget().getTargetLowering();
Andrew Trickfc127d12013-12-07 05:59:44 +00002389
2390 // Avoid setting up the register pressure tracker for small regions to save
2391 // compile time. As a rough heuristic, only track pressure when the number of
2392 // schedulable instructions exceeds half the integer register file.
Andrew Trick350ff2c2014-01-21 21:27:37 +00002393 RegionPolicy.ShouldTrackPressure = true;
Andrew Trick46753512014-01-22 03:38:55 +00002394 for (unsigned VT = MVT::i32; VT > (unsigned)MVT::i1; --VT) {
2395 MVT::SimpleValueType LegalIntVT = (MVT::SimpleValueType)VT;
2396 if (TLI->isTypeLegal(LegalIntVT)) {
Andrew Trick350ff2c2014-01-21 21:27:37 +00002397 unsigned NIntRegs = Context->RegClassInfo->getNumAllocatableRegs(
Andrew Trick46753512014-01-22 03:38:55 +00002398 TLI->getRegClassFor(LegalIntVT));
Andrew Trick350ff2c2014-01-21 21:27:37 +00002399 RegionPolicy.ShouldTrackPressure = NumRegionInstrs > (NIntRegs / 2);
2400 }
2401 }
Andrew Trickfc127d12013-12-07 05:59:44 +00002402
2403 // For generic targets, we default to bottom-up, because it's simpler and more
2404 // compile-time optimizations have been implemented in that direction.
2405 RegionPolicy.OnlyBottomUp = true;
2406
2407 // Allow the subtarget to override default policy.
Eric Christopher99556d72014-10-14 06:56:25 +00002408 MF.getSubtarget().overrideSchedPolicy(RegionPolicy, Begin, End,
2409 NumRegionInstrs);
Andrew Trickfc127d12013-12-07 05:59:44 +00002410
2411 // After subtarget overrides, apply command line options.
2412 if (!EnableRegPressure)
2413 RegionPolicy.ShouldTrackPressure = false;
2414
2415 // Check -misched-topdown/bottomup can force or unforce scheduling direction.
2416 // e.g. -misched-bottomup=false allows scheduling in both directions.
2417 assert((!ForceTopDown || !ForceBottomUp) &&
2418 "-misched-topdown incompatible with -misched-bottomup");
2419 if (ForceBottomUp.getNumOccurrences() > 0) {
2420 RegionPolicy.OnlyBottomUp = ForceBottomUp;
2421 if (RegionPolicy.OnlyBottomUp)
2422 RegionPolicy.OnlyTopDown = false;
2423 }
2424 if (ForceTopDown.getNumOccurrences() > 0) {
2425 RegionPolicy.OnlyTopDown = ForceTopDown;
2426 if (RegionPolicy.OnlyTopDown)
2427 RegionPolicy.OnlyBottomUp = false;
2428 }
2429}
2430
2431/// Set IsAcyclicLatencyLimited if the acyclic path is longer than the cyclic
2432/// critical path by more cycles than it takes to drain the instruction buffer.
2433/// We estimate an upper bounds on in-flight instructions as:
2434///
2435/// CyclesPerIteration = max( CyclicPath, Loop-Resource-Height )
2436/// InFlightIterations = AcyclicPath / CyclesPerIteration
2437/// InFlightResources = InFlightIterations * LoopResources
2438///
2439/// TODO: Check execution resources in addition to IssueCount.
2440void GenericScheduler::checkAcyclicLatency() {
2441 if (Rem.CyclicCritPath == 0 || Rem.CyclicCritPath >= Rem.CriticalPath)
2442 return;
2443
2444 // Scaled number of cycles per loop iteration.
2445 unsigned IterCount =
2446 std::max(Rem.CyclicCritPath * SchedModel->getLatencyFactor(),
2447 Rem.RemIssueCount);
2448 // Scaled acyclic critical path.
2449 unsigned AcyclicCount = Rem.CriticalPath * SchedModel->getLatencyFactor();
2450 // InFlightCount = (AcyclicPath / IterCycles) * InstrPerLoop
2451 unsigned InFlightCount =
2452 (AcyclicCount * Rem.RemIssueCount + IterCount-1) / IterCount;
2453 unsigned BufferLimit =
2454 SchedModel->getMicroOpBufferSize() * SchedModel->getMicroOpFactor();
2455
2456 Rem.IsAcyclicLatencyLimited = InFlightCount > BufferLimit;
2457
2458 DEBUG(dbgs() << "IssueCycles="
2459 << Rem.RemIssueCount / SchedModel->getLatencyFactor() << "c "
2460 << "IterCycles=" << IterCount / SchedModel->getLatencyFactor()
2461 << "c NumIters=" << (AcyclicCount + IterCount-1) / IterCount
2462 << " InFlight=" << InFlightCount / SchedModel->getMicroOpFactor()
2463 << "m BufferLim=" << SchedModel->getMicroOpBufferSize() << "m\n";
2464 if (Rem.IsAcyclicLatencyLimited)
2465 dbgs() << " ACYCLIC LATENCY LIMIT\n");
2466}
2467
2468void GenericScheduler::registerRoots() {
2469 Rem.CriticalPath = DAG->ExitSU.getDepth();
2470
2471 // Some roots may not feed into ExitSU. Check all of them in case.
2472 for (std::vector<SUnit*>::const_iterator
2473 I = Bot.Available.begin(), E = Bot.Available.end(); I != E; ++I) {
2474 if ((*I)->getDepth() > Rem.CriticalPath)
2475 Rem.CriticalPath = (*I)->getDepth();
2476 }
Gerolf Hoflehnerb5220dc2014-08-07 21:49:44 +00002477 DEBUG(dbgs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << '\n');
2478 if (DumpCriticalPathLength) {
2479 errs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << " \n";
2480 }
Andrew Trickfc127d12013-12-07 05:59:44 +00002481
2482 if (EnableCyclicPath) {
2483 Rem.CyclicCritPath = DAG->computeCyclicCriticalPath();
2484 checkAcyclicLatency();
2485 }
2486}
2487
Andrew Trick1a831342013-08-30 03:49:48 +00002488static bool tryPressure(const PressureChange &TryP,
2489 const PressureChange &CandP,
Andrew Trickd14d7c22013-12-28 21:56:57 +00002490 GenericSchedulerBase::SchedCandidate &TryCand,
2491 GenericSchedulerBase::SchedCandidate &Cand,
2492 GenericSchedulerBase::CandReason Reason) {
Andrew Trickb1a45b62013-08-30 04:27:29 +00002493 int TryRank = TryP.getPSetOrMax();
2494 int CandRank = CandP.getPSetOrMax();
2495 // If both candidates affect the same set, go with the smallest increase.
2496 if (TryRank == CandRank) {
2497 return tryLess(TryP.getUnitInc(), CandP.getUnitInc(), TryCand, Cand,
2498 Reason);
Andrew Trick401b6952013-07-25 07:26:35 +00002499 }
Andrew Trickb1a45b62013-08-30 04:27:29 +00002500 // If one candidate decreases and the other increases, go with it.
2501 // Invalid candidates have UnitInc==0.
Hal Finkel7a87f8a2014-10-10 17:06:20 +00002502 if (tryGreater(TryP.getUnitInc() < 0, CandP.getUnitInc() < 0, TryCand, Cand,
2503 Reason)) {
Andrew Trickb1a45b62013-08-30 04:27:29 +00002504 return true;
2505 }
Andrew Trick401b6952013-07-25 07:26:35 +00002506 // If the candidates are decreasing pressure, reverse priority.
Andrew Trick1a831342013-08-30 03:49:48 +00002507 if (TryP.getUnitInc() < 0)
Andrew Trick401b6952013-07-25 07:26:35 +00002508 std::swap(TryRank, CandRank);
2509 return tryGreater(TryRank, CandRank, TryCand, Cand, Reason);
2510}
2511
Andrew Tricka7714a02012-11-12 19:40:10 +00002512static unsigned getWeakLeft(const SUnit *SU, bool isTop) {
2513 return (isTop) ? SU->WeakPredsLeft : SU->WeakSuccsLeft;
2514}
2515
Andrew Tricke833e1c2013-04-13 06:07:40 +00002516/// Minimize physical register live ranges. Regalloc wants them adjacent to
2517/// their physreg def/use.
2518///
2519/// FIXME: This is an unnecessary check on the critical path. Most are root/leaf
2520/// copies which can be prescheduled. The rest (e.g. x86 MUL) could be bundled
2521/// with the operation that produces or consumes the physreg. We'll do this when
2522/// regalloc has support for parallel copies.
2523static int biasPhysRegCopy(const SUnit *SU, bool isTop) {
2524 const MachineInstr *MI = SU->getInstr();
2525 if (!MI->isCopy())
2526 return 0;
2527
2528 unsigned ScheduledOper = isTop ? 1 : 0;
2529 unsigned UnscheduledOper = isTop ? 0 : 1;
2530 // If we have already scheduled the physreg produce/consumer, immediately
2531 // schedule the copy.
2532 if (TargetRegisterInfo::isPhysicalRegister(
2533 MI->getOperand(ScheduledOper).getReg()))
2534 return 1;
2535 // If the physreg is at the boundary, defer it. Otherwise schedule it
2536 // immediately to free the dependent. We can hoist the copy later.
2537 bool AtBoundary = isTop ? !SU->NumSuccsLeft : !SU->NumPredsLeft;
2538 if (TargetRegisterInfo::isPhysicalRegister(
2539 MI->getOperand(UnscheduledOper).getReg()))
2540 return AtBoundary ? -1 : 1;
2541 return 0;
2542}
2543
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002544/// Apply a set of heursitics to a new candidate. Heuristics are currently
2545/// hierarchical. This may be more efficient than a graduated cost model because
2546/// we don't need to evaluate all aspects of the model for each node in the
2547/// queue. But it's really done to make the heuristics easier to debug and
2548/// statistically analyze.
2549///
2550/// \param Cand provides the policy and current best candidate.
2551/// \param TryCand refers to the next SUnit candidate, otherwise uninitialized.
2552/// \param Zone describes the scheduled zone that we are extending.
2553/// \param RPTracker describes reg pressure within the scheduled zone.
2554/// \param TempTracker is a scratch pressure tracker to reuse in queries.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002555void GenericScheduler::tryCandidate(SchedCandidate &Cand,
Andrew Trickbb1247b2013-12-05 17:55:47 +00002556 SchedCandidate &TryCand,
2557 SchedBoundary &Zone,
2558 const RegPressureTracker &RPTracker,
2559 RegPressureTracker &TempTracker) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002560
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002561 if (DAG->isTrackingPressure()) {
Andrew Trick310190e2013-09-04 21:00:02 +00002562 // Always initialize TryCand's RPDelta.
2563 if (Zone.isTop()) {
2564 TempTracker.getMaxDownwardPressureDelta(
Andrew Trick1a831342013-08-30 03:49:48 +00002565 TryCand.SU->getInstr(),
Andrew Trick1a831342013-08-30 03:49:48 +00002566 TryCand.RPDelta,
2567 DAG->getRegionCriticalPSets(),
2568 DAG->getRegPressure().MaxSetPressure);
2569 }
2570 else {
Andrew Trick310190e2013-09-04 21:00:02 +00002571 if (VerifyScheduling) {
2572 TempTracker.getMaxUpwardPressureDelta(
2573 TryCand.SU->getInstr(),
2574 &DAG->getPressureDiff(TryCand.SU),
2575 TryCand.RPDelta,
2576 DAG->getRegionCriticalPSets(),
2577 DAG->getRegPressure().MaxSetPressure);
2578 }
2579 else {
2580 RPTracker.getUpwardPressureDelta(
2581 TryCand.SU->getInstr(),
2582 DAG->getPressureDiff(TryCand.SU),
2583 TryCand.RPDelta,
2584 DAG->getRegionCriticalPSets(),
2585 DAG->getRegPressure().MaxSetPressure);
2586 }
Andrew Trick1a831342013-08-30 03:49:48 +00002587 }
2588 }
Andrew Trickc573cd92013-09-06 17:32:44 +00002589 DEBUG(if (TryCand.RPDelta.Excess.isValid())
2590 dbgs() << " SU(" << TryCand.SU->NodeNum << ") "
2591 << TRI->getRegPressureSetName(TryCand.RPDelta.Excess.getPSet())
2592 << ":" << TryCand.RPDelta.Excess.getUnitInc() << "\n");
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002593
2594 // Initialize the candidate if needed.
2595 if (!Cand.isValid()) {
2596 TryCand.Reason = NodeOrder;
2597 return;
2598 }
Andrew Tricke833e1c2013-04-13 06:07:40 +00002599
2600 if (tryGreater(biasPhysRegCopy(TryCand.SU, Zone.isTop()),
2601 biasPhysRegCopy(Cand.SU, Zone.isTop()),
2602 TryCand, Cand, PhysRegCopy))
2603 return;
2604
Andrew Trick401b6952013-07-25 07:26:35 +00002605 // Avoid exceeding the target's limit. If signed PSetID is negative, it is
2606 // invalid; convert it to INT_MAX to give it lowest priority.
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002607 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.Excess,
2608 Cand.RPDelta.Excess,
2609 TryCand, Cand, RegExcess))
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002610 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002611
2612 // Avoid increasing the max critical pressure in the scheduled region.
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002613 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.CriticalMax,
2614 Cand.RPDelta.CriticalMax,
2615 TryCand, Cand, RegCritical))
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002616 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002617
Andrew Trickddffae92013-09-06 17:32:36 +00002618 // For loops that are acyclic path limited, aggressively schedule for latency.
Andrew Tricke1f7bf22013-09-09 22:28:08 +00002619 // This can result in very long dependence chains scheduled in sequence, so
2620 // once every cycle (when CurrMOps == 0), switch to normal heuristics.
Andrew Trickfc127d12013-12-07 05:59:44 +00002621 if (Rem.IsAcyclicLatencyLimited && !Zone.getCurrMOps()
Andrew Tricke1f7bf22013-09-09 22:28:08 +00002622 && tryLatency(TryCand, Cand, Zone))
Andrew Trickddffae92013-09-06 17:32:36 +00002623 return;
2624
Andrew Trick880e5732013-12-05 17:55:58 +00002625 // Prioritize instructions that read unbuffered resources by stall cycles.
2626 if (tryLess(Zone.getLatencyStallCycles(TryCand.SU),
2627 Zone.getLatencyStallCycles(Cand.SU), TryCand, Cand, Stall))
2628 return;
2629
Andrew Tricka7714a02012-11-12 19:40:10 +00002630 // Keep clustered nodes together to encourage downstream peephole
2631 // optimizations which may reduce resource requirements.
2632 //
2633 // This is a best effort to set things up for a post-RA pass. Optimizations
2634 // like generating loads of multiple registers should ideally be done within
2635 // the scheduler pass by combining the loads during DAG postprocessing.
2636 const SUnit *NextClusterSU =
2637 Zone.isTop() ? DAG->getNextClusterSucc() : DAG->getNextClusterPred();
2638 if (tryGreater(TryCand.SU == NextClusterSU, Cand.SU == NextClusterSU,
2639 TryCand, Cand, Cluster))
2640 return;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00002641
2642 // Weak edges are for clustering and other constraints.
Andrew Tricka7714a02012-11-12 19:40:10 +00002643 if (tryLess(getWeakLeft(TryCand.SU, Zone.isTop()),
2644 getWeakLeft(Cand.SU, Zone.isTop()),
Andrew Trick85a1d4c2013-04-24 15:54:43 +00002645 TryCand, Cand, Weak)) {
Andrew Tricka7714a02012-11-12 19:40:10 +00002646 return;
2647 }
Andrew Trick71f08a32013-06-17 21:45:13 +00002648 // Avoid increasing the max pressure of the entire region.
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002649 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.CurrentMax,
2650 Cand.RPDelta.CurrentMax,
2651 TryCand, Cand, RegMax))
Andrew Trick71f08a32013-06-17 21:45:13 +00002652 return;
2653
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002654 // Avoid critical resource consumption and balance the schedule.
2655 TryCand.initResourceDelta(DAG, SchedModel);
2656 if (tryLess(TryCand.ResDelta.CritResources, Cand.ResDelta.CritResources,
2657 TryCand, Cand, ResourceReduce))
2658 return;
2659 if (tryGreater(TryCand.ResDelta.DemandedResources,
2660 Cand.ResDelta.DemandedResources,
2661 TryCand, Cand, ResourceDemand))
2662 return;
2663
2664 // Avoid serializing long latency dependence chains.
Andrew Trickc01b0042013-08-23 17:48:43 +00002665 // For acyclic path limited loops, latency was already checked above.
2666 if (Cand.Policy.ReduceLatency && !Rem.IsAcyclicLatencyLimited
2667 && tryLatency(TryCand, Cand, Zone)) {
2668 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002669 }
2670
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002671 // Prefer immediate defs/users of the last scheduled instruction. This is a
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002672 // local pressure avoidance strategy that also makes the machine code
2673 // readable.
Andrew Trickfc127d12013-12-07 05:59:44 +00002674 if (tryGreater(Zone.isNextSU(TryCand.SU), Zone.isNextSU(Cand.SU),
Andrew Tricka7714a02012-11-12 19:40:10 +00002675 TryCand, Cand, NextDefUse))
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002676 return;
Andrew Tricka7714a02012-11-12 19:40:10 +00002677
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002678 // Fall through to original instruction order.
2679 if ((Zone.isTop() && TryCand.SU->NodeNum < Cand.SU->NodeNum)
2680 || (!Zone.isTop() && TryCand.SU->NodeNum > Cand.SU->NodeNum)) {
2681 TryCand.Reason = NodeOrder;
2682 }
2683}
Andrew Trick419eae22012-05-10 21:06:19 +00002684
Andrew Trickc573cd92013-09-06 17:32:44 +00002685/// Pick the best candidate from the queue.
Andrew Trick7ee9de52012-05-10 21:06:16 +00002686///
2687/// TODO: getMaxPressureDelta results can be mostly cached for each SUnit during
2688/// DAG building. To adjust for the current scheduling location we need to
2689/// maintain the number of vreg uses remaining to be top-scheduled.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002690void GenericScheduler::pickNodeFromQueue(SchedBoundary &Zone,
Andrew Trickbb1247b2013-12-05 17:55:47 +00002691 const RegPressureTracker &RPTracker,
2692 SchedCandidate &Cand) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002693 ReadyQueue &Q = Zone.Available;
2694
Andrew Tricka8ad5f72012-05-24 22:11:12 +00002695 DEBUG(Q.dump());
Andrew Trick22025772012-05-17 18:35:10 +00002696
Andrew Trick7ee9de52012-05-10 21:06:16 +00002697 // getMaxPressureDelta temporarily modifies the tracker.
2698 RegPressureTracker &TempTracker = const_cast<RegPressureTracker&>(RPTracker);
2699
Andrew Trickdd375dd2012-05-24 22:11:03 +00002700 for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) {
Andrew Trick7ee9de52012-05-10 21:06:16 +00002701
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002702 SchedCandidate TryCand(Cand.Policy);
2703 TryCand.SU = *I;
2704 tryCandidate(Cand, TryCand, Zone, RPTracker, TempTracker);
2705 if (TryCand.Reason != NoCand) {
2706 // Initialize resource delta if needed in case future heuristics query it.
2707 if (TryCand.ResDelta == SchedResourceDelta())
2708 TryCand.initResourceDelta(DAG, SchedModel);
2709 Cand.setBest(TryCand);
Andrew Trick419d4912013-04-05 00:31:29 +00002710 DEBUG(traceCandidate(Cand));
Andrew Trick22025772012-05-17 18:35:10 +00002711 }
Andrew Trick7ee9de52012-05-10 21:06:16 +00002712 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002713}
2714
Andrew Trick22025772012-05-17 18:35:10 +00002715/// Pick the best candidate node from either the top or bottom queue.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002716SUnit *GenericScheduler::pickNodeBidirectional(bool &IsTopNode) {
Andrew Trick22025772012-05-17 18:35:10 +00002717 // Schedule as far as possible in the direction of no choice. This is most
2718 // efficient, but also provides the best heuristics for CriticalPSets.
Andrew Trick61f1a272012-05-24 22:11:09 +00002719 if (SUnit *SU = Bot.pickOnlyChoice()) {
Andrew Trick22025772012-05-17 18:35:10 +00002720 IsTopNode = false;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002721 DEBUG(dbgs() << "Pick Bot NOCAND\n");
Andrew Trick61f1a272012-05-24 22:11:09 +00002722 return SU;
Andrew Trick22025772012-05-17 18:35:10 +00002723 }
Andrew Trick61f1a272012-05-24 22:11:09 +00002724 if (SUnit *SU = Top.pickOnlyChoice()) {
Andrew Trick22025772012-05-17 18:35:10 +00002725 IsTopNode = true;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002726 DEBUG(dbgs() << "Pick Top NOCAND\n");
Andrew Trick61f1a272012-05-24 22:11:09 +00002727 return SU;
Andrew Trick22025772012-05-17 18:35:10 +00002728 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002729 CandPolicy NoPolicy;
2730 SchedCandidate BotCand(NoPolicy);
2731 SchedCandidate TopCand(NoPolicy);
Andrew Trickfc127d12013-12-07 05:59:44 +00002732 // Set the bottom-up policy based on the state of the current bottom zone and
2733 // the instructions outside the zone, including the top zone.
Andrew Trickd14d7c22013-12-28 21:56:57 +00002734 setPolicy(BotCand.Policy, /*IsPostRA=*/false, Bot, &Top);
Andrew Trickfc127d12013-12-07 05:59:44 +00002735 // Set the top-down policy based on the state of the current top zone and
2736 // the instructions outside the zone, including the bottom zone.
Andrew Trickd14d7c22013-12-28 21:56:57 +00002737 setPolicy(TopCand.Policy, /*IsPostRA=*/false, Top, &Bot);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002738
Andrew Trick22025772012-05-17 18:35:10 +00002739 // Prefer bottom scheduling when heuristics are silent.
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002740 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand);
2741 assert(BotCand.Reason != NoCand && "failed to find the first candidate");
Andrew Trick22025772012-05-17 18:35:10 +00002742
2743 // If either Q has a single candidate that provides the least increase in
2744 // Excess pressure, we can immediately schedule from that Q.
2745 //
2746 // RegionCriticalPSets summarizes the pressure within the scheduled region and
2747 // affects picking from either Q. If scheduling in one direction must
2748 // increase pressure for one of the excess PSets, then schedule in that
2749 // direction first to provide more freedom in the other direction.
Andrew Trickd40d0f22013-06-17 21:45:05 +00002750 if ((BotCand.Reason == RegExcess && !BotCand.isRepeat(RegExcess))
2751 || (BotCand.Reason == RegCritical
2752 && !BotCand.isRepeat(RegCritical)))
2753 {
Andrew Trick22025772012-05-17 18:35:10 +00002754 IsTopNode = false;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002755 tracePick(BotCand, IsTopNode);
Andrew Trick61f1a272012-05-24 22:11:09 +00002756 return BotCand.SU;
Andrew Trick22025772012-05-17 18:35:10 +00002757 }
2758 // Check if the top Q has a better candidate.
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002759 pickNodeFromQueue(Top, DAG->getTopRPTracker(), TopCand);
2760 assert(TopCand.Reason != NoCand && "failed to find the first candidate");
Andrew Trick22025772012-05-17 18:35:10 +00002761
Andrew Trickd40d0f22013-06-17 21:45:05 +00002762 // Choose the queue with the most important (lowest enum) reason.
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002763 if (TopCand.Reason < BotCand.Reason) {
2764 IsTopNode = true;
2765 tracePick(TopCand, IsTopNode);
2766 return TopCand.SU;
2767 }
Andrew Trickd40d0f22013-06-17 21:45:05 +00002768 // Otherwise prefer the bottom candidate, in node order if all else failed.
Andrew Trick22025772012-05-17 18:35:10 +00002769 IsTopNode = false;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002770 tracePick(BotCand, IsTopNode);
Andrew Trick61f1a272012-05-24 22:11:09 +00002771 return BotCand.SU;
Andrew Trick22025772012-05-17 18:35:10 +00002772}
2773
2774/// Pick the best node to balance the schedule. Implements MachineSchedStrategy.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002775SUnit *GenericScheduler::pickNode(bool &IsTopNode) {
Andrew Trick7ee9de52012-05-10 21:06:16 +00002776 if (DAG->top() == DAG->bottom()) {
Andrew Trick61f1a272012-05-24 22:11:09 +00002777 assert(Top.Available.empty() && Top.Pending.empty() &&
2778 Bot.Available.empty() && Bot.Pending.empty() && "ReadyQ garbage");
Craig Topperc0196b12014-04-14 00:51:57 +00002779 return nullptr;
Andrew Trick7ee9de52012-05-10 21:06:16 +00002780 }
Andrew Trick7ee9de52012-05-10 21:06:16 +00002781 SUnit *SU;
Andrew Trick984d98b2012-10-08 18:53:53 +00002782 do {
Andrew Trick75e411c2013-09-06 17:32:34 +00002783 if (RegionPolicy.OnlyTopDown) {
Andrew Trick984d98b2012-10-08 18:53:53 +00002784 SU = Top.pickOnlyChoice();
2785 if (!SU) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002786 CandPolicy NoPolicy;
2787 SchedCandidate TopCand(NoPolicy);
2788 pickNodeFromQueue(Top, DAG->getTopRPTracker(), TopCand);
Andrew Trick1ab16d92013-09-04 21:00:13 +00002789 assert(TopCand.Reason != NoCand && "failed to find a candidate");
Andrew Trickef54c592013-09-04 21:00:16 +00002790 tracePick(TopCand, true);
Andrew Trick984d98b2012-10-08 18:53:53 +00002791 SU = TopCand.SU;
2792 }
2793 IsTopNode = true;
Andrew Tricka306a8a2012-05-24 23:11:17 +00002794 }
Andrew Trick75e411c2013-09-06 17:32:34 +00002795 else if (RegionPolicy.OnlyBottomUp) {
Andrew Trick984d98b2012-10-08 18:53:53 +00002796 SU = Bot.pickOnlyChoice();
2797 if (!SU) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002798 CandPolicy NoPolicy;
2799 SchedCandidate BotCand(NoPolicy);
2800 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand);
Andrew Trick1ab16d92013-09-04 21:00:13 +00002801 assert(BotCand.Reason != NoCand && "failed to find a candidate");
Andrew Trickef54c592013-09-04 21:00:16 +00002802 tracePick(BotCand, false);
Andrew Trick984d98b2012-10-08 18:53:53 +00002803 SU = BotCand.SU;
2804 }
2805 IsTopNode = false;
Andrew Tricka306a8a2012-05-24 23:11:17 +00002806 }
Andrew Trick984d98b2012-10-08 18:53:53 +00002807 else {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002808 SU = pickNodeBidirectional(IsTopNode);
Andrew Trick984d98b2012-10-08 18:53:53 +00002809 }
2810 } while (SU->isScheduled);
2811
Andrew Trick61f1a272012-05-24 22:11:09 +00002812 if (SU->isTopReady())
2813 Top.removeReady(SU);
2814 if (SU->isBottomReady())
2815 Bot.removeReady(SU);
Andrew Trick4e7f6a72012-05-25 02:02:39 +00002816
Andrew Trick1f0bb692013-04-13 06:07:49 +00002817 DEBUG(dbgs() << "Scheduling SU(" << SU->NodeNum << ") " << *SU->getInstr());
Andrew Trick7ee9de52012-05-10 21:06:16 +00002818 return SU;
2819}
2820
Andrew Trick665d3ec2013-09-19 23:10:59 +00002821void GenericScheduler::reschedulePhysRegCopies(SUnit *SU, bool isTop) {
Andrew Tricke833e1c2013-04-13 06:07:40 +00002822
2823 MachineBasicBlock::iterator InsertPos = SU->getInstr();
2824 if (!isTop)
2825 ++InsertPos;
2826 SmallVectorImpl<SDep> &Deps = isTop ? SU->Preds : SU->Succs;
2827
2828 // Find already scheduled copies with a single physreg dependence and move
2829 // them just above the scheduled instruction.
2830 for (SmallVectorImpl<SDep>::iterator I = Deps.begin(), E = Deps.end();
2831 I != E; ++I) {
2832 if (I->getKind() != SDep::Data || !TRI->isPhysicalRegister(I->getReg()))
2833 continue;
2834 SUnit *DepSU = I->getSUnit();
2835 if (isTop ? DepSU->Succs.size() > 1 : DepSU->Preds.size() > 1)
2836 continue;
2837 MachineInstr *Copy = DepSU->getInstr();
2838 if (!Copy->isCopy())
2839 continue;
2840 DEBUG(dbgs() << " Rescheduling physreg copy ";
2841 I->getSUnit()->dump(DAG));
2842 DAG->moveInstruction(Copy, InsertPos);
2843 }
2844}
2845
Andrew Trick61f1a272012-05-24 22:11:09 +00002846/// Update the scheduler's state after scheduling a node. This is the same node
Andrew Trickd14d7c22013-12-28 21:56:57 +00002847/// that was just returned by pickNode(). However, ScheduleDAGMILive needs to
2848/// update it's state based on the current cycle before MachineSchedStrategy
2849/// does.
Andrew Tricke833e1c2013-04-13 06:07:40 +00002850///
2851/// FIXME: Eventually, we may bundle physreg copies rather than rescheduling
2852/// them here. See comments in biasPhysRegCopy.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002853void GenericScheduler::schedNode(SUnit *SU, bool IsTopNode) {
Andrew Trick45446062012-06-05 21:11:27 +00002854 if (IsTopNode) {
Andrew Trickfc127d12013-12-07 05:59:44 +00002855 SU->TopReadyCycle = std::max(SU->TopReadyCycle, Top.getCurrCycle());
Andrew Trickce27bb92012-06-29 03:23:22 +00002856 Top.bumpNode(SU);
Andrew Tricke833e1c2013-04-13 06:07:40 +00002857 if (SU->hasPhysRegUses)
2858 reschedulePhysRegCopies(SU, true);
Andrew Trick61f1a272012-05-24 22:11:09 +00002859 }
Andrew Trick45446062012-06-05 21:11:27 +00002860 else {
Andrew Trickfc127d12013-12-07 05:59:44 +00002861 SU->BotReadyCycle = std::max(SU->BotReadyCycle, Bot.getCurrCycle());
Andrew Trickce27bb92012-06-29 03:23:22 +00002862 Bot.bumpNode(SU);
Andrew Tricke833e1c2013-04-13 06:07:40 +00002863 if (SU->hasPhysRegDefs)
2864 reschedulePhysRegCopies(SU, false);
Andrew Trick61f1a272012-05-24 22:11:09 +00002865 }
2866}
2867
Andrew Trick8823dec2012-03-14 04:00:41 +00002868/// Create the standard converging machine scheduler. This will be used as the
2869/// default scheduler if the target does not set a default.
Andrew Trickd14d7c22013-12-28 21:56:57 +00002870static ScheduleDAGInstrs *createGenericSchedLive(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00002871 ScheduleDAGMILive *DAG = new ScheduleDAGMILive(C, make_unique<GenericScheduler>(C));
Andrew Tricka7714a02012-11-12 19:40:10 +00002872 // Register DAG post-processors.
Andrew Trick85a1d4c2013-04-24 15:54:43 +00002873 //
2874 // FIXME: extend the mutation API to allow earlier mutations to instantiate
2875 // data and pass it to later mutations. Have a single mutation that gathers
2876 // the interesting nodes in one pass.
David Blaikie422b93d2014-04-21 20:32:32 +00002877 DAG->addMutation(make_unique<CopyConstrain>(DAG->TII, DAG->TRI));
Andrew Tricka6e87772013-09-04 21:00:08 +00002878 if (EnableLoadCluster && DAG->TII->enableClusterLoads())
David Blaikie422b93d2014-04-21 20:32:32 +00002879 DAG->addMutation(make_unique<LoadClusterMutation>(DAG->TII, DAG->TRI));
Andrew Trick263280242012-11-12 19:52:20 +00002880 if (EnableMacroFusion)
David Blaikie422b93d2014-04-21 20:32:32 +00002881 DAG->addMutation(make_unique<MacroFusion>(DAG->TII));
Andrew Tricka7714a02012-11-12 19:40:10 +00002882 return DAG;
Andrew Tricke1c034f2012-01-17 06:55:03 +00002883}
Andrew Trickd14d7c22013-12-28 21:56:57 +00002884
Andrew Tricke1c034f2012-01-17 06:55:03 +00002885static MachineSchedRegistry
Andrew Trick665d3ec2013-09-19 23:10:59 +00002886GenericSchedRegistry("converge", "Standard converging scheduler.",
Andrew Trickd14d7c22013-12-28 21:56:57 +00002887 createGenericSchedLive);
2888
2889//===----------------------------------------------------------------------===//
2890// PostGenericScheduler - Generic PostRA implementation of MachineSchedStrategy.
2891//===----------------------------------------------------------------------===//
2892
Andrew Trick3ccf71d2014-06-04 07:06:18 +00002893void PostGenericScheduler::initialize(ScheduleDAGMI *Dag) {
2894 DAG = Dag;
2895 SchedModel = DAG->getSchedModel();
2896 TRI = DAG->TRI;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002897
Andrew Trick3ccf71d2014-06-04 07:06:18 +00002898 Rem.init(DAG, SchedModel);
2899 Top.init(DAG, SchedModel, &Rem);
2900 BotRoots.clear();
Andrew Trickd14d7c22013-12-28 21:56:57 +00002901
Andrew Trick3ccf71d2014-06-04 07:06:18 +00002902 // Initialize the HazardRecognizers. If itineraries don't exist, are empty,
2903 // or are disabled, then these HazardRecs will be disabled.
2904 const InstrItineraryData *Itin = SchedModel->getInstrItineraries();
Andrew Trick3ccf71d2014-06-04 07:06:18 +00002905 if (!Top.HazardRec) {
2906 Top.HazardRec =
Eric Christopher99556d72014-10-14 06:56:25 +00002907 DAG->MF.getSubtarget().getInstrInfo()->CreateTargetMIHazardRecognizer(
Eric Christopherd9134482014-08-04 21:25:23 +00002908 Itin, DAG);
Andrew Trickd14d7c22013-12-28 21:56:57 +00002909 }
Andrew Trick3ccf71d2014-06-04 07:06:18 +00002910}
Andrew Trickd14d7c22013-12-28 21:56:57 +00002911
Andrew Trickd14d7c22013-12-28 21:56:57 +00002912
2913void PostGenericScheduler::registerRoots() {
2914 Rem.CriticalPath = DAG->ExitSU.getDepth();
2915
2916 // Some roots may not feed into ExitSU. Check all of them in case.
2917 for (SmallVectorImpl<SUnit*>::const_iterator
2918 I = BotRoots.begin(), E = BotRoots.end(); I != E; ++I) {
2919 if ((*I)->getDepth() > Rem.CriticalPath)
2920 Rem.CriticalPath = (*I)->getDepth();
2921 }
Gerolf Hoflehnerb5220dc2014-08-07 21:49:44 +00002922 DEBUG(dbgs() << "Critical Path: (PGS-RR) " << Rem.CriticalPath << '\n');
2923 if (DumpCriticalPathLength) {
2924 errs() << "Critical Path(PGS-RR ): " << Rem.CriticalPath << " \n";
2925 }
Andrew Trickd14d7c22013-12-28 21:56:57 +00002926}
2927
2928/// Apply a set of heursitics to a new candidate for PostRA scheduling.
2929///
2930/// \param Cand provides the policy and current best candidate.
2931/// \param TryCand refers to the next SUnit candidate, otherwise uninitialized.
2932void PostGenericScheduler::tryCandidate(SchedCandidate &Cand,
2933 SchedCandidate &TryCand) {
2934
2935 // Initialize the candidate if needed.
2936 if (!Cand.isValid()) {
2937 TryCand.Reason = NodeOrder;
2938 return;
2939 }
2940
2941 // Prioritize instructions that read unbuffered resources by stall cycles.
2942 if (tryLess(Top.getLatencyStallCycles(TryCand.SU),
2943 Top.getLatencyStallCycles(Cand.SU), TryCand, Cand, Stall))
2944 return;
2945
2946 // Avoid critical resource consumption and balance the schedule.
2947 if (tryLess(TryCand.ResDelta.CritResources, Cand.ResDelta.CritResources,
2948 TryCand, Cand, ResourceReduce))
2949 return;
2950 if (tryGreater(TryCand.ResDelta.DemandedResources,
2951 Cand.ResDelta.DemandedResources,
2952 TryCand, Cand, ResourceDemand))
2953 return;
2954
2955 // Avoid serializing long latency dependence chains.
2956 if (Cand.Policy.ReduceLatency && tryLatency(TryCand, Cand, Top)) {
2957 return;
2958 }
2959
2960 // Fall through to original instruction order.
2961 if (TryCand.SU->NodeNum < Cand.SU->NodeNum)
2962 TryCand.Reason = NodeOrder;
2963}
2964
2965void PostGenericScheduler::pickNodeFromQueue(SchedCandidate &Cand) {
2966 ReadyQueue &Q = Top.Available;
2967
2968 DEBUG(Q.dump());
2969
2970 for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) {
2971 SchedCandidate TryCand(Cand.Policy);
2972 TryCand.SU = *I;
2973 TryCand.initResourceDelta(DAG, SchedModel);
2974 tryCandidate(Cand, TryCand);
2975 if (TryCand.Reason != NoCand) {
2976 Cand.setBest(TryCand);
2977 DEBUG(traceCandidate(Cand));
2978 }
2979 }
2980}
2981
2982/// Pick the next node to schedule.
2983SUnit *PostGenericScheduler::pickNode(bool &IsTopNode) {
2984 if (DAG->top() == DAG->bottom()) {
2985 assert(Top.Available.empty() && Top.Pending.empty() && "ReadyQ garbage");
Craig Topperc0196b12014-04-14 00:51:57 +00002986 return nullptr;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002987 }
2988 SUnit *SU;
2989 do {
2990 SU = Top.pickOnlyChoice();
2991 if (!SU) {
2992 CandPolicy NoPolicy;
2993 SchedCandidate TopCand(NoPolicy);
2994 // Set the top-down policy based on the state of the current top zone and
2995 // the instructions outside the zone, including the bottom zone.
Craig Topperc0196b12014-04-14 00:51:57 +00002996 setPolicy(TopCand.Policy, /*IsPostRA=*/true, Top, nullptr);
Andrew Trickd14d7c22013-12-28 21:56:57 +00002997 pickNodeFromQueue(TopCand);
2998 assert(TopCand.Reason != NoCand && "failed to find a candidate");
2999 tracePick(TopCand, true);
3000 SU = TopCand.SU;
3001 }
3002 } while (SU->isScheduled);
3003
3004 IsTopNode = true;
3005 Top.removeReady(SU);
3006
3007 DEBUG(dbgs() << "Scheduling SU(" << SU->NodeNum << ") " << *SU->getInstr());
3008 return SU;
3009}
3010
3011/// Called after ScheduleDAGMI has scheduled an instruction and updated
3012/// scheduled/remaining flags in the DAG nodes.
3013void PostGenericScheduler::schedNode(SUnit *SU, bool IsTopNode) {
3014 SU->TopReadyCycle = std::max(SU->TopReadyCycle, Top.getCurrCycle());
3015 Top.bumpNode(SU);
3016}
3017
3018/// Create a generic scheduler with no vreg liveness or DAG mutation passes.
3019static ScheduleDAGInstrs *createGenericSchedPostRA(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003020 return new ScheduleDAGMI(C, make_unique<PostGenericScheduler>(C), /*IsPostRA=*/true);
Andrew Trickd14d7c22013-12-28 21:56:57 +00003021}
Andrew Tricke1c034f2012-01-17 06:55:03 +00003022
3023//===----------------------------------------------------------------------===//
Andrew Trick90f711d2012-10-15 18:02:27 +00003024// ILP Scheduler. Currently for experimental analysis of heuristics.
3025//===----------------------------------------------------------------------===//
3026
3027namespace {
3028/// \brief Order nodes by the ILP metric.
3029struct ILPOrder {
Andrew Trick44f750a2013-01-25 04:01:04 +00003030 const SchedDFSResult *DFSResult;
3031 const BitVector *ScheduledTrees;
Andrew Trick90f711d2012-10-15 18:02:27 +00003032 bool MaximizeILP;
3033
Craig Topperc0196b12014-04-14 00:51:57 +00003034 ILPOrder(bool MaxILP)
3035 : DFSResult(nullptr), ScheduledTrees(nullptr), MaximizeILP(MaxILP) {}
Andrew Trick90f711d2012-10-15 18:02:27 +00003036
3037 /// \brief Apply a less-than relation on node priority.
Andrew Trick48d392e2012-11-28 05:13:28 +00003038 ///
3039 /// (Return true if A comes after B in the Q.)
Andrew Trick90f711d2012-10-15 18:02:27 +00003040 bool operator()(const SUnit *A, const SUnit *B) const {
Andrew Trick48d392e2012-11-28 05:13:28 +00003041 unsigned SchedTreeA = DFSResult->getSubtreeID(A);
3042 unsigned SchedTreeB = DFSResult->getSubtreeID(B);
3043 if (SchedTreeA != SchedTreeB) {
3044 // Unscheduled trees have lower priority.
3045 if (ScheduledTrees->test(SchedTreeA) != ScheduledTrees->test(SchedTreeB))
3046 return ScheduledTrees->test(SchedTreeB);
3047
3048 // Trees with shallower connections have have lower priority.
3049 if (DFSResult->getSubtreeLevel(SchedTreeA)
3050 != DFSResult->getSubtreeLevel(SchedTreeB)) {
3051 return DFSResult->getSubtreeLevel(SchedTreeA)
3052 < DFSResult->getSubtreeLevel(SchedTreeB);
3053 }
3054 }
Andrew Trick90f711d2012-10-15 18:02:27 +00003055 if (MaximizeILP)
Andrew Trick48d392e2012-11-28 05:13:28 +00003056 return DFSResult->getILP(A) < DFSResult->getILP(B);
Andrew Trick90f711d2012-10-15 18:02:27 +00003057 else
Andrew Trick48d392e2012-11-28 05:13:28 +00003058 return DFSResult->getILP(A) > DFSResult->getILP(B);
Andrew Trick90f711d2012-10-15 18:02:27 +00003059 }
3060};
3061
3062/// \brief Schedule based on the ILP metric.
3063class ILPScheduler : public MachineSchedStrategy {
Andrew Trickd7f890e2013-12-28 21:56:47 +00003064 ScheduleDAGMILive *DAG;
Andrew Trick90f711d2012-10-15 18:02:27 +00003065 ILPOrder Cmp;
3066
3067 std::vector<SUnit*> ReadyQ;
3068public:
Craig Topperc0196b12014-04-14 00:51:57 +00003069 ILPScheduler(bool MaximizeILP): DAG(nullptr), Cmp(MaximizeILP) {}
Andrew Trick90f711d2012-10-15 18:02:27 +00003070
Craig Topper4584cd52014-03-07 09:26:03 +00003071 void initialize(ScheduleDAGMI *dag) override {
Andrew Trickd7f890e2013-12-28 21:56:47 +00003072 assert(dag->hasVRegLiveness() && "ILPScheduler needs vreg liveness");
3073 DAG = static_cast<ScheduleDAGMILive*>(dag);
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00003074 DAG->computeDFSResult();
Andrew Trick44f750a2013-01-25 04:01:04 +00003075 Cmp.DFSResult = DAG->getDFSResult();
3076 Cmp.ScheduledTrees = &DAG->getScheduledTrees();
Andrew Trick90f711d2012-10-15 18:02:27 +00003077 ReadyQ.clear();
Andrew Trick90f711d2012-10-15 18:02:27 +00003078 }
3079
Craig Topper4584cd52014-03-07 09:26:03 +00003080 void registerRoots() override {
Benjamin Krameraa598b32012-11-29 14:36:26 +00003081 // Restore the heap in ReadyQ with the updated DFS results.
3082 std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
Andrew Trick90f711d2012-10-15 18:02:27 +00003083 }
3084
3085 /// Implement MachineSchedStrategy interface.
3086 /// -----------------------------------------
3087
Andrew Trick48d392e2012-11-28 05:13:28 +00003088 /// Callback to select the highest priority node from the ready Q.
Craig Topper4584cd52014-03-07 09:26:03 +00003089 SUnit *pickNode(bool &IsTopNode) override {
Craig Topperc0196b12014-04-14 00:51:57 +00003090 if (ReadyQ.empty()) return nullptr;
Matt Arsenault4ab769f2013-03-21 00:57:21 +00003091 std::pop_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
Andrew Trick90f711d2012-10-15 18:02:27 +00003092 SUnit *SU = ReadyQ.back();
3093 ReadyQ.pop_back();
3094 IsTopNode = false;
Andrew Trick1f0bb692013-04-13 06:07:49 +00003095 DEBUG(dbgs() << "Pick node " << "SU(" << SU->NodeNum << ") "
Andrew Trick44f750a2013-01-25 04:01:04 +00003096 << " ILP: " << DAG->getDFSResult()->getILP(SU)
3097 << " Tree: " << DAG->getDFSResult()->getSubtreeID(SU) << " @"
3098 << DAG->getDFSResult()->getSubtreeLevel(
Andrew Trick1f0bb692013-04-13 06:07:49 +00003099 DAG->getDFSResult()->getSubtreeID(SU)) << '\n'
3100 << "Scheduling " << *SU->getInstr());
Andrew Trick90f711d2012-10-15 18:02:27 +00003101 return SU;
3102 }
3103
Andrew Trick44f750a2013-01-25 04:01:04 +00003104 /// \brief Scheduler callback to notify that a new subtree is scheduled.
Craig Topper4584cd52014-03-07 09:26:03 +00003105 void scheduleTree(unsigned SubtreeID) override {
Andrew Trick44f750a2013-01-25 04:01:04 +00003106 std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
3107 }
3108
Andrew Trick48d392e2012-11-28 05:13:28 +00003109 /// Callback after a node is scheduled. Mark a newly scheduled tree, notify
3110 /// DFSResults, and resort the priority Q.
Craig Topper4584cd52014-03-07 09:26:03 +00003111 void schedNode(SUnit *SU, bool IsTopNode) override {
Andrew Trick48d392e2012-11-28 05:13:28 +00003112 assert(!IsTopNode && "SchedDFSResult needs bottom-up");
Andrew Trick48d392e2012-11-28 05:13:28 +00003113 }
Andrew Trick90f711d2012-10-15 18:02:27 +00003114
Craig Topper4584cd52014-03-07 09:26:03 +00003115 void releaseTopNode(SUnit *) override { /*only called for top roots*/ }
Andrew Trick90f711d2012-10-15 18:02:27 +00003116
Craig Topper4584cd52014-03-07 09:26:03 +00003117 void releaseBottomNode(SUnit *SU) override {
Andrew Trick90f711d2012-10-15 18:02:27 +00003118 ReadyQ.push_back(SU);
3119 std::push_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
3120 }
3121};
3122} // namespace
3123
3124static ScheduleDAGInstrs *createILPMaxScheduler(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003125 return new ScheduleDAGMILive(C, make_unique<ILPScheduler>(true));
Andrew Trick90f711d2012-10-15 18:02:27 +00003126}
3127static ScheduleDAGInstrs *createILPMinScheduler(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003128 return new ScheduleDAGMILive(C, make_unique<ILPScheduler>(false));
Andrew Trick90f711d2012-10-15 18:02:27 +00003129}
3130static MachineSchedRegistry ILPMaxRegistry(
3131 "ilpmax", "Schedule bottom-up for max ILP", createILPMaxScheduler);
3132static MachineSchedRegistry ILPMinRegistry(
3133 "ilpmin", "Schedule bottom-up for min ILP", createILPMinScheduler);
3134
3135//===----------------------------------------------------------------------===//
Andrew Trick63440872012-01-14 02:17:06 +00003136// Machine Instruction Shuffler for Correctness Testing
3137//===----------------------------------------------------------------------===//
3138
Andrew Tricke77e84e2012-01-13 06:30:30 +00003139#ifndef NDEBUG
3140namespace {
Andrew Trick8823dec2012-03-14 04:00:41 +00003141/// Apply a less-than relation on the node order, which corresponds to the
3142/// instruction order prior to scheduling. IsReverse implements greater-than.
3143template<bool IsReverse>
3144struct SUnitOrder {
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003145 bool operator()(SUnit *A, SUnit *B) const {
Andrew Trick8823dec2012-03-14 04:00:41 +00003146 if (IsReverse)
3147 return A->NodeNum > B->NodeNum;
3148 else
3149 return A->NodeNum < B->NodeNum;
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003150 }
3151};
3152
Andrew Tricke77e84e2012-01-13 06:30:30 +00003153/// Reorder instructions as much as possible.
Andrew Trick8823dec2012-03-14 04:00:41 +00003154class InstructionShuffler : public MachineSchedStrategy {
3155 bool IsAlternating;
3156 bool IsTopDown;
3157
3158 // Using a less-than relation (SUnitOrder<false>) for the TopQ priority
3159 // gives nodes with a higher number higher priority causing the latest
3160 // instructions to be scheduled first.
3161 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<false> >
3162 TopQ;
3163 // When scheduling bottom-up, use greater-than as the queue priority.
3164 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<true> >
3165 BottomQ;
Andrew Tricke77e84e2012-01-13 06:30:30 +00003166public:
Andrew Trick8823dec2012-03-14 04:00:41 +00003167 InstructionShuffler(bool alternate, bool topdown)
3168 : IsAlternating(alternate), IsTopDown(topdown) {}
Andrew Tricke77e84e2012-01-13 06:30:30 +00003169
Craig Topper9d74a5a2014-04-29 07:58:41 +00003170 void initialize(ScheduleDAGMI*) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003171 TopQ.clear();
3172 BottomQ.clear();
3173 }
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003174
Andrew Trick8823dec2012-03-14 04:00:41 +00003175 /// Implement MachineSchedStrategy interface.
3176 /// -----------------------------------------
3177
Craig Topper9d74a5a2014-04-29 07:58:41 +00003178 SUnit *pickNode(bool &IsTopNode) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003179 SUnit *SU;
3180 if (IsTopDown) {
3181 do {
Craig Topperc0196b12014-04-14 00:51:57 +00003182 if (TopQ.empty()) return nullptr;
Andrew Trick8823dec2012-03-14 04:00:41 +00003183 SU = TopQ.top();
3184 TopQ.pop();
3185 } while (SU->isScheduled);
3186 IsTopNode = true;
3187 }
3188 else {
3189 do {
Craig Topperc0196b12014-04-14 00:51:57 +00003190 if (BottomQ.empty()) return nullptr;
Andrew Trick8823dec2012-03-14 04:00:41 +00003191 SU = BottomQ.top();
3192 BottomQ.pop();
3193 } while (SU->isScheduled);
3194 IsTopNode = false;
3195 }
3196 if (IsAlternating)
3197 IsTopDown = !IsTopDown;
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003198 return SU;
3199 }
3200
Craig Topper9d74a5a2014-04-29 07:58:41 +00003201 void schedNode(SUnit *SU, bool IsTopNode) override {}
Andrew Trick61f1a272012-05-24 22:11:09 +00003202
Craig Topper9d74a5a2014-04-29 07:58:41 +00003203 void releaseTopNode(SUnit *SU) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003204 TopQ.push(SU);
3205 }
Craig Topper9d74a5a2014-04-29 07:58:41 +00003206 void releaseBottomNode(SUnit *SU) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003207 BottomQ.push(SU);
Andrew Tricke77e84e2012-01-13 06:30:30 +00003208 }
3209};
3210} // namespace
3211
Andrew Trick02a80da2012-03-08 01:41:12 +00003212static ScheduleDAGInstrs *createInstructionShuffler(MachineSchedContext *C) {
Andrew Trick8823dec2012-03-14 04:00:41 +00003213 bool Alternate = !ForceTopDown && !ForceBottomUp;
3214 bool TopDown = !ForceBottomUp;
Benjamin Kramer05e7a842012-03-14 11:26:37 +00003215 assert((TopDown || !ForceTopDown) &&
Andrew Trick8823dec2012-03-14 04:00:41 +00003216 "-misched-topdown incompatible with -misched-bottomup");
David Blaikie422b93d2014-04-21 20:32:32 +00003217 return new ScheduleDAGMILive(C, make_unique<InstructionShuffler>(Alternate, TopDown));
Andrew Tricke77e84e2012-01-13 06:30:30 +00003218}
Andrew Trick8823dec2012-03-14 04:00:41 +00003219static MachineSchedRegistry ShufflerRegistry(
3220 "shuffle", "Shuffle machine instructions alternating directions",
3221 createInstructionShuffler);
Andrew Tricke77e84e2012-01-13 06:30:30 +00003222#endif // !NDEBUG
Andrew Trickea9fd952013-01-25 07:45:29 +00003223
3224//===----------------------------------------------------------------------===//
Andrew Trickd7f890e2013-12-28 21:56:47 +00003225// GraphWriter support for ScheduleDAGMILive.
Andrew Trickea9fd952013-01-25 07:45:29 +00003226//===----------------------------------------------------------------------===//
3227
3228#ifndef NDEBUG
3229namespace llvm {
3230
3231template<> struct GraphTraits<
3232 ScheduleDAGMI*> : public GraphTraits<ScheduleDAG*> {};
3233
3234template<>
3235struct DOTGraphTraits<ScheduleDAGMI*> : public DefaultDOTGraphTraits {
3236
3237 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
3238
3239 static std::string getGraphName(const ScheduleDAG *G) {
3240 return G->MF.getName();
3241 }
3242
3243 static bool renderGraphFromBottomUp() {
3244 return true;
3245 }
3246
3247 static bool isNodeHidden(const SUnit *Node) {
Andrew Trick856ecd92013-09-04 21:00:18 +00003248 return (Node->Preds.size() > 10 || Node->Succs.size() > 10);
Andrew Trickea9fd952013-01-25 07:45:29 +00003249 }
3250
3251 static bool hasNodeAddressLabel(const SUnit *Node,
3252 const ScheduleDAG *Graph) {
3253 return false;
3254 }
3255
3256 /// If you want to override the dot attributes printed for a particular
3257 /// edge, override this method.
3258 static std::string getEdgeAttributes(const SUnit *Node,
3259 SUnitIterator EI,
3260 const ScheduleDAG *Graph) {
3261 if (EI.isArtificialDep())
3262 return "color=cyan,style=dashed";
3263 if (EI.isCtrlDep())
3264 return "color=blue,style=dashed";
3265 return "";
3266 }
3267
3268 static std::string getNodeLabel(const SUnit *SU, const ScheduleDAG *G) {
Alp Tokere69170a2014-06-26 22:52:05 +00003269 std::string Str;
3270 raw_string_ostream SS(Str);
Andrew Trickd7f890e2013-12-28 21:56:47 +00003271 const ScheduleDAGMI *DAG = static_cast<const ScheduleDAGMI*>(G);
3272 const SchedDFSResult *DFS = DAG->hasVRegLiveness() ?
Craig Topperc0196b12014-04-14 00:51:57 +00003273 static_cast<const ScheduleDAGMILive*>(G)->getDFSResult() : nullptr;
Andrew Trick7609b7d2013-09-06 17:32:42 +00003274 SS << "SU:" << SU->NodeNum;
3275 if (DFS)
3276 SS << " I:" << DFS->getNumInstrs(SU);
Andrew Trickea9fd952013-01-25 07:45:29 +00003277 return SS.str();
3278 }
3279 static std::string getNodeDescription(const SUnit *SU, const ScheduleDAG *G) {
3280 return G->getGraphNodeLabel(SU);
3281 }
3282
Andrew Trickd7f890e2013-12-28 21:56:47 +00003283 static std::string getNodeAttributes(const SUnit *N, const ScheduleDAG *G) {
Andrew Trickea9fd952013-01-25 07:45:29 +00003284 std::string Str("shape=Mrecord");
Andrew Trickd7f890e2013-12-28 21:56:47 +00003285 const ScheduleDAGMI *DAG = static_cast<const ScheduleDAGMI*>(G);
3286 const SchedDFSResult *DFS = DAG->hasVRegLiveness() ?
Craig Topperc0196b12014-04-14 00:51:57 +00003287 static_cast<const ScheduleDAGMILive*>(G)->getDFSResult() : nullptr;
Andrew Trickea9fd952013-01-25 07:45:29 +00003288 if (DFS) {
3289 Str += ",style=filled,fillcolor=\"#";
3290 Str += DOT::getColorString(DFS->getSubtreeID(N));
3291 Str += '"';
3292 }
3293 return Str;
3294 }
3295};
3296} // namespace llvm
3297#endif // NDEBUG
3298
3299/// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
3300/// rendered using 'dot'.
3301///
3302void ScheduleDAGMI::viewGraph(const Twine &Name, const Twine &Title) {
3303#ifndef NDEBUG
3304 ViewGraph(this, Name, false, Title);
3305#else
3306 errs() << "ScheduleDAGMI::viewGraph is only available in debug builds on "
3307 << "systems with Graphviz or gv!\n";
3308#endif // NDEBUG
3309}
3310
3311/// Out-of-line implementation with no arguments is handy for gdb.
3312void ScheduleDAGMI::viewGraph() {
3313 viewGraph(getDAGName(), "Scheduling-Units Graph for " + getDAGName());
3314}