blob: afef8ebb7739ec04fee01be2f7d591f054e02649 [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) {
Duncan P. N. Exon Smithdcbce9c2016-08-16 23:34:07 +0000254 return priorNonDebug(MachineBasicBlock::const_iterator(I), Beg)
255 .getNonConstIterator();
Andrew Trick2bc74c22013-08-30 04:36:57 +0000256}
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) {
Duncan P. N. Exon Smithdcbce9c2016-08-16 23:34:07 +0000274 return nextIfDebug(MachineBasicBlock::const_iterator(I), End)
275 .getNonConstIterator();
Andrew Trick2c4f8b72013-08-31 05:17:58 +0000276}
277
Andrew Trickdc4c1ad2013-09-24 17:11:19 +0000278/// Instantiate a ScheduleDAGInstrs that will be owned by the caller.
Andrew Trick978674b2013-09-20 05:14:41 +0000279ScheduleDAGInstrs *MachineScheduler::createMachineScheduler() {
280 // Select the scheduler, or set the default.
281 MachineSchedRegistry::ScheduleDAGCtor Ctor = MachineSchedOpt;
282 if (Ctor != useDefaultMachineSched)
283 return Ctor(this);
284
285 // Get the default scheduler set by the target for this function.
286 ScheduleDAGInstrs *Scheduler = PassConfig->createMachineScheduler(this);
287 if (Scheduler)
288 return Scheduler;
289
290 // Default to GenericScheduler.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000291 return createGenericSchedLive(this);
Andrew Trick978674b2013-09-20 05:14:41 +0000292}
293
Andrew Trick17080b92013-12-28 21:56:51 +0000294/// Instantiate a ScheduleDAGInstrs for PostRA scheduling that will be owned by
295/// the caller. We don't have a command line option to override the postRA
296/// scheduler. The Target must configure it.
297ScheduleDAGInstrs *PostMachineScheduler::createPostMachineScheduler() {
298 // Get the postRA scheduler set by the target for this function.
299 ScheduleDAGInstrs *Scheduler = PassConfig->createPostMachineScheduler(this);
300 if (Scheduler)
301 return Scheduler;
302
303 // Default to GenericScheduler.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000304 return createGenericSchedPostRA(this);
Andrew Trick17080b92013-12-28 21:56:51 +0000305}
306
Andrew Trick72515be2012-03-14 04:00:38 +0000307/// Top-level MachineScheduler pass driver.
308///
309/// Visit blocks in function order. Divide each block into scheduling regions
Andrew Trick8823dec2012-03-14 04:00:41 +0000310/// and visit them bottom-up. Visiting regions bottom-up is not required, but is
311/// consistent with the DAG builder, which traverses the interior of the
312/// scheduling regions bottom-up.
Andrew Trick72515be2012-03-14 04:00:38 +0000313///
314/// This design avoids exposing scheduling boundaries to the DAG builder,
Andrew Trick8823dec2012-03-14 04:00:41 +0000315/// simplifying the DAG builder's support for "special" target instructions.
316/// At the same time the design allows target schedulers to operate across
Andrew Trick72515be2012-03-14 04:00:38 +0000317/// scheduling boundaries, for example to bundle the boudary instructions
318/// without reordering them. This creates complexity, because the target
319/// scheduler must update the RegionBegin and RegionEnd positions cached by
320/// ScheduleDAGInstrs whenever adding or removing instructions. A much simpler
321/// design would be to split blocks at scheduling boundaries, but LLVM has a
322/// general bias against block splitting purely for implementation simplicity.
Andrew Tricke1c034f2012-01-17 06:55:03 +0000323bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) {
Andrew Kayloraa641a52016-04-22 22:06:11 +0000324 if (skipFunction(*mf.getFunction()))
Chad Rosier6338d7c2016-01-20 22:38:25 +0000325 return false;
326
Eric Christopher5f141b02015-03-11 22:56:10 +0000327 if (EnableMachineSched.getNumOccurrences()) {
328 if (!EnableMachineSched)
329 return false;
330 } else if (!mf.getSubtarget().enableMachineScheduler())
331 return false;
332
Matthias Braundc7580a2015-10-29 03:57:28 +0000333 DEBUG(dbgs() << "Before MISched:\n"; mf.print(dbgs()));
Andrew Trickc5d70082012-05-10 21:06:21 +0000334
Andrew Tricke77e84e2012-01-13 06:30:30 +0000335 // Initialize the context of the pass.
336 MF = &mf;
337 MLI = &getAnalysis<MachineLoopInfo>();
338 MDT = &getAnalysis<MachineDominatorTree>();
Andrew Trick45300682012-03-09 00:52:20 +0000339 PassConfig = &getAnalysis<TargetPassConfig>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000340 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
Andrew Trick02a80da2012-03-08 01:41:12 +0000341
Lang Hamesad33d5a2012-01-27 22:36:19 +0000342 LIS = &getAnalysis<LiveIntervals>();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000343
Andrew Trick48f2a722013-03-08 05:40:34 +0000344 if (VerifyScheduling) {
Andrew Trick97064962013-07-25 07:26:26 +0000345 DEBUG(LIS->dump());
Andrew Trick48f2a722013-03-08 05:40:34 +0000346 MF->verify(this, "Before machine scheduling.");
347 }
Andrew Trick4d4b5462012-04-24 20:36:19 +0000348 RegClassInfo->runOnMachineFunction(*MF);
Andrew Trick88639922012-04-24 17:56:43 +0000349
Andrew Trick978674b2013-09-20 05:14:41 +0000350 // Instantiate the selected scheduler for this target, function, and
351 // optimization level.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000352 std::unique_ptr<ScheduleDAGInstrs> Scheduler(createMachineScheduler());
Matthias Braun93563e72015-11-03 01:53:29 +0000353 scheduleRegions(*Scheduler, false);
Andrew Trickd7f890e2013-12-28 21:56:47 +0000354
355 DEBUG(LIS->dump());
356 if (VerifyScheduling)
357 MF->verify(this, "After machine scheduling.");
358 return true;
359}
360
Andrew Trick17080b92013-12-28 21:56:51 +0000361bool PostMachineScheduler::runOnMachineFunction(MachineFunction &mf) {
Andrew Kayloraa641a52016-04-22 22:06:11 +0000362 if (skipFunction(*mf.getFunction()))
Paul Robinson7c99ec52014-03-31 17:43:35 +0000363 return false;
364
Chad Rosier816a1ab2016-01-20 23:08:32 +0000365 if (EnablePostRAMachineSched.getNumOccurrences()) {
366 if (!EnablePostRAMachineSched)
367 return false;
368 } else if (!mf.getSubtarget().enablePostRAScheduler()) {
Andrew Trick8d2ee372014-06-04 07:06:27 +0000369 DEBUG(dbgs() << "Subtarget disables post-MI-sched.\n");
370 return false;
371 }
Andrew Trick17080b92013-12-28 21:56:51 +0000372 DEBUG(dbgs() << "Before post-MI-sched:\n"; mf.print(dbgs()));
373
374 // Initialize the context of the pass.
375 MF = &mf;
376 PassConfig = &getAnalysis<TargetPassConfig>();
377
378 if (VerifyScheduling)
379 MF->verify(this, "Before post machine scheduling.");
380
381 // Instantiate the selected scheduler for this target, function, and
382 // optimization level.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000383 std::unique_ptr<ScheduleDAGInstrs> Scheduler(createPostMachineScheduler());
Matthias Braun93563e72015-11-03 01:53:29 +0000384 scheduleRegions(*Scheduler, true);
Andrew Trick17080b92013-12-28 21:56:51 +0000385
386 if (VerifyScheduling)
387 MF->verify(this, "After post machine scheduling.");
388 return true;
389}
390
Andrew Trickd14d7c22013-12-28 21:56:57 +0000391/// Return true of the given instruction should not be included in a scheduling
392/// region.
393///
394/// MachineScheduler does not currently support scheduling across calls. To
395/// handle calls, the DAG builder needs to be modified to create register
396/// anti/output dependencies on the registers clobbered by the call's regmask
397/// operand. In PreRA scheduling, the stack pointer adjustment already prevents
398/// scheduling across calls. In PostRA scheduling, we need the isCall to enforce
399/// the boundary, but there would be no benefit to postRA scheduling across
400/// calls this late anyway.
401static bool isSchedBoundary(MachineBasicBlock::iterator MI,
402 MachineBasicBlock *MBB,
403 MachineFunction *MF,
Matthias Braun93563e72015-11-03 01:53:29 +0000404 const TargetInstrInfo *TII) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000405 return MI->isCall() || TII->isSchedulingBoundary(*MI, MBB, *MF);
Andrew Trickd14d7c22013-12-28 21:56:57 +0000406}
407
Andrew Trickd7f890e2013-12-28 21:56:47 +0000408/// Main driver for both MachineScheduler and PostMachineScheduler.
Matthias Braun93563e72015-11-03 01:53:29 +0000409void MachineSchedulerBase::scheduleRegions(ScheduleDAGInstrs &Scheduler,
410 bool FixKillFlags) {
Eric Christopherfc6de422014-08-05 02:39:49 +0000411 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000412
413 // Visit all machine basic blocks.
Andrew Trick88639922012-04-24 17:56:43 +0000414 //
415 // TODO: Visit blocks in global postorder or postorder within the bottom-up
416 // loop tree. Then we can optionally compute global RegPressure.
Andrew Tricke77e84e2012-01-13 06:30:30 +0000417 for (MachineFunction::iterator MBB = MF->begin(), MBBEnd = MF->end();
418 MBB != MBBEnd; ++MBB) {
419
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000420 Scheduler.startBlock(&*MBB);
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000421
Andrew Trick33e05d72013-12-28 21:57:02 +0000422#ifndef NDEBUG
423 if (SchedOnlyFunc.getNumOccurrences() && SchedOnlyFunc != MF->getName())
424 continue;
425 if (SchedOnlyBlock.getNumOccurrences()
426 && (int)SchedOnlyBlock != MBB->getNumber())
427 continue;
428#endif
429
Andrew Trick7e120f42012-01-14 02:17:09 +0000430 // Break the block into scheduling regions [I, RegionEnd), and schedule each
Sylvestre Ledru35521e22012-07-23 08:51:15 +0000431 // region as soon as it is discovered. RegionEnd points the scheduling
Andrew Trickaf1bee72012-03-09 22:34:56 +0000432 // boundary at the bottom of the region. The DAG does not include RegionEnd,
433 // but the region does (i.e. the next RegionEnd is above the previous
434 // RegionBegin). If the current block has no terminator then RegionEnd ==
435 // MBB->end() for the bottom region.
436 //
437 // The Scheduler may insert instructions during either schedule() or
438 // exitRegion(), even for empty regions. So the local iterators 'I' and
439 // 'RegionEnd' are invalid across these calls.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000440 //
441 // MBB::size() uses instr_iterator to count. Here we need a bundle to count
442 // as a single instruction.
Andrew Tricka21daf72012-03-09 03:46:39 +0000443 for(MachineBasicBlock::iterator RegionEnd = MBB->end();
Andrew Trickd7f890e2013-12-28 21:56:47 +0000444 RegionEnd != MBB->begin(); RegionEnd = Scheduler.begin()) {
Andrew Trick88639922012-04-24 17:56:43 +0000445
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000446 // Avoid decrementing RegionEnd for blocks with no terminator.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000447 if (RegionEnd != MBB->end() ||
Matthias Braun93563e72015-11-03 01:53:29 +0000448 isSchedBoundary(&*std::prev(RegionEnd), &*MBB, MF, TII)) {
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000449 --RegionEnd;
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000450 }
451
Andrew Trick7e120f42012-01-14 02:17:09 +0000452 // The next region starts above the previous region. Look backward in the
453 // instruction stream until we find the nearest boundary.
Andrew Tricka53e1012013-08-23 17:48:33 +0000454 unsigned NumRegionInstrs = 0;
Andrew Trick7e120f42012-01-14 02:17:09 +0000455 MachineBasicBlock::iterator I = RegionEnd;
Matthias Braun858d1df2016-05-20 19:46:13 +0000456 for (;I != MBB->begin(); --I) {
Duncan P. N. Exon Smith38eea4a2016-08-11 20:03:09 +0000457 MachineInstr &MI = *std::prev(I);
458 if (isSchedBoundary(&MI, &*MBB, MF, TII))
Andrew Trick7e120f42012-01-14 02:17:09 +0000459 break;
Duncan P. N. Exon Smith38eea4a2016-08-11 20:03:09 +0000460 if (!MI.isDebugValue())
Andrea Di Biagiod65fd9f2014-12-12 15:09:58 +0000461 ++NumRegionInstrs;
Andrew Trick7e120f42012-01-14 02:17:09 +0000462 }
Andrew Trick60cf03e2012-03-07 05:21:52 +0000463 // Notify the scheduler of the region, even if we may skip scheduling
464 // it. Perhaps it still needs to be bundled.
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000465 Scheduler.enterRegion(&*MBB, I, RegionEnd, NumRegionInstrs);
Andrew Trick60cf03e2012-03-07 05:21:52 +0000466
467 // Skip empty scheduling regions (0 or 1 schedulable instructions).
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000468 if (I == RegionEnd || I == std::prev(RegionEnd)) {
Andrew Trick60cf03e2012-03-07 05:21:52 +0000469 // Close the current region. Bundle the terminator if needed.
Andrew Trickaf1bee72012-03-09 22:34:56 +0000470 // This invalidates 'RegionEnd' and 'I'.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000471 Scheduler.exitRegion();
Andrew Trick7ccdc5c2012-01-17 06:55:07 +0000472 continue;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000473 }
Matthias Braun93563e72015-11-03 01:53:29 +0000474 DEBUG(dbgs() << "********** MI Scheduling **********\n");
Craig Toppera538d832012-08-22 06:07:19 +0000475 DEBUG(dbgs() << MF->getName()
Andrew Trick54b2ce32013-01-25 07:45:31 +0000476 << ":BB#" << MBB->getNumber() << " " << MBB->getName()
477 << "\n From: " << *I << " To: ";
Andrew Tricke57583a2012-02-08 02:17:21 +0000478 if (RegionEnd != MBB->end()) dbgs() << *RegionEnd;
479 else dbgs() << "End";
Matthias Braun858d1df2016-05-20 19:46:13 +0000480 dbgs() << " RegionInstrs: " << NumRegionInstrs << '\n');
Gerolf Hoflehnerb5220dc2014-08-07 21:49:44 +0000481 if (DumpCriticalPathLength) {
482 errs() << MF->getName();
483 errs() << ":BB# " << MBB->getNumber();
484 errs() << " " << MBB->getName() << " \n";
485 }
Andrew Trick7ccdc5c2012-01-17 06:55:07 +0000486
Andrew Trick1c0ec452012-03-09 03:46:42 +0000487 // Schedule a region: possibly reorder instructions.
Andrew Trickaf1bee72012-03-09 22:34:56 +0000488 // This invalidates 'RegionEnd' and 'I'.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000489 Scheduler.schedule();
Andrew Trick1c0ec452012-03-09 03:46:42 +0000490
491 // Close the current region.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000492 Scheduler.exitRegion();
Andrew Trick60cf03e2012-03-07 05:21:52 +0000493
494 // Scheduling has invalidated the current iterator 'I'. Ask the
495 // scheduler for the top of it's scheduled region.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000496 RegionEnd = Scheduler.begin();
Andrew Trick7e120f42012-01-14 02:17:09 +0000497 }
Andrew Trickd7f890e2013-12-28 21:56:47 +0000498 Scheduler.finishBlock();
Matthias Braun93563e72015-11-03 01:53:29 +0000499 // FIXME: Ideally, no further passes should rely on kill flags. However,
500 // thumb2 size reduction is currently an exception, so the PostMIScheduler
501 // needs to do this.
502 if (FixKillFlags)
503 Scheduler.fixupKills(&*MBB);
Andrew Tricke77e84e2012-01-13 06:30:30 +0000504 }
Andrew Trickd7f890e2013-12-28 21:56:47 +0000505 Scheduler.finalizeSchedule();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000506}
507
Andrew Trickd7f890e2013-12-28 21:56:47 +0000508void MachineSchedulerBase::print(raw_ostream &O, const Module* m) const {
Andrew Tricke77e84e2012-01-13 06:30:30 +0000509 // unimplemented
510}
511
Alp Tokerd8d510a2014-07-01 21:19:13 +0000512LLVM_DUMP_METHOD
Andrew Trick7a8e1002012-09-11 00:39:15 +0000513void ReadyQueue::dump() {
James Y Knighte72b0db2015-09-18 18:52:20 +0000514 dbgs() << "Queue " << Name << ": ";
Andrew Trick7a8e1002012-09-11 00:39:15 +0000515 for (unsigned i = 0, e = Queue.size(); i < e; ++i)
516 dbgs() << Queue[i]->NodeNum << " ";
517 dbgs() << "\n";
518}
Andrew Trick8823dec2012-03-14 04:00:41 +0000519
520//===----------------------------------------------------------------------===//
Andrew Trickd7f890e2013-12-28 21:56:47 +0000521// ScheduleDAGMI - Basic machine instruction scheduling. This is
522// independent of PreRA/PostRA scheduling and involves no extra book-keeping for
523// virtual registers.
524// ===----------------------------------------------------------------------===/
Andrew Trick8823dec2012-03-14 04:00:41 +0000525
David Blaikie422b93d2014-04-21 20:32:32 +0000526// Provide a vtable anchor.
Andrew Trick44f750a2013-01-25 04:01:04 +0000527ScheduleDAGMI::~ScheduleDAGMI() {
Andrew Trick44f750a2013-01-25 04:01:04 +0000528}
529
Andrew Trick85a1d4c2013-04-24 15:54:43 +0000530bool ScheduleDAGMI::canAddEdge(SUnit *SuccSU, SUnit *PredSU) {
531 return SuccSU == &ExitSU || !Topo.IsReachable(PredSU, SuccSU);
532}
533
Andrew Tricka7714a02012-11-12 19:40:10 +0000534bool ScheduleDAGMI::addEdge(SUnit *SuccSU, const SDep &PredDep) {
Andrew Trick263280242012-11-12 19:52:20 +0000535 if (SuccSU != &ExitSU) {
536 // Do not use WillCreateCycle, it assumes SD scheduling.
537 // If Pred is reachable from Succ, then the edge creates a cycle.
538 if (Topo.IsReachable(PredDep.getSUnit(), SuccSU))
539 return false;
540 Topo.AddPred(SuccSU, PredDep.getSUnit());
541 }
Andrew Tricka7714a02012-11-12 19:40:10 +0000542 SuccSU->addPred(PredDep, /*Required=*/!PredDep.isArtificial());
543 // Return true regardless of whether a new edge needed to be inserted.
544 return true;
545}
546
Andrew Trick02a80da2012-03-08 01:41:12 +0000547/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. When
548/// NumPredsLeft reaches zero, release the successor node.
Andrew Trick61f1a272012-05-24 22:11:09 +0000549///
550/// FIXME: Adjust SuccSU height based on MinLatency.
Andrew Trick8823dec2012-03-14 04:00:41 +0000551void ScheduleDAGMI::releaseSucc(SUnit *SU, SDep *SuccEdge) {
Andrew Trick02a80da2012-03-08 01:41:12 +0000552 SUnit *SuccSU = SuccEdge->getSUnit();
553
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000554 if (SuccEdge->isWeak()) {
555 --SuccSU->WeakPredsLeft;
Andrew Tricka7714a02012-11-12 19:40:10 +0000556 if (SuccEdge->isCluster())
557 NextClusterSucc = SuccSU;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000558 return;
559 }
Andrew Trick02a80da2012-03-08 01:41:12 +0000560#ifndef NDEBUG
561 if (SuccSU->NumPredsLeft == 0) {
562 dbgs() << "*** Scheduling failed! ***\n";
563 SuccSU->dump(this);
564 dbgs() << " has been released too many times!\n";
Craig Topperc0196b12014-04-14 00:51:57 +0000565 llvm_unreachable(nullptr);
Andrew Trick02a80da2012-03-08 01:41:12 +0000566 }
567#endif
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000568 // SU->TopReadyCycle was set to CurrCycle when it was scheduled. However,
569 // CurrCycle may have advanced since then.
570 if (SuccSU->TopReadyCycle < SU->TopReadyCycle + SuccEdge->getLatency())
571 SuccSU->TopReadyCycle = SU->TopReadyCycle + SuccEdge->getLatency();
572
Andrew Trick02a80da2012-03-08 01:41:12 +0000573 --SuccSU->NumPredsLeft;
574 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
Andrew Trick8823dec2012-03-14 04:00:41 +0000575 SchedImpl->releaseTopNode(SuccSU);
Andrew Trick02a80da2012-03-08 01:41:12 +0000576}
577
578/// releaseSuccessors - Call releaseSucc on each of SU's successors.
Andrew Trick8823dec2012-03-14 04:00:41 +0000579void ScheduleDAGMI::releaseSuccessors(SUnit *SU) {
Andrew Trick02a80da2012-03-08 01:41:12 +0000580 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
581 I != E; ++I) {
582 releaseSucc(SU, &*I);
583 }
584}
585
Andrew Trick8823dec2012-03-14 04:00:41 +0000586/// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. When
587/// NumSuccsLeft reaches zero, release the predecessor node.
Andrew Trick61f1a272012-05-24 22:11:09 +0000588///
589/// FIXME: Adjust PredSU height based on MinLatency.
Andrew Trick8823dec2012-03-14 04:00:41 +0000590void ScheduleDAGMI::releasePred(SUnit *SU, SDep *PredEdge) {
591 SUnit *PredSU = PredEdge->getSUnit();
592
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000593 if (PredEdge->isWeak()) {
594 --PredSU->WeakSuccsLeft;
Andrew Tricka7714a02012-11-12 19:40:10 +0000595 if (PredEdge->isCluster())
596 NextClusterPred = PredSU;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000597 return;
598 }
Andrew Trick8823dec2012-03-14 04:00:41 +0000599#ifndef NDEBUG
600 if (PredSU->NumSuccsLeft == 0) {
601 dbgs() << "*** Scheduling failed! ***\n";
602 PredSU->dump(this);
603 dbgs() << " has been released too many times!\n";
Craig Topperc0196b12014-04-14 00:51:57 +0000604 llvm_unreachable(nullptr);
Andrew Trick8823dec2012-03-14 04:00:41 +0000605 }
606#endif
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000607 // SU->BotReadyCycle was set to CurrCycle when it was scheduled. However,
608 // CurrCycle may have advanced since then.
609 if (PredSU->BotReadyCycle < SU->BotReadyCycle + PredEdge->getLatency())
610 PredSU->BotReadyCycle = SU->BotReadyCycle + PredEdge->getLatency();
611
Andrew Trick8823dec2012-03-14 04:00:41 +0000612 --PredSU->NumSuccsLeft;
613 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU)
614 SchedImpl->releaseBottomNode(PredSU);
615}
616
617/// releasePredecessors - Call releasePred on each of SU's predecessors.
618void ScheduleDAGMI::releasePredecessors(SUnit *SU) {
619 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
620 I != E; ++I) {
621 releasePred(SU, &*I);
622 }
623}
624
Andrew Trickd7f890e2013-12-28 21:56:47 +0000625/// enterRegion - Called back from MachineScheduler::runOnMachineFunction after
626/// crossing a scheduling boundary. [begin, end) includes all instructions in
627/// the region, including the boundary itself and single-instruction regions
628/// that don't get scheduled.
629void ScheduleDAGMI::enterRegion(MachineBasicBlock *bb,
630 MachineBasicBlock::iterator begin,
631 MachineBasicBlock::iterator end,
632 unsigned regioninstrs)
633{
634 ScheduleDAGInstrs::enterRegion(bb, begin, end, regioninstrs);
635
636 SchedImpl->initPolicy(begin, end, regioninstrs);
637}
638
Andrew Tricke833e1c2013-04-13 06:07:40 +0000639/// This is normally called from the main scheduler loop but may also be invoked
640/// by the scheduling strategy to perform additional code motion.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000641void ScheduleDAGMI::moveInstruction(
642 MachineInstr *MI, MachineBasicBlock::iterator InsertPos) {
Andrew Trick463b2f12012-05-17 18:35:03 +0000643 // Advance RegionBegin if the first instruction moves down.
Andrew Trick54f7def2012-03-21 04:12:10 +0000644 if (&*RegionBegin == MI)
Andrew Trick463b2f12012-05-17 18:35:03 +0000645 ++RegionBegin;
646
647 // Update the instruction stream.
Andrew Trick8823dec2012-03-14 04:00:41 +0000648 BB->splice(InsertPos, BB, MI);
Andrew Trick463b2f12012-05-17 18:35:03 +0000649
650 // Update LiveIntervals
Andrew Trickd7f890e2013-12-28 21:56:47 +0000651 if (LIS)
Duncan P. N. Exon Smithbe8f8c42016-02-27 20:14:29 +0000652 LIS->handleMove(*MI, /*UpdateFlags=*/true);
Andrew Trick463b2f12012-05-17 18:35:03 +0000653
654 // Recede RegionBegin if an instruction moves above the first.
Andrew Trick8823dec2012-03-14 04:00:41 +0000655 if (RegionBegin == InsertPos)
656 RegionBegin = MI;
657}
658
Andrew Trickde670c02012-03-21 04:12:07 +0000659bool ScheduleDAGMI::checkSchedLimit() {
660#ifndef NDEBUG
661 if (NumInstrsScheduled == MISchedCutoff && MISchedCutoff != ~0U) {
662 CurrentTop = CurrentBottom;
663 return false;
664 }
665 ++NumInstrsScheduled;
666#endif
667 return true;
668}
669
Andrew Trickd7f890e2013-12-28 21:56:47 +0000670/// Per-region scheduling driver, called back from
671/// MachineScheduler::runOnMachineFunction. This is a simplified driver that
672/// does not consider liveness or register pressure. It is useful for PostRA
673/// scheduling and potentially other custom schedulers.
674void ScheduleDAGMI::schedule() {
James Y Knighte72b0db2015-09-18 18:52:20 +0000675 DEBUG(dbgs() << "ScheduleDAGMI::schedule starting\n");
676 DEBUG(SchedImpl->dumpPolicy());
677
Andrew Trickd7f890e2013-12-28 21:56:47 +0000678 // Build the DAG.
679 buildSchedGraph(AA);
680
681 Topo.InitDAGTopologicalSorting();
682
683 postprocessDAG();
684
685 SmallVector<SUnit*, 8> TopRoots, BotRoots;
686 findRootsAndBiasEdges(TopRoots, BotRoots);
687
688 // Initialize the strategy before modifying the DAG.
689 // This may initialize a DFSResult to be used for queue priority.
690 SchedImpl->initialize(this);
691
Matthias Braun69f1d122016-11-11 22:37:28 +0000692 DEBUG(
693 if (EntrySU.getInstr() != nullptr)
694 EntrySU.dumpAll(this);
695 for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
696 SUnits[su].dumpAll(this);
697 if (ExitSU.getInstr() != nullptr)
698 ExitSU.dumpAll(this);
699 );
Andrew Trickd7f890e2013-12-28 21:56:47 +0000700 if (ViewMISchedDAGs) viewGraph();
701
702 // Initialize ready queues now that the DAG and priority data are finalized.
703 initQueues(TopRoots, BotRoots);
704
705 bool IsTopNode = false;
James Y Knighte72b0db2015-09-18 18:52:20 +0000706 while (true) {
707 DEBUG(dbgs() << "** ScheduleDAGMI::schedule picking next node\n");
708 SUnit *SU = SchedImpl->pickNode(IsTopNode);
709 if (!SU) break;
710
Andrew Trickd7f890e2013-12-28 21:56:47 +0000711 assert(!SU->isScheduled && "Node already scheduled");
712 if (!checkSchedLimit())
713 break;
714
715 MachineInstr *MI = SU->getInstr();
716 if (IsTopNode) {
717 assert(SU->isTopReady() && "node still has unscheduled dependencies");
718 if (&*CurrentTop == MI)
719 CurrentTop = nextIfDebug(++CurrentTop, CurrentBottom);
720 else
721 moveInstruction(MI, CurrentTop);
Matthias Braunb550b762016-04-21 01:54:13 +0000722 } else {
Andrew Trickd7f890e2013-12-28 21:56:47 +0000723 assert(SU->isBottomReady() && "node still has unscheduled dependencies");
724 MachineBasicBlock::iterator priorII =
725 priorNonDebug(CurrentBottom, CurrentTop);
726 if (&*priorII == MI)
727 CurrentBottom = priorII;
728 else {
729 if (&*CurrentTop == MI)
730 CurrentTop = nextIfDebug(++CurrentTop, priorII);
731 moveInstruction(MI, CurrentBottom);
732 CurrentBottom = MI;
733 }
734 }
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000735 // Notify the scheduling strategy before updating the DAG.
Andrew Trick491e34a2014-06-12 22:36:28 +0000736 // This sets the scheduled node's ReadyCycle to CurrCycle. When updateQueues
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000737 // runs, it can then use the accurate ReadyCycle time to determine whether
738 // newly released nodes can move to the readyQ.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000739 SchedImpl->schedNode(SU, IsTopNode);
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000740
741 updateQueues(SU, IsTopNode);
Andrew Trickd7f890e2013-12-28 21:56:47 +0000742 }
743 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone.");
744
745 placeDebugValues();
746
747 DEBUG({
748 unsigned BBNum = begin()->getParent()->getNumber();
749 dbgs() << "*** Final schedule for BB#" << BBNum << " ***\n";
750 dumpSchedule();
751 dbgs() << '\n';
752 });
753}
754
755/// Apply each ScheduleDAGMutation step in order.
756void ScheduleDAGMI::postprocessDAG() {
757 for (unsigned i = 0, e = Mutations.size(); i < e; ++i) {
758 Mutations[i]->apply(this);
759 }
760}
761
762void ScheduleDAGMI::
763findRootsAndBiasEdges(SmallVectorImpl<SUnit*> &TopRoots,
764 SmallVectorImpl<SUnit*> &BotRoots) {
765 for (std::vector<SUnit>::iterator
766 I = SUnits.begin(), E = SUnits.end(); I != E; ++I) {
767 SUnit *SU = &(*I);
768 assert(!SU->isBoundaryNode() && "Boundary node should not be in SUnits");
769
770 // Order predecessors so DFSResult follows the critical path.
771 SU->biasCriticalPath();
772
773 // A SUnit is ready to top schedule if it has no predecessors.
774 if (!I->NumPredsLeft)
775 TopRoots.push_back(SU);
776 // A SUnit is ready to bottom schedule if it has no successors.
777 if (!I->NumSuccsLeft)
778 BotRoots.push_back(SU);
779 }
780 ExitSU.biasCriticalPath();
781}
782
783/// Identify DAG roots and setup scheduler queues.
784void ScheduleDAGMI::initQueues(ArrayRef<SUnit*> TopRoots,
785 ArrayRef<SUnit*> BotRoots) {
Craig Topperc0196b12014-04-14 00:51:57 +0000786 NextClusterSucc = nullptr;
787 NextClusterPred = nullptr;
Andrew Trickd7f890e2013-12-28 21:56:47 +0000788
789 // Release all DAG roots for scheduling, not including EntrySU/ExitSU.
790 //
791 // Nodes with unreleased weak edges can still be roots.
792 // Release top roots in forward order.
793 for (SmallVectorImpl<SUnit*>::const_iterator
794 I = TopRoots.begin(), E = TopRoots.end(); I != E; ++I) {
795 SchedImpl->releaseTopNode(*I);
796 }
797 // Release bottom roots in reverse order so the higher priority nodes appear
798 // first. This is more natural and slightly more efficient.
799 for (SmallVectorImpl<SUnit*>::const_reverse_iterator
800 I = BotRoots.rbegin(), E = BotRoots.rend(); I != E; ++I) {
801 SchedImpl->releaseBottomNode(*I);
802 }
803
804 releaseSuccessors(&EntrySU);
805 releasePredecessors(&ExitSU);
806
807 SchedImpl->registerRoots();
808
809 // Advance past initial DebugValues.
810 CurrentTop = nextIfDebug(RegionBegin, RegionEnd);
811 CurrentBottom = RegionEnd;
812}
813
814/// Update scheduler queues after scheduling an instruction.
815void ScheduleDAGMI::updateQueues(SUnit *SU, bool IsTopNode) {
816 // Release dependent instructions for scheduling.
817 if (IsTopNode)
818 releaseSuccessors(SU);
819 else
820 releasePredecessors(SU);
821
822 SU->isScheduled = true;
823}
824
825/// Reinsert any remaining debug_values, just like the PostRA scheduler.
826void ScheduleDAGMI::placeDebugValues() {
827 // If first instruction was a DBG_VALUE then put it back.
828 if (FirstDbgValue) {
829 BB->splice(RegionBegin, BB, FirstDbgValue);
830 RegionBegin = FirstDbgValue;
831 }
832
833 for (std::vector<std::pair<MachineInstr *, MachineInstr *> >::iterator
834 DI = DbgValues.end(), DE = DbgValues.begin(); DI != DE; --DI) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000835 std::pair<MachineInstr *, MachineInstr *> P = *std::prev(DI);
Andrew Trickd7f890e2013-12-28 21:56:47 +0000836 MachineInstr *DbgValue = P.first;
837 MachineBasicBlock::iterator OrigPrevMI = P.second;
838 if (&*RegionBegin == DbgValue)
839 ++RegionBegin;
840 BB->splice(++OrigPrevMI, BB, DbgValue);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000841 if (OrigPrevMI == std::prev(RegionEnd))
Andrew Trickd7f890e2013-12-28 21:56:47 +0000842 RegionEnd = DbgValue;
843 }
844 DbgValues.clear();
Craig Topperc0196b12014-04-14 00:51:57 +0000845 FirstDbgValue = nullptr;
Andrew Trickd7f890e2013-12-28 21:56:47 +0000846}
847
848#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
849void ScheduleDAGMI::dumpSchedule() const {
850 for (MachineBasicBlock::iterator MI = begin(), ME = end(); MI != ME; ++MI) {
851 if (SUnit *SU = getSUnit(&(*MI)))
852 SU->dump(this);
853 else
854 dbgs() << "Missing SUnit\n";
855 }
856}
857#endif
858
859//===----------------------------------------------------------------------===//
860// ScheduleDAGMILive - Base class for MachineInstr scheduling with LiveIntervals
861// preservation.
862//===----------------------------------------------------------------------===//
863
864ScheduleDAGMILive::~ScheduleDAGMILive() {
865 delete DFSResult;
866}
867
Andrew Trick88639922012-04-24 17:56:43 +0000868/// enterRegion - Called back from MachineScheduler::runOnMachineFunction after
869/// crossing a scheduling boundary. [begin, end) includes all instructions in
870/// the region, including the boundary itself and single-instruction regions
871/// that don't get scheduled.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000872void ScheduleDAGMILive::enterRegion(MachineBasicBlock *bb,
Andrew Trick88639922012-04-24 17:56:43 +0000873 MachineBasicBlock::iterator begin,
874 MachineBasicBlock::iterator end,
Andrew Tricka53e1012013-08-23 17:48:33 +0000875 unsigned regioninstrs)
Andrew Trick88639922012-04-24 17:56:43 +0000876{
Andrew Trickd7f890e2013-12-28 21:56:47 +0000877 // ScheduleDAGMI initializes SchedImpl's per-region policy.
878 ScheduleDAGMI::enterRegion(bb, begin, end, regioninstrs);
Andrew Trick4add42f2012-05-10 21:06:10 +0000879
880 // For convenience remember the end of the liveness region.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000881 LiveRegionEnd = (RegionEnd == bb->end()) ? RegionEnd : std::next(RegionEnd);
Andrew Trick75e411c2013-09-06 17:32:34 +0000882
Andrew Trickb248b4a2013-09-06 17:32:47 +0000883 SUPressureDiffs.clear();
884
Andrew Trick75e411c2013-09-06 17:32:34 +0000885 ShouldTrackPressure = SchedImpl->shouldTrackPressure();
Matthias Braund4f64092016-01-20 00:23:32 +0000886 ShouldTrackLaneMasks = SchedImpl->shouldTrackLaneMasks();
887
Matthias Braunf9acaca2016-05-31 22:38:06 +0000888 assert((!ShouldTrackLaneMasks || ShouldTrackPressure) &&
889 "ShouldTrackLaneMasks requires ShouldTrackPressure");
Andrew Trick4add42f2012-05-10 21:06:10 +0000890}
891
892// Setup the register pressure trackers for the top scheduled top and bottom
893// scheduled regions.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000894void ScheduleDAGMILive::initRegPressure() {
Matthias Braund4f64092016-01-20 00:23:32 +0000895 TopRPTracker.init(&MF, RegClassInfo, LIS, BB, RegionBegin,
896 ShouldTrackLaneMasks, false);
897 BotRPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd,
898 ShouldTrackLaneMasks, false);
Andrew Trick4add42f2012-05-10 21:06:10 +0000899
900 // Close the RPTracker to finalize live ins.
901 RPTracker.closeRegion();
902
Andrew Trick9c17eab2013-07-30 19:59:12 +0000903 DEBUG(RPTracker.dump());
Andrew Trick79d3eec2012-05-24 22:11:14 +0000904
Andrew Trick4add42f2012-05-10 21:06:10 +0000905 // Initialize the live ins and live outs.
Matthias Braun3e86de12015-09-17 21:12:24 +0000906 TopRPTracker.addLiveRegs(RPTracker.getPressure().LiveInRegs);
907 BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs);
Andrew Trick4add42f2012-05-10 21:06:10 +0000908
909 // Close one end of the tracker so we can call
910 // getMaxUpward/DownwardPressureDelta before advancing across any
911 // instructions. This converts currently live regs into live ins/outs.
912 TopRPTracker.closeTop();
913 BotRPTracker.closeBottom();
914
Andrew Trick9c17eab2013-07-30 19:59:12 +0000915 BotRPTracker.initLiveThru(RPTracker);
916 if (!BotRPTracker.getLiveThru().empty()) {
917 TopRPTracker.initLiveThru(BotRPTracker.getLiveThru());
918 DEBUG(dbgs() << "Live Thru: ";
919 dumpRegSetPressure(BotRPTracker.getLiveThru(), TRI));
920 };
921
Andrew Trick2bc74c22013-08-30 04:36:57 +0000922 // For each live out vreg reduce the pressure change associated with other
923 // uses of the same vreg below the live-out reaching def.
Matthias Braun3e86de12015-09-17 21:12:24 +0000924 updatePressureDiffs(RPTracker.getPressure().LiveOutRegs);
Andrew Trick2bc74c22013-08-30 04:36:57 +0000925
Andrew Trick4add42f2012-05-10 21:06:10 +0000926 // Account for liveness generated by the region boundary.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000927 if (LiveRegionEnd != RegionEnd) {
Matthias Braun5d458612016-01-20 00:23:26 +0000928 SmallVector<RegisterMaskPair, 8> LiveUses;
Andrew Trick2bc74c22013-08-30 04:36:57 +0000929 BotRPTracker.recede(&LiveUses);
930 updatePressureDiffs(LiveUses);
931 }
Andrew Trick4add42f2012-05-10 21:06:10 +0000932
Matthias Braune6edd482015-11-13 22:30:31 +0000933 DEBUG(
934 dbgs() << "Top Pressure:\n";
935 dumpRegSetPressure(TopRPTracker.getRegSetPressureAtPos(), TRI);
936 dbgs() << "Bottom Pressure:\n";
937 dumpRegSetPressure(BotRPTracker.getRegSetPressureAtPos(), TRI);
938 );
939
Andrew Trick4add42f2012-05-10 21:06:10 +0000940 assert(BotRPTracker.getPos() == RegionEnd && "Can't find the region bottom");
Andrew Trick22025772012-05-17 18:35:10 +0000941
942 // Cache the list of excess pressure sets in this region. This will also track
943 // the max pressure in the scheduled code for these sets.
944 RegionCriticalPSets.clear();
Jakub Staszakc641ada2013-01-25 21:44:27 +0000945 const std::vector<unsigned> &RegionPressure =
946 RPTracker.getPressure().MaxSetPressure;
Andrew Trick22025772012-05-17 18:35:10 +0000947 for (unsigned i = 0, e = RegionPressure.size(); i < e; ++i) {
Andrew Trick736dd9a2013-06-21 18:32:58 +0000948 unsigned Limit = RegClassInfo->getRegPressureSetLimit(i);
Andrew Trickb55db582013-06-21 18:33:01 +0000949 if (RegionPressure[i] > Limit) {
950 DEBUG(dbgs() << TRI->getRegPressureSetName(i)
951 << " Limit " << Limit
952 << " Actual " << RegionPressure[i] << "\n");
Andrew Trick1a831342013-08-30 03:49:48 +0000953 RegionCriticalPSets.push_back(PressureChange(i));
Andrew Trickb55db582013-06-21 18:33:01 +0000954 }
Andrew Trick22025772012-05-17 18:35:10 +0000955 }
956 DEBUG(dbgs() << "Excess PSets: ";
957 for (unsigned i = 0, e = RegionCriticalPSets.size(); i != e; ++i)
958 dbgs() << TRI->getRegPressureSetName(
Andrew Trick1a831342013-08-30 03:49:48 +0000959 RegionCriticalPSets[i].getPSet()) << " ";
Andrew Trick22025772012-05-17 18:35:10 +0000960 dbgs() << "\n");
961}
962
Andrew Trickd7f890e2013-12-28 21:56:47 +0000963void ScheduleDAGMILive::
Andrew Trickb248b4a2013-09-06 17:32:47 +0000964updateScheduledPressure(const SUnit *SU,
965 const std::vector<unsigned> &NewMaxPressure) {
966 const PressureDiff &PDiff = getPressureDiff(SU);
967 unsigned CritIdx = 0, CritEnd = RegionCriticalPSets.size();
968 for (PressureDiff::const_iterator I = PDiff.begin(), E = PDiff.end();
969 I != E; ++I) {
970 if (!I->isValid())
971 break;
972 unsigned ID = I->getPSet();
973 while (CritIdx != CritEnd && RegionCriticalPSets[CritIdx].getPSet() < ID)
974 ++CritIdx;
975 if (CritIdx != CritEnd && RegionCriticalPSets[CritIdx].getPSet() == ID) {
976 if ((int)NewMaxPressure[ID] > RegionCriticalPSets[CritIdx].getUnitInc()
977 && NewMaxPressure[ID] <= INT16_MAX)
978 RegionCriticalPSets[CritIdx].setUnitInc(NewMaxPressure[ID]);
979 }
980 unsigned Limit = RegClassInfo->getRegPressureSetLimit(ID);
981 if (NewMaxPressure[ID] >= Limit - 2) {
982 DEBUG(dbgs() << " " << TRI->getRegPressureSetName(ID) << ": "
Andrew Trick569dc65a2015-05-17 23:40:31 +0000983 << NewMaxPressure[ID]
984 << ((NewMaxPressure[ID] > Limit) ? " > " : " <= ") << Limit
985 << "(+ " << BotRPTracker.getLiveThru()[ID] << " livethru)\n");
Andrew Trickb248b4a2013-09-06 17:32:47 +0000986 }
Andrew Trick22025772012-05-17 18:35:10 +0000987 }
Andrew Trick88639922012-04-24 17:56:43 +0000988}
989
Andrew Trick2bc74c22013-08-30 04:36:57 +0000990/// Update the PressureDiff array for liveness after scheduling this
991/// instruction.
Matthias Braun5d458612016-01-20 00:23:26 +0000992void ScheduleDAGMILive::updatePressureDiffs(
993 ArrayRef<RegisterMaskPair> LiveUses) {
994 for (const RegisterMaskPair &P : LiveUses) {
Matthias Braun5d458612016-01-20 00:23:26 +0000995 unsigned Reg = P.RegUnit;
Matthias Braund4f64092016-01-20 00:23:32 +0000996 /// FIXME: Currently assuming single-use physregs.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000997 if (!TRI->isVirtualRegister(Reg))
998 continue;
Andrew Trickffdbefb2013-09-06 17:32:39 +0000999
Matthias Braund4f64092016-01-20 00:23:32 +00001000 if (ShouldTrackLaneMasks) {
1001 // If the register has just become live then other uses won't change
1002 // this fact anymore => decrement pressure.
1003 // If the register has just become dead then other uses make it come
1004 // back to life => increment pressure.
1005 bool Decrement = P.LaneMask != 0;
1006
1007 for (const VReg2SUnit &V2SU
1008 : make_range(VRegUses.find(Reg), VRegUses.end())) {
1009 SUnit &SU = *V2SU.SU;
1010 if (SU.isScheduled || &SU == &ExitSU)
1011 continue;
1012
1013 PressureDiff &PDiff = getPressureDiff(&SU);
1014 PDiff.addPressureChange(Reg, Decrement, &MRI);
1015 DEBUG(
1016 dbgs() << " UpdateRegP: SU(" << SU.NodeNum << ") "
1017 << PrintReg(Reg, TRI) << ':' << PrintLaneMask(P.LaneMask)
1018 << ' ' << *SU.getInstr();
1019 dbgs() << " to ";
1020 PDiff.dump(*TRI);
1021 );
1022 }
1023 } else {
1024 assert(P.LaneMask != 0);
1025 DEBUG(dbgs() << " LiveReg: " << PrintVRegOrUnit(Reg, TRI) << "\n");
1026 // This may be called before CurrentBottom has been initialized. However,
1027 // BotRPTracker must have a valid position. We want the value live into the
1028 // instruction or live out of the block, so ask for the previous
1029 // instruction's live-out.
1030 const LiveInterval &LI = LIS->getInterval(Reg);
1031 VNInfo *VNI;
1032 MachineBasicBlock::const_iterator I =
1033 nextIfDebug(BotRPTracker.getPos(), BB->end());
1034 if (I == BB->end())
1035 VNI = LI.getVNInfoBefore(LIS->getMBBEndIdx(BB));
1036 else {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001037 LiveQueryResult LRQ = LI.Query(LIS->getInstructionIndex(*I));
Matthias Braund4f64092016-01-20 00:23:32 +00001038 VNI = LRQ.valueIn();
1039 }
1040 // RegisterPressureTracker guarantees that readsReg is true for LiveUses.
1041 assert(VNI && "No live value at use.");
1042 for (const VReg2SUnit &V2SU
1043 : make_range(VRegUses.find(Reg), VRegUses.end())) {
1044 SUnit *SU = V2SU.SU;
1045 // If this use comes before the reaching def, it cannot be a last use,
1046 // so decrease its pressure change.
1047 if (!SU->isScheduled && SU != &ExitSU) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001048 LiveQueryResult LRQ =
1049 LI.Query(LIS->getInstructionIndex(*SU->getInstr()));
Matthias Braund4f64092016-01-20 00:23:32 +00001050 if (LRQ.valueIn() == VNI) {
1051 PressureDiff &PDiff = getPressureDiff(SU);
1052 PDiff.addPressureChange(Reg, true, &MRI);
1053 DEBUG(
1054 dbgs() << " UpdateRegP: SU(" << SU->NodeNum << ") "
1055 << *SU->getInstr();
1056 dbgs() << " to ";
1057 PDiff.dump(*TRI);
1058 );
1059 }
Matthias Braun9198c672015-11-06 20:59:02 +00001060 }
Andrew Trick2bc74c22013-08-30 04:36:57 +00001061 }
1062 }
1063 }
1064}
1065
Andrew Trick8823dec2012-03-14 04:00:41 +00001066/// schedule - Called back from MachineScheduler::runOnMachineFunction
Andrew Trick88639922012-04-24 17:56:43 +00001067/// after setting up the current scheduling region. [RegionBegin, RegionEnd)
1068/// only includes instructions that have DAG nodes, not scheduling boundaries.
Andrew Trick7a8e1002012-09-11 00:39:15 +00001069///
1070/// This is a skeletal driver, with all the functionality pushed into helpers,
Nick Lewycky06b0ea22015-08-18 22:41:58 +00001071/// so that it can be easily extended by experimental schedulers. Generally,
Andrew Trick7a8e1002012-09-11 00:39:15 +00001072/// implementing MachineSchedStrategy should be sufficient to implement a new
1073/// scheduling algorithm. However, if a scheduler further subclasses
Andrew Trickd7f890e2013-12-28 21:56:47 +00001074/// ScheduleDAGMILive then it will want to override this virtual method in order
1075/// to update any specialized state.
1076void ScheduleDAGMILive::schedule() {
James Y Knighte72b0db2015-09-18 18:52:20 +00001077 DEBUG(dbgs() << "ScheduleDAGMILive::schedule starting\n");
1078 DEBUG(SchedImpl->dumpPolicy());
Andrew Trick7a8e1002012-09-11 00:39:15 +00001079 buildDAGWithRegPressure();
1080
Andrew Tricka7714a02012-11-12 19:40:10 +00001081 Topo.InitDAGTopologicalSorting();
1082
Andrew Tricka2733e92012-09-14 17:22:42 +00001083 postprocessDAG();
1084
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001085 SmallVector<SUnit*, 8> TopRoots, BotRoots;
1086 findRootsAndBiasEdges(TopRoots, BotRoots);
1087
1088 // Initialize the strategy before modifying the DAG.
1089 // This may initialize a DFSResult to be used for queue priority.
1090 SchedImpl->initialize(this);
1091
Matthias Braun9198c672015-11-06 20:59:02 +00001092 DEBUG(
Matthias Braun69f1d122016-11-11 22:37:28 +00001093 if (EntrySU.getInstr() != nullptr)
1094 EntrySU.dumpAll(this);
Matthias Braun9198c672015-11-06 20:59:02 +00001095 for (const SUnit &SU : SUnits) {
1096 SU.dumpAll(this);
1097 if (ShouldTrackPressure) {
1098 dbgs() << " Pressure Diff : ";
1099 getPressureDiff(&SU).dump(*TRI);
1100 }
1101 dbgs() << '\n';
1102 }
Matthias Braun69f1d122016-11-11 22:37:28 +00001103 if (ExitSU.getInstr() != nullptr)
1104 ExitSU.dumpAll(this);
Matthias Braun9198c672015-11-06 20:59:02 +00001105 );
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001106 if (ViewMISchedDAGs) viewGraph();
Andrew Trick7a8e1002012-09-11 00:39:15 +00001107
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001108 // Initialize ready queues now that the DAG and priority data are finalized.
1109 initQueues(TopRoots, BotRoots);
Andrew Trick7a8e1002012-09-11 00:39:15 +00001110
1111 bool IsTopNode = false;
James Y Knighte72b0db2015-09-18 18:52:20 +00001112 while (true) {
1113 DEBUG(dbgs() << "** ScheduleDAGMILive::schedule picking next node\n");
1114 SUnit *SU = SchedImpl->pickNode(IsTopNode);
1115 if (!SU) break;
1116
Andrew Trick984d98b2012-10-08 18:53:53 +00001117 assert(!SU->isScheduled && "Node already scheduled");
Andrew Trick7a8e1002012-09-11 00:39:15 +00001118 if (!checkSchedLimit())
1119 break;
1120
1121 scheduleMI(SU, IsTopNode);
1122
Andrew Trickd7f890e2013-12-28 21:56:47 +00001123 if (DFSResult) {
1124 unsigned SubtreeID = DFSResult->getSubtreeID(SU);
1125 if (!ScheduledTrees.test(SubtreeID)) {
1126 ScheduledTrees.set(SubtreeID);
1127 DFSResult->scheduleTree(SubtreeID);
1128 SchedImpl->scheduleTree(SubtreeID);
1129 }
1130 }
1131
1132 // Notify the scheduling strategy after updating the DAG.
1133 SchedImpl->schedNode(SU, IsTopNode);
Andrew Trick43adfb32015-03-27 06:10:13 +00001134
1135 updateQueues(SU, IsTopNode);
Andrew Trick7a8e1002012-09-11 00:39:15 +00001136 }
1137 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone.");
1138
1139 placeDebugValues();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001140
1141 DEBUG({
Andrew Trickcf7e6972012-11-28 03:42:47 +00001142 unsigned BBNum = begin()->getParent()->getNumber();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001143 dbgs() << "*** Final schedule for BB#" << BBNum << " ***\n";
1144 dumpSchedule();
1145 dbgs() << '\n';
1146 });
Andrew Trick7a8e1002012-09-11 00:39:15 +00001147}
1148
1149/// Build the DAG and setup three register pressure trackers.
Andrew Trickd7f890e2013-12-28 21:56:47 +00001150void ScheduleDAGMILive::buildDAGWithRegPressure() {
Andrew Trickb6e74712013-09-04 20:59:59 +00001151 if (!ShouldTrackPressure) {
1152 RPTracker.reset();
1153 RegionCriticalPSets.clear();
1154 buildSchedGraph(AA);
1155 return;
1156 }
1157
Andrew Trick4add42f2012-05-10 21:06:10 +00001158 // Initialize the register pressure tracker used by buildSchedGraph.
Andrew Trick9c17eab2013-07-30 19:59:12 +00001159 RPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd,
Matthias Braund4f64092016-01-20 00:23:32 +00001160 ShouldTrackLaneMasks, /*TrackUntiedDefs=*/true);
Andrew Trick88639922012-04-24 17:56:43 +00001161
Andrew Trick4add42f2012-05-10 21:06:10 +00001162 // Account for liveness generate by the region boundary.
1163 if (LiveRegionEnd != RegionEnd)
1164 RPTracker.recede();
1165
1166 // Build the DAG, and compute current register pressure.
Matthias Braund4f64092016-01-20 00:23:32 +00001167 buildSchedGraph(AA, &RPTracker, &SUPressureDiffs, LIS, ShouldTrackLaneMasks);
Andrew Trick02a80da2012-03-08 01:41:12 +00001168
Andrew Trick4add42f2012-05-10 21:06:10 +00001169 // Initialize top/bottom trackers after computing region pressure.
1170 initRegPressure();
Andrew Trick7a8e1002012-09-11 00:39:15 +00001171}
Andrew Trick4add42f2012-05-10 21:06:10 +00001172
Andrew Trickd7f890e2013-12-28 21:56:47 +00001173void ScheduleDAGMILive::computeDFSResult() {
Andrew Trick44f750a2013-01-25 04:01:04 +00001174 if (!DFSResult)
1175 DFSResult = new SchedDFSResult(/*BottomU*/true, MinSubtreeSize);
1176 DFSResult->clear();
Andrew Trick44f750a2013-01-25 04:01:04 +00001177 ScheduledTrees.clear();
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001178 DFSResult->resize(SUnits.size());
1179 DFSResult->compute(SUnits);
Andrew Trick44f750a2013-01-25 04:01:04 +00001180 ScheduledTrees.resize(DFSResult->getNumSubtrees());
1181}
1182
Andrew Trick483f4192013-08-29 18:04:49 +00001183/// Compute the max cyclic critical path through the DAG. The scheduling DAG
1184/// only provides the critical path for single block loops. To handle loops that
1185/// span blocks, we could use the vreg path latencies provided by
1186/// MachineTraceMetrics instead. However, MachineTraceMetrics is not currently
1187/// available for use in the scheduler.
1188///
1189/// The cyclic path estimation identifies a def-use pair that crosses the back
Andrew Trickef80f502013-08-30 02:02:12 +00001190/// edge and considers the depth and height of the nodes. For example, consider
Andrew Trick483f4192013-08-29 18:04:49 +00001191/// the following instruction sequence where each instruction has unit latency
1192/// and defines an epomymous virtual register:
1193///
1194/// a->b(a,c)->c(b)->d(c)->exit
1195///
1196/// The cyclic critical path is a two cycles: b->c->b
1197/// The acyclic critical path is four cycles: a->b->c->d->exit
1198/// LiveOutHeight = height(c) = len(c->d->exit) = 2
1199/// LiveOutDepth = depth(c) + 1 = len(a->b->c) + 1 = 3
1200/// LiveInHeight = height(b) + 1 = len(b->c->d->exit) + 1 = 4
1201/// LiveInDepth = depth(b) = len(a->b) = 1
1202///
1203/// LiveOutDepth - LiveInDepth = 3 - 1 = 2
1204/// LiveInHeight - LiveOutHeight = 4 - 2 = 2
1205/// CyclicCriticalPath = min(2, 2) = 2
Andrew Trickd7f890e2013-12-28 21:56:47 +00001206///
1207/// This could be relevant to PostRA scheduling, but is currently implemented
1208/// assuming LiveIntervals.
1209unsigned ScheduleDAGMILive::computeCyclicCriticalPath() {
Andrew Trick483f4192013-08-29 18:04:49 +00001210 // This only applies to single block loop.
1211 if (!BB->isSuccessor(BB))
1212 return 0;
1213
1214 unsigned MaxCyclicLatency = 0;
1215 // Visit each live out vreg def to find def/use pairs that cross iterations.
Matthias Braun5d458612016-01-20 00:23:26 +00001216 for (const RegisterMaskPair &P : RPTracker.getPressure().LiveOutRegs) {
1217 unsigned Reg = P.RegUnit;
Andrew Trick483f4192013-08-29 18:04:49 +00001218 if (!TRI->isVirtualRegister(Reg))
1219 continue;
1220 const LiveInterval &LI = LIS->getInterval(Reg);
1221 const VNInfo *DefVNI = LI.getVNInfoBefore(LIS->getMBBEndIdx(BB));
1222 if (!DefVNI)
1223 continue;
1224
1225 MachineInstr *DefMI = LIS->getInstructionFromIndex(DefVNI->def);
1226 const SUnit *DefSU = getSUnit(DefMI);
1227 if (!DefSU)
1228 continue;
1229
1230 unsigned LiveOutHeight = DefSU->getHeight();
1231 unsigned LiveOutDepth = DefSU->getDepth() + DefSU->Latency;
1232 // Visit all local users of the vreg def.
Matthias Braunb0c437b2015-10-29 03:57:17 +00001233 for (const VReg2SUnit &V2SU
1234 : make_range(VRegUses.find(Reg), VRegUses.end())) {
1235 SUnit *SU = V2SU.SU;
1236 if (SU == &ExitSU)
Andrew Trick483f4192013-08-29 18:04:49 +00001237 continue;
1238
1239 // Only consider uses of the phi.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001240 LiveQueryResult LRQ = LI.Query(LIS->getInstructionIndex(*SU->getInstr()));
Andrew Trick483f4192013-08-29 18:04:49 +00001241 if (!LRQ.valueIn()->isPHIDef())
1242 continue;
1243
1244 // Assume that a path spanning two iterations is a cycle, which could
1245 // overestimate in strange cases. This allows cyclic latency to be
1246 // estimated as the minimum slack of the vreg's depth or height.
1247 unsigned CyclicLatency = 0;
Matthias Braunb0c437b2015-10-29 03:57:17 +00001248 if (LiveOutDepth > SU->getDepth())
1249 CyclicLatency = LiveOutDepth - SU->getDepth();
Andrew Trick483f4192013-08-29 18:04:49 +00001250
Matthias Braunb0c437b2015-10-29 03:57:17 +00001251 unsigned LiveInHeight = SU->getHeight() + DefSU->Latency;
Andrew Trick483f4192013-08-29 18:04:49 +00001252 if (LiveInHeight > LiveOutHeight) {
1253 if (LiveInHeight - LiveOutHeight < CyclicLatency)
1254 CyclicLatency = LiveInHeight - LiveOutHeight;
Matthias Braunb550b762016-04-21 01:54:13 +00001255 } else
Andrew Trick483f4192013-08-29 18:04:49 +00001256 CyclicLatency = 0;
1257
1258 DEBUG(dbgs() << "Cyclic Path: SU(" << DefSU->NodeNum << ") -> SU("
Matthias Braunb0c437b2015-10-29 03:57:17 +00001259 << SU->NodeNum << ") = " << CyclicLatency << "c\n");
Andrew Trick483f4192013-08-29 18:04:49 +00001260 if (CyclicLatency > MaxCyclicLatency)
1261 MaxCyclicLatency = CyclicLatency;
1262 }
1263 }
1264 DEBUG(dbgs() << "Cyclic Critical Path: " << MaxCyclicLatency << "c\n");
1265 return MaxCyclicLatency;
1266}
1267
Krzysztof Parzyszek7ea9a522016-04-28 19:17:44 +00001268/// Release ExitSU predecessors and setup scheduler queues. Re-position
1269/// the Top RP tracker in case the region beginning has changed.
1270void ScheduleDAGMILive::initQueues(ArrayRef<SUnit*> TopRoots,
1271 ArrayRef<SUnit*> BotRoots) {
1272 ScheduleDAGMI::initQueues(TopRoots, BotRoots);
1273 if (ShouldTrackPressure) {
1274 assert(TopRPTracker.getPos() == RegionBegin && "bad initial Top tracker");
1275 TopRPTracker.setPos(CurrentTop);
1276 }
1277}
1278
Andrew Trick7a8e1002012-09-11 00:39:15 +00001279/// Move an instruction and update register pressure.
Andrew Trickd7f890e2013-12-28 21:56:47 +00001280void ScheduleDAGMILive::scheduleMI(SUnit *SU, bool IsTopNode) {
Andrew Trick7a8e1002012-09-11 00:39:15 +00001281 // Move the instruction to its new location in the instruction stream.
1282 MachineInstr *MI = SU->getInstr();
Andrew Trick02a80da2012-03-08 01:41:12 +00001283
Andrew Trick7a8e1002012-09-11 00:39:15 +00001284 if (IsTopNode) {
1285 assert(SU->isTopReady() && "node still has unscheduled dependencies");
1286 if (&*CurrentTop == MI)
1287 CurrentTop = nextIfDebug(++CurrentTop, CurrentBottom);
Andrew Trick8823dec2012-03-14 04:00:41 +00001288 else {
Andrew Trick7a8e1002012-09-11 00:39:15 +00001289 moveInstruction(MI, CurrentTop);
1290 TopRPTracker.setPos(MI);
Andrew Trick8823dec2012-03-14 04:00:41 +00001291 }
Andrew Trickc3ea0052012-04-24 18:04:37 +00001292
Andrew Trickb6e74712013-09-04 20:59:59 +00001293 if (ShouldTrackPressure) {
1294 // Update top scheduled pressure.
Matthias Braund4f64092016-01-20 00:23:32 +00001295 RegisterOperands RegOpers;
1296 RegOpers.collect(*MI, *TRI, MRI, ShouldTrackLaneMasks, false);
1297 if (ShouldTrackLaneMasks) {
1298 // Adjust liveness and add missing dead+read-undef flags.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001299 SlotIndex SlotIdx = LIS->getInstructionIndex(*MI).getRegSlot();
Matthias Braund4f64092016-01-20 00:23:32 +00001300 RegOpers.adjustLaneLiveness(*LIS, MRI, SlotIdx, MI);
1301 } else {
1302 // Adjust for missing dead-def flags.
1303 RegOpers.detectDeadDefs(*MI, *LIS);
1304 }
1305
1306 TopRPTracker.advance(RegOpers);
Andrew Trickb6e74712013-09-04 20:59:59 +00001307 assert(TopRPTracker.getPos() == CurrentTop && "out of sync");
Matthias Braun9198c672015-11-06 20:59:02 +00001308 DEBUG(
1309 dbgs() << "Top Pressure:\n";
1310 dumpRegSetPressure(TopRPTracker.getRegSetPressureAtPos(), TRI);
1311 );
1312
Andrew Trickb248b4a2013-09-06 17:32:47 +00001313 updateScheduledPressure(SU, TopRPTracker.getPressure().MaxSetPressure);
Andrew Trickb6e74712013-09-04 20:59:59 +00001314 }
Matthias Braunb550b762016-04-21 01:54:13 +00001315 } else {
Andrew Trick7a8e1002012-09-11 00:39:15 +00001316 assert(SU->isBottomReady() && "node still has unscheduled dependencies");
1317 MachineBasicBlock::iterator priorII =
1318 priorNonDebug(CurrentBottom, CurrentTop);
1319 if (&*priorII == MI)
1320 CurrentBottom = priorII;
1321 else {
1322 if (&*CurrentTop == MI) {
1323 CurrentTop = nextIfDebug(++CurrentTop, priorII);
1324 TopRPTracker.setPos(CurrentTop);
1325 }
1326 moveInstruction(MI, CurrentBottom);
1327 CurrentBottom = MI;
1328 }
Andrew Trickb6e74712013-09-04 20:59:59 +00001329 if (ShouldTrackPressure) {
Matthias Braund4f64092016-01-20 00:23:32 +00001330 RegisterOperands RegOpers;
1331 RegOpers.collect(*MI, *TRI, MRI, ShouldTrackLaneMasks, false);
1332 if (ShouldTrackLaneMasks) {
1333 // Adjust liveness and add missing dead+read-undef flags.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001334 SlotIndex SlotIdx = LIS->getInstructionIndex(*MI).getRegSlot();
Matthias Braund4f64092016-01-20 00:23:32 +00001335 RegOpers.adjustLaneLiveness(*LIS, MRI, SlotIdx, MI);
1336 } else {
1337 // Adjust for missing dead-def flags.
1338 RegOpers.detectDeadDefs(*MI, *LIS);
1339 }
1340
1341 BotRPTracker.recedeSkipDebugValues();
Matthias Braun5d458612016-01-20 00:23:26 +00001342 SmallVector<RegisterMaskPair, 8> LiveUses;
Matthias Braund4f64092016-01-20 00:23:32 +00001343 BotRPTracker.recede(RegOpers, &LiveUses);
Andrew Trickb6e74712013-09-04 20:59:59 +00001344 assert(BotRPTracker.getPos() == CurrentBottom && "out of sync");
Matthias Braun9198c672015-11-06 20:59:02 +00001345 DEBUG(
1346 dbgs() << "Bottom Pressure:\n";
1347 dumpRegSetPressure(BotRPTracker.getRegSetPressureAtPos(), TRI);
1348 );
1349
Andrew Trickb248b4a2013-09-06 17:32:47 +00001350 updateScheduledPressure(SU, BotRPTracker.getPressure().MaxSetPressure);
Andrew Trickb6e74712013-09-04 20:59:59 +00001351 updatePressureDiffs(LiveUses);
Andrew Trickb6e74712013-09-04 20:59:59 +00001352 }
Andrew Trick7a8e1002012-09-11 00:39:15 +00001353 }
1354}
1355
Andrew Trick263280242012-11-12 19:52:20 +00001356//===----------------------------------------------------------------------===//
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001357// BaseMemOpClusterMutation - DAG post-processing to cluster loads or stores.
Andrew Trick263280242012-11-12 19:52:20 +00001358//===----------------------------------------------------------------------===//
1359
Andrew Tricka7714a02012-11-12 19:40:10 +00001360namespace {
1361/// \brief Post-process the DAG to create cluster edges between neighboring
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001362/// loads or between neighboring stores.
1363class BaseMemOpClusterMutation : public ScheduleDAGMutation {
1364 struct MemOpInfo {
Andrew Tricka7714a02012-11-12 19:40:10 +00001365 SUnit *SU;
1366 unsigned BaseReg;
Chad Rosierc27a18f2016-03-09 16:00:35 +00001367 int64_t Offset;
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001368 MemOpInfo(SUnit *su, unsigned reg, int64_t ofs)
1369 : SU(su), BaseReg(reg), Offset(ofs) {}
Benjamin Kramerb0f74b22014-03-07 21:35:39 +00001370
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001371 bool operator<(const MemOpInfo&RHS) const {
Mandeep Singh Grange82678a2016-10-18 00:11:19 +00001372 return std::tie(BaseReg, Offset, SU->NodeNum) <
1373 std::tie(RHS.BaseReg, RHS.Offset, RHS.SU->NodeNum);
Benjamin Kramerb0f74b22014-03-07 21:35:39 +00001374 }
Andrew Tricka7714a02012-11-12 19:40:10 +00001375 };
Andrew Tricka7714a02012-11-12 19:40:10 +00001376
1377 const TargetInstrInfo *TII;
1378 const TargetRegisterInfo *TRI;
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001379 bool IsLoad;
1380
Andrew Tricka7714a02012-11-12 19:40:10 +00001381public:
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001382 BaseMemOpClusterMutation(const TargetInstrInfo *tii,
1383 const TargetRegisterInfo *tri, bool IsLoad)
1384 : TII(tii), TRI(tri), IsLoad(IsLoad) {}
Andrew Tricka7714a02012-11-12 19:40:10 +00001385
Krzysztof Parzyszek5c61d112016-03-05 15:45:23 +00001386 void apply(ScheduleDAGInstrs *DAGInstrs) override;
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001387
Andrew Tricka7714a02012-11-12 19:40:10 +00001388protected:
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001389 void clusterNeighboringMemOps(ArrayRef<SUnit *> MemOps, ScheduleDAGMI *DAG);
1390};
1391
1392class StoreClusterMutation : public BaseMemOpClusterMutation {
1393public:
1394 StoreClusterMutation(const TargetInstrInfo *tii,
1395 const TargetRegisterInfo *tri)
1396 : BaseMemOpClusterMutation(tii, tri, false) {}
1397};
1398
1399class LoadClusterMutation : public BaseMemOpClusterMutation {
1400public:
1401 LoadClusterMutation(const TargetInstrInfo *tii, const TargetRegisterInfo *tri)
1402 : BaseMemOpClusterMutation(tii, tri, true) {}
Andrew Tricka7714a02012-11-12 19:40:10 +00001403};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001404} // anonymous
Andrew Tricka7714a02012-11-12 19:40:10 +00001405
Tom Stellard68726a52016-08-19 19:59:18 +00001406namespace llvm {
1407
1408std::unique_ptr<ScheduleDAGMutation>
1409createLoadClusterDAGMutation(const TargetInstrInfo *TII,
1410 const TargetRegisterInfo *TRI) {
1411 return make_unique<LoadClusterMutation>(TII, TRI);
1412}
1413
1414std::unique_ptr<ScheduleDAGMutation>
1415createStoreClusterDAGMutation(const TargetInstrInfo *TII,
1416 const TargetRegisterInfo *TRI) {
1417 return make_unique<StoreClusterMutation>(TII, TRI);
1418}
1419
1420} // namespace llvm
1421
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001422void BaseMemOpClusterMutation::clusterNeighboringMemOps(
1423 ArrayRef<SUnit *> MemOps, ScheduleDAGMI *DAG) {
1424 SmallVector<MemOpInfo, 32> MemOpRecords;
1425 for (unsigned Idx = 0, End = MemOps.size(); Idx != End; ++Idx) {
1426 SUnit *SU = MemOps[Idx];
Andrew Tricka7714a02012-11-12 19:40:10 +00001427 unsigned BaseReg;
Chad Rosierc27a18f2016-03-09 16:00:35 +00001428 int64_t Offset;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001429 if (TII->getMemOpBaseRegImmOfs(*SU->getInstr(), BaseReg, Offset, TRI))
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001430 MemOpRecords.push_back(MemOpInfo(SU, BaseReg, Offset));
Andrew Tricka7714a02012-11-12 19:40:10 +00001431 }
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001432 if (MemOpRecords.size() < 2)
Andrew Tricka7714a02012-11-12 19:40:10 +00001433 return;
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001434
1435 std::sort(MemOpRecords.begin(), MemOpRecords.end());
Andrew Tricka7714a02012-11-12 19:40:10 +00001436 unsigned ClusterLength = 1;
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001437 for (unsigned Idx = 0, End = MemOpRecords.size(); Idx < (End - 1); ++Idx) {
1438 if (MemOpRecords[Idx].BaseReg != MemOpRecords[Idx+1].BaseReg) {
Andrew Tricka7714a02012-11-12 19:40:10 +00001439 ClusterLength = 1;
1440 continue;
1441 }
1442
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001443 SUnit *SUa = MemOpRecords[Idx].SU;
1444 SUnit *SUb = MemOpRecords[Idx+1].SU;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001445 if (TII->shouldClusterMemOps(*SUa->getInstr(), *SUb->getInstr(),
1446 ClusterLength) &&
1447 DAG->addEdge(SUb, SDep(SUa, SDep::Cluster))) {
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001448 DEBUG(dbgs() << "Cluster ld/st SU(" << SUa->NodeNum << ") - SU("
Andrew Tricka7714a02012-11-12 19:40:10 +00001449 << SUb->NodeNum << ")\n");
1450 // Copy successor edges from SUa to SUb. Interleaving computation
1451 // dependent on SUa can prevent load combining due to register reuse.
1452 // Predecessor edges do not need to be copied from SUb to SUa since nearby
1453 // loads should have effectively the same inputs.
1454 for (SUnit::const_succ_iterator
1455 SI = SUa->Succs.begin(), SE = SUa->Succs.end(); SI != SE; ++SI) {
1456 if (SI->getSUnit() == SUb)
1457 continue;
1458 DEBUG(dbgs() << " Copy Succ SU(" << SI->getSUnit()->NodeNum << ")\n");
1459 DAG->addEdge(SI->getSUnit(), SDep(SUb, SDep::Artificial));
1460 }
1461 ++ClusterLength;
Matthias Braunb550b762016-04-21 01:54:13 +00001462 } else
Andrew Tricka7714a02012-11-12 19:40:10 +00001463 ClusterLength = 1;
1464 }
1465}
1466
1467/// \brief Callback from DAG postProcessing to create cluster edges for loads.
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001468void BaseMemOpClusterMutation::apply(ScheduleDAGInstrs *DAGInstrs) {
1469
Krzysztof Parzyszek5c61d112016-03-05 15:45:23 +00001470 ScheduleDAGMI *DAG = static_cast<ScheduleDAGMI*>(DAGInstrs);
1471
Andrew Tricka7714a02012-11-12 19:40:10 +00001472 // Map DAG NodeNum to store chain ID.
1473 DenseMap<unsigned, unsigned> StoreChainIDs;
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001474 // Map each store chain to a set of dependent MemOps.
Andrew Tricka7714a02012-11-12 19:40:10 +00001475 SmallVector<SmallVector<SUnit*,4>, 32> StoreChainDependents;
1476 for (unsigned Idx = 0, End = DAG->SUnits.size(); Idx != End; ++Idx) {
1477 SUnit *SU = &DAG->SUnits[Idx];
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001478 if ((IsLoad && !SU->getInstr()->mayLoad()) ||
1479 (!IsLoad && !SU->getInstr()->mayStore()))
Andrew Tricka7714a02012-11-12 19:40:10 +00001480 continue;
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001481
Andrew Tricka7714a02012-11-12 19:40:10 +00001482 unsigned ChainPredID = DAG->SUnits.size();
1483 for (SUnit::const_pred_iterator
1484 PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) {
1485 if (PI->isCtrl()) {
1486 ChainPredID = PI->getSUnit()->NodeNum;
1487 break;
1488 }
1489 }
1490 // Check if this chain-like pred has been seen
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001491 // before. ChainPredID==MaxNodeID at the top of the schedule.
Andrew Tricka7714a02012-11-12 19:40:10 +00001492 unsigned NumChains = StoreChainDependents.size();
1493 std::pair<DenseMap<unsigned, unsigned>::iterator, bool> Result =
1494 StoreChainIDs.insert(std::make_pair(ChainPredID, NumChains));
1495 if (Result.second)
1496 StoreChainDependents.resize(NumChains + 1);
1497 StoreChainDependents[Result.first->second].push_back(SU);
1498 }
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001499
Andrew Tricka7714a02012-11-12 19:40:10 +00001500 // Iterate over the store chains.
1501 for (unsigned Idx = 0, End = StoreChainDependents.size(); Idx != End; ++Idx)
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00001502 clusterNeighboringMemOps(StoreChainDependents[Idx], DAG);
Andrew Tricka7714a02012-11-12 19:40:10 +00001503}
1504
Andrew Trick02a80da2012-03-08 01:41:12 +00001505//===----------------------------------------------------------------------===//
Andrew Trick263280242012-11-12 19:52:20 +00001506// MacroFusion - DAG post-processing to encourage fusion of macro ops.
1507//===----------------------------------------------------------------------===//
1508
1509namespace {
1510/// \brief Post-process the DAG to create cluster edges between instructions
1511/// that may be fused by the processor into a single operation.
1512class MacroFusion : public ScheduleDAGMutation {
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001513 const TargetInstrInfo &TII;
Andrew Trick263280242012-11-12 19:52:20 +00001514public:
Matthias Braun325cd2c2016-11-11 01:34:21 +00001515 MacroFusion(const TargetInstrInfo &TII)
1516 : TII(TII) {}
Andrew Trick263280242012-11-12 19:52:20 +00001517
Krzysztof Parzyszek5c61d112016-03-05 15:45:23 +00001518 void apply(ScheduleDAGInstrs *DAGInstrs) override;
Andrew Trick263280242012-11-12 19:52:20 +00001519};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001520} // anonymous
Andrew Trick263280242012-11-12 19:52:20 +00001521
Tom Stellard68726a52016-08-19 19:59:18 +00001522namespace llvm {
1523
1524std::unique_ptr<ScheduleDAGMutation>
Matthias Braun325cd2c2016-11-11 01:34:21 +00001525createMacroFusionDAGMutation(const TargetInstrInfo *TII) {
1526 return make_unique<MacroFusion>(*TII);
Tom Stellard68726a52016-08-19 19:59:18 +00001527}
1528
1529} // namespace llvm
1530
Andrew Trick263280242012-11-12 19:52:20 +00001531/// \brief Callback from DAG postProcessing to create cluster edges to encourage
1532/// fused operations.
Krzysztof Parzyszek5c61d112016-03-05 15:45:23 +00001533void MacroFusion::apply(ScheduleDAGInstrs *DAGInstrs) {
1534 ScheduleDAGMI *DAG = static_cast<ScheduleDAGMI*>(DAGInstrs);
1535
Andrew Trick263280242012-11-12 19:52:20 +00001536 // For now, assume targets can only fuse with the branch.
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001537 SUnit &ExitSU = DAG->ExitSU;
1538 MachineInstr *Branch = ExitSU.getInstr();
Andrew Trick263280242012-11-12 19:52:20 +00001539 if (!Branch)
1540 return;
1541
Matthias Braun325cd2c2016-11-11 01:34:21 +00001542 for (SDep &PredDep : ExitSU.Preds) {
1543 if (PredDep.isWeak())
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001544 continue;
Matthias Braun325cd2c2016-11-11 01:34:21 +00001545 SUnit &SU = *PredDep.getSUnit();
1546 MachineInstr &Pred = *SU.getInstr();
1547 if (!TII.shouldScheduleAdjacent(Pred, *Branch))
Andrew Trick263280242012-11-12 19:52:20 +00001548 continue;
1549
1550 // Create a single weak edge from SU to ExitSU. The only effect is to cause
1551 // bottom-up scheduling to heavily prioritize the clustered SU. There is no
1552 // need to copy predecessor edges from ExitSU to SU, since top-down
1553 // scheduling cannot prioritize ExitSU anyway. To defer top-down scheduling
1554 // of SU, we could create an artificial edge from the deepest root, but it
1555 // hasn't been needed yet.
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001556 bool Success = DAG->addEdge(&ExitSU, SDep(&SU, SDep::Cluster));
Andrew Trick263280242012-11-12 19:52:20 +00001557 (void)Success;
1558 assert(Success && "No DAG nodes should be reachable from ExitSU");
1559
Matthias Braun325cd2c2016-11-11 01:34:21 +00001560 // Adjust latency of data deps between the nodes.
1561 for (SDep &PredDep : ExitSU.Preds) {
1562 if (PredDep.getSUnit() == &SU)
1563 PredDep.setLatency(0);
1564 }
1565 for (SDep &SuccDep : SU.Succs) {
1566 if (SuccDep.getSUnit() == &ExitSU)
1567 SuccDep.setLatency(0);
1568 }
1569
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001570 DEBUG(dbgs() << "Macro Fuse SU(" << SU.NodeNum << ")\n");
Andrew Trick263280242012-11-12 19:52:20 +00001571 break;
1572 }
1573}
1574
1575//===----------------------------------------------------------------------===//
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001576// CopyConstrain - DAG post-processing to encourage copy elimination.
1577//===----------------------------------------------------------------------===//
1578
1579namespace {
1580/// \brief Post-process the DAG to create weak edges from all uses of a copy to
1581/// the one use that defines the copy's source vreg, most likely an induction
1582/// variable increment.
1583class CopyConstrain : public ScheduleDAGMutation {
1584 // Transient state.
1585 SlotIndex RegionBeginIdx;
Andrew Trick2e875172013-04-24 23:19:56 +00001586 // RegionEndIdx is the slot index of the last non-debug instruction in the
1587 // scheduling region. So we may have RegionBeginIdx == RegionEndIdx.
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001588 SlotIndex RegionEndIdx;
1589public:
1590 CopyConstrain(const TargetInstrInfo *, const TargetRegisterInfo *) {}
1591
Krzysztof Parzyszek5c61d112016-03-05 15:45:23 +00001592 void apply(ScheduleDAGInstrs *DAGInstrs) override;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001593
1594protected:
Andrew Trickd7f890e2013-12-28 21:56:47 +00001595 void constrainLocalCopy(SUnit *CopySU, ScheduleDAGMILive *DAG);
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001596};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001597} // anonymous
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001598
Tom Stellard68726a52016-08-19 19:59:18 +00001599namespace llvm {
1600
1601std::unique_ptr<ScheduleDAGMutation>
1602createCopyConstrainDAGMutation(const TargetInstrInfo *TII,
1603 const TargetRegisterInfo *TRI) {
1604 return make_unique<CopyConstrain>(TII, TRI);
1605}
1606
1607} // namespace llvm
1608
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001609/// constrainLocalCopy handles two possibilities:
1610/// 1) Local src:
1611/// I0: = dst
1612/// I1: src = ...
1613/// I2: = dst
1614/// I3: dst = src (copy)
1615/// (create pred->succ edges I0->I1, I2->I1)
1616///
1617/// 2) Local copy:
1618/// I0: dst = src (copy)
1619/// I1: = dst
1620/// I2: src = ...
1621/// I3: = dst
1622/// (create pred->succ edges I1->I2, I3->I2)
1623///
1624/// Although the MachineScheduler is currently constrained to single blocks,
1625/// this algorithm should handle extended blocks. An EBB is a set of
1626/// contiguously numbered blocks such that the previous block in the EBB is
1627/// always the single predecessor.
Andrew Trickd7f890e2013-12-28 21:56:47 +00001628void CopyConstrain::constrainLocalCopy(SUnit *CopySU, ScheduleDAGMILive *DAG) {
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001629 LiveIntervals *LIS = DAG->getLIS();
1630 MachineInstr *Copy = CopySU->getInstr();
1631
1632 // Check for pure vreg copies.
Matthias Braun7511abd2016-04-04 21:23:46 +00001633 const MachineOperand &SrcOp = Copy->getOperand(1);
1634 unsigned SrcReg = SrcOp.getReg();
1635 if (!TargetRegisterInfo::isVirtualRegister(SrcReg) || !SrcOp.readsReg())
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001636 return;
1637
Matthias Braun7511abd2016-04-04 21:23:46 +00001638 const MachineOperand &DstOp = Copy->getOperand(0);
1639 unsigned DstReg = DstOp.getReg();
1640 if (!TargetRegisterInfo::isVirtualRegister(DstReg) || DstOp.isDead())
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001641 return;
1642
1643 // Check if either the dest or source is local. If it's live across a back
1644 // edge, it's not local. Note that if both vregs are live across the back
1645 // edge, we cannot successfully contrain the copy without cyclic scheduling.
Michael Kuperstein54c61ed2015-01-19 07:30:47 +00001646 // If both the copy's source and dest are local live intervals, then we
1647 // should treat the dest as the global for the purpose of adding
1648 // constraints. This adds edges from source's other uses to the copy.
1649 unsigned LocalReg = SrcReg;
1650 unsigned GlobalReg = DstReg;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001651 LiveInterval *LocalLI = &LIS->getInterval(LocalReg);
1652 if (!LocalLI->isLocal(RegionBeginIdx, RegionEndIdx)) {
Michael Kuperstein54c61ed2015-01-19 07:30:47 +00001653 LocalReg = DstReg;
1654 GlobalReg = SrcReg;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001655 LocalLI = &LIS->getInterval(LocalReg);
1656 if (!LocalLI->isLocal(RegionBeginIdx, RegionEndIdx))
1657 return;
1658 }
1659 LiveInterval *GlobalLI = &LIS->getInterval(GlobalReg);
1660
1661 // Find the global segment after the start of the local LI.
1662 LiveInterval::iterator GlobalSegment = GlobalLI->find(LocalLI->beginIndex());
1663 // If GlobalLI does not overlap LocalLI->start, then a copy directly feeds a
1664 // local live range. We could create edges from other global uses to the local
1665 // start, but the coalescer should have already eliminated these cases, so
1666 // don't bother dealing with it.
1667 if (GlobalSegment == GlobalLI->end())
1668 return;
1669
1670 // If GlobalSegment is killed at the LocalLI->start, the call to find()
1671 // returned the next global segment. But if GlobalSegment overlaps with
1672 // LocalLI->start, then advance to the next segement. If a hole in GlobalLI
1673 // exists in LocalLI's vicinity, GlobalSegment will be the end of the hole.
1674 if (GlobalSegment->contains(LocalLI->beginIndex()))
1675 ++GlobalSegment;
1676
1677 if (GlobalSegment == GlobalLI->end())
1678 return;
1679
1680 // Check if GlobalLI contains a hole in the vicinity of LocalLI.
1681 if (GlobalSegment != GlobalLI->begin()) {
1682 // Two address defs have no hole.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001683 if (SlotIndex::isSameInstr(std::prev(GlobalSegment)->end,
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001684 GlobalSegment->start)) {
1685 return;
1686 }
Andrew Trickd9761772013-07-30 19:59:08 +00001687 // If the prior global segment may be defined by the same two-address
1688 // instruction that also defines LocalLI, then can't make a hole here.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001689 if (SlotIndex::isSameInstr(std::prev(GlobalSegment)->start,
Andrew Trickd9761772013-07-30 19:59:08 +00001690 LocalLI->beginIndex())) {
1691 return;
1692 }
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001693 // If GlobalLI has a prior segment, it must be live into the EBB. Otherwise
1694 // it would be a disconnected component in the live range.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001695 assert(std::prev(GlobalSegment)->start < LocalLI->beginIndex() &&
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001696 "Disconnected LRG within the scheduling region.");
1697 }
1698 MachineInstr *GlobalDef = LIS->getInstructionFromIndex(GlobalSegment->start);
1699 if (!GlobalDef)
1700 return;
1701
1702 SUnit *GlobalSU = DAG->getSUnit(GlobalDef);
1703 if (!GlobalSU)
1704 return;
1705
1706 // GlobalDef is the bottom of the GlobalLI hole. Open the hole by
1707 // constraining the uses of the last local def to precede GlobalDef.
1708 SmallVector<SUnit*,8> LocalUses;
1709 const VNInfo *LastLocalVN = LocalLI->getVNInfoBefore(LocalLI->endIndex());
1710 MachineInstr *LastLocalDef = LIS->getInstructionFromIndex(LastLocalVN->def);
1711 SUnit *LastLocalSU = DAG->getSUnit(LastLocalDef);
1712 for (SUnit::const_succ_iterator
1713 I = LastLocalSU->Succs.begin(), E = LastLocalSU->Succs.end();
1714 I != E; ++I) {
1715 if (I->getKind() != SDep::Data || I->getReg() != LocalReg)
1716 continue;
1717 if (I->getSUnit() == GlobalSU)
1718 continue;
1719 if (!DAG->canAddEdge(GlobalSU, I->getSUnit()))
1720 return;
1721 LocalUses.push_back(I->getSUnit());
1722 }
1723 // Open the top of the GlobalLI hole by constraining any earlier global uses
1724 // to precede the start of LocalLI.
1725 SmallVector<SUnit*,8> GlobalUses;
1726 MachineInstr *FirstLocalDef =
1727 LIS->getInstructionFromIndex(LocalLI->beginIndex());
1728 SUnit *FirstLocalSU = DAG->getSUnit(FirstLocalDef);
1729 for (SUnit::const_pred_iterator
1730 I = GlobalSU->Preds.begin(), E = GlobalSU->Preds.end(); I != E; ++I) {
1731 if (I->getKind() != SDep::Anti || I->getReg() != GlobalReg)
1732 continue;
1733 if (I->getSUnit() == FirstLocalSU)
1734 continue;
1735 if (!DAG->canAddEdge(FirstLocalSU, I->getSUnit()))
1736 return;
1737 GlobalUses.push_back(I->getSUnit());
1738 }
1739 DEBUG(dbgs() << "Constraining copy SU(" << CopySU->NodeNum << ")\n");
1740 // Add the weak edges.
1741 for (SmallVectorImpl<SUnit*>::const_iterator
1742 I = LocalUses.begin(), E = LocalUses.end(); I != E; ++I) {
1743 DEBUG(dbgs() << " Local use SU(" << (*I)->NodeNum << ") -> SU("
1744 << GlobalSU->NodeNum << ")\n");
1745 DAG->addEdge(GlobalSU, SDep(*I, SDep::Weak));
1746 }
1747 for (SmallVectorImpl<SUnit*>::const_iterator
1748 I = GlobalUses.begin(), E = GlobalUses.end(); I != E; ++I) {
1749 DEBUG(dbgs() << " Global use SU(" << (*I)->NodeNum << ") -> SU("
1750 << FirstLocalSU->NodeNum << ")\n");
1751 DAG->addEdge(FirstLocalSU, SDep(*I, SDep::Weak));
1752 }
1753}
1754
1755/// \brief Callback from DAG postProcessing to create weak edges to encourage
1756/// copy elimination.
Krzysztof Parzyszek5c61d112016-03-05 15:45:23 +00001757void CopyConstrain::apply(ScheduleDAGInstrs *DAGInstrs) {
1758 ScheduleDAGMI *DAG = static_cast<ScheduleDAGMI*>(DAGInstrs);
Andrew Trickd7f890e2013-12-28 21:56:47 +00001759 assert(DAG->hasVRegLiveness() && "Expect VRegs with LiveIntervals");
1760
Andrew Trick2e875172013-04-24 23:19:56 +00001761 MachineBasicBlock::iterator FirstPos = nextIfDebug(DAG->begin(), DAG->end());
1762 if (FirstPos == DAG->end())
1763 return;
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001764 RegionBeginIdx = DAG->getLIS()->getInstructionIndex(*FirstPos);
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001765 RegionEndIdx = DAG->getLIS()->getInstructionIndex(
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001766 *priorNonDebug(DAG->end(), DAG->begin()));
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001767
1768 for (unsigned Idx = 0, End = DAG->SUnits.size(); Idx != End; ++Idx) {
1769 SUnit *SU = &DAG->SUnits[Idx];
1770 if (!SU->getInstr()->isCopy())
1771 continue;
1772
Andrew Trickd7f890e2013-12-28 21:56:47 +00001773 constrainLocalCopy(SU, static_cast<ScheduleDAGMILive*>(DAG));
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001774 }
1775}
1776
1777//===----------------------------------------------------------------------===//
Andrew Trickfc127d12013-12-07 05:59:44 +00001778// MachineSchedStrategy helpers used by GenericScheduler, GenericPostScheduler
1779// and possibly other custom schedulers.
Andrew Trickd14d7c22013-12-28 21:56:57 +00001780//===----------------------------------------------------------------------===//
Andrew Tricke1c034f2012-01-17 06:55:03 +00001781
Andrew Trick5a22df42013-12-05 17:56:02 +00001782static const unsigned InvalidCycle = ~0U;
1783
Andrew Trickfc127d12013-12-07 05:59:44 +00001784SchedBoundary::~SchedBoundary() { delete HazardRec; }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001785
Andrew Trickfc127d12013-12-07 05:59:44 +00001786void SchedBoundary::reset() {
1787 // A new HazardRec is created for each DAG and owned by SchedBoundary.
1788 // Destroying and reconstructing it is very expensive though. So keep
1789 // invalid, placeholder HazardRecs.
1790 if (HazardRec && HazardRec->isEnabled()) {
1791 delete HazardRec;
Craig Topperc0196b12014-04-14 00:51:57 +00001792 HazardRec = nullptr;
Andrew Trickfc127d12013-12-07 05:59:44 +00001793 }
1794 Available.clear();
1795 Pending.clear();
1796 CheckPending = false;
Andrew Trickfc127d12013-12-07 05:59:44 +00001797 CurrCycle = 0;
1798 CurrMOps = 0;
1799 MinReadyCycle = UINT_MAX;
1800 ExpectedLatency = 0;
1801 DependentLatency = 0;
1802 RetiredMOps = 0;
1803 MaxExecutedResCount = 0;
1804 ZoneCritResIdx = 0;
1805 IsResourceLimited = false;
1806 ReservedCycles.clear();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001807#ifndef NDEBUG
Andrew Trickd14d7c22013-12-28 21:56:57 +00001808 // Track the maximum number of stall cycles that could arise either from the
1809 // latency of a DAG edge or the number of cycles that a processor resource is
1810 // reserved (SchedBoundary::ReservedCycles).
Andrew Trick7f1ebbe2014-06-07 01:48:43 +00001811 MaxObservedStall = 0;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001812#endif
Andrew Trickfc127d12013-12-07 05:59:44 +00001813 // Reserve a zero-count for invalid CritResIdx.
1814 ExecutedResCounts.resize(1);
1815 assert(!ExecutedResCounts[0] && "nonzero count for bad resource");
1816}
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001817
Andrew Trickfc127d12013-12-07 05:59:44 +00001818void SchedRemainder::
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001819init(ScheduleDAGMI *DAG, const TargetSchedModel *SchedModel) {
1820 reset();
1821 if (!SchedModel->hasInstrSchedModel())
1822 return;
1823 RemainingCounts.resize(SchedModel->getNumProcResourceKinds());
1824 for (std::vector<SUnit>::iterator
1825 I = DAG->SUnits.begin(), E = DAG->SUnits.end(); I != E; ++I) {
1826 const MCSchedClassDesc *SC = DAG->getSchedClass(&*I);
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001827 RemIssueCount += SchedModel->getNumMicroOps(I->getInstr(), SC)
1828 * SchedModel->getMicroOpFactor();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001829 for (TargetSchedModel::ProcResIter
1830 PI = SchedModel->getWriteProcResBegin(SC),
1831 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
1832 unsigned PIdx = PI->ProcResourceIdx;
1833 unsigned Factor = SchedModel->getResourceFactor(PIdx);
1834 RemainingCounts[PIdx] += (Factor * PI->Cycles);
1835 }
1836 }
1837}
1838
Andrew Trickfc127d12013-12-07 05:59:44 +00001839void SchedBoundary::
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001840init(ScheduleDAGMI *dag, const TargetSchedModel *smodel, SchedRemainder *rem) {
1841 reset();
1842 DAG = dag;
1843 SchedModel = smodel;
1844 Rem = rem;
Andrew Trick5a22df42013-12-05 17:56:02 +00001845 if (SchedModel->hasInstrSchedModel()) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001846 ExecutedResCounts.resize(SchedModel->getNumProcResourceKinds());
Andrew Trick5a22df42013-12-05 17:56:02 +00001847 ReservedCycles.resize(SchedModel->getNumProcResourceKinds(), InvalidCycle);
1848 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001849}
1850
Andrew Trick880e5732013-12-05 17:55:58 +00001851/// Compute the stall cycles based on this SUnit's ready time. Heuristics treat
1852/// these "soft stalls" differently than the hard stall cycles based on CPU
1853/// resources and computed by checkHazard(). A fully in-order model
1854/// (MicroOpBufferSize==0) will not make use of this since instructions are not
1855/// available for scheduling until they are ready. However, a weaker in-order
1856/// model may use this for heuristics. For example, if a processor has in-order
1857/// behavior when reading certain resources, this may come into play.
Andrew Trickfc127d12013-12-07 05:59:44 +00001858unsigned SchedBoundary::getLatencyStallCycles(SUnit *SU) {
Andrew Trick880e5732013-12-05 17:55:58 +00001859 if (!SU->isUnbuffered)
1860 return 0;
1861
1862 unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle);
1863 if (ReadyCycle > CurrCycle)
1864 return ReadyCycle - CurrCycle;
1865 return 0;
1866}
1867
Andrew Trick5a22df42013-12-05 17:56:02 +00001868/// Compute the next cycle at which the given processor resource can be
1869/// scheduled.
Andrew Trickfc127d12013-12-07 05:59:44 +00001870unsigned SchedBoundary::
Andrew Trick5a22df42013-12-05 17:56:02 +00001871getNextResourceCycle(unsigned PIdx, unsigned Cycles) {
1872 unsigned NextUnreserved = ReservedCycles[PIdx];
1873 // If this resource has never been used, always return cycle zero.
1874 if (NextUnreserved == InvalidCycle)
1875 return 0;
1876 // For bottom-up scheduling add the cycles needed for the current operation.
1877 if (!isTop())
1878 NextUnreserved += Cycles;
1879 return NextUnreserved;
1880}
1881
Andrew Trick8c9e6722012-06-29 03:23:24 +00001882/// Does this SU have a hazard within the current instruction group.
1883///
1884/// The scheduler supports two modes of hazard recognition. The first is the
1885/// ScheduleHazardRecognizer API. It is a fully general hazard recognizer that
1886/// supports highly complicated in-order reservation tables
1887/// (ScoreboardHazardRecognizer) and arbitraty target-specific logic.
1888///
1889/// The second is a streamlined mechanism that checks for hazards based on
1890/// simple counters that the scheduler itself maintains. It explicitly checks
1891/// for instruction dispatch limitations, including the number of micro-ops that
1892/// can dispatch per cycle.
1893///
1894/// TODO: Also check whether the SU must start a new group.
Andrew Trickfc127d12013-12-07 05:59:44 +00001895bool SchedBoundary::checkHazard(SUnit *SU) {
Andrew Trickd14d7c22013-12-28 21:56:57 +00001896 if (HazardRec->isEnabled()
1897 && HazardRec->getHazardType(SU) != ScheduleHazardRecognizer::NoHazard) {
1898 return true;
1899 }
Andrew Trickdd79f0f2012-10-10 05:43:09 +00001900 unsigned uops = SchedModel->getNumMicroOps(SU->getInstr());
Andrew Tricke2ff5752013-06-15 04:49:49 +00001901 if ((CurrMOps > 0) && (CurrMOps + uops > SchedModel->getIssueWidth())) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001902 DEBUG(dbgs() << " SU(" << SU->NodeNum << ") uops="
1903 << SchedModel->getNumMicroOps(SU->getInstr()) << '\n');
Andrew Trick8c9e6722012-06-29 03:23:24 +00001904 return true;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001905 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001906 if (SchedModel->hasInstrSchedModel() && SU->hasReservedResource) {
1907 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
1908 for (TargetSchedModel::ProcResIter
1909 PI = SchedModel->getWriteProcResBegin(SC),
1910 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
Andrew Trick56327222014-06-27 04:57:05 +00001911 unsigned NRCycle = getNextResourceCycle(PI->ProcResourceIdx, PI->Cycles);
1912 if (NRCycle > CurrCycle) {
Andrew Trick040c0da2014-06-27 05:09:36 +00001913#ifndef NDEBUG
Chad Rosieraba845e2014-07-02 16:46:08 +00001914 MaxObservedStall = std::max(PI->Cycles, MaxObservedStall);
Andrew Trick040c0da2014-06-27 05:09:36 +00001915#endif
Andrew Trick56327222014-06-27 04:57:05 +00001916 DEBUG(dbgs() << " SU(" << SU->NodeNum << ") "
1917 << SchedModel->getResourceName(PI->ProcResourceIdx)
1918 << "=" << NRCycle << "c\n");
Andrew Trick5a22df42013-12-05 17:56:02 +00001919 return true;
Andrew Trick56327222014-06-27 04:57:05 +00001920 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001921 }
1922 }
Andrew Trick8c9e6722012-06-29 03:23:24 +00001923 return false;
1924}
1925
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001926// Find the unscheduled node in ReadySUs with the highest latency.
Andrew Trickfc127d12013-12-07 05:59:44 +00001927unsigned SchedBoundary::
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001928findMaxLatency(ArrayRef<SUnit*> ReadySUs) {
Craig Topperc0196b12014-04-14 00:51:57 +00001929 SUnit *LateSU = nullptr;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001930 unsigned RemLatency = 0;
1931 for (ArrayRef<SUnit*>::iterator I = ReadySUs.begin(), E = ReadySUs.end();
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001932 I != E; ++I) {
1933 unsigned L = getUnscheduledLatency(*I);
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001934 if (L > RemLatency) {
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001935 RemLatency = L;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001936 LateSU = *I;
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001937 }
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001938 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001939 if (LateSU) {
1940 DEBUG(dbgs() << Available.getName() << " RemLatency SU("
1941 << LateSU->NodeNum << ") " << RemLatency << "c\n");
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001942 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001943 return RemLatency;
1944}
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001945
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001946// Count resources in this zone and the remaining unscheduled
1947// instruction. Return the max count, scaled. Set OtherCritIdx to the critical
1948// resource index, or zero if the zone is issue limited.
Andrew Trickfc127d12013-12-07 05:59:44 +00001949unsigned SchedBoundary::
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001950getOtherResourceCount(unsigned &OtherCritIdx) {
Alexey Samsonov64c391d2013-07-19 08:55:18 +00001951 OtherCritIdx = 0;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001952 if (!SchedModel->hasInstrSchedModel())
1953 return 0;
1954
1955 unsigned OtherCritCount = Rem->RemIssueCount
1956 + (RetiredMOps * SchedModel->getMicroOpFactor());
1957 DEBUG(dbgs() << " " << Available.getName() << " + Remain MOps: "
1958 << OtherCritCount / SchedModel->getMicroOpFactor() << '\n');
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001959 for (unsigned PIdx = 1, PEnd = SchedModel->getNumProcResourceKinds();
1960 PIdx != PEnd; ++PIdx) {
1961 unsigned OtherCount = getResourceCount(PIdx) + Rem->RemainingCounts[PIdx];
1962 if (OtherCount > OtherCritCount) {
1963 OtherCritCount = OtherCount;
1964 OtherCritIdx = PIdx;
1965 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001966 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001967 if (OtherCritIdx) {
1968 DEBUG(dbgs() << " " << Available.getName() << " + Remain CritRes: "
1969 << OtherCritCount / SchedModel->getResourceFactor(OtherCritIdx)
Andrew Trickfc127d12013-12-07 05:59:44 +00001970 << " " << SchedModel->getResourceName(OtherCritIdx) << "\n");
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001971 }
1972 return OtherCritCount;
1973}
1974
Andrew Trickfc127d12013-12-07 05:59:44 +00001975void SchedBoundary::releaseNode(SUnit *SU, unsigned ReadyCycle) {
Andrew Trick7f1ebbe2014-06-07 01:48:43 +00001976 assert(SU->getInstr() && "Scheduled SUnit must have instr");
1977
1978#ifndef NDEBUG
Andrew Trick491e34a2014-06-12 22:36:28 +00001979 // ReadyCycle was been bumped up to the CurrCycle when this node was
1980 // scheduled, but CurrCycle may have been eagerly advanced immediately after
1981 // scheduling, so may now be greater than ReadyCycle.
1982 if (ReadyCycle > CurrCycle)
1983 MaxObservedStall = std::max(ReadyCycle - CurrCycle, MaxObservedStall);
Andrew Trick7f1ebbe2014-06-07 01:48:43 +00001984#endif
1985
Andrew Trick61f1a272012-05-24 22:11:09 +00001986 if (ReadyCycle < MinReadyCycle)
1987 MinReadyCycle = ReadyCycle;
1988
1989 // Check for interlocks first. For the purpose of other heuristics, an
1990 // instruction that cannot issue appears as if it's not in the ReadyQueue.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001991 bool IsBuffered = SchedModel->getMicroOpBufferSize() != 0;
Matthias Braun6493bc22016-04-22 19:09:17 +00001992 if ((!IsBuffered && ReadyCycle > CurrCycle) || checkHazard(SU) ||
1993 Available.size() >= ReadyListLimit)
Andrew Trick61f1a272012-05-24 22:11:09 +00001994 Pending.push(SU);
1995 else
1996 Available.push(SU);
1997}
1998
1999/// Move the boundary of scheduled code by one cycle.
Andrew Trickfc127d12013-12-07 05:59:44 +00002000void SchedBoundary::bumpCycle(unsigned NextCycle) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002001 if (SchedModel->getMicroOpBufferSize() == 0) {
2002 assert(MinReadyCycle < UINT_MAX && "MinReadyCycle uninitialized");
2003 if (MinReadyCycle > NextCycle)
2004 NextCycle = MinReadyCycle;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002005 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002006 // Update the current micro-ops, which will issue in the next cycle.
2007 unsigned DecMOps = SchedModel->getIssueWidth() * (NextCycle - CurrCycle);
2008 CurrMOps = (CurrMOps <= DecMOps) ? 0 : CurrMOps - DecMOps;
2009
2010 // Decrement DependentLatency based on the next cycle.
Andrew Trickf5b8ef22013-06-15 04:49:44 +00002011 if ((NextCycle - CurrCycle) > DependentLatency)
2012 DependentLatency = 0;
2013 else
2014 DependentLatency -= (NextCycle - CurrCycle);
Andrew Trick61f1a272012-05-24 22:11:09 +00002015
2016 if (!HazardRec->isEnabled()) {
Andrew Trick45446062012-06-05 21:11:27 +00002017 // Bypass HazardRec virtual calls.
Andrew Trick61f1a272012-05-24 22:11:09 +00002018 CurrCycle = NextCycle;
Matthias Braunb550b762016-04-21 01:54:13 +00002019 } else {
Andrew Trick45446062012-06-05 21:11:27 +00002020 // Bypass getHazardType calls in case of long latency.
Andrew Trick61f1a272012-05-24 22:11:09 +00002021 for (; CurrCycle != NextCycle; ++CurrCycle) {
2022 if (isTop())
2023 HazardRec->AdvanceCycle();
2024 else
2025 HazardRec->RecedeCycle();
2026 }
2027 }
2028 CheckPending = true;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002029 unsigned LFactor = SchedModel->getLatencyFactor();
2030 IsResourceLimited =
2031 (int)(getCriticalCount() - (getScheduledLatency() * LFactor))
2032 > (int)LFactor;
Andrew Trick61f1a272012-05-24 22:11:09 +00002033
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002034 DEBUG(dbgs() << "Cycle: " << CurrCycle << ' ' << Available.getName() << '\n');
2035}
2036
Andrew Trickfc127d12013-12-07 05:59:44 +00002037void SchedBoundary::incExecutedResources(unsigned PIdx, unsigned Count) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002038 ExecutedResCounts[PIdx] += Count;
2039 if (ExecutedResCounts[PIdx] > MaxExecutedResCount)
2040 MaxExecutedResCount = ExecutedResCounts[PIdx];
Andrew Trick61f1a272012-05-24 22:11:09 +00002041}
2042
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002043/// Add the given processor resource to this scheduled zone.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002044///
2045/// \param Cycles indicates the number of consecutive (non-pipelined) cycles
2046/// during which this resource is consumed.
2047///
2048/// \return the next cycle at which the instruction may execute without
2049/// oversubscribing resources.
Andrew Trickfc127d12013-12-07 05:59:44 +00002050unsigned SchedBoundary::
Andrew Trick5a22df42013-12-05 17:56:02 +00002051countResource(unsigned PIdx, unsigned Cycles, unsigned NextCycle) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002052 unsigned Factor = SchedModel->getResourceFactor(PIdx);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002053 unsigned Count = Factor * Cycles;
Andrew Trickfc127d12013-12-07 05:59:44 +00002054 DEBUG(dbgs() << " " << SchedModel->getResourceName(PIdx)
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002055 << " +" << Cycles << "x" << Factor << "u\n");
2056
2057 // Update Executed resources counts.
2058 incExecutedResources(PIdx, Count);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002059 assert(Rem->RemainingCounts[PIdx] >= Count && "resource double counted");
2060 Rem->RemainingCounts[PIdx] -= Count;
2061
Andrew Trickb13ef172013-07-19 00:20:07 +00002062 // Check if this resource exceeds the current critical resource. If so, it
2063 // becomes the critical resource.
2064 if (ZoneCritResIdx != PIdx && (getResourceCount(PIdx) > getCriticalCount())) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002065 ZoneCritResIdx = PIdx;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002066 DEBUG(dbgs() << " *** Critical resource "
Andrew Trickfc127d12013-12-07 05:59:44 +00002067 << SchedModel->getResourceName(PIdx) << ": "
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002068 << getResourceCount(PIdx) / SchedModel->getLatencyFactor() << "c\n");
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002069 }
Andrew Trick5a22df42013-12-05 17:56:02 +00002070 // For reserved resources, record the highest cycle using the resource.
2071 unsigned NextAvailable = getNextResourceCycle(PIdx, Cycles);
2072 if (NextAvailable > CurrCycle) {
2073 DEBUG(dbgs() << " Resource conflict: "
2074 << SchedModel->getProcResource(PIdx)->Name << " reserved until @"
2075 << NextAvailable << "\n");
2076 }
2077 return NextAvailable;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002078}
2079
Andrew Trick45446062012-06-05 21:11:27 +00002080/// Move the boundary of scheduled code by one SUnit.
Andrew Trickfc127d12013-12-07 05:59:44 +00002081void SchedBoundary::bumpNode(SUnit *SU) {
Andrew Trick45446062012-06-05 21:11:27 +00002082 // Update the reservation table.
2083 if (HazardRec->isEnabled()) {
2084 if (!isTop() && SU->isCall) {
2085 // Calls are scheduled with their preceding instructions. For bottom-up
2086 // scheduling, clear the pipeline state before emitting.
2087 HazardRec->Reset();
2088 }
2089 HazardRec->EmitInstruction(SU);
2090 }
Andrew Trick5a22df42013-12-05 17:56:02 +00002091 // checkHazard should prevent scheduling multiple instructions per cycle that
2092 // exceed the issue width.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002093 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
2094 unsigned IncMOps = SchedModel->getNumMicroOps(SU->getInstr());
Daniel Jasper0d92abd2013-12-06 08:58:22 +00002095 assert(
2096 (CurrMOps == 0 || (CurrMOps + IncMOps) <= SchedModel->getIssueWidth()) &&
Andrew Trickf7760a22013-12-06 17:19:20 +00002097 "Cannot schedule this instruction's MicroOps in the current cycle.");
Andrew Trick5a22df42013-12-05 17:56:02 +00002098
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002099 unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle);
2100 DEBUG(dbgs() << " Ready @" << ReadyCycle << "c\n");
2101
Andrew Trick5a22df42013-12-05 17:56:02 +00002102 unsigned NextCycle = CurrCycle;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002103 switch (SchedModel->getMicroOpBufferSize()) {
2104 case 0:
2105 assert(ReadyCycle <= CurrCycle && "Broken PendingQueue");
2106 break;
2107 case 1:
2108 if (ReadyCycle > NextCycle) {
2109 NextCycle = ReadyCycle;
2110 DEBUG(dbgs() << " *** Stall until: " << ReadyCycle << "\n");
2111 }
2112 break;
2113 default:
2114 // We don't currently model the OOO reorder buffer, so consider all
Andrew Trick880e5732013-12-05 17:55:58 +00002115 // scheduled MOps to be "retired". We do loosely model in-order resource
2116 // latency. If this instruction uses an in-order resource, account for any
2117 // likely stall cycles.
2118 if (SU->isUnbuffered && ReadyCycle > NextCycle)
2119 NextCycle = ReadyCycle;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002120 break;
2121 }
2122 RetiredMOps += IncMOps;
2123
2124 // Update resource counts and critical resource.
2125 if (SchedModel->hasInstrSchedModel()) {
2126 unsigned DecRemIssue = IncMOps * SchedModel->getMicroOpFactor();
2127 assert(Rem->RemIssueCount >= DecRemIssue && "MOps double counted");
2128 Rem->RemIssueCount -= DecRemIssue;
2129 if (ZoneCritResIdx) {
2130 // Scale scheduled micro-ops for comparing with the critical resource.
2131 unsigned ScaledMOps =
2132 RetiredMOps * SchedModel->getMicroOpFactor();
2133
2134 // If scaled micro-ops are now more than the previous critical resource by
2135 // a full cycle, then micro-ops issue becomes critical.
2136 if ((int)(ScaledMOps - getResourceCount(ZoneCritResIdx))
2137 >= (int)SchedModel->getLatencyFactor()) {
2138 ZoneCritResIdx = 0;
2139 DEBUG(dbgs() << " *** Critical resource NumMicroOps: "
2140 << ScaledMOps / SchedModel->getLatencyFactor() << "c\n");
2141 }
2142 }
2143 for (TargetSchedModel::ProcResIter
2144 PI = SchedModel->getWriteProcResBegin(SC),
2145 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
2146 unsigned RCycle =
Andrew Trick5a22df42013-12-05 17:56:02 +00002147 countResource(PI->ProcResourceIdx, PI->Cycles, NextCycle);
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002148 if (RCycle > NextCycle)
2149 NextCycle = RCycle;
2150 }
Andrew Trick5a22df42013-12-05 17:56:02 +00002151 if (SU->hasReservedResource) {
2152 // For reserved resources, record the highest cycle using the resource.
2153 // For top-down scheduling, this is the cycle in which we schedule this
2154 // instruction plus the number of cycles the operations reserves the
2155 // resource. For bottom-up is it simply the instruction's cycle.
2156 for (TargetSchedModel::ProcResIter
2157 PI = SchedModel->getWriteProcResBegin(SC),
2158 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
2159 unsigned PIdx = PI->ProcResourceIdx;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002160 if (SchedModel->getProcResource(PIdx)->BufferSize == 0) {
Chad Rosieraba845e2014-07-02 16:46:08 +00002161 if (isTop()) {
2162 ReservedCycles[PIdx] =
2163 std::max(getNextResourceCycle(PIdx, 0), NextCycle + PI->Cycles);
2164 }
2165 else
2166 ReservedCycles[PIdx] = NextCycle;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002167 }
Andrew Trick5a22df42013-12-05 17:56:02 +00002168 }
2169 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002170 }
2171 // Update ExpectedLatency and DependentLatency.
2172 unsigned &TopLatency = isTop() ? ExpectedLatency : DependentLatency;
2173 unsigned &BotLatency = isTop() ? DependentLatency : ExpectedLatency;
2174 if (SU->getDepth() > TopLatency) {
2175 TopLatency = SU->getDepth();
2176 DEBUG(dbgs() << " " << Available.getName()
2177 << " TopLatency SU(" << SU->NodeNum << ") " << TopLatency << "c\n");
2178 }
2179 if (SU->getHeight() > BotLatency) {
2180 BotLatency = SU->getHeight();
2181 DEBUG(dbgs() << " " << Available.getName()
2182 << " BotLatency SU(" << SU->NodeNum << ") " << BotLatency << "c\n");
2183 }
2184 // If we stall for any reason, bump the cycle.
2185 if (NextCycle > CurrCycle) {
2186 bumpCycle(NextCycle);
Matthias Braunb550b762016-04-21 01:54:13 +00002187 } else {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002188 // After updating ZoneCritResIdx and ExpectedLatency, check if we're
Alp Tokercb402912014-01-24 17:20:08 +00002189 // resource limited. If a stall occurred, bumpCycle does this.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002190 unsigned LFactor = SchedModel->getLatencyFactor();
2191 IsResourceLimited =
2192 (int)(getCriticalCount() - (getScheduledLatency() * LFactor))
2193 > (int)LFactor;
2194 }
Andrew Trick5a22df42013-12-05 17:56:02 +00002195 // Update CurrMOps after calling bumpCycle to handle stalls, since bumpCycle
2196 // resets CurrMOps. Loop to handle instructions with more MOps than issue in
2197 // one cycle. Since we commonly reach the max MOps here, opportunistically
2198 // bump the cycle to avoid uselessly checking everything in the readyQ.
2199 CurrMOps += IncMOps;
2200 while (CurrMOps >= SchedModel->getIssueWidth()) {
Andrew Trick5a22df42013-12-05 17:56:02 +00002201 DEBUG(dbgs() << " *** Max MOps " << CurrMOps
2202 << " at cycle " << CurrCycle << '\n');
Andrew Trickd14d7c22013-12-28 21:56:57 +00002203 bumpCycle(++NextCycle);
Andrew Trick5a22df42013-12-05 17:56:02 +00002204 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002205 DEBUG(dumpScheduledState());
Andrew Trick45446062012-06-05 21:11:27 +00002206}
2207
Andrew Trick61f1a272012-05-24 22:11:09 +00002208/// Release pending ready nodes in to the available queue. This makes them
2209/// visible to heuristics.
Andrew Trickfc127d12013-12-07 05:59:44 +00002210void SchedBoundary::releasePending() {
Andrew Trick61f1a272012-05-24 22:11:09 +00002211 // If the available queue is empty, it is safe to reset MinReadyCycle.
2212 if (Available.empty())
2213 MinReadyCycle = UINT_MAX;
2214
2215 // Check to see if any of the pending instructions are ready to issue. If
2216 // so, add them to the available queue.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002217 bool IsBuffered = SchedModel->getMicroOpBufferSize() != 0;
Andrew Trick61f1a272012-05-24 22:11:09 +00002218 for (unsigned i = 0, e = Pending.size(); i != e; ++i) {
2219 SUnit *SU = *(Pending.begin()+i);
Andrew Trick45446062012-06-05 21:11:27 +00002220 unsigned ReadyCycle = isTop() ? SU->TopReadyCycle : SU->BotReadyCycle;
Andrew Trick61f1a272012-05-24 22:11:09 +00002221
2222 if (ReadyCycle < MinReadyCycle)
2223 MinReadyCycle = ReadyCycle;
2224
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002225 if (!IsBuffered && ReadyCycle > CurrCycle)
Andrew Trick61f1a272012-05-24 22:11:09 +00002226 continue;
2227
Andrew Trick8c9e6722012-06-29 03:23:24 +00002228 if (checkHazard(SU))
Andrew Trick61f1a272012-05-24 22:11:09 +00002229 continue;
2230
Matthias Braun6493bc22016-04-22 19:09:17 +00002231 if (Available.size() >= ReadyListLimit)
2232 break;
2233
Andrew Trick61f1a272012-05-24 22:11:09 +00002234 Available.push(SU);
2235 Pending.remove(Pending.begin()+i);
2236 --i; --e;
2237 }
2238 CheckPending = false;
2239}
2240
2241/// Remove SU from the ready set for this boundary.
Andrew Trickfc127d12013-12-07 05:59:44 +00002242void SchedBoundary::removeReady(SUnit *SU) {
Andrew Trick61f1a272012-05-24 22:11:09 +00002243 if (Available.isInQueue(SU))
2244 Available.remove(Available.find(SU));
2245 else {
2246 assert(Pending.isInQueue(SU) && "bad ready count");
2247 Pending.remove(Pending.find(SU));
2248 }
2249}
2250
2251/// If this queue only has one ready candidate, return it. As a side effect,
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002252/// defer any nodes that now hit a hazard, and advance the cycle until at least
2253/// one node is ready. If multiple instructions are ready, return NULL.
Andrew Trickfc127d12013-12-07 05:59:44 +00002254SUnit *SchedBoundary::pickOnlyChoice() {
Andrew Trick61f1a272012-05-24 22:11:09 +00002255 if (CheckPending)
2256 releasePending();
2257
Andrew Tricke2ff5752013-06-15 04:49:49 +00002258 if (CurrMOps > 0) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002259 // Defer any ready instrs that now have a hazard.
2260 for (ReadyQueue::iterator I = Available.begin(); I != Available.end();) {
2261 if (checkHazard(*I)) {
2262 Pending.push(*I);
2263 I = Available.remove(I);
2264 continue;
2265 }
2266 ++I;
2267 }
2268 }
Andrew Trick61f1a272012-05-24 22:11:09 +00002269 for (unsigned i = 0; Available.empty(); ++i) {
Chad Rosieraba845e2014-07-02 16:46:08 +00002270// FIXME: Re-enable assert once PR20057 is resolved.
2271// assert(i <= (HazardRec->getMaxLookAhead() + MaxObservedStall) &&
2272// "permanent hazard");
2273 (void)i;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002274 bumpCycle(CurrCycle + 1);
Andrew Trick61f1a272012-05-24 22:11:09 +00002275 releasePending();
2276 }
Matthias Braund29d31e2016-06-23 21:27:38 +00002277
2278 DEBUG(Pending.dump());
2279 DEBUG(Available.dump());
2280
Andrew Trick61f1a272012-05-24 22:11:09 +00002281 if (Available.size() == 1)
2282 return *Available.begin();
Craig Topperc0196b12014-04-14 00:51:57 +00002283 return nullptr;
Andrew Trick61f1a272012-05-24 22:11:09 +00002284}
2285
Andrew Trick8e8415f2013-06-15 05:46:47 +00002286#ifndef NDEBUG
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002287// This is useful information to dump after bumpNode.
2288// Note that the Queue contents are more useful before pickNodeFromQueue.
Andrew Trickfc127d12013-12-07 05:59:44 +00002289void SchedBoundary::dumpScheduledState() {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002290 unsigned ResFactor;
2291 unsigned ResCount;
2292 if (ZoneCritResIdx) {
2293 ResFactor = SchedModel->getResourceFactor(ZoneCritResIdx);
2294 ResCount = getResourceCount(ZoneCritResIdx);
Matthias Braunb550b762016-04-21 01:54:13 +00002295 } else {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002296 ResFactor = SchedModel->getMicroOpFactor();
2297 ResCount = RetiredMOps * SchedModel->getMicroOpFactor();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002298 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002299 unsigned LFactor = SchedModel->getLatencyFactor();
2300 dbgs() << Available.getName() << " @" << CurrCycle << "c\n"
2301 << " Retired: " << RetiredMOps;
2302 dbgs() << "\n Executed: " << getExecutedCount() / LFactor << "c";
2303 dbgs() << "\n Critical: " << ResCount / LFactor << "c, "
Andrew Trickfc127d12013-12-07 05:59:44 +00002304 << ResCount / ResFactor << " "
2305 << SchedModel->getResourceName(ZoneCritResIdx)
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002306 << "\n ExpectedLatency: " << ExpectedLatency << "c\n"
2307 << (IsResourceLimited ? " - Resource" : " - Latency")
2308 << " limited.\n";
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002309}
Andrew Trick8e8415f2013-06-15 05:46:47 +00002310#endif
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002311
Andrew Trickfc127d12013-12-07 05:59:44 +00002312//===----------------------------------------------------------------------===//
Andrew Trickd14d7c22013-12-28 21:56:57 +00002313// GenericScheduler - Generic implementation of MachineSchedStrategy.
Andrew Trickfc127d12013-12-07 05:59:44 +00002314//===----------------------------------------------------------------------===//
2315
Andrew Trickd14d7c22013-12-28 21:56:57 +00002316void GenericSchedulerBase::SchedCandidate::
2317initResourceDelta(const ScheduleDAGMI *DAG,
2318 const TargetSchedModel *SchedModel) {
2319 if (!Policy.ReduceResIdx && !Policy.DemandResIdx)
2320 return;
2321
2322 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
2323 for (TargetSchedModel::ProcResIter
2324 PI = SchedModel->getWriteProcResBegin(SC),
2325 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
2326 if (PI->ProcResourceIdx == Policy.ReduceResIdx)
2327 ResDelta.CritResources += PI->Cycles;
2328 if (PI->ProcResourceIdx == Policy.DemandResIdx)
2329 ResDelta.DemandedResources += PI->Cycles;
2330 }
2331}
2332
2333/// Set the CandPolicy given a scheduling zone given the current resources and
2334/// latencies inside and outside the zone.
Matthias Braunb550b762016-04-21 01:54:13 +00002335void GenericSchedulerBase::setPolicy(CandPolicy &Policy, bool IsPostRA,
Andrew Trickd14d7c22013-12-28 21:56:57 +00002336 SchedBoundary &CurrZone,
2337 SchedBoundary *OtherZone) {
Eric Christopher572e03a2015-06-19 01:53:21 +00002338 // Apply preemptive heuristics based on the total latency and resources
Andrew Trickd14d7c22013-12-28 21:56:57 +00002339 // inside and outside this zone. Potential stalls should be considered before
2340 // following this policy.
2341
2342 // Compute remaining latency. We need this both to determine whether the
2343 // overall schedule has become latency-limited and whether the instructions
2344 // outside this zone are resource or latency limited.
2345 //
2346 // The "dependent" latency is updated incrementally during scheduling as the
2347 // max height/depth of scheduled nodes minus the cycles since it was
2348 // scheduled:
2349 // DLat = max (N.depth - (CurrCycle - N.ReadyCycle) for N in Zone
2350 //
2351 // The "independent" latency is the max ready queue depth:
2352 // ILat = max N.depth for N in Available|Pending
2353 //
2354 // RemainingLatency is the greater of independent and dependent latency.
2355 unsigned RemLatency = CurrZone.getDependentLatency();
2356 RemLatency = std::max(RemLatency,
2357 CurrZone.findMaxLatency(CurrZone.Available.elements()));
2358 RemLatency = std::max(RemLatency,
2359 CurrZone.findMaxLatency(CurrZone.Pending.elements()));
2360
2361 // Compute the critical resource outside the zone.
Andrew Trick7afe4812013-12-28 22:25:57 +00002362 unsigned OtherCritIdx = 0;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002363 unsigned OtherCount =
2364 OtherZone ? OtherZone->getOtherResourceCount(OtherCritIdx) : 0;
2365
2366 bool OtherResLimited = false;
2367 if (SchedModel->hasInstrSchedModel()) {
2368 unsigned LFactor = SchedModel->getLatencyFactor();
2369 OtherResLimited = (int)(OtherCount - (RemLatency * LFactor)) > (int)LFactor;
2370 }
2371 // Schedule aggressively for latency in PostRA mode. We don't check for
2372 // acyclic latency during PostRA, and highly out-of-order processors will
2373 // skip PostRA scheduling.
2374 if (!OtherResLimited) {
2375 if (IsPostRA || (RemLatency + CurrZone.getCurrCycle() > Rem.CriticalPath)) {
2376 Policy.ReduceLatency |= true;
2377 DEBUG(dbgs() << " " << CurrZone.Available.getName()
2378 << " RemainingLatency " << RemLatency << " + "
2379 << CurrZone.getCurrCycle() << "c > CritPath "
2380 << Rem.CriticalPath << "\n");
2381 }
2382 }
2383 // If the same resource is limiting inside and outside the zone, do nothing.
2384 if (CurrZone.getZoneCritResIdx() == OtherCritIdx)
2385 return;
2386
2387 DEBUG(
2388 if (CurrZone.isResourceLimited()) {
2389 dbgs() << " " << CurrZone.Available.getName() << " ResourceLimited: "
2390 << SchedModel->getResourceName(CurrZone.getZoneCritResIdx())
2391 << "\n";
2392 }
2393 if (OtherResLimited)
2394 dbgs() << " RemainingLimit: "
2395 << SchedModel->getResourceName(OtherCritIdx) << "\n";
2396 if (!CurrZone.isResourceLimited() && !OtherResLimited)
2397 dbgs() << " Latency limited both directions.\n");
2398
2399 if (CurrZone.isResourceLimited() && !Policy.ReduceResIdx)
2400 Policy.ReduceResIdx = CurrZone.getZoneCritResIdx();
2401
2402 if (OtherResLimited)
2403 Policy.DemandResIdx = OtherCritIdx;
2404}
2405
2406#ifndef NDEBUG
2407const char *GenericSchedulerBase::getReasonStr(
2408 GenericSchedulerBase::CandReason Reason) {
2409 switch (Reason) {
2410 case NoCand: return "NOCAND ";
Matthias Braun49cb6e92016-05-27 22:14:26 +00002411 case Only1: return "ONLY1 ";
2412 case PhysRegCopy: return "PREG-COPY ";
Andrew Trickd14d7c22013-12-28 21:56:57 +00002413 case RegExcess: return "REG-EXCESS";
2414 case RegCritical: return "REG-CRIT ";
2415 case Stall: return "STALL ";
2416 case Cluster: return "CLUSTER ";
2417 case Weak: return "WEAK ";
2418 case RegMax: return "REG-MAX ";
2419 case ResourceReduce: return "RES-REDUCE";
2420 case ResourceDemand: return "RES-DEMAND";
2421 case TopDepthReduce: return "TOP-DEPTH ";
2422 case TopPathReduce: return "TOP-PATH ";
2423 case BotHeightReduce:return "BOT-HEIGHT";
2424 case BotPathReduce: return "BOT-PATH ";
2425 case NextDefUse: return "DEF-USE ";
2426 case NodeOrder: return "ORDER ";
2427 };
2428 llvm_unreachable("Unknown reason!");
2429}
2430
2431void GenericSchedulerBase::traceCandidate(const SchedCandidate &Cand) {
2432 PressureChange P;
2433 unsigned ResIdx = 0;
2434 unsigned Latency = 0;
2435 switch (Cand.Reason) {
2436 default:
2437 break;
2438 case RegExcess:
2439 P = Cand.RPDelta.Excess;
2440 break;
2441 case RegCritical:
2442 P = Cand.RPDelta.CriticalMax;
2443 break;
2444 case RegMax:
2445 P = Cand.RPDelta.CurrentMax;
2446 break;
2447 case ResourceReduce:
2448 ResIdx = Cand.Policy.ReduceResIdx;
2449 break;
2450 case ResourceDemand:
2451 ResIdx = Cand.Policy.DemandResIdx;
2452 break;
2453 case TopDepthReduce:
2454 Latency = Cand.SU->getDepth();
2455 break;
2456 case TopPathReduce:
2457 Latency = Cand.SU->getHeight();
2458 break;
2459 case BotHeightReduce:
2460 Latency = Cand.SU->getHeight();
2461 break;
2462 case BotPathReduce:
2463 Latency = Cand.SU->getDepth();
2464 break;
2465 }
James Y Knighte72b0db2015-09-18 18:52:20 +00002466 dbgs() << " Cand SU(" << Cand.SU->NodeNum << ") " << getReasonStr(Cand.Reason);
Andrew Trickd14d7c22013-12-28 21:56:57 +00002467 if (P.isValid())
2468 dbgs() << " " << TRI->getRegPressureSetName(P.getPSet())
2469 << ":" << P.getUnitInc() << " ";
2470 else
2471 dbgs() << " ";
2472 if (ResIdx)
2473 dbgs() << " " << SchedModel->getProcResource(ResIdx)->Name << " ";
2474 else
2475 dbgs() << " ";
2476 if (Latency)
2477 dbgs() << " " << Latency << " cycles ";
2478 else
2479 dbgs() << " ";
2480 dbgs() << '\n';
2481}
2482#endif
2483
2484/// Return true if this heuristic determines order.
2485static bool tryLess(int TryVal, int CandVal,
2486 GenericSchedulerBase::SchedCandidate &TryCand,
2487 GenericSchedulerBase::SchedCandidate &Cand,
2488 GenericSchedulerBase::CandReason Reason) {
2489 if (TryVal < CandVal) {
2490 TryCand.Reason = Reason;
2491 return true;
2492 }
2493 if (TryVal > CandVal) {
2494 if (Cand.Reason > Reason)
2495 Cand.Reason = Reason;
2496 return true;
2497 }
Andrew Trickd14d7c22013-12-28 21:56:57 +00002498 return false;
2499}
2500
2501static bool tryGreater(int TryVal, int CandVal,
2502 GenericSchedulerBase::SchedCandidate &TryCand,
2503 GenericSchedulerBase::SchedCandidate &Cand,
2504 GenericSchedulerBase::CandReason Reason) {
2505 if (TryVal > CandVal) {
2506 TryCand.Reason = Reason;
2507 return true;
2508 }
2509 if (TryVal < CandVal) {
2510 if (Cand.Reason > Reason)
2511 Cand.Reason = Reason;
2512 return true;
2513 }
Andrew Trickd14d7c22013-12-28 21:56:57 +00002514 return false;
2515}
2516
2517static bool tryLatency(GenericSchedulerBase::SchedCandidate &TryCand,
2518 GenericSchedulerBase::SchedCandidate &Cand,
2519 SchedBoundary &Zone) {
2520 if (Zone.isTop()) {
2521 if (Cand.SU->getDepth() > Zone.getScheduledLatency()) {
2522 if (tryLess(TryCand.SU->getDepth(), Cand.SU->getDepth(),
2523 TryCand, Cand, GenericSchedulerBase::TopDepthReduce))
2524 return true;
2525 }
2526 if (tryGreater(TryCand.SU->getHeight(), Cand.SU->getHeight(),
2527 TryCand, Cand, GenericSchedulerBase::TopPathReduce))
2528 return true;
Matthias Braunb550b762016-04-21 01:54:13 +00002529 } else {
Andrew Trickd14d7c22013-12-28 21:56:57 +00002530 if (Cand.SU->getHeight() > Zone.getScheduledLatency()) {
2531 if (tryLess(TryCand.SU->getHeight(), Cand.SU->getHeight(),
2532 TryCand, Cand, GenericSchedulerBase::BotHeightReduce))
2533 return true;
2534 }
2535 if (tryGreater(TryCand.SU->getDepth(), Cand.SU->getDepth(),
2536 TryCand, Cand, GenericSchedulerBase::BotPathReduce))
2537 return true;
2538 }
2539 return false;
2540}
2541
Matthias Braun49cb6e92016-05-27 22:14:26 +00002542static void tracePick(GenericSchedulerBase::CandReason Reason, bool IsTop) {
2543 DEBUG(dbgs() << "Pick " << (IsTop ? "Top " : "Bot ")
2544 << GenericSchedulerBase::getReasonStr(Reason) << '\n');
2545}
2546
Matthias Braun6ad3d052016-06-25 00:23:00 +00002547static void tracePick(const GenericSchedulerBase::SchedCandidate &Cand) {
2548 tracePick(Cand.Reason, Cand.AtTop);
Andrew Trickd14d7c22013-12-28 21:56:57 +00002549}
2550
Andrew Trickfc127d12013-12-07 05:59:44 +00002551void GenericScheduler::initialize(ScheduleDAGMI *dag) {
Andrew Trickd7f890e2013-12-28 21:56:47 +00002552 assert(dag->hasVRegLiveness() &&
2553 "(PreRA)GenericScheduler needs vreg liveness");
2554 DAG = static_cast<ScheduleDAGMILive*>(dag);
Andrew Trickfc127d12013-12-07 05:59:44 +00002555 SchedModel = DAG->getSchedModel();
2556 TRI = DAG->TRI;
2557
2558 Rem.init(DAG, SchedModel);
2559 Top.init(DAG, SchedModel, &Rem);
2560 Bot.init(DAG, SchedModel, &Rem);
2561
2562 // Initialize resource counts.
2563
2564 // Initialize the HazardRecognizers. If itineraries don't exist, are empty, or
2565 // are disabled, then these HazardRecs will be disabled.
2566 const InstrItineraryData *Itin = SchedModel->getInstrItineraries();
Andrew Trickfc127d12013-12-07 05:59:44 +00002567 if (!Top.HazardRec) {
2568 Top.HazardRec =
Eric Christopher99556d72014-10-14 06:56:25 +00002569 DAG->MF.getSubtarget().getInstrInfo()->CreateTargetMIHazardRecognizer(
Eric Christopherd9134482014-08-04 21:25:23 +00002570 Itin, DAG);
Andrew Trickfc127d12013-12-07 05:59:44 +00002571 }
2572 if (!Bot.HazardRec) {
2573 Bot.HazardRec =
Eric Christopher99556d72014-10-14 06:56:25 +00002574 DAG->MF.getSubtarget().getInstrInfo()->CreateTargetMIHazardRecognizer(
Eric Christopherd9134482014-08-04 21:25:23 +00002575 Itin, DAG);
Andrew Trickfc127d12013-12-07 05:59:44 +00002576 }
Matthias Brauncc676c42016-06-25 02:03:36 +00002577 TopCand.SU = nullptr;
2578 BotCand.SU = nullptr;
Andrew Trickfc127d12013-12-07 05:59:44 +00002579}
2580
2581/// Initialize the per-region scheduling policy.
2582void GenericScheduler::initPolicy(MachineBasicBlock::iterator Begin,
2583 MachineBasicBlock::iterator End,
2584 unsigned NumRegionInstrs) {
Eric Christopher99556d72014-10-14 06:56:25 +00002585 const MachineFunction &MF = *Begin->getParent()->getParent();
2586 const TargetLowering *TLI = MF.getSubtarget().getTargetLowering();
Andrew Trickfc127d12013-12-07 05:59:44 +00002587
2588 // Avoid setting up the register pressure tracker for small regions to save
2589 // compile time. As a rough heuristic, only track pressure when the number of
2590 // schedulable instructions exceeds half the integer register file.
Andrew Trick350ff2c2014-01-21 21:27:37 +00002591 RegionPolicy.ShouldTrackPressure = true;
Andrew Trick46753512014-01-22 03:38:55 +00002592 for (unsigned VT = MVT::i32; VT > (unsigned)MVT::i1; --VT) {
2593 MVT::SimpleValueType LegalIntVT = (MVT::SimpleValueType)VT;
2594 if (TLI->isTypeLegal(LegalIntVT)) {
Andrew Trick350ff2c2014-01-21 21:27:37 +00002595 unsigned NIntRegs = Context->RegClassInfo->getNumAllocatableRegs(
Andrew Trick46753512014-01-22 03:38:55 +00002596 TLI->getRegClassFor(LegalIntVT));
Andrew Trick350ff2c2014-01-21 21:27:37 +00002597 RegionPolicy.ShouldTrackPressure = NumRegionInstrs > (NIntRegs / 2);
2598 }
2599 }
Andrew Trickfc127d12013-12-07 05:59:44 +00002600
2601 // For generic targets, we default to bottom-up, because it's simpler and more
2602 // compile-time optimizations have been implemented in that direction.
2603 RegionPolicy.OnlyBottomUp = true;
2604
2605 // Allow the subtarget to override default policy.
Duncan P. N. Exon Smith63298722016-07-01 00:23:27 +00002606 MF.getSubtarget().overrideSchedPolicy(RegionPolicy, NumRegionInstrs);
Andrew Trickfc127d12013-12-07 05:59:44 +00002607
2608 // After subtarget overrides, apply command line options.
2609 if (!EnableRegPressure)
2610 RegionPolicy.ShouldTrackPressure = false;
2611
2612 // Check -misched-topdown/bottomup can force or unforce scheduling direction.
2613 // e.g. -misched-bottomup=false allows scheduling in both directions.
2614 assert((!ForceTopDown || !ForceBottomUp) &&
2615 "-misched-topdown incompatible with -misched-bottomup");
2616 if (ForceBottomUp.getNumOccurrences() > 0) {
2617 RegionPolicy.OnlyBottomUp = ForceBottomUp;
2618 if (RegionPolicy.OnlyBottomUp)
2619 RegionPolicy.OnlyTopDown = false;
2620 }
2621 if (ForceTopDown.getNumOccurrences() > 0) {
2622 RegionPolicy.OnlyTopDown = ForceTopDown;
2623 if (RegionPolicy.OnlyTopDown)
2624 RegionPolicy.OnlyBottomUp = false;
2625 }
2626}
2627
James Y Knighte72b0db2015-09-18 18:52:20 +00002628void GenericScheduler::dumpPolicy() {
2629 dbgs() << "GenericScheduler RegionPolicy: "
2630 << " ShouldTrackPressure=" << RegionPolicy.ShouldTrackPressure
2631 << " OnlyTopDown=" << RegionPolicy.OnlyTopDown
2632 << " OnlyBottomUp=" << RegionPolicy.OnlyBottomUp
2633 << "\n";
2634}
2635
Andrew Trickfc127d12013-12-07 05:59:44 +00002636/// Set IsAcyclicLatencyLimited if the acyclic path is longer than the cyclic
2637/// critical path by more cycles than it takes to drain the instruction buffer.
2638/// We estimate an upper bounds on in-flight instructions as:
2639///
2640/// CyclesPerIteration = max( CyclicPath, Loop-Resource-Height )
2641/// InFlightIterations = AcyclicPath / CyclesPerIteration
2642/// InFlightResources = InFlightIterations * LoopResources
2643///
2644/// TODO: Check execution resources in addition to IssueCount.
2645void GenericScheduler::checkAcyclicLatency() {
2646 if (Rem.CyclicCritPath == 0 || Rem.CyclicCritPath >= Rem.CriticalPath)
2647 return;
2648
2649 // Scaled number of cycles per loop iteration.
2650 unsigned IterCount =
2651 std::max(Rem.CyclicCritPath * SchedModel->getLatencyFactor(),
2652 Rem.RemIssueCount);
2653 // Scaled acyclic critical path.
2654 unsigned AcyclicCount = Rem.CriticalPath * SchedModel->getLatencyFactor();
2655 // InFlightCount = (AcyclicPath / IterCycles) * InstrPerLoop
2656 unsigned InFlightCount =
2657 (AcyclicCount * Rem.RemIssueCount + IterCount-1) / IterCount;
2658 unsigned BufferLimit =
2659 SchedModel->getMicroOpBufferSize() * SchedModel->getMicroOpFactor();
2660
2661 Rem.IsAcyclicLatencyLimited = InFlightCount > BufferLimit;
2662
2663 DEBUG(dbgs() << "IssueCycles="
2664 << Rem.RemIssueCount / SchedModel->getLatencyFactor() << "c "
2665 << "IterCycles=" << IterCount / SchedModel->getLatencyFactor()
2666 << "c NumIters=" << (AcyclicCount + IterCount-1) / IterCount
2667 << " InFlight=" << InFlightCount / SchedModel->getMicroOpFactor()
2668 << "m BufferLim=" << SchedModel->getMicroOpBufferSize() << "m\n";
2669 if (Rem.IsAcyclicLatencyLimited)
2670 dbgs() << " ACYCLIC LATENCY LIMIT\n");
2671}
2672
2673void GenericScheduler::registerRoots() {
2674 Rem.CriticalPath = DAG->ExitSU.getDepth();
2675
2676 // Some roots may not feed into ExitSU. Check all of them in case.
2677 for (std::vector<SUnit*>::const_iterator
2678 I = Bot.Available.begin(), E = Bot.Available.end(); I != E; ++I) {
2679 if ((*I)->getDepth() > Rem.CriticalPath)
2680 Rem.CriticalPath = (*I)->getDepth();
2681 }
Gerolf Hoflehnerb5220dc2014-08-07 21:49:44 +00002682 DEBUG(dbgs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << '\n');
2683 if (DumpCriticalPathLength) {
2684 errs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << " \n";
2685 }
Andrew Trickfc127d12013-12-07 05:59:44 +00002686
2687 if (EnableCyclicPath) {
2688 Rem.CyclicCritPath = DAG->computeCyclicCriticalPath();
2689 checkAcyclicLatency();
2690 }
2691}
2692
Andrew Trick1a831342013-08-30 03:49:48 +00002693static bool tryPressure(const PressureChange &TryP,
2694 const PressureChange &CandP,
Andrew Trickd14d7c22013-12-28 21:56:57 +00002695 GenericSchedulerBase::SchedCandidate &TryCand,
2696 GenericSchedulerBase::SchedCandidate &Cand,
Tom Stellard5ce53062015-12-16 18:31:01 +00002697 GenericSchedulerBase::CandReason Reason,
2698 const TargetRegisterInfo *TRI,
2699 const MachineFunction &MF) {
Andrew Trickb1a45b62013-08-30 04:27:29 +00002700 // If one candidate decreases and the other increases, go with it.
2701 // Invalid candidates have UnitInc==0.
Hal Finkel7a87f8a2014-10-10 17:06:20 +00002702 if (tryGreater(TryP.getUnitInc() < 0, CandP.getUnitInc() < 0, TryCand, Cand,
2703 Reason)) {
Andrew Trickb1a45b62013-08-30 04:27:29 +00002704 return true;
2705 }
Matthias Braun6ad3d052016-06-25 00:23:00 +00002706 // Do not compare the magnitude of pressure changes between top and bottom
2707 // boundary.
2708 if (Cand.AtTop != TryCand.AtTop)
2709 return false;
2710
2711 // If both candidates affect the same set in the same boundary, go with the
2712 // smallest increase.
2713 unsigned TryPSet = TryP.getPSetOrMax();
2714 unsigned CandPSet = CandP.getPSetOrMax();
2715 if (TryPSet == CandPSet) {
2716 return tryLess(TryP.getUnitInc(), CandP.getUnitInc(), TryCand, Cand,
2717 Reason);
2718 }
Tom Stellard5ce53062015-12-16 18:31:01 +00002719
2720 int TryRank = TryP.isValid() ? TRI->getRegPressureSetScore(MF, TryPSet) :
2721 std::numeric_limits<int>::max();
2722
2723 int CandRank = CandP.isValid() ? TRI->getRegPressureSetScore(MF, CandPSet) :
2724 std::numeric_limits<int>::max();
2725
Andrew Trick401b6952013-07-25 07:26:35 +00002726 // If the candidates are decreasing pressure, reverse priority.
Andrew Trick1a831342013-08-30 03:49:48 +00002727 if (TryP.getUnitInc() < 0)
Andrew Trick401b6952013-07-25 07:26:35 +00002728 std::swap(TryRank, CandRank);
2729 return tryGreater(TryRank, CandRank, TryCand, Cand, Reason);
2730}
2731
Andrew Tricka7714a02012-11-12 19:40:10 +00002732static unsigned getWeakLeft(const SUnit *SU, bool isTop) {
2733 return (isTop) ? SU->WeakPredsLeft : SU->WeakSuccsLeft;
2734}
2735
Andrew Tricke833e1c2013-04-13 06:07:40 +00002736/// Minimize physical register live ranges. Regalloc wants them adjacent to
2737/// their physreg def/use.
2738///
2739/// FIXME: This is an unnecessary check on the critical path. Most are root/leaf
2740/// copies which can be prescheduled. The rest (e.g. x86 MUL) could be bundled
2741/// with the operation that produces or consumes the physreg. We'll do this when
2742/// regalloc has support for parallel copies.
2743static int biasPhysRegCopy(const SUnit *SU, bool isTop) {
2744 const MachineInstr *MI = SU->getInstr();
2745 if (!MI->isCopy())
2746 return 0;
2747
2748 unsigned ScheduledOper = isTop ? 1 : 0;
2749 unsigned UnscheduledOper = isTop ? 0 : 1;
2750 // If we have already scheduled the physreg produce/consumer, immediately
2751 // schedule the copy.
2752 if (TargetRegisterInfo::isPhysicalRegister(
2753 MI->getOperand(ScheduledOper).getReg()))
2754 return 1;
2755 // If the physreg is at the boundary, defer it. Otherwise schedule it
2756 // immediately to free the dependent. We can hoist the copy later.
2757 bool AtBoundary = isTop ? !SU->NumSuccsLeft : !SU->NumPredsLeft;
2758 if (TargetRegisterInfo::isPhysicalRegister(
2759 MI->getOperand(UnscheduledOper).getReg()))
2760 return AtBoundary ? -1 : 1;
2761 return 0;
2762}
2763
Matthias Braun4f573772016-04-22 19:10:15 +00002764void GenericScheduler::initCandidate(SchedCandidate &Cand, SUnit *SU,
2765 bool AtTop,
2766 const RegPressureTracker &RPTracker,
2767 RegPressureTracker &TempTracker) {
2768 Cand.SU = SU;
Matthias Braun6ad3d052016-06-25 00:23:00 +00002769 Cand.AtTop = AtTop;
Matthias Braun4f573772016-04-22 19:10:15 +00002770 if (DAG->isTrackingPressure()) {
2771 if (AtTop) {
2772 TempTracker.getMaxDownwardPressureDelta(
2773 Cand.SU->getInstr(),
2774 Cand.RPDelta,
2775 DAG->getRegionCriticalPSets(),
2776 DAG->getRegPressure().MaxSetPressure);
2777 } else {
2778 if (VerifyScheduling) {
2779 TempTracker.getMaxUpwardPressureDelta(
2780 Cand.SU->getInstr(),
2781 &DAG->getPressureDiff(Cand.SU),
2782 Cand.RPDelta,
2783 DAG->getRegionCriticalPSets(),
2784 DAG->getRegPressure().MaxSetPressure);
2785 } else {
2786 RPTracker.getUpwardPressureDelta(
2787 Cand.SU->getInstr(),
2788 DAG->getPressureDiff(Cand.SU),
2789 Cand.RPDelta,
2790 DAG->getRegionCriticalPSets(),
2791 DAG->getRegPressure().MaxSetPressure);
2792 }
2793 }
2794 }
2795 DEBUG(if (Cand.RPDelta.Excess.isValid())
2796 dbgs() << " Try SU(" << Cand.SU->NodeNum << ") "
2797 << TRI->getRegPressureSetName(Cand.RPDelta.Excess.getPSet())
2798 << ":" << Cand.RPDelta.Excess.getUnitInc() << "\n");
2799}
2800
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002801/// Apply a set of heursitics to a new candidate. Heuristics are currently
2802/// hierarchical. This may be more efficient than a graduated cost model because
2803/// we don't need to evaluate all aspects of the model for each node in the
2804/// queue. But it's really done to make the heuristics easier to debug and
2805/// statistically analyze.
2806///
2807/// \param Cand provides the policy and current best candidate.
2808/// \param TryCand refers to the next SUnit candidate, otherwise uninitialized.
Matthias Braun6ad3d052016-06-25 00:23:00 +00002809/// \param Zone describes the scheduled zone that we are extending, or nullptr
2810// if Cand is from a different zone than TryCand.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002811void GenericScheduler::tryCandidate(SchedCandidate &Cand,
Andrew Trickbb1247b2013-12-05 17:55:47 +00002812 SchedCandidate &TryCand,
Matthias Braun6ad3d052016-06-25 00:23:00 +00002813 SchedBoundary *Zone) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002814 // Initialize the candidate if needed.
2815 if (!Cand.isValid()) {
2816 TryCand.Reason = NodeOrder;
2817 return;
2818 }
Andrew Tricke833e1c2013-04-13 06:07:40 +00002819
Matthias Braun6ad3d052016-06-25 00:23:00 +00002820 if (tryGreater(biasPhysRegCopy(TryCand.SU, TryCand.AtTop),
2821 biasPhysRegCopy(Cand.SU, Cand.AtTop),
Andrew Tricke833e1c2013-04-13 06:07:40 +00002822 TryCand, Cand, PhysRegCopy))
2823 return;
2824
Andrew Tricke02d5da2015-05-17 23:40:27 +00002825 // Avoid exceeding the target's limit.
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002826 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.Excess,
2827 Cand.RPDelta.Excess,
Tom Stellard5ce53062015-12-16 18:31:01 +00002828 TryCand, Cand, RegExcess, TRI,
2829 DAG->MF))
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002830 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002831
2832 // Avoid increasing the max critical pressure in the scheduled region.
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002833 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.CriticalMax,
2834 Cand.RPDelta.CriticalMax,
Tom Stellard5ce53062015-12-16 18:31:01 +00002835 TryCand, Cand, RegCritical, TRI,
2836 DAG->MF))
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002837 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002838
Matthias Braun6ad3d052016-06-25 00:23:00 +00002839 // We only compare a subset of features when comparing nodes between
2840 // Top and Bottom boundary. Some properties are simply incomparable, in many
2841 // other instances we should only override the other boundary if something
2842 // is a clear good pick on one boundary. Skip heuristics that are more
2843 // "tie-breaking" in nature.
2844 bool SameBoundary = Zone != nullptr;
2845 if (SameBoundary) {
2846 // For loops that are acyclic path limited, aggressively schedule for
Jonas Paulssonbaeb4022016-11-04 08:31:14 +00002847 // latency. Within an single cycle, whenever CurrMOps > 0, allow normal
2848 // heuristics to take precedence.
Matthias Braun6ad3d052016-06-25 00:23:00 +00002849 if (Rem.IsAcyclicLatencyLimited && !Zone->getCurrMOps() &&
2850 tryLatency(TryCand, Cand, *Zone))
2851 return;
Andrew Trickddffae92013-09-06 17:32:36 +00002852
Matthias Braun6ad3d052016-06-25 00:23:00 +00002853 // Prioritize instructions that read unbuffered resources by stall cycles.
2854 if (tryLess(Zone->getLatencyStallCycles(TryCand.SU),
2855 Zone->getLatencyStallCycles(Cand.SU), TryCand, Cand, Stall))
2856 return;
2857 }
Andrew Trick880e5732013-12-05 17:55:58 +00002858
Andrew Tricka7714a02012-11-12 19:40:10 +00002859 // Keep clustered nodes together to encourage downstream peephole
2860 // optimizations which may reduce resource requirements.
2861 //
2862 // This is a best effort to set things up for a post-RA pass. Optimizations
2863 // like generating loads of multiple registers should ideally be done within
2864 // the scheduler pass by combining the loads during DAG postprocessing.
Matthias Braun6ad3d052016-06-25 00:23:00 +00002865 const SUnit *CandNextClusterSU =
2866 Cand.AtTop ? DAG->getNextClusterSucc() : DAG->getNextClusterPred();
2867 const SUnit *TryCandNextClusterSU =
2868 TryCand.AtTop ? DAG->getNextClusterSucc() : DAG->getNextClusterPred();
2869 if (tryGreater(TryCand.SU == TryCandNextClusterSU,
2870 Cand.SU == CandNextClusterSU,
Andrew Tricka7714a02012-11-12 19:40:10 +00002871 TryCand, Cand, Cluster))
2872 return;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00002873
Matthias Braun6ad3d052016-06-25 00:23:00 +00002874 if (SameBoundary) {
2875 // Weak edges are for clustering and other constraints.
2876 if (tryLess(getWeakLeft(TryCand.SU, TryCand.AtTop),
2877 getWeakLeft(Cand.SU, Cand.AtTop),
2878 TryCand, Cand, Weak))
2879 return;
Andrew Tricka7714a02012-11-12 19:40:10 +00002880 }
Matthias Braun6ad3d052016-06-25 00:23:00 +00002881
Andrew Trick71f08a32013-06-17 21:45:13 +00002882 // Avoid increasing the max pressure of the entire region.
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002883 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.CurrentMax,
2884 Cand.RPDelta.CurrentMax,
Tom Stellard5ce53062015-12-16 18:31:01 +00002885 TryCand, Cand, RegMax, TRI,
2886 DAG->MF))
Andrew Trick71f08a32013-06-17 21:45:13 +00002887 return;
2888
Matthias Braun6ad3d052016-06-25 00:23:00 +00002889 if (SameBoundary) {
2890 // Avoid critical resource consumption and balance the schedule.
2891 TryCand.initResourceDelta(DAG, SchedModel);
2892 if (tryLess(TryCand.ResDelta.CritResources, Cand.ResDelta.CritResources,
2893 TryCand, Cand, ResourceReduce))
2894 return;
2895 if (tryGreater(TryCand.ResDelta.DemandedResources,
2896 Cand.ResDelta.DemandedResources,
2897 TryCand, Cand, ResourceDemand))
2898 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002899
Matthias Braun6ad3d052016-06-25 00:23:00 +00002900 // Avoid serializing long latency dependence chains.
2901 // For acyclic path limited loops, latency was already checked above.
2902 if (!RegionPolicy.DisableLatencyHeuristic && TryCand.Policy.ReduceLatency &&
2903 !Rem.IsAcyclicLatencyLimited && tryLatency(TryCand, Cand, *Zone))
2904 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002905
Matthias Braun6ad3d052016-06-25 00:23:00 +00002906 // Fall through to original instruction order.
2907 if ((Zone->isTop() && TryCand.SU->NodeNum < Cand.SU->NodeNum)
2908 || (!Zone->isTop() && TryCand.SU->NodeNum > Cand.SU->NodeNum)) {
2909 TryCand.Reason = NodeOrder;
2910 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002911 }
2912}
Andrew Trick419eae22012-05-10 21:06:19 +00002913
Andrew Trickc573cd92013-09-06 17:32:44 +00002914/// Pick the best candidate from the queue.
Andrew Trick7ee9de52012-05-10 21:06:16 +00002915///
2916/// TODO: getMaxPressureDelta results can be mostly cached for each SUnit during
2917/// DAG building. To adjust for the current scheduling location we need to
2918/// maintain the number of vreg uses remaining to be top-scheduled.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002919void GenericScheduler::pickNodeFromQueue(SchedBoundary &Zone,
Matthias Braun6ad3d052016-06-25 00:23:00 +00002920 const CandPolicy &ZonePolicy,
Andrew Trickbb1247b2013-12-05 17:55:47 +00002921 const RegPressureTracker &RPTracker,
2922 SchedCandidate &Cand) {
Andrew Trick7ee9de52012-05-10 21:06:16 +00002923 // getMaxPressureDelta temporarily modifies the tracker.
2924 RegPressureTracker &TempTracker = const_cast<RegPressureTracker&>(RPTracker);
2925
Matthias Braund29d31e2016-06-23 21:27:38 +00002926 ReadyQueue &Q = Zone.Available;
Andrew Trickdd375dd2012-05-24 22:11:03 +00002927 for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) {
Andrew Trick7ee9de52012-05-10 21:06:16 +00002928
Matthias Braun6ad3d052016-06-25 00:23:00 +00002929 SchedCandidate TryCand(ZonePolicy);
Matthias Braun4f573772016-04-22 19:10:15 +00002930 initCandidate(TryCand, *I, Zone.isTop(), RPTracker, TempTracker);
Matthias Braun6ad3d052016-06-25 00:23:00 +00002931 // Pass SchedBoundary only when comparing nodes from the same boundary.
2932 SchedBoundary *ZoneArg = Cand.AtTop == TryCand.AtTop ? &Zone : nullptr;
2933 tryCandidate(Cand, TryCand, ZoneArg);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002934 if (TryCand.Reason != NoCand) {
2935 // Initialize resource delta if needed in case future heuristics query it.
2936 if (TryCand.ResDelta == SchedResourceDelta())
2937 TryCand.initResourceDelta(DAG, SchedModel);
2938 Cand.setBest(TryCand);
Andrew Trick419d4912013-04-05 00:31:29 +00002939 DEBUG(traceCandidate(Cand));
Andrew Trick22025772012-05-17 18:35:10 +00002940 }
Andrew Trick7ee9de52012-05-10 21:06:16 +00002941 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002942}
2943
Andrew Trick22025772012-05-17 18:35:10 +00002944/// Pick the best candidate node from either the top or bottom queue.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002945SUnit *GenericScheduler::pickNodeBidirectional(bool &IsTopNode) {
Andrew Trick22025772012-05-17 18:35:10 +00002946 // Schedule as far as possible in the direction of no choice. This is most
2947 // efficient, but also provides the best heuristics for CriticalPSets.
Andrew Trick61f1a272012-05-24 22:11:09 +00002948 if (SUnit *SU = Bot.pickOnlyChoice()) {
Andrew Trick22025772012-05-17 18:35:10 +00002949 IsTopNode = false;
Matthias Braun49cb6e92016-05-27 22:14:26 +00002950 tracePick(Only1, false);
Andrew Trick61f1a272012-05-24 22:11:09 +00002951 return SU;
Andrew Trick22025772012-05-17 18:35:10 +00002952 }
Andrew Trick61f1a272012-05-24 22:11:09 +00002953 if (SUnit *SU = Top.pickOnlyChoice()) {
Andrew Trick22025772012-05-17 18:35:10 +00002954 IsTopNode = true;
Matthias Braun49cb6e92016-05-27 22:14:26 +00002955 tracePick(Only1, true);
Andrew Trick61f1a272012-05-24 22:11:09 +00002956 return SU;
Andrew Trick22025772012-05-17 18:35:10 +00002957 }
Andrew Trickfc127d12013-12-07 05:59:44 +00002958 // Set the bottom-up policy based on the state of the current bottom zone and
2959 // the instructions outside the zone, including the top zone.
Matthias Braun6ad3d052016-06-25 00:23:00 +00002960 CandPolicy BotPolicy;
2961 setPolicy(BotPolicy, /*IsPostRA=*/false, Bot, &Top);
Andrew Trickfc127d12013-12-07 05:59:44 +00002962 // Set the top-down policy based on the state of the current top zone and
2963 // the instructions outside the zone, including the bottom zone.
Matthias Braun6ad3d052016-06-25 00:23:00 +00002964 CandPolicy TopPolicy;
2965 setPolicy(TopPolicy, /*IsPostRA=*/false, Top, &Bot);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002966
Matthias Brauncc676c42016-06-25 02:03:36 +00002967 // See if BotCand is still valid (because we previously scheduled from Top).
Matthias Braund29d31e2016-06-23 21:27:38 +00002968 DEBUG(dbgs() << "Picking from Bot:\n");
Matthias Brauncc676c42016-06-25 02:03:36 +00002969 if (!BotCand.isValid() || BotCand.SU->isScheduled ||
2970 BotCand.Policy != BotPolicy) {
2971 BotCand.reset(CandPolicy());
2972 pickNodeFromQueue(Bot, BotPolicy, DAG->getBotRPTracker(), BotCand);
2973 assert(BotCand.Reason != NoCand && "failed to find the first candidate");
2974 } else {
2975 DEBUG(traceCandidate(BotCand));
2976#ifndef NDEBUG
2977 if (VerifyScheduling) {
2978 SchedCandidate TCand;
2979 TCand.reset(CandPolicy());
2980 pickNodeFromQueue(Bot, BotPolicy, DAG->getBotRPTracker(), TCand);
2981 assert(TCand.SU == BotCand.SU &&
2982 "Last pick result should correspond to re-picking right now");
2983 }
2984#endif
2985 }
Andrew Trick22025772012-05-17 18:35:10 +00002986
Andrew Trick22025772012-05-17 18:35:10 +00002987 // Check if the top Q has a better candidate.
Matthias Braund29d31e2016-06-23 21:27:38 +00002988 DEBUG(dbgs() << "Picking from Top:\n");
Matthias Brauncc676c42016-06-25 02:03:36 +00002989 if (!TopCand.isValid() || TopCand.SU->isScheduled ||
2990 TopCand.Policy != TopPolicy) {
2991 TopCand.reset(CandPolicy());
2992 pickNodeFromQueue(Top, TopPolicy, DAG->getTopRPTracker(), TopCand);
2993 assert(TopCand.Reason != NoCand && "failed to find the first candidate");
2994 } else {
2995 DEBUG(traceCandidate(TopCand));
2996#ifndef NDEBUG
2997 if (VerifyScheduling) {
2998 SchedCandidate TCand;
2999 TCand.reset(CandPolicy());
3000 pickNodeFromQueue(Top, TopPolicy, DAG->getTopRPTracker(), TCand);
3001 assert(TCand.SU == TopCand.SU &&
3002 "Last pick result should correspond to re-picking right now");
3003 }
3004#endif
3005 }
3006
3007 // Pick best from BotCand and TopCand.
3008 assert(BotCand.isValid());
3009 assert(TopCand.isValid());
3010 SchedCandidate Cand = BotCand;
3011 TopCand.Reason = NoCand;
3012 tryCandidate(Cand, TopCand, nullptr);
3013 if (TopCand.Reason != NoCand) {
3014 Cand.setBest(TopCand);
3015 DEBUG(traceCandidate(Cand));
3016 }
Andrew Trick22025772012-05-17 18:35:10 +00003017
Matthias Braun6ad3d052016-06-25 00:23:00 +00003018 IsTopNode = Cand.AtTop;
3019 tracePick(Cand);
3020 return Cand.SU;
Andrew Trick22025772012-05-17 18:35:10 +00003021}
3022
3023/// Pick the best node to balance the schedule. Implements MachineSchedStrategy.
Andrew Trick665d3ec2013-09-19 23:10:59 +00003024SUnit *GenericScheduler::pickNode(bool &IsTopNode) {
Andrew Trick7ee9de52012-05-10 21:06:16 +00003025 if (DAG->top() == DAG->bottom()) {
Andrew Trick61f1a272012-05-24 22:11:09 +00003026 assert(Top.Available.empty() && Top.Pending.empty() &&
3027 Bot.Available.empty() && Bot.Pending.empty() && "ReadyQ garbage");
Craig Topperc0196b12014-04-14 00:51:57 +00003028 return nullptr;
Andrew Trick7ee9de52012-05-10 21:06:16 +00003029 }
Andrew Trick7ee9de52012-05-10 21:06:16 +00003030 SUnit *SU;
Andrew Trick984d98b2012-10-08 18:53:53 +00003031 do {
Andrew Trick75e411c2013-09-06 17:32:34 +00003032 if (RegionPolicy.OnlyTopDown) {
Andrew Trick984d98b2012-10-08 18:53:53 +00003033 SU = Top.pickOnlyChoice();
3034 if (!SU) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00003035 CandPolicy NoPolicy;
Matthias Brauncc676c42016-06-25 02:03:36 +00003036 TopCand.reset(NoPolicy);
Matthias Braun6ad3d052016-06-25 00:23:00 +00003037 pickNodeFromQueue(Top, NoPolicy, DAG->getTopRPTracker(), TopCand);
Andrew Trick1ab16d92013-09-04 21:00:13 +00003038 assert(TopCand.Reason != NoCand && "failed to find a candidate");
Matthias Braun6ad3d052016-06-25 00:23:00 +00003039 tracePick(TopCand);
Andrew Trick984d98b2012-10-08 18:53:53 +00003040 SU = TopCand.SU;
3041 }
3042 IsTopNode = true;
Matthias Braunb550b762016-04-21 01:54:13 +00003043 } else if (RegionPolicy.OnlyBottomUp) {
Andrew Trick984d98b2012-10-08 18:53:53 +00003044 SU = Bot.pickOnlyChoice();
3045 if (!SU) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00003046 CandPolicy NoPolicy;
Matthias Brauncc676c42016-06-25 02:03:36 +00003047 BotCand.reset(NoPolicy);
Matthias Braun6ad3d052016-06-25 00:23:00 +00003048 pickNodeFromQueue(Bot, NoPolicy, DAG->getBotRPTracker(), BotCand);
Andrew Trick1ab16d92013-09-04 21:00:13 +00003049 assert(BotCand.Reason != NoCand && "failed to find a candidate");
Matthias Braun6ad3d052016-06-25 00:23:00 +00003050 tracePick(BotCand);
Andrew Trick984d98b2012-10-08 18:53:53 +00003051 SU = BotCand.SU;
3052 }
3053 IsTopNode = false;
Matthias Braunb550b762016-04-21 01:54:13 +00003054 } else {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00003055 SU = pickNodeBidirectional(IsTopNode);
Andrew Trick984d98b2012-10-08 18:53:53 +00003056 }
3057 } while (SU->isScheduled);
3058
Andrew Trick61f1a272012-05-24 22:11:09 +00003059 if (SU->isTopReady())
3060 Top.removeReady(SU);
3061 if (SU->isBottomReady())
3062 Bot.removeReady(SU);
Andrew Trick4e7f6a72012-05-25 02:02:39 +00003063
Andrew Trick1f0bb692013-04-13 06:07:49 +00003064 DEBUG(dbgs() << "Scheduling SU(" << SU->NodeNum << ") " << *SU->getInstr());
Andrew Trick7ee9de52012-05-10 21:06:16 +00003065 return SU;
3066}
3067
Andrew Trick665d3ec2013-09-19 23:10:59 +00003068void GenericScheduler::reschedulePhysRegCopies(SUnit *SU, bool isTop) {
Andrew Tricke833e1c2013-04-13 06:07:40 +00003069
3070 MachineBasicBlock::iterator InsertPos = SU->getInstr();
3071 if (!isTop)
3072 ++InsertPos;
3073 SmallVectorImpl<SDep> &Deps = isTop ? SU->Preds : SU->Succs;
3074
3075 // Find already scheduled copies with a single physreg dependence and move
3076 // them just above the scheduled instruction.
3077 for (SmallVectorImpl<SDep>::iterator I = Deps.begin(), E = Deps.end();
3078 I != E; ++I) {
3079 if (I->getKind() != SDep::Data || !TRI->isPhysicalRegister(I->getReg()))
3080 continue;
3081 SUnit *DepSU = I->getSUnit();
3082 if (isTop ? DepSU->Succs.size() > 1 : DepSU->Preds.size() > 1)
3083 continue;
3084 MachineInstr *Copy = DepSU->getInstr();
3085 if (!Copy->isCopy())
3086 continue;
3087 DEBUG(dbgs() << " Rescheduling physreg copy ";
3088 I->getSUnit()->dump(DAG));
3089 DAG->moveInstruction(Copy, InsertPos);
3090 }
3091}
3092
Andrew Trick61f1a272012-05-24 22:11:09 +00003093/// Update the scheduler's state after scheduling a node. This is the same node
Andrew Trickd14d7c22013-12-28 21:56:57 +00003094/// that was just returned by pickNode(). However, ScheduleDAGMILive needs to
3095/// update it's state based on the current cycle before MachineSchedStrategy
3096/// does.
Andrew Tricke833e1c2013-04-13 06:07:40 +00003097///
3098/// FIXME: Eventually, we may bundle physreg copies rather than rescheduling
3099/// them here. See comments in biasPhysRegCopy.
Andrew Trick665d3ec2013-09-19 23:10:59 +00003100void GenericScheduler::schedNode(SUnit *SU, bool IsTopNode) {
Andrew Trick45446062012-06-05 21:11:27 +00003101 if (IsTopNode) {
Andrew Trickfc127d12013-12-07 05:59:44 +00003102 SU->TopReadyCycle = std::max(SU->TopReadyCycle, Top.getCurrCycle());
Andrew Trickce27bb92012-06-29 03:23:22 +00003103 Top.bumpNode(SU);
Andrew Tricke833e1c2013-04-13 06:07:40 +00003104 if (SU->hasPhysRegUses)
3105 reschedulePhysRegCopies(SU, true);
Matthias Braunb550b762016-04-21 01:54:13 +00003106 } else {
Andrew Trickfc127d12013-12-07 05:59:44 +00003107 SU->BotReadyCycle = std::max(SU->BotReadyCycle, Bot.getCurrCycle());
Andrew Trickce27bb92012-06-29 03:23:22 +00003108 Bot.bumpNode(SU);
Andrew Tricke833e1c2013-04-13 06:07:40 +00003109 if (SU->hasPhysRegDefs)
3110 reschedulePhysRegCopies(SU, false);
Andrew Trick61f1a272012-05-24 22:11:09 +00003111 }
3112}
3113
Andrew Trick8823dec2012-03-14 04:00:41 +00003114/// Create the standard converging machine scheduler. This will be used as the
3115/// default scheduler if the target does not set a default.
Andrew Trickd14d7c22013-12-28 21:56:57 +00003116static ScheduleDAGInstrs *createGenericSchedLive(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003117 ScheduleDAGMILive *DAG = new ScheduleDAGMILive(C, make_unique<GenericScheduler>(C));
Andrew Tricka7714a02012-11-12 19:40:10 +00003118 // Register DAG post-processors.
Andrew Trick85a1d4c2013-04-24 15:54:43 +00003119 //
3120 // FIXME: extend the mutation API to allow earlier mutations to instantiate
3121 // data and pass it to later mutations. Have a single mutation that gathers
3122 // the interesting nodes in one pass.
Tom Stellard68726a52016-08-19 19:59:18 +00003123 DAG->addMutation(createCopyConstrainDAGMutation(DAG->TII, DAG->TRI));
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00003124 if (EnableMemOpCluster) {
3125 if (DAG->TII->enableClusterLoads())
Tom Stellard68726a52016-08-19 19:59:18 +00003126 DAG->addMutation(createLoadClusterDAGMutation(DAG->TII, DAG->TRI));
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00003127 if (DAG->TII->enableClusterStores())
Tom Stellard68726a52016-08-19 19:59:18 +00003128 DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
Jun Bum Lim4c5bd582016-04-15 14:58:38 +00003129 }
Andrew Trick263280242012-11-12 19:52:20 +00003130 if (EnableMacroFusion)
Matthias Braun325cd2c2016-11-11 01:34:21 +00003131 DAG->addMutation(createMacroFusionDAGMutation(DAG->TII));
Andrew Tricka7714a02012-11-12 19:40:10 +00003132 return DAG;
Andrew Tricke1c034f2012-01-17 06:55:03 +00003133}
Andrew Trickd14d7c22013-12-28 21:56:57 +00003134
Andrew Tricke1c034f2012-01-17 06:55:03 +00003135static MachineSchedRegistry
Andrew Trick665d3ec2013-09-19 23:10:59 +00003136GenericSchedRegistry("converge", "Standard converging scheduler.",
Andrew Trickd14d7c22013-12-28 21:56:57 +00003137 createGenericSchedLive);
3138
3139//===----------------------------------------------------------------------===//
3140// PostGenericScheduler - Generic PostRA implementation of MachineSchedStrategy.
3141//===----------------------------------------------------------------------===//
3142
Andrew Trick3ccf71d2014-06-04 07:06:18 +00003143void PostGenericScheduler::initialize(ScheduleDAGMI *Dag) {
3144 DAG = Dag;
3145 SchedModel = DAG->getSchedModel();
3146 TRI = DAG->TRI;
Andrew Trickd14d7c22013-12-28 21:56:57 +00003147
Andrew Trick3ccf71d2014-06-04 07:06:18 +00003148 Rem.init(DAG, SchedModel);
3149 Top.init(DAG, SchedModel, &Rem);
3150 BotRoots.clear();
Andrew Trickd14d7c22013-12-28 21:56:57 +00003151
Andrew Trick3ccf71d2014-06-04 07:06:18 +00003152 // Initialize the HazardRecognizers. If itineraries don't exist, are empty,
3153 // or are disabled, then these HazardRecs will be disabled.
3154 const InstrItineraryData *Itin = SchedModel->getInstrItineraries();
Andrew Trick3ccf71d2014-06-04 07:06:18 +00003155 if (!Top.HazardRec) {
3156 Top.HazardRec =
Eric Christopher99556d72014-10-14 06:56:25 +00003157 DAG->MF.getSubtarget().getInstrInfo()->CreateTargetMIHazardRecognizer(
Eric Christopherd9134482014-08-04 21:25:23 +00003158 Itin, DAG);
Andrew Trickd14d7c22013-12-28 21:56:57 +00003159 }
Andrew Trick3ccf71d2014-06-04 07:06:18 +00003160}
Andrew Trickd14d7c22013-12-28 21:56:57 +00003161
Andrew Trickd14d7c22013-12-28 21:56:57 +00003162
3163void PostGenericScheduler::registerRoots() {
3164 Rem.CriticalPath = DAG->ExitSU.getDepth();
3165
3166 // Some roots may not feed into ExitSU. Check all of them in case.
3167 for (SmallVectorImpl<SUnit*>::const_iterator
3168 I = BotRoots.begin(), E = BotRoots.end(); I != E; ++I) {
3169 if ((*I)->getDepth() > Rem.CriticalPath)
3170 Rem.CriticalPath = (*I)->getDepth();
3171 }
Gerolf Hoflehnerb5220dc2014-08-07 21:49:44 +00003172 DEBUG(dbgs() << "Critical Path: (PGS-RR) " << Rem.CriticalPath << '\n');
3173 if (DumpCriticalPathLength) {
3174 errs() << "Critical Path(PGS-RR ): " << Rem.CriticalPath << " \n";
3175 }
Andrew Trickd14d7c22013-12-28 21:56:57 +00003176}
3177
3178/// Apply a set of heursitics to a new candidate for PostRA scheduling.
3179///
3180/// \param Cand provides the policy and current best candidate.
3181/// \param TryCand refers to the next SUnit candidate, otherwise uninitialized.
3182void PostGenericScheduler::tryCandidate(SchedCandidate &Cand,
3183 SchedCandidate &TryCand) {
3184
3185 // Initialize the candidate if needed.
3186 if (!Cand.isValid()) {
3187 TryCand.Reason = NodeOrder;
3188 return;
3189 }
3190
3191 // Prioritize instructions that read unbuffered resources by stall cycles.
3192 if (tryLess(Top.getLatencyStallCycles(TryCand.SU),
3193 Top.getLatencyStallCycles(Cand.SU), TryCand, Cand, Stall))
3194 return;
3195
3196 // Avoid critical resource consumption and balance the schedule.
3197 if (tryLess(TryCand.ResDelta.CritResources, Cand.ResDelta.CritResources,
3198 TryCand, Cand, ResourceReduce))
3199 return;
3200 if (tryGreater(TryCand.ResDelta.DemandedResources,
3201 Cand.ResDelta.DemandedResources,
3202 TryCand, Cand, ResourceDemand))
3203 return;
3204
3205 // Avoid serializing long latency dependence chains.
3206 if (Cand.Policy.ReduceLatency && tryLatency(TryCand, Cand, Top)) {
3207 return;
3208 }
3209
3210 // Fall through to original instruction order.
3211 if (TryCand.SU->NodeNum < Cand.SU->NodeNum)
3212 TryCand.Reason = NodeOrder;
3213}
3214
3215void PostGenericScheduler::pickNodeFromQueue(SchedCandidate &Cand) {
3216 ReadyQueue &Q = Top.Available;
Andrew Trickd14d7c22013-12-28 21:56:57 +00003217 for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) {
3218 SchedCandidate TryCand(Cand.Policy);
3219 TryCand.SU = *I;
Matthias Braun6ad3d052016-06-25 00:23:00 +00003220 TryCand.AtTop = true;
Andrew Trickd14d7c22013-12-28 21:56:57 +00003221 TryCand.initResourceDelta(DAG, SchedModel);
3222 tryCandidate(Cand, TryCand);
3223 if (TryCand.Reason != NoCand) {
3224 Cand.setBest(TryCand);
3225 DEBUG(traceCandidate(Cand));
3226 }
3227 }
3228}
3229
3230/// Pick the next node to schedule.
3231SUnit *PostGenericScheduler::pickNode(bool &IsTopNode) {
3232 if (DAG->top() == DAG->bottom()) {
3233 assert(Top.Available.empty() && Top.Pending.empty() && "ReadyQ garbage");
Craig Topperc0196b12014-04-14 00:51:57 +00003234 return nullptr;
Andrew Trickd14d7c22013-12-28 21:56:57 +00003235 }
3236 SUnit *SU;
3237 do {
3238 SU = Top.pickOnlyChoice();
Matthias Braun49cb6e92016-05-27 22:14:26 +00003239 if (SU) {
3240 tracePick(Only1, true);
3241 } else {
Andrew Trickd14d7c22013-12-28 21:56:57 +00003242 CandPolicy NoPolicy;
3243 SchedCandidate TopCand(NoPolicy);
3244 // Set the top-down policy based on the state of the current top zone and
3245 // the instructions outside the zone, including the bottom zone.
Craig Topperc0196b12014-04-14 00:51:57 +00003246 setPolicy(TopCand.Policy, /*IsPostRA=*/true, Top, nullptr);
Andrew Trickd14d7c22013-12-28 21:56:57 +00003247 pickNodeFromQueue(TopCand);
3248 assert(TopCand.Reason != NoCand && "failed to find a candidate");
Matthias Braun6ad3d052016-06-25 00:23:00 +00003249 tracePick(TopCand);
Andrew Trickd14d7c22013-12-28 21:56:57 +00003250 SU = TopCand.SU;
3251 }
3252 } while (SU->isScheduled);
3253
3254 IsTopNode = true;
3255 Top.removeReady(SU);
3256
3257 DEBUG(dbgs() << "Scheduling SU(" << SU->NodeNum << ") " << *SU->getInstr());
3258 return SU;
3259}
3260
3261/// Called after ScheduleDAGMI has scheduled an instruction and updated
3262/// scheduled/remaining flags in the DAG nodes.
3263void PostGenericScheduler::schedNode(SUnit *SU, bool IsTopNode) {
3264 SU->TopReadyCycle = std::max(SU->TopReadyCycle, Top.getCurrCycle());
3265 Top.bumpNode(SU);
3266}
3267
3268/// Create a generic scheduler with no vreg liveness or DAG mutation passes.
3269static ScheduleDAGInstrs *createGenericSchedPostRA(MachineSchedContext *C) {
Jonas Paulsson28f29482016-11-09 09:59:27 +00003270 return new ScheduleDAGMI(C, make_unique<PostGenericScheduler>(C),
3271 /*RemoveKillFlags=*/true);
Andrew Trickd14d7c22013-12-28 21:56:57 +00003272}
Andrew Tricke1c034f2012-01-17 06:55:03 +00003273
3274//===----------------------------------------------------------------------===//
Andrew Trick90f711d2012-10-15 18:02:27 +00003275// ILP Scheduler. Currently for experimental analysis of heuristics.
3276//===----------------------------------------------------------------------===//
3277
3278namespace {
3279/// \brief Order nodes by the ILP metric.
3280struct ILPOrder {
Andrew Trick44f750a2013-01-25 04:01:04 +00003281 const SchedDFSResult *DFSResult;
3282 const BitVector *ScheduledTrees;
Andrew Trick90f711d2012-10-15 18:02:27 +00003283 bool MaximizeILP;
3284
Craig Topperc0196b12014-04-14 00:51:57 +00003285 ILPOrder(bool MaxILP)
3286 : DFSResult(nullptr), ScheduledTrees(nullptr), MaximizeILP(MaxILP) {}
Andrew Trick90f711d2012-10-15 18:02:27 +00003287
3288 /// \brief Apply a less-than relation on node priority.
Andrew Trick48d392e2012-11-28 05:13:28 +00003289 ///
3290 /// (Return true if A comes after B in the Q.)
Andrew Trick90f711d2012-10-15 18:02:27 +00003291 bool operator()(const SUnit *A, const SUnit *B) const {
Andrew Trick48d392e2012-11-28 05:13:28 +00003292 unsigned SchedTreeA = DFSResult->getSubtreeID(A);
3293 unsigned SchedTreeB = DFSResult->getSubtreeID(B);
3294 if (SchedTreeA != SchedTreeB) {
3295 // Unscheduled trees have lower priority.
3296 if (ScheduledTrees->test(SchedTreeA) != ScheduledTrees->test(SchedTreeB))
3297 return ScheduledTrees->test(SchedTreeB);
3298
3299 // Trees with shallower connections have have lower priority.
3300 if (DFSResult->getSubtreeLevel(SchedTreeA)
3301 != DFSResult->getSubtreeLevel(SchedTreeB)) {
3302 return DFSResult->getSubtreeLevel(SchedTreeA)
3303 < DFSResult->getSubtreeLevel(SchedTreeB);
3304 }
3305 }
Andrew Trick90f711d2012-10-15 18:02:27 +00003306 if (MaximizeILP)
Andrew Trick48d392e2012-11-28 05:13:28 +00003307 return DFSResult->getILP(A) < DFSResult->getILP(B);
Andrew Trick90f711d2012-10-15 18:02:27 +00003308 else
Andrew Trick48d392e2012-11-28 05:13:28 +00003309 return DFSResult->getILP(A) > DFSResult->getILP(B);
Andrew Trick90f711d2012-10-15 18:02:27 +00003310 }
3311};
3312
3313/// \brief Schedule based on the ILP metric.
3314class ILPScheduler : public MachineSchedStrategy {
Andrew Trickd7f890e2013-12-28 21:56:47 +00003315 ScheduleDAGMILive *DAG;
Andrew Trick90f711d2012-10-15 18:02:27 +00003316 ILPOrder Cmp;
3317
3318 std::vector<SUnit*> ReadyQ;
3319public:
Craig Topperc0196b12014-04-14 00:51:57 +00003320 ILPScheduler(bool MaximizeILP): DAG(nullptr), Cmp(MaximizeILP) {}
Andrew Trick90f711d2012-10-15 18:02:27 +00003321
Craig Topper4584cd52014-03-07 09:26:03 +00003322 void initialize(ScheduleDAGMI *dag) override {
Andrew Trickd7f890e2013-12-28 21:56:47 +00003323 assert(dag->hasVRegLiveness() && "ILPScheduler needs vreg liveness");
3324 DAG = static_cast<ScheduleDAGMILive*>(dag);
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00003325 DAG->computeDFSResult();
Andrew Trick44f750a2013-01-25 04:01:04 +00003326 Cmp.DFSResult = DAG->getDFSResult();
3327 Cmp.ScheduledTrees = &DAG->getScheduledTrees();
Andrew Trick90f711d2012-10-15 18:02:27 +00003328 ReadyQ.clear();
Andrew Trick90f711d2012-10-15 18:02:27 +00003329 }
3330
Craig Topper4584cd52014-03-07 09:26:03 +00003331 void registerRoots() override {
Benjamin Krameraa598b32012-11-29 14:36:26 +00003332 // Restore the heap in ReadyQ with the updated DFS results.
3333 std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
Andrew Trick90f711d2012-10-15 18:02:27 +00003334 }
3335
3336 /// Implement MachineSchedStrategy interface.
3337 /// -----------------------------------------
3338
Andrew Trick48d392e2012-11-28 05:13:28 +00003339 /// Callback to select the highest priority node from the ready Q.
Craig Topper4584cd52014-03-07 09:26:03 +00003340 SUnit *pickNode(bool &IsTopNode) override {
Craig Topperc0196b12014-04-14 00:51:57 +00003341 if (ReadyQ.empty()) return nullptr;
Matt Arsenault4ab769f2013-03-21 00:57:21 +00003342 std::pop_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
Andrew Trick90f711d2012-10-15 18:02:27 +00003343 SUnit *SU = ReadyQ.back();
3344 ReadyQ.pop_back();
3345 IsTopNode = false;
Andrew Trick1f0bb692013-04-13 06:07:49 +00003346 DEBUG(dbgs() << "Pick node " << "SU(" << SU->NodeNum << ") "
Andrew Trick44f750a2013-01-25 04:01:04 +00003347 << " ILP: " << DAG->getDFSResult()->getILP(SU)
3348 << " Tree: " << DAG->getDFSResult()->getSubtreeID(SU) << " @"
3349 << DAG->getDFSResult()->getSubtreeLevel(
Andrew Trick1f0bb692013-04-13 06:07:49 +00003350 DAG->getDFSResult()->getSubtreeID(SU)) << '\n'
3351 << "Scheduling " << *SU->getInstr());
Andrew Trick90f711d2012-10-15 18:02:27 +00003352 return SU;
3353 }
3354
Andrew Trick44f750a2013-01-25 04:01:04 +00003355 /// \brief Scheduler callback to notify that a new subtree is scheduled.
Craig Topper4584cd52014-03-07 09:26:03 +00003356 void scheduleTree(unsigned SubtreeID) override {
Andrew Trick44f750a2013-01-25 04:01:04 +00003357 std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
3358 }
3359
Andrew Trick48d392e2012-11-28 05:13:28 +00003360 /// Callback after a node is scheduled. Mark a newly scheduled tree, notify
3361 /// DFSResults, and resort the priority Q.
Craig Topper4584cd52014-03-07 09:26:03 +00003362 void schedNode(SUnit *SU, bool IsTopNode) override {
Andrew Trick48d392e2012-11-28 05:13:28 +00003363 assert(!IsTopNode && "SchedDFSResult needs bottom-up");
Andrew Trick48d392e2012-11-28 05:13:28 +00003364 }
Andrew Trick90f711d2012-10-15 18:02:27 +00003365
Craig Topper4584cd52014-03-07 09:26:03 +00003366 void releaseTopNode(SUnit *) override { /*only called for top roots*/ }
Andrew Trick90f711d2012-10-15 18:02:27 +00003367
Craig Topper4584cd52014-03-07 09:26:03 +00003368 void releaseBottomNode(SUnit *SU) override {
Andrew Trick90f711d2012-10-15 18:02:27 +00003369 ReadyQ.push_back(SU);
3370 std::push_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
3371 }
3372};
3373} // namespace
3374
3375static ScheduleDAGInstrs *createILPMaxScheduler(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003376 return new ScheduleDAGMILive(C, make_unique<ILPScheduler>(true));
Andrew Trick90f711d2012-10-15 18:02:27 +00003377}
3378static ScheduleDAGInstrs *createILPMinScheduler(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003379 return new ScheduleDAGMILive(C, make_unique<ILPScheduler>(false));
Andrew Trick90f711d2012-10-15 18:02:27 +00003380}
3381static MachineSchedRegistry ILPMaxRegistry(
3382 "ilpmax", "Schedule bottom-up for max ILP", createILPMaxScheduler);
3383static MachineSchedRegistry ILPMinRegistry(
3384 "ilpmin", "Schedule bottom-up for min ILP", createILPMinScheduler);
3385
3386//===----------------------------------------------------------------------===//
Andrew Trick63440872012-01-14 02:17:06 +00003387// Machine Instruction Shuffler for Correctness Testing
3388//===----------------------------------------------------------------------===//
3389
Andrew Tricke77e84e2012-01-13 06:30:30 +00003390#ifndef NDEBUG
3391namespace {
Andrew Trick8823dec2012-03-14 04:00:41 +00003392/// Apply a less-than relation on the node order, which corresponds to the
3393/// instruction order prior to scheduling. IsReverse implements greater-than.
3394template<bool IsReverse>
3395struct SUnitOrder {
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003396 bool operator()(SUnit *A, SUnit *B) const {
Andrew Trick8823dec2012-03-14 04:00:41 +00003397 if (IsReverse)
3398 return A->NodeNum > B->NodeNum;
3399 else
3400 return A->NodeNum < B->NodeNum;
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003401 }
3402};
3403
Andrew Tricke77e84e2012-01-13 06:30:30 +00003404/// Reorder instructions as much as possible.
Andrew Trick8823dec2012-03-14 04:00:41 +00003405class InstructionShuffler : public MachineSchedStrategy {
3406 bool IsAlternating;
3407 bool IsTopDown;
3408
3409 // Using a less-than relation (SUnitOrder<false>) for the TopQ priority
3410 // gives nodes with a higher number higher priority causing the latest
3411 // instructions to be scheduled first.
3412 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<false> >
3413 TopQ;
3414 // When scheduling bottom-up, use greater-than as the queue priority.
3415 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<true> >
3416 BottomQ;
Andrew Tricke77e84e2012-01-13 06:30:30 +00003417public:
Andrew Trick8823dec2012-03-14 04:00:41 +00003418 InstructionShuffler(bool alternate, bool topdown)
3419 : IsAlternating(alternate), IsTopDown(topdown) {}
Andrew Tricke77e84e2012-01-13 06:30:30 +00003420
Craig Topper9d74a5a2014-04-29 07:58:41 +00003421 void initialize(ScheduleDAGMI*) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003422 TopQ.clear();
3423 BottomQ.clear();
3424 }
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003425
Andrew Trick8823dec2012-03-14 04:00:41 +00003426 /// Implement MachineSchedStrategy interface.
3427 /// -----------------------------------------
3428
Craig Topper9d74a5a2014-04-29 07:58:41 +00003429 SUnit *pickNode(bool &IsTopNode) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003430 SUnit *SU;
3431 if (IsTopDown) {
3432 do {
Craig Topperc0196b12014-04-14 00:51:57 +00003433 if (TopQ.empty()) return nullptr;
Andrew Trick8823dec2012-03-14 04:00:41 +00003434 SU = TopQ.top();
3435 TopQ.pop();
3436 } while (SU->isScheduled);
3437 IsTopNode = true;
Matthias Braunb550b762016-04-21 01:54:13 +00003438 } else {
Andrew Trick8823dec2012-03-14 04:00:41 +00003439 do {
Craig Topperc0196b12014-04-14 00:51:57 +00003440 if (BottomQ.empty()) return nullptr;
Andrew Trick8823dec2012-03-14 04:00:41 +00003441 SU = BottomQ.top();
3442 BottomQ.pop();
3443 } while (SU->isScheduled);
3444 IsTopNode = false;
3445 }
3446 if (IsAlternating)
3447 IsTopDown = !IsTopDown;
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003448 return SU;
3449 }
3450
Craig Topper9d74a5a2014-04-29 07:58:41 +00003451 void schedNode(SUnit *SU, bool IsTopNode) override {}
Andrew Trick61f1a272012-05-24 22:11:09 +00003452
Craig Topper9d74a5a2014-04-29 07:58:41 +00003453 void releaseTopNode(SUnit *SU) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003454 TopQ.push(SU);
3455 }
Craig Topper9d74a5a2014-04-29 07:58:41 +00003456 void releaseBottomNode(SUnit *SU) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003457 BottomQ.push(SU);
Andrew Tricke77e84e2012-01-13 06:30:30 +00003458 }
3459};
3460} // namespace
3461
Andrew Trick02a80da2012-03-08 01:41:12 +00003462static ScheduleDAGInstrs *createInstructionShuffler(MachineSchedContext *C) {
Andrew Trick8823dec2012-03-14 04:00:41 +00003463 bool Alternate = !ForceTopDown && !ForceBottomUp;
3464 bool TopDown = !ForceBottomUp;
Benjamin Kramer05e7a842012-03-14 11:26:37 +00003465 assert((TopDown || !ForceTopDown) &&
Andrew Trick8823dec2012-03-14 04:00:41 +00003466 "-misched-topdown incompatible with -misched-bottomup");
David Blaikie422b93d2014-04-21 20:32:32 +00003467 return new ScheduleDAGMILive(C, make_unique<InstructionShuffler>(Alternate, TopDown));
Andrew Tricke77e84e2012-01-13 06:30:30 +00003468}
Andrew Trick8823dec2012-03-14 04:00:41 +00003469static MachineSchedRegistry ShufflerRegistry(
3470 "shuffle", "Shuffle machine instructions alternating directions",
3471 createInstructionShuffler);
Andrew Tricke77e84e2012-01-13 06:30:30 +00003472#endif // !NDEBUG
Andrew Trickea9fd952013-01-25 07:45:29 +00003473
3474//===----------------------------------------------------------------------===//
Andrew Trickd7f890e2013-12-28 21:56:47 +00003475// GraphWriter support for ScheduleDAGMILive.
Andrew Trickea9fd952013-01-25 07:45:29 +00003476//===----------------------------------------------------------------------===//
3477
3478#ifndef NDEBUG
3479namespace llvm {
3480
3481template<> struct GraphTraits<
3482 ScheduleDAGMI*> : public GraphTraits<ScheduleDAG*> {};
3483
3484template<>
3485struct DOTGraphTraits<ScheduleDAGMI*> : public DefaultDOTGraphTraits {
3486
3487 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
3488
3489 static std::string getGraphName(const ScheduleDAG *G) {
3490 return G->MF.getName();
3491 }
3492
3493 static bool renderGraphFromBottomUp() {
3494 return true;
3495 }
3496
3497 static bool isNodeHidden(const SUnit *Node) {
Matthias Braund78ee542015-09-17 21:09:59 +00003498 if (ViewMISchedCutoff == 0)
3499 return false;
3500 return (Node->Preds.size() > ViewMISchedCutoff
3501 || Node->Succs.size() > ViewMISchedCutoff);
Andrew Trickea9fd952013-01-25 07:45:29 +00003502 }
3503
Andrew Trickea9fd952013-01-25 07:45:29 +00003504 /// If you want to override the dot attributes printed for a particular
3505 /// edge, override this method.
3506 static std::string getEdgeAttributes(const SUnit *Node,
3507 SUnitIterator EI,
3508 const ScheduleDAG *Graph) {
3509 if (EI.isArtificialDep())
3510 return "color=cyan,style=dashed";
3511 if (EI.isCtrlDep())
3512 return "color=blue,style=dashed";
3513 return "";
3514 }
3515
3516 static std::string getNodeLabel(const SUnit *SU, const ScheduleDAG *G) {
Alp Tokere69170a2014-06-26 22:52:05 +00003517 std::string Str;
3518 raw_string_ostream SS(Str);
Andrew Trickd7f890e2013-12-28 21:56:47 +00003519 const ScheduleDAGMI *DAG = static_cast<const ScheduleDAGMI*>(G);
3520 const SchedDFSResult *DFS = DAG->hasVRegLiveness() ?
Craig Topperc0196b12014-04-14 00:51:57 +00003521 static_cast<const ScheduleDAGMILive*>(G)->getDFSResult() : nullptr;
Andrew Trick7609b7d2013-09-06 17:32:42 +00003522 SS << "SU:" << SU->NodeNum;
3523 if (DFS)
3524 SS << " I:" << DFS->getNumInstrs(SU);
Andrew Trickea9fd952013-01-25 07:45:29 +00003525 return SS.str();
3526 }
3527 static std::string getNodeDescription(const SUnit *SU, const ScheduleDAG *G) {
3528 return G->getGraphNodeLabel(SU);
3529 }
3530
Andrew Trickd7f890e2013-12-28 21:56:47 +00003531 static std::string getNodeAttributes(const SUnit *N, const ScheduleDAG *G) {
Andrew Trickea9fd952013-01-25 07:45:29 +00003532 std::string Str("shape=Mrecord");
Andrew Trickd7f890e2013-12-28 21:56:47 +00003533 const ScheduleDAGMI *DAG = static_cast<const ScheduleDAGMI*>(G);
3534 const SchedDFSResult *DFS = DAG->hasVRegLiveness() ?
Craig Topperc0196b12014-04-14 00:51:57 +00003535 static_cast<const ScheduleDAGMILive*>(G)->getDFSResult() : nullptr;
Andrew Trickea9fd952013-01-25 07:45:29 +00003536 if (DFS) {
3537 Str += ",style=filled,fillcolor=\"#";
3538 Str += DOT::getColorString(DFS->getSubtreeID(N));
3539 Str += '"';
3540 }
3541 return Str;
3542 }
3543};
3544} // namespace llvm
3545#endif // NDEBUG
3546
3547/// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
3548/// rendered using 'dot'.
3549///
3550void ScheduleDAGMI::viewGraph(const Twine &Name, const Twine &Title) {
3551#ifndef NDEBUG
3552 ViewGraph(this, Name, false, Title);
3553#else
3554 errs() << "ScheduleDAGMI::viewGraph is only available in debug builds on "
3555 << "systems with Graphviz or gv!\n";
3556#endif // NDEBUG
3557}
3558
3559/// Out-of-line implementation with no arguments is handy for gdb.
3560void ScheduleDAGMI::viewGraph() {
3561 viewGraph(getDAGName(), "Scheduling-Units Graph for " + getDAGName());
3562}