blob: 44191f785386e78a14964a64f081c6b081df58b7 [file] [log] [blame]
Andrew Trick5429a6b2012-05-17 22:37:09 +00001//===- MachineScheduler.cpp - Machine Instruction Scheduler ---------------===//
Andrew Trick96f678f2012-01-13 06:30:30 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// MachineScheduler schedules machine instructions after phi elimination. It
11// preserves LiveIntervals so it can be invoked before register allocation.
12//
13//===----------------------------------------------------------------------===//
14
Andrew Trickc174eaf2012-03-08 01:41:12 +000015#include "llvm/CodeGen/MachineScheduler.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000016#include "llvm/ADT/PriorityQueue.h"
17#include "llvm/Analysis/AliasAnalysis.h"
18#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Jakub Staszak760fa5d2013-03-10 13:11:23 +000019#include "llvm/CodeGen/MachineDominators.h"
20#include "llvm/CodeGen/MachineLoopInfo.h"
Andrew Trick1f8b48a2013-06-21 18:32:58 +000021#include "llvm/CodeGen/MachineRegisterInfo.h"
Andrew Trick96f678f2012-01-13 06:30:30 +000022#include "llvm/CodeGen/Passes.h"
Andrew Trick15252602012-06-06 20:29:31 +000023#include "llvm/CodeGen/RegisterClassInfo.h"
Andrew Trick53e98a22012-11-28 05:13:24 +000024#include "llvm/CodeGen/ScheduleDFS.h"
Andrew Trick0a39d4e2012-05-24 22:11:09 +000025#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
Andrew Trick96f678f2012-01-13 06:30:30 +000026#include "llvm/Support/CommandLine.h"
27#include "llvm/Support/Debug.h"
28#include "llvm/Support/ErrorHandling.h"
Andrew Trick30849792013-01-25 07:45:29 +000029#include "llvm/Support/GraphWriter.h"
Andrew Trick96f678f2012-01-13 06:30:30 +000030#include "llvm/Support/raw_ostream.h"
Jakub Staszak38084db2013-06-14 00:00:13 +000031#include "llvm/Target/TargetInstrInfo.h"
Andrew Trickc6cf11b2012-01-17 06:55:07 +000032#include <queue>
33
Andrew Trick96f678f2012-01-13 06:30:30 +000034using namespace llvm;
35
Stephen Hinesdce4a402014-05-29 02:49:00 -070036#define DEBUG_TYPE "misched"
37
Andrew Trick78e5efe2012-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"));
43}
Andrew Trick17d35e52012-03-14 04:00:41 +000044
Andrew Trick0df7f882012-03-07 00:18:25 +000045#ifndef NDEBUG
46static cl::opt<bool> ViewMISchedDAGs("view-misched-dags", cl::Hidden,
47 cl::desc("Pop up a window to show MISched dags after they are processed"));
Lang Hames23f1cbb2012-03-19 18:38:38 +000048
49static cl::opt<unsigned> MISchedCutoff("misched-cutoff", cl::Hidden,
50 cl::desc("Stop scheduling after N instructions"), cl::init(~0U));
Stephen Hines36b56882014-04-23 16:57:46 -070051
52static cl::opt<std::string> SchedOnlyFunc("misched-only-func", cl::Hidden,
53 cl::desc("Only schedule this function"));
54static cl::opt<unsigned> SchedOnlyBlock("misched-only-block", cl::Hidden,
55 cl::desc("Only schedule this MBB#"));
Andrew Trick0df7f882012-03-07 00:18:25 +000056#else
57static bool ViewMISchedDAGs = false;
58#endif // NDEBUG
59
Andrew Trick42ebb3a2013-09-04 20:59:59 +000060static cl::opt<bool> EnableRegPressure("misched-regpressure", cl::Hidden,
61 cl::desc("Enable register pressure scheduling."), cl::init(true));
62
Andrew Trickea574332013-08-23 17:48:43 +000063static cl::opt<bool> EnableCyclicPath("misched-cyclicpath", cl::Hidden,
Andrew Trickfc7fd092013-09-09 23:31:14 +000064 cl::desc("Enable cyclic critical path analysis."), cl::init(true));
Andrew Trickea574332013-08-23 17:48:43 +000065
Andrew Trick9b5caaa2012-11-12 19:40:10 +000066static cl::opt<bool> EnableLoadCluster("misched-cluster", cl::Hidden,
Andrew Trickad1cc1d2012-11-13 08:47:29 +000067 cl::desc("Enable load clustering."), cl::init(true));
Andrew Trick9b5caaa2012-11-12 19:40:10 +000068
Andrew Trick6996fd02012-11-12 19:52:20 +000069// Experimental heuristics
70static cl::opt<bool> EnableMacroFusion("misched-fusion", cl::Hidden,
Andrew Trickad1cc1d2012-11-13 08:47:29 +000071 cl::desc("Enable scheduling for macro fusion."), cl::init(true));
Andrew Trick6996fd02012-11-12 19:52:20 +000072
Andrew Trickfff2d3a2013-03-08 05:40:34 +000073static cl::opt<bool> VerifyScheduling("verify-misched", cl::Hidden,
74 cl::desc("Verify machine instrs before and after machine scheduling"));
75
Andrew Trick178f7d02013-01-25 04:01:04 +000076// DAG subtrees must have at least this many nodes.
77static const unsigned MinSubtreeSize = 8;
78
Juergen Ributzka35436252013-11-19 00:57:56 +000079// Pin the vtables to this file.
80void MachineSchedStrategy::anchor() {}
81void ScheduleDAGMutation::anchor() {}
82
Andrew Trick5edf2f02012-01-14 02:17:06 +000083//===----------------------------------------------------------------------===//
84// Machine Instruction Scheduling Pass and Registry
85//===----------------------------------------------------------------------===//
86
Andrew Trick86b7e2a2012-04-24 20:36:19 +000087MachineSchedContext::MachineSchedContext():
Stephen Hinesdce4a402014-05-29 02:49:00 -070088 MF(nullptr), MLI(nullptr), MDT(nullptr), PassConfig(nullptr), AA(nullptr), LIS(nullptr) {
Andrew Trick86b7e2a2012-04-24 20:36:19 +000089 RegClassInfo = new RegisterClassInfo();
90}
91
92MachineSchedContext::~MachineSchedContext() {
93 delete RegClassInfo;
94}
95
Andrew Trick96f678f2012-01-13 06:30:30 +000096namespace {
Stephen Hines36b56882014-04-23 16:57:46 -070097/// Base class for a machine scheduler class that can run at any point.
98class MachineSchedulerBase : public MachineSchedContext,
99 public MachineFunctionPass {
100public:
101 MachineSchedulerBase(char &ID): MachineFunctionPass(ID) {}
102
Stephen Hinesdce4a402014-05-29 02:49:00 -0700103 void print(raw_ostream &O, const Module* = nullptr) const override;
Stephen Hines36b56882014-04-23 16:57:46 -0700104
105protected:
106 void scheduleRegions(ScheduleDAGInstrs &Scheduler);
107};
108
Andrew Trick42b7a712012-01-17 06:55:03 +0000109/// MachineScheduler runs after coalescing and before register allocation.
Stephen Hines36b56882014-04-23 16:57:46 -0700110class MachineScheduler : public MachineSchedulerBase {
Andrew Trick96f678f2012-01-13 06:30:30 +0000111public:
Andrew Trick42b7a712012-01-17 06:55:03 +0000112 MachineScheduler();
Andrew Trick96f678f2012-01-13 06:30:30 +0000113
Stephen Hines36b56882014-04-23 16:57:46 -0700114 void getAnalysisUsage(AnalysisUsage &AU) const override;
Andrew Trick96f678f2012-01-13 06:30:30 +0000115
Stephen Hines36b56882014-04-23 16:57:46 -0700116 bool runOnMachineFunction(MachineFunction&) override;
Andrew Trick96f678f2012-01-13 06:30:30 +0000117
118 static char ID; // Class identification, replacement for typeinfo
Andrew Trickf45edcc2013-09-20 05:14:41 +0000119
120protected:
121 ScheduleDAGInstrs *createMachineScheduler();
Andrew Trick96f678f2012-01-13 06:30:30 +0000122};
Stephen Hines36b56882014-04-23 16:57:46 -0700123
124/// PostMachineScheduler runs after shortly before code emission.
125class PostMachineScheduler : public MachineSchedulerBase {
126public:
127 PostMachineScheduler();
128
129 void getAnalysisUsage(AnalysisUsage &AU) const override;
130
131 bool runOnMachineFunction(MachineFunction&) override;
132
133 static char ID; // Class identification, replacement for typeinfo
134
135protected:
136 ScheduleDAGInstrs *createPostMachineScheduler();
137};
Andrew Trick96f678f2012-01-13 06:30:30 +0000138} // namespace
139
Andrew Trick42b7a712012-01-17 06:55:03 +0000140char MachineScheduler::ID = 0;
Andrew Trick96f678f2012-01-13 06:30:30 +0000141
Andrew Trick42b7a712012-01-17 06:55:03 +0000142char &llvm::MachineSchedulerID = MachineScheduler::ID;
Andrew Trick96f678f2012-01-13 06:30:30 +0000143
Andrew Trick42b7a712012-01-17 06:55:03 +0000144INITIALIZE_PASS_BEGIN(MachineScheduler, "misched",
Andrew Trick96f678f2012-01-13 06:30:30 +0000145 "Machine Instruction Scheduler", false, false)
146INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
147INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
148INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
Andrew Trick42b7a712012-01-17 06:55:03 +0000149INITIALIZE_PASS_END(MachineScheduler, "misched",
Andrew Trick96f678f2012-01-13 06:30:30 +0000150 "Machine Instruction Scheduler", false, false)
151
Andrew Trick42b7a712012-01-17 06:55:03 +0000152MachineScheduler::MachineScheduler()
Stephen Hines36b56882014-04-23 16:57:46 -0700153: MachineSchedulerBase(ID) {
Andrew Trick42b7a712012-01-17 06:55:03 +0000154 initializeMachineSchedulerPass(*PassRegistry::getPassRegistry());
Andrew Trick96f678f2012-01-13 06:30:30 +0000155}
156
Andrew Trick42b7a712012-01-17 06:55:03 +0000157void MachineScheduler::getAnalysisUsage(AnalysisUsage &AU) const {
Andrew Trick96f678f2012-01-13 06:30:30 +0000158 AU.setPreservesCFG();
159 AU.addRequiredID(MachineDominatorsID);
160 AU.addRequired<MachineLoopInfo>();
161 AU.addRequired<AliasAnalysis>();
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000162 AU.addRequired<TargetPassConfig>();
Andrew Trick96f678f2012-01-13 06:30:30 +0000163 AU.addRequired<SlotIndexes>();
164 AU.addPreserved<SlotIndexes>();
165 AU.addRequired<LiveIntervals>();
166 AU.addPreserved<LiveIntervals>();
Andrew Trick96f678f2012-01-13 06:30:30 +0000167 MachineFunctionPass::getAnalysisUsage(AU);
168}
169
Stephen Hines36b56882014-04-23 16:57:46 -0700170char PostMachineScheduler::ID = 0;
171
172char &llvm::PostMachineSchedulerID = PostMachineScheduler::ID;
173
174INITIALIZE_PASS(PostMachineScheduler, "postmisched",
175 "PostRA Machine Instruction Scheduler", false, false)
176
177PostMachineScheduler::PostMachineScheduler()
178: MachineSchedulerBase(ID) {
179 initializePostMachineSchedulerPass(*PassRegistry::getPassRegistry());
180}
181
182void PostMachineScheduler::getAnalysisUsage(AnalysisUsage &AU) const {
183 AU.setPreservesCFG();
184 AU.addRequiredID(MachineDominatorsID);
185 AU.addRequired<MachineLoopInfo>();
186 AU.addRequired<TargetPassConfig>();
187 MachineFunctionPass::getAnalysisUsage(AU);
188}
189
Andrew Trick96f678f2012-01-13 06:30:30 +0000190MachinePassRegistry MachineSchedRegistry::Registry;
191
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000192/// A dummy default scheduler factory indicates whether the scheduler
193/// is overridden on the command line.
194static ScheduleDAGInstrs *useDefaultMachineSched(MachineSchedContext *C) {
Stephen Hinesdce4a402014-05-29 02:49:00 -0700195 return nullptr;
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000196}
Andrew Trick96f678f2012-01-13 06:30:30 +0000197
198/// MachineSchedOpt allows command line selection of the scheduler.
199static cl::opt<MachineSchedRegistry::ScheduleDAGCtor, false,
200 RegisterPassParser<MachineSchedRegistry> >
201MachineSchedOpt("misched",
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000202 cl::init(&useDefaultMachineSched), cl::Hidden,
Andrew Trick96f678f2012-01-13 06:30:30 +0000203 cl::desc("Machine instruction scheduler to use"));
204
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000205static MachineSchedRegistry
Andrew Trick17d35e52012-03-14 04:00:41 +0000206DefaultSchedRegistry("default", "Use the target's default scheduler choice.",
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000207 useDefaultMachineSched);
208
Andrew Trick17d35e52012-03-14 04:00:41 +0000209/// Forward declare the standard machine scheduler. This will be used as the
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000210/// default scheduler if the target does not set a default.
Stephen Hines36b56882014-04-23 16:57:46 -0700211static ScheduleDAGInstrs *createGenericSchedLive(MachineSchedContext *C);
212static ScheduleDAGInstrs *createGenericSchedPostRA(MachineSchedContext *C);
Andrew Trickeb45ebb2012-04-24 18:04:34 +0000213
214/// Decrement this iterator until reaching the top or a non-debug instr.
Andrew Trick663bd992013-08-30 04:36:57 +0000215static MachineBasicBlock::const_iterator
216priorNonDebug(MachineBasicBlock::const_iterator I,
217 MachineBasicBlock::const_iterator Beg) {
Andrew Trickeb45ebb2012-04-24 18:04:34 +0000218 assert(I != Beg && "reached the top of the region, cannot decrement");
219 while (--I != Beg) {
220 if (!I->isDebugValue())
221 break;
222 }
223 return I;
224}
225
Andrew Trick663bd992013-08-30 04:36:57 +0000226/// Non-const version.
227static MachineBasicBlock::iterator
228priorNonDebug(MachineBasicBlock::iterator I,
229 MachineBasicBlock::const_iterator Beg) {
230 return const_cast<MachineInstr*>(
231 &*priorNonDebug(MachineBasicBlock::const_iterator(I), Beg));
232}
233
Andrew Trickeb45ebb2012-04-24 18:04:34 +0000234/// If this iterator is a debug value, increment until reaching the End or a
235/// non-debug instruction.
Andrew Trickc94e7b52013-08-31 05:17:58 +0000236static MachineBasicBlock::const_iterator
237nextIfDebug(MachineBasicBlock::const_iterator I,
238 MachineBasicBlock::const_iterator End) {
Andrew Trick811d92682012-05-17 18:35:03 +0000239 for(; I != End; ++I) {
Andrew Trickeb45ebb2012-04-24 18:04:34 +0000240 if (!I->isDebugValue())
241 break;
242 }
243 return I;
244}
245
Andrew Trickc94e7b52013-08-31 05:17:58 +0000246/// Non-const version.
247static MachineBasicBlock::iterator
248nextIfDebug(MachineBasicBlock::iterator I,
249 MachineBasicBlock::const_iterator End) {
250 // Cast the return value to nonconst MachineInstr, then cast to an
251 // instr_iterator, which does not check for null, finally return a
252 // bundle_iterator.
253 return MachineBasicBlock::instr_iterator(
254 const_cast<MachineInstr*>(
255 &*nextIfDebug(MachineBasicBlock::const_iterator(I), End)));
256}
257
Andrew Trickb0dfcee2013-09-24 17:11:19 +0000258/// Instantiate a ScheduleDAGInstrs that will be owned by the caller.
Andrew Trickf45edcc2013-09-20 05:14:41 +0000259ScheduleDAGInstrs *MachineScheduler::createMachineScheduler() {
260 // Select the scheduler, or set the default.
261 MachineSchedRegistry::ScheduleDAGCtor Ctor = MachineSchedOpt;
262 if (Ctor != useDefaultMachineSched)
263 return Ctor(this);
264
265 // Get the default scheduler set by the target for this function.
266 ScheduleDAGInstrs *Scheduler = PassConfig->createMachineScheduler(this);
267 if (Scheduler)
268 return Scheduler;
269
270 // Default to GenericScheduler.
Stephen Hines36b56882014-04-23 16:57:46 -0700271 return createGenericSchedLive(this);
272}
273
274/// Instantiate a ScheduleDAGInstrs for PostRA scheduling that will be owned by
275/// the caller. We don't have a command line option to override the postRA
276/// scheduler. The Target must configure it.
277ScheduleDAGInstrs *PostMachineScheduler::createPostMachineScheduler() {
278 // Get the postRA scheduler set by the target for this function.
279 ScheduleDAGInstrs *Scheduler = PassConfig->createPostMachineScheduler(this);
280 if (Scheduler)
281 return Scheduler;
282
283 // Default to GenericScheduler.
284 return createGenericSchedPostRA(this);
Andrew Trickf45edcc2013-09-20 05:14:41 +0000285}
286
Andrew Trickcb058d52012-03-14 04:00:38 +0000287/// Top-level MachineScheduler pass driver.
288///
289/// Visit blocks in function order. Divide each block into scheduling regions
Andrew Trick17d35e52012-03-14 04:00:41 +0000290/// and visit them bottom-up. Visiting regions bottom-up is not required, but is
291/// consistent with the DAG builder, which traverses the interior of the
292/// scheduling regions bottom-up.
Andrew Trickcb058d52012-03-14 04:00:38 +0000293///
294/// This design avoids exposing scheduling boundaries to the DAG builder,
Andrew Trick17d35e52012-03-14 04:00:41 +0000295/// simplifying the DAG builder's support for "special" target instructions.
296/// At the same time the design allows target schedulers to operate across
Andrew Trickcb058d52012-03-14 04:00:38 +0000297/// scheduling boundaries, for example to bundle the boudary instructions
298/// without reordering them. This creates complexity, because the target
299/// scheduler must update the RegionBegin and RegionEnd positions cached by
300/// ScheduleDAGInstrs whenever adding or removing instructions. A much simpler
301/// design would be to split blocks at scheduling boundaries, but LLVM has a
302/// general bias against block splitting purely for implementation simplicity.
Andrew Trick42b7a712012-01-17 06:55:03 +0000303bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) {
Andrew Trick89c324b2012-05-10 21:06:21 +0000304 DEBUG(dbgs() << "Before MISsched:\n"; mf.print(dbgs()));
305
Andrew Trick96f678f2012-01-13 06:30:30 +0000306 // Initialize the context of the pass.
307 MF = &mf;
308 MLI = &getAnalysis<MachineLoopInfo>();
309 MDT = &getAnalysis<MachineDominatorTree>();
Andrew Trickd04ec0c2012-03-09 00:52:20 +0000310 PassConfig = &getAnalysis<TargetPassConfig>();
Andrew Trickc174eaf2012-03-08 01:41:12 +0000311 AA = &getAnalysis<AliasAnalysis>();
312
Lang Hames907cc8f2012-01-27 22:36:19 +0000313 LIS = &getAnalysis<LiveIntervals>();
Andrew Trick96f678f2012-01-13 06:30:30 +0000314
Andrew Trickfff2d3a2013-03-08 05:40:34 +0000315 if (VerifyScheduling) {
Andrew Trick5dca6132013-07-25 07:26:26 +0000316 DEBUG(LIS->dump());
Andrew Trickfff2d3a2013-03-08 05:40:34 +0000317 MF->verify(this, "Before machine scheduling.");
318 }
Andrew Trick86b7e2a2012-04-24 20:36:19 +0000319 RegClassInfo->runOnMachineFunction(*MF);
Andrew Trick006e1ab2012-04-24 17:56:43 +0000320
Andrew Trickf45edcc2013-09-20 05:14:41 +0000321 // Instantiate the selected scheduler for this target, function, and
322 // optimization level.
Stephen Hines36b56882014-04-23 16:57:46 -0700323 std::unique_ptr<ScheduleDAGInstrs> Scheduler(createMachineScheduler());
324 scheduleRegions(*Scheduler);
325
326 DEBUG(LIS->dump());
327 if (VerifyScheduling)
328 MF->verify(this, "After machine scheduling.");
329 return true;
330}
331
332bool PostMachineScheduler::runOnMachineFunction(MachineFunction &mf) {
333 if (skipOptnoneFunction(*mf.getFunction()))
334 return false;
335
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700336 const TargetSubtargetInfo &ST =
337 mf.getTarget().getSubtarget<TargetSubtargetInfo>();
338 if (!ST.enablePostMachineScheduler()) {
339 DEBUG(dbgs() << "Subtarget disables post-MI-sched.\n");
340 return false;
341 }
Stephen Hines36b56882014-04-23 16:57:46 -0700342 DEBUG(dbgs() << "Before post-MI-sched:\n"; mf.print(dbgs()));
343
344 // Initialize the context of the pass.
345 MF = &mf;
346 PassConfig = &getAnalysis<TargetPassConfig>();
347
348 if (VerifyScheduling)
349 MF->verify(this, "Before post machine scheduling.");
350
351 // Instantiate the selected scheduler for this target, function, and
352 // optimization level.
353 std::unique_ptr<ScheduleDAGInstrs> Scheduler(createPostMachineScheduler());
354 scheduleRegions(*Scheduler);
355
356 if (VerifyScheduling)
357 MF->verify(this, "After post machine scheduling.");
358 return true;
359}
360
361/// Return true of the given instruction should not be included in a scheduling
362/// region.
363///
364/// MachineScheduler does not currently support scheduling across calls. To
365/// handle calls, the DAG builder needs to be modified to create register
366/// anti/output dependencies on the registers clobbered by the call's regmask
367/// operand. In PreRA scheduling, the stack pointer adjustment already prevents
368/// scheduling across calls. In PostRA scheduling, we need the isCall to enforce
369/// the boundary, but there would be no benefit to postRA scheduling across
370/// calls this late anyway.
371static bool isSchedBoundary(MachineBasicBlock::iterator MI,
372 MachineBasicBlock *MBB,
373 MachineFunction *MF,
374 const TargetInstrInfo *TII,
375 bool IsPostRA) {
376 return MI->isCall() || TII->isSchedulingBoundary(MI, MBB, *MF);
377}
378
379/// Main driver for both MachineScheduler and PostMachineScheduler.
380void MachineSchedulerBase::scheduleRegions(ScheduleDAGInstrs &Scheduler) {
381 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
382 bool IsPostRA = Scheduler.isPostRA();
Andrew Trick96f678f2012-01-13 06:30:30 +0000383
384 // Visit all machine basic blocks.
Andrew Trick006e1ab2012-04-24 17:56:43 +0000385 //
386 // TODO: Visit blocks in global postorder or postorder within the bottom-up
387 // loop tree. Then we can optionally compute global RegPressure.
Andrew Trick96f678f2012-01-13 06:30:30 +0000388 for (MachineFunction::iterator MBB = MF->begin(), MBBEnd = MF->end();
389 MBB != MBBEnd; ++MBB) {
390
Stephen Hines36b56882014-04-23 16:57:46 -0700391 Scheduler.startBlock(MBB);
392
393#ifndef NDEBUG
394 if (SchedOnlyFunc.getNumOccurrences() && SchedOnlyFunc != MF->getName())
395 continue;
396 if (SchedOnlyBlock.getNumOccurrences()
397 && (int)SchedOnlyBlock != MBB->getNumber())
398 continue;
399#endif
Andrew Trick1fabd9f2012-03-09 08:02:51 +0000400
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000401 // Break the block into scheduling regions [I, RegionEnd), and schedule each
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +0000402 // region as soon as it is discovered. RegionEnd points the scheduling
Andrew Trickfe4d6df2012-03-09 22:34:56 +0000403 // boundary at the bottom of the region. The DAG does not include RegionEnd,
404 // but the region does (i.e. the next RegionEnd is above the previous
405 // RegionBegin). If the current block has no terminator then RegionEnd ==
406 // MBB->end() for the bottom region.
407 //
408 // The Scheduler may insert instructions during either schedule() or
409 // exitRegion(), even for empty regions. So the local iterators 'I' and
410 // 'RegionEnd' are invalid across these calls.
Stephen Hines36b56882014-04-23 16:57:46 -0700411 //
412 // MBB::size() uses instr_iterator to count. Here we need a bundle to count
413 // as a single instruction.
414 unsigned RemainingInstrs = std::distance(MBB->begin(), MBB->end());
Andrew Trick7799eb42012-03-09 03:46:39 +0000415 for(MachineBasicBlock::iterator RegionEnd = MBB->end();
Stephen Hines36b56882014-04-23 16:57:46 -0700416 RegionEnd != MBB->begin(); RegionEnd = Scheduler.begin()) {
Andrew Trick006e1ab2012-04-24 17:56:43 +0000417
Andrew Trick1fabd9f2012-03-09 08:02:51 +0000418 // Avoid decrementing RegionEnd for blocks with no terminator.
Stephen Hines36b56882014-04-23 16:57:46 -0700419 if (RegionEnd != MBB->end() ||
420 isSchedBoundary(std::prev(RegionEnd), MBB, MF, TII, IsPostRA)) {
Andrew Trick1fabd9f2012-03-09 08:02:51 +0000421 --RegionEnd;
422 // Count the boundary instruction.
Andrew Trick22764532012-11-06 07:10:34 +0000423 --RemainingInstrs;
Andrew Trick1fabd9f2012-03-09 08:02:51 +0000424 }
425
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000426 // The next region starts above the previous region. Look backward in the
427 // instruction stream until we find the nearest boundary.
Andrew Trickd2763f62013-08-23 17:48:33 +0000428 unsigned NumRegionInstrs = 0;
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000429 MachineBasicBlock::iterator I = RegionEnd;
Andrew Trickd2763f62013-08-23 17:48:33 +0000430 for(;I != MBB->begin(); --I, --RemainingInstrs, ++NumRegionInstrs) {
Stephen Hines36b56882014-04-23 16:57:46 -0700431 if (isSchedBoundary(std::prev(I), MBB, MF, TII, IsPostRA))
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000432 break;
433 }
Andrew Trick47c14452012-03-07 05:21:52 +0000434 // Notify the scheduler of the region, even if we may skip scheduling
435 // it. Perhaps it still needs to be bundled.
Stephen Hines36b56882014-04-23 16:57:46 -0700436 Scheduler.enterRegion(MBB, I, RegionEnd, NumRegionInstrs);
Andrew Trick47c14452012-03-07 05:21:52 +0000437
438 // Skip empty scheduling regions (0 or 1 schedulable instructions).
Stephen Hines36b56882014-04-23 16:57:46 -0700439 if (I == RegionEnd || I == std::prev(RegionEnd)) {
Andrew Trick47c14452012-03-07 05:21:52 +0000440 // Close the current region. Bundle the terminator if needed.
Andrew Trickfe4d6df2012-03-09 22:34:56 +0000441 // This invalidates 'RegionEnd' and 'I'.
Stephen Hines36b56882014-04-23 16:57:46 -0700442 Scheduler.exitRegion();
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000443 continue;
Andrew Trick3c58ba82012-01-14 02:17:18 +0000444 }
Stephen Hines36b56882014-04-23 16:57:46 -0700445 DEBUG(dbgs() << "********** " << ((Scheduler.isPostRA()) ? "PostRA " : "")
446 << "MI Scheduling **********\n");
Craig Topper96601ca2012-08-22 06:07:19 +0000447 DEBUG(dbgs() << MF->getName()
Andrew Trickc8554232013-01-25 07:45:31 +0000448 << ":BB#" << MBB->getNumber() << " " << MBB->getName()
449 << "\n From: " << *I << " To: ";
Andrew Trick291411c2012-02-08 02:17:21 +0000450 if (RegionEnd != MBB->end()) dbgs() << *RegionEnd;
451 else dbgs() << "End";
Andrew Trickd2763f62013-08-23 17:48:33 +0000452 dbgs() << " RegionInstrs: " << NumRegionInstrs
453 << " Remaining: " << RemainingInstrs << "\n");
Andrew Trickc6cf11b2012-01-17 06:55:07 +0000454
Andrew Trickd24da972012-03-09 03:46:42 +0000455 // Schedule a region: possibly reorder instructions.
Andrew Trickfe4d6df2012-03-09 22:34:56 +0000456 // This invalidates 'RegionEnd' and 'I'.
Stephen Hines36b56882014-04-23 16:57:46 -0700457 Scheduler.schedule();
Andrew Trickd24da972012-03-09 03:46:42 +0000458
459 // Close the current region.
Stephen Hines36b56882014-04-23 16:57:46 -0700460 Scheduler.exitRegion();
Andrew Trick47c14452012-03-07 05:21:52 +0000461
462 // Scheduling has invalidated the current iterator 'I'. Ask the
463 // scheduler for the top of it's scheduled region.
Stephen Hines36b56882014-04-23 16:57:46 -0700464 RegionEnd = Scheduler.begin();
Andrew Tricke9ef4ed2012-01-14 02:17:09 +0000465 }
Andrew Trick22764532012-11-06 07:10:34 +0000466 assert(RemainingInstrs == 0 && "Instruction count mismatch!");
Stephen Hines36b56882014-04-23 16:57:46 -0700467 Scheduler.finishBlock();
468 if (Scheduler.isPostRA()) {
469 // FIXME: Ideally, no further passes should rely on kill flags. However,
470 // thumb2 size reduction is currently an exception.
471 Scheduler.fixupKills(MBB);
472 }
Andrew Trick96f678f2012-01-13 06:30:30 +0000473 }
Stephen Hines36b56882014-04-23 16:57:46 -0700474 Scheduler.finalizeSchedule();
Andrew Trick96f678f2012-01-13 06:30:30 +0000475}
476
Stephen Hines36b56882014-04-23 16:57:46 -0700477void MachineSchedulerBase::print(raw_ostream &O, const Module* m) const {
Andrew Trick96f678f2012-01-13 06:30:30 +0000478 // unimplemented
479}
480
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700481LLVM_DUMP_METHOD
Andrew Trick78e5efe2012-09-11 00:39:15 +0000482void ReadyQueue::dump() {
Andrew Tricke52d5022013-06-17 21:45:05 +0000483 dbgs() << Name << ": ";
Andrew Trick78e5efe2012-09-11 00:39:15 +0000484 for (unsigned i = 0, e = Queue.size(); i < e; ++i)
485 dbgs() << Queue[i]->NodeNum << " ";
486 dbgs() << "\n";
487}
Andrew Trick17d35e52012-03-14 04:00:41 +0000488
489//===----------------------------------------------------------------------===//
Stephen Hines36b56882014-04-23 16:57:46 -0700490// ScheduleDAGMI - Basic machine instruction scheduling. This is
491// independent of PreRA/PostRA scheduling and involves no extra book-keeping for
492// virtual registers.
493// ===----------------------------------------------------------------------===/
Andrew Trick17d35e52012-03-14 04:00:41 +0000494
Stephen Hinesdce4a402014-05-29 02:49:00 -0700495// Provide a vtable anchor.
Andrew Trick178f7d02013-01-25 04:01:04 +0000496ScheduleDAGMI::~ScheduleDAGMI() {
Andrew Trick178f7d02013-01-25 04:01:04 +0000497}
498
Andrew Tricke38afe12013-04-24 15:54:43 +0000499bool ScheduleDAGMI::canAddEdge(SUnit *SuccSU, SUnit *PredSU) {
500 return SuccSU == &ExitSU || !Topo.IsReachable(PredSU, SuccSU);
501}
502
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000503bool ScheduleDAGMI::addEdge(SUnit *SuccSU, const SDep &PredDep) {
Andrew Trick6996fd02012-11-12 19:52:20 +0000504 if (SuccSU != &ExitSU) {
505 // Do not use WillCreateCycle, it assumes SD scheduling.
506 // If Pred is reachable from Succ, then the edge creates a cycle.
507 if (Topo.IsReachable(PredDep.getSUnit(), SuccSU))
508 return false;
509 Topo.AddPred(SuccSU, PredDep.getSUnit());
510 }
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000511 SuccSU->addPred(PredDep, /*Required=*/!PredDep.isArtificial());
512 // Return true regardless of whether a new edge needed to be inserted.
513 return true;
514}
515
Andrew Trickc174eaf2012-03-08 01:41:12 +0000516/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. When
517/// NumPredsLeft reaches zero, release the successor node.
Andrew Trick0a39d4e2012-05-24 22:11:09 +0000518///
519/// FIXME: Adjust SuccSU height based on MinLatency.
Andrew Trick17d35e52012-03-14 04:00:41 +0000520void ScheduleDAGMI::releaseSucc(SUnit *SU, SDep *SuccEdge) {
Andrew Trickc174eaf2012-03-08 01:41:12 +0000521 SUnit *SuccSU = SuccEdge->getSUnit();
522
Andrew Trickae692f22012-11-12 19:28:57 +0000523 if (SuccEdge->isWeak()) {
524 --SuccSU->WeakPredsLeft;
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000525 if (SuccEdge->isCluster())
526 NextClusterSucc = SuccSU;
Andrew Trickae692f22012-11-12 19:28:57 +0000527 return;
528 }
Andrew Trickc174eaf2012-03-08 01:41:12 +0000529#ifndef NDEBUG
530 if (SuccSU->NumPredsLeft == 0) {
531 dbgs() << "*** Scheduling failed! ***\n";
532 SuccSU->dump(this);
533 dbgs() << " has been released too many times!\n";
Stephen Hinesdce4a402014-05-29 02:49:00 -0700534 llvm_unreachable(nullptr);
Andrew Trickc174eaf2012-03-08 01:41:12 +0000535 }
536#endif
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700537 // SU->TopReadyCycle was set to CurrCycle when it was scheduled. However,
538 // CurrCycle may have advanced since then.
539 if (SuccSU->TopReadyCycle < SU->TopReadyCycle + SuccEdge->getLatency())
540 SuccSU->TopReadyCycle = SU->TopReadyCycle + SuccEdge->getLatency();
541
Andrew Trickc174eaf2012-03-08 01:41:12 +0000542 --SuccSU->NumPredsLeft;
543 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
Andrew Trick17d35e52012-03-14 04:00:41 +0000544 SchedImpl->releaseTopNode(SuccSU);
Andrew Trickc174eaf2012-03-08 01:41:12 +0000545}
546
547/// releaseSuccessors - Call releaseSucc on each of SU's successors.
Andrew Trick17d35e52012-03-14 04:00:41 +0000548void ScheduleDAGMI::releaseSuccessors(SUnit *SU) {
Andrew Trickc174eaf2012-03-08 01:41:12 +0000549 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
550 I != E; ++I) {
551 releaseSucc(SU, &*I);
552 }
553}
554
Andrew Trick17d35e52012-03-14 04:00:41 +0000555/// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. When
556/// NumSuccsLeft reaches zero, release the predecessor node.
Andrew Trick0a39d4e2012-05-24 22:11:09 +0000557///
558/// FIXME: Adjust PredSU height based on MinLatency.
Andrew Trick17d35e52012-03-14 04:00:41 +0000559void ScheduleDAGMI::releasePred(SUnit *SU, SDep *PredEdge) {
560 SUnit *PredSU = PredEdge->getSUnit();
561
Andrew Trickae692f22012-11-12 19:28:57 +0000562 if (PredEdge->isWeak()) {
563 --PredSU->WeakSuccsLeft;
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000564 if (PredEdge->isCluster())
565 NextClusterPred = PredSU;
Andrew Trickae692f22012-11-12 19:28:57 +0000566 return;
567 }
Andrew Trick17d35e52012-03-14 04:00:41 +0000568#ifndef NDEBUG
569 if (PredSU->NumSuccsLeft == 0) {
570 dbgs() << "*** Scheduling failed! ***\n";
571 PredSU->dump(this);
572 dbgs() << " has been released too many times!\n";
Stephen Hinesdce4a402014-05-29 02:49:00 -0700573 llvm_unreachable(nullptr);
Andrew Trick17d35e52012-03-14 04:00:41 +0000574 }
575#endif
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700576 // SU->BotReadyCycle was set to CurrCycle when it was scheduled. However,
577 // CurrCycle may have advanced since then.
578 if (PredSU->BotReadyCycle < SU->BotReadyCycle + PredEdge->getLatency())
579 PredSU->BotReadyCycle = SU->BotReadyCycle + PredEdge->getLatency();
580
Andrew Trick17d35e52012-03-14 04:00:41 +0000581 --PredSU->NumSuccsLeft;
582 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU)
583 SchedImpl->releaseBottomNode(PredSU);
584}
585
586/// releasePredecessors - Call releasePred on each of SU's predecessors.
587void ScheduleDAGMI::releasePredecessors(SUnit *SU) {
588 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
589 I != E; ++I) {
590 releasePred(SU, &*I);
591 }
592}
593
Stephen Hines36b56882014-04-23 16:57:46 -0700594/// enterRegion - Called back from MachineScheduler::runOnMachineFunction after
595/// crossing a scheduling boundary. [begin, end) includes all instructions in
596/// the region, including the boundary itself and single-instruction regions
597/// that don't get scheduled.
598void ScheduleDAGMI::enterRegion(MachineBasicBlock *bb,
599 MachineBasicBlock::iterator begin,
600 MachineBasicBlock::iterator end,
601 unsigned regioninstrs)
602{
603 ScheduleDAGInstrs::enterRegion(bb, begin, end, regioninstrs);
604
605 SchedImpl->initPolicy(begin, end, regioninstrs);
606}
607
Andrew Trick4392f0f2013-04-13 06:07:40 +0000608/// This is normally called from the main scheduler loop but may also be invoked
609/// by the scheduling strategy to perform additional code motion.
Stephen Hines36b56882014-04-23 16:57:46 -0700610void ScheduleDAGMI::moveInstruction(
611 MachineInstr *MI, MachineBasicBlock::iterator InsertPos) {
Andrew Trick811d92682012-05-17 18:35:03 +0000612 // Advance RegionBegin if the first instruction moves down.
Andrew Trick1ce062f2012-03-21 04:12:10 +0000613 if (&*RegionBegin == MI)
Andrew Trick811d92682012-05-17 18:35:03 +0000614 ++RegionBegin;
615
616 // Update the instruction stream.
Andrew Trick17d35e52012-03-14 04:00:41 +0000617 BB->splice(InsertPos, BB, MI);
Andrew Trick811d92682012-05-17 18:35:03 +0000618
619 // Update LiveIntervals
Stephen Hines36b56882014-04-23 16:57:46 -0700620 if (LIS)
621 LIS->handleMove(MI, /*UpdateFlags=*/true);
Andrew Trick811d92682012-05-17 18:35:03 +0000622
623 // Recede RegionBegin if an instruction moves above the first.
Andrew Trick17d35e52012-03-14 04:00:41 +0000624 if (RegionBegin == InsertPos)
625 RegionBegin = MI;
626}
627
Andrew Trick0b0d8992012-03-21 04:12:07 +0000628bool ScheduleDAGMI::checkSchedLimit() {
629#ifndef NDEBUG
630 if (NumInstrsScheduled == MISchedCutoff && MISchedCutoff != ~0U) {
631 CurrentTop = CurrentBottom;
632 return false;
633 }
634 ++NumInstrsScheduled;
635#endif
636 return true;
637}
638
Stephen Hines36b56882014-04-23 16:57:46 -0700639/// Per-region scheduling driver, called back from
640/// MachineScheduler::runOnMachineFunction. This is a simplified driver that
641/// does not consider liveness or register pressure. It is useful for PostRA
642/// scheduling and potentially other custom schedulers.
643void ScheduleDAGMI::schedule() {
644 // Build the DAG.
645 buildSchedGraph(AA);
646
647 Topo.InitDAGTopologicalSorting();
648
649 postprocessDAG();
650
651 SmallVector<SUnit*, 8> TopRoots, BotRoots;
652 findRootsAndBiasEdges(TopRoots, BotRoots);
653
654 // Initialize the strategy before modifying the DAG.
655 // This may initialize a DFSResult to be used for queue priority.
656 SchedImpl->initialize(this);
657
658 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
659 SUnits[su].dumpAll(this));
660 if (ViewMISchedDAGs) viewGraph();
661
662 // Initialize ready queues now that the DAG and priority data are finalized.
663 initQueues(TopRoots, BotRoots);
664
665 bool IsTopNode = false;
666 while (SUnit *SU = SchedImpl->pickNode(IsTopNode)) {
667 assert(!SU->isScheduled && "Node already scheduled");
668 if (!checkSchedLimit())
669 break;
670
671 MachineInstr *MI = SU->getInstr();
672 if (IsTopNode) {
673 assert(SU->isTopReady() && "node still has unscheduled dependencies");
674 if (&*CurrentTop == MI)
675 CurrentTop = nextIfDebug(++CurrentTop, CurrentBottom);
676 else
677 moveInstruction(MI, CurrentTop);
678 }
679 else {
680 assert(SU->isBottomReady() && "node still has unscheduled dependencies");
681 MachineBasicBlock::iterator priorII =
682 priorNonDebug(CurrentBottom, CurrentTop);
683 if (&*priorII == MI)
684 CurrentBottom = priorII;
685 else {
686 if (&*CurrentTop == MI)
687 CurrentTop = nextIfDebug(++CurrentTop, priorII);
688 moveInstruction(MI, CurrentBottom);
689 CurrentBottom = MI;
690 }
691 }
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700692 // Notify the scheduling strategy before updating the DAG.
693 // This sets the scheduled node's ReadyCycle to CurrCycle. When updateQueues
694 // runs, it can then use the accurate ReadyCycle time to determine whether
695 // newly released nodes can move to the readyQ.
Stephen Hines36b56882014-04-23 16:57:46 -0700696 SchedImpl->schedNode(SU, IsTopNode);
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700697
698 updateQueues(SU, IsTopNode);
Stephen Hines36b56882014-04-23 16:57:46 -0700699 }
700 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone.");
701
702 placeDebugValues();
703
704 DEBUG({
705 unsigned BBNum = begin()->getParent()->getNumber();
706 dbgs() << "*** Final schedule for BB#" << BBNum << " ***\n";
707 dumpSchedule();
708 dbgs() << '\n';
709 });
710}
711
712/// Apply each ScheduleDAGMutation step in order.
713void ScheduleDAGMI::postprocessDAG() {
714 for (unsigned i = 0, e = Mutations.size(); i < e; ++i) {
715 Mutations[i]->apply(this);
716 }
717}
718
719void ScheduleDAGMI::
720findRootsAndBiasEdges(SmallVectorImpl<SUnit*> &TopRoots,
721 SmallVectorImpl<SUnit*> &BotRoots) {
722 for (std::vector<SUnit>::iterator
723 I = SUnits.begin(), E = SUnits.end(); I != E; ++I) {
724 SUnit *SU = &(*I);
725 assert(!SU->isBoundaryNode() && "Boundary node should not be in SUnits");
726
727 // Order predecessors so DFSResult follows the critical path.
728 SU->biasCriticalPath();
729
730 // A SUnit is ready to top schedule if it has no predecessors.
731 if (!I->NumPredsLeft)
732 TopRoots.push_back(SU);
733 // A SUnit is ready to bottom schedule if it has no successors.
734 if (!I->NumSuccsLeft)
735 BotRoots.push_back(SU);
736 }
737 ExitSU.biasCriticalPath();
738}
739
740/// Identify DAG roots and setup scheduler queues.
741void ScheduleDAGMI::initQueues(ArrayRef<SUnit*> TopRoots,
742 ArrayRef<SUnit*> BotRoots) {
Stephen Hinesdce4a402014-05-29 02:49:00 -0700743 NextClusterSucc = nullptr;
744 NextClusterPred = nullptr;
Stephen Hines36b56882014-04-23 16:57:46 -0700745
746 // Release all DAG roots for scheduling, not including EntrySU/ExitSU.
747 //
748 // Nodes with unreleased weak edges can still be roots.
749 // Release top roots in forward order.
750 for (SmallVectorImpl<SUnit*>::const_iterator
751 I = TopRoots.begin(), E = TopRoots.end(); I != E; ++I) {
752 SchedImpl->releaseTopNode(*I);
753 }
754 // Release bottom roots in reverse order so the higher priority nodes appear
755 // first. This is more natural and slightly more efficient.
756 for (SmallVectorImpl<SUnit*>::const_reverse_iterator
757 I = BotRoots.rbegin(), E = BotRoots.rend(); I != E; ++I) {
758 SchedImpl->releaseBottomNode(*I);
759 }
760
761 releaseSuccessors(&EntrySU);
762 releasePredecessors(&ExitSU);
763
764 SchedImpl->registerRoots();
765
766 // Advance past initial DebugValues.
767 CurrentTop = nextIfDebug(RegionBegin, RegionEnd);
768 CurrentBottom = RegionEnd;
769}
770
771/// Update scheduler queues after scheduling an instruction.
772void ScheduleDAGMI::updateQueues(SUnit *SU, bool IsTopNode) {
773 // Release dependent instructions for scheduling.
774 if (IsTopNode)
775 releaseSuccessors(SU);
776 else
777 releasePredecessors(SU);
778
779 SU->isScheduled = true;
780}
781
782/// Reinsert any remaining debug_values, just like the PostRA scheduler.
783void ScheduleDAGMI::placeDebugValues() {
784 // If first instruction was a DBG_VALUE then put it back.
785 if (FirstDbgValue) {
786 BB->splice(RegionBegin, BB, FirstDbgValue);
787 RegionBegin = FirstDbgValue;
788 }
789
790 for (std::vector<std::pair<MachineInstr *, MachineInstr *> >::iterator
791 DI = DbgValues.end(), DE = DbgValues.begin(); DI != DE; --DI) {
792 std::pair<MachineInstr *, MachineInstr *> P = *std::prev(DI);
793 MachineInstr *DbgValue = P.first;
794 MachineBasicBlock::iterator OrigPrevMI = P.second;
795 if (&*RegionBegin == DbgValue)
796 ++RegionBegin;
797 BB->splice(++OrigPrevMI, BB, DbgValue);
798 if (OrigPrevMI == std::prev(RegionEnd))
799 RegionEnd = DbgValue;
800 }
801 DbgValues.clear();
Stephen Hinesdce4a402014-05-29 02:49:00 -0700802 FirstDbgValue = nullptr;
Stephen Hines36b56882014-04-23 16:57:46 -0700803}
804
805#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
806void ScheduleDAGMI::dumpSchedule() const {
807 for (MachineBasicBlock::iterator MI = begin(), ME = end(); MI != ME; ++MI) {
808 if (SUnit *SU = getSUnit(&(*MI)))
809 SU->dump(this);
810 else
811 dbgs() << "Missing SUnit\n";
812 }
813}
814#endif
815
816//===----------------------------------------------------------------------===//
817// ScheduleDAGMILive - Base class for MachineInstr scheduling with LiveIntervals
818// preservation.
819//===----------------------------------------------------------------------===//
820
821ScheduleDAGMILive::~ScheduleDAGMILive() {
822 delete DFSResult;
823}
824
Andrew Trick006e1ab2012-04-24 17:56:43 +0000825/// enterRegion - Called back from MachineScheduler::runOnMachineFunction after
826/// crossing a scheduling boundary. [begin, end) includes all instructions in
827/// the region, including the boundary itself and single-instruction regions
828/// that don't get scheduled.
Stephen Hines36b56882014-04-23 16:57:46 -0700829void ScheduleDAGMILive::enterRegion(MachineBasicBlock *bb,
Andrew Trick006e1ab2012-04-24 17:56:43 +0000830 MachineBasicBlock::iterator begin,
831 MachineBasicBlock::iterator end,
Andrew Trickd2763f62013-08-23 17:48:33 +0000832 unsigned regioninstrs)
Andrew Trick006e1ab2012-04-24 17:56:43 +0000833{
Stephen Hines36b56882014-04-23 16:57:46 -0700834 // ScheduleDAGMI initializes SchedImpl's per-region policy.
835 ScheduleDAGMI::enterRegion(bb, begin, end, regioninstrs);
Andrew Trick7f8ab782012-05-10 21:06:10 +0000836
837 // For convenience remember the end of the liveness region.
Stephen Hines36b56882014-04-23 16:57:46 -0700838 LiveRegionEnd = (RegionEnd == bb->end()) ? RegionEnd : std::next(RegionEnd);
Andrew Trick38e61122013-09-06 17:32:34 +0000839
Andrew Trickfb386db2013-09-06 17:32:47 +0000840 SUPressureDiffs.clear();
841
Andrew Trick38e61122013-09-06 17:32:34 +0000842 ShouldTrackPressure = SchedImpl->shouldTrackPressure();
Andrew Trick7f8ab782012-05-10 21:06:10 +0000843}
844
845// Setup the register pressure trackers for the top scheduled top and bottom
846// scheduled regions.
Stephen Hines36b56882014-04-23 16:57:46 -0700847void ScheduleDAGMILive::initRegPressure() {
Andrew Trick7f8ab782012-05-10 21:06:10 +0000848 TopRPTracker.init(&MF, RegClassInfo, LIS, BB, RegionBegin);
849 BotRPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd);
850
851 // Close the RPTracker to finalize live ins.
852 RPTracker.closeRegion();
853
Andrew Trickd71efff2013-07-30 19:59:12 +0000854 DEBUG(RPTracker.dump());
Andrew Trickbb0a2422012-05-24 22:11:14 +0000855
Andrew Trick7f8ab782012-05-10 21:06:10 +0000856 // Initialize the live ins and live outs.
857 TopRPTracker.addLiveRegs(RPTracker.getPressure().LiveInRegs);
858 BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs);
859
860 // Close one end of the tracker so we can call
861 // getMaxUpward/DownwardPressureDelta before advancing across any
862 // instructions. This converts currently live regs into live ins/outs.
863 TopRPTracker.closeTop();
864 BotRPTracker.closeBottom();
865
Andrew Trickd71efff2013-07-30 19:59:12 +0000866 BotRPTracker.initLiveThru(RPTracker);
867 if (!BotRPTracker.getLiveThru().empty()) {
868 TopRPTracker.initLiveThru(BotRPTracker.getLiveThru());
869 DEBUG(dbgs() << "Live Thru: ";
870 dumpRegSetPressure(BotRPTracker.getLiveThru(), TRI));
871 };
872
Andrew Trick663bd992013-08-30 04:36:57 +0000873 // For each live out vreg reduce the pressure change associated with other
874 // uses of the same vreg below the live-out reaching def.
875 updatePressureDiffs(RPTracker.getPressure().LiveOutRegs);
876
Andrew Trick7f8ab782012-05-10 21:06:10 +0000877 // Account for liveness generated by the region boundary.
Andrew Trick663bd992013-08-30 04:36:57 +0000878 if (LiveRegionEnd != RegionEnd) {
879 SmallVector<unsigned, 8> LiveUses;
880 BotRPTracker.recede(&LiveUses);
881 updatePressureDiffs(LiveUses);
882 }
Andrew Trick7f8ab782012-05-10 21:06:10 +0000883
884 assert(BotRPTracker.getPos() == RegionEnd && "Can't find the region bottom");
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000885
886 // Cache the list of excess pressure sets in this region. This will also track
887 // the max pressure in the scheduled code for these sets.
888 RegionCriticalPSets.clear();
Jakub Staszakb74564a2013-01-25 21:44:27 +0000889 const std::vector<unsigned> &RegionPressure =
890 RPTracker.getPressure().MaxSetPressure;
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000891 for (unsigned i = 0, e = RegionPressure.size(); i < e; ++i) {
Andrew Trick1f8b48a2013-06-21 18:32:58 +0000892 unsigned Limit = RegClassInfo->getRegPressureSetLimit(i);
Andrew Trick3bf23302013-06-21 18:33:01 +0000893 if (RegionPressure[i] > Limit) {
894 DEBUG(dbgs() << TRI->getRegPressureSetName(i)
895 << " Limit " << Limit
896 << " Actual " << RegionPressure[i] << "\n");
Andrew Trick4c60b8a2013-08-30 03:49:48 +0000897 RegionCriticalPSets.push_back(PressureChange(i));
Andrew Trick3bf23302013-06-21 18:33:01 +0000898 }
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000899 }
900 DEBUG(dbgs() << "Excess PSets: ";
901 for (unsigned i = 0, e = RegionCriticalPSets.size(); i != e; ++i)
902 dbgs() << TRI->getRegPressureSetName(
Andrew Trick4c60b8a2013-08-30 03:49:48 +0000903 RegionCriticalPSets[i].getPSet()) << " ";
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000904 dbgs() << "\n");
905}
906
Stephen Hines36b56882014-04-23 16:57:46 -0700907void ScheduleDAGMILive::
Andrew Trickfb386db2013-09-06 17:32:47 +0000908updateScheduledPressure(const SUnit *SU,
909 const std::vector<unsigned> &NewMaxPressure) {
910 const PressureDiff &PDiff = getPressureDiff(SU);
911 unsigned CritIdx = 0, CritEnd = RegionCriticalPSets.size();
912 for (PressureDiff::const_iterator I = PDiff.begin(), E = PDiff.end();
913 I != E; ++I) {
914 if (!I->isValid())
915 break;
916 unsigned ID = I->getPSet();
917 while (CritIdx != CritEnd && RegionCriticalPSets[CritIdx].getPSet() < ID)
918 ++CritIdx;
919 if (CritIdx != CritEnd && RegionCriticalPSets[CritIdx].getPSet() == ID) {
920 if ((int)NewMaxPressure[ID] > RegionCriticalPSets[CritIdx].getUnitInc()
921 && NewMaxPressure[ID] <= INT16_MAX)
922 RegionCriticalPSets[CritIdx].setUnitInc(NewMaxPressure[ID]);
923 }
924 unsigned Limit = RegClassInfo->getRegPressureSetLimit(ID);
925 if (NewMaxPressure[ID] >= Limit - 2) {
926 DEBUG(dbgs() << " " << TRI->getRegPressureSetName(ID) << ": "
927 << NewMaxPressure[ID] << " > " << Limit << "(+ "
928 << BotRPTracker.getLiveThru()[ID] << " livethru)\n");
929 }
Andrew Trick73a0d8e2012-05-17 18:35:10 +0000930 }
Andrew Trick006e1ab2012-04-24 17:56:43 +0000931}
932
Andrew Trick663bd992013-08-30 04:36:57 +0000933/// Update the PressureDiff array for liveness after scheduling this
934/// instruction.
Stephen Hines36b56882014-04-23 16:57:46 -0700935void ScheduleDAGMILive::updatePressureDiffs(ArrayRef<unsigned> LiveUses) {
Andrew Trick663bd992013-08-30 04:36:57 +0000936 for (unsigned LUIdx = 0, LUEnd = LiveUses.size(); LUIdx != LUEnd; ++LUIdx) {
937 /// FIXME: Currently assuming single-use physregs.
938 unsigned Reg = LiveUses[LUIdx];
Andrew Trick1251bcc2013-09-06 17:32:39 +0000939 DEBUG(dbgs() << " LiveReg: " << PrintVRegOrUnit(Reg, TRI) << "\n");
Andrew Trick663bd992013-08-30 04:36:57 +0000940 if (!TRI->isVirtualRegister(Reg))
941 continue;
Andrew Trick1251bcc2013-09-06 17:32:39 +0000942
Andrew Trick663bd992013-08-30 04:36:57 +0000943 // This may be called before CurrentBottom has been initialized. However,
944 // BotRPTracker must have a valid position. We want the value live into the
945 // instruction or live out of the block, so ask for the previous
946 // instruction's live-out.
947 const LiveInterval &LI = LIS->getInterval(Reg);
948 VNInfo *VNI;
Andrew Trickc94e7b52013-08-31 05:17:58 +0000949 MachineBasicBlock::const_iterator I =
950 nextIfDebug(BotRPTracker.getPos(), BB->end());
951 if (I == BB->end())
Andrew Trick663bd992013-08-30 04:36:57 +0000952 VNI = LI.getVNInfoBefore(LIS->getMBBEndIdx(BB));
953 else {
Matthias Braun5649e252013-10-10 21:28:52 +0000954 LiveQueryResult LRQ = LI.Query(LIS->getInstructionIndex(I));
Andrew Trick663bd992013-08-30 04:36:57 +0000955 VNI = LRQ.valueIn();
956 }
957 // RegisterPressureTracker guarantees that readsReg is true for LiveUses.
958 assert(VNI && "No live value at use.");
959 for (VReg2UseMap::iterator
960 UI = VRegUses.find(Reg); UI != VRegUses.end(); ++UI) {
961 SUnit *SU = UI->SU;
Andrew Trick1251bcc2013-09-06 17:32:39 +0000962 DEBUG(dbgs() << " UpdateRegP: SU(" << SU->NodeNum << ") "
963 << *SU->getInstr());
Andrew Trick663bd992013-08-30 04:36:57 +0000964 // If this use comes before the reaching def, it cannot be a last use, so
965 // descrease its pressure change.
966 if (!SU->isScheduled && SU != &ExitSU) {
Matthias Braun5649e252013-10-10 21:28:52 +0000967 LiveQueryResult LRQ
968 = LI.Query(LIS->getInstructionIndex(SU->getInstr()));
Andrew Trick663bd992013-08-30 04:36:57 +0000969 if (LRQ.valueIn() == VNI)
970 getPressureDiff(SU).addPressureChange(Reg, true, &MRI);
971 }
972 }
973 }
974}
975
Andrew Trick17d35e52012-03-14 04:00:41 +0000976/// schedule - Called back from MachineScheduler::runOnMachineFunction
Andrew Trick006e1ab2012-04-24 17:56:43 +0000977/// after setting up the current scheduling region. [RegionBegin, RegionEnd)
978/// only includes instructions that have DAG nodes, not scheduling boundaries.
Andrew Trick78e5efe2012-09-11 00:39:15 +0000979///
980/// This is a skeletal driver, with all the functionality pushed into helpers,
981/// so that it can be easilly extended by experimental schedulers. Generally,
982/// implementing MachineSchedStrategy should be sufficient to implement a new
983/// scheduling algorithm. However, if a scheduler further subclasses
Stephen Hines36b56882014-04-23 16:57:46 -0700984/// ScheduleDAGMILive then it will want to override this virtual method in order
985/// to update any specialized state.
986void ScheduleDAGMILive::schedule() {
Andrew Trick78e5efe2012-09-11 00:39:15 +0000987 buildDAGWithRegPressure();
988
Andrew Trick9b5caaa2012-11-12 19:40:10 +0000989 Topo.InitDAGTopologicalSorting();
990
Andrew Trickd039b382012-09-14 17:22:42 +0000991 postprocessDAG();
992
Andrew Trick4e1fb182013-01-25 06:33:57 +0000993 SmallVector<SUnit*, 8> TopRoots, BotRoots;
994 findRootsAndBiasEdges(TopRoots, BotRoots);
995
996 // Initialize the strategy before modifying the DAG.
997 // This may initialize a DFSResult to be used for queue priority.
998 SchedImpl->initialize(this);
999
Andrew Trick78e5efe2012-09-11 00:39:15 +00001000 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
1001 SUnits[su].dumpAll(this));
Andrew Trick4e1fb182013-01-25 06:33:57 +00001002 if (ViewMISchedDAGs) viewGraph();
Andrew Trick78e5efe2012-09-11 00:39:15 +00001003
Andrew Trick4e1fb182013-01-25 06:33:57 +00001004 // Initialize ready queues now that the DAG and priority data are finalized.
1005 initQueues(TopRoots, BotRoots);
Andrew Trick78e5efe2012-09-11 00:39:15 +00001006
Stephen Hines36b56882014-04-23 16:57:46 -07001007 if (ShouldTrackPressure) {
1008 assert(TopRPTracker.getPos() == RegionBegin && "bad initial Top tracker");
1009 TopRPTracker.setPos(CurrentTop);
1010 }
1011
Andrew Trick78e5efe2012-09-11 00:39:15 +00001012 bool IsTopNode = false;
1013 while (SUnit *SU = SchedImpl->pickNode(IsTopNode)) {
Andrew Trick30c6ec22012-10-08 18:53:53 +00001014 assert(!SU->isScheduled && "Node already scheduled");
Andrew Trick78e5efe2012-09-11 00:39:15 +00001015 if (!checkSchedLimit())
1016 break;
1017
1018 scheduleMI(SU, IsTopNode);
1019
1020 updateQueues(SU, IsTopNode);
Stephen Hines36b56882014-04-23 16:57:46 -07001021
1022 if (DFSResult) {
1023 unsigned SubtreeID = DFSResult->getSubtreeID(SU);
1024 if (!ScheduledTrees.test(SubtreeID)) {
1025 ScheduledTrees.set(SubtreeID);
1026 DFSResult->scheduleTree(SubtreeID);
1027 SchedImpl->scheduleTree(SubtreeID);
1028 }
1029 }
1030
1031 // Notify the scheduling strategy after updating the DAG.
1032 SchedImpl->schedNode(SU, IsTopNode);
Andrew Trick78e5efe2012-09-11 00:39:15 +00001033 }
1034 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone.");
1035
1036 placeDebugValues();
Andrew Trick3b87f622012-11-07 07:05:09 +00001037
1038 DEBUG({
Andrew Trickb4221042012-11-28 03:42:47 +00001039 unsigned BBNum = begin()->getParent()->getNumber();
Andrew Trick3b87f622012-11-07 07:05:09 +00001040 dbgs() << "*** Final schedule for BB#" << BBNum << " ***\n";
1041 dumpSchedule();
1042 dbgs() << '\n';
1043 });
Andrew Trick78e5efe2012-09-11 00:39:15 +00001044}
1045
1046/// Build the DAG and setup three register pressure trackers.
Stephen Hines36b56882014-04-23 16:57:46 -07001047void ScheduleDAGMILive::buildDAGWithRegPressure() {
Andrew Trick42ebb3a2013-09-04 20:59:59 +00001048 if (!ShouldTrackPressure) {
1049 RPTracker.reset();
1050 RegionCriticalPSets.clear();
1051 buildSchedGraph(AA);
1052 return;
1053 }
1054
Andrew Trick7f8ab782012-05-10 21:06:10 +00001055 // Initialize the register pressure tracker used by buildSchedGraph.
Andrew Trickd71efff2013-07-30 19:59:12 +00001056 RPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd,
1057 /*TrackUntiedDefs=*/true);
Andrew Trick006e1ab2012-04-24 17:56:43 +00001058
Andrew Trick7f8ab782012-05-10 21:06:10 +00001059 // Account for liveness generate by the region boundary.
1060 if (LiveRegionEnd != RegionEnd)
1061 RPTracker.recede();
1062
1063 // Build the DAG, and compute current register pressure.
Andrew Trick4c60b8a2013-08-30 03:49:48 +00001064 buildSchedGraph(AA, &RPTracker, &SUPressureDiffs);
Andrew Trickc174eaf2012-03-08 01:41:12 +00001065
Andrew Trick7f8ab782012-05-10 21:06:10 +00001066 // Initialize top/bottom trackers after computing region pressure.
1067 initRegPressure();
Andrew Trick78e5efe2012-09-11 00:39:15 +00001068}
Andrew Trick7f8ab782012-05-10 21:06:10 +00001069
Stephen Hines36b56882014-04-23 16:57:46 -07001070void ScheduleDAGMILive::computeDFSResult() {
Andrew Trick178f7d02013-01-25 04:01:04 +00001071 if (!DFSResult)
1072 DFSResult = new SchedDFSResult(/*BottomU*/true, MinSubtreeSize);
1073 DFSResult->clear();
Andrew Trick178f7d02013-01-25 04:01:04 +00001074 ScheduledTrees.clear();
Andrew Trick4e1fb182013-01-25 06:33:57 +00001075 DFSResult->resize(SUnits.size());
1076 DFSResult->compute(SUnits);
Andrew Trick178f7d02013-01-25 04:01:04 +00001077 ScheduledTrees.resize(DFSResult->getNumSubtrees());
1078}
1079
Andrew Trick851bb2c2013-08-29 18:04:49 +00001080/// Compute the max cyclic critical path through the DAG. The scheduling DAG
1081/// only provides the critical path for single block loops. To handle loops that
1082/// span blocks, we could use the vreg path latencies provided by
1083/// MachineTraceMetrics instead. However, MachineTraceMetrics is not currently
1084/// available for use in the scheduler.
1085///
1086/// The cyclic path estimation identifies a def-use pair that crosses the back
Andrew Trick6dc6a892013-08-30 02:02:12 +00001087/// edge and considers the depth and height of the nodes. For example, consider
Andrew Trick851bb2c2013-08-29 18:04:49 +00001088/// the following instruction sequence where each instruction has unit latency
1089/// and defines an epomymous virtual register:
1090///
1091/// a->b(a,c)->c(b)->d(c)->exit
1092///
1093/// The cyclic critical path is a two cycles: b->c->b
1094/// The acyclic critical path is four cycles: a->b->c->d->exit
1095/// LiveOutHeight = height(c) = len(c->d->exit) = 2
1096/// LiveOutDepth = depth(c) + 1 = len(a->b->c) + 1 = 3
1097/// LiveInHeight = height(b) + 1 = len(b->c->d->exit) + 1 = 4
1098/// LiveInDepth = depth(b) = len(a->b) = 1
1099///
1100/// LiveOutDepth - LiveInDepth = 3 - 1 = 2
1101/// LiveInHeight - LiveOutHeight = 4 - 2 = 2
1102/// CyclicCriticalPath = min(2, 2) = 2
Stephen Hines36b56882014-04-23 16:57:46 -07001103///
1104/// This could be relevant to PostRA scheduling, but is currently implemented
1105/// assuming LiveIntervals.
1106unsigned ScheduleDAGMILive::computeCyclicCriticalPath() {
Andrew Trick851bb2c2013-08-29 18:04:49 +00001107 // This only applies to single block loop.
1108 if (!BB->isSuccessor(BB))
1109 return 0;
1110
1111 unsigned MaxCyclicLatency = 0;
1112 // Visit each live out vreg def to find def/use pairs that cross iterations.
1113 ArrayRef<unsigned> LiveOuts = RPTracker.getPressure().LiveOutRegs;
1114 for (ArrayRef<unsigned>::iterator RI = LiveOuts.begin(), RE = LiveOuts.end();
1115 RI != RE; ++RI) {
1116 unsigned Reg = *RI;
1117 if (!TRI->isVirtualRegister(Reg))
1118 continue;
1119 const LiveInterval &LI = LIS->getInterval(Reg);
1120 const VNInfo *DefVNI = LI.getVNInfoBefore(LIS->getMBBEndIdx(BB));
1121 if (!DefVNI)
1122 continue;
1123
1124 MachineInstr *DefMI = LIS->getInstructionFromIndex(DefVNI->def);
1125 const SUnit *DefSU = getSUnit(DefMI);
1126 if (!DefSU)
1127 continue;
1128
1129 unsigned LiveOutHeight = DefSU->getHeight();
1130 unsigned LiveOutDepth = DefSU->getDepth() + DefSU->Latency;
1131 // Visit all local users of the vreg def.
1132 for (VReg2UseMap::iterator
1133 UI = VRegUses.find(Reg); UI != VRegUses.end(); ++UI) {
1134 if (UI->SU == &ExitSU)
1135 continue;
1136
1137 // Only consider uses of the phi.
Matthias Braun5649e252013-10-10 21:28:52 +00001138 LiveQueryResult LRQ =
1139 LI.Query(LIS->getInstructionIndex(UI->SU->getInstr()));
Andrew Trick851bb2c2013-08-29 18:04:49 +00001140 if (!LRQ.valueIn()->isPHIDef())
1141 continue;
1142
1143 // Assume that a path spanning two iterations is a cycle, which could
1144 // overestimate in strange cases. This allows cyclic latency to be
1145 // estimated as the minimum slack of the vreg's depth or height.
1146 unsigned CyclicLatency = 0;
1147 if (LiveOutDepth > UI->SU->getDepth())
1148 CyclicLatency = LiveOutDepth - UI->SU->getDepth();
1149
1150 unsigned LiveInHeight = UI->SU->getHeight() + DefSU->Latency;
1151 if (LiveInHeight > LiveOutHeight) {
1152 if (LiveInHeight - LiveOutHeight < CyclicLatency)
1153 CyclicLatency = LiveInHeight - LiveOutHeight;
1154 }
1155 else
1156 CyclicLatency = 0;
1157
1158 DEBUG(dbgs() << "Cyclic Path: SU(" << DefSU->NodeNum << ") -> SU("
1159 << UI->SU->NodeNum << ") = " << CyclicLatency << "c\n");
1160 if (CyclicLatency > MaxCyclicLatency)
1161 MaxCyclicLatency = CyclicLatency;
1162 }
1163 }
1164 DEBUG(dbgs() << "Cyclic Critical Path: " << MaxCyclicLatency << "c\n");
1165 return MaxCyclicLatency;
1166}
1167
Andrew Trick78e5efe2012-09-11 00:39:15 +00001168/// Move an instruction and update register pressure.
Stephen Hines36b56882014-04-23 16:57:46 -07001169void ScheduleDAGMILive::scheduleMI(SUnit *SU, bool IsTopNode) {
Andrew Trick78e5efe2012-09-11 00:39:15 +00001170 // Move the instruction to its new location in the instruction stream.
1171 MachineInstr *MI = SU->getInstr();
Andrew Trickc174eaf2012-03-08 01:41:12 +00001172
Andrew Trick78e5efe2012-09-11 00:39:15 +00001173 if (IsTopNode) {
1174 assert(SU->isTopReady() && "node still has unscheduled dependencies");
1175 if (&*CurrentTop == MI)
1176 CurrentTop = nextIfDebug(++CurrentTop, CurrentBottom);
Andrew Trick17d35e52012-03-14 04:00:41 +00001177 else {
Andrew Trick78e5efe2012-09-11 00:39:15 +00001178 moveInstruction(MI, CurrentTop);
1179 TopRPTracker.setPos(MI);
Andrew Trick17d35e52012-03-14 04:00:41 +00001180 }
Andrew Trick000b2502012-04-24 18:04:37 +00001181
Andrew Trick42ebb3a2013-09-04 20:59:59 +00001182 if (ShouldTrackPressure) {
1183 // Update top scheduled pressure.
1184 TopRPTracker.advance();
1185 assert(TopRPTracker.getPos() == CurrentTop && "out of sync");
Andrew Trickfb386db2013-09-06 17:32:47 +00001186 updateScheduledPressure(SU, TopRPTracker.getPressure().MaxSetPressure);
Andrew Trick42ebb3a2013-09-04 20:59:59 +00001187 }
Andrew Trick78e5efe2012-09-11 00:39:15 +00001188 }
1189 else {
1190 assert(SU->isBottomReady() && "node still has unscheduled dependencies");
1191 MachineBasicBlock::iterator priorII =
1192 priorNonDebug(CurrentBottom, CurrentTop);
1193 if (&*priorII == MI)
1194 CurrentBottom = priorII;
1195 else {
1196 if (&*CurrentTop == MI) {
1197 CurrentTop = nextIfDebug(++CurrentTop, priorII);
1198 TopRPTracker.setPos(CurrentTop);
1199 }
1200 moveInstruction(MI, CurrentBottom);
1201 CurrentBottom = MI;
1202 }
Andrew Trick42ebb3a2013-09-04 20:59:59 +00001203 if (ShouldTrackPressure) {
1204 // Update bottom scheduled pressure.
1205 SmallVector<unsigned, 8> LiveUses;
1206 BotRPTracker.recede(&LiveUses);
1207 assert(BotRPTracker.getPos() == CurrentBottom && "out of sync");
Andrew Trickfb386db2013-09-06 17:32:47 +00001208 updateScheduledPressure(SU, BotRPTracker.getPressure().MaxSetPressure);
Andrew Trick42ebb3a2013-09-04 20:59:59 +00001209 updatePressureDiffs(LiveUses);
Andrew Trick42ebb3a2013-09-04 20:59:59 +00001210 }
Andrew Trick78e5efe2012-09-11 00:39:15 +00001211 }
1212}
1213
Andrew Trick6996fd02012-11-12 19:52:20 +00001214//===----------------------------------------------------------------------===//
1215// LoadClusterMutation - DAG post-processing to cluster loads.
1216//===----------------------------------------------------------------------===//
1217
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001218namespace {
1219/// \brief Post-process the DAG to create cluster edges between neighboring
1220/// loads.
1221class LoadClusterMutation : public ScheduleDAGMutation {
1222 struct LoadInfo {
1223 SUnit *SU;
1224 unsigned BaseReg;
1225 unsigned Offset;
1226 LoadInfo(SUnit *su, unsigned reg, unsigned ofs)
1227 : SU(su), BaseReg(reg), Offset(ofs) {}
Stephen Hines36b56882014-04-23 16:57:46 -07001228
1229 bool operator<(const LoadInfo &RHS) const {
1230 return std::tie(BaseReg, Offset) < std::tie(RHS.BaseReg, RHS.Offset);
1231 }
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001232 };
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001233
1234 const TargetInstrInfo *TII;
1235 const TargetRegisterInfo *TRI;
1236public:
1237 LoadClusterMutation(const TargetInstrInfo *tii,
1238 const TargetRegisterInfo *tri)
1239 : TII(tii), TRI(tri) {}
1240
Stephen Hines36b56882014-04-23 16:57:46 -07001241 void apply(ScheduleDAGMI *DAG) override;
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001242protected:
1243 void clusterNeighboringLoads(ArrayRef<SUnit*> Loads, ScheduleDAGMI *DAG);
1244};
1245} // anonymous
1246
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001247void LoadClusterMutation::clusterNeighboringLoads(ArrayRef<SUnit*> Loads,
1248 ScheduleDAGMI *DAG) {
1249 SmallVector<LoadClusterMutation::LoadInfo,32> LoadRecords;
1250 for (unsigned Idx = 0, End = Loads.size(); Idx != End; ++Idx) {
1251 SUnit *SU = Loads[Idx];
1252 unsigned BaseReg;
1253 unsigned Offset;
1254 if (TII->getLdStBaseRegImmOfs(SU->getInstr(), BaseReg, Offset, TRI))
1255 LoadRecords.push_back(LoadInfo(SU, BaseReg, Offset));
1256 }
1257 if (LoadRecords.size() < 2)
1258 return;
Stephen Hines36b56882014-04-23 16:57:46 -07001259 std::sort(LoadRecords.begin(), LoadRecords.end());
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001260 unsigned ClusterLength = 1;
1261 for (unsigned Idx = 0, End = LoadRecords.size(); Idx < (End - 1); ++Idx) {
1262 if (LoadRecords[Idx].BaseReg != LoadRecords[Idx+1].BaseReg) {
1263 ClusterLength = 1;
1264 continue;
1265 }
1266
1267 SUnit *SUa = LoadRecords[Idx].SU;
1268 SUnit *SUb = LoadRecords[Idx+1].SU;
Andrew Tricka7d2d562012-11-12 21:28:10 +00001269 if (TII->shouldClusterLoads(SUa->getInstr(), SUb->getInstr(), ClusterLength)
Andrew Trick9b5caaa2012-11-12 19:40:10 +00001270 && DAG->addEdge(SUb, SDep(SUa, SDep::Cluster))) {
1271
1272 DEBUG(dbgs() << "Cluster loads SU(" << SUa->NodeNum << ") - SU("
1273 << SUb->NodeNum << ")\n");
1274 // Copy successor edges from SUa to SUb. Interleaving computation
1275 // dependent on SUa can prevent load combining due to register reuse.
1276 // Predecessor edges do not need to be copied from SUb to SUa since nearby
1277 // loads should have effectively the same inputs.
1278 for (SUnit::const_succ_iterator
1279 SI = SUa->Succs.begin(), SE = SUa->Succs.end(); SI != SE; ++SI) {
1280 if (SI->getSUnit() == SUb)
1281 continue;
1282 DEBUG(dbgs() << " Copy Succ SU(" << SI->getSUnit()->NodeNum << ")\n");
1283 DAG->addEdge(SI->getSUnit(), SDep(SUb, SDep::Artificial));
1284 }
1285 ++ClusterLength;
1286 }
1287 else
1288 ClusterLength = 1;
1289 }
1290}
1291
1292/// \brief Callback from DAG postProcessing to create cluster edges for loads.
1293void LoadClusterMutation::apply(ScheduleDAGMI *DAG) {
1294 // Map DAG NodeNum to store chain ID.
1295 DenseMap<unsigned, unsigned> StoreChainIDs;
1296 // Map each store chain to a set of dependent loads.
1297 SmallVector<SmallVector<SUnit*,4>, 32> StoreChainDependents;
1298 for (unsigned Idx = 0, End = DAG->SUnits.size(); Idx != End; ++Idx) {
1299 SUnit *SU = &DAG->SUnits[Idx];
1300 if (!SU->getInstr()->mayLoad())
1301 continue;
1302 unsigned ChainPredID = DAG->SUnits.size();
1303 for (SUnit::const_pred_iterator
1304 PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) {
1305 if (PI->isCtrl()) {
1306 ChainPredID = PI->getSUnit()->NodeNum;
1307 break;
1308 }
1309 }
1310 // Check if this chain-like pred has been seen
1311 // before. ChainPredID==MaxNodeID for loads at the top of the schedule.
1312 unsigned NumChains = StoreChainDependents.size();
1313 std::pair<DenseMap<unsigned, unsigned>::iterator, bool> Result =
1314 StoreChainIDs.insert(std::make_pair(ChainPredID, NumChains));
1315 if (Result.second)
1316 StoreChainDependents.resize(NumChains + 1);
1317 StoreChainDependents[Result.first->second].push_back(SU);
1318 }
1319 // Iterate over the store chains.
1320 for (unsigned Idx = 0, End = StoreChainDependents.size(); Idx != End; ++Idx)
1321 clusterNeighboringLoads(StoreChainDependents[Idx], DAG);
1322}
1323
Andrew Trickc174eaf2012-03-08 01:41:12 +00001324//===----------------------------------------------------------------------===//
Andrew Trick6996fd02012-11-12 19:52:20 +00001325// MacroFusion - DAG post-processing to encourage fusion of macro ops.
1326//===----------------------------------------------------------------------===//
1327
1328namespace {
1329/// \brief Post-process the DAG to create cluster edges between instructions
1330/// that may be fused by the processor into a single operation.
1331class MacroFusion : public ScheduleDAGMutation {
1332 const TargetInstrInfo *TII;
1333public:
1334 MacroFusion(const TargetInstrInfo *tii): TII(tii) {}
1335
Stephen Hines36b56882014-04-23 16:57:46 -07001336 void apply(ScheduleDAGMI *DAG) override;
Andrew Trick6996fd02012-11-12 19:52:20 +00001337};
1338} // anonymous
1339
1340/// \brief Callback from DAG postProcessing to create cluster edges to encourage
1341/// fused operations.
1342void MacroFusion::apply(ScheduleDAGMI *DAG) {
1343 // For now, assume targets can only fuse with the branch.
1344 MachineInstr *Branch = DAG->ExitSU.getInstr();
1345 if (!Branch)
1346 return;
1347
1348 for (unsigned Idx = DAG->SUnits.size(); Idx > 0;) {
1349 SUnit *SU = &DAG->SUnits[--Idx];
1350 if (!TII->shouldScheduleAdjacent(SU->getInstr(), Branch))
1351 continue;
1352
1353 // Create a single weak edge from SU to ExitSU. The only effect is to cause
1354 // bottom-up scheduling to heavily prioritize the clustered SU. There is no
1355 // need to copy predecessor edges from ExitSU to SU, since top-down
1356 // scheduling cannot prioritize ExitSU anyway. To defer top-down scheduling
1357 // of SU, we could create an artificial edge from the deepest root, but it
1358 // hasn't been needed yet.
1359 bool Success = DAG->addEdge(&DAG->ExitSU, SDep(SU, SDep::Cluster));
1360 (void)Success;
1361 assert(Success && "No DAG nodes should be reachable from ExitSU");
1362
1363 DEBUG(dbgs() << "Macro Fuse SU(" << SU->NodeNum << ")\n");
1364 break;
1365 }
1366}
1367
1368//===----------------------------------------------------------------------===//
Andrew Tricke38afe12013-04-24 15:54:43 +00001369// CopyConstrain - DAG post-processing to encourage copy elimination.
1370//===----------------------------------------------------------------------===//
1371
1372namespace {
1373/// \brief Post-process the DAG to create weak edges from all uses of a copy to
1374/// the one use that defines the copy's source vreg, most likely an induction
1375/// variable increment.
1376class CopyConstrain : public ScheduleDAGMutation {
1377 // Transient state.
1378 SlotIndex RegionBeginIdx;
Andrew Tricka264a202013-04-24 23:19:56 +00001379 // RegionEndIdx is the slot index of the last non-debug instruction in the
1380 // scheduling region. So we may have RegionBeginIdx == RegionEndIdx.
Andrew Tricke38afe12013-04-24 15:54:43 +00001381 SlotIndex RegionEndIdx;
1382public:
1383 CopyConstrain(const TargetInstrInfo *, const TargetRegisterInfo *) {}
1384
Stephen Hines36b56882014-04-23 16:57:46 -07001385 void apply(ScheduleDAGMI *DAG) override;
Andrew Tricke38afe12013-04-24 15:54:43 +00001386
1387protected:
Stephen Hines36b56882014-04-23 16:57:46 -07001388 void constrainLocalCopy(SUnit *CopySU, ScheduleDAGMILive *DAG);
Andrew Tricke38afe12013-04-24 15:54:43 +00001389};
1390} // anonymous
1391
1392/// constrainLocalCopy handles two possibilities:
1393/// 1) Local src:
1394/// I0: = dst
1395/// I1: src = ...
1396/// I2: = dst
1397/// I3: dst = src (copy)
1398/// (create pred->succ edges I0->I1, I2->I1)
1399///
1400/// 2) Local copy:
1401/// I0: dst = src (copy)
1402/// I1: = dst
1403/// I2: src = ...
1404/// I3: = dst
1405/// (create pred->succ edges I1->I2, I3->I2)
1406///
1407/// Although the MachineScheduler is currently constrained to single blocks,
1408/// this algorithm should handle extended blocks. An EBB is a set of
1409/// contiguously numbered blocks such that the previous block in the EBB is
1410/// always the single predecessor.
Stephen Hines36b56882014-04-23 16:57:46 -07001411void CopyConstrain::constrainLocalCopy(SUnit *CopySU, ScheduleDAGMILive *DAG) {
Andrew Tricke38afe12013-04-24 15:54:43 +00001412 LiveIntervals *LIS = DAG->getLIS();
1413 MachineInstr *Copy = CopySU->getInstr();
1414
1415 // Check for pure vreg copies.
1416 unsigned SrcReg = Copy->getOperand(1).getReg();
1417 if (!TargetRegisterInfo::isVirtualRegister(SrcReg))
1418 return;
1419
1420 unsigned DstReg = Copy->getOperand(0).getReg();
1421 if (!TargetRegisterInfo::isVirtualRegister(DstReg))
1422 return;
1423
1424 // Check if either the dest or source is local. If it's live across a back
1425 // edge, it's not local. Note that if both vregs are live across the back
1426 // edge, we cannot successfully contrain the copy without cyclic scheduling.
1427 unsigned LocalReg = DstReg;
1428 unsigned GlobalReg = SrcReg;
1429 LiveInterval *LocalLI = &LIS->getInterval(LocalReg);
1430 if (!LocalLI->isLocal(RegionBeginIdx, RegionEndIdx)) {
1431 LocalReg = SrcReg;
1432 GlobalReg = DstReg;
1433 LocalLI = &LIS->getInterval(LocalReg);
1434 if (!LocalLI->isLocal(RegionBeginIdx, RegionEndIdx))
1435 return;
1436 }
1437 LiveInterval *GlobalLI = &LIS->getInterval(GlobalReg);
1438
1439 // Find the global segment after the start of the local LI.
1440 LiveInterval::iterator GlobalSegment = GlobalLI->find(LocalLI->beginIndex());
1441 // If GlobalLI does not overlap LocalLI->start, then a copy directly feeds a
1442 // local live range. We could create edges from other global uses to the local
1443 // start, but the coalescer should have already eliminated these cases, so
1444 // don't bother dealing with it.
1445 if (GlobalSegment == GlobalLI->end())
1446 return;
1447
1448 // If GlobalSegment is killed at the LocalLI->start, the call to find()
1449 // returned the next global segment. But if GlobalSegment overlaps with
1450 // LocalLI->start, then advance to the next segement. If a hole in GlobalLI
1451 // exists in LocalLI's vicinity, GlobalSegment will be the end of the hole.
1452 if (GlobalSegment->contains(LocalLI->beginIndex()))
1453 ++GlobalSegment;
1454
1455 if (GlobalSegment == GlobalLI->end())
1456 return;
1457
1458 // Check if GlobalLI contains a hole in the vicinity of LocalLI.
1459 if (GlobalSegment != GlobalLI->begin()) {
1460 // Two address defs have no hole.
Stephen Hines36b56882014-04-23 16:57:46 -07001461 if (SlotIndex::isSameInstr(std::prev(GlobalSegment)->end,
Andrew Tricke38afe12013-04-24 15:54:43 +00001462 GlobalSegment->start)) {
1463 return;
1464 }
Andrew Trick1e46fcd2013-07-30 19:59:08 +00001465 // If the prior global segment may be defined by the same two-address
1466 // instruction that also defines LocalLI, then can't make a hole here.
Stephen Hines36b56882014-04-23 16:57:46 -07001467 if (SlotIndex::isSameInstr(std::prev(GlobalSegment)->start,
Andrew Trick1e46fcd2013-07-30 19:59:08 +00001468 LocalLI->beginIndex())) {
1469 return;
1470 }
Andrew Tricke38afe12013-04-24 15:54:43 +00001471 // If GlobalLI has a prior segment, it must be live into the EBB. Otherwise
1472 // it would be a disconnected component in the live range.
Stephen Hines36b56882014-04-23 16:57:46 -07001473 assert(std::prev(GlobalSegment)->start < LocalLI->beginIndex() &&
Andrew Tricke38afe12013-04-24 15:54:43 +00001474 "Disconnected LRG within the scheduling region.");
1475 }
1476 MachineInstr *GlobalDef = LIS->getInstructionFromIndex(GlobalSegment->start);
1477 if (!GlobalDef)
1478 return;
1479
1480 SUnit *GlobalSU = DAG->getSUnit(GlobalDef);
1481 if (!GlobalSU)
1482 return;
1483
1484 // GlobalDef is the bottom of the GlobalLI hole. Open the hole by
1485 // constraining the uses of the last local def to precede GlobalDef.
1486 SmallVector<SUnit*,8> LocalUses;
1487 const VNInfo *LastLocalVN = LocalLI->getVNInfoBefore(LocalLI->endIndex());
1488 MachineInstr *LastLocalDef = LIS->getInstructionFromIndex(LastLocalVN->def);
1489 SUnit *LastLocalSU = DAG->getSUnit(LastLocalDef);
1490 for (SUnit::const_succ_iterator
1491 I = LastLocalSU->Succs.begin(), E = LastLocalSU->Succs.end();
1492 I != E; ++I) {
1493 if (I->getKind() != SDep::Data || I->getReg() != LocalReg)
1494 continue;
1495 if (I->getSUnit() == GlobalSU)
1496 continue;
1497 if (!DAG->canAddEdge(GlobalSU, I->getSUnit()))
1498 return;
1499 LocalUses.push_back(I->getSUnit());
1500 }
1501 // Open the top of the GlobalLI hole by constraining any earlier global uses
1502 // to precede the start of LocalLI.
1503 SmallVector<SUnit*,8> GlobalUses;
1504 MachineInstr *FirstLocalDef =
1505 LIS->getInstructionFromIndex(LocalLI->beginIndex());
1506 SUnit *FirstLocalSU = DAG->getSUnit(FirstLocalDef);
1507 for (SUnit::const_pred_iterator
1508 I = GlobalSU->Preds.begin(), E = GlobalSU->Preds.end(); I != E; ++I) {
1509 if (I->getKind() != SDep::Anti || I->getReg() != GlobalReg)
1510 continue;
1511 if (I->getSUnit() == FirstLocalSU)
1512 continue;
1513 if (!DAG->canAddEdge(FirstLocalSU, I->getSUnit()))
1514 return;
1515 GlobalUses.push_back(I->getSUnit());
1516 }
1517 DEBUG(dbgs() << "Constraining copy SU(" << CopySU->NodeNum << ")\n");
1518 // Add the weak edges.
1519 for (SmallVectorImpl<SUnit*>::const_iterator
1520 I = LocalUses.begin(), E = LocalUses.end(); I != E; ++I) {
1521 DEBUG(dbgs() << " Local use SU(" << (*I)->NodeNum << ") -> SU("
1522 << GlobalSU->NodeNum << ")\n");
1523 DAG->addEdge(GlobalSU, SDep(*I, SDep::Weak));
1524 }
1525 for (SmallVectorImpl<SUnit*>::const_iterator
1526 I = GlobalUses.begin(), E = GlobalUses.end(); I != E; ++I) {
1527 DEBUG(dbgs() << " Global use SU(" << (*I)->NodeNum << ") -> SU("
1528 << FirstLocalSU->NodeNum << ")\n");
1529 DAG->addEdge(FirstLocalSU, SDep(*I, SDep::Weak));
1530 }
1531}
1532
1533/// \brief Callback from DAG postProcessing to create weak edges to encourage
1534/// copy elimination.
1535void CopyConstrain::apply(ScheduleDAGMI *DAG) {
Stephen Hines36b56882014-04-23 16:57:46 -07001536 assert(DAG->hasVRegLiveness() && "Expect VRegs with LiveIntervals");
1537
Andrew Tricka264a202013-04-24 23:19:56 +00001538 MachineBasicBlock::iterator FirstPos = nextIfDebug(DAG->begin(), DAG->end());
1539 if (FirstPos == DAG->end())
1540 return;
1541 RegionBeginIdx = DAG->getLIS()->getInstructionIndex(&*FirstPos);
Andrew Tricke38afe12013-04-24 15:54:43 +00001542 RegionEndIdx = DAG->getLIS()->getInstructionIndex(
1543 &*priorNonDebug(DAG->end(), DAG->begin()));
1544
1545 for (unsigned Idx = 0, End = DAG->SUnits.size(); Idx != End; ++Idx) {
1546 SUnit *SU = &DAG->SUnits[Idx];
1547 if (!SU->getInstr()->isCopy())
1548 continue;
1549
Stephen Hines36b56882014-04-23 16:57:46 -07001550 constrainLocalCopy(SU, static_cast<ScheduleDAGMILive*>(DAG));
Andrew Tricke38afe12013-04-24 15:54:43 +00001551 }
1552}
1553
1554//===----------------------------------------------------------------------===//
Stephen Hines36b56882014-04-23 16:57:46 -07001555// MachineSchedStrategy helpers used by GenericScheduler, GenericPostScheduler
1556// and possibly other custom schedulers.
1557//===----------------------------------------------------------------------===//
1558
1559static const unsigned InvalidCycle = ~0U;
1560
1561SchedBoundary::~SchedBoundary() { delete HazardRec; }
1562
1563void SchedBoundary::reset() {
1564 // A new HazardRec is created for each DAG and owned by SchedBoundary.
1565 // Destroying and reconstructing it is very expensive though. So keep
1566 // invalid, placeholder HazardRecs.
1567 if (HazardRec && HazardRec->isEnabled()) {
1568 delete HazardRec;
Stephen Hinesdce4a402014-05-29 02:49:00 -07001569 HazardRec = nullptr;
Stephen Hines36b56882014-04-23 16:57:46 -07001570 }
1571 Available.clear();
1572 Pending.clear();
1573 CheckPending = false;
1574 NextSUs.clear();
1575 CurrCycle = 0;
1576 CurrMOps = 0;
1577 MinReadyCycle = UINT_MAX;
1578 ExpectedLatency = 0;
1579 DependentLatency = 0;
1580 RetiredMOps = 0;
1581 MaxExecutedResCount = 0;
1582 ZoneCritResIdx = 0;
1583 IsResourceLimited = false;
1584 ReservedCycles.clear();
1585#ifndef NDEBUG
1586 // Track the maximum number of stall cycles that could arise either from the
1587 // latency of a DAG edge or the number of cycles that a processor resource is
1588 // reserved (SchedBoundary::ReservedCycles).
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -07001589 MaxObservedStall = 0;
Stephen Hines36b56882014-04-23 16:57:46 -07001590#endif
1591 // Reserve a zero-count for invalid CritResIdx.
1592 ExecutedResCounts.resize(1);
1593 assert(!ExecutedResCounts[0] && "nonzero count for bad resource");
1594}
1595
1596void SchedRemainder::
1597init(ScheduleDAGMI *DAG, const TargetSchedModel *SchedModel) {
1598 reset();
1599 if (!SchedModel->hasInstrSchedModel())
1600 return;
1601 RemainingCounts.resize(SchedModel->getNumProcResourceKinds());
1602 for (std::vector<SUnit>::iterator
1603 I = DAG->SUnits.begin(), E = DAG->SUnits.end(); I != E; ++I) {
1604 const MCSchedClassDesc *SC = DAG->getSchedClass(&*I);
1605 RemIssueCount += SchedModel->getNumMicroOps(I->getInstr(), SC)
1606 * SchedModel->getMicroOpFactor();
1607 for (TargetSchedModel::ProcResIter
1608 PI = SchedModel->getWriteProcResBegin(SC),
1609 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
1610 unsigned PIdx = PI->ProcResourceIdx;
1611 unsigned Factor = SchedModel->getResourceFactor(PIdx);
1612 RemainingCounts[PIdx] += (Factor * PI->Cycles);
1613 }
1614 }
1615}
1616
1617void SchedBoundary::
1618init(ScheduleDAGMI *dag, const TargetSchedModel *smodel, SchedRemainder *rem) {
1619 reset();
1620 DAG = dag;
1621 SchedModel = smodel;
1622 Rem = rem;
1623 if (SchedModel->hasInstrSchedModel()) {
1624 ExecutedResCounts.resize(SchedModel->getNumProcResourceKinds());
1625 ReservedCycles.resize(SchedModel->getNumProcResourceKinds(), InvalidCycle);
1626 }
1627}
1628
1629/// Compute the stall cycles based on this SUnit's ready time. Heuristics treat
1630/// these "soft stalls" differently than the hard stall cycles based on CPU
1631/// resources and computed by checkHazard(). A fully in-order model
1632/// (MicroOpBufferSize==0) will not make use of this since instructions are not
1633/// available for scheduling until they are ready. However, a weaker in-order
1634/// model may use this for heuristics. For example, if a processor has in-order
1635/// behavior when reading certain resources, this may come into play.
1636unsigned SchedBoundary::getLatencyStallCycles(SUnit *SU) {
1637 if (!SU->isUnbuffered)
1638 return 0;
1639
1640 unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle);
1641 if (ReadyCycle > CurrCycle)
1642 return ReadyCycle - CurrCycle;
1643 return 0;
1644}
1645
1646/// Compute the next cycle at which the given processor resource can be
1647/// scheduled.
1648unsigned SchedBoundary::
1649getNextResourceCycle(unsigned PIdx, unsigned Cycles) {
1650 unsigned NextUnreserved = ReservedCycles[PIdx];
1651 // If this resource has never been used, always return cycle zero.
1652 if (NextUnreserved == InvalidCycle)
1653 return 0;
1654 // For bottom-up scheduling add the cycles needed for the current operation.
1655 if (!isTop())
1656 NextUnreserved += Cycles;
1657 return NextUnreserved;
1658}
1659
1660/// Does this SU have a hazard within the current instruction group.
1661///
1662/// The scheduler supports two modes of hazard recognition. The first is the
1663/// ScheduleHazardRecognizer API. It is a fully general hazard recognizer that
1664/// supports highly complicated in-order reservation tables
1665/// (ScoreboardHazardRecognizer) and arbitraty target-specific logic.
1666///
1667/// The second is a streamlined mechanism that checks for hazards based on
1668/// simple counters that the scheduler itself maintains. It explicitly checks
1669/// for instruction dispatch limitations, including the number of micro-ops that
1670/// can dispatch per cycle.
1671///
1672/// TODO: Also check whether the SU must start a new group.
1673bool SchedBoundary::checkHazard(SUnit *SU) {
1674 if (HazardRec->isEnabled()
1675 && HazardRec->getHazardType(SU) != ScheduleHazardRecognizer::NoHazard) {
1676 return true;
1677 }
1678 unsigned uops = SchedModel->getNumMicroOps(SU->getInstr());
1679 if ((CurrMOps > 0) && (CurrMOps + uops > SchedModel->getIssueWidth())) {
1680 DEBUG(dbgs() << " SU(" << SU->NodeNum << ") uops="
1681 << SchedModel->getNumMicroOps(SU->getInstr()) << '\n');
1682 return true;
1683 }
1684 if (SchedModel->hasInstrSchedModel() && SU->hasReservedResource) {
1685 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
1686 for (TargetSchedModel::ProcResIter
1687 PI = SchedModel->getWriteProcResBegin(SC),
1688 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -07001689 unsigned NRCycle = getNextResourceCycle(PI->ProcResourceIdx, PI->Cycles);
1690 if (NRCycle > CurrCycle) {
1691#ifndef NDEBUG
1692 MaxObservedStall = std::max(PI->Cycles, MaxObservedStall);
1693#endif
1694 DEBUG(dbgs() << " SU(" << SU->NodeNum << ") "
1695 << SchedModel->getResourceName(PI->ProcResourceIdx)
1696 << "=" << NRCycle << "c\n");
Stephen Hines36b56882014-04-23 16:57:46 -07001697 return true;
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -07001698 }
Stephen Hines36b56882014-04-23 16:57:46 -07001699 }
1700 }
1701 return false;
1702}
1703
1704// Find the unscheduled node in ReadySUs with the highest latency.
1705unsigned SchedBoundary::
1706findMaxLatency(ArrayRef<SUnit*> ReadySUs) {
Stephen Hinesdce4a402014-05-29 02:49:00 -07001707 SUnit *LateSU = nullptr;
Stephen Hines36b56882014-04-23 16:57:46 -07001708 unsigned RemLatency = 0;
1709 for (ArrayRef<SUnit*>::iterator I = ReadySUs.begin(), E = ReadySUs.end();
1710 I != E; ++I) {
1711 unsigned L = getUnscheduledLatency(*I);
1712 if (L > RemLatency) {
1713 RemLatency = L;
1714 LateSU = *I;
1715 }
1716 }
1717 if (LateSU) {
1718 DEBUG(dbgs() << Available.getName() << " RemLatency SU("
1719 << LateSU->NodeNum << ") " << RemLatency << "c\n");
1720 }
1721 return RemLatency;
1722}
1723
1724// Count resources in this zone and the remaining unscheduled
1725// instruction. Return the max count, scaled. Set OtherCritIdx to the critical
1726// resource index, or zero if the zone is issue limited.
1727unsigned SchedBoundary::
1728getOtherResourceCount(unsigned &OtherCritIdx) {
1729 OtherCritIdx = 0;
1730 if (!SchedModel->hasInstrSchedModel())
1731 return 0;
1732
1733 unsigned OtherCritCount = Rem->RemIssueCount
1734 + (RetiredMOps * SchedModel->getMicroOpFactor());
1735 DEBUG(dbgs() << " " << Available.getName() << " + Remain MOps: "
1736 << OtherCritCount / SchedModel->getMicroOpFactor() << '\n');
1737 for (unsigned PIdx = 1, PEnd = SchedModel->getNumProcResourceKinds();
1738 PIdx != PEnd; ++PIdx) {
1739 unsigned OtherCount = getResourceCount(PIdx) + Rem->RemainingCounts[PIdx];
1740 if (OtherCount > OtherCritCount) {
1741 OtherCritCount = OtherCount;
1742 OtherCritIdx = PIdx;
1743 }
1744 }
1745 if (OtherCritIdx) {
1746 DEBUG(dbgs() << " " << Available.getName() << " + Remain CritRes: "
1747 << OtherCritCount / SchedModel->getResourceFactor(OtherCritIdx)
1748 << " " << SchedModel->getResourceName(OtherCritIdx) << "\n");
1749 }
1750 return OtherCritCount;
1751}
1752
1753void SchedBoundary::releaseNode(SUnit *SU, unsigned ReadyCycle) {
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -07001754 assert(SU->getInstr() && "Scheduled SUnit must have instr");
1755
1756#ifndef NDEBUG
1757 // ReadyCycle was been bumped up to the CurrCycle when this node was
1758 // scheduled, but CurrCycle may have been eagerly advanced immediately after
1759 // scheduling, so may now be greater than ReadyCycle.
1760 if (ReadyCycle > CurrCycle)
1761 MaxObservedStall = std::max(ReadyCycle - CurrCycle, MaxObservedStall);
1762#endif
1763
Stephen Hines36b56882014-04-23 16:57:46 -07001764 if (ReadyCycle < MinReadyCycle)
1765 MinReadyCycle = ReadyCycle;
1766
1767 // Check for interlocks first. For the purpose of other heuristics, an
1768 // instruction that cannot issue appears as if it's not in the ReadyQueue.
1769 bool IsBuffered = SchedModel->getMicroOpBufferSize() != 0;
1770 if ((!IsBuffered && ReadyCycle > CurrCycle) || checkHazard(SU))
1771 Pending.push(SU);
1772 else
1773 Available.push(SU);
1774
1775 // Record this node as an immediate dependent of the scheduled node.
1776 NextSUs.insert(SU);
1777}
1778
1779void SchedBoundary::releaseTopNode(SUnit *SU) {
1780 if (SU->isScheduled)
1781 return;
1782
Stephen Hines36b56882014-04-23 16:57:46 -07001783 releaseNode(SU, SU->TopReadyCycle);
1784}
1785
1786void SchedBoundary::releaseBottomNode(SUnit *SU) {
1787 if (SU->isScheduled)
1788 return;
1789
Stephen Hines36b56882014-04-23 16:57:46 -07001790 releaseNode(SU, SU->BotReadyCycle);
1791}
1792
1793/// Move the boundary of scheduled code by one cycle.
1794void SchedBoundary::bumpCycle(unsigned NextCycle) {
1795 if (SchedModel->getMicroOpBufferSize() == 0) {
1796 assert(MinReadyCycle < UINT_MAX && "MinReadyCycle uninitialized");
1797 if (MinReadyCycle > NextCycle)
1798 NextCycle = MinReadyCycle;
1799 }
1800 // Update the current micro-ops, which will issue in the next cycle.
1801 unsigned DecMOps = SchedModel->getIssueWidth() * (NextCycle - CurrCycle);
1802 CurrMOps = (CurrMOps <= DecMOps) ? 0 : CurrMOps - DecMOps;
1803
1804 // Decrement DependentLatency based on the next cycle.
1805 if ((NextCycle - CurrCycle) > DependentLatency)
1806 DependentLatency = 0;
1807 else
1808 DependentLatency -= (NextCycle - CurrCycle);
1809
1810 if (!HazardRec->isEnabled()) {
1811 // Bypass HazardRec virtual calls.
1812 CurrCycle = NextCycle;
1813 }
1814 else {
1815 // Bypass getHazardType calls in case of long latency.
1816 for (; CurrCycle != NextCycle; ++CurrCycle) {
1817 if (isTop())
1818 HazardRec->AdvanceCycle();
1819 else
1820 HazardRec->RecedeCycle();
1821 }
1822 }
1823 CheckPending = true;
1824 unsigned LFactor = SchedModel->getLatencyFactor();
1825 IsResourceLimited =
1826 (int)(getCriticalCount() - (getScheduledLatency() * LFactor))
1827 > (int)LFactor;
1828
1829 DEBUG(dbgs() << "Cycle: " << CurrCycle << ' ' << Available.getName() << '\n');
1830}
1831
1832void SchedBoundary::incExecutedResources(unsigned PIdx, unsigned Count) {
1833 ExecutedResCounts[PIdx] += Count;
1834 if (ExecutedResCounts[PIdx] > MaxExecutedResCount)
1835 MaxExecutedResCount = ExecutedResCounts[PIdx];
1836}
1837
1838/// Add the given processor resource to this scheduled zone.
1839///
1840/// \param Cycles indicates the number of consecutive (non-pipelined) cycles
1841/// during which this resource is consumed.
1842///
1843/// \return the next cycle at which the instruction may execute without
1844/// oversubscribing resources.
1845unsigned SchedBoundary::
1846countResource(unsigned PIdx, unsigned Cycles, unsigned NextCycle) {
1847 unsigned Factor = SchedModel->getResourceFactor(PIdx);
1848 unsigned Count = Factor * Cycles;
1849 DEBUG(dbgs() << " " << SchedModel->getResourceName(PIdx)
1850 << " +" << Cycles << "x" << Factor << "u\n");
1851
1852 // Update Executed resources counts.
1853 incExecutedResources(PIdx, Count);
1854 assert(Rem->RemainingCounts[PIdx] >= Count && "resource double counted");
1855 Rem->RemainingCounts[PIdx] -= Count;
1856
1857 // Check if this resource exceeds the current critical resource. If so, it
1858 // becomes the critical resource.
1859 if (ZoneCritResIdx != PIdx && (getResourceCount(PIdx) > getCriticalCount())) {
1860 ZoneCritResIdx = PIdx;
1861 DEBUG(dbgs() << " *** Critical resource "
1862 << SchedModel->getResourceName(PIdx) << ": "
1863 << getResourceCount(PIdx) / SchedModel->getLatencyFactor() << "c\n");
1864 }
1865 // For reserved resources, record the highest cycle using the resource.
1866 unsigned NextAvailable = getNextResourceCycle(PIdx, Cycles);
1867 if (NextAvailable > CurrCycle) {
1868 DEBUG(dbgs() << " Resource conflict: "
1869 << SchedModel->getProcResource(PIdx)->Name << " reserved until @"
1870 << NextAvailable << "\n");
1871 }
1872 return NextAvailable;
1873}
1874
1875/// Move the boundary of scheduled code by one SUnit.
1876void SchedBoundary::bumpNode(SUnit *SU) {
1877 // Update the reservation table.
1878 if (HazardRec->isEnabled()) {
1879 if (!isTop() && SU->isCall) {
1880 // Calls are scheduled with their preceding instructions. For bottom-up
1881 // scheduling, clear the pipeline state before emitting.
1882 HazardRec->Reset();
1883 }
1884 HazardRec->EmitInstruction(SU);
1885 }
1886 // checkHazard should prevent scheduling multiple instructions per cycle that
1887 // exceed the issue width.
1888 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
1889 unsigned IncMOps = SchedModel->getNumMicroOps(SU->getInstr());
1890 assert(
1891 (CurrMOps == 0 || (CurrMOps + IncMOps) <= SchedModel->getIssueWidth()) &&
1892 "Cannot schedule this instruction's MicroOps in the current cycle.");
1893
1894 unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle);
1895 DEBUG(dbgs() << " Ready @" << ReadyCycle << "c\n");
1896
1897 unsigned NextCycle = CurrCycle;
1898 switch (SchedModel->getMicroOpBufferSize()) {
1899 case 0:
1900 assert(ReadyCycle <= CurrCycle && "Broken PendingQueue");
1901 break;
1902 case 1:
1903 if (ReadyCycle > NextCycle) {
1904 NextCycle = ReadyCycle;
1905 DEBUG(dbgs() << " *** Stall until: " << ReadyCycle << "\n");
1906 }
1907 break;
1908 default:
1909 // We don't currently model the OOO reorder buffer, so consider all
1910 // scheduled MOps to be "retired". We do loosely model in-order resource
1911 // latency. If this instruction uses an in-order resource, account for any
1912 // likely stall cycles.
1913 if (SU->isUnbuffered && ReadyCycle > NextCycle)
1914 NextCycle = ReadyCycle;
1915 break;
1916 }
1917 RetiredMOps += IncMOps;
1918
1919 // Update resource counts and critical resource.
1920 if (SchedModel->hasInstrSchedModel()) {
1921 unsigned DecRemIssue = IncMOps * SchedModel->getMicroOpFactor();
1922 assert(Rem->RemIssueCount >= DecRemIssue && "MOps double counted");
1923 Rem->RemIssueCount -= DecRemIssue;
1924 if (ZoneCritResIdx) {
1925 // Scale scheduled micro-ops for comparing with the critical resource.
1926 unsigned ScaledMOps =
1927 RetiredMOps * SchedModel->getMicroOpFactor();
1928
1929 // If scaled micro-ops are now more than the previous critical resource by
1930 // a full cycle, then micro-ops issue becomes critical.
1931 if ((int)(ScaledMOps - getResourceCount(ZoneCritResIdx))
1932 >= (int)SchedModel->getLatencyFactor()) {
1933 ZoneCritResIdx = 0;
1934 DEBUG(dbgs() << " *** Critical resource NumMicroOps: "
1935 << ScaledMOps / SchedModel->getLatencyFactor() << "c\n");
1936 }
1937 }
1938 for (TargetSchedModel::ProcResIter
1939 PI = SchedModel->getWriteProcResBegin(SC),
1940 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
1941 unsigned RCycle =
1942 countResource(PI->ProcResourceIdx, PI->Cycles, NextCycle);
1943 if (RCycle > NextCycle)
1944 NextCycle = RCycle;
1945 }
1946 if (SU->hasReservedResource) {
1947 // For reserved resources, record the highest cycle using the resource.
1948 // For top-down scheduling, this is the cycle in which we schedule this
1949 // instruction plus the number of cycles the operations reserves the
1950 // resource. For bottom-up is it simply the instruction's cycle.
1951 for (TargetSchedModel::ProcResIter
1952 PI = SchedModel->getWriteProcResBegin(SC),
1953 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
1954 unsigned PIdx = PI->ProcResourceIdx;
1955 if (SchedModel->getProcResource(PIdx)->BufferSize == 0) {
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -07001956 if (isTop()) {
1957 ReservedCycles[PIdx] =
1958 std::max(getNextResourceCycle(PIdx, 0), NextCycle + PI->Cycles);
1959 }
1960 else
1961 ReservedCycles[PIdx] = NextCycle;
Stephen Hines36b56882014-04-23 16:57:46 -07001962 }
1963 }
1964 }
1965 }
1966 // Update ExpectedLatency and DependentLatency.
1967 unsigned &TopLatency = isTop() ? ExpectedLatency : DependentLatency;
1968 unsigned &BotLatency = isTop() ? DependentLatency : ExpectedLatency;
1969 if (SU->getDepth() > TopLatency) {
1970 TopLatency = SU->getDepth();
1971 DEBUG(dbgs() << " " << Available.getName()
1972 << " TopLatency SU(" << SU->NodeNum << ") " << TopLatency << "c\n");
1973 }
1974 if (SU->getHeight() > BotLatency) {
1975 BotLatency = SU->getHeight();
1976 DEBUG(dbgs() << " " << Available.getName()
1977 << " BotLatency SU(" << SU->NodeNum << ") " << BotLatency << "c\n");
1978 }
1979 // If we stall for any reason, bump the cycle.
1980 if (NextCycle > CurrCycle) {
1981 bumpCycle(NextCycle);
1982 }
1983 else {
1984 // After updating ZoneCritResIdx and ExpectedLatency, check if we're
1985 // resource limited. If a stall occurred, bumpCycle does this.
1986 unsigned LFactor = SchedModel->getLatencyFactor();
1987 IsResourceLimited =
1988 (int)(getCriticalCount() - (getScheduledLatency() * LFactor))
1989 > (int)LFactor;
1990 }
1991 // Update CurrMOps after calling bumpCycle to handle stalls, since bumpCycle
1992 // resets CurrMOps. Loop to handle instructions with more MOps than issue in
1993 // one cycle. Since we commonly reach the max MOps here, opportunistically
1994 // bump the cycle to avoid uselessly checking everything in the readyQ.
1995 CurrMOps += IncMOps;
1996 while (CurrMOps >= SchedModel->getIssueWidth()) {
1997 DEBUG(dbgs() << " *** Max MOps " << CurrMOps
1998 << " at cycle " << CurrCycle << '\n');
1999 bumpCycle(++NextCycle);
2000 }
2001 DEBUG(dumpScheduledState());
2002}
2003
2004/// Release pending ready nodes in to the available queue. This makes them
2005/// visible to heuristics.
2006void SchedBoundary::releasePending() {
2007 // If the available queue is empty, it is safe to reset MinReadyCycle.
2008 if (Available.empty())
2009 MinReadyCycle = UINT_MAX;
2010
2011 // Check to see if any of the pending instructions are ready to issue. If
2012 // so, add them to the available queue.
2013 bool IsBuffered = SchedModel->getMicroOpBufferSize() != 0;
2014 for (unsigned i = 0, e = Pending.size(); i != e; ++i) {
2015 SUnit *SU = *(Pending.begin()+i);
2016 unsigned ReadyCycle = isTop() ? SU->TopReadyCycle : SU->BotReadyCycle;
2017
2018 if (ReadyCycle < MinReadyCycle)
2019 MinReadyCycle = ReadyCycle;
2020
2021 if (!IsBuffered && ReadyCycle > CurrCycle)
2022 continue;
2023
2024 if (checkHazard(SU))
2025 continue;
2026
2027 Available.push(SU);
2028 Pending.remove(Pending.begin()+i);
2029 --i; --e;
2030 }
2031 DEBUG(if (!Pending.empty()) Pending.dump());
2032 CheckPending = false;
2033}
2034
2035/// Remove SU from the ready set for this boundary.
2036void SchedBoundary::removeReady(SUnit *SU) {
2037 if (Available.isInQueue(SU))
2038 Available.remove(Available.find(SU));
2039 else {
2040 assert(Pending.isInQueue(SU) && "bad ready count");
2041 Pending.remove(Pending.find(SU));
2042 }
2043}
2044
2045/// If this queue only has one ready candidate, return it. As a side effect,
2046/// defer any nodes that now hit a hazard, and advance the cycle until at least
2047/// one node is ready. If multiple instructions are ready, return NULL.
2048SUnit *SchedBoundary::pickOnlyChoice() {
2049 if (CheckPending)
2050 releasePending();
2051
2052 if (CurrMOps > 0) {
2053 // Defer any ready instrs that now have a hazard.
2054 for (ReadyQueue::iterator I = Available.begin(); I != Available.end();) {
2055 if (checkHazard(*I)) {
2056 Pending.push(*I);
2057 I = Available.remove(I);
2058 continue;
2059 }
2060 ++I;
2061 }
2062 }
2063 for (unsigned i = 0; Available.empty(); ++i) {
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -07002064// FIXME: Re-enable assert once PR20057 is resolved.
2065// assert(i <= (HazardRec->getMaxLookAhead() + MaxObservedStall) &&
2066// "permanent hazard");
2067 (void)i;
Stephen Hines36b56882014-04-23 16:57:46 -07002068 bumpCycle(CurrCycle + 1);
2069 releasePending();
2070 }
2071 if (Available.size() == 1)
2072 return *Available.begin();
Stephen Hinesdce4a402014-05-29 02:49:00 -07002073 return nullptr;
Stephen Hines36b56882014-04-23 16:57:46 -07002074}
2075
2076#ifndef NDEBUG
2077// This is useful information to dump after bumpNode.
2078// Note that the Queue contents are more useful before pickNodeFromQueue.
2079void SchedBoundary::dumpScheduledState() {
2080 unsigned ResFactor;
2081 unsigned ResCount;
2082 if (ZoneCritResIdx) {
2083 ResFactor = SchedModel->getResourceFactor(ZoneCritResIdx);
2084 ResCount = getResourceCount(ZoneCritResIdx);
2085 }
2086 else {
2087 ResFactor = SchedModel->getMicroOpFactor();
2088 ResCount = RetiredMOps * SchedModel->getMicroOpFactor();
2089 }
2090 unsigned LFactor = SchedModel->getLatencyFactor();
2091 dbgs() << Available.getName() << " @" << CurrCycle << "c\n"
2092 << " Retired: " << RetiredMOps;
2093 dbgs() << "\n Executed: " << getExecutedCount() / LFactor << "c";
2094 dbgs() << "\n Critical: " << ResCount / LFactor << "c, "
2095 << ResCount / ResFactor << " "
2096 << SchedModel->getResourceName(ZoneCritResIdx)
2097 << "\n ExpectedLatency: " << ExpectedLatency << "c\n"
2098 << (IsResourceLimited ? " - Resource" : " - Latency")
2099 << " limited.\n";
2100}
2101#endif
2102
2103//===----------------------------------------------------------------------===//
2104// GenericScheduler - Generic implementation of MachineSchedStrategy.
Andrew Trick42b7a712012-01-17 06:55:03 +00002105//===----------------------------------------------------------------------===//
2106
Stephen Hines36b56882014-04-23 16:57:46 -07002107void GenericSchedulerBase::SchedCandidate::
2108initResourceDelta(const ScheduleDAGMI *DAG,
2109 const TargetSchedModel *SchedModel) {
2110 if (!Policy.ReduceResIdx && !Policy.DemandResIdx)
2111 return;
2112
2113 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
2114 for (TargetSchedModel::ProcResIter
2115 PI = SchedModel->getWriteProcResBegin(SC),
2116 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
2117 if (PI->ProcResourceIdx == Policy.ReduceResIdx)
2118 ResDelta.CritResources += PI->Cycles;
2119 if (PI->ProcResourceIdx == Policy.DemandResIdx)
2120 ResDelta.DemandedResources += PI->Cycles;
2121 }
2122}
2123
2124/// Set the CandPolicy given a scheduling zone given the current resources and
2125/// latencies inside and outside the zone.
2126void GenericSchedulerBase::setPolicy(CandPolicy &Policy,
2127 bool IsPostRA,
2128 SchedBoundary &CurrZone,
2129 SchedBoundary *OtherZone) {
2130 // Apply preemptive heuristics based on the the total latency and resources
2131 // inside and outside this zone. Potential stalls should be considered before
2132 // following this policy.
2133
2134 // Compute remaining latency. We need this both to determine whether the
2135 // overall schedule has become latency-limited and whether the instructions
2136 // outside this zone are resource or latency limited.
2137 //
2138 // The "dependent" latency is updated incrementally during scheduling as the
2139 // max height/depth of scheduled nodes minus the cycles since it was
2140 // scheduled:
2141 // DLat = max (N.depth - (CurrCycle - N.ReadyCycle) for N in Zone
2142 //
2143 // The "independent" latency is the max ready queue depth:
2144 // ILat = max N.depth for N in Available|Pending
2145 //
2146 // RemainingLatency is the greater of independent and dependent latency.
2147 unsigned RemLatency = CurrZone.getDependentLatency();
2148 RemLatency = std::max(RemLatency,
2149 CurrZone.findMaxLatency(CurrZone.Available.elements()));
2150 RemLatency = std::max(RemLatency,
2151 CurrZone.findMaxLatency(CurrZone.Pending.elements()));
2152
2153 // Compute the critical resource outside the zone.
2154 unsigned OtherCritIdx = 0;
2155 unsigned OtherCount =
2156 OtherZone ? OtherZone->getOtherResourceCount(OtherCritIdx) : 0;
2157
2158 bool OtherResLimited = false;
2159 if (SchedModel->hasInstrSchedModel()) {
2160 unsigned LFactor = SchedModel->getLatencyFactor();
2161 OtherResLimited = (int)(OtherCount - (RemLatency * LFactor)) > (int)LFactor;
2162 }
2163 // Schedule aggressively for latency in PostRA mode. We don't check for
2164 // acyclic latency during PostRA, and highly out-of-order processors will
2165 // skip PostRA scheduling.
2166 if (!OtherResLimited) {
2167 if (IsPostRA || (RemLatency + CurrZone.getCurrCycle() > Rem.CriticalPath)) {
2168 Policy.ReduceLatency |= true;
2169 DEBUG(dbgs() << " " << CurrZone.Available.getName()
2170 << " RemainingLatency " << RemLatency << " + "
2171 << CurrZone.getCurrCycle() << "c > CritPath "
2172 << Rem.CriticalPath << "\n");
2173 }
2174 }
2175 // If the same resource is limiting inside and outside the zone, do nothing.
2176 if (CurrZone.getZoneCritResIdx() == OtherCritIdx)
2177 return;
2178
2179 DEBUG(
2180 if (CurrZone.isResourceLimited()) {
2181 dbgs() << " " << CurrZone.Available.getName() << " ResourceLimited: "
2182 << SchedModel->getResourceName(CurrZone.getZoneCritResIdx())
2183 << "\n";
2184 }
2185 if (OtherResLimited)
2186 dbgs() << " RemainingLimit: "
2187 << SchedModel->getResourceName(OtherCritIdx) << "\n";
2188 if (!CurrZone.isResourceLimited() && !OtherResLimited)
2189 dbgs() << " Latency limited both directions.\n");
2190
2191 if (CurrZone.isResourceLimited() && !Policy.ReduceResIdx)
2192 Policy.ReduceResIdx = CurrZone.getZoneCritResIdx();
2193
2194 if (OtherResLimited)
2195 Policy.DemandResIdx = OtherCritIdx;
2196}
2197
2198#ifndef NDEBUG
2199const char *GenericSchedulerBase::getReasonStr(
2200 GenericSchedulerBase::CandReason Reason) {
2201 switch (Reason) {
2202 case NoCand: return "NOCAND ";
2203 case PhysRegCopy: return "PREG-COPY";
2204 case RegExcess: return "REG-EXCESS";
2205 case RegCritical: return "REG-CRIT ";
2206 case Stall: return "STALL ";
2207 case Cluster: return "CLUSTER ";
2208 case Weak: return "WEAK ";
2209 case RegMax: return "REG-MAX ";
2210 case ResourceReduce: return "RES-REDUCE";
2211 case ResourceDemand: return "RES-DEMAND";
2212 case TopDepthReduce: return "TOP-DEPTH ";
2213 case TopPathReduce: return "TOP-PATH ";
2214 case BotHeightReduce:return "BOT-HEIGHT";
2215 case BotPathReduce: return "BOT-PATH ";
2216 case NextDefUse: return "DEF-USE ";
2217 case NodeOrder: return "ORDER ";
2218 };
2219 llvm_unreachable("Unknown reason!");
2220}
2221
2222void GenericSchedulerBase::traceCandidate(const SchedCandidate &Cand) {
2223 PressureChange P;
2224 unsigned ResIdx = 0;
2225 unsigned Latency = 0;
2226 switch (Cand.Reason) {
2227 default:
2228 break;
2229 case RegExcess:
2230 P = Cand.RPDelta.Excess;
2231 break;
2232 case RegCritical:
2233 P = Cand.RPDelta.CriticalMax;
2234 break;
2235 case RegMax:
2236 P = Cand.RPDelta.CurrentMax;
2237 break;
2238 case ResourceReduce:
2239 ResIdx = Cand.Policy.ReduceResIdx;
2240 break;
2241 case ResourceDemand:
2242 ResIdx = Cand.Policy.DemandResIdx;
2243 break;
2244 case TopDepthReduce:
2245 Latency = Cand.SU->getDepth();
2246 break;
2247 case TopPathReduce:
2248 Latency = Cand.SU->getHeight();
2249 break;
2250 case BotHeightReduce:
2251 Latency = Cand.SU->getHeight();
2252 break;
2253 case BotPathReduce:
2254 Latency = Cand.SU->getDepth();
2255 break;
2256 }
2257 dbgs() << " SU(" << Cand.SU->NodeNum << ") " << getReasonStr(Cand.Reason);
2258 if (P.isValid())
2259 dbgs() << " " << TRI->getRegPressureSetName(P.getPSet())
2260 << ":" << P.getUnitInc() << " ";
2261 else
2262 dbgs() << " ";
2263 if (ResIdx)
2264 dbgs() << " " << SchedModel->getProcResource(ResIdx)->Name << " ";
2265 else
2266 dbgs() << " ";
2267 if (Latency)
2268 dbgs() << " " << Latency << " cycles ";
2269 else
2270 dbgs() << " ";
2271 dbgs() << '\n';
2272}
2273#endif
2274
2275/// Return true if this heuristic determines order.
2276static bool tryLess(int TryVal, int CandVal,
2277 GenericSchedulerBase::SchedCandidate &TryCand,
2278 GenericSchedulerBase::SchedCandidate &Cand,
2279 GenericSchedulerBase::CandReason Reason) {
2280 if (TryVal < CandVal) {
2281 TryCand.Reason = Reason;
2282 return true;
2283 }
2284 if (TryVal > CandVal) {
2285 if (Cand.Reason > Reason)
2286 Cand.Reason = Reason;
2287 return true;
2288 }
2289 Cand.setRepeat(Reason);
2290 return false;
2291}
2292
2293static bool tryGreater(int TryVal, int CandVal,
2294 GenericSchedulerBase::SchedCandidate &TryCand,
2295 GenericSchedulerBase::SchedCandidate &Cand,
2296 GenericSchedulerBase::CandReason Reason) {
2297 if (TryVal > CandVal) {
2298 TryCand.Reason = Reason;
2299 return true;
2300 }
2301 if (TryVal < CandVal) {
2302 if (Cand.Reason > Reason)
2303 Cand.Reason = Reason;
2304 return true;
2305 }
2306 Cand.setRepeat(Reason);
2307 return false;
2308}
2309
2310static bool tryLatency(GenericSchedulerBase::SchedCandidate &TryCand,
2311 GenericSchedulerBase::SchedCandidate &Cand,
2312 SchedBoundary &Zone) {
2313 if (Zone.isTop()) {
2314 if (Cand.SU->getDepth() > Zone.getScheduledLatency()) {
2315 if (tryLess(TryCand.SU->getDepth(), Cand.SU->getDepth(),
2316 TryCand, Cand, GenericSchedulerBase::TopDepthReduce))
2317 return true;
2318 }
2319 if (tryGreater(TryCand.SU->getHeight(), Cand.SU->getHeight(),
2320 TryCand, Cand, GenericSchedulerBase::TopPathReduce))
2321 return true;
2322 }
2323 else {
2324 if (Cand.SU->getHeight() > Zone.getScheduledLatency()) {
2325 if (tryLess(TryCand.SU->getHeight(), Cand.SU->getHeight(),
2326 TryCand, Cand, GenericSchedulerBase::BotHeightReduce))
2327 return true;
2328 }
2329 if (tryGreater(TryCand.SU->getDepth(), Cand.SU->getDepth(),
2330 TryCand, Cand, GenericSchedulerBase::BotPathReduce))
2331 return true;
2332 }
2333 return false;
2334}
2335
2336static void tracePick(const GenericSchedulerBase::SchedCandidate &Cand,
2337 bool IsTop) {
2338 DEBUG(dbgs() << "Pick " << (IsTop ? "Top " : "Bot ")
2339 << GenericSchedulerBase::getReasonStr(Cand.Reason) << '\n');
2340}
2341
Stephen Hines36b56882014-04-23 16:57:46 -07002342void GenericScheduler::initialize(ScheduleDAGMI *dag) {
2343 assert(dag->hasVRegLiveness() &&
2344 "(PreRA)GenericScheduler needs vreg liveness");
2345 DAG = static_cast<ScheduleDAGMILive*>(dag);
2346 SchedModel = DAG->getSchedModel();
2347 TRI = DAG->TRI;
Andrew Trick3b87f622012-11-07 07:05:09 +00002348
Stephen Hines36b56882014-04-23 16:57:46 -07002349 Rem.init(DAG, SchedModel);
2350 Top.init(DAG, SchedModel, &Rem);
2351 Bot.init(DAG, SchedModel, &Rem);
2352
2353 // Initialize resource counts.
2354
2355 // Initialize the HazardRecognizers. If itineraries don't exist, are empty, or
2356 // are disabled, then these HazardRecs will be disabled.
2357 const InstrItineraryData *Itin = SchedModel->getInstrItineraries();
2358 const TargetMachine &TM = DAG->MF.getTarget();
2359 if (!Top.HazardRec) {
2360 Top.HazardRec =
2361 TM.getInstrInfo()->CreateTargetMIHazardRecognizer(Itin, DAG);
2362 }
2363 if (!Bot.HazardRec) {
2364 Bot.HazardRec =
2365 TM.getInstrInfo()->CreateTargetMIHazardRecognizer(Itin, DAG);
2366 }
Andrew Trick3b87f622012-11-07 07:05:09 +00002367}
2368
Andrew Trick38e61122013-09-06 17:32:34 +00002369/// Initialize the per-region scheduling policy.
Andrew Trick70e0b042013-09-19 23:10:59 +00002370void GenericScheduler::initPolicy(MachineBasicBlock::iterator Begin,
Stephen Hines36b56882014-04-23 16:57:46 -07002371 MachineBasicBlock::iterator End,
2372 unsigned NumRegionInstrs) {
Andrew Trick38e61122013-09-06 17:32:34 +00002373 const TargetMachine &TM = Context->MF->getTarget();
Stephen Hines36b56882014-04-23 16:57:46 -07002374 const TargetLowering *TLI = TM.getTargetLowering();
Andrew Trick16bb45c2013-09-04 21:00:11 +00002375
Andrew Trick38e61122013-09-06 17:32:34 +00002376 // Avoid setting up the register pressure tracker for small regions to save
2377 // compile time. As a rough heuristic, only track pressure when the number of
2378 // schedulable instructions exceeds half the integer register file.
Stephen Hines36b56882014-04-23 16:57:46 -07002379 RegionPolicy.ShouldTrackPressure = true;
2380 for (unsigned VT = MVT::i32; VT > (unsigned)MVT::i1; --VT) {
2381 MVT::SimpleValueType LegalIntVT = (MVT::SimpleValueType)VT;
2382 if (TLI->isTypeLegal(LegalIntVT)) {
2383 unsigned NIntRegs = Context->RegClassInfo->getNumAllocatableRegs(
2384 TLI->getRegClassFor(LegalIntVT));
2385 RegionPolicy.ShouldTrackPressure = NumRegionInstrs > (NIntRegs / 2);
2386 }
2387 }
Andrew Trick38e61122013-09-06 17:32:34 +00002388
2389 // For generic targets, we default to bottom-up, because it's simpler and more
2390 // compile-time optimizations have been implemented in that direction.
2391 RegionPolicy.OnlyBottomUp = true;
2392
2393 // Allow the subtarget to override default policy.
2394 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>();
2395 ST.overrideSchedPolicy(RegionPolicy, Begin, End, NumRegionInstrs);
2396
2397 // After subtarget overrides, apply command line options.
2398 if (!EnableRegPressure)
2399 RegionPolicy.ShouldTrackPressure = false;
2400
2401 // Check -misched-topdown/bottomup can force or unforce scheduling direction.
2402 // e.g. -misched-bottomup=false allows scheduling in both directions.
2403 assert((!ForceTopDown || !ForceBottomUp) &&
2404 "-misched-topdown incompatible with -misched-bottomup");
2405 if (ForceBottomUp.getNumOccurrences() > 0) {
2406 RegionPolicy.OnlyBottomUp = ForceBottomUp;
2407 if (RegionPolicy.OnlyBottomUp)
2408 RegionPolicy.OnlyTopDown = false;
2409 }
2410 if (ForceTopDown.getNumOccurrences() > 0) {
2411 RegionPolicy.OnlyTopDown = ForceTopDown;
2412 if (RegionPolicy.OnlyTopDown)
2413 RegionPolicy.OnlyBottomUp = false;
2414 }
Andrew Trick16bb45c2013-09-04 21:00:11 +00002415}
2416
Andrew Trick851bb2c2013-08-29 18:04:49 +00002417/// Set IsAcyclicLatencyLimited if the acyclic path is longer than the cyclic
2418/// critical path by more cycles than it takes to drain the instruction buffer.
2419/// We estimate an upper bounds on in-flight instructions as:
2420///
2421/// CyclesPerIteration = max( CyclicPath, Loop-Resource-Height )
2422/// InFlightIterations = AcyclicPath / CyclesPerIteration
2423/// InFlightResources = InFlightIterations * LoopResources
2424///
2425/// TODO: Check execution resources in addition to IssueCount.
Andrew Trick70e0b042013-09-19 23:10:59 +00002426void GenericScheduler::checkAcyclicLatency() {
Andrew Trickea574332013-08-23 17:48:43 +00002427 if (Rem.CyclicCritPath == 0 || Rem.CyclicCritPath >= Rem.CriticalPath)
2428 return;
2429
Andrew Trick851bb2c2013-08-29 18:04:49 +00002430 // Scaled number of cycles per loop iteration.
2431 unsigned IterCount =
2432 std::max(Rem.CyclicCritPath * SchedModel->getLatencyFactor(),
2433 Rem.RemIssueCount);
2434 // Scaled acyclic critical path.
2435 unsigned AcyclicCount = Rem.CriticalPath * SchedModel->getLatencyFactor();
2436 // InFlightCount = (AcyclicPath / IterCycles) * InstrPerLoop
2437 unsigned InFlightCount =
2438 (AcyclicCount * Rem.RemIssueCount + IterCount-1) / IterCount;
Andrew Trickea574332013-08-23 17:48:43 +00002439 unsigned BufferLimit =
2440 SchedModel->getMicroOpBufferSize() * SchedModel->getMicroOpFactor();
Andrew Trickea574332013-08-23 17:48:43 +00002441
Andrew Trick851bb2c2013-08-29 18:04:49 +00002442 Rem.IsAcyclicLatencyLimited = InFlightCount > BufferLimit;
2443
2444 DEBUG(dbgs() << "IssueCycles="
2445 << Rem.RemIssueCount / SchedModel->getLatencyFactor() << "c "
2446 << "IterCycles=" << IterCount / SchedModel->getLatencyFactor()
2447 << "c NumIters=" << (AcyclicCount + IterCount-1) / IterCount
2448 << " InFlight=" << InFlightCount / SchedModel->getMicroOpFactor()
2449 << "m BufferLim=" << SchedModel->getMicroOpBufferSize() << "m\n";
Andrew Trickea574332013-08-23 17:48:43 +00002450 if (Rem.IsAcyclicLatencyLimited)
2451 dbgs() << " ACYCLIC LATENCY LIMIT\n");
2452}
2453
Andrew Trick70e0b042013-09-19 23:10:59 +00002454void GenericScheduler::registerRoots() {
Andrew Trick3b87f622012-11-07 07:05:09 +00002455 Rem.CriticalPath = DAG->ExitSU.getDepth();
Andrew Trickea574332013-08-23 17:48:43 +00002456
Andrew Trick3b87f622012-11-07 07:05:09 +00002457 // Some roots may not feed into ExitSU. Check all of them in case.
2458 for (std::vector<SUnit*>::const_iterator
2459 I = Bot.Available.begin(), E = Bot.Available.end(); I != E; ++I) {
2460 if ((*I)->getDepth() > Rem.CriticalPath)
2461 Rem.CriticalPath = (*I)->getDepth();
2462 }
2463 DEBUG(dbgs() << "Critical Path: " << Rem.CriticalPath << '\n');
Andrew Trick851bb2c2013-08-29 18:04:49 +00002464
2465 if (EnableCyclicPath) {
2466 Rem.CyclicCritPath = DAG->computeCyclicCriticalPath();
2467 checkAcyclicLatency();
2468 }
Andrew Trick3b87f622012-11-07 07:05:09 +00002469}
2470
Andrew Trick4c60b8a2013-08-30 03:49:48 +00002471static bool tryPressure(const PressureChange &TryP,
2472 const PressureChange &CandP,
Stephen Hines36b56882014-04-23 16:57:46 -07002473 GenericSchedulerBase::SchedCandidate &TryCand,
2474 GenericSchedulerBase::SchedCandidate &Cand,
2475 GenericSchedulerBase::CandReason Reason) {
Andrew Trickda6fc152013-08-30 04:27:29 +00002476 int TryRank = TryP.getPSetOrMax();
2477 int CandRank = CandP.getPSetOrMax();
2478 // If both candidates affect the same set, go with the smallest increase.
2479 if (TryRank == CandRank) {
2480 return tryLess(TryP.getUnitInc(), CandP.getUnitInc(), TryCand, Cand,
2481 Reason);
Andrew Trick13372882013-07-25 07:26:35 +00002482 }
Andrew Trickda6fc152013-08-30 04:27:29 +00002483 // If one candidate decreases and the other increases, go with it.
2484 // Invalid candidates have UnitInc==0.
2485 if (tryLess(TryP.getUnitInc() < 0, CandP.getUnitInc() < 0, TryCand, Cand,
2486 Reason)) {
2487 return true;
2488 }
Andrew Trick13372882013-07-25 07:26:35 +00002489 // If the candidates are decreasing pressure, reverse priority.
Andrew Trick4c60b8a2013-08-30 03:49:48 +00002490 if (TryP.getUnitInc() < 0)
Andrew Trick13372882013-07-25 07:26:35 +00002491 std::swap(TryRank, CandRank);
2492 return tryGreater(TryRank, CandRank, TryCand, Cand, Reason);
2493}
2494
Andrew Trick9b5caaa2012-11-12 19:40:10 +00002495static unsigned getWeakLeft(const SUnit *SU, bool isTop) {
2496 return (isTop) ? SU->WeakPredsLeft : SU->WeakSuccsLeft;
2497}
2498
Andrew Trick4392f0f2013-04-13 06:07:40 +00002499/// Minimize physical register live ranges. Regalloc wants them adjacent to
2500/// their physreg def/use.
2501///
2502/// FIXME: This is an unnecessary check on the critical path. Most are root/leaf
2503/// copies which can be prescheduled. The rest (e.g. x86 MUL) could be bundled
2504/// with the operation that produces or consumes the physreg. We'll do this when
2505/// regalloc has support for parallel copies.
2506static int biasPhysRegCopy(const SUnit *SU, bool isTop) {
2507 const MachineInstr *MI = SU->getInstr();
2508 if (!MI->isCopy())
2509 return 0;
2510
2511 unsigned ScheduledOper = isTop ? 1 : 0;
2512 unsigned UnscheduledOper = isTop ? 0 : 1;
2513 // If we have already scheduled the physreg produce/consumer, immediately
2514 // schedule the copy.
2515 if (TargetRegisterInfo::isPhysicalRegister(
2516 MI->getOperand(ScheduledOper).getReg()))
2517 return 1;
2518 // If the physreg is at the boundary, defer it. Otherwise schedule it
2519 // immediately to free the dependent. We can hoist the copy later.
2520 bool AtBoundary = isTop ? !SU->NumSuccsLeft : !SU->NumPredsLeft;
2521 if (TargetRegisterInfo::isPhysicalRegister(
2522 MI->getOperand(UnscheduledOper).getReg()))
2523 return AtBoundary ? -1 : 1;
2524 return 0;
2525}
2526
Andrew Trick3b87f622012-11-07 07:05:09 +00002527/// Apply a set of heursitics to a new candidate. Heuristics are currently
2528/// hierarchical. This may be more efficient than a graduated cost model because
2529/// we don't need to evaluate all aspects of the model for each node in the
2530/// queue. But it's really done to make the heuristics easier to debug and
2531/// statistically analyze.
2532///
2533/// \param Cand provides the policy and current best candidate.
2534/// \param TryCand refers to the next SUnit candidate, otherwise uninitialized.
2535/// \param Zone describes the scheduled zone that we are extending.
2536/// \param RPTracker describes reg pressure within the scheduled zone.
2537/// \param TempTracker is a scratch pressure tracker to reuse in queries.
Andrew Trick70e0b042013-09-19 23:10:59 +00002538void GenericScheduler::tryCandidate(SchedCandidate &Cand,
Stephen Hines36b56882014-04-23 16:57:46 -07002539 SchedCandidate &TryCand,
2540 SchedBoundary &Zone,
2541 const RegPressureTracker &RPTracker,
2542 RegPressureTracker &TempTracker) {
Andrew Trick3b87f622012-11-07 07:05:09 +00002543
Andrew Trick16bb45c2013-09-04 21:00:11 +00002544 if (DAG->isTrackingPressure()) {
Andrew Trick40b52bb2013-09-04 21:00:02 +00002545 // Always initialize TryCand's RPDelta.
2546 if (Zone.isTop()) {
2547 TempTracker.getMaxDownwardPressureDelta(
Andrew Trick4c60b8a2013-08-30 03:49:48 +00002548 TryCand.SU->getInstr(),
Andrew Trick4c60b8a2013-08-30 03:49:48 +00002549 TryCand.RPDelta,
2550 DAG->getRegionCriticalPSets(),
2551 DAG->getRegPressure().MaxSetPressure);
2552 }
2553 else {
Andrew Trick40b52bb2013-09-04 21:00:02 +00002554 if (VerifyScheduling) {
2555 TempTracker.getMaxUpwardPressureDelta(
2556 TryCand.SU->getInstr(),
2557 &DAG->getPressureDiff(TryCand.SU),
2558 TryCand.RPDelta,
2559 DAG->getRegionCriticalPSets(),
2560 DAG->getRegPressure().MaxSetPressure);
2561 }
2562 else {
2563 RPTracker.getUpwardPressureDelta(
2564 TryCand.SU->getInstr(),
2565 DAG->getPressureDiff(TryCand.SU),
2566 TryCand.RPDelta,
2567 DAG->getRegionCriticalPSets(),
2568 DAG->getRegPressure().MaxSetPressure);
2569 }
Andrew Trick4c60b8a2013-08-30 03:49:48 +00002570 }
2571 }
Andrew Trick6bf0c6c2013-09-06 17:32:44 +00002572 DEBUG(if (TryCand.RPDelta.Excess.isValid())
2573 dbgs() << " SU(" << TryCand.SU->NodeNum << ") "
2574 << TRI->getRegPressureSetName(TryCand.RPDelta.Excess.getPSet())
2575 << ":" << TryCand.RPDelta.Excess.getUnitInc() << "\n");
Andrew Trick3b87f622012-11-07 07:05:09 +00002576
2577 // Initialize the candidate if needed.
2578 if (!Cand.isValid()) {
2579 TryCand.Reason = NodeOrder;
2580 return;
2581 }
Andrew Trick4392f0f2013-04-13 06:07:40 +00002582
2583 if (tryGreater(biasPhysRegCopy(TryCand.SU, Zone.isTop()),
2584 biasPhysRegCopy(Cand.SU, Zone.isTop()),
2585 TryCand, Cand, PhysRegCopy))
2586 return;
2587
Andrew Trick13372882013-07-25 07:26:35 +00002588 // Avoid exceeding the target's limit. If signed PSetID is negative, it is
2589 // invalid; convert it to INT_MAX to give it lowest priority.
Andrew Trick16bb45c2013-09-04 21:00:11 +00002590 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.Excess,
2591 Cand.RPDelta.Excess,
2592 TryCand, Cand, RegExcess))
Andrew Trick3b87f622012-11-07 07:05:09 +00002593 return;
Andrew Trick3b87f622012-11-07 07:05:09 +00002594
2595 // Avoid increasing the max critical pressure in the scheduled region.
Andrew Trick16bb45c2013-09-04 21:00:11 +00002596 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.CriticalMax,
2597 Cand.RPDelta.CriticalMax,
2598 TryCand, Cand, RegCritical))
Andrew Trick3b87f622012-11-07 07:05:09 +00002599 return;
Andrew Trick3b87f622012-11-07 07:05:09 +00002600
Andrew Trickf9c2fa82013-09-06 17:32:36 +00002601 // For loops that are acyclic path limited, aggressively schedule for latency.
Andrew Trickee50a462013-09-09 22:28:08 +00002602 // This can result in very long dependence chains scheduled in sequence, so
2603 // once every cycle (when CurrMOps == 0), switch to normal heuristics.
Stephen Hines36b56882014-04-23 16:57:46 -07002604 if (Rem.IsAcyclicLatencyLimited && !Zone.getCurrMOps()
Andrew Trickee50a462013-09-09 22:28:08 +00002605 && tryLatency(TryCand, Cand, Zone))
Andrew Trickf9c2fa82013-09-06 17:32:36 +00002606 return;
2607
Stephen Hines36b56882014-04-23 16:57:46 -07002608 // Prioritize instructions that read unbuffered resources by stall cycles.
2609 if (tryLess(Zone.getLatencyStallCycles(TryCand.SU),
2610 Zone.getLatencyStallCycles(Cand.SU), TryCand, Cand, Stall))
2611 return;
2612
Andrew Trick9b5caaa2012-11-12 19:40:10 +00002613 // Keep clustered nodes together to encourage downstream peephole
2614 // optimizations which may reduce resource requirements.
2615 //
2616 // This is a best effort to set things up for a post-RA pass. Optimizations
2617 // like generating loads of multiple registers should ideally be done within
2618 // the scheduler pass by combining the loads during DAG postprocessing.
2619 const SUnit *NextClusterSU =
2620 Zone.isTop() ? DAG->getNextClusterSucc() : DAG->getNextClusterPred();
2621 if (tryGreater(TryCand.SU == NextClusterSU, Cand.SU == NextClusterSU,
2622 TryCand, Cand, Cluster))
2623 return;
Andrew Tricke38afe12013-04-24 15:54:43 +00002624
2625 // Weak edges are for clustering and other constraints.
Andrew Trick9b5caaa2012-11-12 19:40:10 +00002626 if (tryLess(getWeakLeft(TryCand.SU, Zone.isTop()),
2627 getWeakLeft(Cand.SU, Zone.isTop()),
Andrew Tricke38afe12013-04-24 15:54:43 +00002628 TryCand, Cand, Weak)) {
Andrew Trick9b5caaa2012-11-12 19:40:10 +00002629 return;
2630 }
Andrew Tricka626f502013-06-17 21:45:13 +00002631 // Avoid increasing the max pressure of the entire region.
Andrew Trick16bb45c2013-09-04 21:00:11 +00002632 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.CurrentMax,
2633 Cand.RPDelta.CurrentMax,
2634 TryCand, Cand, RegMax))
Andrew Tricka626f502013-06-17 21:45:13 +00002635 return;
2636
Andrew Trick3b87f622012-11-07 07:05:09 +00002637 // Avoid critical resource consumption and balance the schedule.
2638 TryCand.initResourceDelta(DAG, SchedModel);
2639 if (tryLess(TryCand.ResDelta.CritResources, Cand.ResDelta.CritResources,
2640 TryCand, Cand, ResourceReduce))
2641 return;
2642 if (tryGreater(TryCand.ResDelta.DemandedResources,
2643 Cand.ResDelta.DemandedResources,
2644 TryCand, Cand, ResourceDemand))
2645 return;
2646
2647 // Avoid serializing long latency dependence chains.
Andrew Trickea574332013-08-23 17:48:43 +00002648 // For acyclic path limited loops, latency was already checked above.
2649 if (Cand.Policy.ReduceLatency && !Rem.IsAcyclicLatencyLimited
2650 && tryLatency(TryCand, Cand, Zone)) {
2651 return;
Andrew Trick3b87f622012-11-07 07:05:09 +00002652 }
2653
Andrew Trick3b87f622012-11-07 07:05:09 +00002654 // Prefer immediate defs/users of the last scheduled instruction. This is a
Andrew Trickfa989e72013-06-15 05:39:19 +00002655 // local pressure avoidance strategy that also makes the machine code
2656 // readable.
Stephen Hines36b56882014-04-23 16:57:46 -07002657 if (tryGreater(Zone.isNextSU(TryCand.SU), Zone.isNextSU(Cand.SU),
Andrew Trick9b5caaa2012-11-12 19:40:10 +00002658 TryCand, Cand, NextDefUse))
Andrew Trick3b87f622012-11-07 07:05:09 +00002659 return;
Andrew Trick9b5caaa2012-11-12 19:40:10 +00002660
Andrew Trick3b87f622012-11-07 07:05:09 +00002661 // Fall through to original instruction order.
2662 if ((Zone.isTop() && TryCand.SU->NodeNum < Cand.SU->NodeNum)
2663 || (!Zone.isTop() && TryCand.SU->NodeNum > Cand.SU->NodeNum)) {
2664 TryCand.Reason = NodeOrder;
2665 }
2666}
Andrew Trick28ebc892012-05-10 21:06:19 +00002667
Andrew Trick6bf0c6c2013-09-06 17:32:44 +00002668/// Pick the best candidate from the queue.
Andrew Trick7196a8f2012-05-10 21:06:16 +00002669///
2670/// TODO: getMaxPressureDelta results can be mostly cached for each SUnit during
2671/// DAG building. To adjust for the current scheduling location we need to
2672/// maintain the number of vreg uses remaining to be top-scheduled.
Andrew Trick70e0b042013-09-19 23:10:59 +00002673void GenericScheduler::pickNodeFromQueue(SchedBoundary &Zone,
Stephen Hines36b56882014-04-23 16:57:46 -07002674 const RegPressureTracker &RPTracker,
2675 SchedCandidate &Cand) {
Andrew Trick3b87f622012-11-07 07:05:09 +00002676 ReadyQueue &Q = Zone.Available;
2677
Andrew Trickf3234242012-05-24 22:11:12 +00002678 DEBUG(Q.dump());
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002679
Andrew Trick7196a8f2012-05-10 21:06:16 +00002680 // getMaxPressureDelta temporarily modifies the tracker.
2681 RegPressureTracker &TempTracker = const_cast<RegPressureTracker&>(RPTracker);
2682
Andrew Trick8c2d9212012-05-24 22:11:03 +00002683 for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) {
Andrew Trick7196a8f2012-05-10 21:06:16 +00002684
Andrew Trick3b87f622012-11-07 07:05:09 +00002685 SchedCandidate TryCand(Cand.Policy);
2686 TryCand.SU = *I;
2687 tryCandidate(Cand, TryCand, Zone, RPTracker, TempTracker);
2688 if (TryCand.Reason != NoCand) {
2689 // Initialize resource delta if needed in case future heuristics query it.
2690 if (TryCand.ResDelta == SchedResourceDelta())
2691 TryCand.initResourceDelta(DAG, SchedModel);
2692 Cand.setBest(TryCand);
Andrew Trick11189f72013-04-05 00:31:29 +00002693 DEBUG(traceCandidate(Cand));
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002694 }
Andrew Trick7196a8f2012-05-10 21:06:16 +00002695 }
Andrew Trick3b87f622012-11-07 07:05:09 +00002696}
2697
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002698/// Pick the best candidate node from either the top or bottom queue.
Andrew Trick70e0b042013-09-19 23:10:59 +00002699SUnit *GenericScheduler::pickNodeBidirectional(bool &IsTopNode) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002700 // Schedule as far as possible in the direction of no choice. This is most
2701 // efficient, but also provides the best heuristics for CriticalPSets.
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002702 if (SUnit *SU = Bot.pickOnlyChoice()) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002703 IsTopNode = false;
Andrew Trickfa989e72013-06-15 05:39:19 +00002704 DEBUG(dbgs() << "Pick Bot NOCAND\n");
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002705 return SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002706 }
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002707 if (SUnit *SU = Top.pickOnlyChoice()) {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002708 IsTopNode = true;
Andrew Trickfa989e72013-06-15 05:39:19 +00002709 DEBUG(dbgs() << "Pick Top NOCAND\n");
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002710 return SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002711 }
Andrew Trick3b87f622012-11-07 07:05:09 +00002712 CandPolicy NoPolicy;
2713 SchedCandidate BotCand(NoPolicy);
2714 SchedCandidate TopCand(NoPolicy);
Stephen Hines36b56882014-04-23 16:57:46 -07002715 // Set the bottom-up policy based on the state of the current bottom zone and
2716 // the instructions outside the zone, including the top zone.
2717 setPolicy(BotCand.Policy, /*IsPostRA=*/false, Bot, &Top);
2718 // Set the top-down policy based on the state of the current top zone and
2719 // the instructions outside the zone, including the bottom zone.
2720 setPolicy(TopCand.Policy, /*IsPostRA=*/false, Top, &Bot);
Andrew Trick3b87f622012-11-07 07:05:09 +00002721
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002722 // Prefer bottom scheduling when heuristics are silent.
Andrew Trick3b87f622012-11-07 07:05:09 +00002723 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand);
2724 assert(BotCand.Reason != NoCand && "failed to find the first candidate");
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002725
2726 // If either Q has a single candidate that provides the least increase in
2727 // Excess pressure, we can immediately schedule from that Q.
2728 //
2729 // RegionCriticalPSets summarizes the pressure within the scheduled region and
2730 // affects picking from either Q. If scheduling in one direction must
2731 // increase pressure for one of the excess PSets, then schedule in that
2732 // direction first to provide more freedom in the other direction.
Andrew Tricke52d5022013-06-17 21:45:05 +00002733 if ((BotCand.Reason == RegExcess && !BotCand.isRepeat(RegExcess))
2734 || (BotCand.Reason == RegCritical
2735 && !BotCand.isRepeat(RegCritical)))
2736 {
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002737 IsTopNode = false;
Andrew Trick3b87f622012-11-07 07:05:09 +00002738 tracePick(BotCand, IsTopNode);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002739 return BotCand.SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002740 }
2741 // Check if the top Q has a better candidate.
Andrew Trick3b87f622012-11-07 07:05:09 +00002742 pickNodeFromQueue(Top, DAG->getTopRPTracker(), TopCand);
2743 assert(TopCand.Reason != NoCand && "failed to find the first candidate");
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002744
Andrew Tricke52d5022013-06-17 21:45:05 +00002745 // Choose the queue with the most important (lowest enum) reason.
Andrew Trick3b87f622012-11-07 07:05:09 +00002746 if (TopCand.Reason < BotCand.Reason) {
2747 IsTopNode = true;
2748 tracePick(TopCand, IsTopNode);
2749 return TopCand.SU;
2750 }
Andrew Tricke52d5022013-06-17 21:45:05 +00002751 // Otherwise prefer the bottom candidate, in node order if all else failed.
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002752 IsTopNode = false;
Andrew Trick3b87f622012-11-07 07:05:09 +00002753 tracePick(BotCand, IsTopNode);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002754 return BotCand.SU;
Andrew Trick73a0d8e2012-05-17 18:35:10 +00002755}
2756
2757/// Pick the best node to balance the schedule. Implements MachineSchedStrategy.
Andrew Trick70e0b042013-09-19 23:10:59 +00002758SUnit *GenericScheduler::pickNode(bool &IsTopNode) {
Andrew Trick7196a8f2012-05-10 21:06:16 +00002759 if (DAG->top() == DAG->bottom()) {
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002760 assert(Top.Available.empty() && Top.Pending.empty() &&
2761 Bot.Available.empty() && Bot.Pending.empty() && "ReadyQ garbage");
Stephen Hinesdce4a402014-05-29 02:49:00 -07002762 return nullptr;
Andrew Trick7196a8f2012-05-10 21:06:16 +00002763 }
Andrew Trick7196a8f2012-05-10 21:06:16 +00002764 SUnit *SU;
Andrew Trick30c6ec22012-10-08 18:53:53 +00002765 do {
Andrew Trick38e61122013-09-06 17:32:34 +00002766 if (RegionPolicy.OnlyTopDown) {
Andrew Trick30c6ec22012-10-08 18:53:53 +00002767 SU = Top.pickOnlyChoice();
2768 if (!SU) {
Andrew Trick3b87f622012-11-07 07:05:09 +00002769 CandPolicy NoPolicy;
2770 SchedCandidate TopCand(NoPolicy);
2771 pickNodeFromQueue(Top, DAG->getTopRPTracker(), TopCand);
Andrew Trick85d7f0b2013-09-04 21:00:13 +00002772 assert(TopCand.Reason != NoCand && "failed to find a candidate");
Andrew Trickee5fd9c2013-09-04 21:00:16 +00002773 tracePick(TopCand, true);
Andrew Trick30c6ec22012-10-08 18:53:53 +00002774 SU = TopCand.SU;
2775 }
2776 IsTopNode = true;
Andrew Trick8ddd9d52012-05-24 23:11:17 +00002777 }
Andrew Trick38e61122013-09-06 17:32:34 +00002778 else if (RegionPolicy.OnlyBottomUp) {
Andrew Trick30c6ec22012-10-08 18:53:53 +00002779 SU = Bot.pickOnlyChoice();
2780 if (!SU) {
Andrew Trick3b87f622012-11-07 07:05:09 +00002781 CandPolicy NoPolicy;
2782 SchedCandidate BotCand(NoPolicy);
2783 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand);
Andrew Trick85d7f0b2013-09-04 21:00:13 +00002784 assert(BotCand.Reason != NoCand && "failed to find a candidate");
Andrew Trickee5fd9c2013-09-04 21:00:16 +00002785 tracePick(BotCand, false);
Andrew Trick30c6ec22012-10-08 18:53:53 +00002786 SU = BotCand.SU;
2787 }
2788 IsTopNode = false;
Andrew Trick8ddd9d52012-05-24 23:11:17 +00002789 }
Andrew Trick30c6ec22012-10-08 18:53:53 +00002790 else {
Andrew Trick3b87f622012-11-07 07:05:09 +00002791 SU = pickNodeBidirectional(IsTopNode);
Andrew Trick30c6ec22012-10-08 18:53:53 +00002792 }
2793 } while (SU->isScheduled);
2794
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002795 if (SU->isTopReady())
2796 Top.removeReady(SU);
2797 if (SU->isBottomReady())
2798 Bot.removeReady(SU);
Andrew Trickc7a098f2012-05-25 02:02:39 +00002799
Andrew Trickbaedcd72013-04-13 06:07:49 +00002800 DEBUG(dbgs() << "Scheduling SU(" << SU->NodeNum << ") " << *SU->getInstr());
Andrew Trick7196a8f2012-05-10 21:06:16 +00002801 return SU;
2802}
2803
Andrew Trick70e0b042013-09-19 23:10:59 +00002804void GenericScheduler::reschedulePhysRegCopies(SUnit *SU, bool isTop) {
Andrew Trick4392f0f2013-04-13 06:07:40 +00002805
2806 MachineBasicBlock::iterator InsertPos = SU->getInstr();
2807 if (!isTop)
2808 ++InsertPos;
2809 SmallVectorImpl<SDep> &Deps = isTop ? SU->Preds : SU->Succs;
2810
2811 // Find already scheduled copies with a single physreg dependence and move
2812 // them just above the scheduled instruction.
2813 for (SmallVectorImpl<SDep>::iterator I = Deps.begin(), E = Deps.end();
2814 I != E; ++I) {
2815 if (I->getKind() != SDep::Data || !TRI->isPhysicalRegister(I->getReg()))
2816 continue;
2817 SUnit *DepSU = I->getSUnit();
2818 if (isTop ? DepSU->Succs.size() > 1 : DepSU->Preds.size() > 1)
2819 continue;
2820 MachineInstr *Copy = DepSU->getInstr();
2821 if (!Copy->isCopy())
2822 continue;
2823 DEBUG(dbgs() << " Rescheduling physreg copy ";
2824 I->getSUnit()->dump(DAG));
2825 DAG->moveInstruction(Copy, InsertPos);
2826 }
2827}
2828
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002829/// Update the scheduler's state after scheduling a node. This is the same node
Stephen Hines36b56882014-04-23 16:57:46 -07002830/// that was just returned by pickNode(). However, ScheduleDAGMILive needs to
2831/// update it's state based on the current cycle before MachineSchedStrategy
2832/// does.
Andrew Trick4392f0f2013-04-13 06:07:40 +00002833///
2834/// FIXME: Eventually, we may bundle physreg copies rather than rescheduling
2835/// them here. See comments in biasPhysRegCopy.
Andrew Trick70e0b042013-09-19 23:10:59 +00002836void GenericScheduler::schedNode(SUnit *SU, bool IsTopNode) {
Andrew Trickb7e02892012-06-05 21:11:27 +00002837 if (IsTopNode) {
Stephen Hines36b56882014-04-23 16:57:46 -07002838 SU->TopReadyCycle = std::max(SU->TopReadyCycle, Top.getCurrCycle());
Andrew Trick7f8c74c2012-06-29 03:23:22 +00002839 Top.bumpNode(SU);
Andrew Trick4392f0f2013-04-13 06:07:40 +00002840 if (SU->hasPhysRegUses)
2841 reschedulePhysRegCopies(SU, true);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002842 }
Andrew Trickb7e02892012-06-05 21:11:27 +00002843 else {
Stephen Hines36b56882014-04-23 16:57:46 -07002844 SU->BotReadyCycle = std::max(SU->BotReadyCycle, Bot.getCurrCycle());
Andrew Trick7f8c74c2012-06-29 03:23:22 +00002845 Bot.bumpNode(SU);
Andrew Trick4392f0f2013-04-13 06:07:40 +00002846 if (SU->hasPhysRegDefs)
2847 reschedulePhysRegCopies(SU, false);
Andrew Trick0a39d4e2012-05-24 22:11:09 +00002848 }
2849}
2850
Andrew Trick17d35e52012-03-14 04:00:41 +00002851/// Create the standard converging machine scheduler. This will be used as the
2852/// default scheduler if the target does not set a default.
Stephen Hines36b56882014-04-23 16:57:46 -07002853static ScheduleDAGInstrs *createGenericSchedLive(MachineSchedContext *C) {
Stephen Hinesdce4a402014-05-29 02:49:00 -07002854 ScheduleDAGMILive *DAG = new ScheduleDAGMILive(C, make_unique<GenericScheduler>(C));
Andrew Trick9b5caaa2012-11-12 19:40:10 +00002855 // Register DAG post-processors.
Andrew Tricke38afe12013-04-24 15:54:43 +00002856 //
2857 // FIXME: extend the mutation API to allow earlier mutations to instantiate
2858 // data and pass it to later mutations. Have a single mutation that gathers
2859 // the interesting nodes in one pass.
Stephen Hinesdce4a402014-05-29 02:49:00 -07002860 DAG->addMutation(make_unique<CopyConstrain>(DAG->TII, DAG->TRI));
Andrew Trickd1d0d372013-09-04 21:00:08 +00002861 if (EnableLoadCluster && DAG->TII->enableClusterLoads())
Stephen Hinesdce4a402014-05-29 02:49:00 -07002862 DAG->addMutation(make_unique<LoadClusterMutation>(DAG->TII, DAG->TRI));
Andrew Trick6996fd02012-11-12 19:52:20 +00002863 if (EnableMacroFusion)
Stephen Hinesdce4a402014-05-29 02:49:00 -07002864 DAG->addMutation(make_unique<MacroFusion>(DAG->TII));
Andrew Trick9b5caaa2012-11-12 19:40:10 +00002865 return DAG;
Andrew Trick42b7a712012-01-17 06:55:03 +00002866}
Stephen Hines36b56882014-04-23 16:57:46 -07002867
Andrew Trick42b7a712012-01-17 06:55:03 +00002868static MachineSchedRegistry
Andrew Trick70e0b042013-09-19 23:10:59 +00002869GenericSchedRegistry("converge", "Standard converging scheduler.",
Stephen Hines36b56882014-04-23 16:57:46 -07002870 createGenericSchedLive);
2871
2872//===----------------------------------------------------------------------===//
2873// PostGenericScheduler - Generic PostRA implementation of MachineSchedStrategy.
2874//===----------------------------------------------------------------------===//
2875
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -07002876void PostGenericScheduler::initialize(ScheduleDAGMI *Dag) {
2877 DAG = Dag;
2878 SchedModel = DAG->getSchedModel();
2879 TRI = DAG->TRI;
Stephen Hines36b56882014-04-23 16:57:46 -07002880
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -07002881 Rem.init(DAG, SchedModel);
2882 Top.init(DAG, SchedModel, &Rem);
2883 BotRoots.clear();
Stephen Hines36b56882014-04-23 16:57:46 -07002884
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -07002885 // Initialize the HazardRecognizers. If itineraries don't exist, are empty,
2886 // or are disabled, then these HazardRecs will be disabled.
2887 const InstrItineraryData *Itin = SchedModel->getInstrItineraries();
2888 const TargetMachine &TM = DAG->MF.getTarget();
2889 if (!Top.HazardRec) {
2890 Top.HazardRec =
2891 TM.getInstrInfo()->CreateTargetMIHazardRecognizer(Itin, DAG);
Stephen Hines36b56882014-04-23 16:57:46 -07002892 }
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -07002893}
Stephen Hines36b56882014-04-23 16:57:46 -07002894
Stephen Hines36b56882014-04-23 16:57:46 -07002895
2896void PostGenericScheduler::registerRoots() {
2897 Rem.CriticalPath = DAG->ExitSU.getDepth();
2898
2899 // Some roots may not feed into ExitSU. Check all of them in case.
2900 for (SmallVectorImpl<SUnit*>::const_iterator
2901 I = BotRoots.begin(), E = BotRoots.end(); I != E; ++I) {
2902 if ((*I)->getDepth() > Rem.CriticalPath)
2903 Rem.CriticalPath = (*I)->getDepth();
2904 }
2905 DEBUG(dbgs() << "Critical Path: " << Rem.CriticalPath << '\n');
2906}
2907
2908/// Apply a set of heursitics to a new candidate for PostRA scheduling.
2909///
2910/// \param Cand provides the policy and current best candidate.
2911/// \param TryCand refers to the next SUnit candidate, otherwise uninitialized.
2912void PostGenericScheduler::tryCandidate(SchedCandidate &Cand,
2913 SchedCandidate &TryCand) {
2914
2915 // Initialize the candidate if needed.
2916 if (!Cand.isValid()) {
2917 TryCand.Reason = NodeOrder;
2918 return;
2919 }
2920
2921 // Prioritize instructions that read unbuffered resources by stall cycles.
2922 if (tryLess(Top.getLatencyStallCycles(TryCand.SU),
2923 Top.getLatencyStallCycles(Cand.SU), TryCand, Cand, Stall))
2924 return;
2925
2926 // Avoid critical resource consumption and balance the schedule.
2927 if (tryLess(TryCand.ResDelta.CritResources, Cand.ResDelta.CritResources,
2928 TryCand, Cand, ResourceReduce))
2929 return;
2930 if (tryGreater(TryCand.ResDelta.DemandedResources,
2931 Cand.ResDelta.DemandedResources,
2932 TryCand, Cand, ResourceDemand))
2933 return;
2934
2935 // Avoid serializing long latency dependence chains.
2936 if (Cand.Policy.ReduceLatency && tryLatency(TryCand, Cand, Top)) {
2937 return;
2938 }
2939
2940 // Fall through to original instruction order.
2941 if (TryCand.SU->NodeNum < Cand.SU->NodeNum)
2942 TryCand.Reason = NodeOrder;
2943}
2944
2945void PostGenericScheduler::pickNodeFromQueue(SchedCandidate &Cand) {
2946 ReadyQueue &Q = Top.Available;
2947
2948 DEBUG(Q.dump());
2949
2950 for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) {
2951 SchedCandidate TryCand(Cand.Policy);
2952 TryCand.SU = *I;
2953 TryCand.initResourceDelta(DAG, SchedModel);
2954 tryCandidate(Cand, TryCand);
2955 if (TryCand.Reason != NoCand) {
2956 Cand.setBest(TryCand);
2957 DEBUG(traceCandidate(Cand));
2958 }
2959 }
2960}
2961
2962/// Pick the next node to schedule.
2963SUnit *PostGenericScheduler::pickNode(bool &IsTopNode) {
2964 if (DAG->top() == DAG->bottom()) {
2965 assert(Top.Available.empty() && Top.Pending.empty() && "ReadyQ garbage");
Stephen Hinesdce4a402014-05-29 02:49:00 -07002966 return nullptr;
Stephen Hines36b56882014-04-23 16:57:46 -07002967 }
2968 SUnit *SU;
2969 do {
2970 SU = Top.pickOnlyChoice();
2971 if (!SU) {
2972 CandPolicy NoPolicy;
2973 SchedCandidate TopCand(NoPolicy);
2974 // Set the top-down policy based on the state of the current top zone and
2975 // the instructions outside the zone, including the bottom zone.
Stephen Hinesdce4a402014-05-29 02:49:00 -07002976 setPolicy(TopCand.Policy, /*IsPostRA=*/true, Top, nullptr);
Stephen Hines36b56882014-04-23 16:57:46 -07002977 pickNodeFromQueue(TopCand);
2978 assert(TopCand.Reason != NoCand && "failed to find a candidate");
2979 tracePick(TopCand, true);
2980 SU = TopCand.SU;
2981 }
2982 } while (SU->isScheduled);
2983
2984 IsTopNode = true;
2985 Top.removeReady(SU);
2986
2987 DEBUG(dbgs() << "Scheduling SU(" << SU->NodeNum << ") " << *SU->getInstr());
2988 return SU;
2989}
2990
2991/// Called after ScheduleDAGMI has scheduled an instruction and updated
2992/// scheduled/remaining flags in the DAG nodes.
2993void PostGenericScheduler::schedNode(SUnit *SU, bool IsTopNode) {
2994 SU->TopReadyCycle = std::max(SU->TopReadyCycle, Top.getCurrCycle());
2995 Top.bumpNode(SU);
2996}
2997
2998/// Create a generic scheduler with no vreg liveness or DAG mutation passes.
2999static ScheduleDAGInstrs *createGenericSchedPostRA(MachineSchedContext *C) {
Stephen Hinesdce4a402014-05-29 02:49:00 -07003000 return new ScheduleDAGMI(C, make_unique<PostGenericScheduler>(C), /*IsPostRA=*/true);
Stephen Hines36b56882014-04-23 16:57:46 -07003001}
Andrew Trick42b7a712012-01-17 06:55:03 +00003002
3003//===----------------------------------------------------------------------===//
Andrew Trick1e94e982012-10-15 18:02:27 +00003004// ILP Scheduler. Currently for experimental analysis of heuristics.
3005//===----------------------------------------------------------------------===//
3006
3007namespace {
3008/// \brief Order nodes by the ILP metric.
3009struct ILPOrder {
Andrew Trick178f7d02013-01-25 04:01:04 +00003010 const SchedDFSResult *DFSResult;
3011 const BitVector *ScheduledTrees;
Andrew Trick1e94e982012-10-15 18:02:27 +00003012 bool MaximizeILP;
3013
Stephen Hinesdce4a402014-05-29 02:49:00 -07003014 ILPOrder(bool MaxILP)
3015 : DFSResult(nullptr), ScheduledTrees(nullptr), MaximizeILP(MaxILP) {}
Andrew Trick1e94e982012-10-15 18:02:27 +00003016
3017 /// \brief Apply a less-than relation on node priority.
Andrew Trick8b1496c2012-11-28 05:13:28 +00003018 ///
3019 /// (Return true if A comes after B in the Q.)
Andrew Trick1e94e982012-10-15 18:02:27 +00003020 bool operator()(const SUnit *A, const SUnit *B) const {
Andrew Trick8b1496c2012-11-28 05:13:28 +00003021 unsigned SchedTreeA = DFSResult->getSubtreeID(A);
3022 unsigned SchedTreeB = DFSResult->getSubtreeID(B);
3023 if (SchedTreeA != SchedTreeB) {
3024 // Unscheduled trees have lower priority.
3025 if (ScheduledTrees->test(SchedTreeA) != ScheduledTrees->test(SchedTreeB))
3026 return ScheduledTrees->test(SchedTreeB);
3027
3028 // Trees with shallower connections have have lower priority.
3029 if (DFSResult->getSubtreeLevel(SchedTreeA)
3030 != DFSResult->getSubtreeLevel(SchedTreeB)) {
3031 return DFSResult->getSubtreeLevel(SchedTreeA)
3032 < DFSResult->getSubtreeLevel(SchedTreeB);
3033 }
3034 }
Andrew Trick1e94e982012-10-15 18:02:27 +00003035 if (MaximizeILP)
Andrew Trick8b1496c2012-11-28 05:13:28 +00003036 return DFSResult->getILP(A) < DFSResult->getILP(B);
Andrew Trick1e94e982012-10-15 18:02:27 +00003037 else
Andrew Trick8b1496c2012-11-28 05:13:28 +00003038 return DFSResult->getILP(A) > DFSResult->getILP(B);
Andrew Trick1e94e982012-10-15 18:02:27 +00003039 }
3040};
3041
3042/// \brief Schedule based on the ILP metric.
3043class ILPScheduler : public MachineSchedStrategy {
Stephen Hines36b56882014-04-23 16:57:46 -07003044 ScheduleDAGMILive *DAG;
Andrew Trick1e94e982012-10-15 18:02:27 +00003045 ILPOrder Cmp;
3046
3047 std::vector<SUnit*> ReadyQ;
3048public:
Stephen Hinesdce4a402014-05-29 02:49:00 -07003049 ILPScheduler(bool MaximizeILP): DAG(nullptr), Cmp(MaximizeILP) {}
Andrew Trick1e94e982012-10-15 18:02:27 +00003050
Stephen Hines36b56882014-04-23 16:57:46 -07003051 void initialize(ScheduleDAGMI *dag) override {
3052 assert(dag->hasVRegLiveness() && "ILPScheduler needs vreg liveness");
3053 DAG = static_cast<ScheduleDAGMILive*>(dag);
Andrew Trick4e1fb182013-01-25 06:33:57 +00003054 DAG->computeDFSResult();
Andrew Trick178f7d02013-01-25 04:01:04 +00003055 Cmp.DFSResult = DAG->getDFSResult();
3056 Cmp.ScheduledTrees = &DAG->getScheduledTrees();
Andrew Trick1e94e982012-10-15 18:02:27 +00003057 ReadyQ.clear();
Andrew Trick1e94e982012-10-15 18:02:27 +00003058 }
3059
Stephen Hines36b56882014-04-23 16:57:46 -07003060 void registerRoots() override {
Benjamin Kramer5175fd92012-11-29 14:36:26 +00003061 // Restore the heap in ReadyQ with the updated DFS results.
3062 std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
Andrew Trick1e94e982012-10-15 18:02:27 +00003063 }
3064
3065 /// Implement MachineSchedStrategy interface.
3066 /// -----------------------------------------
3067
Andrew Trick8b1496c2012-11-28 05:13:28 +00003068 /// Callback to select the highest priority node from the ready Q.
Stephen Hines36b56882014-04-23 16:57:46 -07003069 SUnit *pickNode(bool &IsTopNode) override {
Stephen Hinesdce4a402014-05-29 02:49:00 -07003070 if (ReadyQ.empty()) return nullptr;
Matt Arsenault26c417b2013-03-21 00:57:21 +00003071 std::pop_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
Andrew Trick1e94e982012-10-15 18:02:27 +00003072 SUnit *SU = ReadyQ.back();
3073 ReadyQ.pop_back();
3074 IsTopNode = false;
Andrew Trickbaedcd72013-04-13 06:07:49 +00003075 DEBUG(dbgs() << "Pick node " << "SU(" << SU->NodeNum << ") "
Andrew Trick178f7d02013-01-25 04:01:04 +00003076 << " ILP: " << DAG->getDFSResult()->getILP(SU)
3077 << " Tree: " << DAG->getDFSResult()->getSubtreeID(SU) << " @"
3078 << DAG->getDFSResult()->getSubtreeLevel(
Andrew Trickbaedcd72013-04-13 06:07:49 +00003079 DAG->getDFSResult()->getSubtreeID(SU)) << '\n'
3080 << "Scheduling " << *SU->getInstr());
Andrew Trick1e94e982012-10-15 18:02:27 +00003081 return SU;
3082 }
3083
Andrew Trick178f7d02013-01-25 04:01:04 +00003084 /// \brief Scheduler callback to notify that a new subtree is scheduled.
Stephen Hines36b56882014-04-23 16:57:46 -07003085 void scheduleTree(unsigned SubtreeID) override {
Andrew Trick178f7d02013-01-25 04:01:04 +00003086 std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
3087 }
3088
Andrew Trick8b1496c2012-11-28 05:13:28 +00003089 /// Callback after a node is scheduled. Mark a newly scheduled tree, notify
3090 /// DFSResults, and resort the priority Q.
Stephen Hines36b56882014-04-23 16:57:46 -07003091 void schedNode(SUnit *SU, bool IsTopNode) override {
Andrew Trick8b1496c2012-11-28 05:13:28 +00003092 assert(!IsTopNode && "SchedDFSResult needs bottom-up");
Andrew Trick8b1496c2012-11-28 05:13:28 +00003093 }
Andrew Trick1e94e982012-10-15 18:02:27 +00003094
Stephen Hines36b56882014-04-23 16:57:46 -07003095 void releaseTopNode(SUnit *) override { /*only called for top roots*/ }
Andrew Trick1e94e982012-10-15 18:02:27 +00003096
Stephen Hines36b56882014-04-23 16:57:46 -07003097 void releaseBottomNode(SUnit *SU) override {
Andrew Trick1e94e982012-10-15 18:02:27 +00003098 ReadyQ.push_back(SU);
3099 std::push_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
3100 }
3101};
3102} // namespace
3103
3104static ScheduleDAGInstrs *createILPMaxScheduler(MachineSchedContext *C) {
Stephen Hinesdce4a402014-05-29 02:49:00 -07003105 return new ScheduleDAGMILive(C, make_unique<ILPScheduler>(true));
Andrew Trick1e94e982012-10-15 18:02:27 +00003106}
3107static ScheduleDAGInstrs *createILPMinScheduler(MachineSchedContext *C) {
Stephen Hinesdce4a402014-05-29 02:49:00 -07003108 return new ScheduleDAGMILive(C, make_unique<ILPScheduler>(false));
Andrew Trick1e94e982012-10-15 18:02:27 +00003109}
3110static MachineSchedRegistry ILPMaxRegistry(
3111 "ilpmax", "Schedule bottom-up for max ILP", createILPMaxScheduler);
3112static MachineSchedRegistry ILPMinRegistry(
3113 "ilpmin", "Schedule bottom-up for min ILP", createILPMinScheduler);
3114
3115//===----------------------------------------------------------------------===//
Andrew Trick5edf2f02012-01-14 02:17:06 +00003116// Machine Instruction Shuffler for Correctness Testing
3117//===----------------------------------------------------------------------===//
3118
Andrew Trick96f678f2012-01-13 06:30:30 +00003119#ifndef NDEBUG
3120namespace {
Andrew Trick17d35e52012-03-14 04:00:41 +00003121/// Apply a less-than relation on the node order, which corresponds to the
3122/// instruction order prior to scheduling. IsReverse implements greater-than.
3123template<bool IsReverse>
3124struct SUnitOrder {
Andrew Trickc6cf11b2012-01-17 06:55:07 +00003125 bool operator()(SUnit *A, SUnit *B) const {
Andrew Trick17d35e52012-03-14 04:00:41 +00003126 if (IsReverse)
3127 return A->NodeNum > B->NodeNum;
3128 else
3129 return A->NodeNum < B->NodeNum;
Andrew Trickc6cf11b2012-01-17 06:55:07 +00003130 }
3131};
3132
Andrew Trick96f678f2012-01-13 06:30:30 +00003133/// Reorder instructions as much as possible.
Andrew Trick17d35e52012-03-14 04:00:41 +00003134class InstructionShuffler : public MachineSchedStrategy {
3135 bool IsAlternating;
3136 bool IsTopDown;
3137
3138 // Using a less-than relation (SUnitOrder<false>) for the TopQ priority
3139 // gives nodes with a higher number higher priority causing the latest
3140 // instructions to be scheduled first.
3141 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<false> >
3142 TopQ;
3143 // When scheduling bottom-up, use greater-than as the queue priority.
3144 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<true> >
3145 BottomQ;
Andrew Trick96f678f2012-01-13 06:30:30 +00003146public:
Andrew Trick17d35e52012-03-14 04:00:41 +00003147 InstructionShuffler(bool alternate, bool topdown)
3148 : IsAlternating(alternate), IsTopDown(topdown) {}
Andrew Trick96f678f2012-01-13 06:30:30 +00003149
Stephen Hinesdce4a402014-05-29 02:49:00 -07003150 void initialize(ScheduleDAGMI*) override {
Andrew Trick17d35e52012-03-14 04:00:41 +00003151 TopQ.clear();
3152 BottomQ.clear();
3153 }
Andrew Trickc6cf11b2012-01-17 06:55:07 +00003154
Andrew Trick17d35e52012-03-14 04:00:41 +00003155 /// Implement MachineSchedStrategy interface.
3156 /// -----------------------------------------
3157
Stephen Hinesdce4a402014-05-29 02:49:00 -07003158 SUnit *pickNode(bool &IsTopNode) override {
Andrew Trick17d35e52012-03-14 04:00:41 +00003159 SUnit *SU;
3160 if (IsTopDown) {
3161 do {
Stephen Hinesdce4a402014-05-29 02:49:00 -07003162 if (TopQ.empty()) return nullptr;
Andrew Trick17d35e52012-03-14 04:00:41 +00003163 SU = TopQ.top();
3164 TopQ.pop();
3165 } while (SU->isScheduled);
3166 IsTopNode = true;
3167 }
3168 else {
3169 do {
Stephen Hinesdce4a402014-05-29 02:49:00 -07003170 if (BottomQ.empty()) return nullptr;
Andrew Trick17d35e52012-03-14 04:00:41 +00003171 SU = BottomQ.top();
3172 BottomQ.pop();
3173 } while (SU->isScheduled);
3174 IsTopNode = false;
3175 }
3176 if (IsAlternating)
3177 IsTopDown = !IsTopDown;
Andrew Trickc6cf11b2012-01-17 06:55:07 +00003178 return SU;
3179 }
3180
Stephen Hinesdce4a402014-05-29 02:49:00 -07003181 void schedNode(SUnit *SU, bool IsTopNode) override {}
Andrew Trick0a39d4e2012-05-24 22:11:09 +00003182
Stephen Hinesdce4a402014-05-29 02:49:00 -07003183 void releaseTopNode(SUnit *SU) override {
Andrew Trick17d35e52012-03-14 04:00:41 +00003184 TopQ.push(SU);
3185 }
Stephen Hinesdce4a402014-05-29 02:49:00 -07003186 void releaseBottomNode(SUnit *SU) override {
Andrew Trick17d35e52012-03-14 04:00:41 +00003187 BottomQ.push(SU);
Andrew Trick96f678f2012-01-13 06:30:30 +00003188 }
3189};
3190} // namespace
3191
Andrew Trickc174eaf2012-03-08 01:41:12 +00003192static ScheduleDAGInstrs *createInstructionShuffler(MachineSchedContext *C) {
Andrew Trick17d35e52012-03-14 04:00:41 +00003193 bool Alternate = !ForceTopDown && !ForceBottomUp;
3194 bool TopDown = !ForceBottomUp;
Benjamin Kramer689e0b42012-03-14 11:26:37 +00003195 assert((TopDown || !ForceTopDown) &&
Andrew Trick17d35e52012-03-14 04:00:41 +00003196 "-misched-topdown incompatible with -misched-bottomup");
Stephen Hinesdce4a402014-05-29 02:49:00 -07003197 return new ScheduleDAGMILive(C, make_unique<InstructionShuffler>(Alternate, TopDown));
Andrew Trick96f678f2012-01-13 06:30:30 +00003198}
Andrew Trick17d35e52012-03-14 04:00:41 +00003199static MachineSchedRegistry ShufflerRegistry(
3200 "shuffle", "Shuffle machine instructions alternating directions",
3201 createInstructionShuffler);
Andrew Trick96f678f2012-01-13 06:30:30 +00003202#endif // !NDEBUG
Andrew Trick30849792013-01-25 07:45:29 +00003203
3204//===----------------------------------------------------------------------===//
Stephen Hines36b56882014-04-23 16:57:46 -07003205// GraphWriter support for ScheduleDAGMILive.
Andrew Trick30849792013-01-25 07:45:29 +00003206//===----------------------------------------------------------------------===//
3207
3208#ifndef NDEBUG
3209namespace llvm {
3210
3211template<> struct GraphTraits<
3212 ScheduleDAGMI*> : public GraphTraits<ScheduleDAG*> {};
3213
3214template<>
3215struct DOTGraphTraits<ScheduleDAGMI*> : public DefaultDOTGraphTraits {
3216
3217 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
3218
3219 static std::string getGraphName(const ScheduleDAG *G) {
3220 return G->MF.getName();
3221 }
3222
3223 static bool renderGraphFromBottomUp() {
3224 return true;
3225 }
3226
3227 static bool isNodeHidden(const SUnit *Node) {
Andrew Trickda9f4412013-09-04 21:00:18 +00003228 return (Node->Preds.size() > 10 || Node->Succs.size() > 10);
Andrew Trick30849792013-01-25 07:45:29 +00003229 }
3230
3231 static bool hasNodeAddressLabel(const SUnit *Node,
3232 const ScheduleDAG *Graph) {
3233 return false;
3234 }
3235
3236 /// If you want to override the dot attributes printed for a particular
3237 /// edge, override this method.
3238 static std::string getEdgeAttributes(const SUnit *Node,
3239 SUnitIterator EI,
3240 const ScheduleDAG *Graph) {
3241 if (EI.isArtificialDep())
3242 return "color=cyan,style=dashed";
3243 if (EI.isCtrlDep())
3244 return "color=blue,style=dashed";
3245 return "";
3246 }
3247
3248 static std::string getNodeLabel(const SUnit *SU, const ScheduleDAG *G) {
3249 std::string Str;
3250 raw_string_ostream SS(Str);
Stephen Hines36b56882014-04-23 16:57:46 -07003251 const ScheduleDAGMI *DAG = static_cast<const ScheduleDAGMI*>(G);
3252 const SchedDFSResult *DFS = DAG->hasVRegLiveness() ?
Stephen Hinesdce4a402014-05-29 02:49:00 -07003253 static_cast<const ScheduleDAGMILive*>(G)->getDFSResult() : nullptr;
Andrew Trickfd303122013-09-06 17:32:42 +00003254 SS << "SU:" << SU->NodeNum;
3255 if (DFS)
3256 SS << " I:" << DFS->getNumInstrs(SU);
Andrew Trick30849792013-01-25 07:45:29 +00003257 return SS.str();
3258 }
3259 static std::string getNodeDescription(const SUnit *SU, const ScheduleDAG *G) {
3260 return G->getGraphNodeLabel(SU);
3261 }
3262
Stephen Hines36b56882014-04-23 16:57:46 -07003263 static std::string getNodeAttributes(const SUnit *N, const ScheduleDAG *G) {
Andrew Trick30849792013-01-25 07:45:29 +00003264 std::string Str("shape=Mrecord");
Stephen Hines36b56882014-04-23 16:57:46 -07003265 const ScheduleDAGMI *DAG = static_cast<const ScheduleDAGMI*>(G);
3266 const SchedDFSResult *DFS = DAG->hasVRegLiveness() ?
Stephen Hinesdce4a402014-05-29 02:49:00 -07003267 static_cast<const ScheduleDAGMILive*>(G)->getDFSResult() : nullptr;
Andrew Trick30849792013-01-25 07:45:29 +00003268 if (DFS) {
3269 Str += ",style=filled,fillcolor=\"#";
3270 Str += DOT::getColorString(DFS->getSubtreeID(N));
3271 Str += '"';
3272 }
3273 return Str;
3274 }
3275};
3276} // namespace llvm
3277#endif // NDEBUG
3278
3279/// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
3280/// rendered using 'dot'.
3281///
3282void ScheduleDAGMI::viewGraph(const Twine &Name, const Twine &Title) {
3283#ifndef NDEBUG
3284 ViewGraph(this, Name, false, Title);
3285#else
3286 errs() << "ScheduleDAGMI::viewGraph is only available in debug builds on "
3287 << "systems with Graphviz or gv!\n";
3288#endif // NDEBUG
3289}
3290
3291/// Out-of-line implementation with no arguments is handy for gdb.
3292void ScheduleDAGMI::viewGraph() {
3293 viewGraph(getDAGName(), "Scheduling-Units Graph for " + getDAGName());
3294}