blob: 5e87514e2f1e320fb602b6e39d1b91c2489ca1e3 [file] [log] [blame]
Andrew Trick6a50baa2012-05-17 22:37:09 +00001//===- MachineScheduler.cpp - Machine Instruction Scheduler ---------------===//
Andrew Tricke77e84e2012-01-13 06:30:30 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// MachineScheduler schedules machine instructions after phi elimination. It
11// preserves LiveIntervals so it can be invoked before register allocation.
12//
13//===----------------------------------------------------------------------===//
14
Andrew Trick02a80da2012-03-08 01:41:12 +000015#include "llvm/CodeGen/MachineScheduler.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/ADT/PriorityQueue.h"
17#include "llvm/Analysis/AliasAnalysis.h"
18#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Jakub Staszakdf17ddd2013-03-10 13:11:23 +000019#include "llvm/CodeGen/MachineDominators.h"
20#include "llvm/CodeGen/MachineLoopInfo.h"
Andrew Trick736dd9a2013-06-21 18:32:58 +000021#include "llvm/CodeGen/MachineRegisterInfo.h"
Andrew Tricke77e84e2012-01-13 06:30:30 +000022#include "llvm/CodeGen/Passes.h"
Andrew Trick05ff4662012-06-06 20:29:31 +000023#include "llvm/CodeGen/RegisterClassInfo.h"
Andrew Trickcd1c2f92012-11-28 05:13:24 +000024#include "llvm/CodeGen/ScheduleDFS.h"
Andrew Trick61f1a272012-05-24 22:11:09 +000025#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
Andrew Tricke77e84e2012-01-13 06:30:30 +000026#include "llvm/Support/CommandLine.h"
27#include "llvm/Support/Debug.h"
28#include "llvm/Support/ErrorHandling.h"
Andrew Trickea9fd952013-01-25 07:45:29 +000029#include "llvm/Support/GraphWriter.h"
Andrew Tricke77e84e2012-01-13 06:30:30 +000030#include "llvm/Support/raw_ostream.h"
Jakub Staszak80df8b82013-06-14 00:00:13 +000031#include "llvm/Target/TargetInstrInfo.h"
Andrew Trick7ccdc5c2012-01-17 06:55:07 +000032#include <queue>
33
Andrew Tricke77e84e2012-01-13 06:30:30 +000034using namespace llvm;
35
Chandler Carruth1b9dde02014-04-22 02:02:50 +000036#define DEBUG_TYPE "misched"
37
Andrew Trick7a8e1002012-09-11 00:39:15 +000038namespace llvm {
39cl::opt<bool> ForceTopDown("misched-topdown", cl::Hidden,
40 cl::desc("Force top-down list scheduling"));
41cl::opt<bool> ForceBottomUp("misched-bottomup", cl::Hidden,
42 cl::desc("Force bottom-up list scheduling"));
43}
Andrew Trick8823dec2012-03-14 04:00:41 +000044
Andrew Tricka5f19562012-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 Hamesdd98c492012-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));
Andrew Trick33e05d72013-12-28 21:57:02 +000051
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 Tricka5f19562012-03-07 00:18:25 +000056#else
57static bool ViewMISchedDAGs = false;
58#endif // NDEBUG
59
Andrew Trickb6e74712013-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 Trickc01b0042013-08-23 17:48:43 +000063static cl::opt<bool> EnableCyclicPath("misched-cyclicpath", cl::Hidden,
Andrew Trick6c88b352013-09-09 23:31:14 +000064 cl::desc("Enable cyclic critical path analysis."), cl::init(true));
Andrew Trickc01b0042013-08-23 17:48:43 +000065
Andrew Tricka7714a02012-11-12 19:40:10 +000066static cl::opt<bool> EnableLoadCluster("misched-cluster", cl::Hidden,
Andrew Trick108c88c2012-11-13 08:47:29 +000067 cl::desc("Enable load clustering."), cl::init(true));
Andrew Tricka7714a02012-11-12 19:40:10 +000068
Andrew Trick263280242012-11-12 19:52:20 +000069// Experimental heuristics
70static cl::opt<bool> EnableMacroFusion("misched-fusion", cl::Hidden,
Andrew Trick108c88c2012-11-13 08:47:29 +000071 cl::desc("Enable scheduling for macro fusion."), cl::init(true));
Andrew Trick263280242012-11-12 19:52:20 +000072
Andrew Trick48f2a722013-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 Trick44f750a2013-01-25 04:01:04 +000076// DAG subtrees must have at least this many nodes.
77static const unsigned MinSubtreeSize = 8;
78
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000079// Pin the vtables to this file.
80void MachineSchedStrategy::anchor() {}
81void ScheduleDAGMutation::anchor() {}
82
Andrew Trick63440872012-01-14 02:17:06 +000083//===----------------------------------------------------------------------===//
84// Machine Instruction Scheduling Pass and Registry
85//===----------------------------------------------------------------------===//
86
Andrew Trick4d4b5462012-04-24 20:36:19 +000087MachineSchedContext::MachineSchedContext():
Craig Topperc0196b12014-04-14 00:51:57 +000088 MF(nullptr), MLI(nullptr), MDT(nullptr), PassConfig(nullptr), AA(nullptr), LIS(nullptr) {
Andrew Trick4d4b5462012-04-24 20:36:19 +000089 RegClassInfo = new RegisterClassInfo();
90}
91
92MachineSchedContext::~MachineSchedContext() {
93 delete RegClassInfo;
94}
95
Andrew Tricke77e84e2012-01-13 06:30:30 +000096namespace {
Andrew Trickd7f890e2013-12-28 21:56:47 +000097/// 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
Craig Topperc0196b12014-04-14 00:51:57 +0000103 void print(raw_ostream &O, const Module* = nullptr) const override;
Andrew Trickd7f890e2013-12-28 21:56:47 +0000104
105protected:
106 void scheduleRegions(ScheduleDAGInstrs &Scheduler);
107};
108
Andrew Tricke1c034f2012-01-17 06:55:03 +0000109/// MachineScheduler runs after coalescing and before register allocation.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000110class MachineScheduler : public MachineSchedulerBase {
Andrew Tricke77e84e2012-01-13 06:30:30 +0000111public:
Andrew Tricke1c034f2012-01-17 06:55:03 +0000112 MachineScheduler();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000113
Craig Topper4584cd52014-03-07 09:26:03 +0000114 void getAnalysisUsage(AnalysisUsage &AU) const override;
Andrew Tricke77e84e2012-01-13 06:30:30 +0000115
Craig Topper4584cd52014-03-07 09:26:03 +0000116 bool runOnMachineFunction(MachineFunction&) override;
Andrew Tricke77e84e2012-01-13 06:30:30 +0000117
Andrew Tricke77e84e2012-01-13 06:30:30 +0000118 static char ID; // Class identification, replacement for typeinfo
Andrew Trick978674b2013-09-20 05:14:41 +0000119
120protected:
121 ScheduleDAGInstrs *createMachineScheduler();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000122};
Andrew Trick17080b92013-12-28 21:56:51 +0000123
124/// PostMachineScheduler runs after shortly before code emission.
125class PostMachineScheduler : public MachineSchedulerBase {
126public:
127 PostMachineScheduler();
128
Craig Topper4584cd52014-03-07 09:26:03 +0000129 void getAnalysisUsage(AnalysisUsage &AU) const override;
Andrew Trick17080b92013-12-28 21:56:51 +0000130
Craig Topper4584cd52014-03-07 09:26:03 +0000131 bool runOnMachineFunction(MachineFunction&) override;
Andrew Trick17080b92013-12-28 21:56:51 +0000132
133 static char ID; // Class identification, replacement for typeinfo
134
135protected:
136 ScheduleDAGInstrs *createPostMachineScheduler();
137};
Andrew Tricke77e84e2012-01-13 06:30:30 +0000138} // namespace
139
Andrew Tricke1c034f2012-01-17 06:55:03 +0000140char MachineScheduler::ID = 0;
Andrew Tricke77e84e2012-01-13 06:30:30 +0000141
Andrew Tricke1c034f2012-01-17 06:55:03 +0000142char &llvm::MachineSchedulerID = MachineScheduler::ID;
Andrew Tricke77e84e2012-01-13 06:30:30 +0000143
Andrew Tricke1c034f2012-01-17 06:55:03 +0000144INITIALIZE_PASS_BEGIN(MachineScheduler, "misched",
Andrew Tricke77e84e2012-01-13 06:30:30 +0000145 "Machine Instruction Scheduler", false, false)
146INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
147INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
148INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
Andrew Tricke1c034f2012-01-17 06:55:03 +0000149INITIALIZE_PASS_END(MachineScheduler, "misched",
Andrew Tricke77e84e2012-01-13 06:30:30 +0000150 "Machine Instruction Scheduler", false, false)
151
Andrew Tricke1c034f2012-01-17 06:55:03 +0000152MachineScheduler::MachineScheduler()
Andrew Trickd7f890e2013-12-28 21:56:47 +0000153: MachineSchedulerBase(ID) {
Andrew Tricke1c034f2012-01-17 06:55:03 +0000154 initializeMachineSchedulerPass(*PassRegistry::getPassRegistry());
Andrew Tricke77e84e2012-01-13 06:30:30 +0000155}
156
Andrew Tricke1c034f2012-01-17 06:55:03 +0000157void MachineScheduler::getAnalysisUsage(AnalysisUsage &AU) const {
Andrew Tricke77e84e2012-01-13 06:30:30 +0000158 AU.setPreservesCFG();
159 AU.addRequiredID(MachineDominatorsID);
160 AU.addRequired<MachineLoopInfo>();
161 AU.addRequired<AliasAnalysis>();
Andrew Trick45300682012-03-09 00:52:20 +0000162 AU.addRequired<TargetPassConfig>();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000163 AU.addRequired<SlotIndexes>();
164 AU.addPreserved<SlotIndexes>();
165 AU.addRequired<LiveIntervals>();
166 AU.addPreserved<LiveIntervals>();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000167 MachineFunctionPass::getAnalysisUsage(AU);
168}
169
Andrew Trick17080b92013-12-28 21:56:51 +0000170char PostMachineScheduler::ID = 0;
171
172char &llvm::PostMachineSchedulerID = PostMachineScheduler::ID;
173
174INITIALIZE_PASS(PostMachineScheduler, "postmisched",
Saleem Abdulrasool7230b372013-12-28 22:47:55 +0000175 "PostRA Machine Instruction Scheduler", false, false)
Andrew Trick17080b92013-12-28 21:56:51 +0000176
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 Tricke77e84e2012-01-13 06:30:30 +0000190MachinePassRegistry MachineSchedRegistry::Registry;
191
Andrew Trick45300682012-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) {
Craig Topperc0196b12014-04-14 00:51:57 +0000195 return nullptr;
Andrew Trick45300682012-03-09 00:52:20 +0000196}
Andrew Tricke77e84e2012-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 Trick45300682012-03-09 00:52:20 +0000202 cl::init(&useDefaultMachineSched), cl::Hidden,
Andrew Tricke77e84e2012-01-13 06:30:30 +0000203 cl::desc("Machine instruction scheduler to use"));
204
Andrew Trick45300682012-03-09 00:52:20 +0000205static MachineSchedRegistry
Andrew Trick8823dec2012-03-14 04:00:41 +0000206DefaultSchedRegistry("default", "Use the target's default scheduler choice.",
Andrew Trick45300682012-03-09 00:52:20 +0000207 useDefaultMachineSched);
208
Andrew Trick8823dec2012-03-14 04:00:41 +0000209/// Forward declare the standard machine scheduler. This will be used as the
Andrew Trick45300682012-03-09 00:52:20 +0000210/// default scheduler if the target does not set a default.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000211static ScheduleDAGInstrs *createGenericSchedLive(MachineSchedContext *C);
212static ScheduleDAGInstrs *createGenericSchedPostRA(MachineSchedContext *C);
Andrew Trickcc45a282012-04-24 18:04:34 +0000213
214/// Decrement this iterator until reaching the top or a non-debug instr.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000215static MachineBasicBlock::const_iterator
216priorNonDebug(MachineBasicBlock::const_iterator I,
217 MachineBasicBlock::const_iterator Beg) {
Andrew Trickcc45a282012-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 Trick2bc74c22013-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 Trickcc45a282012-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 Trick2c4f8b72013-08-31 05:17:58 +0000236static MachineBasicBlock::const_iterator
237nextIfDebug(MachineBasicBlock::const_iterator I,
238 MachineBasicBlock::const_iterator End) {
Andrew Trick463b2f12012-05-17 18:35:03 +0000239 for(; I != End; ++I) {
Andrew Trickcc45a282012-04-24 18:04:34 +0000240 if (!I->isDebugValue())
241 break;
242 }
243 return I;
244}
245
Andrew Trick2c4f8b72013-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 Trickdc4c1ad2013-09-24 17:11:19 +0000258/// Instantiate a ScheduleDAGInstrs that will be owned by the caller.
Andrew Trick978674b2013-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.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000271 return createGenericSchedLive(this);
Andrew Trick978674b2013-09-20 05:14:41 +0000272}
273
Andrew Trick17080b92013-12-28 21:56:51 +0000274/// 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.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000284 return createGenericSchedPostRA(this);
Andrew Trick17080b92013-12-28 21:56:51 +0000285}
286
Andrew Trick72515be2012-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 Trick8823dec2012-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 Trick72515be2012-03-14 04:00:38 +0000293///
294/// This design avoids exposing scheduling boundaries to the DAG builder,
Andrew Trick8823dec2012-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 Trick72515be2012-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 Tricke1c034f2012-01-17 06:55:03 +0000303bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) {
Andrew Trickc5d70082012-05-10 21:06:21 +0000304 DEBUG(dbgs() << "Before MISsched:\n"; mf.print(dbgs()));
305
Andrew Tricke77e84e2012-01-13 06:30:30 +0000306 // Initialize the context of the pass.
307 MF = &mf;
308 MLI = &getAnalysis<MachineLoopInfo>();
309 MDT = &getAnalysis<MachineDominatorTree>();
Andrew Trick45300682012-03-09 00:52:20 +0000310 PassConfig = &getAnalysis<TargetPassConfig>();
Andrew Trick02a80da2012-03-08 01:41:12 +0000311 AA = &getAnalysis<AliasAnalysis>();
312
Lang Hamesad33d5a2012-01-27 22:36:19 +0000313 LIS = &getAnalysis<LiveIntervals>();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000314
Andrew Trick48f2a722013-03-08 05:40:34 +0000315 if (VerifyScheduling) {
Andrew Trick97064962013-07-25 07:26:26 +0000316 DEBUG(LIS->dump());
Andrew Trick48f2a722013-03-08 05:40:34 +0000317 MF->verify(this, "Before machine scheduling.");
318 }
Andrew Trick4d4b5462012-04-24 20:36:19 +0000319 RegClassInfo->runOnMachineFunction(*MF);
Andrew Trick88639922012-04-24 17:56:43 +0000320
Andrew Trick978674b2013-09-20 05:14:41 +0000321 // Instantiate the selected scheduler for this target, function, and
322 // optimization level.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000323 std::unique_ptr<ScheduleDAGInstrs> Scheduler(createMachineScheduler());
Andrew Trickd7f890e2013-12-28 21:56:47 +0000324 scheduleRegions(*Scheduler);
325
326 DEBUG(LIS->dump());
327 if (VerifyScheduling)
328 MF->verify(this, "After machine scheduling.");
329 return true;
330}
331
Andrew Trick17080b92013-12-28 21:56:51 +0000332bool PostMachineScheduler::runOnMachineFunction(MachineFunction &mf) {
Paul Robinson7c99ec52014-03-31 17:43:35 +0000333 if (skipOptnoneFunction(*mf.getFunction()))
334 return false;
335
Andrew Trick8d2ee372014-06-04 07:06:27 +0000336 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 }
Andrew Trick17080b92013-12-28 21:56:51 +0000342 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.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000353 std::unique_ptr<ScheduleDAGInstrs> Scheduler(createPostMachineScheduler());
Andrew Trick17080b92013-12-28 21:56:51 +0000354 scheduleRegions(*Scheduler);
355
356 if (VerifyScheduling)
357 MF->verify(this, "After post machine scheduling.");
358 return true;
359}
360
Andrew Trickd14d7c22013-12-28 21:56:57 +0000361/// 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
Andrew Trickd7f890e2013-12-28 21:56:47 +0000379/// Main driver for both MachineScheduler and PostMachineScheduler.
380void MachineSchedulerBase::scheduleRegions(ScheduleDAGInstrs &Scheduler) {
Eric Christopherfc6de422014-08-05 02:39:49 +0000381 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
Andrew Trickd14d7c22013-12-28 21:56:57 +0000382 bool IsPostRA = Scheduler.isPostRA();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000383
384 // Visit all machine basic blocks.
Andrew Trick88639922012-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 Tricke77e84e2012-01-13 06:30:30 +0000388 for (MachineFunction::iterator MBB = MF->begin(), MBBEnd = MF->end();
389 MBB != MBBEnd; ++MBB) {
390
Andrew Trickd7f890e2013-12-28 21:56:47 +0000391 Scheduler.startBlock(MBB);
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000392
Andrew Trick33e05d72013-12-28 21:57:02 +0000393#ifndef NDEBUG
394 if (SchedOnlyFunc.getNumOccurrences() && SchedOnlyFunc != MF->getName())
395 continue;
396 if (SchedOnlyBlock.getNumOccurrences()
397 && (int)SchedOnlyBlock != MBB->getNumber())
398 continue;
399#endif
400
Andrew Trick7e120f42012-01-14 02:17:09 +0000401 // Break the block into scheduling regions [I, RegionEnd), and schedule each
Sylvestre Ledru35521e22012-07-23 08:51:15 +0000402 // region as soon as it is discovered. RegionEnd points the scheduling
Andrew Trickaf1bee72012-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.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000411 //
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 Tricka21daf72012-03-09 03:46:39 +0000415 for(MachineBasicBlock::iterator RegionEnd = MBB->end();
Andrew Trickd7f890e2013-12-28 21:56:47 +0000416 RegionEnd != MBB->begin(); RegionEnd = Scheduler.begin()) {
Andrew Trick88639922012-04-24 17:56:43 +0000417
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000418 // Avoid decrementing RegionEnd for blocks with no terminator.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000419 if (RegionEnd != MBB->end() ||
420 isSchedBoundary(std::prev(RegionEnd), MBB, MF, TII, IsPostRA)) {
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000421 --RegionEnd;
422 // Count the boundary instruction.
Andrew Trick4d1fa712012-11-06 07:10:34 +0000423 --RemainingInstrs;
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000424 }
425
Andrew Trick7e120f42012-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 Tricka53e1012013-08-23 17:48:33 +0000428 unsigned NumRegionInstrs = 0;
Andrew Trick7e120f42012-01-14 02:17:09 +0000429 MachineBasicBlock::iterator I = RegionEnd;
Andrew Tricka53e1012013-08-23 17:48:33 +0000430 for(;I != MBB->begin(); --I, --RemainingInstrs, ++NumRegionInstrs) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000431 if (isSchedBoundary(std::prev(I), MBB, MF, TII, IsPostRA))
Andrew Trick7e120f42012-01-14 02:17:09 +0000432 break;
433 }
Andrew Trick60cf03e2012-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.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000436 Scheduler.enterRegion(MBB, I, RegionEnd, NumRegionInstrs);
Andrew Trick60cf03e2012-03-07 05:21:52 +0000437
438 // Skip empty scheduling regions (0 or 1 schedulable instructions).
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000439 if (I == RegionEnd || I == std::prev(RegionEnd)) {
Andrew Trick60cf03e2012-03-07 05:21:52 +0000440 // Close the current region. Bundle the terminator if needed.
Andrew Trickaf1bee72012-03-09 22:34:56 +0000441 // This invalidates 'RegionEnd' and 'I'.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000442 Scheduler.exitRegion();
Andrew Trick7ccdc5c2012-01-17 06:55:07 +0000443 continue;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000444 }
Andrew Trickd14d7c22013-12-28 21:56:57 +0000445 DEBUG(dbgs() << "********** " << ((Scheduler.isPostRA()) ? "PostRA " : "")
446 << "MI Scheduling **********\n");
Craig Toppera538d832012-08-22 06:07:19 +0000447 DEBUG(dbgs() << MF->getName()
Andrew Trick54b2ce32013-01-25 07:45:31 +0000448 << ":BB#" << MBB->getNumber() << " " << MBB->getName()
449 << "\n From: " << *I << " To: ";
Andrew Tricke57583a2012-02-08 02:17:21 +0000450 if (RegionEnd != MBB->end()) dbgs() << *RegionEnd;
451 else dbgs() << "End";
Andrew Tricka53e1012013-08-23 17:48:33 +0000452 dbgs() << " RegionInstrs: " << NumRegionInstrs
453 << " Remaining: " << RemainingInstrs << "\n");
Andrew Trick7ccdc5c2012-01-17 06:55:07 +0000454
Andrew Trick1c0ec452012-03-09 03:46:42 +0000455 // Schedule a region: possibly reorder instructions.
Andrew Trickaf1bee72012-03-09 22:34:56 +0000456 // This invalidates 'RegionEnd' and 'I'.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000457 Scheduler.schedule();
Andrew Trick1c0ec452012-03-09 03:46:42 +0000458
459 // Close the current region.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000460 Scheduler.exitRegion();
Andrew Trick60cf03e2012-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.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000464 RegionEnd = Scheduler.begin();
Andrew Trick7e120f42012-01-14 02:17:09 +0000465 }
Andrew Trick4d1fa712012-11-06 07:10:34 +0000466 assert(RemainingInstrs == 0 && "Instruction count mismatch!");
Andrew Trickd7f890e2013-12-28 21:56:47 +0000467 Scheduler.finishBlock();
Andrew Trickd14d7c22013-12-28 21:56:57 +0000468 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 Tricke77e84e2012-01-13 06:30:30 +0000473 }
Andrew Trickd7f890e2013-12-28 21:56:47 +0000474 Scheduler.finalizeSchedule();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000475}
476
Andrew Trickd7f890e2013-12-28 21:56:47 +0000477void MachineSchedulerBase::print(raw_ostream &O, const Module* m) const {
Andrew Tricke77e84e2012-01-13 06:30:30 +0000478 // unimplemented
479}
480
Alp Tokerd8d510a2014-07-01 21:19:13 +0000481LLVM_DUMP_METHOD
Andrew Trick7a8e1002012-09-11 00:39:15 +0000482void ReadyQueue::dump() {
Andrew Trickd40d0f22013-06-17 21:45:05 +0000483 dbgs() << Name << ": ";
Andrew Trick7a8e1002012-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 Trick8823dec2012-03-14 04:00:41 +0000488
489//===----------------------------------------------------------------------===//
Andrew Trickd7f890e2013-12-28 21:56:47 +0000490// 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 Trick8823dec2012-03-14 04:00:41 +0000494
David Blaikie422b93d2014-04-21 20:32:32 +0000495// Provide a vtable anchor.
Andrew Trick44f750a2013-01-25 04:01:04 +0000496ScheduleDAGMI::~ScheduleDAGMI() {
Andrew Trick44f750a2013-01-25 04:01:04 +0000497}
498
Andrew Trick85a1d4c2013-04-24 15:54:43 +0000499bool ScheduleDAGMI::canAddEdge(SUnit *SuccSU, SUnit *PredSU) {
500 return SuccSU == &ExitSU || !Topo.IsReachable(PredSU, SuccSU);
501}
502
Andrew Tricka7714a02012-11-12 19:40:10 +0000503bool ScheduleDAGMI::addEdge(SUnit *SuccSU, const SDep &PredDep) {
Andrew Trick263280242012-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 Tricka7714a02012-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 Trick02a80da2012-03-08 01:41:12 +0000516/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. When
517/// NumPredsLeft reaches zero, release the successor node.
Andrew Trick61f1a272012-05-24 22:11:09 +0000518///
519/// FIXME: Adjust SuccSU height based on MinLatency.
Andrew Trick8823dec2012-03-14 04:00:41 +0000520void ScheduleDAGMI::releaseSucc(SUnit *SU, SDep *SuccEdge) {
Andrew Trick02a80da2012-03-08 01:41:12 +0000521 SUnit *SuccSU = SuccEdge->getSUnit();
522
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000523 if (SuccEdge->isWeak()) {
524 --SuccSU->WeakPredsLeft;
Andrew Tricka7714a02012-11-12 19:40:10 +0000525 if (SuccEdge->isCluster())
526 NextClusterSucc = SuccSU;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000527 return;
528 }
Andrew Trick02a80da2012-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";
Craig Topperc0196b12014-04-14 00:51:57 +0000534 llvm_unreachable(nullptr);
Andrew Trick02a80da2012-03-08 01:41:12 +0000535 }
536#endif
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000537 // 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 Trick02a80da2012-03-08 01:41:12 +0000542 --SuccSU->NumPredsLeft;
543 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
Andrew Trick8823dec2012-03-14 04:00:41 +0000544 SchedImpl->releaseTopNode(SuccSU);
Andrew Trick02a80da2012-03-08 01:41:12 +0000545}
546
547/// releaseSuccessors - Call releaseSucc on each of SU's successors.
Andrew Trick8823dec2012-03-14 04:00:41 +0000548void ScheduleDAGMI::releaseSuccessors(SUnit *SU) {
Andrew Trick02a80da2012-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 Trick8823dec2012-03-14 04:00:41 +0000555/// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. When
556/// NumSuccsLeft reaches zero, release the predecessor node.
Andrew Trick61f1a272012-05-24 22:11:09 +0000557///
558/// FIXME: Adjust PredSU height based on MinLatency.
Andrew Trick8823dec2012-03-14 04:00:41 +0000559void ScheduleDAGMI::releasePred(SUnit *SU, SDep *PredEdge) {
560 SUnit *PredSU = PredEdge->getSUnit();
561
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000562 if (PredEdge->isWeak()) {
563 --PredSU->WeakSuccsLeft;
Andrew Tricka7714a02012-11-12 19:40:10 +0000564 if (PredEdge->isCluster())
565 NextClusterPred = PredSU;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000566 return;
567 }
Andrew Trick8823dec2012-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";
Craig Topperc0196b12014-04-14 00:51:57 +0000573 llvm_unreachable(nullptr);
Andrew Trick8823dec2012-03-14 04:00:41 +0000574 }
575#endif
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000576 // 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 Trick8823dec2012-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
Andrew Trickd7f890e2013-12-28 21:56:47 +0000594/// 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 Tricke833e1c2013-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.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000610void ScheduleDAGMI::moveInstruction(
611 MachineInstr *MI, MachineBasicBlock::iterator InsertPos) {
Andrew Trick463b2f12012-05-17 18:35:03 +0000612 // Advance RegionBegin if the first instruction moves down.
Andrew Trick54f7def2012-03-21 04:12:10 +0000613 if (&*RegionBegin == MI)
Andrew Trick463b2f12012-05-17 18:35:03 +0000614 ++RegionBegin;
615
616 // Update the instruction stream.
Andrew Trick8823dec2012-03-14 04:00:41 +0000617 BB->splice(InsertPos, BB, MI);
Andrew Trick463b2f12012-05-17 18:35:03 +0000618
619 // Update LiveIntervals
Andrew Trickd7f890e2013-12-28 21:56:47 +0000620 if (LIS)
621 LIS->handleMove(MI, /*UpdateFlags=*/true);
Andrew Trick463b2f12012-05-17 18:35:03 +0000622
623 // Recede RegionBegin if an instruction moves above the first.
Andrew Trick8823dec2012-03-14 04:00:41 +0000624 if (RegionBegin == InsertPos)
625 RegionBegin = MI;
626}
627
Andrew Trickde670c02012-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
Andrew Trickd7f890e2013-12-28 21:56:47 +0000639/// 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 }
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000692 // Notify the scheduling strategy before updating the DAG.
Andrew Trick491e34a2014-06-12 22:36:28 +0000693 // This sets the scheduled node's ReadyCycle to CurrCycle. When updateQueues
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000694 // runs, it can then use the accurate ReadyCycle time to determine whether
695 // newly released nodes can move to the readyQ.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000696 SchedImpl->schedNode(SU, IsTopNode);
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000697
698 updateQueues(SU, IsTopNode);
Andrew Trickd7f890e2013-12-28 21:56:47 +0000699 }
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) {
Craig Topperc0196b12014-04-14 00:51:57 +0000743 NextClusterSucc = nullptr;
744 NextClusterPred = nullptr;
Andrew Trickd7f890e2013-12-28 21:56:47 +0000745
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) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000792 std::pair<MachineInstr *, MachineInstr *> P = *std::prev(DI);
Andrew Trickd7f890e2013-12-28 21:56:47 +0000793 MachineInstr *DbgValue = P.first;
794 MachineBasicBlock::iterator OrigPrevMI = P.second;
795 if (&*RegionBegin == DbgValue)
796 ++RegionBegin;
797 BB->splice(++OrigPrevMI, BB, DbgValue);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000798 if (OrigPrevMI == std::prev(RegionEnd))
Andrew Trickd7f890e2013-12-28 21:56:47 +0000799 RegionEnd = DbgValue;
800 }
801 DbgValues.clear();
Craig Topperc0196b12014-04-14 00:51:57 +0000802 FirstDbgValue = nullptr;
Andrew Trickd7f890e2013-12-28 21:56:47 +0000803}
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 Trick88639922012-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.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000829void ScheduleDAGMILive::enterRegion(MachineBasicBlock *bb,
Andrew Trick88639922012-04-24 17:56:43 +0000830 MachineBasicBlock::iterator begin,
831 MachineBasicBlock::iterator end,
Andrew Tricka53e1012013-08-23 17:48:33 +0000832 unsigned regioninstrs)
Andrew Trick88639922012-04-24 17:56:43 +0000833{
Andrew Trickd7f890e2013-12-28 21:56:47 +0000834 // ScheduleDAGMI initializes SchedImpl's per-region policy.
835 ScheduleDAGMI::enterRegion(bb, begin, end, regioninstrs);
Andrew Trick4add42f2012-05-10 21:06:10 +0000836
837 // For convenience remember the end of the liveness region.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000838 LiveRegionEnd = (RegionEnd == bb->end()) ? RegionEnd : std::next(RegionEnd);
Andrew Trick75e411c2013-09-06 17:32:34 +0000839
Andrew Trickb248b4a2013-09-06 17:32:47 +0000840 SUPressureDiffs.clear();
841
Andrew Trick75e411c2013-09-06 17:32:34 +0000842 ShouldTrackPressure = SchedImpl->shouldTrackPressure();
Andrew Trick4add42f2012-05-10 21:06:10 +0000843}
844
845// Setup the register pressure trackers for the top scheduled top and bottom
846// scheduled regions.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000847void ScheduleDAGMILive::initRegPressure() {
Andrew Trick4add42f2012-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 Trick9c17eab2013-07-30 19:59:12 +0000854 DEBUG(RPTracker.dump());
Andrew Trick79d3eec2012-05-24 22:11:14 +0000855
Andrew Trick4add42f2012-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 Trick9c17eab2013-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 Trick2bc74c22013-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 Trick4add42f2012-05-10 21:06:10 +0000877 // Account for liveness generated by the region boundary.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000878 if (LiveRegionEnd != RegionEnd) {
879 SmallVector<unsigned, 8> LiveUses;
880 BotRPTracker.recede(&LiveUses);
881 updatePressureDiffs(LiveUses);
882 }
Andrew Trick4add42f2012-05-10 21:06:10 +0000883
884 assert(BotRPTracker.getPos() == RegionEnd && "Can't find the region bottom");
Andrew Trick22025772012-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 Staszakc641ada2013-01-25 21:44:27 +0000889 const std::vector<unsigned> &RegionPressure =
890 RPTracker.getPressure().MaxSetPressure;
Andrew Trick22025772012-05-17 18:35:10 +0000891 for (unsigned i = 0, e = RegionPressure.size(); i < e; ++i) {
Andrew Trick736dd9a2013-06-21 18:32:58 +0000892 unsigned Limit = RegClassInfo->getRegPressureSetLimit(i);
Andrew Trickb55db582013-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 Trick1a831342013-08-30 03:49:48 +0000897 RegionCriticalPSets.push_back(PressureChange(i));
Andrew Trickb55db582013-06-21 18:33:01 +0000898 }
Andrew Trick22025772012-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 Trick1a831342013-08-30 03:49:48 +0000903 RegionCriticalPSets[i].getPSet()) << " ";
Andrew Trick22025772012-05-17 18:35:10 +0000904 dbgs() << "\n");
905}
906
Andrew Trickd7f890e2013-12-28 21:56:47 +0000907void ScheduleDAGMILive::
Andrew Trickb248b4a2013-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 Trick22025772012-05-17 18:35:10 +0000930 }
Andrew Trick88639922012-04-24 17:56:43 +0000931}
932
Andrew Trick2bc74c22013-08-30 04:36:57 +0000933/// Update the PressureDiff array for liveness after scheduling this
934/// instruction.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000935void ScheduleDAGMILive::updatePressureDiffs(ArrayRef<unsigned> LiveUses) {
Andrew Trick2bc74c22013-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 Trickffdbefb2013-09-06 17:32:39 +0000939 DEBUG(dbgs() << " LiveReg: " << PrintVRegOrUnit(Reg, TRI) << "\n");
Andrew Trick2bc74c22013-08-30 04:36:57 +0000940 if (!TRI->isVirtualRegister(Reg))
941 continue;
Andrew Trickffdbefb2013-09-06 17:32:39 +0000942
Andrew Trick2bc74c22013-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 Trick2c4f8b72013-08-31 05:17:58 +0000949 MachineBasicBlock::const_iterator I =
950 nextIfDebug(BotRPTracker.getPos(), BB->end());
951 if (I == BB->end())
Andrew Trick2bc74c22013-08-30 04:36:57 +0000952 VNI = LI.getVNInfoBefore(LIS->getMBBEndIdx(BB));
953 else {
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000954 LiveQueryResult LRQ = LI.Query(LIS->getInstructionIndex(I));
Andrew Trick2bc74c22013-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 Trickffdbefb2013-09-06 17:32:39 +0000962 DEBUG(dbgs() << " UpdateRegP: SU(" << SU->NodeNum << ") "
963 << *SU->getInstr());
Andrew Trick2bc74c22013-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 Braun88dd0ab2013-10-10 21:28:52 +0000967 LiveQueryResult LRQ
968 = LI.Query(LIS->getInstructionIndex(SU->getInstr()));
Andrew Trick2bc74c22013-08-30 04:36:57 +0000969 if (LRQ.valueIn() == VNI)
970 getPressureDiff(SU).addPressureChange(Reg, true, &MRI);
971 }
972 }
973 }
974}
975
Andrew Trick8823dec2012-03-14 04:00:41 +0000976/// schedule - Called back from MachineScheduler::runOnMachineFunction
Andrew Trick88639922012-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 Trick7a8e1002012-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
Andrew Trickd7f890e2013-12-28 21:56:47 +0000984/// ScheduleDAGMILive then it will want to override this virtual method in order
985/// to update any specialized state.
986void ScheduleDAGMILive::schedule() {
Andrew Trick7a8e1002012-09-11 00:39:15 +0000987 buildDAGWithRegPressure();
988
Andrew Tricka7714a02012-11-12 19:40:10 +0000989 Topo.InitDAGTopologicalSorting();
990
Andrew Tricka2733e92012-09-14 17:22:42 +0000991 postprocessDAG();
992
Andrew Tricke2c3f5c2013-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 Trick7a8e1002012-09-11 00:39:15 +00001000 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
1001 SUnits[su].dumpAll(this));
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001002 if (ViewMISchedDAGs) viewGraph();
Andrew Trick7a8e1002012-09-11 00:39:15 +00001003
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001004 // Initialize ready queues now that the DAG and priority data are finalized.
1005 initQueues(TopRoots, BotRoots);
Andrew Trick7a8e1002012-09-11 00:39:15 +00001006
Andrew Trickd7f890e2013-12-28 21:56:47 +00001007 if (ShouldTrackPressure) {
1008 assert(TopRPTracker.getPos() == RegionBegin && "bad initial Top tracker");
1009 TopRPTracker.setPos(CurrentTop);
1010 }
1011
Andrew Trick7a8e1002012-09-11 00:39:15 +00001012 bool IsTopNode = false;
1013 while (SUnit *SU = SchedImpl->pickNode(IsTopNode)) {
Andrew Trick984d98b2012-10-08 18:53:53 +00001014 assert(!SU->isScheduled && "Node already scheduled");
Andrew Trick7a8e1002012-09-11 00:39:15 +00001015 if (!checkSchedLimit())
1016 break;
1017
1018 scheduleMI(SU, IsTopNode);
1019
1020 updateQueues(SU, IsTopNode);
Andrew Trickd7f890e2013-12-28 21:56:47 +00001021
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 Trick7a8e1002012-09-11 00:39:15 +00001033 }
1034 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone.");
1035
1036 placeDebugValues();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001037
1038 DEBUG({
Andrew Trickcf7e6972012-11-28 03:42:47 +00001039 unsigned BBNum = begin()->getParent()->getNumber();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001040 dbgs() << "*** Final schedule for BB#" << BBNum << " ***\n";
1041 dumpSchedule();
1042 dbgs() << '\n';
1043 });
Andrew Trick7a8e1002012-09-11 00:39:15 +00001044}
1045
1046/// Build the DAG and setup three register pressure trackers.
Andrew Trickd7f890e2013-12-28 21:56:47 +00001047void ScheduleDAGMILive::buildDAGWithRegPressure() {
Andrew Trickb6e74712013-09-04 20:59:59 +00001048 if (!ShouldTrackPressure) {
1049 RPTracker.reset();
1050 RegionCriticalPSets.clear();
1051 buildSchedGraph(AA);
1052 return;
1053 }
1054
Andrew Trick4add42f2012-05-10 21:06:10 +00001055 // Initialize the register pressure tracker used by buildSchedGraph.
Andrew Trick9c17eab2013-07-30 19:59:12 +00001056 RPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd,
1057 /*TrackUntiedDefs=*/true);
Andrew Trick88639922012-04-24 17:56:43 +00001058
Andrew Trick4add42f2012-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 Trick1a831342013-08-30 03:49:48 +00001064 buildSchedGraph(AA, &RPTracker, &SUPressureDiffs);
Andrew Trick02a80da2012-03-08 01:41:12 +00001065
Andrew Trick4add42f2012-05-10 21:06:10 +00001066 // Initialize top/bottom trackers after computing region pressure.
1067 initRegPressure();
Andrew Trick7a8e1002012-09-11 00:39:15 +00001068}
Andrew Trick4add42f2012-05-10 21:06:10 +00001069
Andrew Trickd7f890e2013-12-28 21:56:47 +00001070void ScheduleDAGMILive::computeDFSResult() {
Andrew Trick44f750a2013-01-25 04:01:04 +00001071 if (!DFSResult)
1072 DFSResult = new SchedDFSResult(/*BottomU*/true, MinSubtreeSize);
1073 DFSResult->clear();
Andrew Trick44f750a2013-01-25 04:01:04 +00001074 ScheduledTrees.clear();
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001075 DFSResult->resize(SUnits.size());
1076 DFSResult->compute(SUnits);
Andrew Trick44f750a2013-01-25 04:01:04 +00001077 ScheduledTrees.resize(DFSResult->getNumSubtrees());
1078}
1079
Andrew Trick483f4192013-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 Trickef80f502013-08-30 02:02:12 +00001087/// edge and considers the depth and height of the nodes. For example, consider
Andrew Trick483f4192013-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
Andrew Trickd7f890e2013-12-28 21:56:47 +00001103///
1104/// This could be relevant to PostRA scheduling, but is currently implemented
1105/// assuming LiveIntervals.
1106unsigned ScheduleDAGMILive::computeCyclicCriticalPath() {
Andrew Trick483f4192013-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 Braun88dd0ab2013-10-10 21:28:52 +00001138 LiveQueryResult LRQ =
1139 LI.Query(LIS->getInstructionIndex(UI->SU->getInstr()));
Andrew Trick483f4192013-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 Trick7a8e1002012-09-11 00:39:15 +00001168/// Move an instruction and update register pressure.
Andrew Trickd7f890e2013-12-28 21:56:47 +00001169void ScheduleDAGMILive::scheduleMI(SUnit *SU, bool IsTopNode) {
Andrew Trick7a8e1002012-09-11 00:39:15 +00001170 // Move the instruction to its new location in the instruction stream.
1171 MachineInstr *MI = SU->getInstr();
Andrew Trick02a80da2012-03-08 01:41:12 +00001172
Andrew Trick7a8e1002012-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 Trick8823dec2012-03-14 04:00:41 +00001177 else {
Andrew Trick7a8e1002012-09-11 00:39:15 +00001178 moveInstruction(MI, CurrentTop);
1179 TopRPTracker.setPos(MI);
Andrew Trick8823dec2012-03-14 04:00:41 +00001180 }
Andrew Trickc3ea0052012-04-24 18:04:37 +00001181
Andrew Trickb6e74712013-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 Trickb248b4a2013-09-06 17:32:47 +00001186 updateScheduledPressure(SU, TopRPTracker.getPressure().MaxSetPressure);
Andrew Trickb6e74712013-09-04 20:59:59 +00001187 }
Andrew Trick7a8e1002012-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 Trickb6e74712013-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 Trickb248b4a2013-09-06 17:32:47 +00001208 updateScheduledPressure(SU, BotRPTracker.getPressure().MaxSetPressure);
Andrew Trickb6e74712013-09-04 20:59:59 +00001209 updatePressureDiffs(LiveUses);
Andrew Trickb6e74712013-09-04 20:59:59 +00001210 }
Andrew Trick7a8e1002012-09-11 00:39:15 +00001211 }
1212}
1213
Andrew Trick263280242012-11-12 19:52:20 +00001214//===----------------------------------------------------------------------===//
1215// LoadClusterMutation - DAG post-processing to cluster loads.
1216//===----------------------------------------------------------------------===//
1217
Andrew Tricka7714a02012-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) {}
Benjamin Kramerb0f74b22014-03-07 21:35:39 +00001228
1229 bool operator<(const LoadInfo &RHS) const {
1230 return std::tie(BaseReg, Offset) < std::tie(RHS.BaseReg, RHS.Offset);
1231 }
Andrew Tricka7714a02012-11-12 19:40:10 +00001232 };
Andrew Tricka7714a02012-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
Craig Topper4584cd52014-03-07 09:26:03 +00001241 void apply(ScheduleDAGMI *DAG) override;
Andrew Tricka7714a02012-11-12 19:40:10 +00001242protected:
1243 void clusterNeighboringLoads(ArrayRef<SUnit*> Loads, ScheduleDAGMI *DAG);
1244};
1245} // anonymous
1246
Andrew Tricka7714a02012-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;
Benjamin Kramerb0f74b22014-03-07 21:35:39 +00001259 std::sort(LoadRecords.begin(), LoadRecords.end());
Andrew Tricka7714a02012-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 Trickec369d52012-11-12 21:28:10 +00001269 if (TII->shouldClusterLoads(SUa->getInstr(), SUb->getInstr(), ClusterLength)
Andrew Tricka7714a02012-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 Trick02a80da2012-03-08 01:41:12 +00001324//===----------------------------------------------------------------------===//
Andrew Trick263280242012-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
Craig Topper4584cd52014-03-07 09:26:03 +00001336 void apply(ScheduleDAGMI *DAG) override;
Andrew Trick263280242012-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 Trick85a1d4c2013-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 Trick2e875172013-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 Trick85a1d4c2013-04-24 15:54:43 +00001381 SlotIndex RegionEndIdx;
1382public:
1383 CopyConstrain(const TargetInstrInfo *, const TargetRegisterInfo *) {}
1384
Craig Topper4584cd52014-03-07 09:26:03 +00001385 void apply(ScheduleDAGMI *DAG) override;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001386
1387protected:
Andrew Trickd7f890e2013-12-28 21:56:47 +00001388 void constrainLocalCopy(SUnit *CopySU, ScheduleDAGMILive *DAG);
Andrew Trick85a1d4c2013-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.
Andrew Trickd7f890e2013-12-28 21:56:47 +00001411void CopyConstrain::constrainLocalCopy(SUnit *CopySU, ScheduleDAGMILive *DAG) {
Andrew Trick85a1d4c2013-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.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001461 if (SlotIndex::isSameInstr(std::prev(GlobalSegment)->end,
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001462 GlobalSegment->start)) {
1463 return;
1464 }
Andrew Trickd9761772013-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.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001467 if (SlotIndex::isSameInstr(std::prev(GlobalSegment)->start,
Andrew Trickd9761772013-07-30 19:59:08 +00001468 LocalLI->beginIndex())) {
1469 return;
1470 }
Andrew Trick85a1d4c2013-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.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001473 assert(std::prev(GlobalSegment)->start < LocalLI->beginIndex() &&
Andrew Trick85a1d4c2013-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) {
Andrew Trickd7f890e2013-12-28 21:56:47 +00001536 assert(DAG->hasVRegLiveness() && "Expect VRegs with LiveIntervals");
1537
Andrew Trick2e875172013-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 Trick85a1d4c2013-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
Andrew Trickd7f890e2013-12-28 21:56:47 +00001550 constrainLocalCopy(SU, static_cast<ScheduleDAGMILive*>(DAG));
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001551 }
1552}
1553
1554//===----------------------------------------------------------------------===//
Andrew Trickfc127d12013-12-07 05:59:44 +00001555// MachineSchedStrategy helpers used by GenericScheduler, GenericPostScheduler
1556// and possibly other custom schedulers.
Andrew Trickd14d7c22013-12-28 21:56:57 +00001557//===----------------------------------------------------------------------===//
Andrew Tricke1c034f2012-01-17 06:55:03 +00001558
Andrew Trick5a22df42013-12-05 17:56:02 +00001559static const unsigned InvalidCycle = ~0U;
1560
Andrew Trickfc127d12013-12-07 05:59:44 +00001561SchedBoundary::~SchedBoundary() { delete HazardRec; }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001562
Andrew Trickfc127d12013-12-07 05:59:44 +00001563void 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;
Craig Topperc0196b12014-04-14 00:51:57 +00001569 HazardRec = nullptr;
Andrew Trickfc127d12013-12-07 05:59:44 +00001570 }
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();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001585#ifndef NDEBUG
Andrew Trickd14d7c22013-12-28 21:56:57 +00001586 // 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).
Andrew Trick7f1ebbe2014-06-07 01:48:43 +00001589 MaxObservedStall = 0;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001590#endif
Andrew Trickfc127d12013-12-07 05:59:44 +00001591 // Reserve a zero-count for invalid CritResIdx.
1592 ExecutedResCounts.resize(1);
1593 assert(!ExecutedResCounts[0] && "nonzero count for bad resource");
1594}
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001595
Andrew Trickfc127d12013-12-07 05:59:44 +00001596void SchedRemainder::
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001597init(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);
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001605 RemIssueCount += SchedModel->getNumMicroOps(I->getInstr(), SC)
1606 * SchedModel->getMicroOpFactor();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001607 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
Andrew Trickfc127d12013-12-07 05:59:44 +00001617void SchedBoundary::
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001618init(ScheduleDAGMI *dag, const TargetSchedModel *smodel, SchedRemainder *rem) {
1619 reset();
1620 DAG = dag;
1621 SchedModel = smodel;
1622 Rem = rem;
Andrew Trick5a22df42013-12-05 17:56:02 +00001623 if (SchedModel->hasInstrSchedModel()) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001624 ExecutedResCounts.resize(SchedModel->getNumProcResourceKinds());
Andrew Trick5a22df42013-12-05 17:56:02 +00001625 ReservedCycles.resize(SchedModel->getNumProcResourceKinds(), InvalidCycle);
1626 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001627}
1628
Andrew Trick880e5732013-12-05 17:55:58 +00001629/// 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.
Andrew Trickfc127d12013-12-07 05:59:44 +00001636unsigned SchedBoundary::getLatencyStallCycles(SUnit *SU) {
Andrew Trick880e5732013-12-05 17:55:58 +00001637 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
Andrew Trick5a22df42013-12-05 17:56:02 +00001646/// Compute the next cycle at which the given processor resource can be
1647/// scheduled.
Andrew Trickfc127d12013-12-07 05:59:44 +00001648unsigned SchedBoundary::
Andrew Trick5a22df42013-12-05 17:56:02 +00001649getNextResourceCycle(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
Andrew Trick8c9e6722012-06-29 03:23:24 +00001660/// 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.
Andrew Trickfc127d12013-12-07 05:59:44 +00001673bool SchedBoundary::checkHazard(SUnit *SU) {
Andrew Trickd14d7c22013-12-28 21:56:57 +00001674 if (HazardRec->isEnabled()
1675 && HazardRec->getHazardType(SU) != ScheduleHazardRecognizer::NoHazard) {
1676 return true;
1677 }
Andrew Trickdd79f0f2012-10-10 05:43:09 +00001678 unsigned uops = SchedModel->getNumMicroOps(SU->getInstr());
Andrew Tricke2ff5752013-06-15 04:49:49 +00001679 if ((CurrMOps > 0) && (CurrMOps + uops > SchedModel->getIssueWidth())) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001680 DEBUG(dbgs() << " SU(" << SU->NodeNum << ") uops="
1681 << SchedModel->getNumMicroOps(SU->getInstr()) << '\n');
Andrew Trick8c9e6722012-06-29 03:23:24 +00001682 return true;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001683 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001684 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) {
Andrew Trick56327222014-06-27 04:57:05 +00001689 unsigned NRCycle = getNextResourceCycle(PI->ProcResourceIdx, PI->Cycles);
1690 if (NRCycle > CurrCycle) {
Andrew Trick040c0da2014-06-27 05:09:36 +00001691#ifndef NDEBUG
Chad Rosieraba845e2014-07-02 16:46:08 +00001692 MaxObservedStall = std::max(PI->Cycles, MaxObservedStall);
Andrew Trick040c0da2014-06-27 05:09:36 +00001693#endif
Andrew Trick56327222014-06-27 04:57:05 +00001694 DEBUG(dbgs() << " SU(" << SU->NodeNum << ") "
1695 << SchedModel->getResourceName(PI->ProcResourceIdx)
1696 << "=" << NRCycle << "c\n");
Andrew Trick5a22df42013-12-05 17:56:02 +00001697 return true;
Andrew Trick56327222014-06-27 04:57:05 +00001698 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001699 }
1700 }
Andrew Trick8c9e6722012-06-29 03:23:24 +00001701 return false;
1702}
1703
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001704// Find the unscheduled node in ReadySUs with the highest latency.
Andrew Trickfc127d12013-12-07 05:59:44 +00001705unsigned SchedBoundary::
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001706findMaxLatency(ArrayRef<SUnit*> ReadySUs) {
Craig Topperc0196b12014-04-14 00:51:57 +00001707 SUnit *LateSU = nullptr;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001708 unsigned RemLatency = 0;
1709 for (ArrayRef<SUnit*>::iterator I = ReadySUs.begin(), E = ReadySUs.end();
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001710 I != E; ++I) {
1711 unsigned L = getUnscheduledLatency(*I);
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001712 if (L > RemLatency) {
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001713 RemLatency = L;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001714 LateSU = *I;
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001715 }
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001716 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001717 if (LateSU) {
1718 DEBUG(dbgs() << Available.getName() << " RemLatency SU("
1719 << LateSU->NodeNum << ") " << RemLatency << "c\n");
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001720 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001721 return RemLatency;
1722}
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001723
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001724// 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.
Andrew Trickfc127d12013-12-07 05:59:44 +00001727unsigned SchedBoundary::
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001728getOtherResourceCount(unsigned &OtherCritIdx) {
Alexey Samsonov64c391d2013-07-19 08:55:18 +00001729 OtherCritIdx = 0;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001730 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');
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001737 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 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001744 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001745 if (OtherCritIdx) {
1746 DEBUG(dbgs() << " " << Available.getName() << " + Remain CritRes: "
1747 << OtherCritCount / SchedModel->getResourceFactor(OtherCritIdx)
Andrew Trickfc127d12013-12-07 05:59:44 +00001748 << " " << SchedModel->getResourceName(OtherCritIdx) << "\n");
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001749 }
1750 return OtherCritCount;
1751}
1752
Andrew Trickfc127d12013-12-07 05:59:44 +00001753void SchedBoundary::releaseNode(SUnit *SU, unsigned ReadyCycle) {
Andrew Trick7f1ebbe2014-06-07 01:48:43 +00001754 assert(SU->getInstr() && "Scheduled SUnit must have instr");
1755
1756#ifndef NDEBUG
Andrew Trick491e34a2014-06-12 22:36:28 +00001757 // 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);
Andrew Trick7f1ebbe2014-06-07 01:48:43 +00001762#endif
1763
Andrew Trick61f1a272012-05-24 22:11:09 +00001764 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.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001769 bool IsBuffered = SchedModel->getMicroOpBufferSize() != 0;
1770 if ((!IsBuffered && ReadyCycle > CurrCycle) || checkHazard(SU))
Andrew Trick61f1a272012-05-24 22:11:09 +00001771 Pending.push(SU);
1772 else
1773 Available.push(SU);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001774
1775 // Record this node as an immediate dependent of the scheduled node.
1776 NextSUs.insert(SU);
Andrew Trick61f1a272012-05-24 22:11:09 +00001777}
1778
Andrew Trickfc127d12013-12-07 05:59:44 +00001779void SchedBoundary::releaseTopNode(SUnit *SU) {
1780 if (SU->isScheduled)
1781 return;
1782
Andrew Trickfc127d12013-12-07 05:59:44 +00001783 releaseNode(SU, SU->TopReadyCycle);
1784}
1785
1786void SchedBoundary::releaseBottomNode(SUnit *SU) {
1787 if (SU->isScheduled)
1788 return;
1789
Andrew Trickfc127d12013-12-07 05:59:44 +00001790 releaseNode(SU, SU->BotReadyCycle);
1791}
1792
Andrew Trick61f1a272012-05-24 22:11:09 +00001793/// Move the boundary of scheduled code by one cycle.
Andrew Trickfc127d12013-12-07 05:59:44 +00001794void SchedBoundary::bumpCycle(unsigned NextCycle) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001795 if (SchedModel->getMicroOpBufferSize() == 0) {
1796 assert(MinReadyCycle < UINT_MAX && "MinReadyCycle uninitialized");
1797 if (MinReadyCycle > NextCycle)
1798 NextCycle = MinReadyCycle;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001799 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001800 // 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.
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001805 if ((NextCycle - CurrCycle) > DependentLatency)
1806 DependentLatency = 0;
1807 else
1808 DependentLatency -= (NextCycle - CurrCycle);
Andrew Trick61f1a272012-05-24 22:11:09 +00001809
1810 if (!HazardRec->isEnabled()) {
Andrew Trick45446062012-06-05 21:11:27 +00001811 // Bypass HazardRec virtual calls.
Andrew Trick61f1a272012-05-24 22:11:09 +00001812 CurrCycle = NextCycle;
1813 }
1814 else {
Andrew Trick45446062012-06-05 21:11:27 +00001815 // Bypass getHazardType calls in case of long latency.
Andrew Trick61f1a272012-05-24 22:11:09 +00001816 for (; CurrCycle != NextCycle; ++CurrCycle) {
1817 if (isTop())
1818 HazardRec->AdvanceCycle();
1819 else
1820 HazardRec->RecedeCycle();
1821 }
1822 }
1823 CheckPending = true;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001824 unsigned LFactor = SchedModel->getLatencyFactor();
1825 IsResourceLimited =
1826 (int)(getCriticalCount() - (getScheduledLatency() * LFactor))
1827 > (int)LFactor;
Andrew Trick61f1a272012-05-24 22:11:09 +00001828
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001829 DEBUG(dbgs() << "Cycle: " << CurrCycle << ' ' << Available.getName() << '\n');
1830}
1831
Andrew Trickfc127d12013-12-07 05:59:44 +00001832void SchedBoundary::incExecutedResources(unsigned PIdx, unsigned Count) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001833 ExecutedResCounts[PIdx] += Count;
1834 if (ExecutedResCounts[PIdx] > MaxExecutedResCount)
1835 MaxExecutedResCount = ExecutedResCounts[PIdx];
Andrew Trick61f1a272012-05-24 22:11:09 +00001836}
1837
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001838/// Add the given processor resource to this scheduled zone.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001839///
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.
Andrew Trickfc127d12013-12-07 05:59:44 +00001845unsigned SchedBoundary::
Andrew Trick5a22df42013-12-05 17:56:02 +00001846countResource(unsigned PIdx, unsigned Cycles, unsigned NextCycle) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001847 unsigned Factor = SchedModel->getResourceFactor(PIdx);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001848 unsigned Count = Factor * Cycles;
Andrew Trickfc127d12013-12-07 05:59:44 +00001849 DEBUG(dbgs() << " " << SchedModel->getResourceName(PIdx)
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001850 << " +" << Cycles << "x" << Factor << "u\n");
1851
1852 // Update Executed resources counts.
1853 incExecutedResources(PIdx, Count);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001854 assert(Rem->RemainingCounts[PIdx] >= Count && "resource double counted");
1855 Rem->RemainingCounts[PIdx] -= Count;
1856
Andrew Trickb13ef172013-07-19 00:20:07 +00001857 // Check if this resource exceeds the current critical resource. If so, it
1858 // becomes the critical resource.
1859 if (ZoneCritResIdx != PIdx && (getResourceCount(PIdx) > getCriticalCount())) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001860 ZoneCritResIdx = PIdx;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001861 DEBUG(dbgs() << " *** Critical resource "
Andrew Trickfc127d12013-12-07 05:59:44 +00001862 << SchedModel->getResourceName(PIdx) << ": "
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001863 << getResourceCount(PIdx) / SchedModel->getLatencyFactor() << "c\n");
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001864 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001865 // 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;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001873}
1874
Andrew Trick45446062012-06-05 21:11:27 +00001875/// Move the boundary of scheduled code by one SUnit.
Andrew Trickfc127d12013-12-07 05:59:44 +00001876void SchedBoundary::bumpNode(SUnit *SU) {
Andrew Trick45446062012-06-05 21:11:27 +00001877 // 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 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001886 // checkHazard should prevent scheduling multiple instructions per cycle that
1887 // exceed the issue width.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001888 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
1889 unsigned IncMOps = SchedModel->getNumMicroOps(SU->getInstr());
Daniel Jasper0d92abd2013-12-06 08:58:22 +00001890 assert(
1891 (CurrMOps == 0 || (CurrMOps + IncMOps) <= SchedModel->getIssueWidth()) &&
Andrew Trickf7760a22013-12-06 17:19:20 +00001892 "Cannot schedule this instruction's MicroOps in the current cycle.");
Andrew Trick5a22df42013-12-05 17:56:02 +00001893
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001894 unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle);
1895 DEBUG(dbgs() << " Ready @" << ReadyCycle << "c\n");
1896
Andrew Trick5a22df42013-12-05 17:56:02 +00001897 unsigned NextCycle = CurrCycle;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001898 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
Andrew Trick880e5732013-12-05 17:55:58 +00001910 // 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;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001915 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 =
Andrew Trick5a22df42013-12-05 17:56:02 +00001942 countResource(PI->ProcResourceIdx, PI->Cycles, NextCycle);
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001943 if (RCycle > NextCycle)
1944 NextCycle = RCycle;
1945 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001946 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;
Andrew Trickd14d7c22013-12-28 21:56:57 +00001955 if (SchedModel->getProcResource(PIdx)->BufferSize == 0) {
Chad Rosieraba845e2014-07-02 16:46:08 +00001956 if (isTop()) {
1957 ReservedCycles[PIdx] =
1958 std::max(getNextResourceCycle(PIdx, 0), NextCycle + PI->Cycles);
1959 }
1960 else
1961 ReservedCycles[PIdx] = NextCycle;
Andrew Trickd14d7c22013-12-28 21:56:57 +00001962 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001963 }
1964 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001965 }
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
Alp Tokercb402912014-01-24 17:20:08 +00001985 // resource limited. If a stall occurred, bumpCycle does this.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001986 unsigned LFactor = SchedModel->getLatencyFactor();
1987 IsResourceLimited =
1988 (int)(getCriticalCount() - (getScheduledLatency() * LFactor))
1989 > (int)LFactor;
1990 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001991 // 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()) {
Andrew Trick5a22df42013-12-05 17:56:02 +00001997 DEBUG(dbgs() << " *** Max MOps " << CurrMOps
1998 << " at cycle " << CurrCycle << '\n');
Andrew Trickd14d7c22013-12-28 21:56:57 +00001999 bumpCycle(++NextCycle);
Andrew Trick5a22df42013-12-05 17:56:02 +00002000 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002001 DEBUG(dumpScheduledState());
Andrew Trick45446062012-06-05 21:11:27 +00002002}
2003
Andrew Trick61f1a272012-05-24 22:11:09 +00002004/// Release pending ready nodes in to the available queue. This makes them
2005/// visible to heuristics.
Andrew Trickfc127d12013-12-07 05:59:44 +00002006void SchedBoundary::releasePending() {
Andrew Trick61f1a272012-05-24 22:11:09 +00002007 // 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.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002013 bool IsBuffered = SchedModel->getMicroOpBufferSize() != 0;
Andrew Trick61f1a272012-05-24 22:11:09 +00002014 for (unsigned i = 0, e = Pending.size(); i != e; ++i) {
2015 SUnit *SU = *(Pending.begin()+i);
Andrew Trick45446062012-06-05 21:11:27 +00002016 unsigned ReadyCycle = isTop() ? SU->TopReadyCycle : SU->BotReadyCycle;
Andrew Trick61f1a272012-05-24 22:11:09 +00002017
2018 if (ReadyCycle < MinReadyCycle)
2019 MinReadyCycle = ReadyCycle;
2020
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002021 if (!IsBuffered && ReadyCycle > CurrCycle)
Andrew Trick61f1a272012-05-24 22:11:09 +00002022 continue;
2023
Andrew Trick8c9e6722012-06-29 03:23:24 +00002024 if (checkHazard(SU))
Andrew Trick61f1a272012-05-24 22:11:09 +00002025 continue;
2026
2027 Available.push(SU);
2028 Pending.remove(Pending.begin()+i);
2029 --i; --e;
2030 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002031 DEBUG(if (!Pending.empty()) Pending.dump());
Andrew Trick61f1a272012-05-24 22:11:09 +00002032 CheckPending = false;
2033}
2034
2035/// Remove SU from the ready set for this boundary.
Andrew Trickfc127d12013-12-07 05:59:44 +00002036void SchedBoundary::removeReady(SUnit *SU) {
Andrew Trick61f1a272012-05-24 22:11:09 +00002037 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,
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002046/// 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.
Andrew Trickfc127d12013-12-07 05:59:44 +00002048SUnit *SchedBoundary::pickOnlyChoice() {
Andrew Trick61f1a272012-05-24 22:11:09 +00002049 if (CheckPending)
2050 releasePending();
2051
Andrew Tricke2ff5752013-06-15 04:49:49 +00002052 if (CurrMOps > 0) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002053 // 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 }
Andrew Trick61f1a272012-05-24 22:11:09 +00002063 for (unsigned i = 0; Available.empty(); ++i) {
Chad Rosieraba845e2014-07-02 16:46:08 +00002064// FIXME: Re-enable assert once PR20057 is resolved.
2065// assert(i <= (HazardRec->getMaxLookAhead() + MaxObservedStall) &&
2066// "permanent hazard");
2067 (void)i;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002068 bumpCycle(CurrCycle + 1);
Andrew Trick61f1a272012-05-24 22:11:09 +00002069 releasePending();
2070 }
2071 if (Available.size() == 1)
2072 return *Available.begin();
Craig Topperc0196b12014-04-14 00:51:57 +00002073 return nullptr;
Andrew Trick61f1a272012-05-24 22:11:09 +00002074}
2075
Andrew Trick8e8415f2013-06-15 05:46:47 +00002076#ifndef NDEBUG
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002077// This is useful information to dump after bumpNode.
2078// Note that the Queue contents are more useful before pickNodeFromQueue.
Andrew Trickfc127d12013-12-07 05:59:44 +00002079void SchedBoundary::dumpScheduledState() {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002080 unsigned ResFactor;
2081 unsigned ResCount;
2082 if (ZoneCritResIdx) {
2083 ResFactor = SchedModel->getResourceFactor(ZoneCritResIdx);
2084 ResCount = getResourceCount(ZoneCritResIdx);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002085 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002086 else {
2087 ResFactor = SchedModel->getMicroOpFactor();
2088 ResCount = RetiredMOps * SchedModel->getMicroOpFactor();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002089 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002090 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, "
Andrew Trickfc127d12013-12-07 05:59:44 +00002095 << ResCount / ResFactor << " "
2096 << SchedModel->getResourceName(ZoneCritResIdx)
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002097 << "\n ExpectedLatency: " << ExpectedLatency << "c\n"
2098 << (IsResourceLimited ? " - Resource" : " - Latency")
2099 << " limited.\n";
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002100}
Andrew Trick8e8415f2013-06-15 05:46:47 +00002101#endif
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002102
Andrew Trickfc127d12013-12-07 05:59:44 +00002103//===----------------------------------------------------------------------===//
Andrew Trickd14d7c22013-12-28 21:56:57 +00002104// GenericScheduler - Generic implementation of MachineSchedStrategy.
Andrew Trickfc127d12013-12-07 05:59:44 +00002105//===----------------------------------------------------------------------===//
2106
Andrew Trickd14d7c22013-12-28 21:56:57 +00002107void 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.
Andrew Trick7afe4812013-12-28 22:25:57 +00002154 unsigned OtherCritIdx = 0;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002155 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
Andrew Trickfc127d12013-12-07 05:59:44 +00002342void GenericScheduler::initialize(ScheduleDAGMI *dag) {
Andrew Trickd7f890e2013-12-28 21:56:47 +00002343 assert(dag->hasVRegLiveness() &&
2344 "(PreRA)GenericScheduler needs vreg liveness");
2345 DAG = static_cast<ScheduleDAGMILive*>(dag);
Andrew Trickfc127d12013-12-07 05:59:44 +00002346 SchedModel = DAG->getSchedModel();
2347 TRI = DAG->TRI;
2348
2349 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 =
Eric Christopherd9134482014-08-04 21:25:23 +00002361 TM.getSubtargetImpl()->getInstrInfo()->CreateTargetMIHazardRecognizer(
2362 Itin, DAG);
Andrew Trickfc127d12013-12-07 05:59:44 +00002363 }
2364 if (!Bot.HazardRec) {
2365 Bot.HazardRec =
Eric Christopherd9134482014-08-04 21:25:23 +00002366 TM.getSubtargetImpl()->getInstrInfo()->CreateTargetMIHazardRecognizer(
2367 Itin, DAG);
Andrew Trickfc127d12013-12-07 05:59:44 +00002368 }
2369}
2370
2371/// Initialize the per-region scheduling policy.
2372void GenericScheduler::initPolicy(MachineBasicBlock::iterator Begin,
2373 MachineBasicBlock::iterator End,
2374 unsigned NumRegionInstrs) {
2375 const TargetMachine &TM = Context->MF->getTarget();
Eric Christopherd9134482014-08-04 21:25:23 +00002376 const TargetLowering *TLI = TM.getSubtargetImpl()->getTargetLowering();
Andrew Trickfc127d12013-12-07 05:59:44 +00002377
2378 // Avoid setting up the register pressure tracker for small regions to save
2379 // compile time. As a rough heuristic, only track pressure when the number of
2380 // schedulable instructions exceeds half the integer register file.
Andrew Trick350ff2c2014-01-21 21:27:37 +00002381 RegionPolicy.ShouldTrackPressure = true;
Andrew Trick46753512014-01-22 03:38:55 +00002382 for (unsigned VT = MVT::i32; VT > (unsigned)MVT::i1; --VT) {
2383 MVT::SimpleValueType LegalIntVT = (MVT::SimpleValueType)VT;
2384 if (TLI->isTypeLegal(LegalIntVT)) {
Andrew Trick350ff2c2014-01-21 21:27:37 +00002385 unsigned NIntRegs = Context->RegClassInfo->getNumAllocatableRegs(
Andrew Trick46753512014-01-22 03:38:55 +00002386 TLI->getRegClassFor(LegalIntVT));
Andrew Trick350ff2c2014-01-21 21:27:37 +00002387 RegionPolicy.ShouldTrackPressure = NumRegionInstrs > (NIntRegs / 2);
2388 }
2389 }
Andrew Trickfc127d12013-12-07 05:59:44 +00002390
2391 // For generic targets, we default to bottom-up, because it's simpler and more
2392 // compile-time optimizations have been implemented in that direction.
2393 RegionPolicy.OnlyBottomUp = true;
2394
2395 // Allow the subtarget to override default policy.
2396 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>();
2397 ST.overrideSchedPolicy(RegionPolicy, Begin, End, NumRegionInstrs);
2398
2399 // After subtarget overrides, apply command line options.
2400 if (!EnableRegPressure)
2401 RegionPolicy.ShouldTrackPressure = false;
2402
2403 // Check -misched-topdown/bottomup can force or unforce scheduling direction.
2404 // e.g. -misched-bottomup=false allows scheduling in both directions.
2405 assert((!ForceTopDown || !ForceBottomUp) &&
2406 "-misched-topdown incompatible with -misched-bottomup");
2407 if (ForceBottomUp.getNumOccurrences() > 0) {
2408 RegionPolicy.OnlyBottomUp = ForceBottomUp;
2409 if (RegionPolicy.OnlyBottomUp)
2410 RegionPolicy.OnlyTopDown = false;
2411 }
2412 if (ForceTopDown.getNumOccurrences() > 0) {
2413 RegionPolicy.OnlyTopDown = ForceTopDown;
2414 if (RegionPolicy.OnlyTopDown)
2415 RegionPolicy.OnlyBottomUp = false;
2416 }
2417}
2418
2419/// Set IsAcyclicLatencyLimited if the acyclic path is longer than the cyclic
2420/// critical path by more cycles than it takes to drain the instruction buffer.
2421/// We estimate an upper bounds on in-flight instructions as:
2422///
2423/// CyclesPerIteration = max( CyclicPath, Loop-Resource-Height )
2424/// InFlightIterations = AcyclicPath / CyclesPerIteration
2425/// InFlightResources = InFlightIterations * LoopResources
2426///
2427/// TODO: Check execution resources in addition to IssueCount.
2428void GenericScheduler::checkAcyclicLatency() {
2429 if (Rem.CyclicCritPath == 0 || Rem.CyclicCritPath >= Rem.CriticalPath)
2430 return;
2431
2432 // Scaled number of cycles per loop iteration.
2433 unsigned IterCount =
2434 std::max(Rem.CyclicCritPath * SchedModel->getLatencyFactor(),
2435 Rem.RemIssueCount);
2436 // Scaled acyclic critical path.
2437 unsigned AcyclicCount = Rem.CriticalPath * SchedModel->getLatencyFactor();
2438 // InFlightCount = (AcyclicPath / IterCycles) * InstrPerLoop
2439 unsigned InFlightCount =
2440 (AcyclicCount * Rem.RemIssueCount + IterCount-1) / IterCount;
2441 unsigned BufferLimit =
2442 SchedModel->getMicroOpBufferSize() * SchedModel->getMicroOpFactor();
2443
2444 Rem.IsAcyclicLatencyLimited = InFlightCount > BufferLimit;
2445
2446 DEBUG(dbgs() << "IssueCycles="
2447 << Rem.RemIssueCount / SchedModel->getLatencyFactor() << "c "
2448 << "IterCycles=" << IterCount / SchedModel->getLatencyFactor()
2449 << "c NumIters=" << (AcyclicCount + IterCount-1) / IterCount
2450 << " InFlight=" << InFlightCount / SchedModel->getMicroOpFactor()
2451 << "m BufferLim=" << SchedModel->getMicroOpBufferSize() << "m\n";
2452 if (Rem.IsAcyclicLatencyLimited)
2453 dbgs() << " ACYCLIC LATENCY LIMIT\n");
2454}
2455
2456void GenericScheduler::registerRoots() {
2457 Rem.CriticalPath = DAG->ExitSU.getDepth();
2458
2459 // Some roots may not feed into ExitSU. Check all of them in case.
2460 for (std::vector<SUnit*>::const_iterator
2461 I = Bot.Available.begin(), E = Bot.Available.end(); I != E; ++I) {
2462 if ((*I)->getDepth() > Rem.CriticalPath)
2463 Rem.CriticalPath = (*I)->getDepth();
2464 }
2465 DEBUG(dbgs() << "Critical Path: " << Rem.CriticalPath << '\n');
2466
2467 if (EnableCyclicPath) {
2468 Rem.CyclicCritPath = DAG->computeCyclicCriticalPath();
2469 checkAcyclicLatency();
2470 }
2471}
2472
Andrew Trick1a831342013-08-30 03:49:48 +00002473static bool tryPressure(const PressureChange &TryP,
2474 const PressureChange &CandP,
Andrew Trickd14d7c22013-12-28 21:56:57 +00002475 GenericSchedulerBase::SchedCandidate &TryCand,
2476 GenericSchedulerBase::SchedCandidate &Cand,
2477 GenericSchedulerBase::CandReason Reason) {
Andrew Trickb1a45b62013-08-30 04:27:29 +00002478 int TryRank = TryP.getPSetOrMax();
2479 int CandRank = CandP.getPSetOrMax();
2480 // If both candidates affect the same set, go with the smallest increase.
2481 if (TryRank == CandRank) {
2482 return tryLess(TryP.getUnitInc(), CandP.getUnitInc(), TryCand, Cand,
2483 Reason);
Andrew Trick401b6952013-07-25 07:26:35 +00002484 }
Andrew Trickb1a45b62013-08-30 04:27:29 +00002485 // If one candidate decreases and the other increases, go with it.
2486 // Invalid candidates have UnitInc==0.
2487 if (tryLess(TryP.getUnitInc() < 0, CandP.getUnitInc() < 0, TryCand, Cand,
2488 Reason)) {
2489 return true;
2490 }
Andrew Trick401b6952013-07-25 07:26:35 +00002491 // If the candidates are decreasing pressure, reverse priority.
Andrew Trick1a831342013-08-30 03:49:48 +00002492 if (TryP.getUnitInc() < 0)
Andrew Trick401b6952013-07-25 07:26:35 +00002493 std::swap(TryRank, CandRank);
2494 return tryGreater(TryRank, CandRank, TryCand, Cand, Reason);
2495}
2496
Andrew Tricka7714a02012-11-12 19:40:10 +00002497static unsigned getWeakLeft(const SUnit *SU, bool isTop) {
2498 return (isTop) ? SU->WeakPredsLeft : SU->WeakSuccsLeft;
2499}
2500
Andrew Tricke833e1c2013-04-13 06:07:40 +00002501/// Minimize physical register live ranges. Regalloc wants them adjacent to
2502/// their physreg def/use.
2503///
2504/// FIXME: This is an unnecessary check on the critical path. Most are root/leaf
2505/// copies which can be prescheduled. The rest (e.g. x86 MUL) could be bundled
2506/// with the operation that produces or consumes the physreg. We'll do this when
2507/// regalloc has support for parallel copies.
2508static int biasPhysRegCopy(const SUnit *SU, bool isTop) {
2509 const MachineInstr *MI = SU->getInstr();
2510 if (!MI->isCopy())
2511 return 0;
2512
2513 unsigned ScheduledOper = isTop ? 1 : 0;
2514 unsigned UnscheduledOper = isTop ? 0 : 1;
2515 // If we have already scheduled the physreg produce/consumer, immediately
2516 // schedule the copy.
2517 if (TargetRegisterInfo::isPhysicalRegister(
2518 MI->getOperand(ScheduledOper).getReg()))
2519 return 1;
2520 // If the physreg is at the boundary, defer it. Otherwise schedule it
2521 // immediately to free the dependent. We can hoist the copy later.
2522 bool AtBoundary = isTop ? !SU->NumSuccsLeft : !SU->NumPredsLeft;
2523 if (TargetRegisterInfo::isPhysicalRegister(
2524 MI->getOperand(UnscheduledOper).getReg()))
2525 return AtBoundary ? -1 : 1;
2526 return 0;
2527}
2528
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002529/// Apply a set of heursitics to a new candidate. Heuristics are currently
2530/// hierarchical. This may be more efficient than a graduated cost model because
2531/// we don't need to evaluate all aspects of the model for each node in the
2532/// queue. But it's really done to make the heuristics easier to debug and
2533/// statistically analyze.
2534///
2535/// \param Cand provides the policy and current best candidate.
2536/// \param TryCand refers to the next SUnit candidate, otherwise uninitialized.
2537/// \param Zone describes the scheduled zone that we are extending.
2538/// \param RPTracker describes reg pressure within the scheduled zone.
2539/// \param TempTracker is a scratch pressure tracker to reuse in queries.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002540void GenericScheduler::tryCandidate(SchedCandidate &Cand,
Andrew Trickbb1247b2013-12-05 17:55:47 +00002541 SchedCandidate &TryCand,
2542 SchedBoundary &Zone,
2543 const RegPressureTracker &RPTracker,
2544 RegPressureTracker &TempTracker) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002545
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002546 if (DAG->isTrackingPressure()) {
Andrew Trick310190e2013-09-04 21:00:02 +00002547 // Always initialize TryCand's RPDelta.
2548 if (Zone.isTop()) {
2549 TempTracker.getMaxDownwardPressureDelta(
Andrew Trick1a831342013-08-30 03:49:48 +00002550 TryCand.SU->getInstr(),
Andrew Trick1a831342013-08-30 03:49:48 +00002551 TryCand.RPDelta,
2552 DAG->getRegionCriticalPSets(),
2553 DAG->getRegPressure().MaxSetPressure);
2554 }
2555 else {
Andrew Trick310190e2013-09-04 21:00:02 +00002556 if (VerifyScheduling) {
2557 TempTracker.getMaxUpwardPressureDelta(
2558 TryCand.SU->getInstr(),
2559 &DAG->getPressureDiff(TryCand.SU),
2560 TryCand.RPDelta,
2561 DAG->getRegionCriticalPSets(),
2562 DAG->getRegPressure().MaxSetPressure);
2563 }
2564 else {
2565 RPTracker.getUpwardPressureDelta(
2566 TryCand.SU->getInstr(),
2567 DAG->getPressureDiff(TryCand.SU),
2568 TryCand.RPDelta,
2569 DAG->getRegionCriticalPSets(),
2570 DAG->getRegPressure().MaxSetPressure);
2571 }
Andrew Trick1a831342013-08-30 03:49:48 +00002572 }
2573 }
Andrew Trickc573cd92013-09-06 17:32:44 +00002574 DEBUG(if (TryCand.RPDelta.Excess.isValid())
2575 dbgs() << " SU(" << TryCand.SU->NodeNum << ") "
2576 << TRI->getRegPressureSetName(TryCand.RPDelta.Excess.getPSet())
2577 << ":" << TryCand.RPDelta.Excess.getUnitInc() << "\n");
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002578
2579 // Initialize the candidate if needed.
2580 if (!Cand.isValid()) {
2581 TryCand.Reason = NodeOrder;
2582 return;
2583 }
Andrew Tricke833e1c2013-04-13 06:07:40 +00002584
2585 if (tryGreater(biasPhysRegCopy(TryCand.SU, Zone.isTop()),
2586 biasPhysRegCopy(Cand.SU, Zone.isTop()),
2587 TryCand, Cand, PhysRegCopy))
2588 return;
2589
Andrew Trick401b6952013-07-25 07:26:35 +00002590 // Avoid exceeding the target's limit. If signed PSetID is negative, it is
2591 // invalid; convert it to INT_MAX to give it lowest priority.
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002592 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.Excess,
2593 Cand.RPDelta.Excess,
2594 TryCand, Cand, RegExcess))
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002595 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002596
2597 // Avoid increasing the max critical pressure in the scheduled region.
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002598 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.CriticalMax,
2599 Cand.RPDelta.CriticalMax,
2600 TryCand, Cand, RegCritical))
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002601 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002602
Andrew Trickddffae92013-09-06 17:32:36 +00002603 // For loops that are acyclic path limited, aggressively schedule for latency.
Andrew Tricke1f7bf22013-09-09 22:28:08 +00002604 // This can result in very long dependence chains scheduled in sequence, so
2605 // once every cycle (when CurrMOps == 0), switch to normal heuristics.
Andrew Trickfc127d12013-12-07 05:59:44 +00002606 if (Rem.IsAcyclicLatencyLimited && !Zone.getCurrMOps()
Andrew Tricke1f7bf22013-09-09 22:28:08 +00002607 && tryLatency(TryCand, Cand, Zone))
Andrew Trickddffae92013-09-06 17:32:36 +00002608 return;
2609
Andrew Trick880e5732013-12-05 17:55:58 +00002610 // Prioritize instructions that read unbuffered resources by stall cycles.
2611 if (tryLess(Zone.getLatencyStallCycles(TryCand.SU),
2612 Zone.getLatencyStallCycles(Cand.SU), TryCand, Cand, Stall))
2613 return;
2614
Andrew Tricka7714a02012-11-12 19:40:10 +00002615 // Keep clustered nodes together to encourage downstream peephole
2616 // optimizations which may reduce resource requirements.
2617 //
2618 // This is a best effort to set things up for a post-RA pass. Optimizations
2619 // like generating loads of multiple registers should ideally be done within
2620 // the scheduler pass by combining the loads during DAG postprocessing.
2621 const SUnit *NextClusterSU =
2622 Zone.isTop() ? DAG->getNextClusterSucc() : DAG->getNextClusterPred();
2623 if (tryGreater(TryCand.SU == NextClusterSU, Cand.SU == NextClusterSU,
2624 TryCand, Cand, Cluster))
2625 return;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00002626
2627 // Weak edges are for clustering and other constraints.
Andrew Tricka7714a02012-11-12 19:40:10 +00002628 if (tryLess(getWeakLeft(TryCand.SU, Zone.isTop()),
2629 getWeakLeft(Cand.SU, Zone.isTop()),
Andrew Trick85a1d4c2013-04-24 15:54:43 +00002630 TryCand, Cand, Weak)) {
Andrew Tricka7714a02012-11-12 19:40:10 +00002631 return;
2632 }
Andrew Trick71f08a32013-06-17 21:45:13 +00002633 // Avoid increasing the max pressure of the entire region.
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002634 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.CurrentMax,
2635 Cand.RPDelta.CurrentMax,
2636 TryCand, Cand, RegMax))
Andrew Trick71f08a32013-06-17 21:45:13 +00002637 return;
2638
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002639 // Avoid critical resource consumption and balance the schedule.
2640 TryCand.initResourceDelta(DAG, SchedModel);
2641 if (tryLess(TryCand.ResDelta.CritResources, Cand.ResDelta.CritResources,
2642 TryCand, Cand, ResourceReduce))
2643 return;
2644 if (tryGreater(TryCand.ResDelta.DemandedResources,
2645 Cand.ResDelta.DemandedResources,
2646 TryCand, Cand, ResourceDemand))
2647 return;
2648
2649 // Avoid serializing long latency dependence chains.
Andrew Trickc01b0042013-08-23 17:48:43 +00002650 // For acyclic path limited loops, latency was already checked above.
2651 if (Cand.Policy.ReduceLatency && !Rem.IsAcyclicLatencyLimited
2652 && tryLatency(TryCand, Cand, Zone)) {
2653 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002654 }
2655
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002656 // Prefer immediate defs/users of the last scheduled instruction. This is a
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002657 // local pressure avoidance strategy that also makes the machine code
2658 // readable.
Andrew Trickfc127d12013-12-07 05:59:44 +00002659 if (tryGreater(Zone.isNextSU(TryCand.SU), Zone.isNextSU(Cand.SU),
Andrew Tricka7714a02012-11-12 19:40:10 +00002660 TryCand, Cand, NextDefUse))
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002661 return;
Andrew Tricka7714a02012-11-12 19:40:10 +00002662
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002663 // Fall through to original instruction order.
2664 if ((Zone.isTop() && TryCand.SU->NodeNum < Cand.SU->NodeNum)
2665 || (!Zone.isTop() && TryCand.SU->NodeNum > Cand.SU->NodeNum)) {
2666 TryCand.Reason = NodeOrder;
2667 }
2668}
Andrew Trick419eae22012-05-10 21:06:19 +00002669
Andrew Trickc573cd92013-09-06 17:32:44 +00002670/// Pick the best candidate from the queue.
Andrew Trick7ee9de52012-05-10 21:06:16 +00002671///
2672/// TODO: getMaxPressureDelta results can be mostly cached for each SUnit during
2673/// DAG building. To adjust for the current scheduling location we need to
2674/// maintain the number of vreg uses remaining to be top-scheduled.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002675void GenericScheduler::pickNodeFromQueue(SchedBoundary &Zone,
Andrew Trickbb1247b2013-12-05 17:55:47 +00002676 const RegPressureTracker &RPTracker,
2677 SchedCandidate &Cand) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002678 ReadyQueue &Q = Zone.Available;
2679
Andrew Tricka8ad5f72012-05-24 22:11:12 +00002680 DEBUG(Q.dump());
Andrew Trick22025772012-05-17 18:35:10 +00002681
Andrew Trick7ee9de52012-05-10 21:06:16 +00002682 // getMaxPressureDelta temporarily modifies the tracker.
2683 RegPressureTracker &TempTracker = const_cast<RegPressureTracker&>(RPTracker);
2684
Andrew Trickdd375dd2012-05-24 22:11:03 +00002685 for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) {
Andrew Trick7ee9de52012-05-10 21:06:16 +00002686
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002687 SchedCandidate TryCand(Cand.Policy);
2688 TryCand.SU = *I;
2689 tryCandidate(Cand, TryCand, Zone, RPTracker, TempTracker);
2690 if (TryCand.Reason != NoCand) {
2691 // Initialize resource delta if needed in case future heuristics query it.
2692 if (TryCand.ResDelta == SchedResourceDelta())
2693 TryCand.initResourceDelta(DAG, SchedModel);
2694 Cand.setBest(TryCand);
Andrew Trick419d4912013-04-05 00:31:29 +00002695 DEBUG(traceCandidate(Cand));
Andrew Trick22025772012-05-17 18:35:10 +00002696 }
Andrew Trick7ee9de52012-05-10 21:06:16 +00002697 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002698}
2699
Andrew Trick22025772012-05-17 18:35:10 +00002700/// Pick the best candidate node from either the top or bottom queue.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002701SUnit *GenericScheduler::pickNodeBidirectional(bool &IsTopNode) {
Andrew Trick22025772012-05-17 18:35:10 +00002702 // Schedule as far as possible in the direction of no choice. This is most
2703 // efficient, but also provides the best heuristics for CriticalPSets.
Andrew Trick61f1a272012-05-24 22:11:09 +00002704 if (SUnit *SU = Bot.pickOnlyChoice()) {
Andrew Trick22025772012-05-17 18:35:10 +00002705 IsTopNode = false;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002706 DEBUG(dbgs() << "Pick Bot NOCAND\n");
Andrew Trick61f1a272012-05-24 22:11:09 +00002707 return SU;
Andrew Trick22025772012-05-17 18:35:10 +00002708 }
Andrew Trick61f1a272012-05-24 22:11:09 +00002709 if (SUnit *SU = Top.pickOnlyChoice()) {
Andrew Trick22025772012-05-17 18:35:10 +00002710 IsTopNode = true;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002711 DEBUG(dbgs() << "Pick Top NOCAND\n");
Andrew Trick61f1a272012-05-24 22:11:09 +00002712 return SU;
Andrew Trick22025772012-05-17 18:35:10 +00002713 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002714 CandPolicy NoPolicy;
2715 SchedCandidate BotCand(NoPolicy);
2716 SchedCandidate TopCand(NoPolicy);
Andrew Trickfc127d12013-12-07 05:59:44 +00002717 // Set the bottom-up policy based on the state of the current bottom zone and
2718 // the instructions outside the zone, including the top zone.
Andrew Trickd14d7c22013-12-28 21:56:57 +00002719 setPolicy(BotCand.Policy, /*IsPostRA=*/false, Bot, &Top);
Andrew Trickfc127d12013-12-07 05:59:44 +00002720 // Set the top-down policy based on the state of the current top zone and
2721 // the instructions outside the zone, including the bottom zone.
Andrew Trickd14d7c22013-12-28 21:56:57 +00002722 setPolicy(TopCand.Policy, /*IsPostRA=*/false, Top, &Bot);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002723
Andrew Trick22025772012-05-17 18:35:10 +00002724 // Prefer bottom scheduling when heuristics are silent.
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002725 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand);
2726 assert(BotCand.Reason != NoCand && "failed to find the first candidate");
Andrew Trick22025772012-05-17 18:35:10 +00002727
2728 // If either Q has a single candidate that provides the least increase in
2729 // Excess pressure, we can immediately schedule from that Q.
2730 //
2731 // RegionCriticalPSets summarizes the pressure within the scheduled region and
2732 // affects picking from either Q. If scheduling in one direction must
2733 // increase pressure for one of the excess PSets, then schedule in that
2734 // direction first to provide more freedom in the other direction.
Andrew Trickd40d0f22013-06-17 21:45:05 +00002735 if ((BotCand.Reason == RegExcess && !BotCand.isRepeat(RegExcess))
2736 || (BotCand.Reason == RegCritical
2737 && !BotCand.isRepeat(RegCritical)))
2738 {
Andrew Trick22025772012-05-17 18:35:10 +00002739 IsTopNode = false;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002740 tracePick(BotCand, IsTopNode);
Andrew Trick61f1a272012-05-24 22:11:09 +00002741 return BotCand.SU;
Andrew Trick22025772012-05-17 18:35:10 +00002742 }
2743 // Check if the top Q has a better candidate.
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002744 pickNodeFromQueue(Top, DAG->getTopRPTracker(), TopCand);
2745 assert(TopCand.Reason != NoCand && "failed to find the first candidate");
Andrew Trick22025772012-05-17 18:35:10 +00002746
Andrew Trickd40d0f22013-06-17 21:45:05 +00002747 // Choose the queue with the most important (lowest enum) reason.
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002748 if (TopCand.Reason < BotCand.Reason) {
2749 IsTopNode = true;
2750 tracePick(TopCand, IsTopNode);
2751 return TopCand.SU;
2752 }
Andrew Trickd40d0f22013-06-17 21:45:05 +00002753 // Otherwise prefer the bottom candidate, in node order if all else failed.
Andrew Trick22025772012-05-17 18:35:10 +00002754 IsTopNode = false;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002755 tracePick(BotCand, IsTopNode);
Andrew Trick61f1a272012-05-24 22:11:09 +00002756 return BotCand.SU;
Andrew Trick22025772012-05-17 18:35:10 +00002757}
2758
2759/// Pick the best node to balance the schedule. Implements MachineSchedStrategy.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002760SUnit *GenericScheduler::pickNode(bool &IsTopNode) {
Andrew Trick7ee9de52012-05-10 21:06:16 +00002761 if (DAG->top() == DAG->bottom()) {
Andrew Trick61f1a272012-05-24 22:11:09 +00002762 assert(Top.Available.empty() && Top.Pending.empty() &&
2763 Bot.Available.empty() && Bot.Pending.empty() && "ReadyQ garbage");
Craig Topperc0196b12014-04-14 00:51:57 +00002764 return nullptr;
Andrew Trick7ee9de52012-05-10 21:06:16 +00002765 }
Andrew Trick7ee9de52012-05-10 21:06:16 +00002766 SUnit *SU;
Andrew Trick984d98b2012-10-08 18:53:53 +00002767 do {
Andrew Trick75e411c2013-09-06 17:32:34 +00002768 if (RegionPolicy.OnlyTopDown) {
Andrew Trick984d98b2012-10-08 18:53:53 +00002769 SU = Top.pickOnlyChoice();
2770 if (!SU) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002771 CandPolicy NoPolicy;
2772 SchedCandidate TopCand(NoPolicy);
2773 pickNodeFromQueue(Top, DAG->getTopRPTracker(), TopCand);
Andrew Trick1ab16d92013-09-04 21:00:13 +00002774 assert(TopCand.Reason != NoCand && "failed to find a candidate");
Andrew Trickef54c592013-09-04 21:00:16 +00002775 tracePick(TopCand, true);
Andrew Trick984d98b2012-10-08 18:53:53 +00002776 SU = TopCand.SU;
2777 }
2778 IsTopNode = true;
Andrew Tricka306a8a2012-05-24 23:11:17 +00002779 }
Andrew Trick75e411c2013-09-06 17:32:34 +00002780 else if (RegionPolicy.OnlyBottomUp) {
Andrew Trick984d98b2012-10-08 18:53:53 +00002781 SU = Bot.pickOnlyChoice();
2782 if (!SU) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002783 CandPolicy NoPolicy;
2784 SchedCandidate BotCand(NoPolicy);
2785 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand);
Andrew Trick1ab16d92013-09-04 21:00:13 +00002786 assert(BotCand.Reason != NoCand && "failed to find a candidate");
Andrew Trickef54c592013-09-04 21:00:16 +00002787 tracePick(BotCand, false);
Andrew Trick984d98b2012-10-08 18:53:53 +00002788 SU = BotCand.SU;
2789 }
2790 IsTopNode = false;
Andrew Tricka306a8a2012-05-24 23:11:17 +00002791 }
Andrew Trick984d98b2012-10-08 18:53:53 +00002792 else {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002793 SU = pickNodeBidirectional(IsTopNode);
Andrew Trick984d98b2012-10-08 18:53:53 +00002794 }
2795 } while (SU->isScheduled);
2796
Andrew Trick61f1a272012-05-24 22:11:09 +00002797 if (SU->isTopReady())
2798 Top.removeReady(SU);
2799 if (SU->isBottomReady())
2800 Bot.removeReady(SU);
Andrew Trick4e7f6a72012-05-25 02:02:39 +00002801
Andrew Trick1f0bb692013-04-13 06:07:49 +00002802 DEBUG(dbgs() << "Scheduling SU(" << SU->NodeNum << ") " << *SU->getInstr());
Andrew Trick7ee9de52012-05-10 21:06:16 +00002803 return SU;
2804}
2805
Andrew Trick665d3ec2013-09-19 23:10:59 +00002806void GenericScheduler::reschedulePhysRegCopies(SUnit *SU, bool isTop) {
Andrew Tricke833e1c2013-04-13 06:07:40 +00002807
2808 MachineBasicBlock::iterator InsertPos = SU->getInstr();
2809 if (!isTop)
2810 ++InsertPos;
2811 SmallVectorImpl<SDep> &Deps = isTop ? SU->Preds : SU->Succs;
2812
2813 // Find already scheduled copies with a single physreg dependence and move
2814 // them just above the scheduled instruction.
2815 for (SmallVectorImpl<SDep>::iterator I = Deps.begin(), E = Deps.end();
2816 I != E; ++I) {
2817 if (I->getKind() != SDep::Data || !TRI->isPhysicalRegister(I->getReg()))
2818 continue;
2819 SUnit *DepSU = I->getSUnit();
2820 if (isTop ? DepSU->Succs.size() > 1 : DepSU->Preds.size() > 1)
2821 continue;
2822 MachineInstr *Copy = DepSU->getInstr();
2823 if (!Copy->isCopy())
2824 continue;
2825 DEBUG(dbgs() << " Rescheduling physreg copy ";
2826 I->getSUnit()->dump(DAG));
2827 DAG->moveInstruction(Copy, InsertPos);
2828 }
2829}
2830
Andrew Trick61f1a272012-05-24 22:11:09 +00002831/// Update the scheduler's state after scheduling a node. This is the same node
Andrew Trickd14d7c22013-12-28 21:56:57 +00002832/// that was just returned by pickNode(). However, ScheduleDAGMILive needs to
2833/// update it's state based on the current cycle before MachineSchedStrategy
2834/// does.
Andrew Tricke833e1c2013-04-13 06:07:40 +00002835///
2836/// FIXME: Eventually, we may bundle physreg copies rather than rescheduling
2837/// them here. See comments in biasPhysRegCopy.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002838void GenericScheduler::schedNode(SUnit *SU, bool IsTopNode) {
Andrew Trick45446062012-06-05 21:11:27 +00002839 if (IsTopNode) {
Andrew Trickfc127d12013-12-07 05:59:44 +00002840 SU->TopReadyCycle = std::max(SU->TopReadyCycle, Top.getCurrCycle());
Andrew Trickce27bb92012-06-29 03:23:22 +00002841 Top.bumpNode(SU);
Andrew Tricke833e1c2013-04-13 06:07:40 +00002842 if (SU->hasPhysRegUses)
2843 reschedulePhysRegCopies(SU, true);
Andrew Trick61f1a272012-05-24 22:11:09 +00002844 }
Andrew Trick45446062012-06-05 21:11:27 +00002845 else {
Andrew Trickfc127d12013-12-07 05:59:44 +00002846 SU->BotReadyCycle = std::max(SU->BotReadyCycle, Bot.getCurrCycle());
Andrew Trickce27bb92012-06-29 03:23:22 +00002847 Bot.bumpNode(SU);
Andrew Tricke833e1c2013-04-13 06:07:40 +00002848 if (SU->hasPhysRegDefs)
2849 reschedulePhysRegCopies(SU, false);
Andrew Trick61f1a272012-05-24 22:11:09 +00002850 }
2851}
2852
Andrew Trick8823dec2012-03-14 04:00:41 +00002853/// Create the standard converging machine scheduler. This will be used as the
2854/// default scheduler if the target does not set a default.
Andrew Trickd14d7c22013-12-28 21:56:57 +00002855static ScheduleDAGInstrs *createGenericSchedLive(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00002856 ScheduleDAGMILive *DAG = new ScheduleDAGMILive(C, make_unique<GenericScheduler>(C));
Andrew Tricka7714a02012-11-12 19:40:10 +00002857 // Register DAG post-processors.
Andrew Trick85a1d4c2013-04-24 15:54:43 +00002858 //
2859 // FIXME: extend the mutation API to allow earlier mutations to instantiate
2860 // data and pass it to later mutations. Have a single mutation that gathers
2861 // the interesting nodes in one pass.
David Blaikie422b93d2014-04-21 20:32:32 +00002862 DAG->addMutation(make_unique<CopyConstrain>(DAG->TII, DAG->TRI));
Andrew Tricka6e87772013-09-04 21:00:08 +00002863 if (EnableLoadCluster && DAG->TII->enableClusterLoads())
David Blaikie422b93d2014-04-21 20:32:32 +00002864 DAG->addMutation(make_unique<LoadClusterMutation>(DAG->TII, DAG->TRI));
Andrew Trick263280242012-11-12 19:52:20 +00002865 if (EnableMacroFusion)
David Blaikie422b93d2014-04-21 20:32:32 +00002866 DAG->addMutation(make_unique<MacroFusion>(DAG->TII));
Andrew Tricka7714a02012-11-12 19:40:10 +00002867 return DAG;
Andrew Tricke1c034f2012-01-17 06:55:03 +00002868}
Andrew Trickd14d7c22013-12-28 21:56:57 +00002869
Andrew Tricke1c034f2012-01-17 06:55:03 +00002870static MachineSchedRegistry
Andrew Trick665d3ec2013-09-19 23:10:59 +00002871GenericSchedRegistry("converge", "Standard converging scheduler.",
Andrew Trickd14d7c22013-12-28 21:56:57 +00002872 createGenericSchedLive);
2873
2874//===----------------------------------------------------------------------===//
2875// PostGenericScheduler - Generic PostRA implementation of MachineSchedStrategy.
2876//===----------------------------------------------------------------------===//
2877
Andrew Trick3ccf71d2014-06-04 07:06:18 +00002878void PostGenericScheduler::initialize(ScheduleDAGMI *Dag) {
2879 DAG = Dag;
2880 SchedModel = DAG->getSchedModel();
2881 TRI = DAG->TRI;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002882
Andrew Trick3ccf71d2014-06-04 07:06:18 +00002883 Rem.init(DAG, SchedModel);
2884 Top.init(DAG, SchedModel, &Rem);
2885 BotRoots.clear();
Andrew Trickd14d7c22013-12-28 21:56:57 +00002886
Andrew Trick3ccf71d2014-06-04 07:06:18 +00002887 // Initialize the HazardRecognizers. If itineraries don't exist, are empty,
2888 // or are disabled, then these HazardRecs will be disabled.
2889 const InstrItineraryData *Itin = SchedModel->getInstrItineraries();
2890 const TargetMachine &TM = DAG->MF.getTarget();
2891 if (!Top.HazardRec) {
2892 Top.HazardRec =
Eric Christopherd9134482014-08-04 21:25:23 +00002893 TM.getSubtargetImpl()->getInstrInfo()->CreateTargetMIHazardRecognizer(
2894 Itin, DAG);
Andrew Trickd14d7c22013-12-28 21:56:57 +00002895 }
Andrew Trick3ccf71d2014-06-04 07:06:18 +00002896}
Andrew Trickd14d7c22013-12-28 21:56:57 +00002897
Andrew Trickd14d7c22013-12-28 21:56:57 +00002898
2899void PostGenericScheduler::registerRoots() {
2900 Rem.CriticalPath = DAG->ExitSU.getDepth();
2901
2902 // Some roots may not feed into ExitSU. Check all of them in case.
2903 for (SmallVectorImpl<SUnit*>::const_iterator
2904 I = BotRoots.begin(), E = BotRoots.end(); I != E; ++I) {
2905 if ((*I)->getDepth() > Rem.CriticalPath)
2906 Rem.CriticalPath = (*I)->getDepth();
2907 }
2908 DEBUG(dbgs() << "Critical Path: " << Rem.CriticalPath << '\n');
2909}
2910
2911/// Apply a set of heursitics to a new candidate for PostRA scheduling.
2912///
2913/// \param Cand provides the policy and current best candidate.
2914/// \param TryCand refers to the next SUnit candidate, otherwise uninitialized.
2915void PostGenericScheduler::tryCandidate(SchedCandidate &Cand,
2916 SchedCandidate &TryCand) {
2917
2918 // Initialize the candidate if needed.
2919 if (!Cand.isValid()) {
2920 TryCand.Reason = NodeOrder;
2921 return;
2922 }
2923
2924 // Prioritize instructions that read unbuffered resources by stall cycles.
2925 if (tryLess(Top.getLatencyStallCycles(TryCand.SU),
2926 Top.getLatencyStallCycles(Cand.SU), TryCand, Cand, Stall))
2927 return;
2928
2929 // Avoid critical resource consumption and balance the schedule.
2930 if (tryLess(TryCand.ResDelta.CritResources, Cand.ResDelta.CritResources,
2931 TryCand, Cand, ResourceReduce))
2932 return;
2933 if (tryGreater(TryCand.ResDelta.DemandedResources,
2934 Cand.ResDelta.DemandedResources,
2935 TryCand, Cand, ResourceDemand))
2936 return;
2937
2938 // Avoid serializing long latency dependence chains.
2939 if (Cand.Policy.ReduceLatency && tryLatency(TryCand, Cand, Top)) {
2940 return;
2941 }
2942
2943 // Fall through to original instruction order.
2944 if (TryCand.SU->NodeNum < Cand.SU->NodeNum)
2945 TryCand.Reason = NodeOrder;
2946}
2947
2948void PostGenericScheduler::pickNodeFromQueue(SchedCandidate &Cand) {
2949 ReadyQueue &Q = Top.Available;
2950
2951 DEBUG(Q.dump());
2952
2953 for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) {
2954 SchedCandidate TryCand(Cand.Policy);
2955 TryCand.SU = *I;
2956 TryCand.initResourceDelta(DAG, SchedModel);
2957 tryCandidate(Cand, TryCand);
2958 if (TryCand.Reason != NoCand) {
2959 Cand.setBest(TryCand);
2960 DEBUG(traceCandidate(Cand));
2961 }
2962 }
2963}
2964
2965/// Pick the next node to schedule.
2966SUnit *PostGenericScheduler::pickNode(bool &IsTopNode) {
2967 if (DAG->top() == DAG->bottom()) {
2968 assert(Top.Available.empty() && Top.Pending.empty() && "ReadyQ garbage");
Craig Topperc0196b12014-04-14 00:51:57 +00002969 return nullptr;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002970 }
2971 SUnit *SU;
2972 do {
2973 SU = Top.pickOnlyChoice();
2974 if (!SU) {
2975 CandPolicy NoPolicy;
2976 SchedCandidate TopCand(NoPolicy);
2977 // Set the top-down policy based on the state of the current top zone and
2978 // the instructions outside the zone, including the bottom zone.
Craig Topperc0196b12014-04-14 00:51:57 +00002979 setPolicy(TopCand.Policy, /*IsPostRA=*/true, Top, nullptr);
Andrew Trickd14d7c22013-12-28 21:56:57 +00002980 pickNodeFromQueue(TopCand);
2981 assert(TopCand.Reason != NoCand && "failed to find a candidate");
2982 tracePick(TopCand, true);
2983 SU = TopCand.SU;
2984 }
2985 } while (SU->isScheduled);
2986
2987 IsTopNode = true;
2988 Top.removeReady(SU);
2989
2990 DEBUG(dbgs() << "Scheduling SU(" << SU->NodeNum << ") " << *SU->getInstr());
2991 return SU;
2992}
2993
2994/// Called after ScheduleDAGMI has scheduled an instruction and updated
2995/// scheduled/remaining flags in the DAG nodes.
2996void PostGenericScheduler::schedNode(SUnit *SU, bool IsTopNode) {
2997 SU->TopReadyCycle = std::max(SU->TopReadyCycle, Top.getCurrCycle());
2998 Top.bumpNode(SU);
2999}
3000
3001/// Create a generic scheduler with no vreg liveness or DAG mutation passes.
3002static ScheduleDAGInstrs *createGenericSchedPostRA(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003003 return new ScheduleDAGMI(C, make_unique<PostGenericScheduler>(C), /*IsPostRA=*/true);
Andrew Trickd14d7c22013-12-28 21:56:57 +00003004}
Andrew Tricke1c034f2012-01-17 06:55:03 +00003005
3006//===----------------------------------------------------------------------===//
Andrew Trick90f711d2012-10-15 18:02:27 +00003007// ILP Scheduler. Currently for experimental analysis of heuristics.
3008//===----------------------------------------------------------------------===//
3009
3010namespace {
3011/// \brief Order nodes by the ILP metric.
3012struct ILPOrder {
Andrew Trick44f750a2013-01-25 04:01:04 +00003013 const SchedDFSResult *DFSResult;
3014 const BitVector *ScheduledTrees;
Andrew Trick90f711d2012-10-15 18:02:27 +00003015 bool MaximizeILP;
3016
Craig Topperc0196b12014-04-14 00:51:57 +00003017 ILPOrder(bool MaxILP)
3018 : DFSResult(nullptr), ScheduledTrees(nullptr), MaximizeILP(MaxILP) {}
Andrew Trick90f711d2012-10-15 18:02:27 +00003019
3020 /// \brief Apply a less-than relation on node priority.
Andrew Trick48d392e2012-11-28 05:13:28 +00003021 ///
3022 /// (Return true if A comes after B in the Q.)
Andrew Trick90f711d2012-10-15 18:02:27 +00003023 bool operator()(const SUnit *A, const SUnit *B) const {
Andrew Trick48d392e2012-11-28 05:13:28 +00003024 unsigned SchedTreeA = DFSResult->getSubtreeID(A);
3025 unsigned SchedTreeB = DFSResult->getSubtreeID(B);
3026 if (SchedTreeA != SchedTreeB) {
3027 // Unscheduled trees have lower priority.
3028 if (ScheduledTrees->test(SchedTreeA) != ScheduledTrees->test(SchedTreeB))
3029 return ScheduledTrees->test(SchedTreeB);
3030
3031 // Trees with shallower connections have have lower priority.
3032 if (DFSResult->getSubtreeLevel(SchedTreeA)
3033 != DFSResult->getSubtreeLevel(SchedTreeB)) {
3034 return DFSResult->getSubtreeLevel(SchedTreeA)
3035 < DFSResult->getSubtreeLevel(SchedTreeB);
3036 }
3037 }
Andrew Trick90f711d2012-10-15 18:02:27 +00003038 if (MaximizeILP)
Andrew Trick48d392e2012-11-28 05:13:28 +00003039 return DFSResult->getILP(A) < DFSResult->getILP(B);
Andrew Trick90f711d2012-10-15 18:02:27 +00003040 else
Andrew Trick48d392e2012-11-28 05:13:28 +00003041 return DFSResult->getILP(A) > DFSResult->getILP(B);
Andrew Trick90f711d2012-10-15 18:02:27 +00003042 }
3043};
3044
3045/// \brief Schedule based on the ILP metric.
3046class ILPScheduler : public MachineSchedStrategy {
Andrew Trickd7f890e2013-12-28 21:56:47 +00003047 ScheduleDAGMILive *DAG;
Andrew Trick90f711d2012-10-15 18:02:27 +00003048 ILPOrder Cmp;
3049
3050 std::vector<SUnit*> ReadyQ;
3051public:
Craig Topperc0196b12014-04-14 00:51:57 +00003052 ILPScheduler(bool MaximizeILP): DAG(nullptr), Cmp(MaximizeILP) {}
Andrew Trick90f711d2012-10-15 18:02:27 +00003053
Craig Topper4584cd52014-03-07 09:26:03 +00003054 void initialize(ScheduleDAGMI *dag) override {
Andrew Trickd7f890e2013-12-28 21:56:47 +00003055 assert(dag->hasVRegLiveness() && "ILPScheduler needs vreg liveness");
3056 DAG = static_cast<ScheduleDAGMILive*>(dag);
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00003057 DAG->computeDFSResult();
Andrew Trick44f750a2013-01-25 04:01:04 +00003058 Cmp.DFSResult = DAG->getDFSResult();
3059 Cmp.ScheduledTrees = &DAG->getScheduledTrees();
Andrew Trick90f711d2012-10-15 18:02:27 +00003060 ReadyQ.clear();
Andrew Trick90f711d2012-10-15 18:02:27 +00003061 }
3062
Craig Topper4584cd52014-03-07 09:26:03 +00003063 void registerRoots() override {
Benjamin Krameraa598b32012-11-29 14:36:26 +00003064 // Restore the heap in ReadyQ with the updated DFS results.
3065 std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
Andrew Trick90f711d2012-10-15 18:02:27 +00003066 }
3067
3068 /// Implement MachineSchedStrategy interface.
3069 /// -----------------------------------------
3070
Andrew Trick48d392e2012-11-28 05:13:28 +00003071 /// Callback to select the highest priority node from the ready Q.
Craig Topper4584cd52014-03-07 09:26:03 +00003072 SUnit *pickNode(bool &IsTopNode) override {
Craig Topperc0196b12014-04-14 00:51:57 +00003073 if (ReadyQ.empty()) return nullptr;
Matt Arsenault4ab769f2013-03-21 00:57:21 +00003074 std::pop_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
Andrew Trick90f711d2012-10-15 18:02:27 +00003075 SUnit *SU = ReadyQ.back();
3076 ReadyQ.pop_back();
3077 IsTopNode = false;
Andrew Trick1f0bb692013-04-13 06:07:49 +00003078 DEBUG(dbgs() << "Pick node " << "SU(" << SU->NodeNum << ") "
Andrew Trick44f750a2013-01-25 04:01:04 +00003079 << " ILP: " << DAG->getDFSResult()->getILP(SU)
3080 << " Tree: " << DAG->getDFSResult()->getSubtreeID(SU) << " @"
3081 << DAG->getDFSResult()->getSubtreeLevel(
Andrew Trick1f0bb692013-04-13 06:07:49 +00003082 DAG->getDFSResult()->getSubtreeID(SU)) << '\n'
3083 << "Scheduling " << *SU->getInstr());
Andrew Trick90f711d2012-10-15 18:02:27 +00003084 return SU;
3085 }
3086
Andrew Trick44f750a2013-01-25 04:01:04 +00003087 /// \brief Scheduler callback to notify that a new subtree is scheduled.
Craig Topper4584cd52014-03-07 09:26:03 +00003088 void scheduleTree(unsigned SubtreeID) override {
Andrew Trick44f750a2013-01-25 04:01:04 +00003089 std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
3090 }
3091
Andrew Trick48d392e2012-11-28 05:13:28 +00003092 /// Callback after a node is scheduled. Mark a newly scheduled tree, notify
3093 /// DFSResults, and resort the priority Q.
Craig Topper4584cd52014-03-07 09:26:03 +00003094 void schedNode(SUnit *SU, bool IsTopNode) override {
Andrew Trick48d392e2012-11-28 05:13:28 +00003095 assert(!IsTopNode && "SchedDFSResult needs bottom-up");
Andrew Trick48d392e2012-11-28 05:13:28 +00003096 }
Andrew Trick90f711d2012-10-15 18:02:27 +00003097
Craig Topper4584cd52014-03-07 09:26:03 +00003098 void releaseTopNode(SUnit *) override { /*only called for top roots*/ }
Andrew Trick90f711d2012-10-15 18:02:27 +00003099
Craig Topper4584cd52014-03-07 09:26:03 +00003100 void releaseBottomNode(SUnit *SU) override {
Andrew Trick90f711d2012-10-15 18:02:27 +00003101 ReadyQ.push_back(SU);
3102 std::push_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
3103 }
3104};
3105} // namespace
3106
3107static ScheduleDAGInstrs *createILPMaxScheduler(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003108 return new ScheduleDAGMILive(C, make_unique<ILPScheduler>(true));
Andrew Trick90f711d2012-10-15 18:02:27 +00003109}
3110static ScheduleDAGInstrs *createILPMinScheduler(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003111 return new ScheduleDAGMILive(C, make_unique<ILPScheduler>(false));
Andrew Trick90f711d2012-10-15 18:02:27 +00003112}
3113static MachineSchedRegistry ILPMaxRegistry(
3114 "ilpmax", "Schedule bottom-up for max ILP", createILPMaxScheduler);
3115static MachineSchedRegistry ILPMinRegistry(
3116 "ilpmin", "Schedule bottom-up for min ILP", createILPMinScheduler);
3117
3118//===----------------------------------------------------------------------===//
Andrew Trick63440872012-01-14 02:17:06 +00003119// Machine Instruction Shuffler for Correctness Testing
3120//===----------------------------------------------------------------------===//
3121
Andrew Tricke77e84e2012-01-13 06:30:30 +00003122#ifndef NDEBUG
3123namespace {
Andrew Trick8823dec2012-03-14 04:00:41 +00003124/// Apply a less-than relation on the node order, which corresponds to the
3125/// instruction order prior to scheduling. IsReverse implements greater-than.
3126template<bool IsReverse>
3127struct SUnitOrder {
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003128 bool operator()(SUnit *A, SUnit *B) const {
Andrew Trick8823dec2012-03-14 04:00:41 +00003129 if (IsReverse)
3130 return A->NodeNum > B->NodeNum;
3131 else
3132 return A->NodeNum < B->NodeNum;
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003133 }
3134};
3135
Andrew Tricke77e84e2012-01-13 06:30:30 +00003136/// Reorder instructions as much as possible.
Andrew Trick8823dec2012-03-14 04:00:41 +00003137class InstructionShuffler : public MachineSchedStrategy {
3138 bool IsAlternating;
3139 bool IsTopDown;
3140
3141 // Using a less-than relation (SUnitOrder<false>) for the TopQ priority
3142 // gives nodes with a higher number higher priority causing the latest
3143 // instructions to be scheduled first.
3144 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<false> >
3145 TopQ;
3146 // When scheduling bottom-up, use greater-than as the queue priority.
3147 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<true> >
3148 BottomQ;
Andrew Tricke77e84e2012-01-13 06:30:30 +00003149public:
Andrew Trick8823dec2012-03-14 04:00:41 +00003150 InstructionShuffler(bool alternate, bool topdown)
3151 : IsAlternating(alternate), IsTopDown(topdown) {}
Andrew Tricke77e84e2012-01-13 06:30:30 +00003152
Craig Topper9d74a5a2014-04-29 07:58:41 +00003153 void initialize(ScheduleDAGMI*) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003154 TopQ.clear();
3155 BottomQ.clear();
3156 }
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003157
Andrew Trick8823dec2012-03-14 04:00:41 +00003158 /// Implement MachineSchedStrategy interface.
3159 /// -----------------------------------------
3160
Craig Topper9d74a5a2014-04-29 07:58:41 +00003161 SUnit *pickNode(bool &IsTopNode) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003162 SUnit *SU;
3163 if (IsTopDown) {
3164 do {
Craig Topperc0196b12014-04-14 00:51:57 +00003165 if (TopQ.empty()) return nullptr;
Andrew Trick8823dec2012-03-14 04:00:41 +00003166 SU = TopQ.top();
3167 TopQ.pop();
3168 } while (SU->isScheduled);
3169 IsTopNode = true;
3170 }
3171 else {
3172 do {
Craig Topperc0196b12014-04-14 00:51:57 +00003173 if (BottomQ.empty()) return nullptr;
Andrew Trick8823dec2012-03-14 04:00:41 +00003174 SU = BottomQ.top();
3175 BottomQ.pop();
3176 } while (SU->isScheduled);
3177 IsTopNode = false;
3178 }
3179 if (IsAlternating)
3180 IsTopDown = !IsTopDown;
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003181 return SU;
3182 }
3183
Craig Topper9d74a5a2014-04-29 07:58:41 +00003184 void schedNode(SUnit *SU, bool IsTopNode) override {}
Andrew Trick61f1a272012-05-24 22:11:09 +00003185
Craig Topper9d74a5a2014-04-29 07:58:41 +00003186 void releaseTopNode(SUnit *SU) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003187 TopQ.push(SU);
3188 }
Craig Topper9d74a5a2014-04-29 07:58:41 +00003189 void releaseBottomNode(SUnit *SU) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003190 BottomQ.push(SU);
Andrew Tricke77e84e2012-01-13 06:30:30 +00003191 }
3192};
3193} // namespace
3194
Andrew Trick02a80da2012-03-08 01:41:12 +00003195static ScheduleDAGInstrs *createInstructionShuffler(MachineSchedContext *C) {
Andrew Trick8823dec2012-03-14 04:00:41 +00003196 bool Alternate = !ForceTopDown && !ForceBottomUp;
3197 bool TopDown = !ForceBottomUp;
Benjamin Kramer05e7a842012-03-14 11:26:37 +00003198 assert((TopDown || !ForceTopDown) &&
Andrew Trick8823dec2012-03-14 04:00:41 +00003199 "-misched-topdown incompatible with -misched-bottomup");
David Blaikie422b93d2014-04-21 20:32:32 +00003200 return new ScheduleDAGMILive(C, make_unique<InstructionShuffler>(Alternate, TopDown));
Andrew Tricke77e84e2012-01-13 06:30:30 +00003201}
Andrew Trick8823dec2012-03-14 04:00:41 +00003202static MachineSchedRegistry ShufflerRegistry(
3203 "shuffle", "Shuffle machine instructions alternating directions",
3204 createInstructionShuffler);
Andrew Tricke77e84e2012-01-13 06:30:30 +00003205#endif // !NDEBUG
Andrew Trickea9fd952013-01-25 07:45:29 +00003206
3207//===----------------------------------------------------------------------===//
Andrew Trickd7f890e2013-12-28 21:56:47 +00003208// GraphWriter support for ScheduleDAGMILive.
Andrew Trickea9fd952013-01-25 07:45:29 +00003209//===----------------------------------------------------------------------===//
3210
3211#ifndef NDEBUG
3212namespace llvm {
3213
3214template<> struct GraphTraits<
3215 ScheduleDAGMI*> : public GraphTraits<ScheduleDAG*> {};
3216
3217template<>
3218struct DOTGraphTraits<ScheduleDAGMI*> : public DefaultDOTGraphTraits {
3219
3220 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
3221
3222 static std::string getGraphName(const ScheduleDAG *G) {
3223 return G->MF.getName();
3224 }
3225
3226 static bool renderGraphFromBottomUp() {
3227 return true;
3228 }
3229
3230 static bool isNodeHidden(const SUnit *Node) {
Andrew Trick856ecd92013-09-04 21:00:18 +00003231 return (Node->Preds.size() > 10 || Node->Succs.size() > 10);
Andrew Trickea9fd952013-01-25 07:45:29 +00003232 }
3233
3234 static bool hasNodeAddressLabel(const SUnit *Node,
3235 const ScheduleDAG *Graph) {
3236 return false;
3237 }
3238
3239 /// If you want to override the dot attributes printed for a particular
3240 /// edge, override this method.
3241 static std::string getEdgeAttributes(const SUnit *Node,
3242 SUnitIterator EI,
3243 const ScheduleDAG *Graph) {
3244 if (EI.isArtificialDep())
3245 return "color=cyan,style=dashed";
3246 if (EI.isCtrlDep())
3247 return "color=blue,style=dashed";
3248 return "";
3249 }
3250
3251 static std::string getNodeLabel(const SUnit *SU, const ScheduleDAG *G) {
Alp Tokere69170a2014-06-26 22:52:05 +00003252 std::string Str;
3253 raw_string_ostream SS(Str);
Andrew Trickd7f890e2013-12-28 21:56:47 +00003254 const ScheduleDAGMI *DAG = static_cast<const ScheduleDAGMI*>(G);
3255 const SchedDFSResult *DFS = DAG->hasVRegLiveness() ?
Craig Topperc0196b12014-04-14 00:51:57 +00003256 static_cast<const ScheduleDAGMILive*>(G)->getDFSResult() : nullptr;
Andrew Trick7609b7d2013-09-06 17:32:42 +00003257 SS << "SU:" << SU->NodeNum;
3258 if (DFS)
3259 SS << " I:" << DFS->getNumInstrs(SU);
Andrew Trickea9fd952013-01-25 07:45:29 +00003260 return SS.str();
3261 }
3262 static std::string getNodeDescription(const SUnit *SU, const ScheduleDAG *G) {
3263 return G->getGraphNodeLabel(SU);
3264 }
3265
Andrew Trickd7f890e2013-12-28 21:56:47 +00003266 static std::string getNodeAttributes(const SUnit *N, const ScheduleDAG *G) {
Andrew Trickea9fd952013-01-25 07:45:29 +00003267 std::string Str("shape=Mrecord");
Andrew Trickd7f890e2013-12-28 21:56:47 +00003268 const ScheduleDAGMI *DAG = static_cast<const ScheduleDAGMI*>(G);
3269 const SchedDFSResult *DFS = DAG->hasVRegLiveness() ?
Craig Topperc0196b12014-04-14 00:51:57 +00003270 static_cast<const ScheduleDAGMILive*>(G)->getDFSResult() : nullptr;
Andrew Trickea9fd952013-01-25 07:45:29 +00003271 if (DFS) {
3272 Str += ",style=filled,fillcolor=\"#";
3273 Str += DOT::getColorString(DFS->getSubtreeID(N));
3274 Str += '"';
3275 }
3276 return Str;
3277 }
3278};
3279} // namespace llvm
3280#endif // NDEBUG
3281
3282/// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
3283/// rendered using 'dot'.
3284///
3285void ScheduleDAGMI::viewGraph(const Twine &Name, const Twine &Title) {
3286#ifndef NDEBUG
3287 ViewGraph(this, Name, false, Title);
3288#else
3289 errs() << "ScheduleDAGMI::viewGraph is only available in debug builds on "
3290 << "systems with Graphviz or gv!\n";
3291#endif // NDEBUG
3292}
3293
3294/// Out-of-line implementation with no arguments is handy for gdb.
3295void ScheduleDAGMI::viewGraph() {
3296 viewGraph(getDAGName(), "Scheduling-Units Graph for " + getDAGName());
3297}