blob: 01ef9d834b6efff2b7000a478b40e2ead3bd3997 [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"
Matthias Braun31d19d42016-05-10 03:21:59 +000026#include "llvm/CodeGen/TargetPassConfig.h"
Andrew Tricke77e84e2012-01-13 06:30:30 +000027#include "llvm/Support/CommandLine.h"
28#include "llvm/Support/Debug.h"
29#include "llvm/Support/ErrorHandling.h"
Andrew Trickea9fd952013-01-25 07:45:29 +000030#include "llvm/Support/GraphWriter.h"
Andrew Tricke77e84e2012-01-13 06:30:30 +000031#include "llvm/Support/raw_ostream.h"
Jakub Staszak80df8b82013-06-14 00:00:13 +000032#include "llvm/Target/TargetInstrInfo.h"
Andrew Trick7ccdc5c2012-01-17 06:55:07 +000033
Andrew Tricke77e84e2012-01-13 06:30:30 +000034using namespace llvm;
35
Chandler Carruth1b9dde02014-04-22 02:02:50 +000036#define DEBUG_TYPE "misched"
37
Andrew Trick7a8e1002012-09-11 00:39:15 +000038namespace llvm {
39cl::opt<bool> ForceTopDown("misched-topdown", cl::Hidden,
40 cl::desc("Force top-down list scheduling"));
41cl::opt<bool> ForceBottomUp("misched-bottomup", cl::Hidden,
42 cl::desc("Force bottom-up list scheduling"));
Gerolf Hoflehnerb5220dc2014-08-07 21:49:44 +000043cl::opt<bool>
44DumpCriticalPathLength("misched-dcpl", cl::Hidden,
45 cl::desc("Print critical path length to stdout"));
Andrew Trick7a8e1002012-09-11 00:39:15 +000046}
Andrew Trick8823dec2012-03-14 04:00:41 +000047
Andrew Tricka5f19562012-03-07 00:18:25 +000048#ifndef NDEBUG
49static cl::opt<bool> ViewMISchedDAGs("view-misched-dags", cl::Hidden,
50 cl::desc("Pop up a window to show MISched dags after they are processed"));
Lang Hamesdd98c492012-03-19 18:38:38 +000051
Matthias Braund78ee542015-09-17 21:09:59 +000052/// In some situations a few uninteresting nodes depend on nearly all other
53/// nodes in the graph, provide a cutoff to hide them.
54static cl::opt<unsigned> ViewMISchedCutoff("view-misched-cutoff", cl::Hidden,
55 cl::desc("Hide nodes with more predecessor/successor than cutoff"));
56
Lang Hamesdd98c492012-03-19 18:38:38 +000057static cl::opt<unsigned> MISchedCutoff("misched-cutoff", cl::Hidden,
58 cl::desc("Stop scheduling after N instructions"), cl::init(~0U));
Andrew Trick33e05d72013-12-28 21:57:02 +000059
60static cl::opt<std::string> SchedOnlyFunc("misched-only-func", cl::Hidden,
61 cl::desc("Only schedule this function"));
62static cl::opt<unsigned> SchedOnlyBlock("misched-only-block", cl::Hidden,
63 cl::desc("Only schedule this MBB#"));
Andrew Tricka5f19562012-03-07 00:18:25 +000064#else
65static bool ViewMISchedDAGs = false;
66#endif // NDEBUG
67
Matthias Braun6493bc22016-04-22 19:09:17 +000068/// Avoid quadratic complexity in unusually large basic blocks by limiting the
69/// size of the ready lists.
70static cl::opt<unsigned> ReadyListLimit("misched-limit", cl::Hidden,
71 cl::desc("Limit ready list to N instructions"), cl::init(256));
72
Andrew Trickb6e74712013-09-04 20:59:59 +000073static cl::opt<bool> EnableRegPressure("misched-regpressure", cl::Hidden,
74 cl::desc("Enable register pressure scheduling."), cl::init(true));
75
Andrew Trickc01b0042013-08-23 17:48:43 +000076static cl::opt<bool> EnableCyclicPath("misched-cyclicpath", cl::Hidden,
Andrew Trick6c88b352013-09-09 23:31:14 +000077 cl::desc("Enable cyclic critical path analysis."), cl::init(true));
Andrew Trickc01b0042013-08-23 17:48:43 +000078
Jun Bum Lim4c5bd582016-04-15 14:58:38 +000079static cl::opt<bool> EnableMemOpCluster("misched-cluster", cl::Hidden,
80 cl::desc("Enable memop clustering."),
81 cl::init(true));
Andrew Tricka7714a02012-11-12 19:40:10 +000082
Andrew Trick263280242012-11-12 19:52:20 +000083// Experimental heuristics
84static cl::opt<bool> EnableMacroFusion("misched-fusion", cl::Hidden,
Andrew Trick108c88c2012-11-13 08:47:29 +000085 cl::desc("Enable scheduling for macro fusion."), cl::init(true));
Andrew Trick263280242012-11-12 19:52:20 +000086
Andrew Trick48f2a722013-03-08 05:40:34 +000087static cl::opt<bool> VerifyScheduling("verify-misched", cl::Hidden,
88 cl::desc("Verify machine instrs before and after machine scheduling"));
89
Andrew Trick44f750a2013-01-25 04:01:04 +000090// DAG subtrees must have at least this many nodes.
91static const unsigned MinSubtreeSize = 8;
92
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000093// Pin the vtables to this file.
94void MachineSchedStrategy::anchor() {}
95void ScheduleDAGMutation::anchor() {}
96
Andrew Trick63440872012-01-14 02:17:06 +000097//===----------------------------------------------------------------------===//
98// Machine Instruction Scheduling Pass and Registry
99//===----------------------------------------------------------------------===//
100
Andrew Trick4d4b5462012-04-24 20:36:19 +0000101MachineSchedContext::MachineSchedContext():
Craig Topperc0196b12014-04-14 00:51:57 +0000102 MF(nullptr), MLI(nullptr), MDT(nullptr), PassConfig(nullptr), AA(nullptr), LIS(nullptr) {
Andrew Trick4d4b5462012-04-24 20:36:19 +0000103 RegClassInfo = new RegisterClassInfo();
104}
105
106MachineSchedContext::~MachineSchedContext() {
107 delete RegClassInfo;
108}
109
Andrew Tricke77e84e2012-01-13 06:30:30 +0000110namespace {
Andrew Trickd7f890e2013-12-28 21:56:47 +0000111/// Base class for a machine scheduler class that can run at any point.
112class MachineSchedulerBase : public MachineSchedContext,
113 public MachineFunctionPass {
114public:
115 MachineSchedulerBase(char &ID): MachineFunctionPass(ID) {}
116
Craig Topperc0196b12014-04-14 00:51:57 +0000117 void print(raw_ostream &O, const Module* = nullptr) const override;
Andrew Trickd7f890e2013-12-28 21:56:47 +0000118
119protected:
Matthias Braun93563e72015-11-03 01:53:29 +0000120 void scheduleRegions(ScheduleDAGInstrs &Scheduler, bool FixKillFlags);
Andrew Trickd7f890e2013-12-28 21:56:47 +0000121};
122
Andrew Tricke1c034f2012-01-17 06:55:03 +0000123/// MachineScheduler runs after coalescing and before register allocation.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000124class MachineScheduler : public MachineSchedulerBase {
Andrew Tricke77e84e2012-01-13 06:30:30 +0000125public:
Andrew Tricke1c034f2012-01-17 06:55:03 +0000126 MachineScheduler();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000127
Craig Topper4584cd52014-03-07 09:26:03 +0000128 void getAnalysisUsage(AnalysisUsage &AU) const override;
Andrew Tricke77e84e2012-01-13 06:30:30 +0000129
Craig Topper4584cd52014-03-07 09:26:03 +0000130 bool runOnMachineFunction(MachineFunction&) override;
Andrew Tricke77e84e2012-01-13 06:30:30 +0000131
Andrew Tricke77e84e2012-01-13 06:30:30 +0000132 static char ID; // Class identification, replacement for typeinfo
Andrew Trick978674b2013-09-20 05:14:41 +0000133
134protected:
135 ScheduleDAGInstrs *createMachineScheduler();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000136};
Andrew Trick17080b92013-12-28 21:56:51 +0000137
138/// PostMachineScheduler runs after shortly before code emission.
139class PostMachineScheduler : public MachineSchedulerBase {
140public:
141 PostMachineScheduler();
142
Craig Topper4584cd52014-03-07 09:26:03 +0000143 void getAnalysisUsage(AnalysisUsage &AU) const override;
Andrew Trick17080b92013-12-28 21:56:51 +0000144
Craig Topper4584cd52014-03-07 09:26:03 +0000145 bool runOnMachineFunction(MachineFunction&) override;
Andrew Trick17080b92013-12-28 21:56:51 +0000146
147 static char ID; // Class identification, replacement for typeinfo
148
149protected:
150 ScheduleDAGInstrs *createPostMachineScheduler();
151};
Andrew Tricke77e84e2012-01-13 06:30:30 +0000152} // namespace
153
Andrew Tricke1c034f2012-01-17 06:55:03 +0000154char MachineScheduler::ID = 0;
Andrew Tricke77e84e2012-01-13 06:30:30 +0000155
Andrew Tricke1c034f2012-01-17 06:55:03 +0000156char &llvm::MachineSchedulerID = MachineScheduler::ID;
Andrew Tricke77e84e2012-01-13 06:30:30 +0000157
Akira Hatanaka7ba78302014-12-13 04:52:04 +0000158INITIALIZE_PASS_BEGIN(MachineScheduler, "machine-scheduler",
Andrew Tricke77e84e2012-01-13 06:30:30 +0000159 "Machine Instruction Scheduler", false, false)
Chandler Carruth7b560d42015-09-09 17:55:00 +0000160INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
Andrew Tricke77e84e2012-01-13 06:30:30 +0000161INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
162INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
Akira Hatanaka7ba78302014-12-13 04:52:04 +0000163INITIALIZE_PASS_END(MachineScheduler, "machine-scheduler",
Andrew Tricke77e84e2012-01-13 06:30:30 +0000164 "Machine Instruction Scheduler", false, false)
165
Andrew Tricke1c034f2012-01-17 06:55:03 +0000166MachineScheduler::MachineScheduler()
Andrew Trickd7f890e2013-12-28 21:56:47 +0000167: MachineSchedulerBase(ID) {
Andrew Tricke1c034f2012-01-17 06:55:03 +0000168 initializeMachineSchedulerPass(*PassRegistry::getPassRegistry());
Andrew Tricke77e84e2012-01-13 06:30:30 +0000169}
170
Andrew Tricke1c034f2012-01-17 06:55:03 +0000171void MachineScheduler::getAnalysisUsage(AnalysisUsage &AU) const {
Andrew Tricke77e84e2012-01-13 06:30:30 +0000172 AU.setPreservesCFG();
173 AU.addRequiredID(MachineDominatorsID);
174 AU.addRequired<MachineLoopInfo>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000175 AU.addRequired<AAResultsWrapperPass>();
Andrew Trick45300682012-03-09 00:52:20 +0000176 AU.addRequired<TargetPassConfig>();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000177 AU.addRequired<SlotIndexes>();
178 AU.addPreserved<SlotIndexes>();
179 AU.addRequired<LiveIntervals>();
180 AU.addPreserved<LiveIntervals>();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000181 MachineFunctionPass::getAnalysisUsage(AU);
182}
183
Andrew Trick17080b92013-12-28 21:56:51 +0000184char PostMachineScheduler::ID = 0;
185
186char &llvm::PostMachineSchedulerID = PostMachineScheduler::ID;
187
188INITIALIZE_PASS(PostMachineScheduler, "postmisched",
Saleem Abdulrasool7230b372013-12-28 22:47:55 +0000189 "PostRA Machine Instruction Scheduler", false, false)
Andrew Trick17080b92013-12-28 21:56:51 +0000190
191PostMachineScheduler::PostMachineScheduler()
192: MachineSchedulerBase(ID) {
193 initializePostMachineSchedulerPass(*PassRegistry::getPassRegistry());
194}
195
196void PostMachineScheduler::getAnalysisUsage(AnalysisUsage &AU) const {
197 AU.setPreservesCFG();
198 AU.addRequiredID(MachineDominatorsID);
199 AU.addRequired<MachineLoopInfo>();
200 AU.addRequired<TargetPassConfig>();
201 MachineFunctionPass::getAnalysisUsage(AU);
202}
203
Andrew Tricke77e84e2012-01-13 06:30:30 +0000204MachinePassRegistry MachineSchedRegistry::Registry;
205
Andrew Trick45300682012-03-09 00:52:20 +0000206/// A dummy default scheduler factory indicates whether the scheduler
207/// is overridden on the command line.
208static ScheduleDAGInstrs *useDefaultMachineSched(MachineSchedContext *C) {
Craig Topperc0196b12014-04-14 00:51:57 +0000209 return nullptr;
Andrew Trick45300682012-03-09 00:52:20 +0000210}
Andrew Tricke77e84e2012-01-13 06:30:30 +0000211
212/// MachineSchedOpt allows command line selection of the scheduler.
213static cl::opt<MachineSchedRegistry::ScheduleDAGCtor, false,
214 RegisterPassParser<MachineSchedRegistry> >
215MachineSchedOpt("misched",
Andrew Trick45300682012-03-09 00:52:20 +0000216 cl::init(&useDefaultMachineSched), cl::Hidden,
Andrew Tricke77e84e2012-01-13 06:30:30 +0000217 cl::desc("Machine instruction scheduler to use"));
218
Andrew Trick45300682012-03-09 00:52:20 +0000219static MachineSchedRegistry
Andrew Trick8823dec2012-03-14 04:00:41 +0000220DefaultSchedRegistry("default", "Use the target's default scheduler choice.",
Andrew Trick45300682012-03-09 00:52:20 +0000221 useDefaultMachineSched);
222
Eric Christopher5f141b02015-03-11 22:56:10 +0000223static cl::opt<bool> EnableMachineSched(
224 "enable-misched",
225 cl::desc("Enable the machine instruction scheduling pass."), cl::init(true),
226 cl::Hidden);
227
Chad Rosier816a1ab2016-01-20 23:08:32 +0000228static cl::opt<bool> EnablePostRAMachineSched(
229 "enable-post-misched",
230 cl::desc("Enable the post-ra machine instruction scheduling pass."),
231 cl::init(true), cl::Hidden);
232
Andrew Trick8823dec2012-03-14 04:00:41 +0000233/// Forward declare the standard machine scheduler. This will be used as the
Andrew Trick45300682012-03-09 00:52:20 +0000234/// default scheduler if the target does not set a default.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000235static ScheduleDAGInstrs *createGenericSchedLive(MachineSchedContext *C);
236static ScheduleDAGInstrs *createGenericSchedPostRA(MachineSchedContext *C);
Andrew Trickcc45a282012-04-24 18:04:34 +0000237
238/// Decrement this iterator until reaching the top or a non-debug instr.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000239static MachineBasicBlock::const_iterator
240priorNonDebug(MachineBasicBlock::const_iterator I,
241 MachineBasicBlock::const_iterator Beg) {
Andrew Trickcc45a282012-04-24 18:04:34 +0000242 assert(I != Beg && "reached the top of the region, cannot decrement");
243 while (--I != Beg) {
244 if (!I->isDebugValue())
245 break;
246 }
247 return I;
248}
249
Andrew Trick2bc74c22013-08-30 04:36:57 +0000250/// Non-const version.
251static MachineBasicBlock::iterator
252priorNonDebug(MachineBasicBlock::iterator I,
253 MachineBasicBlock::const_iterator Beg) {
254 return const_cast<MachineInstr*>(
255 &*priorNonDebug(MachineBasicBlock::const_iterator(I), Beg));
256}
257
Andrew Trickcc45a282012-04-24 18:04:34 +0000258/// If this iterator is a debug value, increment until reaching the End or a
259/// non-debug instruction.
Andrew Trick2c4f8b72013-08-31 05:17:58 +0000260static MachineBasicBlock::const_iterator
261nextIfDebug(MachineBasicBlock::const_iterator I,
262 MachineBasicBlock::const_iterator End) {
Andrew Trick463b2f12012-05-17 18:35:03 +0000263 for(; I != End; ++I) {
Andrew Trickcc45a282012-04-24 18:04:34 +0000264 if (!I->isDebugValue())
265 break;
266 }
267 return I;
268}
269
Andrew Trick2c4f8b72013-08-31 05:17:58 +0000270/// Non-const version.
271static MachineBasicBlock::iterator
272nextIfDebug(MachineBasicBlock::iterator I,
273 MachineBasicBlock::const_iterator End) {
274 // Cast the return value to nonconst MachineInstr, then cast to an
275 // instr_iterator, which does not check for null, finally return a
276 // bundle_iterator.
277 return MachineBasicBlock::instr_iterator(
278 const_cast<MachineInstr*>(
279 &*nextIfDebug(MachineBasicBlock::const_iterator(I), End)));
280}
281
Andrew Trickdc4c1ad2013-09-24 17:11:19 +0000282/// Instantiate a ScheduleDAGInstrs that will be owned by the caller.
Andrew Trick978674b2013-09-20 05:14:41 +0000283ScheduleDAGInstrs *MachineScheduler::createMachineScheduler() {
284 // Select the scheduler, or set the default.
285 MachineSchedRegistry::ScheduleDAGCtor Ctor = MachineSchedOpt;
286 if (Ctor != useDefaultMachineSched)
287 return Ctor(this);
288
289 // Get the default scheduler set by the target for this function.
290 ScheduleDAGInstrs *Scheduler = PassConfig->createMachineScheduler(this);
291 if (Scheduler)
292 return Scheduler;
293
294 // Default to GenericScheduler.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000295 return createGenericSchedLive(this);
Andrew Trick978674b2013-09-20 05:14:41 +0000296}
297
Andrew Trick17080b92013-12-28 21:56:51 +0000298/// Instantiate a ScheduleDAGInstrs for PostRA scheduling that will be owned by
299/// the caller. We don't have a command line option to override the postRA
300/// scheduler. The Target must configure it.
301ScheduleDAGInstrs *PostMachineScheduler::createPostMachineScheduler() {
302 // Get the postRA scheduler set by the target for this function.
303 ScheduleDAGInstrs *Scheduler = PassConfig->createPostMachineScheduler(this);
304 if (Scheduler)
305 return Scheduler;
306
307 // Default to GenericScheduler.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000308 return createGenericSchedPostRA(this);
Andrew Trick17080b92013-12-28 21:56:51 +0000309}
310
Andrew Trick72515be2012-03-14 04:00:38 +0000311/// Top-level MachineScheduler pass driver.
312///
313/// Visit blocks in function order. Divide each block into scheduling regions
Andrew Trick8823dec2012-03-14 04:00:41 +0000314/// and visit them bottom-up. Visiting regions bottom-up is not required, but is
315/// consistent with the DAG builder, which traverses the interior of the
316/// scheduling regions bottom-up.
Andrew Trick72515be2012-03-14 04:00:38 +0000317///
318/// This design avoids exposing scheduling boundaries to the DAG builder,
Andrew Trick8823dec2012-03-14 04:00:41 +0000319/// simplifying the DAG builder's support for "special" target instructions.
320/// At the same time the design allows target schedulers to operate across
Andrew Trick72515be2012-03-14 04:00:38 +0000321/// scheduling boundaries, for example to bundle the boudary instructions
322/// without reordering them. This creates complexity, because the target
323/// scheduler must update the RegionBegin and RegionEnd positions cached by
324/// ScheduleDAGInstrs whenever adding or removing instructions. A much simpler
325/// design would be to split blocks at scheduling boundaries, but LLVM has a
326/// general bias against block splitting purely for implementation simplicity.
Andrew Tricke1c034f2012-01-17 06:55:03 +0000327bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) {
Andrew Kayloraa641a52016-04-22 22:06:11 +0000328 if (skipFunction(*mf.getFunction()))
Chad Rosier6338d7c2016-01-20 22:38:25 +0000329 return false;
330
Eric Christopher5f141b02015-03-11 22:56:10 +0000331 if (EnableMachineSched.getNumOccurrences()) {
332 if (!EnableMachineSched)
333 return false;
334 } else if (!mf.getSubtarget().enableMachineScheduler())
335 return false;
336
Matthias Braundc7580a2015-10-29 03:57:28 +0000337 DEBUG(dbgs() << "Before MISched:\n"; mf.print(dbgs()));
Andrew Trickc5d70082012-05-10 21:06:21 +0000338
Andrew Tricke77e84e2012-01-13 06:30:30 +0000339 // Initialize the context of the pass.
340 MF = &mf;
341 MLI = &getAnalysis<MachineLoopInfo>();
342 MDT = &getAnalysis<MachineDominatorTree>();
Andrew Trick45300682012-03-09 00:52:20 +0000343 PassConfig = &getAnalysis<TargetPassConfig>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000344 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
Andrew Trick02a80da2012-03-08 01:41:12 +0000345
Lang Hamesad33d5a2012-01-27 22:36:19 +0000346 LIS = &getAnalysis<LiveIntervals>();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000347
Andrew Trick48f2a722013-03-08 05:40:34 +0000348 if (VerifyScheduling) {
Andrew Trick97064962013-07-25 07:26:26 +0000349 DEBUG(LIS->dump());
Andrew Trick48f2a722013-03-08 05:40:34 +0000350 MF->verify(this, "Before machine scheduling.");
351 }
Andrew Trick4d4b5462012-04-24 20:36:19 +0000352 RegClassInfo->runOnMachineFunction(*MF);
Andrew Trick88639922012-04-24 17:56:43 +0000353
Andrew Trick978674b2013-09-20 05:14:41 +0000354 // Instantiate the selected scheduler for this target, function, and
355 // optimization level.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000356 std::unique_ptr<ScheduleDAGInstrs> Scheduler(createMachineScheduler());
Matthias Braun93563e72015-11-03 01:53:29 +0000357 scheduleRegions(*Scheduler, false);
Andrew Trickd7f890e2013-12-28 21:56:47 +0000358
359 DEBUG(LIS->dump());
360 if (VerifyScheduling)
361 MF->verify(this, "After machine scheduling.");
362 return true;
363}
364
Andrew Trick17080b92013-12-28 21:56:51 +0000365bool PostMachineScheduler::runOnMachineFunction(MachineFunction &mf) {
Andrew Kayloraa641a52016-04-22 22:06:11 +0000366 if (skipFunction(*mf.getFunction()))
Paul Robinson7c99ec52014-03-31 17:43:35 +0000367 return false;
368
Chad Rosier816a1ab2016-01-20 23:08:32 +0000369 if (EnablePostRAMachineSched.getNumOccurrences()) {
370 if (!EnablePostRAMachineSched)
371 return false;
372 } else if (!mf.getSubtarget().enablePostRAScheduler()) {
Andrew Trick8d2ee372014-06-04 07:06:27 +0000373 DEBUG(dbgs() << "Subtarget disables post-MI-sched.\n");
374 return false;
375 }
Andrew Trick17080b92013-12-28 21:56:51 +0000376 DEBUG(dbgs() << "Before post-MI-sched:\n"; mf.print(dbgs()));
377
378 // Initialize the context of the pass.
379 MF = &mf;
380 PassConfig = &getAnalysis<TargetPassConfig>();
381
382 if (VerifyScheduling)
383 MF->verify(this, "Before post machine scheduling.");
384
385 // Instantiate the selected scheduler for this target, function, and
386 // optimization level.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000387 std::unique_ptr<ScheduleDAGInstrs> Scheduler(createPostMachineScheduler());
Matthias Braun93563e72015-11-03 01:53:29 +0000388 scheduleRegions(*Scheduler, true);
Andrew Trick17080b92013-12-28 21:56:51 +0000389
390 if (VerifyScheduling)
391 MF->verify(this, "After post machine scheduling.");
392 return true;
393}
394
Andrew Trickd14d7c22013-12-28 21:56:57 +0000395/// Return true of the given instruction should not be included in a scheduling
396/// region.
397///
398/// MachineScheduler does not currently support scheduling across calls. To
399/// handle calls, the DAG builder needs to be modified to create register
400/// anti/output dependencies on the registers clobbered by the call's regmask
401/// operand. In PreRA scheduling, the stack pointer adjustment already prevents
402/// scheduling across calls. In PostRA scheduling, we need the isCall to enforce
403/// the boundary, but there would be no benefit to postRA scheduling across
404/// calls this late anyway.
405static bool isSchedBoundary(MachineBasicBlock::iterator MI,
406 MachineBasicBlock *MBB,
407 MachineFunction *MF,
Matthias Braun93563e72015-11-03 01:53:29 +0000408 const TargetInstrInfo *TII) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000409 return MI->isCall() || TII->isSchedulingBoundary(*MI, MBB, *MF);
Andrew Trickd14d7c22013-12-28 21:56:57 +0000410}
411
Andrew Trickd7f890e2013-12-28 21:56:47 +0000412/// Main driver for both MachineScheduler and PostMachineScheduler.
Matthias Braun93563e72015-11-03 01:53:29 +0000413void MachineSchedulerBase::scheduleRegions(ScheduleDAGInstrs &Scheduler,
414 bool FixKillFlags) {
Eric Christopherfc6de422014-08-05 02:39:49 +0000415 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000416
417 // Visit all machine basic blocks.
Andrew Trick88639922012-04-24 17:56:43 +0000418 //
419 // TODO: Visit blocks in global postorder or postorder within the bottom-up
420 // loop tree. Then we can optionally compute global RegPressure.
Andrew Tricke77e84e2012-01-13 06:30:30 +0000421 for (MachineFunction::iterator MBB = MF->begin(), MBBEnd = MF->end();
422 MBB != MBBEnd; ++MBB) {
423
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000424 Scheduler.startBlock(&*MBB);
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000425
Andrew Trick33e05d72013-12-28 21:57:02 +0000426#ifndef NDEBUG
427 if (SchedOnlyFunc.getNumOccurrences() && SchedOnlyFunc != MF->getName())
428 continue;
429 if (SchedOnlyBlock.getNumOccurrences()
430 && (int)SchedOnlyBlock != MBB->getNumber())
431 continue;
432#endif
433
Andrew Trick7e120f42012-01-14 02:17:09 +0000434 // Break the block into scheduling regions [I, RegionEnd), and schedule each
Sylvestre Ledru35521e22012-07-23 08:51:15 +0000435 // region as soon as it is discovered. RegionEnd points the scheduling
Andrew Trickaf1bee72012-03-09 22:34:56 +0000436 // boundary at the bottom of the region. The DAG does not include RegionEnd,
437 // but the region does (i.e. the next RegionEnd is above the previous
438 // RegionBegin). If the current block has no terminator then RegionEnd ==
439 // MBB->end() for the bottom region.
440 //
441 // The Scheduler may insert instructions during either schedule() or
442 // exitRegion(), even for empty regions. So the local iterators 'I' and
443 // 'RegionEnd' are invalid across these calls.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000444 //
445 // MBB::size() uses instr_iterator to count. Here we need a bundle to count
446 // as a single instruction.
Andrew Tricka21daf72012-03-09 03:46:39 +0000447 for(MachineBasicBlock::iterator RegionEnd = MBB->end();
Andrew Trickd7f890e2013-12-28 21:56:47 +0000448 RegionEnd != MBB->begin(); RegionEnd = Scheduler.begin()) {
Andrew Trick88639922012-04-24 17:56:43 +0000449
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000450 // Avoid decrementing RegionEnd for blocks with no terminator.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000451 if (RegionEnd != MBB->end() ||
Matthias Braun93563e72015-11-03 01:53:29 +0000452 isSchedBoundary(&*std::prev(RegionEnd), &*MBB, MF, TII)) {
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000453 --RegionEnd;
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000454 }
455
Andrew Trick7e120f42012-01-14 02:17:09 +0000456 // The next region starts above the previous region. Look backward in the
457 // instruction stream until we find the nearest boundary.
Andrew Tricka53e1012013-08-23 17:48:33 +0000458 unsigned NumRegionInstrs = 0;
Andrew Trick7e120f42012-01-14 02:17:09 +0000459 MachineBasicBlock::iterator I = RegionEnd;
Matthias Braun858d1df2016-05-20 19:46:13 +0000460 for (;I != MBB->begin(); --I) {
Duncan P. N. Exon Smith38eea4a2016-08-11 20:03:09 +0000461 MachineInstr &MI = *std::prev(I);
462 if (isSchedBoundary(&MI, &*MBB, MF, TII))
Andrew Trick7e120f42012-01-14 02:17:09 +0000463 break;
Duncan P. N. Exon Smith38eea4a2016-08-11 20:03:09 +0000464 if (!MI.isDebugValue())
Andrea Di Biagiod65fd9f2014-12-12 15:09:58 +0000465 ++NumRegionInstrs;
Andrew Trick7e120f42012-01-14 02:17:09 +0000466 }
Andrew Trick60cf03e2012-03-07 05:21:52 +0000467 // Notify the scheduler of the region, even if we may skip scheduling
468 // it. Perhaps it still needs to be bundled.
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000469 Scheduler.enterRegion(&*MBB, I, RegionEnd, NumRegionInstrs);
Andrew Trick60cf03e2012-03-07 05:21:52 +0000470
471 // Skip empty scheduling regions (0 or 1 schedulable instructions).
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000472 if (I == RegionEnd || I == std::prev(RegionEnd)) {
Andrew Trick60cf03e2012-03-07 05:21:52 +0000473 // Close the current region. Bundle the terminator if needed.
Andrew Trickaf1bee72012-03-09 22:34:56 +0000474 // This invalidates 'RegionEnd' and 'I'.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000475 Scheduler.exitRegion();
Andrew Trick7ccdc5c2012-01-17 06:55:07 +0000476 continue;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000477 }
Matthias Braun93563e72015-11-03 01:53:29 +0000478 DEBUG(dbgs() << "********** MI Scheduling **********\n");
Craig Toppera538d832012-08-22 06:07:19 +0000479 DEBUG(dbgs() << MF->getName()
Andrew Trick54b2ce32013-01-25 07:45:31 +0000480 << ":BB#" << MBB->getNumber() << " " << MBB->getName()
481 << "\n From: " << *I << " To: ";
Andrew Tricke57583a2012-02-08 02:17:21 +0000482 if (RegionEnd != MBB->end()) dbgs() << *RegionEnd;
483 else dbgs() << "End";
Matthias Braun858d1df2016-05-20 19:46:13 +0000484 dbgs() << " RegionInstrs: " << NumRegionInstrs << '\n');
Gerolf Hoflehnerb5220dc2014-08-07 21:49:44 +0000485 if (DumpCriticalPathLength) {
486 errs() << MF->getName();
487 errs() << ":BB# " << MBB->getNumber();
488 errs() << " " << MBB->getName() << " \n";
489 }
Andrew Trick7ccdc5c2012-01-17 06:55:07 +0000490
Andrew Trick1c0ec452012-03-09 03:46:42 +0000491 // Schedule a region: possibly reorder instructions.
Andrew Trickaf1bee72012-03-09 22:34:56 +0000492 // This invalidates 'RegionEnd' and 'I'.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000493 Scheduler.schedule();
Andrew Trick1c0ec452012-03-09 03:46:42 +0000494
495 // Close the current region.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000496 Scheduler.exitRegion();
Andrew Trick60cf03e2012-03-07 05:21:52 +0000497
498 // Scheduling has invalidated the current iterator 'I'. Ask the
499 // scheduler for the top of it's scheduled region.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000500 RegionEnd = Scheduler.begin();
Andrew Trick7e120f42012-01-14 02:17:09 +0000501 }
Andrew Trickd7f890e2013-12-28 21:56:47 +0000502 Scheduler.finishBlock();
Matthias Braun93563e72015-11-03 01:53:29 +0000503 // FIXME: Ideally, no further passes should rely on kill flags. However,
504 // thumb2 size reduction is currently an exception, so the PostMIScheduler
505 // needs to do this.
506 if (FixKillFlags)
507 Scheduler.fixupKills(&*MBB);
Andrew Tricke77e84e2012-01-13 06:30:30 +0000508 }
Andrew Trickd7f890e2013-12-28 21:56:47 +0000509 Scheduler.finalizeSchedule();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000510}
511
Andrew Trickd7f890e2013-12-28 21:56:47 +0000512void MachineSchedulerBase::print(raw_ostream &O, const Module* m) const {
Andrew Tricke77e84e2012-01-13 06:30:30 +0000513 // unimplemented
514}
515
Alp Tokerd8d510a2014-07-01 21:19:13 +0000516LLVM_DUMP_METHOD
Andrew Trick7a8e1002012-09-11 00:39:15 +0000517void ReadyQueue::dump() {
James Y Knighte72b0db2015-09-18 18:52:20 +0000518 dbgs() << "Queue " << Name << ": ";
Andrew Trick7a8e1002012-09-11 00:39:15 +0000519 for (unsigned i = 0, e = Queue.size(); i < e; ++i)
520 dbgs() << Queue[i]->NodeNum << " ";
521 dbgs() << "\n";
522}
Andrew Trick8823dec2012-03-14 04:00:41 +0000523
524//===----------------------------------------------------------------------===//
Andrew Trickd7f890e2013-12-28 21:56:47 +0000525// ScheduleDAGMI - Basic machine instruction scheduling. This is
526// independent of PreRA/PostRA scheduling and involves no extra book-keeping for
527// virtual registers.
528// ===----------------------------------------------------------------------===/
Andrew Trick8823dec2012-03-14 04:00:41 +0000529
David Blaikie422b93d2014-04-21 20:32:32 +0000530// Provide a vtable anchor.
Andrew Trick44f750a2013-01-25 04:01:04 +0000531ScheduleDAGMI::~ScheduleDAGMI() {
Andrew Trick44f750a2013-01-25 04:01:04 +0000532}
533
Andrew Trick85a1d4c2013-04-24 15:54:43 +0000534bool ScheduleDAGMI::canAddEdge(SUnit *SuccSU, SUnit *PredSU) {
535 return SuccSU == &ExitSU || !Topo.IsReachable(PredSU, SuccSU);
536}
537
Andrew Tricka7714a02012-11-12 19:40:10 +0000538bool ScheduleDAGMI::addEdge(SUnit *SuccSU, const SDep &PredDep) {
Andrew Trick263280242012-11-12 19:52:20 +0000539 if (SuccSU != &ExitSU) {
540 // Do not use WillCreateCycle, it assumes SD scheduling.
541 // If Pred is reachable from Succ, then the edge creates a cycle.
542 if (Topo.IsReachable(PredDep.getSUnit(), SuccSU))
543 return false;
544 Topo.AddPred(SuccSU, PredDep.getSUnit());
545 }
Andrew Tricka7714a02012-11-12 19:40:10 +0000546 SuccSU->addPred(PredDep, /*Required=*/!PredDep.isArtificial());
547 // Return true regardless of whether a new edge needed to be inserted.
548 return true;
549}
550
Andrew Trick02a80da2012-03-08 01:41:12 +0000551/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. When
552/// NumPredsLeft reaches zero, release the successor node.
Andrew Trick61f1a272012-05-24 22:11:09 +0000553///
554/// FIXME: Adjust SuccSU height based on MinLatency.
Andrew Trick8823dec2012-03-14 04:00:41 +0000555void ScheduleDAGMI::releaseSucc(SUnit *SU, SDep *SuccEdge) {
Andrew Trick02a80da2012-03-08 01:41:12 +0000556 SUnit *SuccSU = SuccEdge->getSUnit();
557
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000558 if (SuccEdge->isWeak()) {
559 --SuccSU->WeakPredsLeft;
Andrew Tricka7714a02012-11-12 19:40:10 +0000560 if (SuccEdge->isCluster())
561 NextClusterSucc = SuccSU;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000562 return;
563 }
Andrew Trick02a80da2012-03-08 01:41:12 +0000564#ifndef NDEBUG
565 if (SuccSU->NumPredsLeft == 0) {
566 dbgs() << "*** Scheduling failed! ***\n";
567 SuccSU->dump(this);
568 dbgs() << " has been released too many times!\n";
Craig Topperc0196b12014-04-14 00:51:57 +0000569 llvm_unreachable(nullptr);
Andrew Trick02a80da2012-03-08 01:41:12 +0000570 }
571#endif
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000572 // SU->TopReadyCycle was set to CurrCycle when it was scheduled. However,
573 // CurrCycle may have advanced since then.
574 if (SuccSU->TopReadyCycle < SU->TopReadyCycle + SuccEdge->getLatency())
575 SuccSU->TopReadyCycle = SU->TopReadyCycle + SuccEdge->getLatency();
576
Andrew Trick02a80da2012-03-08 01:41:12 +0000577 --SuccSU->NumPredsLeft;
578 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
Andrew Trick8823dec2012-03-14 04:00:41 +0000579 SchedImpl->releaseTopNode(SuccSU);
Andrew Trick02a80da2012-03-08 01:41:12 +0000580}
581
582/// releaseSuccessors - Call releaseSucc on each of SU's successors.
Andrew Trick8823dec2012-03-14 04:00:41 +0000583void ScheduleDAGMI::releaseSuccessors(SUnit *SU) {
Andrew Trick02a80da2012-03-08 01:41:12 +0000584 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
585 I != E; ++I) {
586 releaseSucc(SU, &*I);
587 }
588}
589
Andrew Trick8823dec2012-03-14 04:00:41 +0000590/// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. When
591/// NumSuccsLeft reaches zero, release the predecessor node.
Andrew Trick61f1a272012-05-24 22:11:09 +0000592///
593/// FIXME: Adjust PredSU height based on MinLatency.
Andrew Trick8823dec2012-03-14 04:00:41 +0000594void ScheduleDAGMI::releasePred(SUnit *SU, SDep *PredEdge) {
595 SUnit *PredSU = PredEdge->getSUnit();
596
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000597 if (PredEdge->isWeak()) {
598 --PredSU->WeakSuccsLeft;
Andrew Tricka7714a02012-11-12 19:40:10 +0000599 if (PredEdge->isCluster())
600 NextClusterPred = PredSU;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000601 return;
602 }
Andrew Trick8823dec2012-03-14 04:00:41 +0000603#ifndef NDEBUG
604 if (PredSU->NumSuccsLeft == 0) {
605 dbgs() << "*** Scheduling failed! ***\n";
606 PredSU->dump(this);
607 dbgs() << " has been released too many times!\n";
Craig Topperc0196b12014-04-14 00:51:57 +0000608 llvm_unreachable(nullptr);
Andrew Trick8823dec2012-03-14 04:00:41 +0000609 }
610#endif
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000611 // SU->BotReadyCycle was set to CurrCycle when it was scheduled. However,
612 // CurrCycle may have advanced since then.
613 if (PredSU->BotReadyCycle < SU->BotReadyCycle + PredEdge->getLatency())
614 PredSU->BotReadyCycle = SU->BotReadyCycle + PredEdge->getLatency();
615
Andrew Trick8823dec2012-03-14 04:00:41 +0000616 --PredSU->NumSuccsLeft;
617 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU)
618 SchedImpl->releaseBottomNode(PredSU);
619}
620
621/// releasePredecessors - Call releasePred on each of SU's predecessors.
622void ScheduleDAGMI::releasePredecessors(SUnit *SU) {
623 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
624 I != E; ++I) {
625 releasePred(SU, &*I);
626 }
627}
628
Andrew Trickd7f890e2013-12-28 21:56:47 +0000629/// enterRegion - Called back from MachineScheduler::runOnMachineFunction after
630/// crossing a scheduling boundary. [begin, end) includes all instructions in
631/// the region, including the boundary itself and single-instruction regions
632/// that don't get scheduled.
633void ScheduleDAGMI::enterRegion(MachineBasicBlock *bb,
634 MachineBasicBlock::iterator begin,
635 MachineBasicBlock::iterator end,
636 unsigned regioninstrs)
637{
638 ScheduleDAGInstrs::enterRegion(bb, begin, end, regioninstrs);
639
640 SchedImpl->initPolicy(begin, end, regioninstrs);
641}
642
Andrew Tricke833e1c2013-04-13 06:07:40 +0000643/// This is normally called from the main scheduler loop but may also be invoked
644/// by the scheduling strategy to perform additional code motion.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000645void ScheduleDAGMI::moveInstruction(
646 MachineInstr *MI, MachineBasicBlock::iterator InsertPos) {
Andrew Trick463b2f12012-05-17 18:35:03 +0000647 // Advance RegionBegin if the first instruction moves down.
Andrew Trick54f7def2012-03-21 04:12:10 +0000648 if (&*RegionBegin == MI)
Andrew Trick463b2f12012-05-17 18:35:03 +0000649 ++RegionBegin;
650
651 // Update the instruction stream.
Andrew Trick8823dec2012-03-14 04:00:41 +0000652 BB->splice(InsertPos, BB, MI);
Andrew Trick463b2f12012-05-17 18:35:03 +0000653
654 // Update LiveIntervals
Andrew Trickd7f890e2013-12-28 21:56:47 +0000655 if (LIS)
Duncan P. N. Exon Smithbe8f8c42016-02-27 20:14:29 +0000656 LIS->handleMove(*MI, /*UpdateFlags=*/true);
Andrew Trick463b2f12012-05-17 18:35:03 +0000657
658 // Recede RegionBegin if an instruction moves above the first.
Andrew Trick8823dec2012-03-14 04:00:41 +0000659 if (RegionBegin == InsertPos)
660 RegionBegin = MI;
661}
662
Andrew Trickde670c02012-03-21 04:12:07 +0000663bool ScheduleDAGMI::checkSchedLimit() {
664#ifndef NDEBUG
665 if (NumInstrsScheduled == MISchedCutoff && MISchedCutoff != ~0U) {
666 CurrentTop = CurrentBottom;
667 return false;
668 }
669 ++NumInstrsScheduled;
670#endif
671 return true;
672}
673
Andrew Trickd7f890e2013-12-28 21:56:47 +0000674/// Per-region scheduling driver, called back from
675/// MachineScheduler::runOnMachineFunction. This is a simplified driver that
676/// does not consider liveness or register pressure. It is useful for PostRA
677/// scheduling and potentially other custom schedulers.
678void ScheduleDAGMI::schedule() {
James Y Knighte72b0db2015-09-18 18:52:20 +0000679 DEBUG(dbgs() << "ScheduleDAGMI::schedule starting\n");
680 DEBUG(SchedImpl->dumpPolicy());
681
Andrew Trickd7f890e2013-12-28 21:56:47 +0000682 // Build the DAG.
683 buildSchedGraph(AA);
684
685 Topo.InitDAGTopologicalSorting();
686
687 postprocessDAG();
688
689 SmallVector<SUnit*, 8> TopRoots, BotRoots;
690 findRootsAndBiasEdges(TopRoots, BotRoots);
691
692 // Initialize the strategy before modifying the DAG.
693 // This may initialize a DFSResult to be used for queue priority.
694 SchedImpl->initialize(this);
695
696 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
697 SUnits[su].dumpAll(this));
698 if (ViewMISchedDAGs) viewGraph();
699
700 // Initialize ready queues now that the DAG and priority data are finalized.
701 initQueues(TopRoots, BotRoots);
702
703 bool IsTopNode = false;
James Y Knighte72b0db2015-09-18 18:52:20 +0000704 while (true) {
705 DEBUG(dbgs() << "** ScheduleDAGMI::schedule picking next node\n");
706 SUnit *SU = SchedImpl->pickNode(IsTopNode);
707 if (!SU) break;
708
Andrew Trickd7f890e2013-12-28 21:56:47 +0000709 assert(!SU->isScheduled && "Node already scheduled");
710 if (!checkSchedLimit())
711 break;
712
713 MachineInstr *MI = SU->getInstr();
714 if (IsTopNode) {
715 assert(SU->isTopReady() && "node still has unscheduled dependencies");
716 if (&*CurrentTop == MI)
717 CurrentTop = nextIfDebug(++CurrentTop, CurrentBottom);
718 else
719 moveInstruction(MI, CurrentTop);
Matthias Braunb550b762016-04-21 01:54:13 +0000720 } else {
Andrew Trickd7f890e2013-12-28 21:56:47 +0000721 assert(SU->isBottomReady() && "node still has unscheduled dependencies");
722 MachineBasicBlock::iterator priorII =
723 priorNonDebug(CurrentBottom, CurrentTop);
724 if (&*priorII == MI)
725 CurrentBottom = priorII;
726 else {
727 if (&*CurrentTop == MI)
728 CurrentTop = nextIfDebug(++CurrentTop, priorII);
729 moveInstruction(MI, CurrentBottom);
730 CurrentBottom = MI;
731 }
732 }
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000733 // Notify the scheduling strategy before updating the DAG.
Andrew Trick491e34a2014-06-12 22:36:28 +0000734 // This sets the scheduled node's ReadyCycle to CurrCycle. When updateQueues
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000735 // runs, it can then use the accurate ReadyCycle time to determine whether
736 // newly released nodes can move to the readyQ.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000737 SchedImpl->schedNode(SU, IsTopNode);
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000738
739 updateQueues(SU, IsTopNode);
Andrew Trickd7f890e2013-12-28 21:56:47 +0000740 }
741 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone.");
742
743 placeDebugValues();
744
745 DEBUG({
746 unsigned BBNum = begin()->getParent()->getNumber();
747 dbgs() << "*** Final schedule for BB#" << BBNum << " ***\n";
748 dumpSchedule();
749 dbgs() << '\n';
750 });
751}
752
753/// Apply each ScheduleDAGMutation step in order.
754void ScheduleDAGMI::postprocessDAG() {
755 for (unsigned i = 0, e = Mutations.size(); i < e; ++i) {
756 Mutations[i]->apply(this);
757 }
758}
759
760void ScheduleDAGMI::
761findRootsAndBiasEdges(SmallVectorImpl<SUnit*> &TopRoots,
762 SmallVectorImpl<SUnit*> &BotRoots) {
763 for (std::vector<SUnit>::iterator
764 I = SUnits.begin(), E = SUnits.end(); I != E; ++I) {
765 SUnit *SU = &(*I);
766 assert(!SU->isBoundaryNode() && "Boundary node should not be in SUnits");
767
768 // Order predecessors so DFSResult follows the critical path.
769 SU->biasCriticalPath();
770
771 // A SUnit is ready to top schedule if it has no predecessors.
772 if (!I->NumPredsLeft)
773 TopRoots.push_back(SU);
774 // A SUnit is ready to bottom schedule if it has no successors.
775 if (!I->NumSuccsLeft)
776 BotRoots.push_back(SU);
777 }
778 ExitSU.biasCriticalPath();
779}
780
781/// Identify DAG roots and setup scheduler queues.
782void ScheduleDAGMI::initQueues(ArrayRef<SUnit*> TopRoots,
783 ArrayRef<SUnit*> BotRoots) {
Craig Topperc0196b12014-04-14 00:51:57 +0000784 NextClusterSucc = nullptr;
785 NextClusterPred = nullptr;
Andrew Trickd7f890e2013-12-28 21:56:47 +0000786
787 // Release all DAG roots for scheduling, not including EntrySU/ExitSU.
788 //
789 // Nodes with unreleased weak edges can still be roots.
790 // Release top roots in forward order.
791 for (SmallVectorImpl<SUnit*>::const_iterator
792 I = TopRoots.begin(), E = TopRoots.end(); I != E; ++I) {
793 SchedImpl->releaseTopNode(*I);
794 }
795 // Release bottom roots in reverse order so the higher priority nodes appear
796 // first. This is more natural and slightly more efficient.
797 for (SmallVectorImpl<SUnit*>::const_reverse_iterator
798 I = BotRoots.rbegin(), E = BotRoots.rend(); I != E; ++I) {
799 SchedImpl->releaseBottomNode(*I);
800 }
801
802 releaseSuccessors(&EntrySU);
803 releasePredecessors(&ExitSU);
804
805 SchedImpl->registerRoots();
806
807 // Advance past initial DebugValues.
808 CurrentTop = nextIfDebug(RegionBegin, RegionEnd);
809 CurrentBottom = RegionEnd;
810}
811
812/// Update scheduler queues after scheduling an instruction.
813void ScheduleDAGMI::updateQueues(SUnit *SU, bool IsTopNode) {
814 // Release dependent instructions for scheduling.
815 if (IsTopNode)
816 releaseSuccessors(SU);
817 else
818 releasePredecessors(SU);
819
820 SU->isScheduled = true;
821}
822
823/// Reinsert any remaining debug_values, just like the PostRA scheduler.
824void ScheduleDAGMI::placeDebugValues() {
825 // If first instruction was a DBG_VALUE then put it back.
826 if (FirstDbgValue) {
827 BB->splice(RegionBegin, BB, FirstDbgValue);
828 RegionBegin = FirstDbgValue;
829 }
830
831 for (std::vector<std::pair<MachineInstr *, MachineInstr *> >::iterator
832 DI = DbgValues.end(), DE = DbgValues.begin(); DI != DE; --DI) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000833 std::pair<MachineInstr *, MachineInstr *> P = *std::prev(DI);
Andrew Trickd7f890e2013-12-28 21:56:47 +0000834 MachineInstr *DbgValue = P.first;
835 MachineBasicBlock::iterator OrigPrevMI = P.second;
836 if (&*RegionBegin == DbgValue)
837 ++RegionBegin;
838 BB->splice(++OrigPrevMI, BB, DbgValue);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000839 if (OrigPrevMI == std::prev(RegionEnd))
Andrew Trickd7f890e2013-12-28 21:56:47 +0000840 RegionEnd = DbgValue;
841 }
842 DbgValues.clear();
Craig Topperc0196b12014-04-14 00:51:57 +0000843 FirstDbgValue = nullptr;
Andrew Trickd7f890e2013-12-28 21:56:47 +0000844}
845
846#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
847void ScheduleDAGMI::dumpSchedule() const {
848 for (MachineBasicBlock::iterator MI = begin(), ME = end(); MI != ME; ++MI) {
849 if (SUnit *SU = getSUnit(&(*MI)))
850 SU->dump(this);
851 else
852 dbgs() << "Missing SUnit\n";
853 }
854}
855#endif
856
857//===----------------------------------------------------------------------===//
858// ScheduleDAGMILive - Base class for MachineInstr scheduling with LiveIntervals
859// preservation.
860//===----------------------------------------------------------------------===//
861
862ScheduleDAGMILive::~ScheduleDAGMILive() {
863 delete DFSResult;
864}
865
Andrew Trick88639922012-04-24 17:56:43 +0000866/// enterRegion - Called back from MachineScheduler::runOnMachineFunction after
867/// crossing a scheduling boundary. [begin, end) includes all instructions in
868/// the region, including the boundary itself and single-instruction regions
869/// that don't get scheduled.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000870void ScheduleDAGMILive::enterRegion(MachineBasicBlock *bb,
Andrew Trick88639922012-04-24 17:56:43 +0000871 MachineBasicBlock::iterator begin,
872 MachineBasicBlock::iterator end,
Andrew Tricka53e1012013-08-23 17:48:33 +0000873 unsigned regioninstrs)
Andrew Trick88639922012-04-24 17:56:43 +0000874{
Andrew Trickd7f890e2013-12-28 21:56:47 +0000875 // ScheduleDAGMI initializes SchedImpl's per-region policy.
876 ScheduleDAGMI::enterRegion(bb, begin, end, regioninstrs);
Andrew Trick4add42f2012-05-10 21:06:10 +0000877
878 // For convenience remember the end of the liveness region.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000879 LiveRegionEnd = (RegionEnd == bb->end()) ? RegionEnd : std::next(RegionEnd);
Andrew Trick75e411c2013-09-06 17:32:34 +0000880
Andrew Trickb248b4a2013-09-06 17:32:47 +0000881 SUPressureDiffs.clear();
882
Andrew Trick75e411c2013-09-06 17:32:34 +0000883 ShouldTrackPressure = SchedImpl->shouldTrackPressure();
Matthias Braund4f64092016-01-20 00:23:32 +0000884 ShouldTrackLaneMasks = SchedImpl->shouldTrackLaneMasks();
885
Matthias Braunf9acaca2016-05-31 22:38:06 +0000886 assert((!ShouldTrackLaneMasks || ShouldTrackPressure) &&
887 "ShouldTrackLaneMasks requires ShouldTrackPressure");
Andrew Trick4add42f2012-05-10 21:06:10 +0000888}
889
890// Setup the register pressure trackers for the top scheduled top and bottom
891// scheduled regions.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000892void ScheduleDAGMILive::initRegPressure() {
Matthias Braund4f64092016-01-20 00:23:32 +0000893 TopRPTracker.init(&MF, RegClassInfo, LIS, BB, RegionBegin,
894 ShouldTrackLaneMasks, false);
895 BotRPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd,
896 ShouldTrackLaneMasks, false);
Andrew Trick4add42f2012-05-10 21:06:10 +0000897
898 // Close the RPTracker to finalize live ins.
899 RPTracker.closeRegion();
900
Andrew Trick9c17eab2013-07-30 19:59:12 +0000901 DEBUG(RPTracker.dump());
Andrew Trick79d3eec2012-05-24 22:11:14 +0000902
Andrew Trick4add42f2012-05-10 21:06:10 +0000903 // Initialize the live ins and live outs.
Matthias Braun3e86de12015-09-17 21:12:24 +0000904 TopRPTracker.addLiveRegs(RPTracker.getPressure().LiveInRegs);
905 BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs);
Andrew Trick4add42f2012-05-10 21:06:10 +0000906
907 // Close one end of the tracker so we can call
908 // getMaxUpward/DownwardPressureDelta before advancing across any
909 // instructions. This converts currently live regs into live ins/outs.
910 TopRPTracker.closeTop();
911 BotRPTracker.closeBottom();
912
Andrew Trick9c17eab2013-07-30 19:59:12 +0000913 BotRPTracker.initLiveThru(RPTracker);
914 if (!BotRPTracker.getLiveThru().empty()) {
915 TopRPTracker.initLiveThru(BotRPTracker.getLiveThru());
916 DEBUG(dbgs() << "Live Thru: ";
917 dumpRegSetPressure(BotRPTracker.getLiveThru(), TRI));
918 };
919
Andrew Trick2bc74c22013-08-30 04:36:57 +0000920 // For each live out vreg reduce the pressure change associated with other
921 // uses of the same vreg below the live-out reaching def.
Matthias Braun3e86de12015-09-17 21:12:24 +0000922 updatePressureDiffs(RPTracker.getPressure().LiveOutRegs);
Andrew Trick2bc74c22013-08-30 04:36:57 +0000923
Andrew Trick4add42f2012-05-10 21:06:10 +0000924 // Account for liveness generated by the region boundary.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000925 if (LiveRegionEnd != RegionEnd) {
Matthias Braun5d458612016-01-20 00:23:26 +0000926 SmallVector<RegisterMaskPair, 8> LiveUses;
Andrew Trick2bc74c22013-08-30 04:36:57 +0000927 BotRPTracker.recede(&LiveUses);
928 updatePressureDiffs(LiveUses);
929 }
Andrew Trick4add42f2012-05-10 21:06:10 +0000930
Matthias Braune6edd482015-11-13 22:30:31 +0000931 DEBUG(
932 dbgs() << "Top Pressure:\n";
933 dumpRegSetPressure(TopRPTracker.getRegSetPressureAtPos(), TRI);
934 dbgs() << "Bottom Pressure:\n";
935 dumpRegSetPressure(BotRPTracker.getRegSetPressureAtPos(), TRI);
936 );
937
Andrew Trick4add42f2012-05-10 21:06:10 +0000938 assert(BotRPTracker.getPos() == RegionEnd && "Can't find the region bottom");
Andrew Trick22025772012-05-17 18:35:10 +0000939
940 // Cache the list of excess pressure sets in this region. This will also track
941 // the max pressure in the scheduled code for these sets.
942 RegionCriticalPSets.clear();
Jakub Staszakc641ada2013-01-25 21:44:27 +0000943 const std::vector<unsigned> &RegionPressure =
944 RPTracker.getPressure().MaxSetPressure;
Andrew Trick22025772012-05-17 18:35:10 +0000945 for (unsigned i = 0, e = RegionPressure.size(); i < e; ++i) {
Andrew Trick736dd9a2013-06-21 18:32:58 +0000946 unsigned Limit = RegClassInfo->getRegPressureSetLimit(i);
Andrew Trickb55db582013-06-21 18:33:01 +0000947 if (RegionPressure[i] > Limit) {
948 DEBUG(dbgs() << TRI->getRegPressureSetName(i)
949 << " Limit " << Limit
950 << " Actual " << RegionPressure[i] << "\n");
Andrew Trick1a831342013-08-30 03:49:48 +0000951 RegionCriticalPSets.push_back(PressureChange(i));
Andrew Trickb55db582013-06-21 18:33:01 +0000952 }
Andrew Trick22025772012-05-17 18:35:10 +0000953 }
954 DEBUG(dbgs() << "Excess PSets: ";
955 for (unsigned i = 0, e = RegionCriticalPSets.size(); i != e; ++i)
956 dbgs() << TRI->getRegPressureSetName(
Andrew Trick1a831342013-08-30 03:49:48 +0000957 RegionCriticalPSets[i].getPSet()) << " ";
Andrew Trick22025772012-05-17 18:35:10 +0000958 dbgs() << "\n");
959}
960
Andrew Trickd7f890e2013-12-28 21:56:47 +0000961void ScheduleDAGMILive::
Andrew Trickb248b4a2013-09-06 17:32:47 +0000962updateScheduledPressure(const SUnit *SU,
963 const std::vector<unsigned> &NewMaxPressure) {
964 const PressureDiff &PDiff = getPressureDiff(SU);
965 unsigned CritIdx = 0, CritEnd = RegionCriticalPSets.size();
966 for (PressureDiff::const_iterator I = PDiff.begin(), E = PDiff.end();
967 I != E; ++I) {
968 if (!I->isValid())
969 break;
970 unsigned ID = I->getPSet();
971 while (CritIdx != CritEnd && RegionCriticalPSets[CritIdx].getPSet() < ID)
972 ++CritIdx;
973 if (CritIdx != CritEnd && RegionCriticalPSets[CritIdx].getPSet() == ID) {
974 if ((int)NewMaxPressure[ID] > RegionCriticalPSets[CritIdx].getUnitInc()
975 && NewMaxPressure[ID] <= INT16_MAX)
976 RegionCriticalPSets[CritIdx].setUnitInc(NewMaxPressure[ID]);
977 }
978 unsigned Limit = RegClassInfo->getRegPressureSetLimit(ID);
979 if (NewMaxPressure[ID] >= Limit - 2) {
980 DEBUG(dbgs() << " " << TRI->getRegPressureSetName(ID) << ": "
Andrew Trick569dc65a2015-05-17 23:40:31 +0000981 << NewMaxPressure[ID]
982 << ((NewMaxPressure[ID] > Limit) ? " > " : " <= ") << Limit
983 << "(+ " << BotRPTracker.getLiveThru()[ID] << " livethru)\n");
Andrew Trickb248b4a2013-09-06 17:32:47 +0000984 }
Andrew Trick22025772012-05-17 18:35:10 +0000985 }
Andrew Trick88639922012-04-24 17:56:43 +0000986}
987
Andrew Trick2bc74c22013-08-30 04:36:57 +0000988/// Update the PressureDiff array for liveness after scheduling this
989/// instruction.
Matthias Braun5d458612016-01-20 00:23:26 +0000990void ScheduleDAGMILive::updatePressureDiffs(
991 ArrayRef<RegisterMaskPair> LiveUses) {
992 for (const RegisterMaskPair &P : LiveUses) {
Matthias Braun5d458612016-01-20 00:23:26 +0000993 unsigned Reg = P.RegUnit;
Matthias Braund4f64092016-01-20 00:23:32 +0000994 /// FIXME: Currently assuming single-use physregs.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000995 if (!TRI->isVirtualRegister(Reg))
996 continue;
Andrew Trickffdbefb2013-09-06 17:32:39 +0000997
Matthias Braund4f64092016-01-20 00:23:32 +0000998 if (ShouldTrackLaneMasks) {
999 // If the register has just become live then other uses won't change
1000 // this fact anymore => decrement pressure.
1001 // If the register has just become dead then other uses make it come
1002 // back to life => increment pressure.
1003 bool Decrement = P.LaneMask != 0;
1004
1005 for (const VReg2SUnit &V2SU
1006 : make_range(VRegUses.find(Reg), VRegUses.end())) {
1007 SUnit &SU = *V2SU.SU;
1008 if (SU.isScheduled || &SU == &ExitSU)
1009 continue;
1010
1011 PressureDiff &PDiff = getPressureDiff(&SU);
1012 PDiff.addPressureChange(Reg, Decrement, &MRI);
1013 DEBUG(
1014 dbgs() << " UpdateRegP: SU(" << SU.NodeNum << ") "
1015 << PrintReg(Reg, TRI) << ':' << PrintLaneMask(P.LaneMask)
1016 << ' ' << *SU.getInstr();
1017 dbgs() << " to ";
1018 PDiff.dump(*TRI);
1019 );
1020 }
1021 } else {
1022 assert(P.LaneMask != 0);
1023 DEBUG(dbgs() << " LiveReg: " << PrintVRegOrUnit(Reg, TRI) << "\n");
1024 // This may be called before CurrentBottom has been initialized. However,
1025 // BotRPTracker must have a valid position. We want the value live into the
1026 // instruction or live out of the block, so ask for the previous
1027 // instruction's live-out.
1028 const LiveInterval &LI = LIS->getInterval(Reg);
1029 VNInfo *VNI;
1030 MachineBasicBlock::const_iterator I =
1031 nextIfDebug(BotRPTracker.getPos(), BB->end());
1032 if (I == BB->end())
1033 VNI = LI.getVNInfoBefore(LIS->getMBBEndIdx(BB));
1034 else {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001035 LiveQueryResult LRQ = LI.Query(LIS->getInstructionIndex(*I));
Matthias Braund4f64092016-01-20 00:23:32 +00001036 VNI = LRQ.valueIn();
1037 }
1038 // RegisterPressureTracker guarantees that readsReg is true for LiveUses.
1039 assert(VNI && "No live value at use.");
1040 for (const VReg2SUnit &V2SU
1041 : make_range(VRegUses.find(Reg), VRegUses.end())) {
1042 SUnit *SU = V2SU.SU;
1043 // If this use comes before the reaching def, it cannot be a last use,
1044 // so decrease its pressure change.
1045 if (!SU->isScheduled && SU != &ExitSU) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001046 LiveQueryResult LRQ =
1047 LI.Query(LIS->getInstructionIndex(*SU->getInstr()));
Matthias Braund4f64092016-01-20 00:23:32 +00001048 if (LRQ.valueIn() == VNI) {
1049 PressureDiff &PDiff = getPressureDiff(SU);
1050 PDiff.addPressureChange(Reg, true, &MRI);
1051 DEBUG(
1052 dbgs() << " UpdateRegP: SU(" << SU->NodeNum << ") "
1053 << *SU->getInstr();
1054 dbgs() << " to ";
1055 PDiff.dump(*TRI);
1056 );
1057 }
Matthias Braun9198c672015-11-06 20:59:02 +00001058 }
Andrew Trick2bc74c22013-08-30 04:36:57 +00001059 }
1060 }
1061 }
1062}
1063
Andrew Trick8823dec2012-03-14 04:00:41 +00001064/// schedule - Called back from MachineScheduler::runOnMachineFunction
Andrew Trick88639922012-04-24 17:56:43 +00001065/// after setting up the current scheduling region. [RegionBegin, RegionEnd)
1066/// only includes instructions that have DAG nodes, not scheduling boundaries.
Andrew Trick7a8e1002012-09-11 00:39:15 +00001067///
1068/// This is a skeletal driver, with all the functionality pushed into helpers,
Nick Lewycky06b0ea22015-08-18 22:41:58 +00001069/// so that it can be easily extended by experimental schedulers. Generally,
Andrew Trick7a8e1002012-09-11 00:39:15 +00001070/// implementing MachineSchedStrategy should be sufficient to implement a new
1071/// scheduling algorithm. However, if a scheduler further subclasses
Andrew Trickd7f890e2013-12-28 21:56:47 +00001072/// ScheduleDAGMILive then it will want to override this virtual method in order
1073/// to update any specialized state.
1074void ScheduleDAGMILive::schedule() {
James Y Knighte72b0db2015-09-18 18:52:20 +00001075 DEBUG(dbgs() << "ScheduleDAGMILive::schedule starting\n");
1076 DEBUG(SchedImpl->dumpPolicy());
Andrew Trick7a8e1002012-09-11 00:39:15 +00001077 buildDAGWithRegPressure();
1078
Andrew Tricka7714a02012-11-12 19:40:10 +00001079 Topo.InitDAGTopologicalSorting();
1080
Andrew Tricka2733e92012-09-14 17:22:42 +00001081 postprocessDAG();
1082
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001083 SmallVector<SUnit*, 8> TopRoots, BotRoots;
1084 findRootsAndBiasEdges(TopRoots, BotRoots);
1085
1086 // Initialize the strategy before modifying the DAG.
1087 // This may initialize a DFSResult to be used for queue priority.
1088 SchedImpl->initialize(this);
1089
Matthias Braun9198c672015-11-06 20:59:02 +00001090 DEBUG(
1091 for (const SUnit &SU : SUnits) {
1092 SU.dumpAll(this);
1093 if (ShouldTrackPressure) {
1094 dbgs() << " Pressure Diff : ";
1095 getPressureDiff(&SU).dump(*TRI);
1096 }
1097 dbgs() << '\n';
1098 }
1099 );
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001100 if (ViewMISchedDAGs) viewGraph();
Andrew Trick7a8e1002012-09-11 00:39:15 +00001101
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001102 // Initialize ready queues now that the DAG and priority data are finalized.
1103 initQueues(TopRoots, BotRoots);
Andrew Trick7a8e1002012-09-11 00:39:15 +00001104
1105 bool IsTopNode = false;
James Y Knighte72b0db2015-09-18 18:52:20 +00001106 while (true) {
1107 DEBUG(dbgs() << "** ScheduleDAGMILive::schedule picking next node\n");
1108 SUnit *SU = SchedImpl->pickNode(IsTopNode);
1109 if (!SU) break;
1110
Andrew Trick984d98b2012-10-08 18:53:53 +00001111 assert(!SU->isScheduled && "Node already scheduled");
Andrew Trick7a8e1002012-09-11 00:39:15 +00001112 if (!checkSchedLimit())
1113 break;
1114
1115 scheduleMI(SU, IsTopNode);
1116
Andrew Trickd7f890e2013-12-28 21:56:47 +00001117 if (DFSResult) {
1118 unsigned SubtreeID = DFSResult->getSubtreeID(SU);
1119 if (!ScheduledTrees.test(SubtreeID)) {
1120 ScheduledTrees.set(SubtreeID);
1121 DFSResult->scheduleTree(SubtreeID);
1122 SchedImpl->scheduleTree(SubtreeID);
1123 }
1124 }
1125
1126 // Notify the scheduling strategy after updating the DAG.
1127 SchedImpl->schedNode(SU, IsTopNode);
Andrew Trick43adfb32015-03-27 06:10:13 +00001128
1129 updateQueues(SU, IsTopNode);
Andrew Trick7a8e1002012-09-11 00:39:15 +00001130 }
1131 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone.");
1132
1133 placeDebugValues();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001134
1135 DEBUG({
Andrew Trickcf7e6972012-11-28 03:42:47 +00001136 unsigned BBNum = begin()->getParent()->getNumber();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001137 dbgs() << "*** Final schedule for BB#" << BBNum << " ***\n";
1138 dumpSchedule();
1139 dbgs() << '\n';
1140 });
Andrew Trick7a8e1002012-09-11 00:39:15 +00001141}
1142
1143/// Build the DAG and setup three register pressure trackers.
Andrew Trickd7f890e2013-12-28 21:56:47 +00001144void ScheduleDAGMILive::buildDAGWithRegPressure() {
Andrew Trickb6e74712013-09-04 20:59:59 +00001145 if (!ShouldTrackPressure) {
1146 RPTracker.reset();
1147 RegionCriticalPSets.clear();
1148 buildSchedGraph(AA);
1149 return;
1150 }
1151
Andrew Trick4add42f2012-05-10 21:06:10 +00001152 // Initialize the register pressure tracker used by buildSchedGraph.
Andrew Trick9c17eab2013-07-30 19:59:12 +00001153 RPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd,
Matthias Braund4f64092016-01-20 00:23:32 +00001154 ShouldTrackLaneMasks, /*TrackUntiedDefs=*/true);
Andrew Trick88639922012-04-24 17:56:43 +00001155
Andrew Trick4add42f2012-05-10 21:06:10 +00001156 // Account for liveness generate by the region boundary.
1157 if (LiveRegionEnd != RegionEnd)
1158 RPTracker.recede();
1159
1160 // Build the DAG, and compute current register pressure.
Matthias Braund4f64092016-01-20 00:23:32 +00001161 buildSchedGraph(AA, &RPTracker, &SUPressureDiffs, LIS, ShouldTrackLaneMasks);
Andrew Trick02a80da2012-03-08 01:41:12 +00001162
Andrew Trick4add42f2012-05-10 21:06:10 +00001163 // Initialize top/bottom trackers after computing region pressure.
1164 initRegPressure();
Andrew Trick7a8e1002012-09-11 00:39:15 +00001165}
Andrew Trick4add42f2012-05-10 21:06:10 +00001166
Andrew Trickd7f890e2013-12-28 21:56:47 +00001167void ScheduleDAGMILive::computeDFSResult() {
Andrew Trick44f750a2013-01-25 04:01:04 +00001168 if (!DFSResult)
1169 DFSResult = new SchedDFSResult(/*BottomU*/true, MinSubtreeSize);
1170 DFSResult->clear();
Andrew Trick44f750a2013-01-25 04:01:04 +00001171 ScheduledTrees.clear();
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001172 DFSResult->resize(SUnits.size());
1173 DFSResult->compute(SUnits);
Andrew Trick44f750a2013-01-25 04:01:04 +00001174 ScheduledTrees.resize(DFSResult->getNumSubtrees());
1175}
1176
Andrew Trick483f4192013-08-29 18:04:49 +00001177/// Compute the max cyclic critical path through the DAG. The scheduling DAG
1178/// only provides the critical path for single block loops. To handle loops that
1179/// span blocks, we could use the vreg path latencies provided by
1180/// MachineTraceMetrics instead. However, MachineTraceMetrics is not currently
1181/// available for use in the scheduler.
1182///
1183/// The cyclic path estimation identifies a def-use pair that crosses the back
Andrew Trickef80f502013-08-30 02:02:12 +00001184/// edge and considers the depth and height of the nodes. For example, consider
Andrew Trick483f4192013-08-29 18:04:49 +00001185/// the following instruction sequence where each instruction has unit latency
1186/// and defines an epomymous virtual register:
1187///
1188/// a->b(a,c)->c(b)->d(c)->exit
1189///
1190/// The cyclic critical path is a two cycles: b->c->b
1191/// The acyclic critical path is four cycles: a->b->c->d->exit
1192/// LiveOutHeight = height(c) = len(c->d->exit) = 2
1193/// LiveOutDepth = depth(c) + 1 = len(a->b->c) + 1 = 3
1194/// LiveInHeight = height(b) + 1 = len(b->c->d->exit) + 1 = 4
1195/// LiveInDepth = depth(b) = len(a->b) = 1
1196///
1197/// LiveOutDepth - LiveInDepth = 3 - 1 = 2
1198/// LiveInHeight - LiveOutHeight = 4 - 2 = 2
1199/// CyclicCriticalPath = min(2, 2) = 2
Andrew Trickd7f890e2013-12-28 21:56:47 +00001200///
1201/// This could be relevant to PostRA scheduling, but is currently implemented
1202/// assuming LiveIntervals.
1203unsigned ScheduleDAGMILive::computeCyclicCriticalPath() {
Andrew Trick483f4192013-08-29 18:04:49 +00001204 // This only applies to single block loop.
1205 if (!BB->isSuccessor(BB))
1206 return 0;
1207
1208 unsigned MaxCyclicLatency = 0;
1209 // Visit each live out vreg def to find def/use pairs that cross iterations.
Matthias Braun5d458612016-01-20 00:23:26 +00001210 for (const RegisterMaskPair &P : RPTracker.getPressure().LiveOutRegs) {
1211 unsigned Reg = P.RegUnit;
Andrew Trick483f4192013-08-29 18:04:49 +00001212 if (!TRI->isVirtualRegister(Reg))
1213 continue;
1214 const LiveInterval &LI = LIS->getInterval(Reg);
1215 const VNInfo *DefVNI = LI.getVNInfoBefore(LIS->getMBBEndIdx(BB));
1216 if (!DefVNI)
1217 continue;
1218
1219 MachineInstr *DefMI = LIS->getInstructionFromIndex(DefVNI->def);
1220 const SUnit *DefSU = getSUnit(DefMI);
1221 if (!DefSU)
1222 continue;
1223
1224 unsigned LiveOutHeight = DefSU->getHeight();
1225 unsigned LiveOutDepth = DefSU->getDepth() + DefSU->Latency;
1226 // Visit all local users of the vreg def.
Matthias Braunb0c437b2015-10-29 03:57:17 +00001227 for (const VReg2SUnit &V2SU
1228 : make_range(VRegUses.find(Reg), VRegUses.end())) {
1229 SUnit *SU = V2SU.SU;
1230 if (SU == &ExitSU)
Andrew Trick483f4192013-08-29 18:04:49 +00001231 continue;
1232
1233 // Only consider uses of the phi.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001234 LiveQueryResult LRQ = LI.Query(LIS->getInstructionIndex(*SU->getInstr()));
Andrew Trick483f4192013-08-29 18:04:49 +00001235 if (!LRQ.valueIn()->isPHIDef())
1236 continue;
1237
1238 // Assume that a path spanning two iterations is a cycle, which could
1239 // overestimate in strange cases. This allows cyclic latency to be
1240 // estimated as the minimum slack of the vreg's depth or height.
1241 unsigned CyclicLatency = 0;
Matthias Braunb0c437b2015-10-29 03:57:17 +00001242 if (LiveOutDepth > SU->getDepth())
1243 CyclicLatency = LiveOutDepth - SU->getDepth();
Andrew Trick483f4192013-08-29 18:04:49 +00001244
Matthias Braunb0c437b2015-10-29 03:57:17 +00001245 unsigned LiveInHeight = SU->getHeight() + DefSU->Latency;
Andrew Trick483f4192013-08-29 18:04:49 +00001246 if (LiveInHeight > LiveOutHeight) {
1247 if (LiveInHeight - LiveOutHeight < CyclicLatency)
1248 CyclicLatency = LiveInHeight - LiveOutHeight;
Matthias Braunb550b762016-04-21 01:54:13 +00001249 } else
Andrew Trick483f4192013-08-29 18:04:49 +00001250 CyclicLatency = 0;
1251
1252 DEBUG(dbgs() << "Cyclic Path: SU(" << DefSU->NodeNum << ") -> SU("
Matthias Braunb0c437b2015-10-29 03:57:17 +00001253 << SU->NodeNum << ") = " << CyclicLatency << "c\n");
Andrew Trick483f4192013-08-29 18:04:49 +00001254 if (CyclicLatency > MaxCyclicLatency)
1255 MaxCyclicLatency = CyclicLatency;
1256 }
1257 }
1258 DEBUG(dbgs() << "Cyclic Critical Path: " << MaxCyclicLatency << "c\n");
1259 return MaxCyclicLatency;
1260}
1261
Krzysztof Parzyszek7ea9a522016-04-28 19:17:44 +00001262/// Release ExitSU predecessors and setup scheduler queues. Re-position
1263/// the Top RP tracker in case the region beginning has changed.
1264void ScheduleDAGMILive::initQueues(ArrayRef<SUnit*> TopRoots,
1265 ArrayRef<SUnit*> BotRoots) {
1266 ScheduleDAGMI::initQueues(TopRoots, BotRoots);
1267 if (ShouldTrackPressure) {
1268 assert(TopRPTracker.getPos() == RegionBegin && "bad initial Top tracker");
1269 TopRPTracker.setPos(CurrentTop);
1270 }
1271}
1272
Andrew Trick7a8e1002012-09-11 00:39:15 +00001273/// Move an instruction and update register pressure.
Andrew Trickd7f890e2013-12-28 21:56:47 +00001274void ScheduleDAGMILive::scheduleMI(SUnit *SU, bool IsTopNode) {
Andrew Trick7a8e1002012-09-11 00:39:15 +00001275 // Move the instruction to its new location in the instruction stream.
1276 MachineInstr *MI = SU->getInstr();
Andrew Trick02a80da2012-03-08 01:41:12 +00001277
Andrew Trick7a8e1002012-09-11 00:39:15 +00001278 if (IsTopNode) {
1279 assert(SU->isTopReady() && "node still has unscheduled dependencies");
1280 if (&*CurrentTop == MI)
1281 CurrentTop = nextIfDebug(++CurrentTop, CurrentBottom);
Andrew Trick8823dec2012-03-14 04:00:41 +00001282 else {
Andrew Trick7a8e1002012-09-11 00:39:15 +00001283 moveInstruction(MI, CurrentTop);
1284 TopRPTracker.setPos(MI);
Andrew Trick8823dec2012-03-14 04:00:41 +00001285 }
Andrew Trickc3ea0052012-04-24 18:04:37 +00001286
Andrew Trickb6e74712013-09-04 20:59:59 +00001287 if (ShouldTrackPressure) {
1288 // Update top scheduled pressure.
Matthias Braund4f64092016-01-20 00:23:32 +00001289 RegisterOperands RegOpers;
1290 RegOpers.collect(*MI, *TRI, MRI, ShouldTrackLaneMasks, false);
1291 if (ShouldTrackLaneMasks) {
1292 // Adjust liveness and add missing dead+read-undef flags.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001293 SlotIndex SlotIdx = LIS->getInstructionIndex(*MI).getRegSlot();
Matthias Braund4f64092016-01-20 00:23:32 +00001294 RegOpers.adjustLaneLiveness(*LIS, MRI, SlotIdx, MI);
1295 } else {
1296 // Adjust for missing dead-def flags.
1297 RegOpers.detectDeadDefs(*MI, *LIS);
1298 }
1299
1300 TopRPTracker.advance(RegOpers);
Andrew Trickb6e74712013-09-04 20:59:59 +00001301 assert(TopRPTracker.getPos() == CurrentTop && "out of sync");
Matthias Braun9198c672015-11-06 20:59:02 +00001302 DEBUG(
1303 dbgs() << "Top Pressure:\n";
1304 dumpRegSetPressure(TopRPTracker.getRegSetPressureAtPos(), TRI);
1305 );
1306
Andrew Trickb248b4a2013-09-06 17:32:47 +00001307 updateScheduledPressure(SU, TopRPTracker.getPressure().MaxSetPressure);
Andrew Trickb6e74712013-09-04 20:59:59 +00001308 }
Matthias Braunb550b762016-04-21 01:54:13 +00001309 } else {
Andrew Trick7a8e1002012-09-11 00:39:15 +00001310 assert(SU->isBottomReady() && "node still has unscheduled dependencies");
1311 MachineBasicBlock::iterator priorII =
1312 priorNonDebug(CurrentBottom, CurrentTop);
1313 if (&*priorII == MI)
1314 CurrentBottom = priorII;
1315 else {
1316 if (&*CurrentTop == MI) {
1317 CurrentTop = nextIfDebug(++CurrentTop, priorII);
1318 TopRPTracker.setPos(CurrentTop);
1319 }
1320 moveInstruction(MI, CurrentBottom);
1321 CurrentBottom = MI;
1322 }
Andrew Trickb6e74712013-09-04 20:59:59 +00001323 if (ShouldTrackPressure) {
Matthias Braund4f64092016-01-20 00:23:32 +00001324 RegisterOperands RegOpers;
1325 RegOpers.collect(*MI, *TRI, MRI, ShouldTrackLaneMasks, false);
1326 if (ShouldTrackLaneMasks) {
1327 // Adjust liveness and add missing dead+read-undef flags.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001328 SlotIndex SlotIdx = LIS->getInstructionIndex(*MI).getRegSlot();
Matthias Braund4f64092016-01-20 00:23:32 +00001329 RegOpers.adjustLaneLiveness(*LIS, MRI, SlotIdx, MI);
1330 } else {
1331 // Adjust for missing dead-def flags.
1332 RegOpers.detectDeadDefs(*MI, *LIS);
1333 }
1334
1335 BotRPTracker.recedeSkipDebugValues();
Matthias Braun5d458612016-01-20 00:23:26 +00001336 SmallVector<RegisterMaskPair, 8> LiveUses;
Matthias Braund4f64092016-01-20 00:23:32 +00001337 BotRPTracker.recede(RegOpers, &LiveUses);
Andrew Trickb6e74712013-09-04 20:59:59 +00001338 assert(BotRPTracker.getPos() == CurrentBottom && "out of sync");
Matthias Braun9198c672015-11-06 20:59:02 +00001339 DEBUG(
1340 dbgs() << "Bottom Pressure:\n";
1341 dumpRegSetPressure(BotRPTracker.getRegSetPressureAtPos(), TRI);
1342 );
1343
Andrew Trickb248b4a2013-09-06 17:32:47 +00001344 updateScheduledPressure(SU, BotRPTracker.getPressure().MaxSetPressure);
Andrew Trickb6e74712013-09-04 20:59:59 +00001345 updatePressureDiffs(LiveUses);
Andrew Trickb6e74712013-09-04 20:59:59 +00001346 }
Andrew Trick7a8e1002012-09-11 00:39:15 +00001347 }
1348}
1349
Andrew Trick263280242012-11-12 19:52:20 +00001350//===----------------------------------------------------------------------===//
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001351// BaseMemOpClusterMutation - DAG post-processing to cluster loads or stores.
Andrew Trick263280242012-11-12 19:52:20 +00001352//===----------------------------------------------------------------------===//
1353
Andrew Tricka7714a02012-11-12 19:40:10 +00001354namespace {
1355/// \brief Post-process the DAG to create cluster edges between neighboring
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001356/// loads or between neighboring stores.
1357class BaseMemOpClusterMutation : public ScheduleDAGMutation {
1358 struct MemOpInfo {
Andrew Tricka7714a02012-11-12 19:40:10 +00001359 SUnit *SU;
1360 unsigned BaseReg;
Chad Rosierc27a18f2016-03-09 16:00:35 +00001361 int64_t Offset;
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001362 MemOpInfo(SUnit *su, unsigned reg, int64_t ofs)
1363 : SU(su), BaseReg(reg), Offset(ofs) {}
Benjamin Kramerb0f74b22014-03-07 21:35:39 +00001364
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001365 bool operator<(const MemOpInfo&RHS) const {
Benjamin Kramerb0f74b22014-03-07 21:35:39 +00001366 return std::tie(BaseReg, Offset) < std::tie(RHS.BaseReg, RHS.Offset);
1367 }
Andrew Tricka7714a02012-11-12 19:40:10 +00001368 };
Andrew Tricka7714a02012-11-12 19:40:10 +00001369
1370 const TargetInstrInfo *TII;
1371 const TargetRegisterInfo *TRI;
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001372 bool IsLoad;
1373
Andrew Tricka7714a02012-11-12 19:40:10 +00001374public:
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001375 BaseMemOpClusterMutation(const TargetInstrInfo *tii,
1376 const TargetRegisterInfo *tri, bool IsLoad)
1377 : TII(tii), TRI(tri), IsLoad(IsLoad) {}
Andrew Tricka7714a02012-11-12 19:40:10 +00001378
Krzysztof Parzyszek5c61d112016-03-05 15:45:23 +00001379 void apply(ScheduleDAGInstrs *DAGInstrs) override;
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001380
Andrew Tricka7714a02012-11-12 19:40:10 +00001381protected:
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001382 void clusterNeighboringMemOps(ArrayRef<SUnit *> MemOps, ScheduleDAGMI *DAG);
1383};
1384
1385class StoreClusterMutation : public BaseMemOpClusterMutation {
1386public:
1387 StoreClusterMutation(const TargetInstrInfo *tii,
1388 const TargetRegisterInfo *tri)
1389 : BaseMemOpClusterMutation(tii, tri, false) {}
1390};
1391
1392class LoadClusterMutation : public BaseMemOpClusterMutation {
1393public:
1394 LoadClusterMutation(const TargetInstrInfo *tii, const TargetRegisterInfo *tri)
1395 : BaseMemOpClusterMutation(tii, tri, true) {}
Andrew Tricka7714a02012-11-12 19:40:10 +00001396};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001397} // anonymous
Andrew Tricka7714a02012-11-12 19:40:10 +00001398
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001399void BaseMemOpClusterMutation::clusterNeighboringMemOps(
1400 ArrayRef<SUnit *> MemOps, ScheduleDAGMI *DAG) {
1401 SmallVector<MemOpInfo, 32> MemOpRecords;
1402 for (unsigned Idx = 0, End = MemOps.size(); Idx != End; ++Idx) {
1403 SUnit *SU = MemOps[Idx];
Andrew Tricka7714a02012-11-12 19:40:10 +00001404 unsigned BaseReg;
Chad Rosierc27a18f2016-03-09 16:00:35 +00001405 int64_t Offset;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001406 if (TII->getMemOpBaseRegImmOfs(*SU->getInstr(), BaseReg, Offset, TRI))
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001407 MemOpRecords.push_back(MemOpInfo(SU, BaseReg, Offset));
Andrew Tricka7714a02012-11-12 19:40:10 +00001408 }
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001409 if (MemOpRecords.size() < 2)
Andrew Tricka7714a02012-11-12 19:40:10 +00001410 return;
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001411
1412 std::sort(MemOpRecords.begin(), MemOpRecords.end());
Andrew Tricka7714a02012-11-12 19:40:10 +00001413 unsigned ClusterLength = 1;
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001414 for (unsigned Idx = 0, End = MemOpRecords.size(); Idx < (End - 1); ++Idx) {
1415 if (MemOpRecords[Idx].BaseReg != MemOpRecords[Idx+1].BaseReg) {
Andrew Tricka7714a02012-11-12 19:40:10 +00001416 ClusterLength = 1;
1417 continue;
1418 }
1419
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001420 SUnit *SUa = MemOpRecords[Idx].SU;
1421 SUnit *SUb = MemOpRecords[Idx+1].SU;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001422 if (TII->shouldClusterMemOps(*SUa->getInstr(), *SUb->getInstr(),
1423 ClusterLength) &&
1424 DAG->addEdge(SUb, SDep(SUa, SDep::Cluster))) {
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001425 DEBUG(dbgs() << "Cluster ld/st SU(" << SUa->NodeNum << ") - SU("
Andrew Tricka7714a02012-11-12 19:40:10 +00001426 << SUb->NodeNum << ")\n");
1427 // Copy successor edges from SUa to SUb. Interleaving computation
1428 // dependent on SUa can prevent load combining due to register reuse.
1429 // Predecessor edges do not need to be copied from SUb to SUa since nearby
1430 // loads should have effectively the same inputs.
1431 for (SUnit::const_succ_iterator
1432 SI = SUa->Succs.begin(), SE = SUa->Succs.end(); SI != SE; ++SI) {
1433 if (SI->getSUnit() == SUb)
1434 continue;
1435 DEBUG(dbgs() << " Copy Succ SU(" << SI->getSUnit()->NodeNum << ")\n");
1436 DAG->addEdge(SI->getSUnit(), SDep(SUb, SDep::Artificial));
1437 }
1438 ++ClusterLength;
Matthias Braunb550b762016-04-21 01:54:13 +00001439 } else
Andrew Tricka7714a02012-11-12 19:40:10 +00001440 ClusterLength = 1;
1441 }
1442}
1443
1444/// \brief Callback from DAG postProcessing to create cluster edges for loads.
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001445void BaseMemOpClusterMutation::apply(ScheduleDAGInstrs *DAGInstrs) {
1446
Krzysztof Parzyszek5c61d112016-03-05 15:45:23 +00001447 ScheduleDAGMI *DAG = static_cast<ScheduleDAGMI*>(DAGInstrs);
1448
Andrew Tricka7714a02012-11-12 19:40:10 +00001449 // Map DAG NodeNum to store chain ID.
1450 DenseMap<unsigned, unsigned> StoreChainIDs;
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001451 // Map each store chain to a set of dependent MemOps.
Andrew Tricka7714a02012-11-12 19:40:10 +00001452 SmallVector<SmallVector<SUnit*,4>, 32> StoreChainDependents;
1453 for (unsigned Idx = 0, End = DAG->SUnits.size(); Idx != End; ++Idx) {
1454 SUnit *SU = &DAG->SUnits[Idx];
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001455 if ((IsLoad && !SU->getInstr()->mayLoad()) ||
1456 (!IsLoad && !SU->getInstr()->mayStore()))
Andrew Tricka7714a02012-11-12 19:40:10 +00001457 continue;
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001458
Andrew Tricka7714a02012-11-12 19:40:10 +00001459 unsigned ChainPredID = DAG->SUnits.size();
1460 for (SUnit::const_pred_iterator
1461 PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) {
1462 if (PI->isCtrl()) {
1463 ChainPredID = PI->getSUnit()->NodeNum;
1464 break;
1465 }
1466 }
1467 // Check if this chain-like pred has been seen
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001468 // before. ChainPredID==MaxNodeID at the top of the schedule.
Andrew Tricka7714a02012-11-12 19:40:10 +00001469 unsigned NumChains = StoreChainDependents.size();
1470 std::pair<DenseMap<unsigned, unsigned>::iterator, bool> Result =
1471 StoreChainIDs.insert(std::make_pair(ChainPredID, NumChains));
1472 if (Result.second)
1473 StoreChainDependents.resize(NumChains + 1);
1474 StoreChainDependents[Result.first->second].push_back(SU);
1475 }
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001476
Andrew Tricka7714a02012-11-12 19:40:10 +00001477 // Iterate over the store chains.
1478 for (unsigned Idx = 0, End = StoreChainDependents.size(); Idx != End; ++Idx)
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001479 clusterNeighboringMemOps(StoreChainDependents[Idx], DAG);
Andrew Tricka7714a02012-11-12 19:40:10 +00001480}
1481
Andrew Trick02a80da2012-03-08 01:41:12 +00001482//===----------------------------------------------------------------------===//
Andrew Trick263280242012-11-12 19:52:20 +00001483// MacroFusion - DAG post-processing to encourage fusion of macro ops.
1484//===----------------------------------------------------------------------===//
1485
1486namespace {
1487/// \brief Post-process the DAG to create cluster edges between instructions
1488/// that may be fused by the processor into a single operation.
1489class MacroFusion : public ScheduleDAGMutation {
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001490 const TargetInstrInfo &TII;
1491 const TargetRegisterInfo &TRI;
Andrew Trick263280242012-11-12 19:52:20 +00001492public:
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001493 MacroFusion(const TargetInstrInfo &TII, const TargetRegisterInfo &TRI)
1494 : TII(TII), TRI(TRI) {}
Andrew Trick263280242012-11-12 19:52:20 +00001495
Krzysztof Parzyszek5c61d112016-03-05 15:45:23 +00001496 void apply(ScheduleDAGInstrs *DAGInstrs) override;
Andrew Trick263280242012-11-12 19:52:20 +00001497};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001498} // anonymous
Andrew Trick263280242012-11-12 19:52:20 +00001499
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001500/// Returns true if \p MI reads a register written by \p Other.
1501static bool HasDataDep(const TargetRegisterInfo &TRI, const MachineInstr &MI,
1502 const MachineInstr &Other) {
1503 for (const MachineOperand &MO : MI.uses()) {
1504 if (!MO.isReg() || !MO.readsReg())
1505 continue;
1506
1507 unsigned Reg = MO.getReg();
1508 if (Other.modifiesRegister(Reg, &TRI))
1509 return true;
1510 }
1511 return false;
1512}
1513
Andrew Trick263280242012-11-12 19:52:20 +00001514/// \brief Callback from DAG postProcessing to create cluster edges to encourage
1515/// fused operations.
Krzysztof Parzyszek5c61d112016-03-05 15:45:23 +00001516void MacroFusion::apply(ScheduleDAGInstrs *DAGInstrs) {
1517 ScheduleDAGMI *DAG = static_cast<ScheduleDAGMI*>(DAGInstrs);
1518
Andrew Trick263280242012-11-12 19:52:20 +00001519 // For now, assume targets can only fuse with the branch.
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001520 SUnit &ExitSU = DAG->ExitSU;
1521 MachineInstr *Branch = ExitSU.getInstr();
Andrew Trick263280242012-11-12 19:52:20 +00001522 if (!Branch)
1523 return;
1524
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001525 for (SUnit &SU : DAG->SUnits) {
1526 // SUnits with successors can't be schedule in front of the ExitSU.
1527 if (!SU.Succs.empty())
1528 continue;
1529 // We only care if the node writes to a register that the branch reads.
1530 MachineInstr *Pred = SU.getInstr();
1531 if (!HasDataDep(TRI, *Branch, *Pred))
1532 continue;
1533
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001534 if (!TII.shouldScheduleAdjacent(*Pred, *Branch))
Andrew Trick263280242012-11-12 19:52:20 +00001535 continue;
1536
1537 // Create a single weak edge from SU to ExitSU. The only effect is to cause
1538 // bottom-up scheduling to heavily prioritize the clustered SU. There is no
1539 // need to copy predecessor edges from ExitSU to SU, since top-down
1540 // scheduling cannot prioritize ExitSU anyway. To defer top-down scheduling
1541 // of SU, we could create an artificial edge from the deepest root, but it
1542 // hasn't been needed yet.
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001543 bool Success = DAG->addEdge(&ExitSU, SDep(&SU, SDep::Cluster));
Andrew Trick263280242012-11-12 19:52:20 +00001544 (void)Success;
1545 assert(Success && "No DAG nodes should be reachable from ExitSU");
1546
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001547 DEBUG(dbgs() << "Macro Fuse SU(" << SU.NodeNum << ")\n");
Andrew Trick263280242012-11-12 19:52:20 +00001548 break;
1549 }
1550}
1551
1552//===----------------------------------------------------------------------===//
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001553// CopyConstrain - DAG post-processing to encourage copy elimination.
1554//===----------------------------------------------------------------------===//
1555
1556namespace {
1557/// \brief Post-process the DAG to create weak edges from all uses of a copy to
1558/// the one use that defines the copy's source vreg, most likely an induction
1559/// variable increment.
1560class CopyConstrain : public ScheduleDAGMutation {
1561 // Transient state.
1562 SlotIndex RegionBeginIdx;
Andrew Trick2e875172013-04-24 23:19:56 +00001563 // RegionEndIdx is the slot index of the last non-debug instruction in the
1564 // scheduling region. So we may have RegionBeginIdx == RegionEndIdx.
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001565 SlotIndex RegionEndIdx;
1566public:
1567 CopyConstrain(const TargetInstrInfo *, const TargetRegisterInfo *) {}
1568
Krzysztof Parzyszek5c61d112016-03-05 15:45:23 +00001569 void apply(ScheduleDAGInstrs *DAGInstrs) override;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001570
1571protected:
Andrew Trickd7f890e2013-12-28 21:56:47 +00001572 void constrainLocalCopy(SUnit *CopySU, ScheduleDAGMILive *DAG);
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001573};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001574} // anonymous
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001575
1576/// constrainLocalCopy handles two possibilities:
1577/// 1) Local src:
1578/// I0: = dst
1579/// I1: src = ...
1580/// I2: = dst
1581/// I3: dst = src (copy)
1582/// (create pred->succ edges I0->I1, I2->I1)
1583///
1584/// 2) Local copy:
1585/// I0: dst = src (copy)
1586/// I1: = dst
1587/// I2: src = ...
1588/// I3: = dst
1589/// (create pred->succ edges I1->I2, I3->I2)
1590///
1591/// Although the MachineScheduler is currently constrained to single blocks,
1592/// this algorithm should handle extended blocks. An EBB is a set of
1593/// contiguously numbered blocks such that the previous block in the EBB is
1594/// always the single predecessor.
Andrew Trickd7f890e2013-12-28 21:56:47 +00001595void CopyConstrain::constrainLocalCopy(SUnit *CopySU, ScheduleDAGMILive *DAG) {
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001596 LiveIntervals *LIS = DAG->getLIS();
1597 MachineInstr *Copy = CopySU->getInstr();
1598
1599 // Check for pure vreg copies.
Matthias Braun7511abd2016-04-04 21:23:46 +00001600 const MachineOperand &SrcOp = Copy->getOperand(1);
1601 unsigned SrcReg = SrcOp.getReg();
1602 if (!TargetRegisterInfo::isVirtualRegister(SrcReg) || !SrcOp.readsReg())
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001603 return;
1604
Matthias Braun7511abd2016-04-04 21:23:46 +00001605 const MachineOperand &DstOp = Copy->getOperand(0);
1606 unsigned DstReg = DstOp.getReg();
1607 if (!TargetRegisterInfo::isVirtualRegister(DstReg) || DstOp.isDead())
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001608 return;
1609
1610 // Check if either the dest or source is local. If it's live across a back
1611 // edge, it's not local. Note that if both vregs are live across the back
1612 // edge, we cannot successfully contrain the copy without cyclic scheduling.
Michael Kuperstein54c61ed2015-01-19 07:30:47 +00001613 // If both the copy's source and dest are local live intervals, then we
1614 // should treat the dest as the global for the purpose of adding
1615 // constraints. This adds edges from source's other uses to the copy.
1616 unsigned LocalReg = SrcReg;
1617 unsigned GlobalReg = DstReg;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001618 LiveInterval *LocalLI = &LIS->getInterval(LocalReg);
1619 if (!LocalLI->isLocal(RegionBeginIdx, RegionEndIdx)) {
Michael Kuperstein54c61ed2015-01-19 07:30:47 +00001620 LocalReg = DstReg;
1621 GlobalReg = SrcReg;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001622 LocalLI = &LIS->getInterval(LocalReg);
1623 if (!LocalLI->isLocal(RegionBeginIdx, RegionEndIdx))
1624 return;
1625 }
1626 LiveInterval *GlobalLI = &LIS->getInterval(GlobalReg);
1627
1628 // Find the global segment after the start of the local LI.
1629 LiveInterval::iterator GlobalSegment = GlobalLI->find(LocalLI->beginIndex());
1630 // If GlobalLI does not overlap LocalLI->start, then a copy directly feeds a
1631 // local live range. We could create edges from other global uses to the local
1632 // start, but the coalescer should have already eliminated these cases, so
1633 // don't bother dealing with it.
1634 if (GlobalSegment == GlobalLI->end())
1635 return;
1636
1637 // If GlobalSegment is killed at the LocalLI->start, the call to find()
1638 // returned the next global segment. But if GlobalSegment overlaps with
1639 // LocalLI->start, then advance to the next segement. If a hole in GlobalLI
1640 // exists in LocalLI's vicinity, GlobalSegment will be the end of the hole.
1641 if (GlobalSegment->contains(LocalLI->beginIndex()))
1642 ++GlobalSegment;
1643
1644 if (GlobalSegment == GlobalLI->end())
1645 return;
1646
1647 // Check if GlobalLI contains a hole in the vicinity of LocalLI.
1648 if (GlobalSegment != GlobalLI->begin()) {
1649 // Two address defs have no hole.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001650 if (SlotIndex::isSameInstr(std::prev(GlobalSegment)->end,
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001651 GlobalSegment->start)) {
1652 return;
1653 }
Andrew Trickd9761772013-07-30 19:59:08 +00001654 // If the prior global segment may be defined by the same two-address
1655 // instruction that also defines LocalLI, then can't make a hole here.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001656 if (SlotIndex::isSameInstr(std::prev(GlobalSegment)->start,
Andrew Trickd9761772013-07-30 19:59:08 +00001657 LocalLI->beginIndex())) {
1658 return;
1659 }
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001660 // If GlobalLI has a prior segment, it must be live into the EBB. Otherwise
1661 // it would be a disconnected component in the live range.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001662 assert(std::prev(GlobalSegment)->start < LocalLI->beginIndex() &&
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001663 "Disconnected LRG within the scheduling region.");
1664 }
1665 MachineInstr *GlobalDef = LIS->getInstructionFromIndex(GlobalSegment->start);
1666 if (!GlobalDef)
1667 return;
1668
1669 SUnit *GlobalSU = DAG->getSUnit(GlobalDef);
1670 if (!GlobalSU)
1671 return;
1672
1673 // GlobalDef is the bottom of the GlobalLI hole. Open the hole by
1674 // constraining the uses of the last local def to precede GlobalDef.
1675 SmallVector<SUnit*,8> LocalUses;
1676 const VNInfo *LastLocalVN = LocalLI->getVNInfoBefore(LocalLI->endIndex());
1677 MachineInstr *LastLocalDef = LIS->getInstructionFromIndex(LastLocalVN->def);
1678 SUnit *LastLocalSU = DAG->getSUnit(LastLocalDef);
1679 for (SUnit::const_succ_iterator
1680 I = LastLocalSU->Succs.begin(), E = LastLocalSU->Succs.end();
1681 I != E; ++I) {
1682 if (I->getKind() != SDep::Data || I->getReg() != LocalReg)
1683 continue;
1684 if (I->getSUnit() == GlobalSU)
1685 continue;
1686 if (!DAG->canAddEdge(GlobalSU, I->getSUnit()))
1687 return;
1688 LocalUses.push_back(I->getSUnit());
1689 }
1690 // Open the top of the GlobalLI hole by constraining any earlier global uses
1691 // to precede the start of LocalLI.
1692 SmallVector<SUnit*,8> GlobalUses;
1693 MachineInstr *FirstLocalDef =
1694 LIS->getInstructionFromIndex(LocalLI->beginIndex());
1695 SUnit *FirstLocalSU = DAG->getSUnit(FirstLocalDef);
1696 for (SUnit::const_pred_iterator
1697 I = GlobalSU->Preds.begin(), E = GlobalSU->Preds.end(); I != E; ++I) {
1698 if (I->getKind() != SDep::Anti || I->getReg() != GlobalReg)
1699 continue;
1700 if (I->getSUnit() == FirstLocalSU)
1701 continue;
1702 if (!DAG->canAddEdge(FirstLocalSU, I->getSUnit()))
1703 return;
1704 GlobalUses.push_back(I->getSUnit());
1705 }
1706 DEBUG(dbgs() << "Constraining copy SU(" << CopySU->NodeNum << ")\n");
1707 // Add the weak edges.
1708 for (SmallVectorImpl<SUnit*>::const_iterator
1709 I = LocalUses.begin(), E = LocalUses.end(); I != E; ++I) {
1710 DEBUG(dbgs() << " Local use SU(" << (*I)->NodeNum << ") -> SU("
1711 << GlobalSU->NodeNum << ")\n");
1712 DAG->addEdge(GlobalSU, SDep(*I, SDep::Weak));
1713 }
1714 for (SmallVectorImpl<SUnit*>::const_iterator
1715 I = GlobalUses.begin(), E = GlobalUses.end(); I != E; ++I) {
1716 DEBUG(dbgs() << " Global use SU(" << (*I)->NodeNum << ") -> SU("
1717 << FirstLocalSU->NodeNum << ")\n");
1718 DAG->addEdge(FirstLocalSU, SDep(*I, SDep::Weak));
1719 }
1720}
1721
1722/// \brief Callback from DAG postProcessing to create weak edges to encourage
1723/// copy elimination.
Krzysztof Parzyszek5c61d112016-03-05 15:45:23 +00001724void CopyConstrain::apply(ScheduleDAGInstrs *DAGInstrs) {
1725 ScheduleDAGMI *DAG = static_cast<ScheduleDAGMI*>(DAGInstrs);
Andrew Trickd7f890e2013-12-28 21:56:47 +00001726 assert(DAG->hasVRegLiveness() && "Expect VRegs with LiveIntervals");
1727
Andrew Trick2e875172013-04-24 23:19:56 +00001728 MachineBasicBlock::iterator FirstPos = nextIfDebug(DAG->begin(), DAG->end());
1729 if (FirstPos == DAG->end())
1730 return;
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001731 RegionBeginIdx = DAG->getLIS()->getInstructionIndex(*FirstPos);
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001732 RegionEndIdx = DAG->getLIS()->getInstructionIndex(
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001733 *priorNonDebug(DAG->end(), DAG->begin()));
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001734
1735 for (unsigned Idx = 0, End = DAG->SUnits.size(); Idx != End; ++Idx) {
1736 SUnit *SU = &DAG->SUnits[Idx];
1737 if (!SU->getInstr()->isCopy())
1738 continue;
1739
Andrew Trickd7f890e2013-12-28 21:56:47 +00001740 constrainLocalCopy(SU, static_cast<ScheduleDAGMILive*>(DAG));
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001741 }
1742}
1743
1744//===----------------------------------------------------------------------===//
Andrew Trickfc127d12013-12-07 05:59:44 +00001745// MachineSchedStrategy helpers used by GenericScheduler, GenericPostScheduler
1746// and possibly other custom schedulers.
Andrew Trickd14d7c22013-12-28 21:56:57 +00001747//===----------------------------------------------------------------------===//
Andrew Tricke1c034f2012-01-17 06:55:03 +00001748
Andrew Trick5a22df42013-12-05 17:56:02 +00001749static const unsigned InvalidCycle = ~0U;
1750
Andrew Trickfc127d12013-12-07 05:59:44 +00001751SchedBoundary::~SchedBoundary() { delete HazardRec; }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001752
Andrew Trickfc127d12013-12-07 05:59:44 +00001753void SchedBoundary::reset() {
1754 // A new HazardRec is created for each DAG and owned by SchedBoundary.
1755 // Destroying and reconstructing it is very expensive though. So keep
1756 // invalid, placeholder HazardRecs.
1757 if (HazardRec && HazardRec->isEnabled()) {
1758 delete HazardRec;
Craig Topperc0196b12014-04-14 00:51:57 +00001759 HazardRec = nullptr;
Andrew Trickfc127d12013-12-07 05:59:44 +00001760 }
1761 Available.clear();
1762 Pending.clear();
1763 CheckPending = false;
1764 NextSUs.clear();
1765 CurrCycle = 0;
1766 CurrMOps = 0;
1767 MinReadyCycle = UINT_MAX;
1768 ExpectedLatency = 0;
1769 DependentLatency = 0;
1770 RetiredMOps = 0;
1771 MaxExecutedResCount = 0;
1772 ZoneCritResIdx = 0;
1773 IsResourceLimited = false;
1774 ReservedCycles.clear();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001775#ifndef NDEBUG
Andrew Trickd14d7c22013-12-28 21:56:57 +00001776 // Track the maximum number of stall cycles that could arise either from the
1777 // latency of a DAG edge or the number of cycles that a processor resource is
1778 // reserved (SchedBoundary::ReservedCycles).
Andrew Trick7f1ebbe2014-06-07 01:48:43 +00001779 MaxObservedStall = 0;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001780#endif
Andrew Trickfc127d12013-12-07 05:59:44 +00001781 // Reserve a zero-count for invalid CritResIdx.
1782 ExecutedResCounts.resize(1);
1783 assert(!ExecutedResCounts[0] && "nonzero count for bad resource");
1784}
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001785
Andrew Trickfc127d12013-12-07 05:59:44 +00001786void SchedRemainder::
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001787init(ScheduleDAGMI *DAG, const TargetSchedModel *SchedModel) {
1788 reset();
1789 if (!SchedModel->hasInstrSchedModel())
1790 return;
1791 RemainingCounts.resize(SchedModel->getNumProcResourceKinds());
1792 for (std::vector<SUnit>::iterator
1793 I = DAG->SUnits.begin(), E = DAG->SUnits.end(); I != E; ++I) {
1794 const MCSchedClassDesc *SC = DAG->getSchedClass(&*I);
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001795 RemIssueCount += SchedModel->getNumMicroOps(I->getInstr(), SC)
1796 * SchedModel->getMicroOpFactor();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001797 for (TargetSchedModel::ProcResIter
1798 PI = SchedModel->getWriteProcResBegin(SC),
1799 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
1800 unsigned PIdx = PI->ProcResourceIdx;
1801 unsigned Factor = SchedModel->getResourceFactor(PIdx);
1802 RemainingCounts[PIdx] += (Factor * PI->Cycles);
1803 }
1804 }
1805}
1806
Andrew Trickfc127d12013-12-07 05:59:44 +00001807void SchedBoundary::
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001808init(ScheduleDAGMI *dag, const TargetSchedModel *smodel, SchedRemainder *rem) {
1809 reset();
1810 DAG = dag;
1811 SchedModel = smodel;
1812 Rem = rem;
Andrew Trick5a22df42013-12-05 17:56:02 +00001813 if (SchedModel->hasInstrSchedModel()) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001814 ExecutedResCounts.resize(SchedModel->getNumProcResourceKinds());
Andrew Trick5a22df42013-12-05 17:56:02 +00001815 ReservedCycles.resize(SchedModel->getNumProcResourceKinds(), InvalidCycle);
1816 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001817}
1818
Andrew Trick880e5732013-12-05 17:55:58 +00001819/// Compute the stall cycles based on this SUnit's ready time. Heuristics treat
1820/// these "soft stalls" differently than the hard stall cycles based on CPU
1821/// resources and computed by checkHazard(). A fully in-order model
1822/// (MicroOpBufferSize==0) will not make use of this since instructions are not
1823/// available for scheduling until they are ready. However, a weaker in-order
1824/// model may use this for heuristics. For example, if a processor has in-order
1825/// behavior when reading certain resources, this may come into play.
Andrew Trickfc127d12013-12-07 05:59:44 +00001826unsigned SchedBoundary::getLatencyStallCycles(SUnit *SU) {
Andrew Trick880e5732013-12-05 17:55:58 +00001827 if (!SU->isUnbuffered)
1828 return 0;
1829
1830 unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle);
1831 if (ReadyCycle > CurrCycle)
1832 return ReadyCycle - CurrCycle;
1833 return 0;
1834}
1835
Andrew Trick5a22df42013-12-05 17:56:02 +00001836/// Compute the next cycle at which the given processor resource can be
1837/// scheduled.
Andrew Trickfc127d12013-12-07 05:59:44 +00001838unsigned SchedBoundary::
Andrew Trick5a22df42013-12-05 17:56:02 +00001839getNextResourceCycle(unsigned PIdx, unsigned Cycles) {
1840 unsigned NextUnreserved = ReservedCycles[PIdx];
1841 // If this resource has never been used, always return cycle zero.
1842 if (NextUnreserved == InvalidCycle)
1843 return 0;
1844 // For bottom-up scheduling add the cycles needed for the current operation.
1845 if (!isTop())
1846 NextUnreserved += Cycles;
1847 return NextUnreserved;
1848}
1849
Andrew Trick8c9e6722012-06-29 03:23:24 +00001850/// Does this SU have a hazard within the current instruction group.
1851///
1852/// The scheduler supports two modes of hazard recognition. The first is the
1853/// ScheduleHazardRecognizer API. It is a fully general hazard recognizer that
1854/// supports highly complicated in-order reservation tables
1855/// (ScoreboardHazardRecognizer) and arbitraty target-specific logic.
1856///
1857/// The second is a streamlined mechanism that checks for hazards based on
1858/// simple counters that the scheduler itself maintains. It explicitly checks
1859/// for instruction dispatch limitations, including the number of micro-ops that
1860/// can dispatch per cycle.
1861///
1862/// TODO: Also check whether the SU must start a new group.
Andrew Trickfc127d12013-12-07 05:59:44 +00001863bool SchedBoundary::checkHazard(SUnit *SU) {
Andrew Trickd14d7c22013-12-28 21:56:57 +00001864 if (HazardRec->isEnabled()
1865 && HazardRec->getHazardType(SU) != ScheduleHazardRecognizer::NoHazard) {
1866 return true;
1867 }
Andrew Trickdd79f0f2012-10-10 05:43:09 +00001868 unsigned uops = SchedModel->getNumMicroOps(SU->getInstr());
Andrew Tricke2ff5752013-06-15 04:49:49 +00001869 if ((CurrMOps > 0) && (CurrMOps + uops > SchedModel->getIssueWidth())) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001870 DEBUG(dbgs() << " SU(" << SU->NodeNum << ") uops="
1871 << SchedModel->getNumMicroOps(SU->getInstr()) << '\n');
Andrew Trick8c9e6722012-06-29 03:23:24 +00001872 return true;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001873 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001874 if (SchedModel->hasInstrSchedModel() && SU->hasReservedResource) {
1875 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
1876 for (TargetSchedModel::ProcResIter
1877 PI = SchedModel->getWriteProcResBegin(SC),
1878 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
Andrew Trick56327222014-06-27 04:57:05 +00001879 unsigned NRCycle = getNextResourceCycle(PI->ProcResourceIdx, PI->Cycles);
1880 if (NRCycle > CurrCycle) {
Andrew Trick040c0da2014-06-27 05:09:36 +00001881#ifndef NDEBUG
Chad Rosieraba845e2014-07-02 16:46:08 +00001882 MaxObservedStall = std::max(PI->Cycles, MaxObservedStall);
Andrew Trick040c0da2014-06-27 05:09:36 +00001883#endif
Andrew Trick56327222014-06-27 04:57:05 +00001884 DEBUG(dbgs() << " SU(" << SU->NodeNum << ") "
1885 << SchedModel->getResourceName(PI->ProcResourceIdx)
1886 << "=" << NRCycle << "c\n");
Andrew Trick5a22df42013-12-05 17:56:02 +00001887 return true;
Andrew Trick56327222014-06-27 04:57:05 +00001888 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001889 }
1890 }
Andrew Trick8c9e6722012-06-29 03:23:24 +00001891 return false;
1892}
1893
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001894// Find the unscheduled node in ReadySUs with the highest latency.
Andrew Trickfc127d12013-12-07 05:59:44 +00001895unsigned SchedBoundary::
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001896findMaxLatency(ArrayRef<SUnit*> ReadySUs) {
Craig Topperc0196b12014-04-14 00:51:57 +00001897 SUnit *LateSU = nullptr;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001898 unsigned RemLatency = 0;
1899 for (ArrayRef<SUnit*>::iterator I = ReadySUs.begin(), E = ReadySUs.end();
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001900 I != E; ++I) {
1901 unsigned L = getUnscheduledLatency(*I);
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001902 if (L > RemLatency) {
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001903 RemLatency = L;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001904 LateSU = *I;
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001905 }
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001906 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001907 if (LateSU) {
1908 DEBUG(dbgs() << Available.getName() << " RemLatency SU("
1909 << LateSU->NodeNum << ") " << RemLatency << "c\n");
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001910 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001911 return RemLatency;
1912}
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001913
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001914// Count resources in this zone and the remaining unscheduled
1915// instruction. Return the max count, scaled. Set OtherCritIdx to the critical
1916// resource index, or zero if the zone is issue limited.
Andrew Trickfc127d12013-12-07 05:59:44 +00001917unsigned SchedBoundary::
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001918getOtherResourceCount(unsigned &OtherCritIdx) {
Alexey Samsonov64c391d2013-07-19 08:55:18 +00001919 OtherCritIdx = 0;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001920 if (!SchedModel->hasInstrSchedModel())
1921 return 0;
1922
1923 unsigned OtherCritCount = Rem->RemIssueCount
1924 + (RetiredMOps * SchedModel->getMicroOpFactor());
1925 DEBUG(dbgs() << " " << Available.getName() << " + Remain MOps: "
1926 << OtherCritCount / SchedModel->getMicroOpFactor() << '\n');
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001927 for (unsigned PIdx = 1, PEnd = SchedModel->getNumProcResourceKinds();
1928 PIdx != PEnd; ++PIdx) {
1929 unsigned OtherCount = getResourceCount(PIdx) + Rem->RemainingCounts[PIdx];
1930 if (OtherCount > OtherCritCount) {
1931 OtherCritCount = OtherCount;
1932 OtherCritIdx = PIdx;
1933 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001934 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001935 if (OtherCritIdx) {
1936 DEBUG(dbgs() << " " << Available.getName() << " + Remain CritRes: "
1937 << OtherCritCount / SchedModel->getResourceFactor(OtherCritIdx)
Andrew Trickfc127d12013-12-07 05:59:44 +00001938 << " " << SchedModel->getResourceName(OtherCritIdx) << "\n");
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001939 }
1940 return OtherCritCount;
1941}
1942
Andrew Trickfc127d12013-12-07 05:59:44 +00001943void SchedBoundary::releaseNode(SUnit *SU, unsigned ReadyCycle) {
Andrew Trick7f1ebbe2014-06-07 01:48:43 +00001944 assert(SU->getInstr() && "Scheduled SUnit must have instr");
1945
1946#ifndef NDEBUG
Andrew Trick491e34a2014-06-12 22:36:28 +00001947 // ReadyCycle was been bumped up to the CurrCycle when this node was
1948 // scheduled, but CurrCycle may have been eagerly advanced immediately after
1949 // scheduling, so may now be greater than ReadyCycle.
1950 if (ReadyCycle > CurrCycle)
1951 MaxObservedStall = std::max(ReadyCycle - CurrCycle, MaxObservedStall);
Andrew Trick7f1ebbe2014-06-07 01:48:43 +00001952#endif
1953
Andrew Trick61f1a272012-05-24 22:11:09 +00001954 if (ReadyCycle < MinReadyCycle)
1955 MinReadyCycle = ReadyCycle;
1956
1957 // Check for interlocks first. For the purpose of other heuristics, an
1958 // instruction that cannot issue appears as if it's not in the ReadyQueue.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001959 bool IsBuffered = SchedModel->getMicroOpBufferSize() != 0;
Matthias Braun6493bc22016-04-22 19:09:17 +00001960 if ((!IsBuffered && ReadyCycle > CurrCycle) || checkHazard(SU) ||
1961 Available.size() >= ReadyListLimit)
Andrew Trick61f1a272012-05-24 22:11:09 +00001962 Pending.push(SU);
1963 else
1964 Available.push(SU);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001965
1966 // Record this node as an immediate dependent of the scheduled node.
1967 NextSUs.insert(SU);
Andrew Trick61f1a272012-05-24 22:11:09 +00001968}
1969
Andrew Trickfc127d12013-12-07 05:59:44 +00001970void SchedBoundary::releaseTopNode(SUnit *SU) {
1971 if (SU->isScheduled)
1972 return;
1973
Andrew Trickfc127d12013-12-07 05:59:44 +00001974 releaseNode(SU, SU->TopReadyCycle);
1975}
1976
1977void SchedBoundary::releaseBottomNode(SUnit *SU) {
1978 if (SU->isScheduled)
1979 return;
1980
Andrew Trickfc127d12013-12-07 05:59:44 +00001981 releaseNode(SU, SU->BotReadyCycle);
1982}
1983
Andrew Trick61f1a272012-05-24 22:11:09 +00001984/// Move the boundary of scheduled code by one cycle.
Andrew Trickfc127d12013-12-07 05:59:44 +00001985void SchedBoundary::bumpCycle(unsigned NextCycle) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001986 if (SchedModel->getMicroOpBufferSize() == 0) {
1987 assert(MinReadyCycle < UINT_MAX && "MinReadyCycle uninitialized");
1988 if (MinReadyCycle > NextCycle)
1989 NextCycle = MinReadyCycle;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001990 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001991 // Update the current micro-ops, which will issue in the next cycle.
1992 unsigned DecMOps = SchedModel->getIssueWidth() * (NextCycle - CurrCycle);
1993 CurrMOps = (CurrMOps <= DecMOps) ? 0 : CurrMOps - DecMOps;
1994
1995 // Decrement DependentLatency based on the next cycle.
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001996 if ((NextCycle - CurrCycle) > DependentLatency)
1997 DependentLatency = 0;
1998 else
1999 DependentLatency -= (NextCycle - CurrCycle);
Andrew Trick61f1a272012-05-24 22:11:09 +00002000
2001 if (!HazardRec->isEnabled()) {
Andrew Trick45446062012-06-05 21:11:27 +00002002 // Bypass HazardRec virtual calls.
Andrew Trick61f1a272012-05-24 22:11:09 +00002003 CurrCycle = NextCycle;
Matthias Braunb550b762016-04-21 01:54:13 +00002004 } else {
Andrew Trick45446062012-06-05 21:11:27 +00002005 // Bypass getHazardType calls in case of long latency.
Andrew Trick61f1a272012-05-24 22:11:09 +00002006 for (; CurrCycle != NextCycle; ++CurrCycle) {
2007 if (isTop())
2008 HazardRec->AdvanceCycle();
2009 else
2010 HazardRec->RecedeCycle();
2011 }
2012 }
2013 CheckPending = true;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002014 unsigned LFactor = SchedModel->getLatencyFactor();
2015 IsResourceLimited =
2016 (int)(getCriticalCount() - (getScheduledLatency() * LFactor))
2017 > (int)LFactor;
Andrew Trick61f1a272012-05-24 22:11:09 +00002018
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002019 DEBUG(dbgs() << "Cycle: " << CurrCycle << ' ' << Available.getName() << '\n');
2020}
2021
Andrew Trickfc127d12013-12-07 05:59:44 +00002022void SchedBoundary::incExecutedResources(unsigned PIdx, unsigned Count) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002023 ExecutedResCounts[PIdx] += Count;
2024 if (ExecutedResCounts[PIdx] > MaxExecutedResCount)
2025 MaxExecutedResCount = ExecutedResCounts[PIdx];
Andrew Trick61f1a272012-05-24 22:11:09 +00002026}
2027
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002028/// Add the given processor resource to this scheduled zone.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002029///
2030/// \param Cycles indicates the number of consecutive (non-pipelined) cycles
2031/// during which this resource is consumed.
2032///
2033/// \return the next cycle at which the instruction may execute without
2034/// oversubscribing resources.
Andrew Trickfc127d12013-12-07 05:59:44 +00002035unsigned SchedBoundary::
Andrew Trick5a22df42013-12-05 17:56:02 +00002036countResource(unsigned PIdx, unsigned Cycles, unsigned NextCycle) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002037 unsigned Factor = SchedModel->getResourceFactor(PIdx);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002038 unsigned Count = Factor * Cycles;
Andrew Trickfc127d12013-12-07 05:59:44 +00002039 DEBUG(dbgs() << " " << SchedModel->getResourceName(PIdx)
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002040 << " +" << Cycles << "x" << Factor << "u\n");
2041
2042 // Update Executed resources counts.
2043 incExecutedResources(PIdx, Count);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002044 assert(Rem->RemainingCounts[PIdx] >= Count && "resource double counted");
2045 Rem->RemainingCounts[PIdx] -= Count;
2046
Andrew Trickb13ef172013-07-19 00:20:07 +00002047 // Check if this resource exceeds the current critical resource. If so, it
2048 // becomes the critical resource.
2049 if (ZoneCritResIdx != PIdx && (getResourceCount(PIdx) > getCriticalCount())) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002050 ZoneCritResIdx = PIdx;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002051 DEBUG(dbgs() << " *** Critical resource "
Andrew Trickfc127d12013-12-07 05:59:44 +00002052 << SchedModel->getResourceName(PIdx) << ": "
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002053 << getResourceCount(PIdx) / SchedModel->getLatencyFactor() << "c\n");
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002054 }
Andrew Trick5a22df42013-12-05 17:56:02 +00002055 // For reserved resources, record the highest cycle using the resource.
2056 unsigned NextAvailable = getNextResourceCycle(PIdx, Cycles);
2057 if (NextAvailable > CurrCycle) {
2058 DEBUG(dbgs() << " Resource conflict: "
2059 << SchedModel->getProcResource(PIdx)->Name << " reserved until @"
2060 << NextAvailable << "\n");
2061 }
2062 return NextAvailable;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002063}
2064
Andrew Trick45446062012-06-05 21:11:27 +00002065/// Move the boundary of scheduled code by one SUnit.
Andrew Trickfc127d12013-12-07 05:59:44 +00002066void SchedBoundary::bumpNode(SUnit *SU) {
Andrew Trick45446062012-06-05 21:11:27 +00002067 // Update the reservation table.
2068 if (HazardRec->isEnabled()) {
2069 if (!isTop() && SU->isCall) {
2070 // Calls are scheduled with their preceding instructions. For bottom-up
2071 // scheduling, clear the pipeline state before emitting.
2072 HazardRec->Reset();
2073 }
2074 HazardRec->EmitInstruction(SU);
2075 }
Andrew Trick5a22df42013-12-05 17:56:02 +00002076 // checkHazard should prevent scheduling multiple instructions per cycle that
2077 // exceed the issue width.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002078 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
2079 unsigned IncMOps = SchedModel->getNumMicroOps(SU->getInstr());
Daniel Jasper0d92abd2013-12-06 08:58:22 +00002080 assert(
2081 (CurrMOps == 0 || (CurrMOps + IncMOps) <= SchedModel->getIssueWidth()) &&
Andrew Trickf7760a22013-12-06 17:19:20 +00002082 "Cannot schedule this instruction's MicroOps in the current cycle.");
Andrew Trick5a22df42013-12-05 17:56:02 +00002083
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002084 unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle);
2085 DEBUG(dbgs() << " Ready @" << ReadyCycle << "c\n");
2086
Andrew Trick5a22df42013-12-05 17:56:02 +00002087 unsigned NextCycle = CurrCycle;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002088 switch (SchedModel->getMicroOpBufferSize()) {
2089 case 0:
2090 assert(ReadyCycle <= CurrCycle && "Broken PendingQueue");
2091 break;
2092 case 1:
2093 if (ReadyCycle > NextCycle) {
2094 NextCycle = ReadyCycle;
2095 DEBUG(dbgs() << " *** Stall until: " << ReadyCycle << "\n");
2096 }
2097 break;
2098 default:
2099 // We don't currently model the OOO reorder buffer, so consider all
Andrew Trick880e5732013-12-05 17:55:58 +00002100 // scheduled MOps to be "retired". We do loosely model in-order resource
2101 // latency. If this instruction uses an in-order resource, account for any
2102 // likely stall cycles.
2103 if (SU->isUnbuffered && ReadyCycle > NextCycle)
2104 NextCycle = ReadyCycle;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002105 break;
2106 }
2107 RetiredMOps += IncMOps;
2108
2109 // Update resource counts and critical resource.
2110 if (SchedModel->hasInstrSchedModel()) {
2111 unsigned DecRemIssue = IncMOps * SchedModel->getMicroOpFactor();
2112 assert(Rem->RemIssueCount >= DecRemIssue && "MOps double counted");
2113 Rem->RemIssueCount -= DecRemIssue;
2114 if (ZoneCritResIdx) {
2115 // Scale scheduled micro-ops for comparing with the critical resource.
2116 unsigned ScaledMOps =
2117 RetiredMOps * SchedModel->getMicroOpFactor();
2118
2119 // If scaled micro-ops are now more than the previous critical resource by
2120 // a full cycle, then micro-ops issue becomes critical.
2121 if ((int)(ScaledMOps - getResourceCount(ZoneCritResIdx))
2122 >= (int)SchedModel->getLatencyFactor()) {
2123 ZoneCritResIdx = 0;
2124 DEBUG(dbgs() << " *** Critical resource NumMicroOps: "
2125 << ScaledMOps / SchedModel->getLatencyFactor() << "c\n");
2126 }
2127 }
2128 for (TargetSchedModel::ProcResIter
2129 PI = SchedModel->getWriteProcResBegin(SC),
2130 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
2131 unsigned RCycle =
Andrew Trick5a22df42013-12-05 17:56:02 +00002132 countResource(PI->ProcResourceIdx, PI->Cycles, NextCycle);
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002133 if (RCycle > NextCycle)
2134 NextCycle = RCycle;
2135 }
Andrew Trick5a22df42013-12-05 17:56:02 +00002136 if (SU->hasReservedResource) {
2137 // For reserved resources, record the highest cycle using the resource.
2138 // For top-down scheduling, this is the cycle in which we schedule this
2139 // instruction plus the number of cycles the operations reserves the
2140 // resource. For bottom-up is it simply the instruction's cycle.
2141 for (TargetSchedModel::ProcResIter
2142 PI = SchedModel->getWriteProcResBegin(SC),
2143 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
2144 unsigned PIdx = PI->ProcResourceIdx;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002145 if (SchedModel->getProcResource(PIdx)->BufferSize == 0) {
Chad Rosieraba845e2014-07-02 16:46:08 +00002146 if (isTop()) {
2147 ReservedCycles[PIdx] =
2148 std::max(getNextResourceCycle(PIdx, 0), NextCycle + PI->Cycles);
2149 }
2150 else
2151 ReservedCycles[PIdx] = NextCycle;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002152 }
Andrew Trick5a22df42013-12-05 17:56:02 +00002153 }
2154 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002155 }
2156 // Update ExpectedLatency and DependentLatency.
2157 unsigned &TopLatency = isTop() ? ExpectedLatency : DependentLatency;
2158 unsigned &BotLatency = isTop() ? DependentLatency : ExpectedLatency;
2159 if (SU->getDepth() > TopLatency) {
2160 TopLatency = SU->getDepth();
2161 DEBUG(dbgs() << " " << Available.getName()
2162 << " TopLatency SU(" << SU->NodeNum << ") " << TopLatency << "c\n");
2163 }
2164 if (SU->getHeight() > BotLatency) {
2165 BotLatency = SU->getHeight();
2166 DEBUG(dbgs() << " " << Available.getName()
2167 << " BotLatency SU(" << SU->NodeNum << ") " << BotLatency << "c\n");
2168 }
2169 // If we stall for any reason, bump the cycle.
2170 if (NextCycle > CurrCycle) {
2171 bumpCycle(NextCycle);
Matthias Braunb550b762016-04-21 01:54:13 +00002172 } else {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002173 // After updating ZoneCritResIdx and ExpectedLatency, check if we're
Alp Tokercb402912014-01-24 17:20:08 +00002174 // resource limited. If a stall occurred, bumpCycle does this.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002175 unsigned LFactor = SchedModel->getLatencyFactor();
2176 IsResourceLimited =
2177 (int)(getCriticalCount() - (getScheduledLatency() * LFactor))
2178 > (int)LFactor;
2179 }
Andrew Trick5a22df42013-12-05 17:56:02 +00002180 // Update CurrMOps after calling bumpCycle to handle stalls, since bumpCycle
2181 // resets CurrMOps. Loop to handle instructions with more MOps than issue in
2182 // one cycle. Since we commonly reach the max MOps here, opportunistically
2183 // bump the cycle to avoid uselessly checking everything in the readyQ.
2184 CurrMOps += IncMOps;
2185 while (CurrMOps >= SchedModel->getIssueWidth()) {
Andrew Trick5a22df42013-12-05 17:56:02 +00002186 DEBUG(dbgs() << " *** Max MOps " << CurrMOps
2187 << " at cycle " << CurrCycle << '\n');
Andrew Trickd14d7c22013-12-28 21:56:57 +00002188 bumpCycle(++NextCycle);
Andrew Trick5a22df42013-12-05 17:56:02 +00002189 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002190 DEBUG(dumpScheduledState());
Andrew Trick45446062012-06-05 21:11:27 +00002191}
2192
Andrew Trick61f1a272012-05-24 22:11:09 +00002193/// Release pending ready nodes in to the available queue. This makes them
2194/// visible to heuristics.
Andrew Trickfc127d12013-12-07 05:59:44 +00002195void SchedBoundary::releasePending() {
Andrew Trick61f1a272012-05-24 22:11:09 +00002196 // If the available queue is empty, it is safe to reset MinReadyCycle.
2197 if (Available.empty())
2198 MinReadyCycle = UINT_MAX;
2199
2200 // Check to see if any of the pending instructions are ready to issue. If
2201 // so, add them to the available queue.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002202 bool IsBuffered = SchedModel->getMicroOpBufferSize() != 0;
Andrew Trick61f1a272012-05-24 22:11:09 +00002203 for (unsigned i = 0, e = Pending.size(); i != e; ++i) {
2204 SUnit *SU = *(Pending.begin()+i);
Andrew Trick45446062012-06-05 21:11:27 +00002205 unsigned ReadyCycle = isTop() ? SU->TopReadyCycle : SU->BotReadyCycle;
Andrew Trick61f1a272012-05-24 22:11:09 +00002206
2207 if (ReadyCycle < MinReadyCycle)
2208 MinReadyCycle = ReadyCycle;
2209
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002210 if (!IsBuffered && ReadyCycle > CurrCycle)
Andrew Trick61f1a272012-05-24 22:11:09 +00002211 continue;
2212
Andrew Trick8c9e6722012-06-29 03:23:24 +00002213 if (checkHazard(SU))
Andrew Trick61f1a272012-05-24 22:11:09 +00002214 continue;
2215
Matthias Braun6493bc22016-04-22 19:09:17 +00002216 if (Available.size() >= ReadyListLimit)
2217 break;
2218
Andrew Trick61f1a272012-05-24 22:11:09 +00002219 Available.push(SU);
2220 Pending.remove(Pending.begin()+i);
2221 --i; --e;
2222 }
2223 CheckPending = false;
2224}
2225
2226/// Remove SU from the ready set for this boundary.
Andrew Trickfc127d12013-12-07 05:59:44 +00002227void SchedBoundary::removeReady(SUnit *SU) {
Andrew Trick61f1a272012-05-24 22:11:09 +00002228 if (Available.isInQueue(SU))
2229 Available.remove(Available.find(SU));
2230 else {
2231 assert(Pending.isInQueue(SU) && "bad ready count");
2232 Pending.remove(Pending.find(SU));
2233 }
2234}
2235
2236/// If this queue only has one ready candidate, return it. As a side effect,
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002237/// defer any nodes that now hit a hazard, and advance the cycle until at least
2238/// one node is ready. If multiple instructions are ready, return NULL.
Andrew Trickfc127d12013-12-07 05:59:44 +00002239SUnit *SchedBoundary::pickOnlyChoice() {
Andrew Trick61f1a272012-05-24 22:11:09 +00002240 if (CheckPending)
2241 releasePending();
2242
Andrew Tricke2ff5752013-06-15 04:49:49 +00002243 if (CurrMOps > 0) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002244 // Defer any ready instrs that now have a hazard.
2245 for (ReadyQueue::iterator I = Available.begin(); I != Available.end();) {
2246 if (checkHazard(*I)) {
2247 Pending.push(*I);
2248 I = Available.remove(I);
2249 continue;
2250 }
2251 ++I;
2252 }
2253 }
Andrew Trick61f1a272012-05-24 22:11:09 +00002254 for (unsigned i = 0; Available.empty(); ++i) {
Chad Rosieraba845e2014-07-02 16:46:08 +00002255// FIXME: Re-enable assert once PR20057 is resolved.
2256// assert(i <= (HazardRec->getMaxLookAhead() + MaxObservedStall) &&
2257// "permanent hazard");
2258 (void)i;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002259 bumpCycle(CurrCycle + 1);
Andrew Trick61f1a272012-05-24 22:11:09 +00002260 releasePending();
2261 }
Matthias Braund29d31e2016-06-23 21:27:38 +00002262
2263 DEBUG(Pending.dump());
2264 DEBUG(Available.dump());
2265
Andrew Trick61f1a272012-05-24 22:11:09 +00002266 if (Available.size() == 1)
2267 return *Available.begin();
Craig Topperc0196b12014-04-14 00:51:57 +00002268 return nullptr;
Andrew Trick61f1a272012-05-24 22:11:09 +00002269}
2270
Andrew Trick8e8415f2013-06-15 05:46:47 +00002271#ifndef NDEBUG
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002272// This is useful information to dump after bumpNode.
2273// Note that the Queue contents are more useful before pickNodeFromQueue.
Andrew Trickfc127d12013-12-07 05:59:44 +00002274void SchedBoundary::dumpScheduledState() {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002275 unsigned ResFactor;
2276 unsigned ResCount;
2277 if (ZoneCritResIdx) {
2278 ResFactor = SchedModel->getResourceFactor(ZoneCritResIdx);
2279 ResCount = getResourceCount(ZoneCritResIdx);
Matthias Braunb550b762016-04-21 01:54:13 +00002280 } else {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002281 ResFactor = SchedModel->getMicroOpFactor();
2282 ResCount = RetiredMOps * SchedModel->getMicroOpFactor();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002283 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002284 unsigned LFactor = SchedModel->getLatencyFactor();
2285 dbgs() << Available.getName() << " @" << CurrCycle << "c\n"
2286 << " Retired: " << RetiredMOps;
2287 dbgs() << "\n Executed: " << getExecutedCount() / LFactor << "c";
2288 dbgs() << "\n Critical: " << ResCount / LFactor << "c, "
Andrew Trickfc127d12013-12-07 05:59:44 +00002289 << ResCount / ResFactor << " "
2290 << SchedModel->getResourceName(ZoneCritResIdx)
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002291 << "\n ExpectedLatency: " << ExpectedLatency << "c\n"
2292 << (IsResourceLimited ? " - Resource" : " - Latency")
2293 << " limited.\n";
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002294}
Andrew Trick8e8415f2013-06-15 05:46:47 +00002295#endif
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002296
Andrew Trickfc127d12013-12-07 05:59:44 +00002297//===----------------------------------------------------------------------===//
Andrew Trickd14d7c22013-12-28 21:56:57 +00002298// GenericScheduler - Generic implementation of MachineSchedStrategy.
Andrew Trickfc127d12013-12-07 05:59:44 +00002299//===----------------------------------------------------------------------===//
2300
Andrew Trickd14d7c22013-12-28 21:56:57 +00002301void GenericSchedulerBase::SchedCandidate::
2302initResourceDelta(const ScheduleDAGMI *DAG,
2303 const TargetSchedModel *SchedModel) {
2304 if (!Policy.ReduceResIdx && !Policy.DemandResIdx)
2305 return;
2306
2307 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
2308 for (TargetSchedModel::ProcResIter
2309 PI = SchedModel->getWriteProcResBegin(SC),
2310 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
2311 if (PI->ProcResourceIdx == Policy.ReduceResIdx)
2312 ResDelta.CritResources += PI->Cycles;
2313 if (PI->ProcResourceIdx == Policy.DemandResIdx)
2314 ResDelta.DemandedResources += PI->Cycles;
2315 }
2316}
2317
2318/// Set the CandPolicy given a scheduling zone given the current resources and
2319/// latencies inside and outside the zone.
Matthias Braunb550b762016-04-21 01:54:13 +00002320void GenericSchedulerBase::setPolicy(CandPolicy &Policy, bool IsPostRA,
Andrew Trickd14d7c22013-12-28 21:56:57 +00002321 SchedBoundary &CurrZone,
2322 SchedBoundary *OtherZone) {
Eric Christopher572e03a2015-06-19 01:53:21 +00002323 // Apply preemptive heuristics based on the total latency and resources
Andrew Trickd14d7c22013-12-28 21:56:57 +00002324 // inside and outside this zone. Potential stalls should be considered before
2325 // following this policy.
2326
2327 // Compute remaining latency. We need this both to determine whether the
2328 // overall schedule has become latency-limited and whether the instructions
2329 // outside this zone are resource or latency limited.
2330 //
2331 // The "dependent" latency is updated incrementally during scheduling as the
2332 // max height/depth of scheduled nodes minus the cycles since it was
2333 // scheduled:
2334 // DLat = max (N.depth - (CurrCycle - N.ReadyCycle) for N in Zone
2335 //
2336 // The "independent" latency is the max ready queue depth:
2337 // ILat = max N.depth for N in Available|Pending
2338 //
2339 // RemainingLatency is the greater of independent and dependent latency.
2340 unsigned RemLatency = CurrZone.getDependentLatency();
2341 RemLatency = std::max(RemLatency,
2342 CurrZone.findMaxLatency(CurrZone.Available.elements()));
2343 RemLatency = std::max(RemLatency,
2344 CurrZone.findMaxLatency(CurrZone.Pending.elements()));
2345
2346 // Compute the critical resource outside the zone.
Andrew Trick7afe4812013-12-28 22:25:57 +00002347 unsigned OtherCritIdx = 0;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002348 unsigned OtherCount =
2349 OtherZone ? OtherZone->getOtherResourceCount(OtherCritIdx) : 0;
2350
2351 bool OtherResLimited = false;
2352 if (SchedModel->hasInstrSchedModel()) {
2353 unsigned LFactor = SchedModel->getLatencyFactor();
2354 OtherResLimited = (int)(OtherCount - (RemLatency * LFactor)) > (int)LFactor;
2355 }
2356 // Schedule aggressively for latency in PostRA mode. We don't check for
2357 // acyclic latency during PostRA, and highly out-of-order processors will
2358 // skip PostRA scheduling.
2359 if (!OtherResLimited) {
2360 if (IsPostRA || (RemLatency + CurrZone.getCurrCycle() > Rem.CriticalPath)) {
2361 Policy.ReduceLatency |= true;
2362 DEBUG(dbgs() << " " << CurrZone.Available.getName()
2363 << " RemainingLatency " << RemLatency << " + "
2364 << CurrZone.getCurrCycle() << "c > CritPath "
2365 << Rem.CriticalPath << "\n");
2366 }
2367 }
2368 // If the same resource is limiting inside and outside the zone, do nothing.
2369 if (CurrZone.getZoneCritResIdx() == OtherCritIdx)
2370 return;
2371
2372 DEBUG(
2373 if (CurrZone.isResourceLimited()) {
2374 dbgs() << " " << CurrZone.Available.getName() << " ResourceLimited: "
2375 << SchedModel->getResourceName(CurrZone.getZoneCritResIdx())
2376 << "\n";
2377 }
2378 if (OtherResLimited)
2379 dbgs() << " RemainingLimit: "
2380 << SchedModel->getResourceName(OtherCritIdx) << "\n";
2381 if (!CurrZone.isResourceLimited() && !OtherResLimited)
2382 dbgs() << " Latency limited both directions.\n");
2383
2384 if (CurrZone.isResourceLimited() && !Policy.ReduceResIdx)
2385 Policy.ReduceResIdx = CurrZone.getZoneCritResIdx();
2386
2387 if (OtherResLimited)
2388 Policy.DemandResIdx = OtherCritIdx;
2389}
2390
2391#ifndef NDEBUG
2392const char *GenericSchedulerBase::getReasonStr(
2393 GenericSchedulerBase::CandReason Reason) {
2394 switch (Reason) {
2395 case NoCand: return "NOCAND ";
Matthias Braun49cb6e92016-05-27 22:14:26 +00002396 case Only1: return "ONLY1 ";
2397 case PhysRegCopy: return "PREG-COPY ";
Andrew Trickd14d7c22013-12-28 21:56:57 +00002398 case RegExcess: return "REG-EXCESS";
2399 case RegCritical: return "REG-CRIT ";
2400 case Stall: return "STALL ";
2401 case Cluster: return "CLUSTER ";
2402 case Weak: return "WEAK ";
2403 case RegMax: return "REG-MAX ";
2404 case ResourceReduce: return "RES-REDUCE";
2405 case ResourceDemand: return "RES-DEMAND";
2406 case TopDepthReduce: return "TOP-DEPTH ";
2407 case TopPathReduce: return "TOP-PATH ";
2408 case BotHeightReduce:return "BOT-HEIGHT";
2409 case BotPathReduce: return "BOT-PATH ";
2410 case NextDefUse: return "DEF-USE ";
2411 case NodeOrder: return "ORDER ";
2412 };
2413 llvm_unreachable("Unknown reason!");
2414}
2415
2416void GenericSchedulerBase::traceCandidate(const SchedCandidate &Cand) {
2417 PressureChange P;
2418 unsigned ResIdx = 0;
2419 unsigned Latency = 0;
2420 switch (Cand.Reason) {
2421 default:
2422 break;
2423 case RegExcess:
2424 P = Cand.RPDelta.Excess;
2425 break;
2426 case RegCritical:
2427 P = Cand.RPDelta.CriticalMax;
2428 break;
2429 case RegMax:
2430 P = Cand.RPDelta.CurrentMax;
2431 break;
2432 case ResourceReduce:
2433 ResIdx = Cand.Policy.ReduceResIdx;
2434 break;
2435 case ResourceDemand:
2436 ResIdx = Cand.Policy.DemandResIdx;
2437 break;
2438 case TopDepthReduce:
2439 Latency = Cand.SU->getDepth();
2440 break;
2441 case TopPathReduce:
2442 Latency = Cand.SU->getHeight();
2443 break;
2444 case BotHeightReduce:
2445 Latency = Cand.SU->getHeight();
2446 break;
2447 case BotPathReduce:
2448 Latency = Cand.SU->getDepth();
2449 break;
2450 }
James Y Knighte72b0db2015-09-18 18:52:20 +00002451 dbgs() << " Cand SU(" << Cand.SU->NodeNum << ") " << getReasonStr(Cand.Reason);
Andrew Trickd14d7c22013-12-28 21:56:57 +00002452 if (P.isValid())
2453 dbgs() << " " << TRI->getRegPressureSetName(P.getPSet())
2454 << ":" << P.getUnitInc() << " ";
2455 else
2456 dbgs() << " ";
2457 if (ResIdx)
2458 dbgs() << " " << SchedModel->getProcResource(ResIdx)->Name << " ";
2459 else
2460 dbgs() << " ";
2461 if (Latency)
2462 dbgs() << " " << Latency << " cycles ";
2463 else
2464 dbgs() << " ";
2465 dbgs() << '\n';
2466}
2467#endif
2468
2469/// Return true if this heuristic determines order.
2470static bool tryLess(int TryVal, int CandVal,
2471 GenericSchedulerBase::SchedCandidate &TryCand,
2472 GenericSchedulerBase::SchedCandidate &Cand,
2473 GenericSchedulerBase::CandReason Reason) {
2474 if (TryVal < CandVal) {
2475 TryCand.Reason = Reason;
2476 return true;
2477 }
2478 if (TryVal > CandVal) {
2479 if (Cand.Reason > Reason)
2480 Cand.Reason = Reason;
2481 return true;
2482 }
Andrew Trickd14d7c22013-12-28 21:56:57 +00002483 return false;
2484}
2485
2486static bool tryGreater(int TryVal, int CandVal,
2487 GenericSchedulerBase::SchedCandidate &TryCand,
2488 GenericSchedulerBase::SchedCandidate &Cand,
2489 GenericSchedulerBase::CandReason Reason) {
2490 if (TryVal > CandVal) {
2491 TryCand.Reason = Reason;
2492 return true;
2493 }
2494 if (TryVal < CandVal) {
2495 if (Cand.Reason > Reason)
2496 Cand.Reason = Reason;
2497 return true;
2498 }
Andrew Trickd14d7c22013-12-28 21:56:57 +00002499 return false;
2500}
2501
2502static bool tryLatency(GenericSchedulerBase::SchedCandidate &TryCand,
2503 GenericSchedulerBase::SchedCandidate &Cand,
2504 SchedBoundary &Zone) {
2505 if (Zone.isTop()) {
2506 if (Cand.SU->getDepth() > Zone.getScheduledLatency()) {
2507 if (tryLess(TryCand.SU->getDepth(), Cand.SU->getDepth(),
2508 TryCand, Cand, GenericSchedulerBase::TopDepthReduce))
2509 return true;
2510 }
2511 if (tryGreater(TryCand.SU->getHeight(), Cand.SU->getHeight(),
2512 TryCand, Cand, GenericSchedulerBase::TopPathReduce))
2513 return true;
Matthias Braunb550b762016-04-21 01:54:13 +00002514 } else {
Andrew Trickd14d7c22013-12-28 21:56:57 +00002515 if (Cand.SU->getHeight() > Zone.getScheduledLatency()) {
2516 if (tryLess(TryCand.SU->getHeight(), Cand.SU->getHeight(),
2517 TryCand, Cand, GenericSchedulerBase::BotHeightReduce))
2518 return true;
2519 }
2520 if (tryGreater(TryCand.SU->getDepth(), Cand.SU->getDepth(),
2521 TryCand, Cand, GenericSchedulerBase::BotPathReduce))
2522 return true;
2523 }
2524 return false;
2525}
2526
Matthias Braun49cb6e92016-05-27 22:14:26 +00002527static void tracePick(GenericSchedulerBase::CandReason Reason, bool IsTop) {
2528 DEBUG(dbgs() << "Pick " << (IsTop ? "Top " : "Bot ")
2529 << GenericSchedulerBase::getReasonStr(Reason) << '\n');
2530}
2531
Matthias Braun6ad3d052016-06-25 00:23:00 +00002532static void tracePick(const GenericSchedulerBase::SchedCandidate &Cand) {
2533 tracePick(Cand.Reason, Cand.AtTop);
Andrew Trickd14d7c22013-12-28 21:56:57 +00002534}
2535
Andrew Trickfc127d12013-12-07 05:59:44 +00002536void GenericScheduler::initialize(ScheduleDAGMI *dag) {
Andrew Trickd7f890e2013-12-28 21:56:47 +00002537 assert(dag->hasVRegLiveness() &&
2538 "(PreRA)GenericScheduler needs vreg liveness");
2539 DAG = static_cast<ScheduleDAGMILive*>(dag);
Andrew Trickfc127d12013-12-07 05:59:44 +00002540 SchedModel = DAG->getSchedModel();
2541 TRI = DAG->TRI;
2542
2543 Rem.init(DAG, SchedModel);
2544 Top.init(DAG, SchedModel, &Rem);
2545 Bot.init(DAG, SchedModel, &Rem);
2546
2547 // Initialize resource counts.
2548
2549 // Initialize the HazardRecognizers. If itineraries don't exist, are empty, or
2550 // are disabled, then these HazardRecs will be disabled.
2551 const InstrItineraryData *Itin = SchedModel->getInstrItineraries();
Andrew Trickfc127d12013-12-07 05:59:44 +00002552 if (!Top.HazardRec) {
2553 Top.HazardRec =
Eric Christopher99556d72014-10-14 06:56:25 +00002554 DAG->MF.getSubtarget().getInstrInfo()->CreateTargetMIHazardRecognizer(
Eric Christopherd9134482014-08-04 21:25:23 +00002555 Itin, DAG);
Andrew Trickfc127d12013-12-07 05:59:44 +00002556 }
2557 if (!Bot.HazardRec) {
2558 Bot.HazardRec =
Eric Christopher99556d72014-10-14 06:56:25 +00002559 DAG->MF.getSubtarget().getInstrInfo()->CreateTargetMIHazardRecognizer(
Eric Christopherd9134482014-08-04 21:25:23 +00002560 Itin, DAG);
Andrew Trickfc127d12013-12-07 05:59:44 +00002561 }
Matthias Brauncc676c42016-06-25 02:03:36 +00002562 TopCand.SU = nullptr;
2563 BotCand.SU = nullptr;
Andrew Trickfc127d12013-12-07 05:59:44 +00002564}
2565
2566/// Initialize the per-region scheduling policy.
2567void GenericScheduler::initPolicy(MachineBasicBlock::iterator Begin,
2568 MachineBasicBlock::iterator End,
2569 unsigned NumRegionInstrs) {
Eric Christopher99556d72014-10-14 06:56:25 +00002570 const MachineFunction &MF = *Begin->getParent()->getParent();
2571 const TargetLowering *TLI = MF.getSubtarget().getTargetLowering();
Andrew Trickfc127d12013-12-07 05:59:44 +00002572
2573 // Avoid setting up the register pressure tracker for small regions to save
2574 // compile time. As a rough heuristic, only track pressure when the number of
2575 // schedulable instructions exceeds half the integer register file.
Andrew Trick350ff2c2014-01-21 21:27:37 +00002576 RegionPolicy.ShouldTrackPressure = true;
Andrew Trick46753512014-01-22 03:38:55 +00002577 for (unsigned VT = MVT::i32; VT > (unsigned)MVT::i1; --VT) {
2578 MVT::SimpleValueType LegalIntVT = (MVT::SimpleValueType)VT;
2579 if (TLI->isTypeLegal(LegalIntVT)) {
Andrew Trick350ff2c2014-01-21 21:27:37 +00002580 unsigned NIntRegs = Context->RegClassInfo->getNumAllocatableRegs(
Andrew Trick46753512014-01-22 03:38:55 +00002581 TLI->getRegClassFor(LegalIntVT));
Andrew Trick350ff2c2014-01-21 21:27:37 +00002582 RegionPolicy.ShouldTrackPressure = NumRegionInstrs > (NIntRegs / 2);
2583 }
2584 }
Andrew Trickfc127d12013-12-07 05:59:44 +00002585
2586 // For generic targets, we default to bottom-up, because it's simpler and more
2587 // compile-time optimizations have been implemented in that direction.
2588 RegionPolicy.OnlyBottomUp = true;
2589
2590 // Allow the subtarget to override default policy.
Duncan P. N. Exon Smith63298722016-07-01 00:23:27 +00002591 MF.getSubtarget().overrideSchedPolicy(RegionPolicy, NumRegionInstrs);
Andrew Trickfc127d12013-12-07 05:59:44 +00002592
2593 // After subtarget overrides, apply command line options.
2594 if (!EnableRegPressure)
2595 RegionPolicy.ShouldTrackPressure = false;
2596
2597 // Check -misched-topdown/bottomup can force or unforce scheduling direction.
2598 // e.g. -misched-bottomup=false allows scheduling in both directions.
2599 assert((!ForceTopDown || !ForceBottomUp) &&
2600 "-misched-topdown incompatible with -misched-bottomup");
2601 if (ForceBottomUp.getNumOccurrences() > 0) {
2602 RegionPolicy.OnlyBottomUp = ForceBottomUp;
2603 if (RegionPolicy.OnlyBottomUp)
2604 RegionPolicy.OnlyTopDown = false;
2605 }
2606 if (ForceTopDown.getNumOccurrences() > 0) {
2607 RegionPolicy.OnlyTopDown = ForceTopDown;
2608 if (RegionPolicy.OnlyTopDown)
2609 RegionPolicy.OnlyBottomUp = false;
2610 }
2611}
2612
James Y Knighte72b0db2015-09-18 18:52:20 +00002613void GenericScheduler::dumpPolicy() {
2614 dbgs() << "GenericScheduler RegionPolicy: "
2615 << " ShouldTrackPressure=" << RegionPolicy.ShouldTrackPressure
2616 << " OnlyTopDown=" << RegionPolicy.OnlyTopDown
2617 << " OnlyBottomUp=" << RegionPolicy.OnlyBottomUp
2618 << "\n";
2619}
2620
Andrew Trickfc127d12013-12-07 05:59:44 +00002621/// Set IsAcyclicLatencyLimited if the acyclic path is longer than the cyclic
2622/// critical path by more cycles than it takes to drain the instruction buffer.
2623/// We estimate an upper bounds on in-flight instructions as:
2624///
2625/// CyclesPerIteration = max( CyclicPath, Loop-Resource-Height )
2626/// InFlightIterations = AcyclicPath / CyclesPerIteration
2627/// InFlightResources = InFlightIterations * LoopResources
2628///
2629/// TODO: Check execution resources in addition to IssueCount.
2630void GenericScheduler::checkAcyclicLatency() {
2631 if (Rem.CyclicCritPath == 0 || Rem.CyclicCritPath >= Rem.CriticalPath)
2632 return;
2633
2634 // Scaled number of cycles per loop iteration.
2635 unsigned IterCount =
2636 std::max(Rem.CyclicCritPath * SchedModel->getLatencyFactor(),
2637 Rem.RemIssueCount);
2638 // Scaled acyclic critical path.
2639 unsigned AcyclicCount = Rem.CriticalPath * SchedModel->getLatencyFactor();
2640 // InFlightCount = (AcyclicPath / IterCycles) * InstrPerLoop
2641 unsigned InFlightCount =
2642 (AcyclicCount * Rem.RemIssueCount + IterCount-1) / IterCount;
2643 unsigned BufferLimit =
2644 SchedModel->getMicroOpBufferSize() * SchedModel->getMicroOpFactor();
2645
2646 Rem.IsAcyclicLatencyLimited = InFlightCount > BufferLimit;
2647
2648 DEBUG(dbgs() << "IssueCycles="
2649 << Rem.RemIssueCount / SchedModel->getLatencyFactor() << "c "
2650 << "IterCycles=" << IterCount / SchedModel->getLatencyFactor()
2651 << "c NumIters=" << (AcyclicCount + IterCount-1) / IterCount
2652 << " InFlight=" << InFlightCount / SchedModel->getMicroOpFactor()
2653 << "m BufferLim=" << SchedModel->getMicroOpBufferSize() << "m\n";
2654 if (Rem.IsAcyclicLatencyLimited)
2655 dbgs() << " ACYCLIC LATENCY LIMIT\n");
2656}
2657
2658void GenericScheduler::registerRoots() {
2659 Rem.CriticalPath = DAG->ExitSU.getDepth();
2660
2661 // Some roots may not feed into ExitSU. Check all of them in case.
2662 for (std::vector<SUnit*>::const_iterator
2663 I = Bot.Available.begin(), E = Bot.Available.end(); I != E; ++I) {
2664 if ((*I)->getDepth() > Rem.CriticalPath)
2665 Rem.CriticalPath = (*I)->getDepth();
2666 }
Gerolf Hoflehnerb5220dc2014-08-07 21:49:44 +00002667 DEBUG(dbgs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << '\n');
2668 if (DumpCriticalPathLength) {
2669 errs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << " \n";
2670 }
Andrew Trickfc127d12013-12-07 05:59:44 +00002671
2672 if (EnableCyclicPath) {
2673 Rem.CyclicCritPath = DAG->computeCyclicCriticalPath();
2674 checkAcyclicLatency();
2675 }
2676}
2677
Andrew Trick1a831342013-08-30 03:49:48 +00002678static bool tryPressure(const PressureChange &TryP,
2679 const PressureChange &CandP,
Andrew Trickd14d7c22013-12-28 21:56:57 +00002680 GenericSchedulerBase::SchedCandidate &TryCand,
2681 GenericSchedulerBase::SchedCandidate &Cand,
Tom Stellard5ce53062015-12-16 18:31:01 +00002682 GenericSchedulerBase::CandReason Reason,
2683 const TargetRegisterInfo *TRI,
2684 const MachineFunction &MF) {
Andrew Trickb1a45b62013-08-30 04:27:29 +00002685 // If one candidate decreases and the other increases, go with it.
2686 // Invalid candidates have UnitInc==0.
Hal Finkel7a87f8a2014-10-10 17:06:20 +00002687 if (tryGreater(TryP.getUnitInc() < 0, CandP.getUnitInc() < 0, TryCand, Cand,
2688 Reason)) {
Andrew Trickb1a45b62013-08-30 04:27:29 +00002689 return true;
2690 }
Matthias Braun6ad3d052016-06-25 00:23:00 +00002691 // Do not compare the magnitude of pressure changes between top and bottom
2692 // boundary.
2693 if (Cand.AtTop != TryCand.AtTop)
2694 return false;
2695
2696 // If both candidates affect the same set in the same boundary, go with the
2697 // smallest increase.
2698 unsigned TryPSet = TryP.getPSetOrMax();
2699 unsigned CandPSet = CandP.getPSetOrMax();
2700 if (TryPSet == CandPSet) {
2701 return tryLess(TryP.getUnitInc(), CandP.getUnitInc(), TryCand, Cand,
2702 Reason);
2703 }
Tom Stellard5ce53062015-12-16 18:31:01 +00002704
2705 int TryRank = TryP.isValid() ? TRI->getRegPressureSetScore(MF, TryPSet) :
2706 std::numeric_limits<int>::max();
2707
2708 int CandRank = CandP.isValid() ? TRI->getRegPressureSetScore(MF, CandPSet) :
2709 std::numeric_limits<int>::max();
2710
Andrew Trick401b6952013-07-25 07:26:35 +00002711 // If the candidates are decreasing pressure, reverse priority.
Andrew Trick1a831342013-08-30 03:49:48 +00002712 if (TryP.getUnitInc() < 0)
Andrew Trick401b6952013-07-25 07:26:35 +00002713 std::swap(TryRank, CandRank);
2714 return tryGreater(TryRank, CandRank, TryCand, Cand, Reason);
2715}
2716
Andrew Tricka7714a02012-11-12 19:40:10 +00002717static unsigned getWeakLeft(const SUnit *SU, bool isTop) {
2718 return (isTop) ? SU->WeakPredsLeft : SU->WeakSuccsLeft;
2719}
2720
Andrew Tricke833e1c2013-04-13 06:07:40 +00002721/// Minimize physical register live ranges. Regalloc wants them adjacent to
2722/// their physreg def/use.
2723///
2724/// FIXME: This is an unnecessary check on the critical path. Most are root/leaf
2725/// copies which can be prescheduled. The rest (e.g. x86 MUL) could be bundled
2726/// with the operation that produces or consumes the physreg. We'll do this when
2727/// regalloc has support for parallel copies.
2728static int biasPhysRegCopy(const SUnit *SU, bool isTop) {
2729 const MachineInstr *MI = SU->getInstr();
2730 if (!MI->isCopy())
2731 return 0;
2732
2733 unsigned ScheduledOper = isTop ? 1 : 0;
2734 unsigned UnscheduledOper = isTop ? 0 : 1;
2735 // If we have already scheduled the physreg produce/consumer, immediately
2736 // schedule the copy.
2737 if (TargetRegisterInfo::isPhysicalRegister(
2738 MI->getOperand(ScheduledOper).getReg()))
2739 return 1;
2740 // If the physreg is at the boundary, defer it. Otherwise schedule it
2741 // immediately to free the dependent. We can hoist the copy later.
2742 bool AtBoundary = isTop ? !SU->NumSuccsLeft : !SU->NumPredsLeft;
2743 if (TargetRegisterInfo::isPhysicalRegister(
2744 MI->getOperand(UnscheduledOper).getReg()))
2745 return AtBoundary ? -1 : 1;
2746 return 0;
2747}
2748
Matthias Braun4f573772016-04-22 19:10:15 +00002749void GenericScheduler::initCandidate(SchedCandidate &Cand, SUnit *SU,
2750 bool AtTop,
2751 const RegPressureTracker &RPTracker,
2752 RegPressureTracker &TempTracker) {
2753 Cand.SU = SU;
Matthias Braun6ad3d052016-06-25 00:23:00 +00002754 Cand.AtTop = AtTop;
Matthias Braun4f573772016-04-22 19:10:15 +00002755 if (DAG->isTrackingPressure()) {
2756 if (AtTop) {
2757 TempTracker.getMaxDownwardPressureDelta(
2758 Cand.SU->getInstr(),
2759 Cand.RPDelta,
2760 DAG->getRegionCriticalPSets(),
2761 DAG->getRegPressure().MaxSetPressure);
2762 } else {
2763 if (VerifyScheduling) {
2764 TempTracker.getMaxUpwardPressureDelta(
2765 Cand.SU->getInstr(),
2766 &DAG->getPressureDiff(Cand.SU),
2767 Cand.RPDelta,
2768 DAG->getRegionCriticalPSets(),
2769 DAG->getRegPressure().MaxSetPressure);
2770 } else {
2771 RPTracker.getUpwardPressureDelta(
2772 Cand.SU->getInstr(),
2773 DAG->getPressureDiff(Cand.SU),
2774 Cand.RPDelta,
2775 DAG->getRegionCriticalPSets(),
2776 DAG->getRegPressure().MaxSetPressure);
2777 }
2778 }
2779 }
2780 DEBUG(if (Cand.RPDelta.Excess.isValid())
2781 dbgs() << " Try SU(" << Cand.SU->NodeNum << ") "
2782 << TRI->getRegPressureSetName(Cand.RPDelta.Excess.getPSet())
2783 << ":" << Cand.RPDelta.Excess.getUnitInc() << "\n");
2784}
2785
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002786/// Apply a set of heursitics to a new candidate. Heuristics are currently
2787/// hierarchical. This may be more efficient than a graduated cost model because
2788/// we don't need to evaluate all aspects of the model for each node in the
2789/// queue. But it's really done to make the heuristics easier to debug and
2790/// statistically analyze.
2791///
2792/// \param Cand provides the policy and current best candidate.
2793/// \param TryCand refers to the next SUnit candidate, otherwise uninitialized.
Matthias Braun6ad3d052016-06-25 00:23:00 +00002794/// \param Zone describes the scheduled zone that we are extending, or nullptr
2795// if Cand is from a different zone than TryCand.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002796void GenericScheduler::tryCandidate(SchedCandidate &Cand,
Andrew Trickbb1247b2013-12-05 17:55:47 +00002797 SchedCandidate &TryCand,
Matthias Braun6ad3d052016-06-25 00:23:00 +00002798 SchedBoundary *Zone) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002799 // Initialize the candidate if needed.
2800 if (!Cand.isValid()) {
2801 TryCand.Reason = NodeOrder;
2802 return;
2803 }
Andrew Tricke833e1c2013-04-13 06:07:40 +00002804
Matthias Braun6ad3d052016-06-25 00:23:00 +00002805 if (tryGreater(biasPhysRegCopy(TryCand.SU, TryCand.AtTop),
2806 biasPhysRegCopy(Cand.SU, Cand.AtTop),
Andrew Tricke833e1c2013-04-13 06:07:40 +00002807 TryCand, Cand, PhysRegCopy))
2808 return;
2809
Andrew Tricke02d5da2015-05-17 23:40:27 +00002810 // Avoid exceeding the target's limit.
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002811 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.Excess,
2812 Cand.RPDelta.Excess,
Tom Stellard5ce53062015-12-16 18:31:01 +00002813 TryCand, Cand, RegExcess, TRI,
2814 DAG->MF))
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002815 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002816
2817 // Avoid increasing the max critical pressure in the scheduled region.
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002818 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.CriticalMax,
2819 Cand.RPDelta.CriticalMax,
Tom Stellard5ce53062015-12-16 18:31:01 +00002820 TryCand, Cand, RegCritical, TRI,
2821 DAG->MF))
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002822 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002823
Matthias Braun6ad3d052016-06-25 00:23:00 +00002824 // We only compare a subset of features when comparing nodes between
2825 // Top and Bottom boundary. Some properties are simply incomparable, in many
2826 // other instances we should only override the other boundary if something
2827 // is a clear good pick on one boundary. Skip heuristics that are more
2828 // "tie-breaking" in nature.
2829 bool SameBoundary = Zone != nullptr;
2830 if (SameBoundary) {
2831 // For loops that are acyclic path limited, aggressively schedule for
2832 // latency. This can result in very long dependence chains scheduled in
2833 // sequence, so once every cycle (when CurrMOps == 0), switch to normal
2834 // heuristics.
2835 if (Rem.IsAcyclicLatencyLimited && !Zone->getCurrMOps() &&
2836 tryLatency(TryCand, Cand, *Zone))
2837 return;
Andrew Trickddffae92013-09-06 17:32:36 +00002838
Matthias Braun6ad3d052016-06-25 00:23:00 +00002839 // Prioritize instructions that read unbuffered resources by stall cycles.
2840 if (tryLess(Zone->getLatencyStallCycles(TryCand.SU),
2841 Zone->getLatencyStallCycles(Cand.SU), TryCand, Cand, Stall))
2842 return;
2843 }
Andrew Trick880e5732013-12-05 17:55:58 +00002844
Andrew Tricka7714a02012-11-12 19:40:10 +00002845 // Keep clustered nodes together to encourage downstream peephole
2846 // optimizations which may reduce resource requirements.
2847 //
2848 // This is a best effort to set things up for a post-RA pass. Optimizations
2849 // like generating loads of multiple registers should ideally be done within
2850 // the scheduler pass by combining the loads during DAG postprocessing.
Matthias Braun6ad3d052016-06-25 00:23:00 +00002851 const SUnit *CandNextClusterSU =
2852 Cand.AtTop ? DAG->getNextClusterSucc() : DAG->getNextClusterPred();
2853 const SUnit *TryCandNextClusterSU =
2854 TryCand.AtTop ? DAG->getNextClusterSucc() : DAG->getNextClusterPred();
2855 if (tryGreater(TryCand.SU == TryCandNextClusterSU,
2856 Cand.SU == CandNextClusterSU,
Andrew Tricka7714a02012-11-12 19:40:10 +00002857 TryCand, Cand, Cluster))
2858 return;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00002859
Matthias Braun6ad3d052016-06-25 00:23:00 +00002860 if (SameBoundary) {
2861 // Weak edges are for clustering and other constraints.
2862 if (tryLess(getWeakLeft(TryCand.SU, TryCand.AtTop),
2863 getWeakLeft(Cand.SU, Cand.AtTop),
2864 TryCand, Cand, Weak))
2865 return;
Andrew Tricka7714a02012-11-12 19:40:10 +00002866 }
Matthias Braun6ad3d052016-06-25 00:23:00 +00002867
Andrew Trick71f08a32013-06-17 21:45:13 +00002868 // Avoid increasing the max pressure of the entire region.
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002869 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.CurrentMax,
2870 Cand.RPDelta.CurrentMax,
Tom Stellard5ce53062015-12-16 18:31:01 +00002871 TryCand, Cand, RegMax, TRI,
2872 DAG->MF))
Andrew Trick71f08a32013-06-17 21:45:13 +00002873 return;
2874
Matthias Braun6ad3d052016-06-25 00:23:00 +00002875 if (SameBoundary) {
2876 // Avoid critical resource consumption and balance the schedule.
2877 TryCand.initResourceDelta(DAG, SchedModel);
2878 if (tryLess(TryCand.ResDelta.CritResources, Cand.ResDelta.CritResources,
2879 TryCand, Cand, ResourceReduce))
2880 return;
2881 if (tryGreater(TryCand.ResDelta.DemandedResources,
2882 Cand.ResDelta.DemandedResources,
2883 TryCand, Cand, ResourceDemand))
2884 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002885
Matthias Braun6ad3d052016-06-25 00:23:00 +00002886 // Avoid serializing long latency dependence chains.
2887 // For acyclic path limited loops, latency was already checked above.
2888 if (!RegionPolicy.DisableLatencyHeuristic && TryCand.Policy.ReduceLatency &&
2889 !Rem.IsAcyclicLatencyLimited && tryLatency(TryCand, Cand, *Zone))
2890 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002891
Matthias Braun6ad3d052016-06-25 00:23:00 +00002892 // Prefer immediate defs/users of the last scheduled instruction. This is a
2893 // local pressure avoidance strategy that also makes the machine code
2894 // readable.
2895 if (tryGreater(Zone->isNextSU(TryCand.SU), Zone->isNextSU(Cand.SU),
2896 TryCand, Cand, NextDefUse))
2897 return;
Andrew Tricka7714a02012-11-12 19:40:10 +00002898
Matthias Braun6ad3d052016-06-25 00:23:00 +00002899 // Fall through to original instruction order.
2900 if ((Zone->isTop() && TryCand.SU->NodeNum < Cand.SU->NodeNum)
2901 || (!Zone->isTop() && TryCand.SU->NodeNum > Cand.SU->NodeNum)) {
2902 TryCand.Reason = NodeOrder;
2903 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002904 }
2905}
Andrew Trick419eae22012-05-10 21:06:19 +00002906
Andrew Trickc573cd92013-09-06 17:32:44 +00002907/// Pick the best candidate from the queue.
Andrew Trick7ee9de52012-05-10 21:06:16 +00002908///
2909/// TODO: getMaxPressureDelta results can be mostly cached for each SUnit during
2910/// DAG building. To adjust for the current scheduling location we need to
2911/// maintain the number of vreg uses remaining to be top-scheduled.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002912void GenericScheduler::pickNodeFromQueue(SchedBoundary &Zone,
Matthias Braun6ad3d052016-06-25 00:23:00 +00002913 const CandPolicy &ZonePolicy,
Andrew Trickbb1247b2013-12-05 17:55:47 +00002914 const RegPressureTracker &RPTracker,
2915 SchedCandidate &Cand) {
Andrew Trick7ee9de52012-05-10 21:06:16 +00002916 // getMaxPressureDelta temporarily modifies the tracker.
2917 RegPressureTracker &TempTracker = const_cast<RegPressureTracker&>(RPTracker);
2918
Matthias Braund29d31e2016-06-23 21:27:38 +00002919 ReadyQueue &Q = Zone.Available;
Andrew Trickdd375dd2012-05-24 22:11:03 +00002920 for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) {
Andrew Trick7ee9de52012-05-10 21:06:16 +00002921
Matthias Braun6ad3d052016-06-25 00:23:00 +00002922 SchedCandidate TryCand(ZonePolicy);
Matthias Braun4f573772016-04-22 19:10:15 +00002923 initCandidate(TryCand, *I, Zone.isTop(), RPTracker, TempTracker);
Matthias Braun6ad3d052016-06-25 00:23:00 +00002924 // Pass SchedBoundary only when comparing nodes from the same boundary.
2925 SchedBoundary *ZoneArg = Cand.AtTop == TryCand.AtTop ? &Zone : nullptr;
2926 tryCandidate(Cand, TryCand, ZoneArg);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002927 if (TryCand.Reason != NoCand) {
2928 // Initialize resource delta if needed in case future heuristics query it.
2929 if (TryCand.ResDelta == SchedResourceDelta())
2930 TryCand.initResourceDelta(DAG, SchedModel);
2931 Cand.setBest(TryCand);
Andrew Trick419d4912013-04-05 00:31:29 +00002932 DEBUG(traceCandidate(Cand));
Andrew Trick22025772012-05-17 18:35:10 +00002933 }
Andrew Trick7ee9de52012-05-10 21:06:16 +00002934 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002935}
2936
Andrew Trick22025772012-05-17 18:35:10 +00002937/// Pick the best candidate node from either the top or bottom queue.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002938SUnit *GenericScheduler::pickNodeBidirectional(bool &IsTopNode) {
Andrew Trick22025772012-05-17 18:35:10 +00002939 // Schedule as far as possible in the direction of no choice. This is most
2940 // efficient, but also provides the best heuristics for CriticalPSets.
Andrew Trick61f1a272012-05-24 22:11:09 +00002941 if (SUnit *SU = Bot.pickOnlyChoice()) {
Andrew Trick22025772012-05-17 18:35:10 +00002942 IsTopNode = false;
Matthias Braun49cb6e92016-05-27 22:14:26 +00002943 tracePick(Only1, false);
Andrew Trick61f1a272012-05-24 22:11:09 +00002944 return SU;
Andrew Trick22025772012-05-17 18:35:10 +00002945 }
Andrew Trick61f1a272012-05-24 22:11:09 +00002946 if (SUnit *SU = Top.pickOnlyChoice()) {
Andrew Trick22025772012-05-17 18:35:10 +00002947 IsTopNode = true;
Matthias Braun49cb6e92016-05-27 22:14:26 +00002948 tracePick(Only1, true);
Andrew Trick61f1a272012-05-24 22:11:09 +00002949 return SU;
Andrew Trick22025772012-05-17 18:35:10 +00002950 }
Andrew Trickfc127d12013-12-07 05:59:44 +00002951 // Set the bottom-up policy based on the state of the current bottom zone and
2952 // the instructions outside the zone, including the top zone.
Matthias Braun6ad3d052016-06-25 00:23:00 +00002953 CandPolicy BotPolicy;
2954 setPolicy(BotPolicy, /*IsPostRA=*/false, Bot, &Top);
Andrew Trickfc127d12013-12-07 05:59:44 +00002955 // Set the top-down policy based on the state of the current top zone and
2956 // the instructions outside the zone, including the bottom zone.
Matthias Braun6ad3d052016-06-25 00:23:00 +00002957 CandPolicy TopPolicy;
2958 setPolicy(TopPolicy, /*IsPostRA=*/false, Top, &Bot);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002959
Matthias Brauncc676c42016-06-25 02:03:36 +00002960 // See if BotCand is still valid (because we previously scheduled from Top).
Matthias Braund29d31e2016-06-23 21:27:38 +00002961 DEBUG(dbgs() << "Picking from Bot:\n");
Matthias Brauncc676c42016-06-25 02:03:36 +00002962 if (!BotCand.isValid() || BotCand.SU->isScheduled ||
2963 BotCand.Policy != BotPolicy) {
2964 BotCand.reset(CandPolicy());
2965 pickNodeFromQueue(Bot, BotPolicy, DAG->getBotRPTracker(), BotCand);
2966 assert(BotCand.Reason != NoCand && "failed to find the first candidate");
2967 } else {
2968 DEBUG(traceCandidate(BotCand));
2969#ifndef NDEBUG
2970 if (VerifyScheduling) {
2971 SchedCandidate TCand;
2972 TCand.reset(CandPolicy());
2973 pickNodeFromQueue(Bot, BotPolicy, DAG->getBotRPTracker(), TCand);
2974 assert(TCand.SU == BotCand.SU &&
2975 "Last pick result should correspond to re-picking right now");
2976 }
2977#endif
2978 }
Andrew Trick22025772012-05-17 18:35:10 +00002979
Andrew Trick22025772012-05-17 18:35:10 +00002980 // Check if the top Q has a better candidate.
Matthias Braund29d31e2016-06-23 21:27:38 +00002981 DEBUG(dbgs() << "Picking from Top:\n");
Matthias Brauncc676c42016-06-25 02:03:36 +00002982 if (!TopCand.isValid() || TopCand.SU->isScheduled ||
2983 TopCand.Policy != TopPolicy) {
2984 TopCand.reset(CandPolicy());
2985 pickNodeFromQueue(Top, TopPolicy, DAG->getTopRPTracker(), TopCand);
2986 assert(TopCand.Reason != NoCand && "failed to find the first candidate");
2987 } else {
2988 DEBUG(traceCandidate(TopCand));
2989#ifndef NDEBUG
2990 if (VerifyScheduling) {
2991 SchedCandidate TCand;
2992 TCand.reset(CandPolicy());
2993 pickNodeFromQueue(Top, TopPolicy, DAG->getTopRPTracker(), TCand);
2994 assert(TCand.SU == TopCand.SU &&
2995 "Last pick result should correspond to re-picking right now");
2996 }
2997#endif
2998 }
2999
3000 // Pick best from BotCand and TopCand.
3001 assert(BotCand.isValid());
3002 assert(TopCand.isValid());
3003 SchedCandidate Cand = BotCand;
3004 TopCand.Reason = NoCand;
3005 tryCandidate(Cand, TopCand, nullptr);
3006 if (TopCand.Reason != NoCand) {
3007 Cand.setBest(TopCand);
3008 DEBUG(traceCandidate(Cand));
3009 }
Andrew Trick22025772012-05-17 18:35:10 +00003010
Matthias Braun6ad3d052016-06-25 00:23:00 +00003011 IsTopNode = Cand.AtTop;
3012 tracePick(Cand);
3013 return Cand.SU;
Andrew Trick22025772012-05-17 18:35:10 +00003014}
3015
3016/// Pick the best node to balance the schedule. Implements MachineSchedStrategy.
Andrew Trick665d3ec2013-09-19 23:10:59 +00003017SUnit *GenericScheduler::pickNode(bool &IsTopNode) {
Andrew Trick7ee9de52012-05-10 21:06:16 +00003018 if (DAG->top() == DAG->bottom()) {
Andrew Trick61f1a272012-05-24 22:11:09 +00003019 assert(Top.Available.empty() && Top.Pending.empty() &&
3020 Bot.Available.empty() && Bot.Pending.empty() && "ReadyQ garbage");
Craig Topperc0196b12014-04-14 00:51:57 +00003021 return nullptr;
Andrew Trick7ee9de52012-05-10 21:06:16 +00003022 }
Andrew Trick7ee9de52012-05-10 21:06:16 +00003023 SUnit *SU;
Andrew Trick984d98b2012-10-08 18:53:53 +00003024 do {
Andrew Trick75e411c2013-09-06 17:32:34 +00003025 if (RegionPolicy.OnlyTopDown) {
Andrew Trick984d98b2012-10-08 18:53:53 +00003026 SU = Top.pickOnlyChoice();
3027 if (!SU) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00003028 CandPolicy NoPolicy;
Matthias Brauncc676c42016-06-25 02:03:36 +00003029 TopCand.reset(NoPolicy);
Matthias Braun6ad3d052016-06-25 00:23:00 +00003030 pickNodeFromQueue(Top, NoPolicy, DAG->getTopRPTracker(), TopCand);
Andrew Trick1ab16d92013-09-04 21:00:13 +00003031 assert(TopCand.Reason != NoCand && "failed to find a candidate");
Matthias Braun6ad3d052016-06-25 00:23:00 +00003032 tracePick(TopCand);
Andrew Trick984d98b2012-10-08 18:53:53 +00003033 SU = TopCand.SU;
3034 }
3035 IsTopNode = true;
Matthias Braunb550b762016-04-21 01:54:13 +00003036 } else if (RegionPolicy.OnlyBottomUp) {
Andrew Trick984d98b2012-10-08 18:53:53 +00003037 SU = Bot.pickOnlyChoice();
3038 if (!SU) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00003039 CandPolicy NoPolicy;
Matthias Brauncc676c42016-06-25 02:03:36 +00003040 BotCand.reset(NoPolicy);
Matthias Braun6ad3d052016-06-25 00:23:00 +00003041 pickNodeFromQueue(Bot, NoPolicy, DAG->getBotRPTracker(), BotCand);
Andrew Trick1ab16d92013-09-04 21:00:13 +00003042 assert(BotCand.Reason != NoCand && "failed to find a candidate");
Matthias Braun6ad3d052016-06-25 00:23:00 +00003043 tracePick(BotCand);
Andrew Trick984d98b2012-10-08 18:53:53 +00003044 SU = BotCand.SU;
3045 }
3046 IsTopNode = false;
Matthias Braunb550b762016-04-21 01:54:13 +00003047 } else {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00003048 SU = pickNodeBidirectional(IsTopNode);
Andrew Trick984d98b2012-10-08 18:53:53 +00003049 }
3050 } while (SU->isScheduled);
3051
Andrew Trick61f1a272012-05-24 22:11:09 +00003052 if (SU->isTopReady())
3053 Top.removeReady(SU);
3054 if (SU->isBottomReady())
3055 Bot.removeReady(SU);
Andrew Trick4e7f6a72012-05-25 02:02:39 +00003056
Andrew Trick1f0bb692013-04-13 06:07:49 +00003057 DEBUG(dbgs() << "Scheduling SU(" << SU->NodeNum << ") " << *SU->getInstr());
Andrew Trick7ee9de52012-05-10 21:06:16 +00003058 return SU;
3059}
3060
Andrew Trick665d3ec2013-09-19 23:10:59 +00003061void GenericScheduler::reschedulePhysRegCopies(SUnit *SU, bool isTop) {
Andrew Tricke833e1c2013-04-13 06:07:40 +00003062
3063 MachineBasicBlock::iterator InsertPos = SU->getInstr();
3064 if (!isTop)
3065 ++InsertPos;
3066 SmallVectorImpl<SDep> &Deps = isTop ? SU->Preds : SU->Succs;
3067
3068 // Find already scheduled copies with a single physreg dependence and move
3069 // them just above the scheduled instruction.
3070 for (SmallVectorImpl<SDep>::iterator I = Deps.begin(), E = Deps.end();
3071 I != E; ++I) {
3072 if (I->getKind() != SDep::Data || !TRI->isPhysicalRegister(I->getReg()))
3073 continue;
3074 SUnit *DepSU = I->getSUnit();
3075 if (isTop ? DepSU->Succs.size() > 1 : DepSU->Preds.size() > 1)
3076 continue;
3077 MachineInstr *Copy = DepSU->getInstr();
3078 if (!Copy->isCopy())
3079 continue;
3080 DEBUG(dbgs() << " Rescheduling physreg copy ";
3081 I->getSUnit()->dump(DAG));
3082 DAG->moveInstruction(Copy, InsertPos);
3083 }
3084}
3085
Andrew Trick61f1a272012-05-24 22:11:09 +00003086/// Update the scheduler's state after scheduling a node. This is the same node
Andrew Trickd14d7c22013-12-28 21:56:57 +00003087/// that was just returned by pickNode(). However, ScheduleDAGMILive needs to
3088/// update it's state based on the current cycle before MachineSchedStrategy
3089/// does.
Andrew Tricke833e1c2013-04-13 06:07:40 +00003090///
3091/// FIXME: Eventually, we may bundle physreg copies rather than rescheduling
3092/// them here. See comments in biasPhysRegCopy.
Andrew Trick665d3ec2013-09-19 23:10:59 +00003093void GenericScheduler::schedNode(SUnit *SU, bool IsTopNode) {
Andrew Trick45446062012-06-05 21:11:27 +00003094 if (IsTopNode) {
Andrew Trickfc127d12013-12-07 05:59:44 +00003095 SU->TopReadyCycle = std::max(SU->TopReadyCycle, Top.getCurrCycle());
Andrew Trickce27bb92012-06-29 03:23:22 +00003096 Top.bumpNode(SU);
Andrew Tricke833e1c2013-04-13 06:07:40 +00003097 if (SU->hasPhysRegUses)
3098 reschedulePhysRegCopies(SU, true);
Matthias Braunb550b762016-04-21 01:54:13 +00003099 } else {
Andrew Trickfc127d12013-12-07 05:59:44 +00003100 SU->BotReadyCycle = std::max(SU->BotReadyCycle, Bot.getCurrCycle());
Andrew Trickce27bb92012-06-29 03:23:22 +00003101 Bot.bumpNode(SU);
Andrew Tricke833e1c2013-04-13 06:07:40 +00003102 if (SU->hasPhysRegDefs)
3103 reschedulePhysRegCopies(SU, false);
Andrew Trick61f1a272012-05-24 22:11:09 +00003104 }
3105}
3106
Andrew Trick8823dec2012-03-14 04:00:41 +00003107/// Create the standard converging machine scheduler. This will be used as the
3108/// default scheduler if the target does not set a default.
Andrew Trickd14d7c22013-12-28 21:56:57 +00003109static ScheduleDAGInstrs *createGenericSchedLive(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003110 ScheduleDAGMILive *DAG = new ScheduleDAGMILive(C, make_unique<GenericScheduler>(C));
Andrew Tricka7714a02012-11-12 19:40:10 +00003111 // Register DAG post-processors.
Andrew Trick85a1d4c2013-04-24 15:54:43 +00003112 //
3113 // FIXME: extend the mutation API to allow earlier mutations to instantiate
3114 // data and pass it to later mutations. Have a single mutation that gathers
3115 // the interesting nodes in one pass.
David Blaikie422b93d2014-04-21 20:32:32 +00003116 DAG->addMutation(make_unique<CopyConstrain>(DAG->TII, DAG->TRI));
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00003117 if (EnableMemOpCluster) {
3118 if (DAG->TII->enableClusterLoads())
3119 DAG->addMutation(make_unique<LoadClusterMutation>(DAG->TII, DAG->TRI));
3120 if (DAG->TII->enableClusterStores())
3121 DAG->addMutation(make_unique<StoreClusterMutation>(DAG->TII, DAG->TRI));
3122 }
Andrew Trick263280242012-11-12 19:52:20 +00003123 if (EnableMacroFusion)
Matthias Braun2bd6dd82015-07-20 22:34:44 +00003124 DAG->addMutation(make_unique<MacroFusion>(*DAG->TII, *DAG->TRI));
Andrew Tricka7714a02012-11-12 19:40:10 +00003125 return DAG;
Andrew Tricke1c034f2012-01-17 06:55:03 +00003126}
Andrew Trickd14d7c22013-12-28 21:56:57 +00003127
Andrew Tricke1c034f2012-01-17 06:55:03 +00003128static MachineSchedRegistry
Andrew Trick665d3ec2013-09-19 23:10:59 +00003129GenericSchedRegistry("converge", "Standard converging scheduler.",
Andrew Trickd14d7c22013-12-28 21:56:57 +00003130 createGenericSchedLive);
3131
3132//===----------------------------------------------------------------------===//
3133// PostGenericScheduler - Generic PostRA implementation of MachineSchedStrategy.
3134//===----------------------------------------------------------------------===//
3135
Andrew Trick3ccf71d2014-06-04 07:06:18 +00003136void PostGenericScheduler::initialize(ScheduleDAGMI *Dag) {
3137 DAG = Dag;
3138 SchedModel = DAG->getSchedModel();
3139 TRI = DAG->TRI;
Andrew Trickd14d7c22013-12-28 21:56:57 +00003140
Andrew Trick3ccf71d2014-06-04 07:06:18 +00003141 Rem.init(DAG, SchedModel);
3142 Top.init(DAG, SchedModel, &Rem);
3143 BotRoots.clear();
Andrew Trickd14d7c22013-12-28 21:56:57 +00003144
Andrew Trick3ccf71d2014-06-04 07:06:18 +00003145 // Initialize the HazardRecognizers. If itineraries don't exist, are empty,
3146 // or are disabled, then these HazardRecs will be disabled.
3147 const InstrItineraryData *Itin = SchedModel->getInstrItineraries();
Andrew Trick3ccf71d2014-06-04 07:06:18 +00003148 if (!Top.HazardRec) {
3149 Top.HazardRec =
Eric Christopher99556d72014-10-14 06:56:25 +00003150 DAG->MF.getSubtarget().getInstrInfo()->CreateTargetMIHazardRecognizer(
Eric Christopherd9134482014-08-04 21:25:23 +00003151 Itin, DAG);
Andrew Trickd14d7c22013-12-28 21:56:57 +00003152 }
Andrew Trick3ccf71d2014-06-04 07:06:18 +00003153}
Andrew Trickd14d7c22013-12-28 21:56:57 +00003154
Andrew Trickd14d7c22013-12-28 21:56:57 +00003155
3156void PostGenericScheduler::registerRoots() {
3157 Rem.CriticalPath = DAG->ExitSU.getDepth();
3158
3159 // Some roots may not feed into ExitSU. Check all of them in case.
3160 for (SmallVectorImpl<SUnit*>::const_iterator
3161 I = BotRoots.begin(), E = BotRoots.end(); I != E; ++I) {
3162 if ((*I)->getDepth() > Rem.CriticalPath)
3163 Rem.CriticalPath = (*I)->getDepth();
3164 }
Gerolf Hoflehnerb5220dc2014-08-07 21:49:44 +00003165 DEBUG(dbgs() << "Critical Path: (PGS-RR) " << Rem.CriticalPath << '\n');
3166 if (DumpCriticalPathLength) {
3167 errs() << "Critical Path(PGS-RR ): " << Rem.CriticalPath << " \n";
3168 }
Andrew Trickd14d7c22013-12-28 21:56:57 +00003169}
3170
3171/// Apply a set of heursitics to a new candidate for PostRA scheduling.
3172///
3173/// \param Cand provides the policy and current best candidate.
3174/// \param TryCand refers to the next SUnit candidate, otherwise uninitialized.
3175void PostGenericScheduler::tryCandidate(SchedCandidate &Cand,
3176 SchedCandidate &TryCand) {
3177
3178 // Initialize the candidate if needed.
3179 if (!Cand.isValid()) {
3180 TryCand.Reason = NodeOrder;
3181 return;
3182 }
3183
3184 // Prioritize instructions that read unbuffered resources by stall cycles.
3185 if (tryLess(Top.getLatencyStallCycles(TryCand.SU),
3186 Top.getLatencyStallCycles(Cand.SU), TryCand, Cand, Stall))
3187 return;
3188
3189 // Avoid critical resource consumption and balance the schedule.
3190 if (tryLess(TryCand.ResDelta.CritResources, Cand.ResDelta.CritResources,
3191 TryCand, Cand, ResourceReduce))
3192 return;
3193 if (tryGreater(TryCand.ResDelta.DemandedResources,
3194 Cand.ResDelta.DemandedResources,
3195 TryCand, Cand, ResourceDemand))
3196 return;
3197
3198 // Avoid serializing long latency dependence chains.
3199 if (Cand.Policy.ReduceLatency && tryLatency(TryCand, Cand, Top)) {
3200 return;
3201 }
3202
3203 // Fall through to original instruction order.
3204 if (TryCand.SU->NodeNum < Cand.SU->NodeNum)
3205 TryCand.Reason = NodeOrder;
3206}
3207
3208void PostGenericScheduler::pickNodeFromQueue(SchedCandidate &Cand) {
3209 ReadyQueue &Q = Top.Available;
Andrew Trickd14d7c22013-12-28 21:56:57 +00003210 for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) {
3211 SchedCandidate TryCand(Cand.Policy);
3212 TryCand.SU = *I;
Matthias Braun6ad3d052016-06-25 00:23:00 +00003213 TryCand.AtTop = true;
Andrew Trickd14d7c22013-12-28 21:56:57 +00003214 TryCand.initResourceDelta(DAG, SchedModel);
3215 tryCandidate(Cand, TryCand);
3216 if (TryCand.Reason != NoCand) {
3217 Cand.setBest(TryCand);
3218 DEBUG(traceCandidate(Cand));
3219 }
3220 }
3221}
3222
3223/// Pick the next node to schedule.
3224SUnit *PostGenericScheduler::pickNode(bool &IsTopNode) {
3225 if (DAG->top() == DAG->bottom()) {
3226 assert(Top.Available.empty() && Top.Pending.empty() && "ReadyQ garbage");
Craig Topperc0196b12014-04-14 00:51:57 +00003227 return nullptr;
Andrew Trickd14d7c22013-12-28 21:56:57 +00003228 }
3229 SUnit *SU;
3230 do {
3231 SU = Top.pickOnlyChoice();
Matthias Braun49cb6e92016-05-27 22:14:26 +00003232 if (SU) {
3233 tracePick(Only1, true);
3234 } else {
Andrew Trickd14d7c22013-12-28 21:56:57 +00003235 CandPolicy NoPolicy;
3236 SchedCandidate TopCand(NoPolicy);
3237 // Set the top-down policy based on the state of the current top zone and
3238 // the instructions outside the zone, including the bottom zone.
Craig Topperc0196b12014-04-14 00:51:57 +00003239 setPolicy(TopCand.Policy, /*IsPostRA=*/true, Top, nullptr);
Andrew Trickd14d7c22013-12-28 21:56:57 +00003240 pickNodeFromQueue(TopCand);
3241 assert(TopCand.Reason != NoCand && "failed to find a candidate");
Matthias Braun6ad3d052016-06-25 00:23:00 +00003242 tracePick(TopCand);
Andrew Trickd14d7c22013-12-28 21:56:57 +00003243 SU = TopCand.SU;
3244 }
3245 } while (SU->isScheduled);
3246
3247 IsTopNode = true;
3248 Top.removeReady(SU);
3249
3250 DEBUG(dbgs() << "Scheduling SU(" << SU->NodeNum << ") " << *SU->getInstr());
3251 return SU;
3252}
3253
3254/// Called after ScheduleDAGMI has scheduled an instruction and updated
3255/// scheduled/remaining flags in the DAG nodes.
3256void PostGenericScheduler::schedNode(SUnit *SU, bool IsTopNode) {
3257 SU->TopReadyCycle = std::max(SU->TopReadyCycle, Top.getCurrCycle());
3258 Top.bumpNode(SU);
3259}
3260
3261/// Create a generic scheduler with no vreg liveness or DAG mutation passes.
3262static ScheduleDAGInstrs *createGenericSchedPostRA(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003263 return new ScheduleDAGMI(C, make_unique<PostGenericScheduler>(C), /*IsPostRA=*/true);
Andrew Trickd14d7c22013-12-28 21:56:57 +00003264}
Andrew Tricke1c034f2012-01-17 06:55:03 +00003265
3266//===----------------------------------------------------------------------===//
Andrew Trick90f711d2012-10-15 18:02:27 +00003267// ILP Scheduler. Currently for experimental analysis of heuristics.
3268//===----------------------------------------------------------------------===//
3269
3270namespace {
3271/// \brief Order nodes by the ILP metric.
3272struct ILPOrder {
Andrew Trick44f750a2013-01-25 04:01:04 +00003273 const SchedDFSResult *DFSResult;
3274 const BitVector *ScheduledTrees;
Andrew Trick90f711d2012-10-15 18:02:27 +00003275 bool MaximizeILP;
3276
Craig Topperc0196b12014-04-14 00:51:57 +00003277 ILPOrder(bool MaxILP)
3278 : DFSResult(nullptr), ScheduledTrees(nullptr), MaximizeILP(MaxILP) {}
Andrew Trick90f711d2012-10-15 18:02:27 +00003279
3280 /// \brief Apply a less-than relation on node priority.
Andrew Trick48d392e2012-11-28 05:13:28 +00003281 ///
3282 /// (Return true if A comes after B in the Q.)
Andrew Trick90f711d2012-10-15 18:02:27 +00003283 bool operator()(const SUnit *A, const SUnit *B) const {
Andrew Trick48d392e2012-11-28 05:13:28 +00003284 unsigned SchedTreeA = DFSResult->getSubtreeID(A);
3285 unsigned SchedTreeB = DFSResult->getSubtreeID(B);
3286 if (SchedTreeA != SchedTreeB) {
3287 // Unscheduled trees have lower priority.
3288 if (ScheduledTrees->test(SchedTreeA) != ScheduledTrees->test(SchedTreeB))
3289 return ScheduledTrees->test(SchedTreeB);
3290
3291 // Trees with shallower connections have have lower priority.
3292 if (DFSResult->getSubtreeLevel(SchedTreeA)
3293 != DFSResult->getSubtreeLevel(SchedTreeB)) {
3294 return DFSResult->getSubtreeLevel(SchedTreeA)
3295 < DFSResult->getSubtreeLevel(SchedTreeB);
3296 }
3297 }
Andrew Trick90f711d2012-10-15 18:02:27 +00003298 if (MaximizeILP)
Andrew Trick48d392e2012-11-28 05:13:28 +00003299 return DFSResult->getILP(A) < DFSResult->getILP(B);
Andrew Trick90f711d2012-10-15 18:02:27 +00003300 else
Andrew Trick48d392e2012-11-28 05:13:28 +00003301 return DFSResult->getILP(A) > DFSResult->getILP(B);
Andrew Trick90f711d2012-10-15 18:02:27 +00003302 }
3303};
3304
3305/// \brief Schedule based on the ILP metric.
3306class ILPScheduler : public MachineSchedStrategy {
Andrew Trickd7f890e2013-12-28 21:56:47 +00003307 ScheduleDAGMILive *DAG;
Andrew Trick90f711d2012-10-15 18:02:27 +00003308 ILPOrder Cmp;
3309
3310 std::vector<SUnit*> ReadyQ;
3311public:
Craig Topperc0196b12014-04-14 00:51:57 +00003312 ILPScheduler(bool MaximizeILP): DAG(nullptr), Cmp(MaximizeILP) {}
Andrew Trick90f711d2012-10-15 18:02:27 +00003313
Craig Topper4584cd52014-03-07 09:26:03 +00003314 void initialize(ScheduleDAGMI *dag) override {
Andrew Trickd7f890e2013-12-28 21:56:47 +00003315 assert(dag->hasVRegLiveness() && "ILPScheduler needs vreg liveness");
3316 DAG = static_cast<ScheduleDAGMILive*>(dag);
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00003317 DAG->computeDFSResult();
Andrew Trick44f750a2013-01-25 04:01:04 +00003318 Cmp.DFSResult = DAG->getDFSResult();
3319 Cmp.ScheduledTrees = &DAG->getScheduledTrees();
Andrew Trick90f711d2012-10-15 18:02:27 +00003320 ReadyQ.clear();
Andrew Trick90f711d2012-10-15 18:02:27 +00003321 }
3322
Craig Topper4584cd52014-03-07 09:26:03 +00003323 void registerRoots() override {
Benjamin Krameraa598b32012-11-29 14:36:26 +00003324 // Restore the heap in ReadyQ with the updated DFS results.
3325 std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
Andrew Trick90f711d2012-10-15 18:02:27 +00003326 }
3327
3328 /// Implement MachineSchedStrategy interface.
3329 /// -----------------------------------------
3330
Andrew Trick48d392e2012-11-28 05:13:28 +00003331 /// Callback to select the highest priority node from the ready Q.
Craig Topper4584cd52014-03-07 09:26:03 +00003332 SUnit *pickNode(bool &IsTopNode) override {
Craig Topperc0196b12014-04-14 00:51:57 +00003333 if (ReadyQ.empty()) return nullptr;
Matt Arsenault4ab769f2013-03-21 00:57:21 +00003334 std::pop_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
Andrew Trick90f711d2012-10-15 18:02:27 +00003335 SUnit *SU = ReadyQ.back();
3336 ReadyQ.pop_back();
3337 IsTopNode = false;
Andrew Trick1f0bb692013-04-13 06:07:49 +00003338 DEBUG(dbgs() << "Pick node " << "SU(" << SU->NodeNum << ") "
Andrew Trick44f750a2013-01-25 04:01:04 +00003339 << " ILP: " << DAG->getDFSResult()->getILP(SU)
3340 << " Tree: " << DAG->getDFSResult()->getSubtreeID(SU) << " @"
3341 << DAG->getDFSResult()->getSubtreeLevel(
Andrew Trick1f0bb692013-04-13 06:07:49 +00003342 DAG->getDFSResult()->getSubtreeID(SU)) << '\n'
3343 << "Scheduling " << *SU->getInstr());
Andrew Trick90f711d2012-10-15 18:02:27 +00003344 return SU;
3345 }
3346
Andrew Trick44f750a2013-01-25 04:01:04 +00003347 /// \brief Scheduler callback to notify that a new subtree is scheduled.
Craig Topper4584cd52014-03-07 09:26:03 +00003348 void scheduleTree(unsigned SubtreeID) override {
Andrew Trick44f750a2013-01-25 04:01:04 +00003349 std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
3350 }
3351
Andrew Trick48d392e2012-11-28 05:13:28 +00003352 /// Callback after a node is scheduled. Mark a newly scheduled tree, notify
3353 /// DFSResults, and resort the priority Q.
Craig Topper4584cd52014-03-07 09:26:03 +00003354 void schedNode(SUnit *SU, bool IsTopNode) override {
Andrew Trick48d392e2012-11-28 05:13:28 +00003355 assert(!IsTopNode && "SchedDFSResult needs bottom-up");
Andrew Trick48d392e2012-11-28 05:13:28 +00003356 }
Andrew Trick90f711d2012-10-15 18:02:27 +00003357
Craig Topper4584cd52014-03-07 09:26:03 +00003358 void releaseTopNode(SUnit *) override { /*only called for top roots*/ }
Andrew Trick90f711d2012-10-15 18:02:27 +00003359
Craig Topper4584cd52014-03-07 09:26:03 +00003360 void releaseBottomNode(SUnit *SU) override {
Andrew Trick90f711d2012-10-15 18:02:27 +00003361 ReadyQ.push_back(SU);
3362 std::push_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
3363 }
3364};
3365} // namespace
3366
3367static ScheduleDAGInstrs *createILPMaxScheduler(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003368 return new ScheduleDAGMILive(C, make_unique<ILPScheduler>(true));
Andrew Trick90f711d2012-10-15 18:02:27 +00003369}
3370static ScheduleDAGInstrs *createILPMinScheduler(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003371 return new ScheduleDAGMILive(C, make_unique<ILPScheduler>(false));
Andrew Trick90f711d2012-10-15 18:02:27 +00003372}
3373static MachineSchedRegistry ILPMaxRegistry(
3374 "ilpmax", "Schedule bottom-up for max ILP", createILPMaxScheduler);
3375static MachineSchedRegistry ILPMinRegistry(
3376 "ilpmin", "Schedule bottom-up for min ILP", createILPMinScheduler);
3377
3378//===----------------------------------------------------------------------===//
Andrew Trick63440872012-01-14 02:17:06 +00003379// Machine Instruction Shuffler for Correctness Testing
3380//===----------------------------------------------------------------------===//
3381
Andrew Tricke77e84e2012-01-13 06:30:30 +00003382#ifndef NDEBUG
3383namespace {
Andrew Trick8823dec2012-03-14 04:00:41 +00003384/// Apply a less-than relation on the node order, which corresponds to the
3385/// instruction order prior to scheduling. IsReverse implements greater-than.
3386template<bool IsReverse>
3387struct SUnitOrder {
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003388 bool operator()(SUnit *A, SUnit *B) const {
Andrew Trick8823dec2012-03-14 04:00:41 +00003389 if (IsReverse)
3390 return A->NodeNum > B->NodeNum;
3391 else
3392 return A->NodeNum < B->NodeNum;
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003393 }
3394};
3395
Andrew Tricke77e84e2012-01-13 06:30:30 +00003396/// Reorder instructions as much as possible.
Andrew Trick8823dec2012-03-14 04:00:41 +00003397class InstructionShuffler : public MachineSchedStrategy {
3398 bool IsAlternating;
3399 bool IsTopDown;
3400
3401 // Using a less-than relation (SUnitOrder<false>) for the TopQ priority
3402 // gives nodes with a higher number higher priority causing the latest
3403 // instructions to be scheduled first.
3404 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<false> >
3405 TopQ;
3406 // When scheduling bottom-up, use greater-than as the queue priority.
3407 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<true> >
3408 BottomQ;
Andrew Tricke77e84e2012-01-13 06:30:30 +00003409public:
Andrew Trick8823dec2012-03-14 04:00:41 +00003410 InstructionShuffler(bool alternate, bool topdown)
3411 : IsAlternating(alternate), IsTopDown(topdown) {}
Andrew Tricke77e84e2012-01-13 06:30:30 +00003412
Craig Topper9d74a5a2014-04-29 07:58:41 +00003413 void initialize(ScheduleDAGMI*) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003414 TopQ.clear();
3415 BottomQ.clear();
3416 }
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003417
Andrew Trick8823dec2012-03-14 04:00:41 +00003418 /// Implement MachineSchedStrategy interface.
3419 /// -----------------------------------------
3420
Craig Topper9d74a5a2014-04-29 07:58:41 +00003421 SUnit *pickNode(bool &IsTopNode) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003422 SUnit *SU;
3423 if (IsTopDown) {
3424 do {
Craig Topperc0196b12014-04-14 00:51:57 +00003425 if (TopQ.empty()) return nullptr;
Andrew Trick8823dec2012-03-14 04:00:41 +00003426 SU = TopQ.top();
3427 TopQ.pop();
3428 } while (SU->isScheduled);
3429 IsTopNode = true;
Matthias Braunb550b762016-04-21 01:54:13 +00003430 } else {
Andrew Trick8823dec2012-03-14 04:00:41 +00003431 do {
Craig Topperc0196b12014-04-14 00:51:57 +00003432 if (BottomQ.empty()) return nullptr;
Andrew Trick8823dec2012-03-14 04:00:41 +00003433 SU = BottomQ.top();
3434 BottomQ.pop();
3435 } while (SU->isScheduled);
3436 IsTopNode = false;
3437 }
3438 if (IsAlternating)
3439 IsTopDown = !IsTopDown;
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003440 return SU;
3441 }
3442
Craig Topper9d74a5a2014-04-29 07:58:41 +00003443 void schedNode(SUnit *SU, bool IsTopNode) override {}
Andrew Trick61f1a272012-05-24 22:11:09 +00003444
Craig Topper9d74a5a2014-04-29 07:58:41 +00003445 void releaseTopNode(SUnit *SU) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003446 TopQ.push(SU);
3447 }
Craig Topper9d74a5a2014-04-29 07:58:41 +00003448 void releaseBottomNode(SUnit *SU) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003449 BottomQ.push(SU);
Andrew Tricke77e84e2012-01-13 06:30:30 +00003450 }
3451};
3452} // namespace
3453
Andrew Trick02a80da2012-03-08 01:41:12 +00003454static ScheduleDAGInstrs *createInstructionShuffler(MachineSchedContext *C) {
Andrew Trick8823dec2012-03-14 04:00:41 +00003455 bool Alternate = !ForceTopDown && !ForceBottomUp;
3456 bool TopDown = !ForceBottomUp;
Benjamin Kramer05e7a842012-03-14 11:26:37 +00003457 assert((TopDown || !ForceTopDown) &&
Andrew Trick8823dec2012-03-14 04:00:41 +00003458 "-misched-topdown incompatible with -misched-bottomup");
David Blaikie422b93d2014-04-21 20:32:32 +00003459 return new ScheduleDAGMILive(C, make_unique<InstructionShuffler>(Alternate, TopDown));
Andrew Tricke77e84e2012-01-13 06:30:30 +00003460}
Andrew Trick8823dec2012-03-14 04:00:41 +00003461static MachineSchedRegistry ShufflerRegistry(
3462 "shuffle", "Shuffle machine instructions alternating directions",
3463 createInstructionShuffler);
Andrew Tricke77e84e2012-01-13 06:30:30 +00003464#endif // !NDEBUG
Andrew Trickea9fd952013-01-25 07:45:29 +00003465
3466//===----------------------------------------------------------------------===//
Andrew Trickd7f890e2013-12-28 21:56:47 +00003467// GraphWriter support for ScheduleDAGMILive.
Andrew Trickea9fd952013-01-25 07:45:29 +00003468//===----------------------------------------------------------------------===//
3469
3470#ifndef NDEBUG
3471namespace llvm {
3472
3473template<> struct GraphTraits<
3474 ScheduleDAGMI*> : public GraphTraits<ScheduleDAG*> {};
3475
3476template<>
3477struct DOTGraphTraits<ScheduleDAGMI*> : public DefaultDOTGraphTraits {
3478
3479 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
3480
3481 static std::string getGraphName(const ScheduleDAG *G) {
3482 return G->MF.getName();
3483 }
3484
3485 static bool renderGraphFromBottomUp() {
3486 return true;
3487 }
3488
3489 static bool isNodeHidden(const SUnit *Node) {
Matthias Braund78ee542015-09-17 21:09:59 +00003490 if (ViewMISchedCutoff == 0)
3491 return false;
3492 return (Node->Preds.size() > ViewMISchedCutoff
3493 || Node->Succs.size() > ViewMISchedCutoff);
Andrew Trickea9fd952013-01-25 07:45:29 +00003494 }
3495
Andrew Trickea9fd952013-01-25 07:45:29 +00003496 /// If you want to override the dot attributes printed for a particular
3497 /// edge, override this method.
3498 static std::string getEdgeAttributes(const SUnit *Node,
3499 SUnitIterator EI,
3500 const ScheduleDAG *Graph) {
3501 if (EI.isArtificialDep())
3502 return "color=cyan,style=dashed";
3503 if (EI.isCtrlDep())
3504 return "color=blue,style=dashed";
3505 return "";
3506 }
3507
3508 static std::string getNodeLabel(const SUnit *SU, const ScheduleDAG *G) {
Alp Tokere69170a2014-06-26 22:52:05 +00003509 std::string Str;
3510 raw_string_ostream SS(Str);
Andrew Trickd7f890e2013-12-28 21:56:47 +00003511 const ScheduleDAGMI *DAG = static_cast<const ScheduleDAGMI*>(G);
3512 const SchedDFSResult *DFS = DAG->hasVRegLiveness() ?
Craig Topperc0196b12014-04-14 00:51:57 +00003513 static_cast<const ScheduleDAGMILive*>(G)->getDFSResult() : nullptr;
Andrew Trick7609b7d2013-09-06 17:32:42 +00003514 SS << "SU:" << SU->NodeNum;
3515 if (DFS)
3516 SS << " I:" << DFS->getNumInstrs(SU);
Andrew Trickea9fd952013-01-25 07:45:29 +00003517 return SS.str();
3518 }
3519 static std::string getNodeDescription(const SUnit *SU, const ScheduleDAG *G) {
3520 return G->getGraphNodeLabel(SU);
3521 }
3522
Andrew Trickd7f890e2013-12-28 21:56:47 +00003523 static std::string getNodeAttributes(const SUnit *N, const ScheduleDAG *G) {
Andrew Trickea9fd952013-01-25 07:45:29 +00003524 std::string Str("shape=Mrecord");
Andrew Trickd7f890e2013-12-28 21:56:47 +00003525 const ScheduleDAGMI *DAG = static_cast<const ScheduleDAGMI*>(G);
3526 const SchedDFSResult *DFS = DAG->hasVRegLiveness() ?
Craig Topperc0196b12014-04-14 00:51:57 +00003527 static_cast<const ScheduleDAGMILive*>(G)->getDFSResult() : nullptr;
Andrew Trickea9fd952013-01-25 07:45:29 +00003528 if (DFS) {
3529 Str += ",style=filled,fillcolor=\"#";
3530 Str += DOT::getColorString(DFS->getSubtreeID(N));
3531 Str += '"';
3532 }
3533 return Str;
3534 }
3535};
3536} // namespace llvm
3537#endif // NDEBUG
3538
3539/// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
3540/// rendered using 'dot'.
3541///
3542void ScheduleDAGMI::viewGraph(const Twine &Name, const Twine &Title) {
3543#ifndef NDEBUG
3544 ViewGraph(this, Name, false, Title);
3545#else
3546 errs() << "ScheduleDAGMI::viewGraph is only available in debug builds on "
3547 << "systems with Graphviz or gv!\n";
3548#endif // NDEBUG
3549}
3550
3551/// Out-of-line implementation with no arguments is handy for gdb.
3552void ScheduleDAGMI::viewGraph() {
3553 viewGraph(getDAGName(), "Scheduling-Units Graph for " + getDAGName());
3554}