blob: 7cff5d12238fb37768c7c430dbbf120a2461222f [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)
Chandler Carruth7b560d42015-09-09 17:55:00 +0000149INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
Andrew Tricke77e84e2012-01-13 06:30:30 +0000150INITIALIZE_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>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000164 AU.addRequired<AAResultsWrapperPass>();
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
Eric Christopher5f141b02015-03-11 22:56:10 +0000212static cl::opt<bool> EnableMachineSched(
213 "enable-misched",
214 cl::desc("Enable the machine instruction scheduling pass."), cl::init(true),
215 cl::Hidden);
216
Andrew Trick8823dec2012-03-14 04:00:41 +0000217/// Forward declare the standard machine scheduler. This will be used as the
Andrew Trick45300682012-03-09 00:52:20 +0000218/// default scheduler if the target does not set a default.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000219static ScheduleDAGInstrs *createGenericSchedLive(MachineSchedContext *C);
220static ScheduleDAGInstrs *createGenericSchedPostRA(MachineSchedContext *C);
Andrew Trickcc45a282012-04-24 18:04:34 +0000221
222/// Decrement this iterator until reaching the top or a non-debug instr.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000223static MachineBasicBlock::const_iterator
224priorNonDebug(MachineBasicBlock::const_iterator I,
225 MachineBasicBlock::const_iterator Beg) {
Andrew Trickcc45a282012-04-24 18:04:34 +0000226 assert(I != Beg && "reached the top of the region, cannot decrement");
227 while (--I != Beg) {
228 if (!I->isDebugValue())
229 break;
230 }
231 return I;
232}
233
Andrew Trick2bc74c22013-08-30 04:36:57 +0000234/// Non-const version.
235static MachineBasicBlock::iterator
236priorNonDebug(MachineBasicBlock::iterator I,
237 MachineBasicBlock::const_iterator Beg) {
238 return const_cast<MachineInstr*>(
239 &*priorNonDebug(MachineBasicBlock::const_iterator(I), Beg));
240}
241
Andrew Trickcc45a282012-04-24 18:04:34 +0000242/// If this iterator is a debug value, increment until reaching the End or a
243/// non-debug instruction.
Andrew Trick2c4f8b72013-08-31 05:17:58 +0000244static MachineBasicBlock::const_iterator
245nextIfDebug(MachineBasicBlock::const_iterator I,
246 MachineBasicBlock::const_iterator End) {
Andrew Trick463b2f12012-05-17 18:35:03 +0000247 for(; I != End; ++I) {
Andrew Trickcc45a282012-04-24 18:04:34 +0000248 if (!I->isDebugValue())
249 break;
250 }
251 return I;
252}
253
Andrew Trick2c4f8b72013-08-31 05:17:58 +0000254/// Non-const version.
255static MachineBasicBlock::iterator
256nextIfDebug(MachineBasicBlock::iterator I,
257 MachineBasicBlock::const_iterator End) {
258 // Cast the return value to nonconst MachineInstr, then cast to an
259 // instr_iterator, which does not check for null, finally return a
260 // bundle_iterator.
261 return MachineBasicBlock::instr_iterator(
262 const_cast<MachineInstr*>(
263 &*nextIfDebug(MachineBasicBlock::const_iterator(I), End)));
264}
265
Andrew Trickdc4c1ad2013-09-24 17:11:19 +0000266/// Instantiate a ScheduleDAGInstrs that will be owned by the caller.
Andrew Trick978674b2013-09-20 05:14:41 +0000267ScheduleDAGInstrs *MachineScheduler::createMachineScheduler() {
268 // Select the scheduler, or set the default.
269 MachineSchedRegistry::ScheduleDAGCtor Ctor = MachineSchedOpt;
270 if (Ctor != useDefaultMachineSched)
271 return Ctor(this);
272
273 // Get the default scheduler set by the target for this function.
274 ScheduleDAGInstrs *Scheduler = PassConfig->createMachineScheduler(this);
275 if (Scheduler)
276 return Scheduler;
277
278 // Default to GenericScheduler.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000279 return createGenericSchedLive(this);
Andrew Trick978674b2013-09-20 05:14:41 +0000280}
281
Andrew Trick17080b92013-12-28 21:56:51 +0000282/// Instantiate a ScheduleDAGInstrs for PostRA scheduling that will be owned by
283/// the caller. We don't have a command line option to override the postRA
284/// scheduler. The Target must configure it.
285ScheduleDAGInstrs *PostMachineScheduler::createPostMachineScheduler() {
286 // Get the postRA scheduler set by the target for this function.
287 ScheduleDAGInstrs *Scheduler = PassConfig->createPostMachineScheduler(this);
288 if (Scheduler)
289 return Scheduler;
290
291 // Default to GenericScheduler.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000292 return createGenericSchedPostRA(this);
Andrew Trick17080b92013-12-28 21:56:51 +0000293}
294
Andrew Trick72515be2012-03-14 04:00:38 +0000295/// Top-level MachineScheduler pass driver.
296///
297/// Visit blocks in function order. Divide each block into scheduling regions
Andrew Trick8823dec2012-03-14 04:00:41 +0000298/// and visit them bottom-up. Visiting regions bottom-up is not required, but is
299/// consistent with the DAG builder, which traverses the interior of the
300/// scheduling regions bottom-up.
Andrew Trick72515be2012-03-14 04:00:38 +0000301///
302/// This design avoids exposing scheduling boundaries to the DAG builder,
Andrew Trick8823dec2012-03-14 04:00:41 +0000303/// simplifying the DAG builder's support for "special" target instructions.
304/// At the same time the design allows target schedulers to operate across
Andrew Trick72515be2012-03-14 04:00:38 +0000305/// scheduling boundaries, for example to bundle the boudary instructions
306/// without reordering them. This creates complexity, because the target
307/// scheduler must update the RegionBegin and RegionEnd positions cached by
308/// ScheduleDAGInstrs whenever adding or removing instructions. A much simpler
309/// design would be to split blocks at scheduling boundaries, but LLVM has a
310/// general bias against block splitting purely for implementation simplicity.
Andrew Tricke1c034f2012-01-17 06:55:03 +0000311bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) {
Eric Christopher5f141b02015-03-11 22:56:10 +0000312 if (EnableMachineSched.getNumOccurrences()) {
313 if (!EnableMachineSched)
314 return false;
315 } else if (!mf.getSubtarget().enableMachineScheduler())
316 return false;
317
Andrew Trickc5d70082012-05-10 21:06:21 +0000318 DEBUG(dbgs() << "Before MISsched:\n"; mf.print(dbgs()));
319
Andrew Tricke77e84e2012-01-13 06:30:30 +0000320 // Initialize the context of the pass.
321 MF = &mf;
322 MLI = &getAnalysis<MachineLoopInfo>();
323 MDT = &getAnalysis<MachineDominatorTree>();
Andrew Trick45300682012-03-09 00:52:20 +0000324 PassConfig = &getAnalysis<TargetPassConfig>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000325 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
Andrew Trick02a80da2012-03-08 01:41:12 +0000326
Lang Hamesad33d5a2012-01-27 22:36:19 +0000327 LIS = &getAnalysis<LiveIntervals>();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000328
Andrew Trick48f2a722013-03-08 05:40:34 +0000329 if (VerifyScheduling) {
Andrew Trick97064962013-07-25 07:26:26 +0000330 DEBUG(LIS->dump());
Andrew Trick48f2a722013-03-08 05:40:34 +0000331 MF->verify(this, "Before machine scheduling.");
332 }
Andrew Trick4d4b5462012-04-24 20:36:19 +0000333 RegClassInfo->runOnMachineFunction(*MF);
Andrew Trick88639922012-04-24 17:56:43 +0000334
Andrew Trick978674b2013-09-20 05:14:41 +0000335 // Instantiate the selected scheduler for this target, function, and
336 // optimization level.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000337 std::unique_ptr<ScheduleDAGInstrs> Scheduler(createMachineScheduler());
Andrew Trickd7f890e2013-12-28 21:56:47 +0000338 scheduleRegions(*Scheduler);
339
340 DEBUG(LIS->dump());
341 if (VerifyScheduling)
342 MF->verify(this, "After machine scheduling.");
343 return true;
344}
345
Andrew Trick17080b92013-12-28 21:56:51 +0000346bool PostMachineScheduler::runOnMachineFunction(MachineFunction &mf) {
Paul Robinson7c99ec52014-03-31 17:43:35 +0000347 if (skipOptnoneFunction(*mf.getFunction()))
348 return false;
349
Matthias Braun39a2afc2015-06-13 03:42:16 +0000350 if (!mf.getSubtarget().enablePostRAScheduler()) {
Andrew Trick8d2ee372014-06-04 07:06:27 +0000351 DEBUG(dbgs() << "Subtarget disables post-MI-sched.\n");
352 return false;
353 }
Andrew Trick17080b92013-12-28 21:56:51 +0000354 DEBUG(dbgs() << "Before post-MI-sched:\n"; mf.print(dbgs()));
355
356 // Initialize the context of the pass.
357 MF = &mf;
358 PassConfig = &getAnalysis<TargetPassConfig>();
359
360 if (VerifyScheduling)
361 MF->verify(this, "Before post machine scheduling.");
362
363 // Instantiate the selected scheduler for this target, function, and
364 // optimization level.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000365 std::unique_ptr<ScheduleDAGInstrs> Scheduler(createPostMachineScheduler());
Andrew Trick17080b92013-12-28 21:56:51 +0000366 scheduleRegions(*Scheduler);
367
368 if (VerifyScheduling)
369 MF->verify(this, "After post machine scheduling.");
370 return true;
371}
372
Andrew Trickd14d7c22013-12-28 21:56:57 +0000373/// Return true of the given instruction should not be included in a scheduling
374/// region.
375///
376/// MachineScheduler does not currently support scheduling across calls. To
377/// handle calls, the DAG builder needs to be modified to create register
378/// anti/output dependencies on the registers clobbered by the call's regmask
379/// operand. In PreRA scheduling, the stack pointer adjustment already prevents
380/// scheduling across calls. In PostRA scheduling, we need the isCall to enforce
381/// the boundary, but there would be no benefit to postRA scheduling across
382/// calls this late anyway.
383static bool isSchedBoundary(MachineBasicBlock::iterator MI,
384 MachineBasicBlock *MBB,
385 MachineFunction *MF,
386 const TargetInstrInfo *TII,
387 bool IsPostRA) {
388 return MI->isCall() || TII->isSchedulingBoundary(MI, MBB, *MF);
389}
390
Andrew Trickd7f890e2013-12-28 21:56:47 +0000391/// Main driver for both MachineScheduler and PostMachineScheduler.
392void MachineSchedulerBase::scheduleRegions(ScheduleDAGInstrs &Scheduler) {
Eric Christopherfc6de422014-08-05 02:39:49 +0000393 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
Andrew Trickd14d7c22013-12-28 21:56:57 +0000394 bool IsPostRA = Scheduler.isPostRA();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000395
396 // Visit all machine basic blocks.
Andrew Trick88639922012-04-24 17:56:43 +0000397 //
398 // TODO: Visit blocks in global postorder or postorder within the bottom-up
399 // loop tree. Then we can optionally compute global RegPressure.
Andrew Tricke77e84e2012-01-13 06:30:30 +0000400 for (MachineFunction::iterator MBB = MF->begin(), MBBEnd = MF->end();
401 MBB != MBBEnd; ++MBB) {
402
Andrew Trickd7f890e2013-12-28 21:56:47 +0000403 Scheduler.startBlock(MBB);
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000404
Andrew Trick33e05d72013-12-28 21:57:02 +0000405#ifndef NDEBUG
406 if (SchedOnlyFunc.getNumOccurrences() && SchedOnlyFunc != MF->getName())
407 continue;
408 if (SchedOnlyBlock.getNumOccurrences()
409 && (int)SchedOnlyBlock != MBB->getNumber())
410 continue;
411#endif
412
Andrew Trick7e120f42012-01-14 02:17:09 +0000413 // Break the block into scheduling regions [I, RegionEnd), and schedule each
Sylvestre Ledru35521e22012-07-23 08:51:15 +0000414 // region as soon as it is discovered. RegionEnd points the scheduling
Andrew Trickaf1bee72012-03-09 22:34:56 +0000415 // boundary at the bottom of the region. The DAG does not include RegionEnd,
416 // but the region does (i.e. the next RegionEnd is above the previous
417 // RegionBegin). If the current block has no terminator then RegionEnd ==
418 // MBB->end() for the bottom region.
419 //
420 // The Scheduler may insert instructions during either schedule() or
421 // exitRegion(), even for empty regions. So the local iterators 'I' and
422 // 'RegionEnd' are invalid across these calls.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000423 //
424 // MBB::size() uses instr_iterator to count. Here we need a bundle to count
425 // as a single instruction.
426 unsigned RemainingInstrs = std::distance(MBB->begin(), MBB->end());
Andrew Tricka21daf72012-03-09 03:46:39 +0000427 for(MachineBasicBlock::iterator RegionEnd = MBB->end();
Andrew Trickd7f890e2013-12-28 21:56:47 +0000428 RegionEnd != MBB->begin(); RegionEnd = Scheduler.begin()) {
Andrew Trick88639922012-04-24 17:56:43 +0000429
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000430 // Avoid decrementing RegionEnd for blocks with no terminator.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000431 if (RegionEnd != MBB->end() ||
432 isSchedBoundary(std::prev(RegionEnd), MBB, MF, TII, IsPostRA)) {
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000433 --RegionEnd;
434 // Count the boundary instruction.
Andrew Trick4d1fa712012-11-06 07:10:34 +0000435 --RemainingInstrs;
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000436 }
437
Andrew Trick7e120f42012-01-14 02:17:09 +0000438 // The next region starts above the previous region. Look backward in the
439 // instruction stream until we find the nearest boundary.
Andrew Tricka53e1012013-08-23 17:48:33 +0000440 unsigned NumRegionInstrs = 0;
Andrew Trick7e120f42012-01-14 02:17:09 +0000441 MachineBasicBlock::iterator I = RegionEnd;
Andrea Di Biagiod65fd9f2014-12-12 15:09:58 +0000442 for(;I != MBB->begin(); --I, --RemainingInstrs) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000443 if (isSchedBoundary(std::prev(I), MBB, MF, TII, IsPostRA))
Andrew Trick7e120f42012-01-14 02:17:09 +0000444 break;
Andrea Di Biagiod65fd9f2014-12-12 15:09:58 +0000445 if (!I->isDebugValue())
446 ++NumRegionInstrs;
Andrew Trick7e120f42012-01-14 02:17:09 +0000447 }
Andrew Trick60cf03e2012-03-07 05:21:52 +0000448 // Notify the scheduler of the region, even if we may skip scheduling
449 // it. Perhaps it still needs to be bundled.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000450 Scheduler.enterRegion(MBB, I, RegionEnd, NumRegionInstrs);
Andrew Trick60cf03e2012-03-07 05:21:52 +0000451
452 // Skip empty scheduling regions (0 or 1 schedulable instructions).
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000453 if (I == RegionEnd || I == std::prev(RegionEnd)) {
Andrew Trick60cf03e2012-03-07 05:21:52 +0000454 // Close the current region. Bundle the terminator if needed.
Andrew Trickaf1bee72012-03-09 22:34:56 +0000455 // This invalidates 'RegionEnd' and 'I'.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000456 Scheduler.exitRegion();
Andrew Trick7ccdc5c2012-01-17 06:55:07 +0000457 continue;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000458 }
Andrew Trickd14d7c22013-12-28 21:56:57 +0000459 DEBUG(dbgs() << "********** " << ((Scheduler.isPostRA()) ? "PostRA " : "")
460 << "MI Scheduling **********\n");
Craig Toppera538d832012-08-22 06:07:19 +0000461 DEBUG(dbgs() << MF->getName()
Andrew Trick54b2ce32013-01-25 07:45:31 +0000462 << ":BB#" << MBB->getNumber() << " " << MBB->getName()
463 << "\n From: " << *I << " To: ";
Andrew Tricke57583a2012-02-08 02:17:21 +0000464 if (RegionEnd != MBB->end()) dbgs() << *RegionEnd;
465 else dbgs() << "End";
Andrew Tricka53e1012013-08-23 17:48:33 +0000466 dbgs() << " RegionInstrs: " << NumRegionInstrs
467 << " Remaining: " << RemainingInstrs << "\n");
Gerolf Hoflehnerb5220dc2014-08-07 21:49:44 +0000468 if (DumpCriticalPathLength) {
469 errs() << MF->getName();
470 errs() << ":BB# " << MBB->getNumber();
471 errs() << " " << MBB->getName() << " \n";
472 }
Andrew Trick7ccdc5c2012-01-17 06:55:07 +0000473
Andrew Trick1c0ec452012-03-09 03:46:42 +0000474 // Schedule a region: possibly reorder instructions.
Andrew Trickaf1bee72012-03-09 22:34:56 +0000475 // This invalidates 'RegionEnd' and 'I'.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000476 Scheduler.schedule();
Andrew Trick1c0ec452012-03-09 03:46:42 +0000477
478 // Close the current region.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000479 Scheduler.exitRegion();
Andrew Trick60cf03e2012-03-07 05:21:52 +0000480
481 // Scheduling has invalidated the current iterator 'I'. Ask the
482 // scheduler for the top of it's scheduled region.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000483 RegionEnd = Scheduler.begin();
Andrew Trick7e120f42012-01-14 02:17:09 +0000484 }
Andrew Trick4d1fa712012-11-06 07:10:34 +0000485 assert(RemainingInstrs == 0 && "Instruction count mismatch!");
Andrew Trickd7f890e2013-12-28 21:56:47 +0000486 Scheduler.finishBlock();
Andrew Trickd14d7c22013-12-28 21:56:57 +0000487 if (Scheduler.isPostRA()) {
488 // FIXME: Ideally, no further passes should rely on kill flags. However,
489 // thumb2 size reduction is currently an exception.
490 Scheduler.fixupKills(MBB);
491 }
Andrew Tricke77e84e2012-01-13 06:30:30 +0000492 }
Andrew Trickd7f890e2013-12-28 21:56:47 +0000493 Scheduler.finalizeSchedule();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000494}
495
Andrew Trickd7f890e2013-12-28 21:56:47 +0000496void MachineSchedulerBase::print(raw_ostream &O, const Module* m) const {
Andrew Tricke77e84e2012-01-13 06:30:30 +0000497 // unimplemented
498}
499
Alp Tokerd8d510a2014-07-01 21:19:13 +0000500LLVM_DUMP_METHOD
Andrew Trick7a8e1002012-09-11 00:39:15 +0000501void ReadyQueue::dump() {
Andrew Trickd40d0f22013-06-17 21:45:05 +0000502 dbgs() << Name << ": ";
Andrew Trick7a8e1002012-09-11 00:39:15 +0000503 for (unsigned i = 0, e = Queue.size(); i < e; ++i)
504 dbgs() << Queue[i]->NodeNum << " ";
505 dbgs() << "\n";
506}
Andrew Trick8823dec2012-03-14 04:00:41 +0000507
508//===----------------------------------------------------------------------===//
Andrew Trickd7f890e2013-12-28 21:56:47 +0000509// ScheduleDAGMI - Basic machine instruction scheduling. This is
510// independent of PreRA/PostRA scheduling and involves no extra book-keeping for
511// virtual registers.
512// ===----------------------------------------------------------------------===/
Andrew Trick8823dec2012-03-14 04:00:41 +0000513
David Blaikie422b93d2014-04-21 20:32:32 +0000514// Provide a vtable anchor.
Andrew Trick44f750a2013-01-25 04:01:04 +0000515ScheduleDAGMI::~ScheduleDAGMI() {
Andrew Trick44f750a2013-01-25 04:01:04 +0000516}
517
Andrew Trick85a1d4c2013-04-24 15:54:43 +0000518bool ScheduleDAGMI::canAddEdge(SUnit *SuccSU, SUnit *PredSU) {
519 return SuccSU == &ExitSU || !Topo.IsReachable(PredSU, SuccSU);
520}
521
Andrew Tricka7714a02012-11-12 19:40:10 +0000522bool ScheduleDAGMI::addEdge(SUnit *SuccSU, const SDep &PredDep) {
Andrew Trick263280242012-11-12 19:52:20 +0000523 if (SuccSU != &ExitSU) {
524 // Do not use WillCreateCycle, it assumes SD scheduling.
525 // If Pred is reachable from Succ, then the edge creates a cycle.
526 if (Topo.IsReachable(PredDep.getSUnit(), SuccSU))
527 return false;
528 Topo.AddPred(SuccSU, PredDep.getSUnit());
529 }
Andrew Tricka7714a02012-11-12 19:40:10 +0000530 SuccSU->addPred(PredDep, /*Required=*/!PredDep.isArtificial());
531 // Return true regardless of whether a new edge needed to be inserted.
532 return true;
533}
534
Andrew Trick02a80da2012-03-08 01:41:12 +0000535/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. When
536/// NumPredsLeft reaches zero, release the successor node.
Andrew Trick61f1a272012-05-24 22:11:09 +0000537///
538/// FIXME: Adjust SuccSU height based on MinLatency.
Andrew Trick8823dec2012-03-14 04:00:41 +0000539void ScheduleDAGMI::releaseSucc(SUnit *SU, SDep *SuccEdge) {
Andrew Trick02a80da2012-03-08 01:41:12 +0000540 SUnit *SuccSU = SuccEdge->getSUnit();
541
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000542 if (SuccEdge->isWeak()) {
543 --SuccSU->WeakPredsLeft;
Andrew Tricka7714a02012-11-12 19:40:10 +0000544 if (SuccEdge->isCluster())
545 NextClusterSucc = SuccSU;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000546 return;
547 }
Andrew Trick02a80da2012-03-08 01:41:12 +0000548#ifndef NDEBUG
549 if (SuccSU->NumPredsLeft == 0) {
550 dbgs() << "*** Scheduling failed! ***\n";
551 SuccSU->dump(this);
552 dbgs() << " has been released too many times!\n";
Craig Topperc0196b12014-04-14 00:51:57 +0000553 llvm_unreachable(nullptr);
Andrew Trick02a80da2012-03-08 01:41:12 +0000554 }
555#endif
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000556 // SU->TopReadyCycle was set to CurrCycle when it was scheduled. However,
557 // CurrCycle may have advanced since then.
558 if (SuccSU->TopReadyCycle < SU->TopReadyCycle + SuccEdge->getLatency())
559 SuccSU->TopReadyCycle = SU->TopReadyCycle + SuccEdge->getLatency();
560
Andrew Trick02a80da2012-03-08 01:41:12 +0000561 --SuccSU->NumPredsLeft;
562 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
Andrew Trick8823dec2012-03-14 04:00:41 +0000563 SchedImpl->releaseTopNode(SuccSU);
Andrew Trick02a80da2012-03-08 01:41:12 +0000564}
565
566/// releaseSuccessors - Call releaseSucc on each of SU's successors.
Andrew Trick8823dec2012-03-14 04:00:41 +0000567void ScheduleDAGMI::releaseSuccessors(SUnit *SU) {
Andrew Trick02a80da2012-03-08 01:41:12 +0000568 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
569 I != E; ++I) {
570 releaseSucc(SU, &*I);
571 }
572}
573
Andrew Trick8823dec2012-03-14 04:00:41 +0000574/// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. When
575/// NumSuccsLeft reaches zero, release the predecessor node.
Andrew Trick61f1a272012-05-24 22:11:09 +0000576///
577/// FIXME: Adjust PredSU height based on MinLatency.
Andrew Trick8823dec2012-03-14 04:00:41 +0000578void ScheduleDAGMI::releasePred(SUnit *SU, SDep *PredEdge) {
579 SUnit *PredSU = PredEdge->getSUnit();
580
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000581 if (PredEdge->isWeak()) {
582 --PredSU->WeakSuccsLeft;
Andrew Tricka7714a02012-11-12 19:40:10 +0000583 if (PredEdge->isCluster())
584 NextClusterPred = PredSU;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000585 return;
586 }
Andrew Trick8823dec2012-03-14 04:00:41 +0000587#ifndef NDEBUG
588 if (PredSU->NumSuccsLeft == 0) {
589 dbgs() << "*** Scheduling failed! ***\n";
590 PredSU->dump(this);
591 dbgs() << " has been released too many times!\n";
Craig Topperc0196b12014-04-14 00:51:57 +0000592 llvm_unreachable(nullptr);
Andrew Trick8823dec2012-03-14 04:00:41 +0000593 }
594#endif
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000595 // SU->BotReadyCycle was set to CurrCycle when it was scheduled. However,
596 // CurrCycle may have advanced since then.
597 if (PredSU->BotReadyCycle < SU->BotReadyCycle + PredEdge->getLatency())
598 PredSU->BotReadyCycle = SU->BotReadyCycle + PredEdge->getLatency();
599
Andrew Trick8823dec2012-03-14 04:00:41 +0000600 --PredSU->NumSuccsLeft;
601 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU)
602 SchedImpl->releaseBottomNode(PredSU);
603}
604
605/// releasePredecessors - Call releasePred on each of SU's predecessors.
606void ScheduleDAGMI::releasePredecessors(SUnit *SU) {
607 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
608 I != E; ++I) {
609 releasePred(SU, &*I);
610 }
611}
612
Andrew Trickd7f890e2013-12-28 21:56:47 +0000613/// enterRegion - Called back from MachineScheduler::runOnMachineFunction after
614/// crossing a scheduling boundary. [begin, end) includes all instructions in
615/// the region, including the boundary itself and single-instruction regions
616/// that don't get scheduled.
617void ScheduleDAGMI::enterRegion(MachineBasicBlock *bb,
618 MachineBasicBlock::iterator begin,
619 MachineBasicBlock::iterator end,
620 unsigned regioninstrs)
621{
622 ScheduleDAGInstrs::enterRegion(bb, begin, end, regioninstrs);
623
624 SchedImpl->initPolicy(begin, end, regioninstrs);
625}
626
Andrew Tricke833e1c2013-04-13 06:07:40 +0000627/// This is normally called from the main scheduler loop but may also be invoked
628/// by the scheduling strategy to perform additional code motion.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000629void ScheduleDAGMI::moveInstruction(
630 MachineInstr *MI, MachineBasicBlock::iterator InsertPos) {
Andrew Trick463b2f12012-05-17 18:35:03 +0000631 // Advance RegionBegin if the first instruction moves down.
Andrew Trick54f7def2012-03-21 04:12:10 +0000632 if (&*RegionBegin == MI)
Andrew Trick463b2f12012-05-17 18:35:03 +0000633 ++RegionBegin;
634
635 // Update the instruction stream.
Andrew Trick8823dec2012-03-14 04:00:41 +0000636 BB->splice(InsertPos, BB, MI);
Andrew Trick463b2f12012-05-17 18:35:03 +0000637
638 // Update LiveIntervals
Andrew Trickd7f890e2013-12-28 21:56:47 +0000639 if (LIS)
640 LIS->handleMove(MI, /*UpdateFlags=*/true);
Andrew Trick463b2f12012-05-17 18:35:03 +0000641
642 // Recede RegionBegin if an instruction moves above the first.
Andrew Trick8823dec2012-03-14 04:00:41 +0000643 if (RegionBegin == InsertPos)
644 RegionBegin = MI;
645}
646
Andrew Trickde670c02012-03-21 04:12:07 +0000647bool ScheduleDAGMI::checkSchedLimit() {
648#ifndef NDEBUG
649 if (NumInstrsScheduled == MISchedCutoff && MISchedCutoff != ~0U) {
650 CurrentTop = CurrentBottom;
651 return false;
652 }
653 ++NumInstrsScheduled;
654#endif
655 return true;
656}
657
Andrew Trickd7f890e2013-12-28 21:56:47 +0000658/// Per-region scheduling driver, called back from
659/// MachineScheduler::runOnMachineFunction. This is a simplified driver that
660/// does not consider liveness or register pressure. It is useful for PostRA
661/// scheduling and potentially other custom schedulers.
662void ScheduleDAGMI::schedule() {
663 // Build the DAG.
664 buildSchedGraph(AA);
665
666 Topo.InitDAGTopologicalSorting();
667
668 postprocessDAG();
669
670 SmallVector<SUnit*, 8> TopRoots, BotRoots;
671 findRootsAndBiasEdges(TopRoots, BotRoots);
672
673 // Initialize the strategy before modifying the DAG.
674 // This may initialize a DFSResult to be used for queue priority.
675 SchedImpl->initialize(this);
676
677 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
678 SUnits[su].dumpAll(this));
679 if (ViewMISchedDAGs) viewGraph();
680
681 // Initialize ready queues now that the DAG and priority data are finalized.
682 initQueues(TopRoots, BotRoots);
683
684 bool IsTopNode = false;
685 while (SUnit *SU = SchedImpl->pickNode(IsTopNode)) {
686 assert(!SU->isScheduled && "Node already scheduled");
687 if (!checkSchedLimit())
688 break;
689
690 MachineInstr *MI = SU->getInstr();
691 if (IsTopNode) {
692 assert(SU->isTopReady() && "node still has unscheduled dependencies");
693 if (&*CurrentTop == MI)
694 CurrentTop = nextIfDebug(++CurrentTop, CurrentBottom);
695 else
696 moveInstruction(MI, CurrentTop);
697 }
698 else {
699 assert(SU->isBottomReady() && "node still has unscheduled dependencies");
700 MachineBasicBlock::iterator priorII =
701 priorNonDebug(CurrentBottom, CurrentTop);
702 if (&*priorII == MI)
703 CurrentBottom = priorII;
704 else {
705 if (&*CurrentTop == MI)
706 CurrentTop = nextIfDebug(++CurrentTop, priorII);
707 moveInstruction(MI, CurrentBottom);
708 CurrentBottom = MI;
709 }
710 }
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000711 // Notify the scheduling strategy before updating the DAG.
Andrew Trick491e34a2014-06-12 22:36:28 +0000712 // This sets the scheduled node's ReadyCycle to CurrCycle. When updateQueues
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000713 // runs, it can then use the accurate ReadyCycle time to determine whether
714 // newly released nodes can move to the readyQ.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000715 SchedImpl->schedNode(SU, IsTopNode);
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000716
717 updateQueues(SU, IsTopNode);
Andrew Trickd7f890e2013-12-28 21:56:47 +0000718 }
719 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone.");
720
721 placeDebugValues();
722
723 DEBUG({
724 unsigned BBNum = begin()->getParent()->getNumber();
725 dbgs() << "*** Final schedule for BB#" << BBNum << " ***\n";
726 dumpSchedule();
727 dbgs() << '\n';
728 });
729}
730
731/// Apply each ScheduleDAGMutation step in order.
732void ScheduleDAGMI::postprocessDAG() {
733 for (unsigned i = 0, e = Mutations.size(); i < e; ++i) {
734 Mutations[i]->apply(this);
735 }
736}
737
738void ScheduleDAGMI::
739findRootsAndBiasEdges(SmallVectorImpl<SUnit*> &TopRoots,
740 SmallVectorImpl<SUnit*> &BotRoots) {
741 for (std::vector<SUnit>::iterator
742 I = SUnits.begin(), E = SUnits.end(); I != E; ++I) {
743 SUnit *SU = &(*I);
744 assert(!SU->isBoundaryNode() && "Boundary node should not be in SUnits");
745
746 // Order predecessors so DFSResult follows the critical path.
747 SU->biasCriticalPath();
748
749 // A SUnit is ready to top schedule if it has no predecessors.
750 if (!I->NumPredsLeft)
751 TopRoots.push_back(SU);
752 // A SUnit is ready to bottom schedule if it has no successors.
753 if (!I->NumSuccsLeft)
754 BotRoots.push_back(SU);
755 }
756 ExitSU.biasCriticalPath();
757}
758
759/// Identify DAG roots and setup scheduler queues.
760void ScheduleDAGMI::initQueues(ArrayRef<SUnit*> TopRoots,
761 ArrayRef<SUnit*> BotRoots) {
Craig Topperc0196b12014-04-14 00:51:57 +0000762 NextClusterSucc = nullptr;
763 NextClusterPred = nullptr;
Andrew Trickd7f890e2013-12-28 21:56:47 +0000764
765 // Release all DAG roots for scheduling, not including EntrySU/ExitSU.
766 //
767 // Nodes with unreleased weak edges can still be roots.
768 // Release top roots in forward order.
769 for (SmallVectorImpl<SUnit*>::const_iterator
770 I = TopRoots.begin(), E = TopRoots.end(); I != E; ++I) {
771 SchedImpl->releaseTopNode(*I);
772 }
773 // Release bottom roots in reverse order so the higher priority nodes appear
774 // first. This is more natural and slightly more efficient.
775 for (SmallVectorImpl<SUnit*>::const_reverse_iterator
776 I = BotRoots.rbegin(), E = BotRoots.rend(); I != E; ++I) {
777 SchedImpl->releaseBottomNode(*I);
778 }
779
780 releaseSuccessors(&EntrySU);
781 releasePredecessors(&ExitSU);
782
783 SchedImpl->registerRoots();
784
785 // Advance past initial DebugValues.
786 CurrentTop = nextIfDebug(RegionBegin, RegionEnd);
787 CurrentBottom = RegionEnd;
788}
789
790/// Update scheduler queues after scheduling an instruction.
791void ScheduleDAGMI::updateQueues(SUnit *SU, bool IsTopNode) {
792 // Release dependent instructions for scheduling.
793 if (IsTopNode)
794 releaseSuccessors(SU);
795 else
796 releasePredecessors(SU);
797
798 SU->isScheduled = true;
799}
800
801/// Reinsert any remaining debug_values, just like the PostRA scheduler.
802void ScheduleDAGMI::placeDebugValues() {
803 // If first instruction was a DBG_VALUE then put it back.
804 if (FirstDbgValue) {
805 BB->splice(RegionBegin, BB, FirstDbgValue);
806 RegionBegin = FirstDbgValue;
807 }
808
809 for (std::vector<std::pair<MachineInstr *, MachineInstr *> >::iterator
810 DI = DbgValues.end(), DE = DbgValues.begin(); DI != DE; --DI) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000811 std::pair<MachineInstr *, MachineInstr *> P = *std::prev(DI);
Andrew Trickd7f890e2013-12-28 21:56:47 +0000812 MachineInstr *DbgValue = P.first;
813 MachineBasicBlock::iterator OrigPrevMI = P.second;
814 if (&*RegionBegin == DbgValue)
815 ++RegionBegin;
816 BB->splice(++OrigPrevMI, BB, DbgValue);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000817 if (OrigPrevMI == std::prev(RegionEnd))
Andrew Trickd7f890e2013-12-28 21:56:47 +0000818 RegionEnd = DbgValue;
819 }
820 DbgValues.clear();
Craig Topperc0196b12014-04-14 00:51:57 +0000821 FirstDbgValue = nullptr;
Andrew Trickd7f890e2013-12-28 21:56:47 +0000822}
823
824#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
825void ScheduleDAGMI::dumpSchedule() const {
826 for (MachineBasicBlock::iterator MI = begin(), ME = end(); MI != ME; ++MI) {
827 if (SUnit *SU = getSUnit(&(*MI)))
828 SU->dump(this);
829 else
830 dbgs() << "Missing SUnit\n";
831 }
832}
833#endif
834
835//===----------------------------------------------------------------------===//
836// ScheduleDAGMILive - Base class for MachineInstr scheduling with LiveIntervals
837// preservation.
838//===----------------------------------------------------------------------===//
839
840ScheduleDAGMILive::~ScheduleDAGMILive() {
841 delete DFSResult;
842}
843
Andrew Trick88639922012-04-24 17:56:43 +0000844/// enterRegion - Called back from MachineScheduler::runOnMachineFunction after
845/// crossing a scheduling boundary. [begin, end) includes all instructions in
846/// the region, including the boundary itself and single-instruction regions
847/// that don't get scheduled.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000848void ScheduleDAGMILive::enterRegion(MachineBasicBlock *bb,
Andrew Trick88639922012-04-24 17:56:43 +0000849 MachineBasicBlock::iterator begin,
850 MachineBasicBlock::iterator end,
Andrew Tricka53e1012013-08-23 17:48:33 +0000851 unsigned regioninstrs)
Andrew Trick88639922012-04-24 17:56:43 +0000852{
Andrew Trickd7f890e2013-12-28 21:56:47 +0000853 // ScheduleDAGMI initializes SchedImpl's per-region policy.
854 ScheduleDAGMI::enterRegion(bb, begin, end, regioninstrs);
Andrew Trick4add42f2012-05-10 21:06:10 +0000855
856 // For convenience remember the end of the liveness region.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000857 LiveRegionEnd = (RegionEnd == bb->end()) ? RegionEnd : std::next(RegionEnd);
Andrew Trick75e411c2013-09-06 17:32:34 +0000858
Andrew Trickb248b4a2013-09-06 17:32:47 +0000859 SUPressureDiffs.clear();
860
Andrew Trick75e411c2013-09-06 17:32:34 +0000861 ShouldTrackPressure = SchedImpl->shouldTrackPressure();
Andrew Trick4add42f2012-05-10 21:06:10 +0000862}
863
864// Setup the register pressure trackers for the top scheduled top and bottom
865// scheduled regions.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000866void ScheduleDAGMILive::initRegPressure() {
Andrew Trick4add42f2012-05-10 21:06:10 +0000867 TopRPTracker.init(&MF, RegClassInfo, LIS, BB, RegionBegin);
868 BotRPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd);
869
870 // Close the RPTracker to finalize live ins.
871 RPTracker.closeRegion();
872
Andrew Trick9c17eab2013-07-30 19:59:12 +0000873 DEBUG(RPTracker.dump());
Andrew Trick79d3eec2012-05-24 22:11:14 +0000874
Andrew Trick4add42f2012-05-10 21:06:10 +0000875 // Initialize the live ins and live outs.
876 TopRPTracker.addLiveRegs(RPTracker.getPressure().LiveInRegs);
877 BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs);
878
879 // Close one end of the tracker so we can call
880 // getMaxUpward/DownwardPressureDelta before advancing across any
881 // instructions. This converts currently live regs into live ins/outs.
882 TopRPTracker.closeTop();
883 BotRPTracker.closeBottom();
884
Andrew Trick9c17eab2013-07-30 19:59:12 +0000885 BotRPTracker.initLiveThru(RPTracker);
886 if (!BotRPTracker.getLiveThru().empty()) {
887 TopRPTracker.initLiveThru(BotRPTracker.getLiveThru());
888 DEBUG(dbgs() << "Live Thru: ";
889 dumpRegSetPressure(BotRPTracker.getLiveThru(), TRI));
890 };
891
Andrew Trick2bc74c22013-08-30 04:36:57 +0000892 // For each live out vreg reduce the pressure change associated with other
893 // uses of the same vreg below the live-out reaching def.
894 updatePressureDiffs(RPTracker.getPressure().LiveOutRegs);
895
Andrew Trick4add42f2012-05-10 21:06:10 +0000896 // Account for liveness generated by the region boundary.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000897 if (LiveRegionEnd != RegionEnd) {
898 SmallVector<unsigned, 8> LiveUses;
899 BotRPTracker.recede(&LiveUses);
900 updatePressureDiffs(LiveUses);
901 }
Andrew Trick4add42f2012-05-10 21:06:10 +0000902
903 assert(BotRPTracker.getPos() == RegionEnd && "Can't find the region bottom");
Andrew Trick22025772012-05-17 18:35:10 +0000904
905 // Cache the list of excess pressure sets in this region. This will also track
906 // the max pressure in the scheduled code for these sets.
907 RegionCriticalPSets.clear();
Jakub Staszakc641ada2013-01-25 21:44:27 +0000908 const std::vector<unsigned> &RegionPressure =
909 RPTracker.getPressure().MaxSetPressure;
Andrew Trick22025772012-05-17 18:35:10 +0000910 for (unsigned i = 0, e = RegionPressure.size(); i < e; ++i) {
Andrew Trick736dd9a2013-06-21 18:32:58 +0000911 unsigned Limit = RegClassInfo->getRegPressureSetLimit(i);
Andrew Trickb55db582013-06-21 18:33:01 +0000912 if (RegionPressure[i] > Limit) {
913 DEBUG(dbgs() << TRI->getRegPressureSetName(i)
914 << " Limit " << Limit
915 << " Actual " << RegionPressure[i] << "\n");
Andrew Trick1a831342013-08-30 03:49:48 +0000916 RegionCriticalPSets.push_back(PressureChange(i));
Andrew Trickb55db582013-06-21 18:33:01 +0000917 }
Andrew Trick22025772012-05-17 18:35:10 +0000918 }
919 DEBUG(dbgs() << "Excess PSets: ";
920 for (unsigned i = 0, e = RegionCriticalPSets.size(); i != e; ++i)
921 dbgs() << TRI->getRegPressureSetName(
Andrew Trick1a831342013-08-30 03:49:48 +0000922 RegionCriticalPSets[i].getPSet()) << " ";
Andrew Trick22025772012-05-17 18:35:10 +0000923 dbgs() << "\n");
924}
925
Andrew Trickd7f890e2013-12-28 21:56:47 +0000926void ScheduleDAGMILive::
Andrew Trickb248b4a2013-09-06 17:32:47 +0000927updateScheduledPressure(const SUnit *SU,
928 const std::vector<unsigned> &NewMaxPressure) {
929 const PressureDiff &PDiff = getPressureDiff(SU);
930 unsigned CritIdx = 0, CritEnd = RegionCriticalPSets.size();
931 for (PressureDiff::const_iterator I = PDiff.begin(), E = PDiff.end();
932 I != E; ++I) {
933 if (!I->isValid())
934 break;
935 unsigned ID = I->getPSet();
936 while (CritIdx != CritEnd && RegionCriticalPSets[CritIdx].getPSet() < ID)
937 ++CritIdx;
938 if (CritIdx != CritEnd && RegionCriticalPSets[CritIdx].getPSet() == ID) {
939 if ((int)NewMaxPressure[ID] > RegionCriticalPSets[CritIdx].getUnitInc()
940 && NewMaxPressure[ID] <= INT16_MAX)
941 RegionCriticalPSets[CritIdx].setUnitInc(NewMaxPressure[ID]);
942 }
943 unsigned Limit = RegClassInfo->getRegPressureSetLimit(ID);
944 if (NewMaxPressure[ID] >= Limit - 2) {
945 DEBUG(dbgs() << " " << TRI->getRegPressureSetName(ID) << ": "
Andrew Trick569dc65a2015-05-17 23:40:31 +0000946 << NewMaxPressure[ID]
947 << ((NewMaxPressure[ID] > Limit) ? " > " : " <= ") << Limit
948 << "(+ " << BotRPTracker.getLiveThru()[ID] << " livethru)\n");
Andrew Trickb248b4a2013-09-06 17:32:47 +0000949 }
Andrew Trick22025772012-05-17 18:35:10 +0000950 }
Andrew Trick88639922012-04-24 17:56:43 +0000951}
952
Andrew Trick2bc74c22013-08-30 04:36:57 +0000953/// Update the PressureDiff array for liveness after scheduling this
954/// instruction.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000955void ScheduleDAGMILive::updatePressureDiffs(ArrayRef<unsigned> LiveUses) {
Andrew Trick2bc74c22013-08-30 04:36:57 +0000956 for (unsigned LUIdx = 0, LUEnd = LiveUses.size(); LUIdx != LUEnd; ++LUIdx) {
957 /// FIXME: Currently assuming single-use physregs.
958 unsigned Reg = LiveUses[LUIdx];
Andrew Trickffdbefb2013-09-06 17:32:39 +0000959 DEBUG(dbgs() << " LiveReg: " << PrintVRegOrUnit(Reg, TRI) << "\n");
Andrew Trick2bc74c22013-08-30 04:36:57 +0000960 if (!TRI->isVirtualRegister(Reg))
961 continue;
Andrew Trickffdbefb2013-09-06 17:32:39 +0000962
Andrew Trick2bc74c22013-08-30 04:36:57 +0000963 // This may be called before CurrentBottom has been initialized. However,
964 // BotRPTracker must have a valid position. We want the value live into the
965 // instruction or live out of the block, so ask for the previous
966 // instruction's live-out.
967 const LiveInterval &LI = LIS->getInterval(Reg);
968 VNInfo *VNI;
Andrew Trick2c4f8b72013-08-31 05:17:58 +0000969 MachineBasicBlock::const_iterator I =
970 nextIfDebug(BotRPTracker.getPos(), BB->end());
971 if (I == BB->end())
Andrew Trick2bc74c22013-08-30 04:36:57 +0000972 VNI = LI.getVNInfoBefore(LIS->getMBBEndIdx(BB));
973 else {
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000974 LiveQueryResult LRQ = LI.Query(LIS->getInstructionIndex(I));
Andrew Trick2bc74c22013-08-30 04:36:57 +0000975 VNI = LRQ.valueIn();
976 }
977 // RegisterPressureTracker guarantees that readsReg is true for LiveUses.
978 assert(VNI && "No live value at use.");
979 for (VReg2UseMap::iterator
980 UI = VRegUses.find(Reg); UI != VRegUses.end(); ++UI) {
981 SUnit *SU = UI->SU;
Andrew Trickffdbefb2013-09-06 17:32:39 +0000982 DEBUG(dbgs() << " UpdateRegP: SU(" << SU->NodeNum << ") "
983 << *SU->getInstr());
Andrew Trick2bc74c22013-08-30 04:36:57 +0000984 // If this use comes before the reaching def, it cannot be a last use, so
985 // descrease its pressure change.
986 if (!SU->isScheduled && SU != &ExitSU) {
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000987 LiveQueryResult LRQ
988 = LI.Query(LIS->getInstructionIndex(SU->getInstr()));
Andrew Trick2bc74c22013-08-30 04:36:57 +0000989 if (LRQ.valueIn() == VNI)
990 getPressureDiff(SU).addPressureChange(Reg, true, &MRI);
991 }
992 }
993 }
994}
995
Andrew Trick8823dec2012-03-14 04:00:41 +0000996/// schedule - Called back from MachineScheduler::runOnMachineFunction
Andrew Trick88639922012-04-24 17:56:43 +0000997/// after setting up the current scheduling region. [RegionBegin, RegionEnd)
998/// only includes instructions that have DAG nodes, not scheduling boundaries.
Andrew Trick7a8e1002012-09-11 00:39:15 +0000999///
1000/// This is a skeletal driver, with all the functionality pushed into helpers,
Nick Lewycky06b0ea22015-08-18 22:41:58 +00001001/// so that it can be easily extended by experimental schedulers. Generally,
Andrew Trick7a8e1002012-09-11 00:39:15 +00001002/// implementing MachineSchedStrategy should be sufficient to implement a new
1003/// scheduling algorithm. However, if a scheduler further subclasses
Andrew Trickd7f890e2013-12-28 21:56:47 +00001004/// ScheduleDAGMILive then it will want to override this virtual method in order
1005/// to update any specialized state.
1006void ScheduleDAGMILive::schedule() {
Andrew Trick7a8e1002012-09-11 00:39:15 +00001007 buildDAGWithRegPressure();
1008
Andrew Tricka7714a02012-11-12 19:40:10 +00001009 Topo.InitDAGTopologicalSorting();
1010
Andrew Tricka2733e92012-09-14 17:22:42 +00001011 postprocessDAG();
1012
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001013 SmallVector<SUnit*, 8> TopRoots, BotRoots;
1014 findRootsAndBiasEdges(TopRoots, BotRoots);
1015
1016 // Initialize the strategy before modifying the DAG.
1017 // This may initialize a DFSResult to be used for queue priority.
1018 SchedImpl->initialize(this);
1019
Andrew Trick7a8e1002012-09-11 00:39:15 +00001020 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
1021 SUnits[su].dumpAll(this));
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001022 if (ViewMISchedDAGs) viewGraph();
Andrew Trick7a8e1002012-09-11 00:39:15 +00001023
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001024 // Initialize ready queues now that the DAG and priority data are finalized.
1025 initQueues(TopRoots, BotRoots);
Andrew Trick7a8e1002012-09-11 00:39:15 +00001026
Andrew Trickd7f890e2013-12-28 21:56:47 +00001027 if (ShouldTrackPressure) {
1028 assert(TopRPTracker.getPos() == RegionBegin && "bad initial Top tracker");
1029 TopRPTracker.setPos(CurrentTop);
1030 }
1031
Andrew Trick7a8e1002012-09-11 00:39:15 +00001032 bool IsTopNode = false;
1033 while (SUnit *SU = SchedImpl->pickNode(IsTopNode)) {
Andrew Trick984d98b2012-10-08 18:53:53 +00001034 assert(!SU->isScheduled && "Node already scheduled");
Andrew Trick7a8e1002012-09-11 00:39:15 +00001035 if (!checkSchedLimit())
1036 break;
1037
1038 scheduleMI(SU, IsTopNode);
1039
Andrew Trickd7f890e2013-12-28 21:56:47 +00001040 if (DFSResult) {
1041 unsigned SubtreeID = DFSResult->getSubtreeID(SU);
1042 if (!ScheduledTrees.test(SubtreeID)) {
1043 ScheduledTrees.set(SubtreeID);
1044 DFSResult->scheduleTree(SubtreeID);
1045 SchedImpl->scheduleTree(SubtreeID);
1046 }
1047 }
1048
1049 // Notify the scheduling strategy after updating the DAG.
1050 SchedImpl->schedNode(SU, IsTopNode);
Andrew Trick43adfb32015-03-27 06:10:13 +00001051
1052 updateQueues(SU, IsTopNode);
Andrew Trick7a8e1002012-09-11 00:39:15 +00001053 }
1054 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone.");
1055
1056 placeDebugValues();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001057
1058 DEBUG({
Andrew Trickcf7e6972012-11-28 03:42:47 +00001059 unsigned BBNum = begin()->getParent()->getNumber();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001060 dbgs() << "*** Final schedule for BB#" << BBNum << " ***\n";
1061 dumpSchedule();
1062 dbgs() << '\n';
1063 });
Andrew Trick7a8e1002012-09-11 00:39:15 +00001064}
1065
1066/// Build the DAG and setup three register pressure trackers.
Andrew Trickd7f890e2013-12-28 21:56:47 +00001067void ScheduleDAGMILive::buildDAGWithRegPressure() {
Andrew Trickb6e74712013-09-04 20:59:59 +00001068 if (!ShouldTrackPressure) {
1069 RPTracker.reset();
1070 RegionCriticalPSets.clear();
1071 buildSchedGraph(AA);
1072 return;
1073 }
1074
Andrew Trick4add42f2012-05-10 21:06:10 +00001075 // Initialize the register pressure tracker used by buildSchedGraph.
Andrew Trick9c17eab2013-07-30 19:59:12 +00001076 RPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd,
1077 /*TrackUntiedDefs=*/true);
Andrew Trick88639922012-04-24 17:56:43 +00001078
Andrew Trick4add42f2012-05-10 21:06:10 +00001079 // Account for liveness generate by the region boundary.
1080 if (LiveRegionEnd != RegionEnd)
1081 RPTracker.recede();
1082
1083 // Build the DAG, and compute current register pressure.
Andrew Trick1a831342013-08-30 03:49:48 +00001084 buildSchedGraph(AA, &RPTracker, &SUPressureDiffs);
Andrew Trick02a80da2012-03-08 01:41:12 +00001085
Andrew Trick4add42f2012-05-10 21:06:10 +00001086 // Initialize top/bottom trackers after computing region pressure.
1087 initRegPressure();
Andrew Trick7a8e1002012-09-11 00:39:15 +00001088}
Andrew Trick4add42f2012-05-10 21:06:10 +00001089
Andrew Trickd7f890e2013-12-28 21:56:47 +00001090void ScheduleDAGMILive::computeDFSResult() {
Andrew Trick44f750a2013-01-25 04:01:04 +00001091 if (!DFSResult)
1092 DFSResult = new SchedDFSResult(/*BottomU*/true, MinSubtreeSize);
1093 DFSResult->clear();
Andrew Trick44f750a2013-01-25 04:01:04 +00001094 ScheduledTrees.clear();
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001095 DFSResult->resize(SUnits.size());
1096 DFSResult->compute(SUnits);
Andrew Trick44f750a2013-01-25 04:01:04 +00001097 ScheduledTrees.resize(DFSResult->getNumSubtrees());
1098}
1099
Andrew Trick483f4192013-08-29 18:04:49 +00001100/// Compute the max cyclic critical path through the DAG. The scheduling DAG
1101/// only provides the critical path for single block loops. To handle loops that
1102/// span blocks, we could use the vreg path latencies provided by
1103/// MachineTraceMetrics instead. However, MachineTraceMetrics is not currently
1104/// available for use in the scheduler.
1105///
1106/// The cyclic path estimation identifies a def-use pair that crosses the back
Andrew Trickef80f502013-08-30 02:02:12 +00001107/// edge and considers the depth and height of the nodes. For example, consider
Andrew Trick483f4192013-08-29 18:04:49 +00001108/// the following instruction sequence where each instruction has unit latency
1109/// and defines an epomymous virtual register:
1110///
1111/// a->b(a,c)->c(b)->d(c)->exit
1112///
1113/// The cyclic critical path is a two cycles: b->c->b
1114/// The acyclic critical path is four cycles: a->b->c->d->exit
1115/// LiveOutHeight = height(c) = len(c->d->exit) = 2
1116/// LiveOutDepth = depth(c) + 1 = len(a->b->c) + 1 = 3
1117/// LiveInHeight = height(b) + 1 = len(b->c->d->exit) + 1 = 4
1118/// LiveInDepth = depth(b) = len(a->b) = 1
1119///
1120/// LiveOutDepth - LiveInDepth = 3 - 1 = 2
1121/// LiveInHeight - LiveOutHeight = 4 - 2 = 2
1122/// CyclicCriticalPath = min(2, 2) = 2
Andrew Trickd7f890e2013-12-28 21:56:47 +00001123///
1124/// This could be relevant to PostRA scheduling, but is currently implemented
1125/// assuming LiveIntervals.
1126unsigned ScheduleDAGMILive::computeCyclicCriticalPath() {
Andrew Trick483f4192013-08-29 18:04:49 +00001127 // This only applies to single block loop.
1128 if (!BB->isSuccessor(BB))
1129 return 0;
1130
1131 unsigned MaxCyclicLatency = 0;
1132 // Visit each live out vreg def to find def/use pairs that cross iterations.
1133 ArrayRef<unsigned> LiveOuts = RPTracker.getPressure().LiveOutRegs;
1134 for (ArrayRef<unsigned>::iterator RI = LiveOuts.begin(), RE = LiveOuts.end();
1135 RI != RE; ++RI) {
1136 unsigned Reg = *RI;
1137 if (!TRI->isVirtualRegister(Reg))
1138 continue;
1139 const LiveInterval &LI = LIS->getInterval(Reg);
1140 const VNInfo *DefVNI = LI.getVNInfoBefore(LIS->getMBBEndIdx(BB));
1141 if (!DefVNI)
1142 continue;
1143
1144 MachineInstr *DefMI = LIS->getInstructionFromIndex(DefVNI->def);
1145 const SUnit *DefSU = getSUnit(DefMI);
1146 if (!DefSU)
1147 continue;
1148
1149 unsigned LiveOutHeight = DefSU->getHeight();
1150 unsigned LiveOutDepth = DefSU->getDepth() + DefSU->Latency;
1151 // Visit all local users of the vreg def.
1152 for (VReg2UseMap::iterator
1153 UI = VRegUses.find(Reg); UI != VRegUses.end(); ++UI) {
1154 if (UI->SU == &ExitSU)
1155 continue;
1156
1157 // Only consider uses of the phi.
Matthias Braun88dd0ab2013-10-10 21:28:52 +00001158 LiveQueryResult LRQ =
1159 LI.Query(LIS->getInstructionIndex(UI->SU->getInstr()));
Andrew Trick483f4192013-08-29 18:04:49 +00001160 if (!LRQ.valueIn()->isPHIDef())
1161 continue;
1162
1163 // Assume that a path spanning two iterations is a cycle, which could
1164 // overestimate in strange cases. This allows cyclic latency to be
1165 // estimated as the minimum slack of the vreg's depth or height.
1166 unsigned CyclicLatency = 0;
1167 if (LiveOutDepth > UI->SU->getDepth())
1168 CyclicLatency = LiveOutDepth - UI->SU->getDepth();
1169
1170 unsigned LiveInHeight = UI->SU->getHeight() + DefSU->Latency;
1171 if (LiveInHeight > LiveOutHeight) {
1172 if (LiveInHeight - LiveOutHeight < CyclicLatency)
1173 CyclicLatency = LiveInHeight - LiveOutHeight;
1174 }
1175 else
1176 CyclicLatency = 0;
1177
1178 DEBUG(dbgs() << "Cyclic Path: SU(" << DefSU->NodeNum << ") -> SU("
1179 << UI->SU->NodeNum << ") = " << CyclicLatency << "c\n");
1180 if (CyclicLatency > MaxCyclicLatency)
1181 MaxCyclicLatency = CyclicLatency;
1182 }
1183 }
1184 DEBUG(dbgs() << "Cyclic Critical Path: " << MaxCyclicLatency << "c\n");
1185 return MaxCyclicLatency;
1186}
1187
Andrew Trick7a8e1002012-09-11 00:39:15 +00001188/// Move an instruction and update register pressure.
Andrew Trickd7f890e2013-12-28 21:56:47 +00001189void ScheduleDAGMILive::scheduleMI(SUnit *SU, bool IsTopNode) {
Andrew Trick7a8e1002012-09-11 00:39:15 +00001190 // Move the instruction to its new location in the instruction stream.
1191 MachineInstr *MI = SU->getInstr();
Andrew Trick02a80da2012-03-08 01:41:12 +00001192
Andrew Trick7a8e1002012-09-11 00:39:15 +00001193 if (IsTopNode) {
1194 assert(SU->isTopReady() && "node still has unscheduled dependencies");
1195 if (&*CurrentTop == MI)
1196 CurrentTop = nextIfDebug(++CurrentTop, CurrentBottom);
Andrew Trick8823dec2012-03-14 04:00:41 +00001197 else {
Andrew Trick7a8e1002012-09-11 00:39:15 +00001198 moveInstruction(MI, CurrentTop);
1199 TopRPTracker.setPos(MI);
Andrew Trick8823dec2012-03-14 04:00:41 +00001200 }
Andrew Trickc3ea0052012-04-24 18:04:37 +00001201
Andrew Trickb6e74712013-09-04 20:59:59 +00001202 if (ShouldTrackPressure) {
1203 // Update top scheduled pressure.
1204 TopRPTracker.advance();
1205 assert(TopRPTracker.getPos() == CurrentTop && "out of sync");
Andrew Trickb248b4a2013-09-06 17:32:47 +00001206 updateScheduledPressure(SU, TopRPTracker.getPressure().MaxSetPressure);
Andrew Trickb6e74712013-09-04 20:59:59 +00001207 }
Andrew Trick7a8e1002012-09-11 00:39:15 +00001208 }
1209 else {
1210 assert(SU->isBottomReady() && "node still has unscheduled dependencies");
1211 MachineBasicBlock::iterator priorII =
1212 priorNonDebug(CurrentBottom, CurrentTop);
1213 if (&*priorII == MI)
1214 CurrentBottom = priorII;
1215 else {
1216 if (&*CurrentTop == MI) {
1217 CurrentTop = nextIfDebug(++CurrentTop, priorII);
1218 TopRPTracker.setPos(CurrentTop);
1219 }
1220 moveInstruction(MI, CurrentBottom);
1221 CurrentBottom = MI;
1222 }
Andrew Trickb6e74712013-09-04 20:59:59 +00001223 if (ShouldTrackPressure) {
1224 // Update bottom scheduled pressure.
1225 SmallVector<unsigned, 8> LiveUses;
1226 BotRPTracker.recede(&LiveUses);
1227 assert(BotRPTracker.getPos() == CurrentBottom && "out of sync");
Andrew Trickb248b4a2013-09-06 17:32:47 +00001228 updateScheduledPressure(SU, BotRPTracker.getPressure().MaxSetPressure);
Andrew Trickb6e74712013-09-04 20:59:59 +00001229 updatePressureDiffs(LiveUses);
Andrew Trickb6e74712013-09-04 20:59:59 +00001230 }
Andrew Trick7a8e1002012-09-11 00:39:15 +00001231 }
1232}
1233
Andrew Trick263280242012-11-12 19:52:20 +00001234//===----------------------------------------------------------------------===//
1235// LoadClusterMutation - DAG post-processing to cluster loads.
1236//===----------------------------------------------------------------------===//
1237
Andrew Tricka7714a02012-11-12 19:40:10 +00001238namespace {
1239/// \brief Post-process the DAG to create cluster edges between neighboring
1240/// loads.
1241class LoadClusterMutation : public ScheduleDAGMutation {
1242 struct LoadInfo {
1243 SUnit *SU;
1244 unsigned BaseReg;
1245 unsigned Offset;
1246 LoadInfo(SUnit *su, unsigned reg, unsigned ofs)
1247 : SU(su), BaseReg(reg), Offset(ofs) {}
Benjamin Kramerb0f74b22014-03-07 21:35:39 +00001248
1249 bool operator<(const LoadInfo &RHS) const {
1250 return std::tie(BaseReg, Offset) < std::tie(RHS.BaseReg, RHS.Offset);
1251 }
Andrew Tricka7714a02012-11-12 19:40:10 +00001252 };
Andrew Tricka7714a02012-11-12 19:40:10 +00001253
1254 const TargetInstrInfo *TII;
1255 const TargetRegisterInfo *TRI;
1256public:
1257 LoadClusterMutation(const TargetInstrInfo *tii,
1258 const TargetRegisterInfo *tri)
1259 : TII(tii), TRI(tri) {}
1260
Craig Topper4584cd52014-03-07 09:26:03 +00001261 void apply(ScheduleDAGMI *DAG) override;
Andrew Tricka7714a02012-11-12 19:40:10 +00001262protected:
1263 void clusterNeighboringLoads(ArrayRef<SUnit*> Loads, ScheduleDAGMI *DAG);
1264};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001265} // anonymous
Andrew Tricka7714a02012-11-12 19:40:10 +00001266
Andrew Tricka7714a02012-11-12 19:40:10 +00001267void LoadClusterMutation::clusterNeighboringLoads(ArrayRef<SUnit*> Loads,
1268 ScheduleDAGMI *DAG) {
1269 SmallVector<LoadClusterMutation::LoadInfo,32> LoadRecords;
1270 for (unsigned Idx = 0, End = Loads.size(); Idx != End; ++Idx) {
1271 SUnit *SU = Loads[Idx];
1272 unsigned BaseReg;
1273 unsigned Offset;
Sanjoy Dasb666ea32015-06-15 18:44:14 +00001274 if (TII->getMemOpBaseRegImmOfs(SU->getInstr(), BaseReg, Offset, TRI))
Andrew Tricka7714a02012-11-12 19:40:10 +00001275 LoadRecords.push_back(LoadInfo(SU, BaseReg, Offset));
1276 }
1277 if (LoadRecords.size() < 2)
1278 return;
Benjamin Kramerb0f74b22014-03-07 21:35:39 +00001279 std::sort(LoadRecords.begin(), LoadRecords.end());
Andrew Tricka7714a02012-11-12 19:40:10 +00001280 unsigned ClusterLength = 1;
1281 for (unsigned Idx = 0, End = LoadRecords.size(); Idx < (End - 1); ++Idx) {
1282 if (LoadRecords[Idx].BaseReg != LoadRecords[Idx+1].BaseReg) {
1283 ClusterLength = 1;
1284 continue;
1285 }
1286
1287 SUnit *SUa = LoadRecords[Idx].SU;
1288 SUnit *SUb = LoadRecords[Idx+1].SU;
Andrew Trickec369d52012-11-12 21:28:10 +00001289 if (TII->shouldClusterLoads(SUa->getInstr(), SUb->getInstr(), ClusterLength)
Andrew Tricka7714a02012-11-12 19:40:10 +00001290 && DAG->addEdge(SUb, SDep(SUa, SDep::Cluster))) {
1291
1292 DEBUG(dbgs() << "Cluster loads SU(" << SUa->NodeNum << ") - SU("
1293 << SUb->NodeNum << ")\n");
1294 // Copy successor edges from SUa to SUb. Interleaving computation
1295 // dependent on SUa can prevent load combining due to register reuse.
1296 // Predecessor edges do not need to be copied from SUb to SUa since nearby
1297 // loads should have effectively the same inputs.
1298 for (SUnit::const_succ_iterator
1299 SI = SUa->Succs.begin(), SE = SUa->Succs.end(); SI != SE; ++SI) {
1300 if (SI->getSUnit() == SUb)
1301 continue;
1302 DEBUG(dbgs() << " Copy Succ SU(" << SI->getSUnit()->NodeNum << ")\n");
1303 DAG->addEdge(SI->getSUnit(), SDep(SUb, SDep::Artificial));
1304 }
1305 ++ClusterLength;
1306 }
1307 else
1308 ClusterLength = 1;
1309 }
1310}
1311
1312/// \brief Callback from DAG postProcessing to create cluster edges for loads.
1313void LoadClusterMutation::apply(ScheduleDAGMI *DAG) {
1314 // Map DAG NodeNum to store chain ID.
1315 DenseMap<unsigned, unsigned> StoreChainIDs;
1316 // Map each store chain to a set of dependent loads.
1317 SmallVector<SmallVector<SUnit*,4>, 32> StoreChainDependents;
1318 for (unsigned Idx = 0, End = DAG->SUnits.size(); Idx != End; ++Idx) {
1319 SUnit *SU = &DAG->SUnits[Idx];
1320 if (!SU->getInstr()->mayLoad())
1321 continue;
1322 unsigned ChainPredID = DAG->SUnits.size();
1323 for (SUnit::const_pred_iterator
1324 PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) {
1325 if (PI->isCtrl()) {
1326 ChainPredID = PI->getSUnit()->NodeNum;
1327 break;
1328 }
1329 }
1330 // Check if this chain-like pred has been seen
1331 // before. ChainPredID==MaxNodeID for loads at the top of the schedule.
1332 unsigned NumChains = StoreChainDependents.size();
1333 std::pair<DenseMap<unsigned, unsigned>::iterator, bool> Result =
1334 StoreChainIDs.insert(std::make_pair(ChainPredID, NumChains));
1335 if (Result.second)
1336 StoreChainDependents.resize(NumChains + 1);
1337 StoreChainDependents[Result.first->second].push_back(SU);
1338 }
1339 // Iterate over the store chains.
1340 for (unsigned Idx = 0, End = StoreChainDependents.size(); Idx != End; ++Idx)
1341 clusterNeighboringLoads(StoreChainDependents[Idx], DAG);
1342}
1343
Andrew Trick02a80da2012-03-08 01:41:12 +00001344//===----------------------------------------------------------------------===//
Andrew Trick263280242012-11-12 19:52:20 +00001345// MacroFusion - DAG post-processing to encourage fusion of macro ops.
1346//===----------------------------------------------------------------------===//
1347
1348namespace {
1349/// \brief Post-process the DAG to create cluster edges between instructions
1350/// that may be fused by the processor into a single operation.
1351class MacroFusion : public ScheduleDAGMutation {
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001352 const TargetInstrInfo &TII;
1353 const TargetRegisterInfo &TRI;
Andrew Trick263280242012-11-12 19:52:20 +00001354public:
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001355 MacroFusion(const TargetInstrInfo &TII, const TargetRegisterInfo &TRI)
1356 : TII(TII), TRI(TRI) {}
Andrew Trick263280242012-11-12 19:52:20 +00001357
Craig Topper4584cd52014-03-07 09:26:03 +00001358 void apply(ScheduleDAGMI *DAG) override;
Andrew Trick263280242012-11-12 19:52:20 +00001359};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001360} // anonymous
Andrew Trick263280242012-11-12 19:52:20 +00001361
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001362/// Returns true if \p MI reads a register written by \p Other.
1363static bool HasDataDep(const TargetRegisterInfo &TRI, const MachineInstr &MI,
1364 const MachineInstr &Other) {
1365 for (const MachineOperand &MO : MI.uses()) {
1366 if (!MO.isReg() || !MO.readsReg())
1367 continue;
1368
1369 unsigned Reg = MO.getReg();
1370 if (Other.modifiesRegister(Reg, &TRI))
1371 return true;
1372 }
1373 return false;
1374}
1375
Andrew Trick263280242012-11-12 19:52:20 +00001376/// \brief Callback from DAG postProcessing to create cluster edges to encourage
1377/// fused operations.
1378void MacroFusion::apply(ScheduleDAGMI *DAG) {
1379 // For now, assume targets can only fuse with the branch.
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001380 SUnit &ExitSU = DAG->ExitSU;
1381 MachineInstr *Branch = ExitSU.getInstr();
Andrew Trick263280242012-11-12 19:52:20 +00001382 if (!Branch)
1383 return;
1384
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001385 for (SUnit &SU : DAG->SUnits) {
1386 // SUnits with successors can't be schedule in front of the ExitSU.
1387 if (!SU.Succs.empty())
1388 continue;
1389 // We only care if the node writes to a register that the branch reads.
1390 MachineInstr *Pred = SU.getInstr();
1391 if (!HasDataDep(TRI, *Branch, *Pred))
1392 continue;
1393
1394 if (!TII.shouldScheduleAdjacent(Pred, Branch))
Andrew Trick263280242012-11-12 19:52:20 +00001395 continue;
1396
1397 // Create a single weak edge from SU to ExitSU. The only effect is to cause
1398 // bottom-up scheduling to heavily prioritize the clustered SU. There is no
1399 // need to copy predecessor edges from ExitSU to SU, since top-down
1400 // scheduling cannot prioritize ExitSU anyway. To defer top-down scheduling
1401 // of SU, we could create an artificial edge from the deepest root, but it
1402 // hasn't been needed yet.
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001403 bool Success = DAG->addEdge(&ExitSU, SDep(&SU, SDep::Cluster));
Andrew Trick263280242012-11-12 19:52:20 +00001404 (void)Success;
1405 assert(Success && "No DAG nodes should be reachable from ExitSU");
1406
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001407 DEBUG(dbgs() << "Macro Fuse SU(" << SU.NodeNum << ")\n");
Andrew Trick263280242012-11-12 19:52:20 +00001408 break;
1409 }
1410}
1411
1412//===----------------------------------------------------------------------===//
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001413// CopyConstrain - DAG post-processing to encourage copy elimination.
1414//===----------------------------------------------------------------------===//
1415
1416namespace {
1417/// \brief Post-process the DAG to create weak edges from all uses of a copy to
1418/// the one use that defines the copy's source vreg, most likely an induction
1419/// variable increment.
1420class CopyConstrain : public ScheduleDAGMutation {
1421 // Transient state.
1422 SlotIndex RegionBeginIdx;
Andrew Trick2e875172013-04-24 23:19:56 +00001423 // RegionEndIdx is the slot index of the last non-debug instruction in the
1424 // scheduling region. So we may have RegionBeginIdx == RegionEndIdx.
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001425 SlotIndex RegionEndIdx;
1426public:
1427 CopyConstrain(const TargetInstrInfo *, const TargetRegisterInfo *) {}
1428
Craig Topper4584cd52014-03-07 09:26:03 +00001429 void apply(ScheduleDAGMI *DAG) override;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001430
1431protected:
Andrew Trickd7f890e2013-12-28 21:56:47 +00001432 void constrainLocalCopy(SUnit *CopySU, ScheduleDAGMILive *DAG);
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001433};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001434} // anonymous
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001435
1436/// constrainLocalCopy handles two possibilities:
1437/// 1) Local src:
1438/// I0: = dst
1439/// I1: src = ...
1440/// I2: = dst
1441/// I3: dst = src (copy)
1442/// (create pred->succ edges I0->I1, I2->I1)
1443///
1444/// 2) Local copy:
1445/// I0: dst = src (copy)
1446/// I1: = dst
1447/// I2: src = ...
1448/// I3: = dst
1449/// (create pred->succ edges I1->I2, I3->I2)
1450///
1451/// Although the MachineScheduler is currently constrained to single blocks,
1452/// this algorithm should handle extended blocks. An EBB is a set of
1453/// contiguously numbered blocks such that the previous block in the EBB is
1454/// always the single predecessor.
Andrew Trickd7f890e2013-12-28 21:56:47 +00001455void CopyConstrain::constrainLocalCopy(SUnit *CopySU, ScheduleDAGMILive *DAG) {
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001456 LiveIntervals *LIS = DAG->getLIS();
1457 MachineInstr *Copy = CopySU->getInstr();
1458
1459 // Check for pure vreg copies.
1460 unsigned SrcReg = Copy->getOperand(1).getReg();
1461 if (!TargetRegisterInfo::isVirtualRegister(SrcReg))
1462 return;
1463
1464 unsigned DstReg = Copy->getOperand(0).getReg();
1465 if (!TargetRegisterInfo::isVirtualRegister(DstReg))
1466 return;
1467
1468 // Check if either the dest or source is local. If it's live across a back
1469 // edge, it's not local. Note that if both vregs are live across the back
1470 // edge, we cannot successfully contrain the copy without cyclic scheduling.
Michael Kuperstein54c61ed2015-01-19 07:30:47 +00001471 // If both the copy's source and dest are local live intervals, then we
1472 // should treat the dest as the global for the purpose of adding
1473 // constraints. This adds edges from source's other uses to the copy.
1474 unsigned LocalReg = SrcReg;
1475 unsigned GlobalReg = DstReg;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001476 LiveInterval *LocalLI = &LIS->getInterval(LocalReg);
1477 if (!LocalLI->isLocal(RegionBeginIdx, RegionEndIdx)) {
Michael Kuperstein54c61ed2015-01-19 07:30:47 +00001478 LocalReg = DstReg;
1479 GlobalReg = SrcReg;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001480 LocalLI = &LIS->getInterval(LocalReg);
1481 if (!LocalLI->isLocal(RegionBeginIdx, RegionEndIdx))
1482 return;
1483 }
1484 LiveInterval *GlobalLI = &LIS->getInterval(GlobalReg);
1485
1486 // Find the global segment after the start of the local LI.
1487 LiveInterval::iterator GlobalSegment = GlobalLI->find(LocalLI->beginIndex());
1488 // If GlobalLI does not overlap LocalLI->start, then a copy directly feeds a
1489 // local live range. We could create edges from other global uses to the local
1490 // start, but the coalescer should have already eliminated these cases, so
1491 // don't bother dealing with it.
1492 if (GlobalSegment == GlobalLI->end())
1493 return;
1494
1495 // If GlobalSegment is killed at the LocalLI->start, the call to find()
1496 // returned the next global segment. But if GlobalSegment overlaps with
1497 // LocalLI->start, then advance to the next segement. If a hole in GlobalLI
1498 // exists in LocalLI's vicinity, GlobalSegment will be the end of the hole.
1499 if (GlobalSegment->contains(LocalLI->beginIndex()))
1500 ++GlobalSegment;
1501
1502 if (GlobalSegment == GlobalLI->end())
1503 return;
1504
1505 // Check if GlobalLI contains a hole in the vicinity of LocalLI.
1506 if (GlobalSegment != GlobalLI->begin()) {
1507 // Two address defs have no hole.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001508 if (SlotIndex::isSameInstr(std::prev(GlobalSegment)->end,
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001509 GlobalSegment->start)) {
1510 return;
1511 }
Andrew Trickd9761772013-07-30 19:59:08 +00001512 // If the prior global segment may be defined by the same two-address
1513 // instruction that also defines LocalLI, then can't make a hole here.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001514 if (SlotIndex::isSameInstr(std::prev(GlobalSegment)->start,
Andrew Trickd9761772013-07-30 19:59:08 +00001515 LocalLI->beginIndex())) {
1516 return;
1517 }
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001518 // If GlobalLI has a prior segment, it must be live into the EBB. Otherwise
1519 // it would be a disconnected component in the live range.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001520 assert(std::prev(GlobalSegment)->start < LocalLI->beginIndex() &&
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001521 "Disconnected LRG within the scheduling region.");
1522 }
1523 MachineInstr *GlobalDef = LIS->getInstructionFromIndex(GlobalSegment->start);
1524 if (!GlobalDef)
1525 return;
1526
1527 SUnit *GlobalSU = DAG->getSUnit(GlobalDef);
1528 if (!GlobalSU)
1529 return;
1530
1531 // GlobalDef is the bottom of the GlobalLI hole. Open the hole by
1532 // constraining the uses of the last local def to precede GlobalDef.
1533 SmallVector<SUnit*,8> LocalUses;
1534 const VNInfo *LastLocalVN = LocalLI->getVNInfoBefore(LocalLI->endIndex());
1535 MachineInstr *LastLocalDef = LIS->getInstructionFromIndex(LastLocalVN->def);
1536 SUnit *LastLocalSU = DAG->getSUnit(LastLocalDef);
1537 for (SUnit::const_succ_iterator
1538 I = LastLocalSU->Succs.begin(), E = LastLocalSU->Succs.end();
1539 I != E; ++I) {
1540 if (I->getKind() != SDep::Data || I->getReg() != LocalReg)
1541 continue;
1542 if (I->getSUnit() == GlobalSU)
1543 continue;
1544 if (!DAG->canAddEdge(GlobalSU, I->getSUnit()))
1545 return;
1546 LocalUses.push_back(I->getSUnit());
1547 }
1548 // Open the top of the GlobalLI hole by constraining any earlier global uses
1549 // to precede the start of LocalLI.
1550 SmallVector<SUnit*,8> GlobalUses;
1551 MachineInstr *FirstLocalDef =
1552 LIS->getInstructionFromIndex(LocalLI->beginIndex());
1553 SUnit *FirstLocalSU = DAG->getSUnit(FirstLocalDef);
1554 for (SUnit::const_pred_iterator
1555 I = GlobalSU->Preds.begin(), E = GlobalSU->Preds.end(); I != E; ++I) {
1556 if (I->getKind() != SDep::Anti || I->getReg() != GlobalReg)
1557 continue;
1558 if (I->getSUnit() == FirstLocalSU)
1559 continue;
1560 if (!DAG->canAddEdge(FirstLocalSU, I->getSUnit()))
1561 return;
1562 GlobalUses.push_back(I->getSUnit());
1563 }
1564 DEBUG(dbgs() << "Constraining copy SU(" << CopySU->NodeNum << ")\n");
1565 // Add the weak edges.
1566 for (SmallVectorImpl<SUnit*>::const_iterator
1567 I = LocalUses.begin(), E = LocalUses.end(); I != E; ++I) {
1568 DEBUG(dbgs() << " Local use SU(" << (*I)->NodeNum << ") -> SU("
1569 << GlobalSU->NodeNum << ")\n");
1570 DAG->addEdge(GlobalSU, SDep(*I, SDep::Weak));
1571 }
1572 for (SmallVectorImpl<SUnit*>::const_iterator
1573 I = GlobalUses.begin(), E = GlobalUses.end(); I != E; ++I) {
1574 DEBUG(dbgs() << " Global use SU(" << (*I)->NodeNum << ") -> SU("
1575 << FirstLocalSU->NodeNum << ")\n");
1576 DAG->addEdge(FirstLocalSU, SDep(*I, SDep::Weak));
1577 }
1578}
1579
1580/// \brief Callback from DAG postProcessing to create weak edges to encourage
1581/// copy elimination.
1582void CopyConstrain::apply(ScheduleDAGMI *DAG) {
Andrew Trickd7f890e2013-12-28 21:56:47 +00001583 assert(DAG->hasVRegLiveness() && "Expect VRegs with LiveIntervals");
1584
Andrew Trick2e875172013-04-24 23:19:56 +00001585 MachineBasicBlock::iterator FirstPos = nextIfDebug(DAG->begin(), DAG->end());
1586 if (FirstPos == DAG->end())
1587 return;
1588 RegionBeginIdx = DAG->getLIS()->getInstructionIndex(&*FirstPos);
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001589 RegionEndIdx = DAG->getLIS()->getInstructionIndex(
1590 &*priorNonDebug(DAG->end(), DAG->begin()));
1591
1592 for (unsigned Idx = 0, End = DAG->SUnits.size(); Idx != End; ++Idx) {
1593 SUnit *SU = &DAG->SUnits[Idx];
1594 if (!SU->getInstr()->isCopy())
1595 continue;
1596
Andrew Trickd7f890e2013-12-28 21:56:47 +00001597 constrainLocalCopy(SU, static_cast<ScheduleDAGMILive*>(DAG));
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001598 }
1599}
1600
1601//===----------------------------------------------------------------------===//
Andrew Trickfc127d12013-12-07 05:59:44 +00001602// MachineSchedStrategy helpers used by GenericScheduler, GenericPostScheduler
1603// and possibly other custom schedulers.
Andrew Trickd14d7c22013-12-28 21:56:57 +00001604//===----------------------------------------------------------------------===//
Andrew Tricke1c034f2012-01-17 06:55:03 +00001605
Andrew Trick5a22df42013-12-05 17:56:02 +00001606static const unsigned InvalidCycle = ~0U;
1607
Andrew Trickfc127d12013-12-07 05:59:44 +00001608SchedBoundary::~SchedBoundary() { delete HazardRec; }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001609
Andrew Trickfc127d12013-12-07 05:59:44 +00001610void SchedBoundary::reset() {
1611 // A new HazardRec is created for each DAG and owned by SchedBoundary.
1612 // Destroying and reconstructing it is very expensive though. So keep
1613 // invalid, placeholder HazardRecs.
1614 if (HazardRec && HazardRec->isEnabled()) {
1615 delete HazardRec;
Craig Topperc0196b12014-04-14 00:51:57 +00001616 HazardRec = nullptr;
Andrew Trickfc127d12013-12-07 05:59:44 +00001617 }
1618 Available.clear();
1619 Pending.clear();
1620 CheckPending = false;
1621 NextSUs.clear();
1622 CurrCycle = 0;
1623 CurrMOps = 0;
1624 MinReadyCycle = UINT_MAX;
1625 ExpectedLatency = 0;
1626 DependentLatency = 0;
1627 RetiredMOps = 0;
1628 MaxExecutedResCount = 0;
1629 ZoneCritResIdx = 0;
1630 IsResourceLimited = false;
1631 ReservedCycles.clear();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001632#ifndef NDEBUG
Andrew Trickd14d7c22013-12-28 21:56:57 +00001633 // Track the maximum number of stall cycles that could arise either from the
1634 // latency of a DAG edge or the number of cycles that a processor resource is
1635 // reserved (SchedBoundary::ReservedCycles).
Andrew Trick7f1ebbe2014-06-07 01:48:43 +00001636 MaxObservedStall = 0;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001637#endif
Andrew Trickfc127d12013-12-07 05:59:44 +00001638 // Reserve a zero-count for invalid CritResIdx.
1639 ExecutedResCounts.resize(1);
1640 assert(!ExecutedResCounts[0] && "nonzero count for bad resource");
1641}
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001642
Andrew Trickfc127d12013-12-07 05:59:44 +00001643void SchedRemainder::
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001644init(ScheduleDAGMI *DAG, const TargetSchedModel *SchedModel) {
1645 reset();
1646 if (!SchedModel->hasInstrSchedModel())
1647 return;
1648 RemainingCounts.resize(SchedModel->getNumProcResourceKinds());
1649 for (std::vector<SUnit>::iterator
1650 I = DAG->SUnits.begin(), E = DAG->SUnits.end(); I != E; ++I) {
1651 const MCSchedClassDesc *SC = DAG->getSchedClass(&*I);
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001652 RemIssueCount += SchedModel->getNumMicroOps(I->getInstr(), SC)
1653 * SchedModel->getMicroOpFactor();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001654 for (TargetSchedModel::ProcResIter
1655 PI = SchedModel->getWriteProcResBegin(SC),
1656 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
1657 unsigned PIdx = PI->ProcResourceIdx;
1658 unsigned Factor = SchedModel->getResourceFactor(PIdx);
1659 RemainingCounts[PIdx] += (Factor * PI->Cycles);
1660 }
1661 }
1662}
1663
Andrew Trickfc127d12013-12-07 05:59:44 +00001664void SchedBoundary::
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001665init(ScheduleDAGMI *dag, const TargetSchedModel *smodel, SchedRemainder *rem) {
1666 reset();
1667 DAG = dag;
1668 SchedModel = smodel;
1669 Rem = rem;
Andrew Trick5a22df42013-12-05 17:56:02 +00001670 if (SchedModel->hasInstrSchedModel()) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001671 ExecutedResCounts.resize(SchedModel->getNumProcResourceKinds());
Andrew Trick5a22df42013-12-05 17:56:02 +00001672 ReservedCycles.resize(SchedModel->getNumProcResourceKinds(), InvalidCycle);
1673 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001674}
1675
Andrew Trick880e5732013-12-05 17:55:58 +00001676/// Compute the stall cycles based on this SUnit's ready time. Heuristics treat
1677/// these "soft stalls" differently than the hard stall cycles based on CPU
1678/// resources and computed by checkHazard(). A fully in-order model
1679/// (MicroOpBufferSize==0) will not make use of this since instructions are not
1680/// available for scheduling until they are ready. However, a weaker in-order
1681/// model may use this for heuristics. For example, if a processor has in-order
1682/// behavior when reading certain resources, this may come into play.
Andrew Trickfc127d12013-12-07 05:59:44 +00001683unsigned SchedBoundary::getLatencyStallCycles(SUnit *SU) {
Andrew Trick880e5732013-12-05 17:55:58 +00001684 if (!SU->isUnbuffered)
1685 return 0;
1686
1687 unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle);
1688 if (ReadyCycle > CurrCycle)
1689 return ReadyCycle - CurrCycle;
1690 return 0;
1691}
1692
Andrew Trick5a22df42013-12-05 17:56:02 +00001693/// Compute the next cycle at which the given processor resource can be
1694/// scheduled.
Andrew Trickfc127d12013-12-07 05:59:44 +00001695unsigned SchedBoundary::
Andrew Trick5a22df42013-12-05 17:56:02 +00001696getNextResourceCycle(unsigned PIdx, unsigned Cycles) {
1697 unsigned NextUnreserved = ReservedCycles[PIdx];
1698 // If this resource has never been used, always return cycle zero.
1699 if (NextUnreserved == InvalidCycle)
1700 return 0;
1701 // For bottom-up scheduling add the cycles needed for the current operation.
1702 if (!isTop())
1703 NextUnreserved += Cycles;
1704 return NextUnreserved;
1705}
1706
Andrew Trick8c9e6722012-06-29 03:23:24 +00001707/// Does this SU have a hazard within the current instruction group.
1708///
1709/// The scheduler supports two modes of hazard recognition. The first is the
1710/// ScheduleHazardRecognizer API. It is a fully general hazard recognizer that
1711/// supports highly complicated in-order reservation tables
1712/// (ScoreboardHazardRecognizer) and arbitraty target-specific logic.
1713///
1714/// The second is a streamlined mechanism that checks for hazards based on
1715/// simple counters that the scheduler itself maintains. It explicitly checks
1716/// for instruction dispatch limitations, including the number of micro-ops that
1717/// can dispatch per cycle.
1718///
1719/// TODO: Also check whether the SU must start a new group.
Andrew Trickfc127d12013-12-07 05:59:44 +00001720bool SchedBoundary::checkHazard(SUnit *SU) {
Andrew Trickd14d7c22013-12-28 21:56:57 +00001721 if (HazardRec->isEnabled()
1722 && HazardRec->getHazardType(SU) != ScheduleHazardRecognizer::NoHazard) {
1723 return true;
1724 }
Andrew Trickdd79f0f2012-10-10 05:43:09 +00001725 unsigned uops = SchedModel->getNumMicroOps(SU->getInstr());
Andrew Tricke2ff5752013-06-15 04:49:49 +00001726 if ((CurrMOps > 0) && (CurrMOps + uops > SchedModel->getIssueWidth())) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001727 DEBUG(dbgs() << " SU(" << SU->NodeNum << ") uops="
1728 << SchedModel->getNumMicroOps(SU->getInstr()) << '\n');
Andrew Trick8c9e6722012-06-29 03:23:24 +00001729 return true;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001730 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001731 if (SchedModel->hasInstrSchedModel() && SU->hasReservedResource) {
1732 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
1733 for (TargetSchedModel::ProcResIter
1734 PI = SchedModel->getWriteProcResBegin(SC),
1735 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
Andrew Trick56327222014-06-27 04:57:05 +00001736 unsigned NRCycle = getNextResourceCycle(PI->ProcResourceIdx, PI->Cycles);
1737 if (NRCycle > CurrCycle) {
Andrew Trick040c0da2014-06-27 05:09:36 +00001738#ifndef NDEBUG
Chad Rosieraba845e2014-07-02 16:46:08 +00001739 MaxObservedStall = std::max(PI->Cycles, MaxObservedStall);
Andrew Trick040c0da2014-06-27 05:09:36 +00001740#endif
Andrew Trick56327222014-06-27 04:57:05 +00001741 DEBUG(dbgs() << " SU(" << SU->NodeNum << ") "
1742 << SchedModel->getResourceName(PI->ProcResourceIdx)
1743 << "=" << NRCycle << "c\n");
Andrew Trick5a22df42013-12-05 17:56:02 +00001744 return true;
Andrew Trick56327222014-06-27 04:57:05 +00001745 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001746 }
1747 }
Andrew Trick8c9e6722012-06-29 03:23:24 +00001748 return false;
1749}
1750
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001751// Find the unscheduled node in ReadySUs with the highest latency.
Andrew Trickfc127d12013-12-07 05:59:44 +00001752unsigned SchedBoundary::
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001753findMaxLatency(ArrayRef<SUnit*> ReadySUs) {
Craig Topperc0196b12014-04-14 00:51:57 +00001754 SUnit *LateSU = nullptr;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001755 unsigned RemLatency = 0;
1756 for (ArrayRef<SUnit*>::iterator I = ReadySUs.begin(), E = ReadySUs.end();
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001757 I != E; ++I) {
1758 unsigned L = getUnscheduledLatency(*I);
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001759 if (L > RemLatency) {
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001760 RemLatency = L;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001761 LateSU = *I;
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001762 }
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001763 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001764 if (LateSU) {
1765 DEBUG(dbgs() << Available.getName() << " RemLatency SU("
1766 << LateSU->NodeNum << ") " << RemLatency << "c\n");
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001767 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001768 return RemLatency;
1769}
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001770
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001771// Count resources in this zone and the remaining unscheduled
1772// instruction. Return the max count, scaled. Set OtherCritIdx to the critical
1773// resource index, or zero if the zone is issue limited.
Andrew Trickfc127d12013-12-07 05:59:44 +00001774unsigned SchedBoundary::
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001775getOtherResourceCount(unsigned &OtherCritIdx) {
Alexey Samsonov64c391d2013-07-19 08:55:18 +00001776 OtherCritIdx = 0;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001777 if (!SchedModel->hasInstrSchedModel())
1778 return 0;
1779
1780 unsigned OtherCritCount = Rem->RemIssueCount
1781 + (RetiredMOps * SchedModel->getMicroOpFactor());
1782 DEBUG(dbgs() << " " << Available.getName() << " + Remain MOps: "
1783 << OtherCritCount / SchedModel->getMicroOpFactor() << '\n');
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001784 for (unsigned PIdx = 1, PEnd = SchedModel->getNumProcResourceKinds();
1785 PIdx != PEnd; ++PIdx) {
1786 unsigned OtherCount = getResourceCount(PIdx) + Rem->RemainingCounts[PIdx];
1787 if (OtherCount > OtherCritCount) {
1788 OtherCritCount = OtherCount;
1789 OtherCritIdx = PIdx;
1790 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001791 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001792 if (OtherCritIdx) {
1793 DEBUG(dbgs() << " " << Available.getName() << " + Remain CritRes: "
1794 << OtherCritCount / SchedModel->getResourceFactor(OtherCritIdx)
Andrew Trickfc127d12013-12-07 05:59:44 +00001795 << " " << SchedModel->getResourceName(OtherCritIdx) << "\n");
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001796 }
1797 return OtherCritCount;
1798}
1799
Andrew Trickfc127d12013-12-07 05:59:44 +00001800void SchedBoundary::releaseNode(SUnit *SU, unsigned ReadyCycle) {
Andrew Trick7f1ebbe2014-06-07 01:48:43 +00001801 assert(SU->getInstr() && "Scheduled SUnit must have instr");
1802
1803#ifndef NDEBUG
Andrew Trick491e34a2014-06-12 22:36:28 +00001804 // ReadyCycle was been bumped up to the CurrCycle when this node was
1805 // scheduled, but CurrCycle may have been eagerly advanced immediately after
1806 // scheduling, so may now be greater than ReadyCycle.
1807 if (ReadyCycle > CurrCycle)
1808 MaxObservedStall = std::max(ReadyCycle - CurrCycle, MaxObservedStall);
Andrew Trick7f1ebbe2014-06-07 01:48:43 +00001809#endif
1810
Andrew Trick61f1a272012-05-24 22:11:09 +00001811 if (ReadyCycle < MinReadyCycle)
1812 MinReadyCycle = ReadyCycle;
1813
1814 // Check for interlocks first. For the purpose of other heuristics, an
1815 // instruction that cannot issue appears as if it's not in the ReadyQueue.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001816 bool IsBuffered = SchedModel->getMicroOpBufferSize() != 0;
1817 if ((!IsBuffered && ReadyCycle > CurrCycle) || checkHazard(SU))
Andrew Trick61f1a272012-05-24 22:11:09 +00001818 Pending.push(SU);
1819 else
1820 Available.push(SU);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001821
1822 // Record this node as an immediate dependent of the scheduled node.
1823 NextSUs.insert(SU);
Andrew Trick61f1a272012-05-24 22:11:09 +00001824}
1825
Andrew Trickfc127d12013-12-07 05:59:44 +00001826void SchedBoundary::releaseTopNode(SUnit *SU) {
1827 if (SU->isScheduled)
1828 return;
1829
Andrew Trickfc127d12013-12-07 05:59:44 +00001830 releaseNode(SU, SU->TopReadyCycle);
1831}
1832
1833void SchedBoundary::releaseBottomNode(SUnit *SU) {
1834 if (SU->isScheduled)
1835 return;
1836
Andrew Trickfc127d12013-12-07 05:59:44 +00001837 releaseNode(SU, SU->BotReadyCycle);
1838}
1839
Andrew Trick61f1a272012-05-24 22:11:09 +00001840/// Move the boundary of scheduled code by one cycle.
Andrew Trickfc127d12013-12-07 05:59:44 +00001841void SchedBoundary::bumpCycle(unsigned NextCycle) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001842 if (SchedModel->getMicroOpBufferSize() == 0) {
1843 assert(MinReadyCycle < UINT_MAX && "MinReadyCycle uninitialized");
1844 if (MinReadyCycle > NextCycle)
1845 NextCycle = MinReadyCycle;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001846 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001847 // Update the current micro-ops, which will issue in the next cycle.
1848 unsigned DecMOps = SchedModel->getIssueWidth() * (NextCycle - CurrCycle);
1849 CurrMOps = (CurrMOps <= DecMOps) ? 0 : CurrMOps - DecMOps;
1850
1851 // Decrement DependentLatency based on the next cycle.
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001852 if ((NextCycle - CurrCycle) > DependentLatency)
1853 DependentLatency = 0;
1854 else
1855 DependentLatency -= (NextCycle - CurrCycle);
Andrew Trick61f1a272012-05-24 22:11:09 +00001856
1857 if (!HazardRec->isEnabled()) {
Andrew Trick45446062012-06-05 21:11:27 +00001858 // Bypass HazardRec virtual calls.
Andrew Trick61f1a272012-05-24 22:11:09 +00001859 CurrCycle = NextCycle;
1860 }
1861 else {
Andrew Trick45446062012-06-05 21:11:27 +00001862 // Bypass getHazardType calls in case of long latency.
Andrew Trick61f1a272012-05-24 22:11:09 +00001863 for (; CurrCycle != NextCycle; ++CurrCycle) {
1864 if (isTop())
1865 HazardRec->AdvanceCycle();
1866 else
1867 HazardRec->RecedeCycle();
1868 }
1869 }
1870 CheckPending = true;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001871 unsigned LFactor = SchedModel->getLatencyFactor();
1872 IsResourceLimited =
1873 (int)(getCriticalCount() - (getScheduledLatency() * LFactor))
1874 > (int)LFactor;
Andrew Trick61f1a272012-05-24 22:11:09 +00001875
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001876 DEBUG(dbgs() << "Cycle: " << CurrCycle << ' ' << Available.getName() << '\n');
1877}
1878
Andrew Trickfc127d12013-12-07 05:59:44 +00001879void SchedBoundary::incExecutedResources(unsigned PIdx, unsigned Count) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001880 ExecutedResCounts[PIdx] += Count;
1881 if (ExecutedResCounts[PIdx] > MaxExecutedResCount)
1882 MaxExecutedResCount = ExecutedResCounts[PIdx];
Andrew Trick61f1a272012-05-24 22:11:09 +00001883}
1884
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001885/// Add the given processor resource to this scheduled zone.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001886///
1887/// \param Cycles indicates the number of consecutive (non-pipelined) cycles
1888/// during which this resource is consumed.
1889///
1890/// \return the next cycle at which the instruction may execute without
1891/// oversubscribing resources.
Andrew Trickfc127d12013-12-07 05:59:44 +00001892unsigned SchedBoundary::
Andrew Trick5a22df42013-12-05 17:56:02 +00001893countResource(unsigned PIdx, unsigned Cycles, unsigned NextCycle) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001894 unsigned Factor = SchedModel->getResourceFactor(PIdx);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001895 unsigned Count = Factor * Cycles;
Andrew Trickfc127d12013-12-07 05:59:44 +00001896 DEBUG(dbgs() << " " << SchedModel->getResourceName(PIdx)
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001897 << " +" << Cycles << "x" << Factor << "u\n");
1898
1899 // Update Executed resources counts.
1900 incExecutedResources(PIdx, Count);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001901 assert(Rem->RemainingCounts[PIdx] >= Count && "resource double counted");
1902 Rem->RemainingCounts[PIdx] -= Count;
1903
Andrew Trickb13ef172013-07-19 00:20:07 +00001904 // Check if this resource exceeds the current critical resource. If so, it
1905 // becomes the critical resource.
1906 if (ZoneCritResIdx != PIdx && (getResourceCount(PIdx) > getCriticalCount())) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001907 ZoneCritResIdx = PIdx;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001908 DEBUG(dbgs() << " *** Critical resource "
Andrew Trickfc127d12013-12-07 05:59:44 +00001909 << SchedModel->getResourceName(PIdx) << ": "
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001910 << getResourceCount(PIdx) / SchedModel->getLatencyFactor() << "c\n");
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001911 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001912 // For reserved resources, record the highest cycle using the resource.
1913 unsigned NextAvailable = getNextResourceCycle(PIdx, Cycles);
1914 if (NextAvailable > CurrCycle) {
1915 DEBUG(dbgs() << " Resource conflict: "
1916 << SchedModel->getProcResource(PIdx)->Name << " reserved until @"
1917 << NextAvailable << "\n");
1918 }
1919 return NextAvailable;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001920}
1921
Andrew Trick45446062012-06-05 21:11:27 +00001922/// Move the boundary of scheduled code by one SUnit.
Andrew Trickfc127d12013-12-07 05:59:44 +00001923void SchedBoundary::bumpNode(SUnit *SU) {
Andrew Trick45446062012-06-05 21:11:27 +00001924 // Update the reservation table.
1925 if (HazardRec->isEnabled()) {
1926 if (!isTop() && SU->isCall) {
1927 // Calls are scheduled with their preceding instructions. For bottom-up
1928 // scheduling, clear the pipeline state before emitting.
1929 HazardRec->Reset();
1930 }
1931 HazardRec->EmitInstruction(SU);
1932 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001933 // checkHazard should prevent scheduling multiple instructions per cycle that
1934 // exceed the issue width.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001935 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
1936 unsigned IncMOps = SchedModel->getNumMicroOps(SU->getInstr());
Daniel Jasper0d92abd2013-12-06 08:58:22 +00001937 assert(
1938 (CurrMOps == 0 || (CurrMOps + IncMOps) <= SchedModel->getIssueWidth()) &&
Andrew Trickf7760a22013-12-06 17:19:20 +00001939 "Cannot schedule this instruction's MicroOps in the current cycle.");
Andrew Trick5a22df42013-12-05 17:56:02 +00001940
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001941 unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle);
1942 DEBUG(dbgs() << " Ready @" << ReadyCycle << "c\n");
1943
Andrew Trick5a22df42013-12-05 17:56:02 +00001944 unsigned NextCycle = CurrCycle;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001945 switch (SchedModel->getMicroOpBufferSize()) {
1946 case 0:
1947 assert(ReadyCycle <= CurrCycle && "Broken PendingQueue");
1948 break;
1949 case 1:
1950 if (ReadyCycle > NextCycle) {
1951 NextCycle = ReadyCycle;
1952 DEBUG(dbgs() << " *** Stall until: " << ReadyCycle << "\n");
1953 }
1954 break;
1955 default:
1956 // We don't currently model the OOO reorder buffer, so consider all
Andrew Trick880e5732013-12-05 17:55:58 +00001957 // scheduled MOps to be "retired". We do loosely model in-order resource
1958 // latency. If this instruction uses an in-order resource, account for any
1959 // likely stall cycles.
1960 if (SU->isUnbuffered && ReadyCycle > NextCycle)
1961 NextCycle = ReadyCycle;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001962 break;
1963 }
1964 RetiredMOps += IncMOps;
1965
1966 // Update resource counts and critical resource.
1967 if (SchedModel->hasInstrSchedModel()) {
1968 unsigned DecRemIssue = IncMOps * SchedModel->getMicroOpFactor();
1969 assert(Rem->RemIssueCount >= DecRemIssue && "MOps double counted");
1970 Rem->RemIssueCount -= DecRemIssue;
1971 if (ZoneCritResIdx) {
1972 // Scale scheduled micro-ops for comparing with the critical resource.
1973 unsigned ScaledMOps =
1974 RetiredMOps * SchedModel->getMicroOpFactor();
1975
1976 // If scaled micro-ops are now more than the previous critical resource by
1977 // a full cycle, then micro-ops issue becomes critical.
1978 if ((int)(ScaledMOps - getResourceCount(ZoneCritResIdx))
1979 >= (int)SchedModel->getLatencyFactor()) {
1980 ZoneCritResIdx = 0;
1981 DEBUG(dbgs() << " *** Critical resource NumMicroOps: "
1982 << ScaledMOps / SchedModel->getLatencyFactor() << "c\n");
1983 }
1984 }
1985 for (TargetSchedModel::ProcResIter
1986 PI = SchedModel->getWriteProcResBegin(SC),
1987 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
1988 unsigned RCycle =
Andrew Trick5a22df42013-12-05 17:56:02 +00001989 countResource(PI->ProcResourceIdx, PI->Cycles, NextCycle);
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001990 if (RCycle > NextCycle)
1991 NextCycle = RCycle;
1992 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001993 if (SU->hasReservedResource) {
1994 // For reserved resources, record the highest cycle using the resource.
1995 // For top-down scheduling, this is the cycle in which we schedule this
1996 // instruction plus the number of cycles the operations reserves the
1997 // resource. For bottom-up is it simply the instruction's cycle.
1998 for (TargetSchedModel::ProcResIter
1999 PI = SchedModel->getWriteProcResBegin(SC),
2000 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
2001 unsigned PIdx = PI->ProcResourceIdx;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002002 if (SchedModel->getProcResource(PIdx)->BufferSize == 0) {
Chad Rosieraba845e2014-07-02 16:46:08 +00002003 if (isTop()) {
2004 ReservedCycles[PIdx] =
2005 std::max(getNextResourceCycle(PIdx, 0), NextCycle + PI->Cycles);
2006 }
2007 else
2008 ReservedCycles[PIdx] = NextCycle;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002009 }
Andrew Trick5a22df42013-12-05 17:56:02 +00002010 }
2011 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002012 }
2013 // Update ExpectedLatency and DependentLatency.
2014 unsigned &TopLatency = isTop() ? ExpectedLatency : DependentLatency;
2015 unsigned &BotLatency = isTop() ? DependentLatency : ExpectedLatency;
2016 if (SU->getDepth() > TopLatency) {
2017 TopLatency = SU->getDepth();
2018 DEBUG(dbgs() << " " << Available.getName()
2019 << " TopLatency SU(" << SU->NodeNum << ") " << TopLatency << "c\n");
2020 }
2021 if (SU->getHeight() > BotLatency) {
2022 BotLatency = SU->getHeight();
2023 DEBUG(dbgs() << " " << Available.getName()
2024 << " BotLatency SU(" << SU->NodeNum << ") " << BotLatency << "c\n");
2025 }
2026 // If we stall for any reason, bump the cycle.
2027 if (NextCycle > CurrCycle) {
2028 bumpCycle(NextCycle);
2029 }
2030 else {
2031 // After updating ZoneCritResIdx and ExpectedLatency, check if we're
Alp Tokercb402912014-01-24 17:20:08 +00002032 // resource limited. If a stall occurred, bumpCycle does this.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002033 unsigned LFactor = SchedModel->getLatencyFactor();
2034 IsResourceLimited =
2035 (int)(getCriticalCount() - (getScheduledLatency() * LFactor))
2036 > (int)LFactor;
2037 }
Andrew Trick5a22df42013-12-05 17:56:02 +00002038 // Update CurrMOps after calling bumpCycle to handle stalls, since bumpCycle
2039 // resets CurrMOps. Loop to handle instructions with more MOps than issue in
2040 // one cycle. Since we commonly reach the max MOps here, opportunistically
2041 // bump the cycle to avoid uselessly checking everything in the readyQ.
2042 CurrMOps += IncMOps;
2043 while (CurrMOps >= SchedModel->getIssueWidth()) {
Andrew Trick5a22df42013-12-05 17:56:02 +00002044 DEBUG(dbgs() << " *** Max MOps " << CurrMOps
2045 << " at cycle " << CurrCycle << '\n');
Andrew Trickd14d7c22013-12-28 21:56:57 +00002046 bumpCycle(++NextCycle);
Andrew Trick5a22df42013-12-05 17:56:02 +00002047 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002048 DEBUG(dumpScheduledState());
Andrew Trick45446062012-06-05 21:11:27 +00002049}
2050
Andrew Trick61f1a272012-05-24 22:11:09 +00002051/// Release pending ready nodes in to the available queue. This makes them
2052/// visible to heuristics.
Andrew Trickfc127d12013-12-07 05:59:44 +00002053void SchedBoundary::releasePending() {
Andrew Trick61f1a272012-05-24 22:11:09 +00002054 // If the available queue is empty, it is safe to reset MinReadyCycle.
2055 if (Available.empty())
2056 MinReadyCycle = UINT_MAX;
2057
2058 // Check to see if any of the pending instructions are ready to issue. If
2059 // so, add them to the available queue.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002060 bool IsBuffered = SchedModel->getMicroOpBufferSize() != 0;
Andrew Trick61f1a272012-05-24 22:11:09 +00002061 for (unsigned i = 0, e = Pending.size(); i != e; ++i) {
2062 SUnit *SU = *(Pending.begin()+i);
Andrew Trick45446062012-06-05 21:11:27 +00002063 unsigned ReadyCycle = isTop() ? SU->TopReadyCycle : SU->BotReadyCycle;
Andrew Trick61f1a272012-05-24 22:11:09 +00002064
2065 if (ReadyCycle < MinReadyCycle)
2066 MinReadyCycle = ReadyCycle;
2067
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002068 if (!IsBuffered && ReadyCycle > CurrCycle)
Andrew Trick61f1a272012-05-24 22:11:09 +00002069 continue;
2070
Andrew Trick8c9e6722012-06-29 03:23:24 +00002071 if (checkHazard(SU))
Andrew Trick61f1a272012-05-24 22:11:09 +00002072 continue;
2073
2074 Available.push(SU);
2075 Pending.remove(Pending.begin()+i);
2076 --i; --e;
2077 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002078 DEBUG(if (!Pending.empty()) Pending.dump());
Andrew Trick61f1a272012-05-24 22:11:09 +00002079 CheckPending = false;
2080}
2081
2082/// Remove SU from the ready set for this boundary.
Andrew Trickfc127d12013-12-07 05:59:44 +00002083void SchedBoundary::removeReady(SUnit *SU) {
Andrew Trick61f1a272012-05-24 22:11:09 +00002084 if (Available.isInQueue(SU))
2085 Available.remove(Available.find(SU));
2086 else {
2087 assert(Pending.isInQueue(SU) && "bad ready count");
2088 Pending.remove(Pending.find(SU));
2089 }
2090}
2091
2092/// If this queue only has one ready candidate, return it. As a side effect,
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002093/// defer any nodes that now hit a hazard, and advance the cycle until at least
2094/// one node is ready. If multiple instructions are ready, return NULL.
Andrew Trickfc127d12013-12-07 05:59:44 +00002095SUnit *SchedBoundary::pickOnlyChoice() {
Andrew Trick61f1a272012-05-24 22:11:09 +00002096 if (CheckPending)
2097 releasePending();
2098
Andrew Tricke2ff5752013-06-15 04:49:49 +00002099 if (CurrMOps > 0) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002100 // Defer any ready instrs that now have a hazard.
2101 for (ReadyQueue::iterator I = Available.begin(); I != Available.end();) {
2102 if (checkHazard(*I)) {
2103 Pending.push(*I);
2104 I = Available.remove(I);
2105 continue;
2106 }
2107 ++I;
2108 }
2109 }
Andrew Trick61f1a272012-05-24 22:11:09 +00002110 for (unsigned i = 0; Available.empty(); ++i) {
Chad Rosieraba845e2014-07-02 16:46:08 +00002111// FIXME: Re-enable assert once PR20057 is resolved.
2112// assert(i <= (HazardRec->getMaxLookAhead() + MaxObservedStall) &&
2113// "permanent hazard");
2114 (void)i;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002115 bumpCycle(CurrCycle + 1);
Andrew Trick61f1a272012-05-24 22:11:09 +00002116 releasePending();
2117 }
2118 if (Available.size() == 1)
2119 return *Available.begin();
Craig Topperc0196b12014-04-14 00:51:57 +00002120 return nullptr;
Andrew Trick61f1a272012-05-24 22:11:09 +00002121}
2122
Andrew Trick8e8415f2013-06-15 05:46:47 +00002123#ifndef NDEBUG
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002124// This is useful information to dump after bumpNode.
2125// Note that the Queue contents are more useful before pickNodeFromQueue.
Andrew Trickfc127d12013-12-07 05:59:44 +00002126void SchedBoundary::dumpScheduledState() {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002127 unsigned ResFactor;
2128 unsigned ResCount;
2129 if (ZoneCritResIdx) {
2130 ResFactor = SchedModel->getResourceFactor(ZoneCritResIdx);
2131 ResCount = getResourceCount(ZoneCritResIdx);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002132 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002133 else {
2134 ResFactor = SchedModel->getMicroOpFactor();
2135 ResCount = RetiredMOps * SchedModel->getMicroOpFactor();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002136 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002137 unsigned LFactor = SchedModel->getLatencyFactor();
2138 dbgs() << Available.getName() << " @" << CurrCycle << "c\n"
2139 << " Retired: " << RetiredMOps;
2140 dbgs() << "\n Executed: " << getExecutedCount() / LFactor << "c";
2141 dbgs() << "\n Critical: " << ResCount / LFactor << "c, "
Andrew Trickfc127d12013-12-07 05:59:44 +00002142 << ResCount / ResFactor << " "
2143 << SchedModel->getResourceName(ZoneCritResIdx)
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002144 << "\n ExpectedLatency: " << ExpectedLatency << "c\n"
2145 << (IsResourceLimited ? " - Resource" : " - Latency")
2146 << " limited.\n";
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002147}
Andrew Trick8e8415f2013-06-15 05:46:47 +00002148#endif
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002149
Andrew Trickfc127d12013-12-07 05:59:44 +00002150//===----------------------------------------------------------------------===//
Andrew Trickd14d7c22013-12-28 21:56:57 +00002151// GenericScheduler - Generic implementation of MachineSchedStrategy.
Andrew Trickfc127d12013-12-07 05:59:44 +00002152//===----------------------------------------------------------------------===//
2153
Andrew Trickd14d7c22013-12-28 21:56:57 +00002154void GenericSchedulerBase::SchedCandidate::
2155initResourceDelta(const ScheduleDAGMI *DAG,
2156 const TargetSchedModel *SchedModel) {
2157 if (!Policy.ReduceResIdx && !Policy.DemandResIdx)
2158 return;
2159
2160 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
2161 for (TargetSchedModel::ProcResIter
2162 PI = SchedModel->getWriteProcResBegin(SC),
2163 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
2164 if (PI->ProcResourceIdx == Policy.ReduceResIdx)
2165 ResDelta.CritResources += PI->Cycles;
2166 if (PI->ProcResourceIdx == Policy.DemandResIdx)
2167 ResDelta.DemandedResources += PI->Cycles;
2168 }
2169}
2170
2171/// Set the CandPolicy given a scheduling zone given the current resources and
2172/// latencies inside and outside the zone.
2173void GenericSchedulerBase::setPolicy(CandPolicy &Policy,
2174 bool IsPostRA,
2175 SchedBoundary &CurrZone,
2176 SchedBoundary *OtherZone) {
Eric Christopher572e03a2015-06-19 01:53:21 +00002177 // Apply preemptive heuristics based on the total latency and resources
Andrew Trickd14d7c22013-12-28 21:56:57 +00002178 // inside and outside this zone. Potential stalls should be considered before
2179 // following this policy.
2180
2181 // Compute remaining latency. We need this both to determine whether the
2182 // overall schedule has become latency-limited and whether the instructions
2183 // outside this zone are resource or latency limited.
2184 //
2185 // The "dependent" latency is updated incrementally during scheduling as the
2186 // max height/depth of scheduled nodes minus the cycles since it was
2187 // scheduled:
2188 // DLat = max (N.depth - (CurrCycle - N.ReadyCycle) for N in Zone
2189 //
2190 // The "independent" latency is the max ready queue depth:
2191 // ILat = max N.depth for N in Available|Pending
2192 //
2193 // RemainingLatency is the greater of independent and dependent latency.
2194 unsigned RemLatency = CurrZone.getDependentLatency();
2195 RemLatency = std::max(RemLatency,
2196 CurrZone.findMaxLatency(CurrZone.Available.elements()));
2197 RemLatency = std::max(RemLatency,
2198 CurrZone.findMaxLatency(CurrZone.Pending.elements()));
2199
2200 // Compute the critical resource outside the zone.
Andrew Trick7afe4812013-12-28 22:25:57 +00002201 unsigned OtherCritIdx = 0;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002202 unsigned OtherCount =
2203 OtherZone ? OtherZone->getOtherResourceCount(OtherCritIdx) : 0;
2204
2205 bool OtherResLimited = false;
2206 if (SchedModel->hasInstrSchedModel()) {
2207 unsigned LFactor = SchedModel->getLatencyFactor();
2208 OtherResLimited = (int)(OtherCount - (RemLatency * LFactor)) > (int)LFactor;
2209 }
2210 // Schedule aggressively for latency in PostRA mode. We don't check for
2211 // acyclic latency during PostRA, and highly out-of-order processors will
2212 // skip PostRA scheduling.
2213 if (!OtherResLimited) {
2214 if (IsPostRA || (RemLatency + CurrZone.getCurrCycle() > Rem.CriticalPath)) {
2215 Policy.ReduceLatency |= true;
2216 DEBUG(dbgs() << " " << CurrZone.Available.getName()
2217 << " RemainingLatency " << RemLatency << " + "
2218 << CurrZone.getCurrCycle() << "c > CritPath "
2219 << Rem.CriticalPath << "\n");
2220 }
2221 }
2222 // If the same resource is limiting inside and outside the zone, do nothing.
2223 if (CurrZone.getZoneCritResIdx() == OtherCritIdx)
2224 return;
2225
2226 DEBUG(
2227 if (CurrZone.isResourceLimited()) {
2228 dbgs() << " " << CurrZone.Available.getName() << " ResourceLimited: "
2229 << SchedModel->getResourceName(CurrZone.getZoneCritResIdx())
2230 << "\n";
2231 }
2232 if (OtherResLimited)
2233 dbgs() << " RemainingLimit: "
2234 << SchedModel->getResourceName(OtherCritIdx) << "\n";
2235 if (!CurrZone.isResourceLimited() && !OtherResLimited)
2236 dbgs() << " Latency limited both directions.\n");
2237
2238 if (CurrZone.isResourceLimited() && !Policy.ReduceResIdx)
2239 Policy.ReduceResIdx = CurrZone.getZoneCritResIdx();
2240
2241 if (OtherResLimited)
2242 Policy.DemandResIdx = OtherCritIdx;
2243}
2244
2245#ifndef NDEBUG
2246const char *GenericSchedulerBase::getReasonStr(
2247 GenericSchedulerBase::CandReason Reason) {
2248 switch (Reason) {
2249 case NoCand: return "NOCAND ";
2250 case PhysRegCopy: return "PREG-COPY";
2251 case RegExcess: return "REG-EXCESS";
2252 case RegCritical: return "REG-CRIT ";
2253 case Stall: return "STALL ";
2254 case Cluster: return "CLUSTER ";
2255 case Weak: return "WEAK ";
2256 case RegMax: return "REG-MAX ";
2257 case ResourceReduce: return "RES-REDUCE";
2258 case ResourceDemand: return "RES-DEMAND";
2259 case TopDepthReduce: return "TOP-DEPTH ";
2260 case TopPathReduce: return "TOP-PATH ";
2261 case BotHeightReduce:return "BOT-HEIGHT";
2262 case BotPathReduce: return "BOT-PATH ";
2263 case NextDefUse: return "DEF-USE ";
2264 case NodeOrder: return "ORDER ";
2265 };
2266 llvm_unreachable("Unknown reason!");
2267}
2268
2269void GenericSchedulerBase::traceCandidate(const SchedCandidate &Cand) {
2270 PressureChange P;
2271 unsigned ResIdx = 0;
2272 unsigned Latency = 0;
2273 switch (Cand.Reason) {
2274 default:
2275 break;
2276 case RegExcess:
2277 P = Cand.RPDelta.Excess;
2278 break;
2279 case RegCritical:
2280 P = Cand.RPDelta.CriticalMax;
2281 break;
2282 case RegMax:
2283 P = Cand.RPDelta.CurrentMax;
2284 break;
2285 case ResourceReduce:
2286 ResIdx = Cand.Policy.ReduceResIdx;
2287 break;
2288 case ResourceDemand:
2289 ResIdx = Cand.Policy.DemandResIdx;
2290 break;
2291 case TopDepthReduce:
2292 Latency = Cand.SU->getDepth();
2293 break;
2294 case TopPathReduce:
2295 Latency = Cand.SU->getHeight();
2296 break;
2297 case BotHeightReduce:
2298 Latency = Cand.SU->getHeight();
2299 break;
2300 case BotPathReduce:
2301 Latency = Cand.SU->getDepth();
2302 break;
2303 }
2304 dbgs() << " SU(" << Cand.SU->NodeNum << ") " << getReasonStr(Cand.Reason);
2305 if (P.isValid())
2306 dbgs() << " " << TRI->getRegPressureSetName(P.getPSet())
2307 << ":" << P.getUnitInc() << " ";
2308 else
2309 dbgs() << " ";
2310 if (ResIdx)
2311 dbgs() << " " << SchedModel->getProcResource(ResIdx)->Name << " ";
2312 else
2313 dbgs() << " ";
2314 if (Latency)
2315 dbgs() << " " << Latency << " cycles ";
2316 else
2317 dbgs() << " ";
2318 dbgs() << '\n';
2319}
2320#endif
2321
2322/// Return true if this heuristic determines order.
2323static bool tryLess(int TryVal, int CandVal,
2324 GenericSchedulerBase::SchedCandidate &TryCand,
2325 GenericSchedulerBase::SchedCandidate &Cand,
2326 GenericSchedulerBase::CandReason Reason) {
2327 if (TryVal < CandVal) {
2328 TryCand.Reason = Reason;
2329 return true;
2330 }
2331 if (TryVal > CandVal) {
2332 if (Cand.Reason > Reason)
2333 Cand.Reason = Reason;
2334 return true;
2335 }
2336 Cand.setRepeat(Reason);
2337 return false;
2338}
2339
2340static bool tryGreater(int TryVal, int CandVal,
2341 GenericSchedulerBase::SchedCandidate &TryCand,
2342 GenericSchedulerBase::SchedCandidate &Cand,
2343 GenericSchedulerBase::CandReason Reason) {
2344 if (TryVal > CandVal) {
2345 TryCand.Reason = Reason;
2346 return true;
2347 }
2348 if (TryVal < CandVal) {
2349 if (Cand.Reason > Reason)
2350 Cand.Reason = Reason;
2351 return true;
2352 }
2353 Cand.setRepeat(Reason);
2354 return false;
2355}
2356
2357static bool tryLatency(GenericSchedulerBase::SchedCandidate &TryCand,
2358 GenericSchedulerBase::SchedCandidate &Cand,
2359 SchedBoundary &Zone) {
2360 if (Zone.isTop()) {
2361 if (Cand.SU->getDepth() > Zone.getScheduledLatency()) {
2362 if (tryLess(TryCand.SU->getDepth(), Cand.SU->getDepth(),
2363 TryCand, Cand, GenericSchedulerBase::TopDepthReduce))
2364 return true;
2365 }
2366 if (tryGreater(TryCand.SU->getHeight(), Cand.SU->getHeight(),
2367 TryCand, Cand, GenericSchedulerBase::TopPathReduce))
2368 return true;
2369 }
2370 else {
2371 if (Cand.SU->getHeight() > Zone.getScheduledLatency()) {
2372 if (tryLess(TryCand.SU->getHeight(), Cand.SU->getHeight(),
2373 TryCand, Cand, GenericSchedulerBase::BotHeightReduce))
2374 return true;
2375 }
2376 if (tryGreater(TryCand.SU->getDepth(), Cand.SU->getDepth(),
2377 TryCand, Cand, GenericSchedulerBase::BotPathReduce))
2378 return true;
2379 }
2380 return false;
2381}
2382
2383static void tracePick(const GenericSchedulerBase::SchedCandidate &Cand,
2384 bool IsTop) {
2385 DEBUG(dbgs() << "Pick " << (IsTop ? "Top " : "Bot ")
2386 << GenericSchedulerBase::getReasonStr(Cand.Reason) << '\n');
2387}
2388
Andrew Trickfc127d12013-12-07 05:59:44 +00002389void GenericScheduler::initialize(ScheduleDAGMI *dag) {
Andrew Trickd7f890e2013-12-28 21:56:47 +00002390 assert(dag->hasVRegLiveness() &&
2391 "(PreRA)GenericScheduler needs vreg liveness");
2392 DAG = static_cast<ScheduleDAGMILive*>(dag);
Andrew Trickfc127d12013-12-07 05:59:44 +00002393 SchedModel = DAG->getSchedModel();
2394 TRI = DAG->TRI;
2395
2396 Rem.init(DAG, SchedModel);
2397 Top.init(DAG, SchedModel, &Rem);
2398 Bot.init(DAG, SchedModel, &Rem);
2399
2400 // Initialize resource counts.
2401
2402 // Initialize the HazardRecognizers. If itineraries don't exist, are empty, or
2403 // are disabled, then these HazardRecs will be disabled.
2404 const InstrItineraryData *Itin = SchedModel->getInstrItineraries();
Andrew Trickfc127d12013-12-07 05:59:44 +00002405 if (!Top.HazardRec) {
2406 Top.HazardRec =
Eric Christopher99556d72014-10-14 06:56:25 +00002407 DAG->MF.getSubtarget().getInstrInfo()->CreateTargetMIHazardRecognizer(
Eric Christopherd9134482014-08-04 21:25:23 +00002408 Itin, DAG);
Andrew Trickfc127d12013-12-07 05:59:44 +00002409 }
2410 if (!Bot.HazardRec) {
2411 Bot.HazardRec =
Eric Christopher99556d72014-10-14 06:56:25 +00002412 DAG->MF.getSubtarget().getInstrInfo()->CreateTargetMIHazardRecognizer(
Eric Christopherd9134482014-08-04 21:25:23 +00002413 Itin, DAG);
Andrew Trickfc127d12013-12-07 05:59:44 +00002414 }
2415}
2416
2417/// Initialize the per-region scheduling policy.
2418void GenericScheduler::initPolicy(MachineBasicBlock::iterator Begin,
2419 MachineBasicBlock::iterator End,
2420 unsigned NumRegionInstrs) {
Eric Christopher99556d72014-10-14 06:56:25 +00002421 const MachineFunction &MF = *Begin->getParent()->getParent();
2422 const TargetLowering *TLI = MF.getSubtarget().getTargetLowering();
Andrew Trickfc127d12013-12-07 05:59:44 +00002423
2424 // Avoid setting up the register pressure tracker for small regions to save
2425 // compile time. As a rough heuristic, only track pressure when the number of
2426 // schedulable instructions exceeds half the integer register file.
Andrew Trick350ff2c2014-01-21 21:27:37 +00002427 RegionPolicy.ShouldTrackPressure = true;
Andrew Trick46753512014-01-22 03:38:55 +00002428 for (unsigned VT = MVT::i32; VT > (unsigned)MVT::i1; --VT) {
2429 MVT::SimpleValueType LegalIntVT = (MVT::SimpleValueType)VT;
2430 if (TLI->isTypeLegal(LegalIntVT)) {
Andrew Trick350ff2c2014-01-21 21:27:37 +00002431 unsigned NIntRegs = Context->RegClassInfo->getNumAllocatableRegs(
Andrew Trick46753512014-01-22 03:38:55 +00002432 TLI->getRegClassFor(LegalIntVT));
Andrew Trick350ff2c2014-01-21 21:27:37 +00002433 RegionPolicy.ShouldTrackPressure = NumRegionInstrs > (NIntRegs / 2);
2434 }
2435 }
Andrew Trickfc127d12013-12-07 05:59:44 +00002436
2437 // For generic targets, we default to bottom-up, because it's simpler and more
2438 // compile-time optimizations have been implemented in that direction.
2439 RegionPolicy.OnlyBottomUp = true;
2440
2441 // Allow the subtarget to override default policy.
Eric Christopher99556d72014-10-14 06:56:25 +00002442 MF.getSubtarget().overrideSchedPolicy(RegionPolicy, Begin, End,
2443 NumRegionInstrs);
Andrew Trickfc127d12013-12-07 05:59:44 +00002444
2445 // After subtarget overrides, apply command line options.
2446 if (!EnableRegPressure)
2447 RegionPolicy.ShouldTrackPressure = false;
2448
2449 // Check -misched-topdown/bottomup can force or unforce scheduling direction.
2450 // e.g. -misched-bottomup=false allows scheduling in both directions.
2451 assert((!ForceTopDown || !ForceBottomUp) &&
2452 "-misched-topdown incompatible with -misched-bottomup");
2453 if (ForceBottomUp.getNumOccurrences() > 0) {
2454 RegionPolicy.OnlyBottomUp = ForceBottomUp;
2455 if (RegionPolicy.OnlyBottomUp)
2456 RegionPolicy.OnlyTopDown = false;
2457 }
2458 if (ForceTopDown.getNumOccurrences() > 0) {
2459 RegionPolicy.OnlyTopDown = ForceTopDown;
2460 if (RegionPolicy.OnlyTopDown)
2461 RegionPolicy.OnlyBottomUp = false;
2462 }
2463}
2464
2465/// Set IsAcyclicLatencyLimited if the acyclic path is longer than the cyclic
2466/// critical path by more cycles than it takes to drain the instruction buffer.
2467/// We estimate an upper bounds on in-flight instructions as:
2468///
2469/// CyclesPerIteration = max( CyclicPath, Loop-Resource-Height )
2470/// InFlightIterations = AcyclicPath / CyclesPerIteration
2471/// InFlightResources = InFlightIterations * LoopResources
2472///
2473/// TODO: Check execution resources in addition to IssueCount.
2474void GenericScheduler::checkAcyclicLatency() {
2475 if (Rem.CyclicCritPath == 0 || Rem.CyclicCritPath >= Rem.CriticalPath)
2476 return;
2477
2478 // Scaled number of cycles per loop iteration.
2479 unsigned IterCount =
2480 std::max(Rem.CyclicCritPath * SchedModel->getLatencyFactor(),
2481 Rem.RemIssueCount);
2482 // Scaled acyclic critical path.
2483 unsigned AcyclicCount = Rem.CriticalPath * SchedModel->getLatencyFactor();
2484 // InFlightCount = (AcyclicPath / IterCycles) * InstrPerLoop
2485 unsigned InFlightCount =
2486 (AcyclicCount * Rem.RemIssueCount + IterCount-1) / IterCount;
2487 unsigned BufferLimit =
2488 SchedModel->getMicroOpBufferSize() * SchedModel->getMicroOpFactor();
2489
2490 Rem.IsAcyclicLatencyLimited = InFlightCount > BufferLimit;
2491
2492 DEBUG(dbgs() << "IssueCycles="
2493 << Rem.RemIssueCount / SchedModel->getLatencyFactor() << "c "
2494 << "IterCycles=" << IterCount / SchedModel->getLatencyFactor()
2495 << "c NumIters=" << (AcyclicCount + IterCount-1) / IterCount
2496 << " InFlight=" << InFlightCount / SchedModel->getMicroOpFactor()
2497 << "m BufferLim=" << SchedModel->getMicroOpBufferSize() << "m\n";
2498 if (Rem.IsAcyclicLatencyLimited)
2499 dbgs() << " ACYCLIC LATENCY LIMIT\n");
2500}
2501
2502void GenericScheduler::registerRoots() {
2503 Rem.CriticalPath = DAG->ExitSU.getDepth();
2504
2505 // Some roots may not feed into ExitSU. Check all of them in case.
2506 for (std::vector<SUnit*>::const_iterator
2507 I = Bot.Available.begin(), E = Bot.Available.end(); I != E; ++I) {
2508 if ((*I)->getDepth() > Rem.CriticalPath)
2509 Rem.CriticalPath = (*I)->getDepth();
2510 }
Gerolf Hoflehnerb5220dc2014-08-07 21:49:44 +00002511 DEBUG(dbgs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << '\n');
2512 if (DumpCriticalPathLength) {
2513 errs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << " \n";
2514 }
Andrew Trickfc127d12013-12-07 05:59:44 +00002515
2516 if (EnableCyclicPath) {
2517 Rem.CyclicCritPath = DAG->computeCyclicCriticalPath();
2518 checkAcyclicLatency();
2519 }
2520}
2521
Andrew Trick1a831342013-08-30 03:49:48 +00002522static bool tryPressure(const PressureChange &TryP,
2523 const PressureChange &CandP,
Andrew Trickd14d7c22013-12-28 21:56:57 +00002524 GenericSchedulerBase::SchedCandidate &TryCand,
2525 GenericSchedulerBase::SchedCandidate &Cand,
2526 GenericSchedulerBase::CandReason Reason) {
Andrew Trickb1a45b62013-08-30 04:27:29 +00002527 int TryRank = TryP.getPSetOrMax();
2528 int CandRank = CandP.getPSetOrMax();
2529 // If both candidates affect the same set, go with the smallest increase.
2530 if (TryRank == CandRank) {
2531 return tryLess(TryP.getUnitInc(), CandP.getUnitInc(), TryCand, Cand,
2532 Reason);
Andrew Trick401b6952013-07-25 07:26:35 +00002533 }
Andrew Trickb1a45b62013-08-30 04:27:29 +00002534 // If one candidate decreases and the other increases, go with it.
2535 // Invalid candidates have UnitInc==0.
Hal Finkel7a87f8a2014-10-10 17:06:20 +00002536 if (tryGreater(TryP.getUnitInc() < 0, CandP.getUnitInc() < 0, TryCand, Cand,
2537 Reason)) {
Andrew Trickb1a45b62013-08-30 04:27:29 +00002538 return true;
2539 }
Andrew Trick401b6952013-07-25 07:26:35 +00002540 // If the candidates are decreasing pressure, reverse priority.
Andrew Trick1a831342013-08-30 03:49:48 +00002541 if (TryP.getUnitInc() < 0)
Andrew Trick401b6952013-07-25 07:26:35 +00002542 std::swap(TryRank, CandRank);
2543 return tryGreater(TryRank, CandRank, TryCand, Cand, Reason);
2544}
2545
Andrew Tricka7714a02012-11-12 19:40:10 +00002546static unsigned getWeakLeft(const SUnit *SU, bool isTop) {
2547 return (isTop) ? SU->WeakPredsLeft : SU->WeakSuccsLeft;
2548}
2549
Andrew Tricke833e1c2013-04-13 06:07:40 +00002550/// Minimize physical register live ranges. Regalloc wants them adjacent to
2551/// their physreg def/use.
2552///
2553/// FIXME: This is an unnecessary check on the critical path. Most are root/leaf
2554/// copies which can be prescheduled. The rest (e.g. x86 MUL) could be bundled
2555/// with the operation that produces or consumes the physreg. We'll do this when
2556/// regalloc has support for parallel copies.
2557static int biasPhysRegCopy(const SUnit *SU, bool isTop) {
2558 const MachineInstr *MI = SU->getInstr();
2559 if (!MI->isCopy())
2560 return 0;
2561
2562 unsigned ScheduledOper = isTop ? 1 : 0;
2563 unsigned UnscheduledOper = isTop ? 0 : 1;
2564 // If we have already scheduled the physreg produce/consumer, immediately
2565 // schedule the copy.
2566 if (TargetRegisterInfo::isPhysicalRegister(
2567 MI->getOperand(ScheduledOper).getReg()))
2568 return 1;
2569 // If the physreg is at the boundary, defer it. Otherwise schedule it
2570 // immediately to free the dependent. We can hoist the copy later.
2571 bool AtBoundary = isTop ? !SU->NumSuccsLeft : !SU->NumPredsLeft;
2572 if (TargetRegisterInfo::isPhysicalRegister(
2573 MI->getOperand(UnscheduledOper).getReg()))
2574 return AtBoundary ? -1 : 1;
2575 return 0;
2576}
2577
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002578/// Apply a set of heursitics to a new candidate. Heuristics are currently
2579/// hierarchical. This may be more efficient than a graduated cost model because
2580/// we don't need to evaluate all aspects of the model for each node in the
2581/// queue. But it's really done to make the heuristics easier to debug and
2582/// statistically analyze.
2583///
2584/// \param Cand provides the policy and current best candidate.
2585/// \param TryCand refers to the next SUnit candidate, otherwise uninitialized.
2586/// \param Zone describes the scheduled zone that we are extending.
2587/// \param RPTracker describes reg pressure within the scheduled zone.
2588/// \param TempTracker is a scratch pressure tracker to reuse in queries.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002589void GenericScheduler::tryCandidate(SchedCandidate &Cand,
Andrew Trickbb1247b2013-12-05 17:55:47 +00002590 SchedCandidate &TryCand,
2591 SchedBoundary &Zone,
2592 const RegPressureTracker &RPTracker,
2593 RegPressureTracker &TempTracker) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002594
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002595 if (DAG->isTrackingPressure()) {
Andrew Trick310190e2013-09-04 21:00:02 +00002596 // Always initialize TryCand's RPDelta.
2597 if (Zone.isTop()) {
2598 TempTracker.getMaxDownwardPressureDelta(
Andrew Trick1a831342013-08-30 03:49:48 +00002599 TryCand.SU->getInstr(),
Andrew Trick1a831342013-08-30 03:49:48 +00002600 TryCand.RPDelta,
2601 DAG->getRegionCriticalPSets(),
2602 DAG->getRegPressure().MaxSetPressure);
2603 }
2604 else {
Andrew Trick310190e2013-09-04 21:00:02 +00002605 if (VerifyScheduling) {
2606 TempTracker.getMaxUpwardPressureDelta(
2607 TryCand.SU->getInstr(),
2608 &DAG->getPressureDiff(TryCand.SU),
2609 TryCand.RPDelta,
2610 DAG->getRegionCriticalPSets(),
2611 DAG->getRegPressure().MaxSetPressure);
2612 }
2613 else {
2614 RPTracker.getUpwardPressureDelta(
2615 TryCand.SU->getInstr(),
2616 DAG->getPressureDiff(TryCand.SU),
2617 TryCand.RPDelta,
2618 DAG->getRegionCriticalPSets(),
2619 DAG->getRegPressure().MaxSetPressure);
2620 }
Andrew Trick1a831342013-08-30 03:49:48 +00002621 }
2622 }
Andrew Trickc573cd92013-09-06 17:32:44 +00002623 DEBUG(if (TryCand.RPDelta.Excess.isValid())
2624 dbgs() << " SU(" << TryCand.SU->NodeNum << ") "
2625 << TRI->getRegPressureSetName(TryCand.RPDelta.Excess.getPSet())
2626 << ":" << TryCand.RPDelta.Excess.getUnitInc() << "\n");
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002627
2628 // Initialize the candidate if needed.
2629 if (!Cand.isValid()) {
2630 TryCand.Reason = NodeOrder;
2631 return;
2632 }
Andrew Tricke833e1c2013-04-13 06:07:40 +00002633
2634 if (tryGreater(biasPhysRegCopy(TryCand.SU, Zone.isTop()),
2635 biasPhysRegCopy(Cand.SU, Zone.isTop()),
2636 TryCand, Cand, PhysRegCopy))
2637 return;
2638
Andrew Tricke02d5da2015-05-17 23:40:27 +00002639 // Avoid exceeding the target's limit.
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002640 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.Excess,
2641 Cand.RPDelta.Excess,
2642 TryCand, Cand, RegExcess))
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002643 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002644
2645 // Avoid increasing the max critical pressure in the scheduled region.
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002646 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.CriticalMax,
2647 Cand.RPDelta.CriticalMax,
2648 TryCand, Cand, RegCritical))
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002649 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002650
Andrew Trickddffae92013-09-06 17:32:36 +00002651 // For loops that are acyclic path limited, aggressively schedule for latency.
Andrew Tricke1f7bf22013-09-09 22:28:08 +00002652 // This can result in very long dependence chains scheduled in sequence, so
2653 // once every cycle (when CurrMOps == 0), switch to normal heuristics.
Andrew Trickfc127d12013-12-07 05:59:44 +00002654 if (Rem.IsAcyclicLatencyLimited && !Zone.getCurrMOps()
Andrew Tricke1f7bf22013-09-09 22:28:08 +00002655 && tryLatency(TryCand, Cand, Zone))
Andrew Trickddffae92013-09-06 17:32:36 +00002656 return;
2657
Andrew Trick880e5732013-12-05 17:55:58 +00002658 // Prioritize instructions that read unbuffered resources by stall cycles.
2659 if (tryLess(Zone.getLatencyStallCycles(TryCand.SU),
2660 Zone.getLatencyStallCycles(Cand.SU), TryCand, Cand, Stall))
2661 return;
2662
Andrew Tricka7714a02012-11-12 19:40:10 +00002663 // Keep clustered nodes together to encourage downstream peephole
2664 // optimizations which may reduce resource requirements.
2665 //
2666 // This is a best effort to set things up for a post-RA pass. Optimizations
2667 // like generating loads of multiple registers should ideally be done within
2668 // the scheduler pass by combining the loads during DAG postprocessing.
2669 const SUnit *NextClusterSU =
2670 Zone.isTop() ? DAG->getNextClusterSucc() : DAG->getNextClusterPred();
2671 if (tryGreater(TryCand.SU == NextClusterSU, Cand.SU == NextClusterSU,
2672 TryCand, Cand, Cluster))
2673 return;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00002674
2675 // Weak edges are for clustering and other constraints.
Andrew Tricka7714a02012-11-12 19:40:10 +00002676 if (tryLess(getWeakLeft(TryCand.SU, Zone.isTop()),
2677 getWeakLeft(Cand.SU, Zone.isTop()),
Andrew Trick85a1d4c2013-04-24 15:54:43 +00002678 TryCand, Cand, Weak)) {
Andrew Tricka7714a02012-11-12 19:40:10 +00002679 return;
2680 }
Andrew Trick71f08a32013-06-17 21:45:13 +00002681 // Avoid increasing the max pressure of the entire region.
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002682 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.CurrentMax,
2683 Cand.RPDelta.CurrentMax,
2684 TryCand, Cand, RegMax))
Andrew Trick71f08a32013-06-17 21:45:13 +00002685 return;
2686
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002687 // Avoid critical resource consumption and balance the schedule.
2688 TryCand.initResourceDelta(DAG, SchedModel);
2689 if (tryLess(TryCand.ResDelta.CritResources, Cand.ResDelta.CritResources,
2690 TryCand, Cand, ResourceReduce))
2691 return;
2692 if (tryGreater(TryCand.ResDelta.DemandedResources,
2693 Cand.ResDelta.DemandedResources,
2694 TryCand, Cand, ResourceDemand))
2695 return;
2696
2697 // Avoid serializing long latency dependence chains.
Andrew Trickc01b0042013-08-23 17:48:43 +00002698 // For acyclic path limited loops, latency was already checked above.
2699 if (Cand.Policy.ReduceLatency && !Rem.IsAcyclicLatencyLimited
2700 && tryLatency(TryCand, Cand, Zone)) {
2701 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002702 }
2703
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002704 // Prefer immediate defs/users of the last scheduled instruction. This is a
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002705 // local pressure avoidance strategy that also makes the machine code
2706 // readable.
Andrew Trickfc127d12013-12-07 05:59:44 +00002707 if (tryGreater(Zone.isNextSU(TryCand.SU), Zone.isNextSU(Cand.SU),
Andrew Tricka7714a02012-11-12 19:40:10 +00002708 TryCand, Cand, NextDefUse))
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002709 return;
Andrew Tricka7714a02012-11-12 19:40:10 +00002710
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002711 // Fall through to original instruction order.
2712 if ((Zone.isTop() && TryCand.SU->NodeNum < Cand.SU->NodeNum)
2713 || (!Zone.isTop() && TryCand.SU->NodeNum > Cand.SU->NodeNum)) {
2714 TryCand.Reason = NodeOrder;
2715 }
2716}
Andrew Trick419eae22012-05-10 21:06:19 +00002717
Andrew Trickc573cd92013-09-06 17:32:44 +00002718/// Pick the best candidate from the queue.
Andrew Trick7ee9de52012-05-10 21:06:16 +00002719///
2720/// TODO: getMaxPressureDelta results can be mostly cached for each SUnit during
2721/// DAG building. To adjust for the current scheduling location we need to
2722/// maintain the number of vreg uses remaining to be top-scheduled.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002723void GenericScheduler::pickNodeFromQueue(SchedBoundary &Zone,
Andrew Trickbb1247b2013-12-05 17:55:47 +00002724 const RegPressureTracker &RPTracker,
2725 SchedCandidate &Cand) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002726 ReadyQueue &Q = Zone.Available;
2727
Andrew Tricka8ad5f72012-05-24 22:11:12 +00002728 DEBUG(Q.dump());
Andrew Trick22025772012-05-17 18:35:10 +00002729
Andrew Trick7ee9de52012-05-10 21:06:16 +00002730 // getMaxPressureDelta temporarily modifies the tracker.
2731 RegPressureTracker &TempTracker = const_cast<RegPressureTracker&>(RPTracker);
2732
Andrew Trickdd375dd2012-05-24 22:11:03 +00002733 for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) {
Andrew Trick7ee9de52012-05-10 21:06:16 +00002734
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002735 SchedCandidate TryCand(Cand.Policy);
2736 TryCand.SU = *I;
2737 tryCandidate(Cand, TryCand, Zone, RPTracker, TempTracker);
2738 if (TryCand.Reason != NoCand) {
2739 // Initialize resource delta if needed in case future heuristics query it.
2740 if (TryCand.ResDelta == SchedResourceDelta())
2741 TryCand.initResourceDelta(DAG, SchedModel);
2742 Cand.setBest(TryCand);
Andrew Trick419d4912013-04-05 00:31:29 +00002743 DEBUG(traceCandidate(Cand));
Andrew Trick22025772012-05-17 18:35:10 +00002744 }
Andrew Trick7ee9de52012-05-10 21:06:16 +00002745 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002746}
2747
Andrew Trick22025772012-05-17 18:35:10 +00002748/// Pick the best candidate node from either the top or bottom queue.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002749SUnit *GenericScheduler::pickNodeBidirectional(bool &IsTopNode) {
Andrew Trick22025772012-05-17 18:35:10 +00002750 // Schedule as far as possible in the direction of no choice. This is most
2751 // efficient, but also provides the best heuristics for CriticalPSets.
Andrew Trick61f1a272012-05-24 22:11:09 +00002752 if (SUnit *SU = Bot.pickOnlyChoice()) {
Andrew Trick22025772012-05-17 18:35:10 +00002753 IsTopNode = false;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002754 DEBUG(dbgs() << "Pick Bot NOCAND\n");
Andrew Trick61f1a272012-05-24 22:11:09 +00002755 return SU;
Andrew Trick22025772012-05-17 18:35:10 +00002756 }
Andrew Trick61f1a272012-05-24 22:11:09 +00002757 if (SUnit *SU = Top.pickOnlyChoice()) {
Andrew Trick22025772012-05-17 18:35:10 +00002758 IsTopNode = true;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002759 DEBUG(dbgs() << "Pick Top NOCAND\n");
Andrew Trick61f1a272012-05-24 22:11:09 +00002760 return SU;
Andrew Trick22025772012-05-17 18:35:10 +00002761 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002762 CandPolicy NoPolicy;
2763 SchedCandidate BotCand(NoPolicy);
2764 SchedCandidate TopCand(NoPolicy);
Andrew Trickfc127d12013-12-07 05:59:44 +00002765 // Set the bottom-up policy based on the state of the current bottom zone and
2766 // the instructions outside the zone, including the top zone.
Andrew Trickd14d7c22013-12-28 21:56:57 +00002767 setPolicy(BotCand.Policy, /*IsPostRA=*/false, Bot, &Top);
Andrew Trickfc127d12013-12-07 05:59:44 +00002768 // Set the top-down policy based on the state of the current top zone and
2769 // the instructions outside the zone, including the bottom zone.
Andrew Trickd14d7c22013-12-28 21:56:57 +00002770 setPolicy(TopCand.Policy, /*IsPostRA=*/false, Top, &Bot);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002771
Andrew Trick22025772012-05-17 18:35:10 +00002772 // Prefer bottom scheduling when heuristics are silent.
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002773 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand);
2774 assert(BotCand.Reason != NoCand && "failed to find the first candidate");
Andrew Trick22025772012-05-17 18:35:10 +00002775
2776 // If either Q has a single candidate that provides the least increase in
2777 // Excess pressure, we can immediately schedule from that Q.
2778 //
2779 // RegionCriticalPSets summarizes the pressure within the scheduled region and
2780 // affects picking from either Q. If scheduling in one direction must
2781 // increase pressure for one of the excess PSets, then schedule in that
2782 // direction first to provide more freedom in the other direction.
Andrew Trickd40d0f22013-06-17 21:45:05 +00002783 if ((BotCand.Reason == RegExcess && !BotCand.isRepeat(RegExcess))
2784 || (BotCand.Reason == RegCritical
2785 && !BotCand.isRepeat(RegCritical)))
2786 {
Andrew Trick22025772012-05-17 18:35:10 +00002787 IsTopNode = false;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002788 tracePick(BotCand, IsTopNode);
Andrew Trick61f1a272012-05-24 22:11:09 +00002789 return BotCand.SU;
Andrew Trick22025772012-05-17 18:35:10 +00002790 }
2791 // Check if the top Q has a better candidate.
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002792 pickNodeFromQueue(Top, DAG->getTopRPTracker(), TopCand);
2793 assert(TopCand.Reason != NoCand && "failed to find the first candidate");
Andrew Trick22025772012-05-17 18:35:10 +00002794
Andrew Trickd40d0f22013-06-17 21:45:05 +00002795 // Choose the queue with the most important (lowest enum) reason.
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002796 if (TopCand.Reason < BotCand.Reason) {
2797 IsTopNode = true;
2798 tracePick(TopCand, IsTopNode);
2799 return TopCand.SU;
2800 }
Andrew Trickd40d0f22013-06-17 21:45:05 +00002801 // Otherwise prefer the bottom candidate, in node order if all else failed.
Andrew Trick22025772012-05-17 18:35:10 +00002802 IsTopNode = false;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002803 tracePick(BotCand, IsTopNode);
Andrew Trick61f1a272012-05-24 22:11:09 +00002804 return BotCand.SU;
Andrew Trick22025772012-05-17 18:35:10 +00002805}
2806
2807/// Pick the best node to balance the schedule. Implements MachineSchedStrategy.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002808SUnit *GenericScheduler::pickNode(bool &IsTopNode) {
Andrew Trick7ee9de52012-05-10 21:06:16 +00002809 if (DAG->top() == DAG->bottom()) {
Andrew Trick61f1a272012-05-24 22:11:09 +00002810 assert(Top.Available.empty() && Top.Pending.empty() &&
2811 Bot.Available.empty() && Bot.Pending.empty() && "ReadyQ garbage");
Craig Topperc0196b12014-04-14 00:51:57 +00002812 return nullptr;
Andrew Trick7ee9de52012-05-10 21:06:16 +00002813 }
Andrew Trick7ee9de52012-05-10 21:06:16 +00002814 SUnit *SU;
Andrew Trick984d98b2012-10-08 18:53:53 +00002815 do {
Andrew Trick75e411c2013-09-06 17:32:34 +00002816 if (RegionPolicy.OnlyTopDown) {
Andrew Trick984d98b2012-10-08 18:53:53 +00002817 SU = Top.pickOnlyChoice();
2818 if (!SU) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002819 CandPolicy NoPolicy;
2820 SchedCandidate TopCand(NoPolicy);
2821 pickNodeFromQueue(Top, DAG->getTopRPTracker(), TopCand);
Andrew Trick1ab16d92013-09-04 21:00:13 +00002822 assert(TopCand.Reason != NoCand && "failed to find a candidate");
Andrew Trickef54c592013-09-04 21:00:16 +00002823 tracePick(TopCand, true);
Andrew Trick984d98b2012-10-08 18:53:53 +00002824 SU = TopCand.SU;
2825 }
2826 IsTopNode = true;
Andrew Tricka306a8a2012-05-24 23:11:17 +00002827 }
Andrew Trick75e411c2013-09-06 17:32:34 +00002828 else if (RegionPolicy.OnlyBottomUp) {
Andrew Trick984d98b2012-10-08 18:53:53 +00002829 SU = Bot.pickOnlyChoice();
2830 if (!SU) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002831 CandPolicy NoPolicy;
2832 SchedCandidate BotCand(NoPolicy);
2833 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand);
Andrew Trick1ab16d92013-09-04 21:00:13 +00002834 assert(BotCand.Reason != NoCand && "failed to find a candidate");
Andrew Trickef54c592013-09-04 21:00:16 +00002835 tracePick(BotCand, false);
Andrew Trick984d98b2012-10-08 18:53:53 +00002836 SU = BotCand.SU;
2837 }
2838 IsTopNode = false;
Andrew Tricka306a8a2012-05-24 23:11:17 +00002839 }
Andrew Trick984d98b2012-10-08 18:53:53 +00002840 else {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002841 SU = pickNodeBidirectional(IsTopNode);
Andrew Trick984d98b2012-10-08 18:53:53 +00002842 }
2843 } while (SU->isScheduled);
2844
Andrew Trick61f1a272012-05-24 22:11:09 +00002845 if (SU->isTopReady())
2846 Top.removeReady(SU);
2847 if (SU->isBottomReady())
2848 Bot.removeReady(SU);
Andrew Trick4e7f6a72012-05-25 02:02:39 +00002849
Andrew Trick1f0bb692013-04-13 06:07:49 +00002850 DEBUG(dbgs() << "Scheduling SU(" << SU->NodeNum << ") " << *SU->getInstr());
Andrew Trick7ee9de52012-05-10 21:06:16 +00002851 return SU;
2852}
2853
Andrew Trick665d3ec2013-09-19 23:10:59 +00002854void GenericScheduler::reschedulePhysRegCopies(SUnit *SU, bool isTop) {
Andrew Tricke833e1c2013-04-13 06:07:40 +00002855
2856 MachineBasicBlock::iterator InsertPos = SU->getInstr();
2857 if (!isTop)
2858 ++InsertPos;
2859 SmallVectorImpl<SDep> &Deps = isTop ? SU->Preds : SU->Succs;
2860
2861 // Find already scheduled copies with a single physreg dependence and move
2862 // them just above the scheduled instruction.
2863 for (SmallVectorImpl<SDep>::iterator I = Deps.begin(), E = Deps.end();
2864 I != E; ++I) {
2865 if (I->getKind() != SDep::Data || !TRI->isPhysicalRegister(I->getReg()))
2866 continue;
2867 SUnit *DepSU = I->getSUnit();
2868 if (isTop ? DepSU->Succs.size() > 1 : DepSU->Preds.size() > 1)
2869 continue;
2870 MachineInstr *Copy = DepSU->getInstr();
2871 if (!Copy->isCopy())
2872 continue;
2873 DEBUG(dbgs() << " Rescheduling physreg copy ";
2874 I->getSUnit()->dump(DAG));
2875 DAG->moveInstruction(Copy, InsertPos);
2876 }
2877}
2878
Andrew Trick61f1a272012-05-24 22:11:09 +00002879/// Update the scheduler's state after scheduling a node. This is the same node
Andrew Trickd14d7c22013-12-28 21:56:57 +00002880/// that was just returned by pickNode(). However, ScheduleDAGMILive needs to
2881/// update it's state based on the current cycle before MachineSchedStrategy
2882/// does.
Andrew Tricke833e1c2013-04-13 06:07:40 +00002883///
2884/// FIXME: Eventually, we may bundle physreg copies rather than rescheduling
2885/// them here. See comments in biasPhysRegCopy.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002886void GenericScheduler::schedNode(SUnit *SU, bool IsTopNode) {
Andrew Trick45446062012-06-05 21:11:27 +00002887 if (IsTopNode) {
Andrew Trickfc127d12013-12-07 05:59:44 +00002888 SU->TopReadyCycle = std::max(SU->TopReadyCycle, Top.getCurrCycle());
Andrew Trickce27bb92012-06-29 03:23:22 +00002889 Top.bumpNode(SU);
Andrew Tricke833e1c2013-04-13 06:07:40 +00002890 if (SU->hasPhysRegUses)
2891 reschedulePhysRegCopies(SU, true);
Andrew Trick61f1a272012-05-24 22:11:09 +00002892 }
Andrew Trick45446062012-06-05 21:11:27 +00002893 else {
Andrew Trickfc127d12013-12-07 05:59:44 +00002894 SU->BotReadyCycle = std::max(SU->BotReadyCycle, Bot.getCurrCycle());
Andrew Trickce27bb92012-06-29 03:23:22 +00002895 Bot.bumpNode(SU);
Andrew Tricke833e1c2013-04-13 06:07:40 +00002896 if (SU->hasPhysRegDefs)
2897 reschedulePhysRegCopies(SU, false);
Andrew Trick61f1a272012-05-24 22:11:09 +00002898 }
2899}
2900
Andrew Trick8823dec2012-03-14 04:00:41 +00002901/// Create the standard converging machine scheduler. This will be used as the
2902/// default scheduler if the target does not set a default.
Andrew Trickd14d7c22013-12-28 21:56:57 +00002903static ScheduleDAGInstrs *createGenericSchedLive(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00002904 ScheduleDAGMILive *DAG = new ScheduleDAGMILive(C, make_unique<GenericScheduler>(C));
Andrew Tricka7714a02012-11-12 19:40:10 +00002905 // Register DAG post-processors.
Andrew Trick85a1d4c2013-04-24 15:54:43 +00002906 //
2907 // FIXME: extend the mutation API to allow earlier mutations to instantiate
2908 // data and pass it to later mutations. Have a single mutation that gathers
2909 // the interesting nodes in one pass.
David Blaikie422b93d2014-04-21 20:32:32 +00002910 DAG->addMutation(make_unique<CopyConstrain>(DAG->TII, DAG->TRI));
Andrew Tricka6e87772013-09-04 21:00:08 +00002911 if (EnableLoadCluster && DAG->TII->enableClusterLoads())
David Blaikie422b93d2014-04-21 20:32:32 +00002912 DAG->addMutation(make_unique<LoadClusterMutation>(DAG->TII, DAG->TRI));
Andrew Trick263280242012-11-12 19:52:20 +00002913 if (EnableMacroFusion)
Matthias Braun2bd6dd82015-07-20 22:34:44 +00002914 DAG->addMutation(make_unique<MacroFusion>(*DAG->TII, *DAG->TRI));
Andrew Tricka7714a02012-11-12 19:40:10 +00002915 return DAG;
Andrew Tricke1c034f2012-01-17 06:55:03 +00002916}
Andrew Trickd14d7c22013-12-28 21:56:57 +00002917
Andrew Tricke1c034f2012-01-17 06:55:03 +00002918static MachineSchedRegistry
Andrew Trick665d3ec2013-09-19 23:10:59 +00002919GenericSchedRegistry("converge", "Standard converging scheduler.",
Andrew Trickd14d7c22013-12-28 21:56:57 +00002920 createGenericSchedLive);
2921
2922//===----------------------------------------------------------------------===//
2923// PostGenericScheduler - Generic PostRA implementation of MachineSchedStrategy.
2924//===----------------------------------------------------------------------===//
2925
Andrew Trick3ccf71d2014-06-04 07:06:18 +00002926void PostGenericScheduler::initialize(ScheduleDAGMI *Dag) {
2927 DAG = Dag;
2928 SchedModel = DAG->getSchedModel();
2929 TRI = DAG->TRI;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002930
Andrew Trick3ccf71d2014-06-04 07:06:18 +00002931 Rem.init(DAG, SchedModel);
2932 Top.init(DAG, SchedModel, &Rem);
2933 BotRoots.clear();
Andrew Trickd14d7c22013-12-28 21:56:57 +00002934
Andrew Trick3ccf71d2014-06-04 07:06:18 +00002935 // Initialize the HazardRecognizers. If itineraries don't exist, are empty,
2936 // or are disabled, then these HazardRecs will be disabled.
2937 const InstrItineraryData *Itin = SchedModel->getInstrItineraries();
Andrew Trick3ccf71d2014-06-04 07:06:18 +00002938 if (!Top.HazardRec) {
2939 Top.HazardRec =
Eric Christopher99556d72014-10-14 06:56:25 +00002940 DAG->MF.getSubtarget().getInstrInfo()->CreateTargetMIHazardRecognizer(
Eric Christopherd9134482014-08-04 21:25:23 +00002941 Itin, DAG);
Andrew Trickd14d7c22013-12-28 21:56:57 +00002942 }
Andrew Trick3ccf71d2014-06-04 07:06:18 +00002943}
Andrew Trickd14d7c22013-12-28 21:56:57 +00002944
Andrew Trickd14d7c22013-12-28 21:56:57 +00002945
2946void PostGenericScheduler::registerRoots() {
2947 Rem.CriticalPath = DAG->ExitSU.getDepth();
2948
2949 // Some roots may not feed into ExitSU. Check all of them in case.
2950 for (SmallVectorImpl<SUnit*>::const_iterator
2951 I = BotRoots.begin(), E = BotRoots.end(); I != E; ++I) {
2952 if ((*I)->getDepth() > Rem.CriticalPath)
2953 Rem.CriticalPath = (*I)->getDepth();
2954 }
Gerolf Hoflehnerb5220dc2014-08-07 21:49:44 +00002955 DEBUG(dbgs() << "Critical Path: (PGS-RR) " << Rem.CriticalPath << '\n');
2956 if (DumpCriticalPathLength) {
2957 errs() << "Critical Path(PGS-RR ): " << Rem.CriticalPath << " \n";
2958 }
Andrew Trickd14d7c22013-12-28 21:56:57 +00002959}
2960
2961/// Apply a set of heursitics to a new candidate for PostRA scheduling.
2962///
2963/// \param Cand provides the policy and current best candidate.
2964/// \param TryCand refers to the next SUnit candidate, otherwise uninitialized.
2965void PostGenericScheduler::tryCandidate(SchedCandidate &Cand,
2966 SchedCandidate &TryCand) {
2967
2968 // Initialize the candidate if needed.
2969 if (!Cand.isValid()) {
2970 TryCand.Reason = NodeOrder;
2971 return;
2972 }
2973
2974 // Prioritize instructions that read unbuffered resources by stall cycles.
2975 if (tryLess(Top.getLatencyStallCycles(TryCand.SU),
2976 Top.getLatencyStallCycles(Cand.SU), TryCand, Cand, Stall))
2977 return;
2978
2979 // Avoid critical resource consumption and balance the schedule.
2980 if (tryLess(TryCand.ResDelta.CritResources, Cand.ResDelta.CritResources,
2981 TryCand, Cand, ResourceReduce))
2982 return;
2983 if (tryGreater(TryCand.ResDelta.DemandedResources,
2984 Cand.ResDelta.DemandedResources,
2985 TryCand, Cand, ResourceDemand))
2986 return;
2987
2988 // Avoid serializing long latency dependence chains.
2989 if (Cand.Policy.ReduceLatency && tryLatency(TryCand, Cand, Top)) {
2990 return;
2991 }
2992
2993 // Fall through to original instruction order.
2994 if (TryCand.SU->NodeNum < Cand.SU->NodeNum)
2995 TryCand.Reason = NodeOrder;
2996}
2997
2998void PostGenericScheduler::pickNodeFromQueue(SchedCandidate &Cand) {
2999 ReadyQueue &Q = Top.Available;
3000
3001 DEBUG(Q.dump());
3002
3003 for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) {
3004 SchedCandidate TryCand(Cand.Policy);
3005 TryCand.SU = *I;
3006 TryCand.initResourceDelta(DAG, SchedModel);
3007 tryCandidate(Cand, TryCand);
3008 if (TryCand.Reason != NoCand) {
3009 Cand.setBest(TryCand);
3010 DEBUG(traceCandidate(Cand));
3011 }
3012 }
3013}
3014
3015/// Pick the next node to schedule.
3016SUnit *PostGenericScheduler::pickNode(bool &IsTopNode) {
3017 if (DAG->top() == DAG->bottom()) {
3018 assert(Top.Available.empty() && Top.Pending.empty() && "ReadyQ garbage");
Craig Topperc0196b12014-04-14 00:51:57 +00003019 return nullptr;
Andrew Trickd14d7c22013-12-28 21:56:57 +00003020 }
3021 SUnit *SU;
3022 do {
3023 SU = Top.pickOnlyChoice();
3024 if (!SU) {
3025 CandPolicy NoPolicy;
3026 SchedCandidate TopCand(NoPolicy);
3027 // Set the top-down policy based on the state of the current top zone and
3028 // the instructions outside the zone, including the bottom zone.
Craig Topperc0196b12014-04-14 00:51:57 +00003029 setPolicy(TopCand.Policy, /*IsPostRA=*/true, Top, nullptr);
Andrew Trickd14d7c22013-12-28 21:56:57 +00003030 pickNodeFromQueue(TopCand);
3031 assert(TopCand.Reason != NoCand && "failed to find a candidate");
3032 tracePick(TopCand, true);
3033 SU = TopCand.SU;
3034 }
3035 } while (SU->isScheduled);
3036
3037 IsTopNode = true;
3038 Top.removeReady(SU);
3039
3040 DEBUG(dbgs() << "Scheduling SU(" << SU->NodeNum << ") " << *SU->getInstr());
3041 return SU;
3042}
3043
3044/// Called after ScheduleDAGMI has scheduled an instruction and updated
3045/// scheduled/remaining flags in the DAG nodes.
3046void PostGenericScheduler::schedNode(SUnit *SU, bool IsTopNode) {
3047 SU->TopReadyCycle = std::max(SU->TopReadyCycle, Top.getCurrCycle());
3048 Top.bumpNode(SU);
3049}
3050
3051/// Create a generic scheduler with no vreg liveness or DAG mutation passes.
3052static ScheduleDAGInstrs *createGenericSchedPostRA(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003053 return new ScheduleDAGMI(C, make_unique<PostGenericScheduler>(C), /*IsPostRA=*/true);
Andrew Trickd14d7c22013-12-28 21:56:57 +00003054}
Andrew Tricke1c034f2012-01-17 06:55:03 +00003055
3056//===----------------------------------------------------------------------===//
Andrew Trick90f711d2012-10-15 18:02:27 +00003057// ILP Scheduler. Currently for experimental analysis of heuristics.
3058//===----------------------------------------------------------------------===//
3059
3060namespace {
3061/// \brief Order nodes by the ILP metric.
3062struct ILPOrder {
Andrew Trick44f750a2013-01-25 04:01:04 +00003063 const SchedDFSResult *DFSResult;
3064 const BitVector *ScheduledTrees;
Andrew Trick90f711d2012-10-15 18:02:27 +00003065 bool MaximizeILP;
3066
Craig Topperc0196b12014-04-14 00:51:57 +00003067 ILPOrder(bool MaxILP)
3068 : DFSResult(nullptr), ScheduledTrees(nullptr), MaximizeILP(MaxILP) {}
Andrew Trick90f711d2012-10-15 18:02:27 +00003069
3070 /// \brief Apply a less-than relation on node priority.
Andrew Trick48d392e2012-11-28 05:13:28 +00003071 ///
3072 /// (Return true if A comes after B in the Q.)
Andrew Trick90f711d2012-10-15 18:02:27 +00003073 bool operator()(const SUnit *A, const SUnit *B) const {
Andrew Trick48d392e2012-11-28 05:13:28 +00003074 unsigned SchedTreeA = DFSResult->getSubtreeID(A);
3075 unsigned SchedTreeB = DFSResult->getSubtreeID(B);
3076 if (SchedTreeA != SchedTreeB) {
3077 // Unscheduled trees have lower priority.
3078 if (ScheduledTrees->test(SchedTreeA) != ScheduledTrees->test(SchedTreeB))
3079 return ScheduledTrees->test(SchedTreeB);
3080
3081 // Trees with shallower connections have have lower priority.
3082 if (DFSResult->getSubtreeLevel(SchedTreeA)
3083 != DFSResult->getSubtreeLevel(SchedTreeB)) {
3084 return DFSResult->getSubtreeLevel(SchedTreeA)
3085 < DFSResult->getSubtreeLevel(SchedTreeB);
3086 }
3087 }
Andrew Trick90f711d2012-10-15 18:02:27 +00003088 if (MaximizeILP)
Andrew Trick48d392e2012-11-28 05:13:28 +00003089 return DFSResult->getILP(A) < DFSResult->getILP(B);
Andrew Trick90f711d2012-10-15 18:02:27 +00003090 else
Andrew Trick48d392e2012-11-28 05:13:28 +00003091 return DFSResult->getILP(A) > DFSResult->getILP(B);
Andrew Trick90f711d2012-10-15 18:02:27 +00003092 }
3093};
3094
3095/// \brief Schedule based on the ILP metric.
3096class ILPScheduler : public MachineSchedStrategy {
Andrew Trickd7f890e2013-12-28 21:56:47 +00003097 ScheduleDAGMILive *DAG;
Andrew Trick90f711d2012-10-15 18:02:27 +00003098 ILPOrder Cmp;
3099
3100 std::vector<SUnit*> ReadyQ;
3101public:
Craig Topperc0196b12014-04-14 00:51:57 +00003102 ILPScheduler(bool MaximizeILP): DAG(nullptr), Cmp(MaximizeILP) {}
Andrew Trick90f711d2012-10-15 18:02:27 +00003103
Craig Topper4584cd52014-03-07 09:26:03 +00003104 void initialize(ScheduleDAGMI *dag) override {
Andrew Trickd7f890e2013-12-28 21:56:47 +00003105 assert(dag->hasVRegLiveness() && "ILPScheduler needs vreg liveness");
3106 DAG = static_cast<ScheduleDAGMILive*>(dag);
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00003107 DAG->computeDFSResult();
Andrew Trick44f750a2013-01-25 04:01:04 +00003108 Cmp.DFSResult = DAG->getDFSResult();
3109 Cmp.ScheduledTrees = &DAG->getScheduledTrees();
Andrew Trick90f711d2012-10-15 18:02:27 +00003110 ReadyQ.clear();
Andrew Trick90f711d2012-10-15 18:02:27 +00003111 }
3112
Craig Topper4584cd52014-03-07 09:26:03 +00003113 void registerRoots() override {
Benjamin Krameraa598b32012-11-29 14:36:26 +00003114 // Restore the heap in ReadyQ with the updated DFS results.
3115 std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
Andrew Trick90f711d2012-10-15 18:02:27 +00003116 }
3117
3118 /// Implement MachineSchedStrategy interface.
3119 /// -----------------------------------------
3120
Andrew Trick48d392e2012-11-28 05:13:28 +00003121 /// Callback to select the highest priority node from the ready Q.
Craig Topper4584cd52014-03-07 09:26:03 +00003122 SUnit *pickNode(bool &IsTopNode) override {
Craig Topperc0196b12014-04-14 00:51:57 +00003123 if (ReadyQ.empty()) return nullptr;
Matt Arsenault4ab769f2013-03-21 00:57:21 +00003124 std::pop_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
Andrew Trick90f711d2012-10-15 18:02:27 +00003125 SUnit *SU = ReadyQ.back();
3126 ReadyQ.pop_back();
3127 IsTopNode = false;
Andrew Trick1f0bb692013-04-13 06:07:49 +00003128 DEBUG(dbgs() << "Pick node " << "SU(" << SU->NodeNum << ") "
Andrew Trick44f750a2013-01-25 04:01:04 +00003129 << " ILP: " << DAG->getDFSResult()->getILP(SU)
3130 << " Tree: " << DAG->getDFSResult()->getSubtreeID(SU) << " @"
3131 << DAG->getDFSResult()->getSubtreeLevel(
Andrew Trick1f0bb692013-04-13 06:07:49 +00003132 DAG->getDFSResult()->getSubtreeID(SU)) << '\n'
3133 << "Scheduling " << *SU->getInstr());
Andrew Trick90f711d2012-10-15 18:02:27 +00003134 return SU;
3135 }
3136
Andrew Trick44f750a2013-01-25 04:01:04 +00003137 /// \brief Scheduler callback to notify that a new subtree is scheduled.
Craig Topper4584cd52014-03-07 09:26:03 +00003138 void scheduleTree(unsigned SubtreeID) override {
Andrew Trick44f750a2013-01-25 04:01:04 +00003139 std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
3140 }
3141
Andrew Trick48d392e2012-11-28 05:13:28 +00003142 /// Callback after a node is scheduled. Mark a newly scheduled tree, notify
3143 /// DFSResults, and resort the priority Q.
Craig Topper4584cd52014-03-07 09:26:03 +00003144 void schedNode(SUnit *SU, bool IsTopNode) override {
Andrew Trick48d392e2012-11-28 05:13:28 +00003145 assert(!IsTopNode && "SchedDFSResult needs bottom-up");
Andrew Trick48d392e2012-11-28 05:13:28 +00003146 }
Andrew Trick90f711d2012-10-15 18:02:27 +00003147
Craig Topper4584cd52014-03-07 09:26:03 +00003148 void releaseTopNode(SUnit *) override { /*only called for top roots*/ }
Andrew Trick90f711d2012-10-15 18:02:27 +00003149
Craig Topper4584cd52014-03-07 09:26:03 +00003150 void releaseBottomNode(SUnit *SU) override {
Andrew Trick90f711d2012-10-15 18:02:27 +00003151 ReadyQ.push_back(SU);
3152 std::push_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
3153 }
3154};
3155} // namespace
3156
3157static ScheduleDAGInstrs *createILPMaxScheduler(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003158 return new ScheduleDAGMILive(C, make_unique<ILPScheduler>(true));
Andrew Trick90f711d2012-10-15 18:02:27 +00003159}
3160static ScheduleDAGInstrs *createILPMinScheduler(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003161 return new ScheduleDAGMILive(C, make_unique<ILPScheduler>(false));
Andrew Trick90f711d2012-10-15 18:02:27 +00003162}
3163static MachineSchedRegistry ILPMaxRegistry(
3164 "ilpmax", "Schedule bottom-up for max ILP", createILPMaxScheduler);
3165static MachineSchedRegistry ILPMinRegistry(
3166 "ilpmin", "Schedule bottom-up for min ILP", createILPMinScheduler);
3167
3168//===----------------------------------------------------------------------===//
Andrew Trick63440872012-01-14 02:17:06 +00003169// Machine Instruction Shuffler for Correctness Testing
3170//===----------------------------------------------------------------------===//
3171
Andrew Tricke77e84e2012-01-13 06:30:30 +00003172#ifndef NDEBUG
3173namespace {
Andrew Trick8823dec2012-03-14 04:00:41 +00003174/// Apply a less-than relation on the node order, which corresponds to the
3175/// instruction order prior to scheduling. IsReverse implements greater-than.
3176template<bool IsReverse>
3177struct SUnitOrder {
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003178 bool operator()(SUnit *A, SUnit *B) const {
Andrew Trick8823dec2012-03-14 04:00:41 +00003179 if (IsReverse)
3180 return A->NodeNum > B->NodeNum;
3181 else
3182 return A->NodeNum < B->NodeNum;
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003183 }
3184};
3185
Andrew Tricke77e84e2012-01-13 06:30:30 +00003186/// Reorder instructions as much as possible.
Andrew Trick8823dec2012-03-14 04:00:41 +00003187class InstructionShuffler : public MachineSchedStrategy {
3188 bool IsAlternating;
3189 bool IsTopDown;
3190
3191 // Using a less-than relation (SUnitOrder<false>) for the TopQ priority
3192 // gives nodes with a higher number higher priority causing the latest
3193 // instructions to be scheduled first.
3194 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<false> >
3195 TopQ;
3196 // When scheduling bottom-up, use greater-than as the queue priority.
3197 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<true> >
3198 BottomQ;
Andrew Tricke77e84e2012-01-13 06:30:30 +00003199public:
Andrew Trick8823dec2012-03-14 04:00:41 +00003200 InstructionShuffler(bool alternate, bool topdown)
3201 : IsAlternating(alternate), IsTopDown(topdown) {}
Andrew Tricke77e84e2012-01-13 06:30:30 +00003202
Craig Topper9d74a5a2014-04-29 07:58:41 +00003203 void initialize(ScheduleDAGMI*) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003204 TopQ.clear();
3205 BottomQ.clear();
3206 }
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003207
Andrew Trick8823dec2012-03-14 04:00:41 +00003208 /// Implement MachineSchedStrategy interface.
3209 /// -----------------------------------------
3210
Craig Topper9d74a5a2014-04-29 07:58:41 +00003211 SUnit *pickNode(bool &IsTopNode) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003212 SUnit *SU;
3213 if (IsTopDown) {
3214 do {
Craig Topperc0196b12014-04-14 00:51:57 +00003215 if (TopQ.empty()) return nullptr;
Andrew Trick8823dec2012-03-14 04:00:41 +00003216 SU = TopQ.top();
3217 TopQ.pop();
3218 } while (SU->isScheduled);
3219 IsTopNode = true;
3220 }
3221 else {
3222 do {
Craig Topperc0196b12014-04-14 00:51:57 +00003223 if (BottomQ.empty()) return nullptr;
Andrew Trick8823dec2012-03-14 04:00:41 +00003224 SU = BottomQ.top();
3225 BottomQ.pop();
3226 } while (SU->isScheduled);
3227 IsTopNode = false;
3228 }
3229 if (IsAlternating)
3230 IsTopDown = !IsTopDown;
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003231 return SU;
3232 }
3233
Craig Topper9d74a5a2014-04-29 07:58:41 +00003234 void schedNode(SUnit *SU, bool IsTopNode) override {}
Andrew Trick61f1a272012-05-24 22:11:09 +00003235
Craig Topper9d74a5a2014-04-29 07:58:41 +00003236 void releaseTopNode(SUnit *SU) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003237 TopQ.push(SU);
3238 }
Craig Topper9d74a5a2014-04-29 07:58:41 +00003239 void releaseBottomNode(SUnit *SU) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003240 BottomQ.push(SU);
Andrew Tricke77e84e2012-01-13 06:30:30 +00003241 }
3242};
3243} // namespace
3244
Andrew Trick02a80da2012-03-08 01:41:12 +00003245static ScheduleDAGInstrs *createInstructionShuffler(MachineSchedContext *C) {
Andrew Trick8823dec2012-03-14 04:00:41 +00003246 bool Alternate = !ForceTopDown && !ForceBottomUp;
3247 bool TopDown = !ForceBottomUp;
Benjamin Kramer05e7a842012-03-14 11:26:37 +00003248 assert((TopDown || !ForceTopDown) &&
Andrew Trick8823dec2012-03-14 04:00:41 +00003249 "-misched-topdown incompatible with -misched-bottomup");
David Blaikie422b93d2014-04-21 20:32:32 +00003250 return new ScheduleDAGMILive(C, make_unique<InstructionShuffler>(Alternate, TopDown));
Andrew Tricke77e84e2012-01-13 06:30:30 +00003251}
Andrew Trick8823dec2012-03-14 04:00:41 +00003252static MachineSchedRegistry ShufflerRegistry(
3253 "shuffle", "Shuffle machine instructions alternating directions",
3254 createInstructionShuffler);
Andrew Tricke77e84e2012-01-13 06:30:30 +00003255#endif // !NDEBUG
Andrew Trickea9fd952013-01-25 07:45:29 +00003256
3257//===----------------------------------------------------------------------===//
Andrew Trickd7f890e2013-12-28 21:56:47 +00003258// GraphWriter support for ScheduleDAGMILive.
Andrew Trickea9fd952013-01-25 07:45:29 +00003259//===----------------------------------------------------------------------===//
3260
3261#ifndef NDEBUG
3262namespace llvm {
3263
3264template<> struct GraphTraits<
3265 ScheduleDAGMI*> : public GraphTraits<ScheduleDAG*> {};
3266
3267template<>
3268struct DOTGraphTraits<ScheduleDAGMI*> : public DefaultDOTGraphTraits {
3269
3270 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
3271
3272 static std::string getGraphName(const ScheduleDAG *G) {
3273 return G->MF.getName();
3274 }
3275
3276 static bool renderGraphFromBottomUp() {
3277 return true;
3278 }
3279
3280 static bool isNodeHidden(const SUnit *Node) {
Andrew Trick856ecd92013-09-04 21:00:18 +00003281 return (Node->Preds.size() > 10 || Node->Succs.size() > 10);
Andrew Trickea9fd952013-01-25 07:45:29 +00003282 }
3283
3284 static bool hasNodeAddressLabel(const SUnit *Node,
3285 const ScheduleDAG *Graph) {
3286 return false;
3287 }
3288
3289 /// If you want to override the dot attributes printed for a particular
3290 /// edge, override this method.
3291 static std::string getEdgeAttributes(const SUnit *Node,
3292 SUnitIterator EI,
3293 const ScheduleDAG *Graph) {
3294 if (EI.isArtificialDep())
3295 return "color=cyan,style=dashed";
3296 if (EI.isCtrlDep())
3297 return "color=blue,style=dashed";
3298 return "";
3299 }
3300
3301 static std::string getNodeLabel(const SUnit *SU, const ScheduleDAG *G) {
Alp Tokere69170a2014-06-26 22:52:05 +00003302 std::string Str;
3303 raw_string_ostream SS(Str);
Andrew Trickd7f890e2013-12-28 21:56:47 +00003304 const ScheduleDAGMI *DAG = static_cast<const ScheduleDAGMI*>(G);
3305 const SchedDFSResult *DFS = DAG->hasVRegLiveness() ?
Craig Topperc0196b12014-04-14 00:51:57 +00003306 static_cast<const ScheduleDAGMILive*>(G)->getDFSResult() : nullptr;
Andrew Trick7609b7d2013-09-06 17:32:42 +00003307 SS << "SU:" << SU->NodeNum;
3308 if (DFS)
3309 SS << " I:" << DFS->getNumInstrs(SU);
Andrew Trickea9fd952013-01-25 07:45:29 +00003310 return SS.str();
3311 }
3312 static std::string getNodeDescription(const SUnit *SU, const ScheduleDAG *G) {
3313 return G->getGraphNodeLabel(SU);
3314 }
3315
Andrew Trickd7f890e2013-12-28 21:56:47 +00003316 static std::string getNodeAttributes(const SUnit *N, const ScheduleDAG *G) {
Andrew Trickea9fd952013-01-25 07:45:29 +00003317 std::string Str("shape=Mrecord");
Andrew Trickd7f890e2013-12-28 21:56:47 +00003318 const ScheduleDAGMI *DAG = static_cast<const ScheduleDAGMI*>(G);
3319 const SchedDFSResult *DFS = DAG->hasVRegLiveness() ?
Craig Topperc0196b12014-04-14 00:51:57 +00003320 static_cast<const ScheduleDAGMILive*>(G)->getDFSResult() : nullptr;
Andrew Trickea9fd952013-01-25 07:45:29 +00003321 if (DFS) {
3322 Str += ",style=filled,fillcolor=\"#";
3323 Str += DOT::getColorString(DFS->getSubtreeID(N));
3324 Str += '"';
3325 }
3326 return Str;
3327 }
3328};
3329} // namespace llvm
3330#endif // NDEBUG
3331
3332/// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
3333/// rendered using 'dot'.
3334///
3335void ScheduleDAGMI::viewGraph(const Twine &Name, const Twine &Title) {
3336#ifndef NDEBUG
3337 ViewGraph(this, Name, false, Title);
3338#else
3339 errs() << "ScheduleDAGMI::viewGraph is only available in debug builds on "
3340 << "systems with Graphviz or gv!\n";
3341#endif // NDEBUG
3342}
3343
3344/// Out-of-line implementation with no arguments is handy for gdb.
3345void ScheduleDAGMI::viewGraph() {
3346 viewGraph(getDAGName(), "Scheduling-Units Graph for " + getDAGName());
3347}