blob: 9a7cae6e71f4914b20e25a1166cdc66aca818fa1 [file] [log] [blame]
Andrew Trick6a50baa2012-05-17 22:37:09 +00001//===- MachineScheduler.cpp - Machine Instruction Scheduler ---------------===//
Andrew Tricke77e84e2012-01-13 06:30:30 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// MachineScheduler schedules machine instructions after phi elimination. It
11// preserves LiveIntervals so it can be invoked before register allocation.
12//
13//===----------------------------------------------------------------------===//
14
Andrew Trick02a80da2012-03-08 01:41:12 +000015#include "llvm/CodeGen/MachineScheduler.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/ADT/PriorityQueue.h"
17#include "llvm/Analysis/AliasAnalysis.h"
18#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Jakub Staszakdf17ddd2013-03-10 13:11:23 +000019#include "llvm/CodeGen/MachineDominators.h"
20#include "llvm/CodeGen/MachineLoopInfo.h"
Andrew Trick736dd9a2013-06-21 18:32:58 +000021#include "llvm/CodeGen/MachineRegisterInfo.h"
Andrew Tricke77e84e2012-01-13 06:30:30 +000022#include "llvm/CodeGen/Passes.h"
Andrew Trick05ff4662012-06-06 20:29:31 +000023#include "llvm/CodeGen/RegisterClassInfo.h"
Andrew Trickcd1c2f92012-11-28 05:13:24 +000024#include "llvm/CodeGen/ScheduleDFS.h"
Andrew Trick61f1a272012-05-24 22:11:09 +000025#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
Andrew Tricke77e84e2012-01-13 06:30:30 +000026#include "llvm/Support/CommandLine.h"
27#include "llvm/Support/Debug.h"
28#include "llvm/Support/ErrorHandling.h"
Andrew Trickea9fd952013-01-25 07:45:29 +000029#include "llvm/Support/GraphWriter.h"
Andrew Tricke77e84e2012-01-13 06:30:30 +000030#include "llvm/Support/raw_ostream.h"
Jakub Staszak80df8b82013-06-14 00:00:13 +000031#include "llvm/Target/TargetInstrInfo.h"
Andrew Trick7ccdc5c2012-01-17 06:55:07 +000032#include <queue>
33
Andrew Tricke77e84e2012-01-13 06:30:30 +000034using namespace llvm;
35
Chandler Carruth1b9dde02014-04-22 02:02:50 +000036#define DEBUG_TYPE "misched"
37
Andrew Trick7a8e1002012-09-11 00:39:15 +000038namespace llvm {
39cl::opt<bool> ForceTopDown("misched-topdown", cl::Hidden,
40 cl::desc("Force top-down list scheduling"));
41cl::opt<bool> ForceBottomUp("misched-bottomup", cl::Hidden,
42 cl::desc("Force bottom-up list scheduling"));
Gerolf Hoflehnerb5220dc2014-08-07 21:49:44 +000043cl::opt<bool>
44DumpCriticalPathLength("misched-dcpl", cl::Hidden,
45 cl::desc("Print critical path length to stdout"));
Andrew Trick7a8e1002012-09-11 00:39:15 +000046}
Andrew Trick8823dec2012-03-14 04:00:41 +000047
Andrew Tricka5f19562012-03-07 00:18:25 +000048#ifndef NDEBUG
49static cl::opt<bool> ViewMISchedDAGs("view-misched-dags", cl::Hidden,
50 cl::desc("Pop up a window to show MISched dags after they are processed"));
Lang Hamesdd98c492012-03-19 18:38:38 +000051
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
Andrew Trickb6e74712013-09-04 20:59:59 +000068static cl::opt<bool> EnableRegPressure("misched-regpressure", cl::Hidden,
69 cl::desc("Enable register pressure scheduling."), cl::init(true));
70
Andrew Trickc01b0042013-08-23 17:48:43 +000071static cl::opt<bool> EnableCyclicPath("misched-cyclicpath", cl::Hidden,
Andrew Trick6c88b352013-09-09 23:31:14 +000072 cl::desc("Enable cyclic critical path analysis."), cl::init(true));
Andrew Trickc01b0042013-08-23 17:48:43 +000073
Andrew Tricka7714a02012-11-12 19:40:10 +000074static cl::opt<bool> EnableLoadCluster("misched-cluster", cl::Hidden,
Andrew Trick108c88c2012-11-13 08:47:29 +000075 cl::desc("Enable load clustering."), cl::init(true));
Andrew Tricka7714a02012-11-12 19:40:10 +000076
Andrew Trick263280242012-11-12 19:52:20 +000077// Experimental heuristics
78static cl::opt<bool> EnableMacroFusion("misched-fusion", cl::Hidden,
Andrew Trick108c88c2012-11-13 08:47:29 +000079 cl::desc("Enable scheduling for macro fusion."), cl::init(true));
Andrew Trick263280242012-11-12 19:52:20 +000080
Andrew Trick48f2a722013-03-08 05:40:34 +000081static cl::opt<bool> VerifyScheduling("verify-misched", cl::Hidden,
82 cl::desc("Verify machine instrs before and after machine scheduling"));
83
Andrew Trick44f750a2013-01-25 04:01:04 +000084// DAG subtrees must have at least this many nodes.
85static const unsigned MinSubtreeSize = 8;
86
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000087// Pin the vtables to this file.
88void MachineSchedStrategy::anchor() {}
89void ScheduleDAGMutation::anchor() {}
90
Andrew Trick63440872012-01-14 02:17:06 +000091//===----------------------------------------------------------------------===//
92// Machine Instruction Scheduling Pass and Registry
93//===----------------------------------------------------------------------===//
94
Andrew Trick4d4b5462012-04-24 20:36:19 +000095MachineSchedContext::MachineSchedContext():
Craig Topperc0196b12014-04-14 00:51:57 +000096 MF(nullptr), MLI(nullptr), MDT(nullptr), PassConfig(nullptr), AA(nullptr), LIS(nullptr) {
Andrew Trick4d4b5462012-04-24 20:36:19 +000097 RegClassInfo = new RegisterClassInfo();
98}
99
100MachineSchedContext::~MachineSchedContext() {
101 delete RegClassInfo;
102}
103
Andrew Tricke77e84e2012-01-13 06:30:30 +0000104namespace {
Andrew Trickd7f890e2013-12-28 21:56:47 +0000105/// Base class for a machine scheduler class that can run at any point.
106class MachineSchedulerBase : public MachineSchedContext,
107 public MachineFunctionPass {
108public:
109 MachineSchedulerBase(char &ID): MachineFunctionPass(ID) {}
110
Craig Topperc0196b12014-04-14 00:51:57 +0000111 void print(raw_ostream &O, const Module* = nullptr) const override;
Andrew Trickd7f890e2013-12-28 21:56:47 +0000112
113protected:
Matthias Braun93563e72015-11-03 01:53:29 +0000114 void scheduleRegions(ScheduleDAGInstrs &Scheduler, bool FixKillFlags);
Andrew Trickd7f890e2013-12-28 21:56:47 +0000115};
116
Andrew Tricke1c034f2012-01-17 06:55:03 +0000117/// MachineScheduler runs after coalescing and before register allocation.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000118class MachineScheduler : public MachineSchedulerBase {
Andrew Tricke77e84e2012-01-13 06:30:30 +0000119public:
Andrew Tricke1c034f2012-01-17 06:55:03 +0000120 MachineScheduler();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000121
Craig Topper4584cd52014-03-07 09:26:03 +0000122 void getAnalysisUsage(AnalysisUsage &AU) const override;
Andrew Tricke77e84e2012-01-13 06:30:30 +0000123
Craig Topper4584cd52014-03-07 09:26:03 +0000124 bool runOnMachineFunction(MachineFunction&) override;
Andrew Tricke77e84e2012-01-13 06:30:30 +0000125
Andrew Tricke77e84e2012-01-13 06:30:30 +0000126 static char ID; // Class identification, replacement for typeinfo
Andrew Trick978674b2013-09-20 05:14:41 +0000127
128protected:
129 ScheduleDAGInstrs *createMachineScheduler();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000130};
Andrew Trick17080b92013-12-28 21:56:51 +0000131
132/// PostMachineScheduler runs after shortly before code emission.
133class PostMachineScheduler : public MachineSchedulerBase {
134public:
135 PostMachineScheduler();
136
Craig Topper4584cd52014-03-07 09:26:03 +0000137 void getAnalysisUsage(AnalysisUsage &AU) const override;
Andrew Trick17080b92013-12-28 21:56:51 +0000138
Craig Topper4584cd52014-03-07 09:26:03 +0000139 bool runOnMachineFunction(MachineFunction&) override;
Andrew Trick17080b92013-12-28 21:56:51 +0000140
141 static char ID; // Class identification, replacement for typeinfo
142
143protected:
144 ScheduleDAGInstrs *createPostMachineScheduler();
145};
Andrew Tricke77e84e2012-01-13 06:30:30 +0000146} // namespace
147
Andrew Tricke1c034f2012-01-17 06:55:03 +0000148char MachineScheduler::ID = 0;
Andrew Tricke77e84e2012-01-13 06:30:30 +0000149
Andrew Tricke1c034f2012-01-17 06:55:03 +0000150char &llvm::MachineSchedulerID = MachineScheduler::ID;
Andrew Tricke77e84e2012-01-13 06:30:30 +0000151
Akira Hatanaka7ba78302014-12-13 04:52:04 +0000152INITIALIZE_PASS_BEGIN(MachineScheduler, "machine-scheduler",
Andrew Tricke77e84e2012-01-13 06:30:30 +0000153 "Machine Instruction Scheduler", false, false)
Chandler Carruth7b560d42015-09-09 17:55:00 +0000154INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
Andrew Tricke77e84e2012-01-13 06:30:30 +0000155INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
156INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
Akira Hatanaka7ba78302014-12-13 04:52:04 +0000157INITIALIZE_PASS_END(MachineScheduler, "machine-scheduler",
Andrew Tricke77e84e2012-01-13 06:30:30 +0000158 "Machine Instruction Scheduler", false, false)
159
Andrew Tricke1c034f2012-01-17 06:55:03 +0000160MachineScheduler::MachineScheduler()
Andrew Trickd7f890e2013-12-28 21:56:47 +0000161: MachineSchedulerBase(ID) {
Andrew Tricke1c034f2012-01-17 06:55:03 +0000162 initializeMachineSchedulerPass(*PassRegistry::getPassRegistry());
Andrew Tricke77e84e2012-01-13 06:30:30 +0000163}
164
Andrew Tricke1c034f2012-01-17 06:55:03 +0000165void MachineScheduler::getAnalysisUsage(AnalysisUsage &AU) const {
Andrew Tricke77e84e2012-01-13 06:30:30 +0000166 AU.setPreservesCFG();
167 AU.addRequiredID(MachineDominatorsID);
168 AU.addRequired<MachineLoopInfo>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000169 AU.addRequired<AAResultsWrapperPass>();
Andrew Trick45300682012-03-09 00:52:20 +0000170 AU.addRequired<TargetPassConfig>();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000171 AU.addRequired<SlotIndexes>();
172 AU.addPreserved<SlotIndexes>();
173 AU.addRequired<LiveIntervals>();
174 AU.addPreserved<LiveIntervals>();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000175 MachineFunctionPass::getAnalysisUsage(AU);
176}
177
Andrew Trick17080b92013-12-28 21:56:51 +0000178char PostMachineScheduler::ID = 0;
179
180char &llvm::PostMachineSchedulerID = PostMachineScheduler::ID;
181
182INITIALIZE_PASS(PostMachineScheduler, "postmisched",
Saleem Abdulrasool7230b372013-12-28 22:47:55 +0000183 "PostRA Machine Instruction Scheduler", false, false)
Andrew Trick17080b92013-12-28 21:56:51 +0000184
185PostMachineScheduler::PostMachineScheduler()
186: MachineSchedulerBase(ID) {
187 initializePostMachineSchedulerPass(*PassRegistry::getPassRegistry());
188}
189
190void PostMachineScheduler::getAnalysisUsage(AnalysisUsage &AU) const {
191 AU.setPreservesCFG();
192 AU.addRequiredID(MachineDominatorsID);
193 AU.addRequired<MachineLoopInfo>();
194 AU.addRequired<TargetPassConfig>();
195 MachineFunctionPass::getAnalysisUsage(AU);
196}
197
Andrew Tricke77e84e2012-01-13 06:30:30 +0000198MachinePassRegistry MachineSchedRegistry::Registry;
199
Andrew Trick45300682012-03-09 00:52:20 +0000200/// A dummy default scheduler factory indicates whether the scheduler
201/// is overridden on the command line.
202static ScheduleDAGInstrs *useDefaultMachineSched(MachineSchedContext *C) {
Craig Topperc0196b12014-04-14 00:51:57 +0000203 return nullptr;
Andrew Trick45300682012-03-09 00:52:20 +0000204}
Andrew Tricke77e84e2012-01-13 06:30:30 +0000205
206/// MachineSchedOpt allows command line selection of the scheduler.
207static cl::opt<MachineSchedRegistry::ScheduleDAGCtor, false,
208 RegisterPassParser<MachineSchedRegistry> >
209MachineSchedOpt("misched",
Andrew Trick45300682012-03-09 00:52:20 +0000210 cl::init(&useDefaultMachineSched), cl::Hidden,
Andrew Tricke77e84e2012-01-13 06:30:30 +0000211 cl::desc("Machine instruction scheduler to use"));
212
Andrew Trick45300682012-03-09 00:52:20 +0000213static MachineSchedRegistry
Andrew Trick8823dec2012-03-14 04:00:41 +0000214DefaultSchedRegistry("default", "Use the target's default scheduler choice.",
Andrew Trick45300682012-03-09 00:52:20 +0000215 useDefaultMachineSched);
216
Eric Christopher5f141b02015-03-11 22:56:10 +0000217static cl::opt<bool> EnableMachineSched(
218 "enable-misched",
219 cl::desc("Enable the machine instruction scheduling pass."), cl::init(true),
220 cl::Hidden);
221
Chad Rosier816a1ab2016-01-20 23:08:32 +0000222static cl::opt<bool> EnablePostRAMachineSched(
223 "enable-post-misched",
224 cl::desc("Enable the post-ra machine instruction scheduling pass."),
225 cl::init(true), cl::Hidden);
226
Andrew Trick8823dec2012-03-14 04:00:41 +0000227/// Forward declare the standard machine scheduler. This will be used as the
Andrew Trick45300682012-03-09 00:52:20 +0000228/// default scheduler if the target does not set a default.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000229static ScheduleDAGInstrs *createGenericSchedLive(MachineSchedContext *C);
230static ScheduleDAGInstrs *createGenericSchedPostRA(MachineSchedContext *C);
Andrew Trickcc45a282012-04-24 18:04:34 +0000231
232/// Decrement this iterator until reaching the top or a non-debug instr.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000233static MachineBasicBlock::const_iterator
234priorNonDebug(MachineBasicBlock::const_iterator I,
235 MachineBasicBlock::const_iterator Beg) {
Andrew Trickcc45a282012-04-24 18:04:34 +0000236 assert(I != Beg && "reached the top of the region, cannot decrement");
237 while (--I != Beg) {
238 if (!I->isDebugValue())
239 break;
240 }
241 return I;
242}
243
Andrew Trick2bc74c22013-08-30 04:36:57 +0000244/// Non-const version.
245static MachineBasicBlock::iterator
246priorNonDebug(MachineBasicBlock::iterator I,
247 MachineBasicBlock::const_iterator Beg) {
248 return const_cast<MachineInstr*>(
249 &*priorNonDebug(MachineBasicBlock::const_iterator(I), Beg));
250}
251
Andrew Trickcc45a282012-04-24 18:04:34 +0000252/// If this iterator is a debug value, increment until reaching the End or a
253/// non-debug instruction.
Andrew Trick2c4f8b72013-08-31 05:17:58 +0000254static MachineBasicBlock::const_iterator
255nextIfDebug(MachineBasicBlock::const_iterator I,
256 MachineBasicBlock::const_iterator End) {
Andrew Trick463b2f12012-05-17 18:35:03 +0000257 for(; I != End; ++I) {
Andrew Trickcc45a282012-04-24 18:04:34 +0000258 if (!I->isDebugValue())
259 break;
260 }
261 return I;
262}
263
Andrew Trick2c4f8b72013-08-31 05:17:58 +0000264/// Non-const version.
265static MachineBasicBlock::iterator
266nextIfDebug(MachineBasicBlock::iterator I,
267 MachineBasicBlock::const_iterator End) {
268 // Cast the return value to nonconst MachineInstr, then cast to an
269 // instr_iterator, which does not check for null, finally return a
270 // bundle_iterator.
271 return MachineBasicBlock::instr_iterator(
272 const_cast<MachineInstr*>(
273 &*nextIfDebug(MachineBasicBlock::const_iterator(I), End)));
274}
275
Andrew Trickdc4c1ad2013-09-24 17:11:19 +0000276/// Instantiate a ScheduleDAGInstrs that will be owned by the caller.
Andrew Trick978674b2013-09-20 05:14:41 +0000277ScheduleDAGInstrs *MachineScheduler::createMachineScheduler() {
278 // Select the scheduler, or set the default.
279 MachineSchedRegistry::ScheduleDAGCtor Ctor = MachineSchedOpt;
280 if (Ctor != useDefaultMachineSched)
281 return Ctor(this);
282
283 // Get the default scheduler set by the target for this function.
284 ScheduleDAGInstrs *Scheduler = PassConfig->createMachineScheduler(this);
285 if (Scheduler)
286 return Scheduler;
287
288 // Default to GenericScheduler.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000289 return createGenericSchedLive(this);
Andrew Trick978674b2013-09-20 05:14:41 +0000290}
291
Andrew Trick17080b92013-12-28 21:56:51 +0000292/// Instantiate a ScheduleDAGInstrs for PostRA scheduling that will be owned by
293/// the caller. We don't have a command line option to override the postRA
294/// scheduler. The Target must configure it.
295ScheduleDAGInstrs *PostMachineScheduler::createPostMachineScheduler() {
296 // Get the postRA scheduler set by the target for this function.
297 ScheduleDAGInstrs *Scheduler = PassConfig->createPostMachineScheduler(this);
298 if (Scheduler)
299 return Scheduler;
300
301 // Default to GenericScheduler.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000302 return createGenericSchedPostRA(this);
Andrew Trick17080b92013-12-28 21:56:51 +0000303}
304
Andrew Trick72515be2012-03-14 04:00:38 +0000305/// Top-level MachineScheduler pass driver.
306///
307/// Visit blocks in function order. Divide each block into scheduling regions
Andrew Trick8823dec2012-03-14 04:00:41 +0000308/// and visit them bottom-up. Visiting regions bottom-up is not required, but is
309/// consistent with the DAG builder, which traverses the interior of the
310/// scheduling regions bottom-up.
Andrew Trick72515be2012-03-14 04:00:38 +0000311///
312/// This design avoids exposing scheduling boundaries to the DAG builder,
Andrew Trick8823dec2012-03-14 04:00:41 +0000313/// simplifying the DAG builder's support for "special" target instructions.
314/// At the same time the design allows target schedulers to operate across
Andrew Trick72515be2012-03-14 04:00:38 +0000315/// scheduling boundaries, for example to bundle the boudary instructions
316/// without reordering them. This creates complexity, because the target
317/// scheduler must update the RegionBegin and RegionEnd positions cached by
318/// ScheduleDAGInstrs whenever adding or removing instructions. A much simpler
319/// design would be to split blocks at scheduling boundaries, but LLVM has a
320/// general bias against block splitting purely for implementation simplicity.
Andrew Tricke1c034f2012-01-17 06:55:03 +0000321bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) {
Chad Rosier6338d7c2016-01-20 22:38:25 +0000322 if (skipOptnoneFunction(*mf.getFunction()))
323 return false;
324
Eric Christopher5f141b02015-03-11 22:56:10 +0000325 if (EnableMachineSched.getNumOccurrences()) {
326 if (!EnableMachineSched)
327 return false;
328 } else if (!mf.getSubtarget().enableMachineScheduler())
329 return false;
330
Matthias Braundc7580a2015-10-29 03:57:28 +0000331 DEBUG(dbgs() << "Before MISched:\n"; mf.print(dbgs()));
Andrew Trickc5d70082012-05-10 21:06:21 +0000332
Andrew Tricke77e84e2012-01-13 06:30:30 +0000333 // Initialize the context of the pass.
334 MF = &mf;
335 MLI = &getAnalysis<MachineLoopInfo>();
336 MDT = &getAnalysis<MachineDominatorTree>();
Andrew Trick45300682012-03-09 00:52:20 +0000337 PassConfig = &getAnalysis<TargetPassConfig>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000338 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
Andrew Trick02a80da2012-03-08 01:41:12 +0000339
Lang Hamesad33d5a2012-01-27 22:36:19 +0000340 LIS = &getAnalysis<LiveIntervals>();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000341
Andrew Trick48f2a722013-03-08 05:40:34 +0000342 if (VerifyScheduling) {
Andrew Trick97064962013-07-25 07:26:26 +0000343 DEBUG(LIS->dump());
Andrew Trick48f2a722013-03-08 05:40:34 +0000344 MF->verify(this, "Before machine scheduling.");
345 }
Andrew Trick4d4b5462012-04-24 20:36:19 +0000346 RegClassInfo->runOnMachineFunction(*MF);
Andrew Trick88639922012-04-24 17:56:43 +0000347
Andrew Trick978674b2013-09-20 05:14:41 +0000348 // Instantiate the selected scheduler for this target, function, and
349 // optimization level.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000350 std::unique_ptr<ScheduleDAGInstrs> Scheduler(createMachineScheduler());
Matthias Braun93563e72015-11-03 01:53:29 +0000351 scheduleRegions(*Scheduler, false);
Andrew Trickd7f890e2013-12-28 21:56:47 +0000352
353 DEBUG(LIS->dump());
354 if (VerifyScheduling)
355 MF->verify(this, "After machine scheduling.");
356 return true;
357}
358
Andrew Trick17080b92013-12-28 21:56:51 +0000359bool PostMachineScheduler::runOnMachineFunction(MachineFunction &mf) {
Paul Robinson7c99ec52014-03-31 17:43:35 +0000360 if (skipOptnoneFunction(*mf.getFunction()))
361 return false;
362
Chad Rosier816a1ab2016-01-20 23:08:32 +0000363 if (EnablePostRAMachineSched.getNumOccurrences()) {
364 if (!EnablePostRAMachineSched)
365 return false;
366 } else if (!mf.getSubtarget().enablePostRAScheduler()) {
Andrew Trick8d2ee372014-06-04 07:06:27 +0000367 DEBUG(dbgs() << "Subtarget disables post-MI-sched.\n");
368 return false;
369 }
Andrew Trick17080b92013-12-28 21:56:51 +0000370 DEBUG(dbgs() << "Before post-MI-sched:\n"; mf.print(dbgs()));
371
372 // Initialize the context of the pass.
373 MF = &mf;
374 PassConfig = &getAnalysis<TargetPassConfig>();
375
376 if (VerifyScheduling)
377 MF->verify(this, "Before post machine scheduling.");
378
379 // Instantiate the selected scheduler for this target, function, and
380 // optimization level.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000381 std::unique_ptr<ScheduleDAGInstrs> Scheduler(createPostMachineScheduler());
Matthias Braun93563e72015-11-03 01:53:29 +0000382 scheduleRegions(*Scheduler, true);
Andrew Trick17080b92013-12-28 21:56:51 +0000383
384 if (VerifyScheduling)
385 MF->verify(this, "After post machine scheduling.");
386 return true;
387}
388
Andrew Trickd14d7c22013-12-28 21:56:57 +0000389/// Return true of the given instruction should not be included in a scheduling
390/// region.
391///
392/// MachineScheduler does not currently support scheduling across calls. To
393/// handle calls, the DAG builder needs to be modified to create register
394/// anti/output dependencies on the registers clobbered by the call's regmask
395/// operand. In PreRA scheduling, the stack pointer adjustment already prevents
396/// scheduling across calls. In PostRA scheduling, we need the isCall to enforce
397/// the boundary, but there would be no benefit to postRA scheduling across
398/// calls this late anyway.
399static bool isSchedBoundary(MachineBasicBlock::iterator MI,
400 MachineBasicBlock *MBB,
401 MachineFunction *MF,
Matthias Braun93563e72015-11-03 01:53:29 +0000402 const TargetInstrInfo *TII) {
Andrew Trickd14d7c22013-12-28 21:56:57 +0000403 return MI->isCall() || TII->isSchedulingBoundary(MI, MBB, *MF);
404}
405
Andrew Trickd7f890e2013-12-28 21:56:47 +0000406/// Main driver for both MachineScheduler and PostMachineScheduler.
Matthias Braun93563e72015-11-03 01:53:29 +0000407void MachineSchedulerBase::scheduleRegions(ScheduleDAGInstrs &Scheduler,
408 bool FixKillFlags) {
Eric Christopherfc6de422014-08-05 02:39:49 +0000409 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000410
411 // Visit all machine basic blocks.
Andrew Trick88639922012-04-24 17:56:43 +0000412 //
413 // TODO: Visit blocks in global postorder or postorder within the bottom-up
414 // loop tree. Then we can optionally compute global RegPressure.
Andrew Tricke77e84e2012-01-13 06:30:30 +0000415 for (MachineFunction::iterator MBB = MF->begin(), MBBEnd = MF->end();
416 MBB != MBBEnd; ++MBB) {
417
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000418 Scheduler.startBlock(&*MBB);
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000419
Andrew Trick33e05d72013-12-28 21:57:02 +0000420#ifndef NDEBUG
421 if (SchedOnlyFunc.getNumOccurrences() && SchedOnlyFunc != MF->getName())
422 continue;
423 if (SchedOnlyBlock.getNumOccurrences()
424 && (int)SchedOnlyBlock != MBB->getNumber())
425 continue;
426#endif
427
Andrew Trick7e120f42012-01-14 02:17:09 +0000428 // Break the block into scheduling regions [I, RegionEnd), and schedule each
Sylvestre Ledru35521e22012-07-23 08:51:15 +0000429 // region as soon as it is discovered. RegionEnd points the scheduling
Andrew Trickaf1bee72012-03-09 22:34:56 +0000430 // boundary at the bottom of the region. The DAG does not include RegionEnd,
431 // but the region does (i.e. the next RegionEnd is above the previous
432 // RegionBegin). If the current block has no terminator then RegionEnd ==
433 // MBB->end() for the bottom region.
434 //
435 // The Scheduler may insert instructions during either schedule() or
436 // exitRegion(), even for empty regions. So the local iterators 'I' and
437 // 'RegionEnd' are invalid across these calls.
Andrew Trickd14d7c22013-12-28 21:56:57 +0000438 //
439 // MBB::size() uses instr_iterator to count. Here we need a bundle to count
440 // as a single instruction.
441 unsigned RemainingInstrs = std::distance(MBB->begin(), MBB->end());
Andrew Tricka21daf72012-03-09 03:46:39 +0000442 for(MachineBasicBlock::iterator RegionEnd = MBB->end();
Andrew Trickd7f890e2013-12-28 21:56:47 +0000443 RegionEnd != MBB->begin(); RegionEnd = Scheduler.begin()) {
Andrew Trick88639922012-04-24 17:56:43 +0000444
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000445 // Avoid decrementing RegionEnd for blocks with no terminator.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000446 if (RegionEnd != MBB->end() ||
Matthias Braun93563e72015-11-03 01:53:29 +0000447 isSchedBoundary(&*std::prev(RegionEnd), &*MBB, MF, TII)) {
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000448 --RegionEnd;
449 // Count the boundary instruction.
Andrew Trick4d1fa712012-11-06 07:10:34 +0000450 --RemainingInstrs;
Andrew Trickedfe2ec2012-03-09 08:02:51 +0000451 }
452
Andrew Trick7e120f42012-01-14 02:17:09 +0000453 // The next region starts above the previous region. Look backward in the
454 // instruction stream until we find the nearest boundary.
Andrew Tricka53e1012013-08-23 17:48:33 +0000455 unsigned NumRegionInstrs = 0;
Andrew Trick7e120f42012-01-14 02:17:09 +0000456 MachineBasicBlock::iterator I = RegionEnd;
Andrea Di Biagiod65fd9f2014-12-12 15:09:58 +0000457 for(;I != MBB->begin(); --I, --RemainingInstrs) {
Matthias Braun93563e72015-11-03 01:53:29 +0000458 if (isSchedBoundary(&*std::prev(I), &*MBB, MF, TII))
Andrew Trick7e120f42012-01-14 02:17:09 +0000459 break;
Andrea Di Biagiod65fd9f2014-12-12 15:09:58 +0000460 if (!I->isDebugValue())
461 ++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";
Andrew Tricka53e1012013-08-23 17:48:33 +0000480 dbgs() << " RegionInstrs: " << NumRegionInstrs
481 << " Remaining: " << RemainingInstrs << "\n");
Gerolf Hoflehnerb5220dc2014-08-07 21:49:44 +0000482 if (DumpCriticalPathLength) {
483 errs() << MF->getName();
484 errs() << ":BB# " << MBB->getNumber();
485 errs() << " " << MBB->getName() << " \n";
486 }
Andrew Trick7ccdc5c2012-01-17 06:55:07 +0000487
Andrew Trick1c0ec452012-03-09 03:46:42 +0000488 // Schedule a region: possibly reorder instructions.
Andrew Trickaf1bee72012-03-09 22:34:56 +0000489 // This invalidates 'RegionEnd' and 'I'.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000490 Scheduler.schedule();
Andrew Trick1c0ec452012-03-09 03:46:42 +0000491
492 // Close the current region.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000493 Scheduler.exitRegion();
Andrew Trick60cf03e2012-03-07 05:21:52 +0000494
495 // Scheduling has invalidated the current iterator 'I'. Ask the
496 // scheduler for the top of it's scheduled region.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000497 RegionEnd = Scheduler.begin();
Andrew Trick7e120f42012-01-14 02:17:09 +0000498 }
Andrew Trick4d1fa712012-11-06 07:10:34 +0000499 assert(RemainingInstrs == 0 && "Instruction count mismatch!");
Andrew Trickd7f890e2013-12-28 21:56:47 +0000500 Scheduler.finishBlock();
Matthias Braun93563e72015-11-03 01:53:29 +0000501 // FIXME: Ideally, no further passes should rely on kill flags. However,
502 // thumb2 size reduction is currently an exception, so the PostMIScheduler
503 // needs to do this.
504 if (FixKillFlags)
505 Scheduler.fixupKills(&*MBB);
Andrew Tricke77e84e2012-01-13 06:30:30 +0000506 }
Andrew Trickd7f890e2013-12-28 21:56:47 +0000507 Scheduler.finalizeSchedule();
Andrew Tricke77e84e2012-01-13 06:30:30 +0000508}
509
Andrew Trickd7f890e2013-12-28 21:56:47 +0000510void MachineSchedulerBase::print(raw_ostream &O, const Module* m) const {
Andrew Tricke77e84e2012-01-13 06:30:30 +0000511 // unimplemented
512}
513
Alp Tokerd8d510a2014-07-01 21:19:13 +0000514LLVM_DUMP_METHOD
Andrew Trick7a8e1002012-09-11 00:39:15 +0000515void ReadyQueue::dump() {
James Y Knighte72b0db2015-09-18 18:52:20 +0000516 dbgs() << "Queue " << Name << ": ";
Andrew Trick7a8e1002012-09-11 00:39:15 +0000517 for (unsigned i = 0, e = Queue.size(); i < e; ++i)
518 dbgs() << Queue[i]->NodeNum << " ";
519 dbgs() << "\n";
520}
Andrew Trick8823dec2012-03-14 04:00:41 +0000521
522//===----------------------------------------------------------------------===//
Andrew Trickd7f890e2013-12-28 21:56:47 +0000523// ScheduleDAGMI - Basic machine instruction scheduling. This is
524// independent of PreRA/PostRA scheduling and involves no extra book-keeping for
525// virtual registers.
526// ===----------------------------------------------------------------------===/
Andrew Trick8823dec2012-03-14 04:00:41 +0000527
David Blaikie422b93d2014-04-21 20:32:32 +0000528// Provide a vtable anchor.
Andrew Trick44f750a2013-01-25 04:01:04 +0000529ScheduleDAGMI::~ScheduleDAGMI() {
Andrew Trick44f750a2013-01-25 04:01:04 +0000530}
531
Andrew Trick85a1d4c2013-04-24 15:54:43 +0000532bool ScheduleDAGMI::canAddEdge(SUnit *SuccSU, SUnit *PredSU) {
533 return SuccSU == &ExitSU || !Topo.IsReachable(PredSU, SuccSU);
534}
535
Andrew Tricka7714a02012-11-12 19:40:10 +0000536bool ScheduleDAGMI::addEdge(SUnit *SuccSU, const SDep &PredDep) {
Andrew Trick263280242012-11-12 19:52:20 +0000537 if (SuccSU != &ExitSU) {
538 // Do not use WillCreateCycle, it assumes SD scheduling.
539 // If Pred is reachable from Succ, then the edge creates a cycle.
540 if (Topo.IsReachable(PredDep.getSUnit(), SuccSU))
541 return false;
542 Topo.AddPred(SuccSU, PredDep.getSUnit());
543 }
Andrew Tricka7714a02012-11-12 19:40:10 +0000544 SuccSU->addPred(PredDep, /*Required=*/!PredDep.isArtificial());
545 // Return true regardless of whether a new edge needed to be inserted.
546 return true;
547}
548
Andrew Trick02a80da2012-03-08 01:41:12 +0000549/// ReleaseSucc - Decrement the NumPredsLeft count of a successor. When
550/// NumPredsLeft reaches zero, release the successor node.
Andrew Trick61f1a272012-05-24 22:11:09 +0000551///
552/// FIXME: Adjust SuccSU height based on MinLatency.
Andrew Trick8823dec2012-03-14 04:00:41 +0000553void ScheduleDAGMI::releaseSucc(SUnit *SU, SDep *SuccEdge) {
Andrew Trick02a80da2012-03-08 01:41:12 +0000554 SUnit *SuccSU = SuccEdge->getSUnit();
555
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000556 if (SuccEdge->isWeak()) {
557 --SuccSU->WeakPredsLeft;
Andrew Tricka7714a02012-11-12 19:40:10 +0000558 if (SuccEdge->isCluster())
559 NextClusterSucc = SuccSU;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000560 return;
561 }
Andrew Trick02a80da2012-03-08 01:41:12 +0000562#ifndef NDEBUG
563 if (SuccSU->NumPredsLeft == 0) {
564 dbgs() << "*** Scheduling failed! ***\n";
565 SuccSU->dump(this);
566 dbgs() << " has been released too many times!\n";
Craig Topperc0196b12014-04-14 00:51:57 +0000567 llvm_unreachable(nullptr);
Andrew Trick02a80da2012-03-08 01:41:12 +0000568 }
569#endif
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000570 // SU->TopReadyCycle was set to CurrCycle when it was scheduled. However,
571 // CurrCycle may have advanced since then.
572 if (SuccSU->TopReadyCycle < SU->TopReadyCycle + SuccEdge->getLatency())
573 SuccSU->TopReadyCycle = SU->TopReadyCycle + SuccEdge->getLatency();
574
Andrew Trick02a80da2012-03-08 01:41:12 +0000575 --SuccSU->NumPredsLeft;
576 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
Andrew Trick8823dec2012-03-14 04:00:41 +0000577 SchedImpl->releaseTopNode(SuccSU);
Andrew Trick02a80da2012-03-08 01:41:12 +0000578}
579
580/// releaseSuccessors - Call releaseSucc on each of SU's successors.
Andrew Trick8823dec2012-03-14 04:00:41 +0000581void ScheduleDAGMI::releaseSuccessors(SUnit *SU) {
Andrew Trick02a80da2012-03-08 01:41:12 +0000582 for (SUnit::succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
583 I != E; ++I) {
584 releaseSucc(SU, &*I);
585 }
586}
587
Andrew Trick8823dec2012-03-14 04:00:41 +0000588/// ReleasePred - Decrement the NumSuccsLeft count of a predecessor. When
589/// NumSuccsLeft reaches zero, release the predecessor node.
Andrew Trick61f1a272012-05-24 22:11:09 +0000590///
591/// FIXME: Adjust PredSU height based on MinLatency.
Andrew Trick8823dec2012-03-14 04:00:41 +0000592void ScheduleDAGMI::releasePred(SUnit *SU, SDep *PredEdge) {
593 SUnit *PredSU = PredEdge->getSUnit();
594
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000595 if (PredEdge->isWeak()) {
596 --PredSU->WeakSuccsLeft;
Andrew Tricka7714a02012-11-12 19:40:10 +0000597 if (PredEdge->isCluster())
598 NextClusterPred = PredSU;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000599 return;
600 }
Andrew Trick8823dec2012-03-14 04:00:41 +0000601#ifndef NDEBUG
602 if (PredSU->NumSuccsLeft == 0) {
603 dbgs() << "*** Scheduling failed! ***\n";
604 PredSU->dump(this);
605 dbgs() << " has been released too many times!\n";
Craig Topperc0196b12014-04-14 00:51:57 +0000606 llvm_unreachable(nullptr);
Andrew Trick8823dec2012-03-14 04:00:41 +0000607 }
608#endif
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000609 // SU->BotReadyCycle was set to CurrCycle when it was scheduled. However,
610 // CurrCycle may have advanced since then.
611 if (PredSU->BotReadyCycle < SU->BotReadyCycle + PredEdge->getLatency())
612 PredSU->BotReadyCycle = SU->BotReadyCycle + PredEdge->getLatency();
613
Andrew Trick8823dec2012-03-14 04:00:41 +0000614 --PredSU->NumSuccsLeft;
615 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU)
616 SchedImpl->releaseBottomNode(PredSU);
617}
618
619/// releasePredecessors - Call releasePred on each of SU's predecessors.
620void ScheduleDAGMI::releasePredecessors(SUnit *SU) {
621 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
622 I != E; ++I) {
623 releasePred(SU, &*I);
624 }
625}
626
Andrew Trickd7f890e2013-12-28 21:56:47 +0000627/// enterRegion - Called back from MachineScheduler::runOnMachineFunction after
628/// crossing a scheduling boundary. [begin, end) includes all instructions in
629/// the region, including the boundary itself and single-instruction regions
630/// that don't get scheduled.
631void ScheduleDAGMI::enterRegion(MachineBasicBlock *bb,
632 MachineBasicBlock::iterator begin,
633 MachineBasicBlock::iterator end,
634 unsigned regioninstrs)
635{
636 ScheduleDAGInstrs::enterRegion(bb, begin, end, regioninstrs);
637
638 SchedImpl->initPolicy(begin, end, regioninstrs);
639}
640
Andrew Tricke833e1c2013-04-13 06:07:40 +0000641/// This is normally called from the main scheduler loop but may also be invoked
642/// by the scheduling strategy to perform additional code motion.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000643void ScheduleDAGMI::moveInstruction(
644 MachineInstr *MI, MachineBasicBlock::iterator InsertPos) {
Andrew Trick463b2f12012-05-17 18:35:03 +0000645 // Advance RegionBegin if the first instruction moves down.
Andrew Trick54f7def2012-03-21 04:12:10 +0000646 if (&*RegionBegin == MI)
Andrew Trick463b2f12012-05-17 18:35:03 +0000647 ++RegionBegin;
648
649 // Update the instruction stream.
Andrew Trick8823dec2012-03-14 04:00:41 +0000650 BB->splice(InsertPos, BB, MI);
Andrew Trick463b2f12012-05-17 18:35:03 +0000651
652 // Update LiveIntervals
Andrew Trickd7f890e2013-12-28 21:56:47 +0000653 if (LIS)
Duncan P. N. Exon Smithbe8f8c42016-02-27 20:14:29 +0000654 LIS->handleMove(*MI, /*UpdateFlags=*/true);
Andrew Trick463b2f12012-05-17 18:35:03 +0000655
656 // Recede RegionBegin if an instruction moves above the first.
Andrew Trick8823dec2012-03-14 04:00:41 +0000657 if (RegionBegin == InsertPos)
658 RegionBegin = MI;
659}
660
Andrew Trickde670c02012-03-21 04:12:07 +0000661bool ScheduleDAGMI::checkSchedLimit() {
662#ifndef NDEBUG
663 if (NumInstrsScheduled == MISchedCutoff && MISchedCutoff != ~0U) {
664 CurrentTop = CurrentBottom;
665 return false;
666 }
667 ++NumInstrsScheduled;
668#endif
669 return true;
670}
671
Andrew Trickd7f890e2013-12-28 21:56:47 +0000672/// Per-region scheduling driver, called back from
673/// MachineScheduler::runOnMachineFunction. This is a simplified driver that
674/// does not consider liveness or register pressure. It is useful for PostRA
675/// scheduling and potentially other custom schedulers.
676void ScheduleDAGMI::schedule() {
James Y Knighte72b0db2015-09-18 18:52:20 +0000677 DEBUG(dbgs() << "ScheduleDAGMI::schedule starting\n");
678 DEBUG(SchedImpl->dumpPolicy());
679
Andrew Trickd7f890e2013-12-28 21:56:47 +0000680 // Build the DAG.
681 buildSchedGraph(AA);
682
683 Topo.InitDAGTopologicalSorting();
684
685 postprocessDAG();
686
687 SmallVector<SUnit*, 8> TopRoots, BotRoots;
688 findRootsAndBiasEdges(TopRoots, BotRoots);
689
690 // Initialize the strategy before modifying the DAG.
691 // This may initialize a DFSResult to be used for queue priority.
692 SchedImpl->initialize(this);
693
694 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
695 SUnits[su].dumpAll(this));
696 if (ViewMISchedDAGs) viewGraph();
697
698 // Initialize ready queues now that the DAG and priority data are finalized.
699 initQueues(TopRoots, BotRoots);
700
701 bool IsTopNode = false;
James Y Knighte72b0db2015-09-18 18:52:20 +0000702 while (true) {
703 DEBUG(dbgs() << "** ScheduleDAGMI::schedule picking next node\n");
704 SUnit *SU = SchedImpl->pickNode(IsTopNode);
705 if (!SU) break;
706
Andrew Trickd7f890e2013-12-28 21:56:47 +0000707 assert(!SU->isScheduled && "Node already scheduled");
708 if (!checkSchedLimit())
709 break;
710
711 MachineInstr *MI = SU->getInstr();
712 if (IsTopNode) {
713 assert(SU->isTopReady() && "node still has unscheduled dependencies");
714 if (&*CurrentTop == MI)
715 CurrentTop = nextIfDebug(++CurrentTop, CurrentBottom);
716 else
717 moveInstruction(MI, CurrentTop);
718 }
719 else {
720 assert(SU->isBottomReady() && "node still has unscheduled dependencies");
721 MachineBasicBlock::iterator priorII =
722 priorNonDebug(CurrentBottom, CurrentTop);
723 if (&*priorII == MI)
724 CurrentBottom = priorII;
725 else {
726 if (&*CurrentTop == MI)
727 CurrentTop = nextIfDebug(++CurrentTop, priorII);
728 moveInstruction(MI, CurrentBottom);
729 CurrentBottom = MI;
730 }
731 }
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000732 // Notify the scheduling strategy before updating the DAG.
Andrew Trick491e34a2014-06-12 22:36:28 +0000733 // This sets the scheduled node's ReadyCycle to CurrCycle. When updateQueues
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000734 // runs, it can then use the accurate ReadyCycle time to determine whether
735 // newly released nodes can move to the readyQ.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000736 SchedImpl->schedNode(SU, IsTopNode);
Andrew Trick7f1ebbe2014-06-07 01:48:43 +0000737
738 updateQueues(SU, IsTopNode);
Andrew Trickd7f890e2013-12-28 21:56:47 +0000739 }
740 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone.");
741
742 placeDebugValues();
743
744 DEBUG({
745 unsigned BBNum = begin()->getParent()->getNumber();
746 dbgs() << "*** Final schedule for BB#" << BBNum << " ***\n";
747 dumpSchedule();
748 dbgs() << '\n';
749 });
750}
751
752/// Apply each ScheduleDAGMutation step in order.
753void ScheduleDAGMI::postprocessDAG() {
754 for (unsigned i = 0, e = Mutations.size(); i < e; ++i) {
755 Mutations[i]->apply(this);
756 }
757}
758
759void ScheduleDAGMI::
760findRootsAndBiasEdges(SmallVectorImpl<SUnit*> &TopRoots,
761 SmallVectorImpl<SUnit*> &BotRoots) {
762 for (std::vector<SUnit>::iterator
763 I = SUnits.begin(), E = SUnits.end(); I != E; ++I) {
764 SUnit *SU = &(*I);
765 assert(!SU->isBoundaryNode() && "Boundary node should not be in SUnits");
766
767 // Order predecessors so DFSResult follows the critical path.
768 SU->biasCriticalPath();
769
770 // A SUnit is ready to top schedule if it has no predecessors.
771 if (!I->NumPredsLeft)
772 TopRoots.push_back(SU);
773 // A SUnit is ready to bottom schedule if it has no successors.
774 if (!I->NumSuccsLeft)
775 BotRoots.push_back(SU);
776 }
777 ExitSU.biasCriticalPath();
778}
779
780/// Identify DAG roots and setup scheduler queues.
781void ScheduleDAGMI::initQueues(ArrayRef<SUnit*> TopRoots,
782 ArrayRef<SUnit*> BotRoots) {
Craig Topperc0196b12014-04-14 00:51:57 +0000783 NextClusterSucc = nullptr;
784 NextClusterPred = nullptr;
Andrew Trickd7f890e2013-12-28 21:56:47 +0000785
786 // Release all DAG roots for scheduling, not including EntrySU/ExitSU.
787 //
788 // Nodes with unreleased weak edges can still be roots.
789 // Release top roots in forward order.
790 for (SmallVectorImpl<SUnit*>::const_iterator
791 I = TopRoots.begin(), E = TopRoots.end(); I != E; ++I) {
792 SchedImpl->releaseTopNode(*I);
793 }
794 // Release bottom roots in reverse order so the higher priority nodes appear
795 // first. This is more natural and slightly more efficient.
796 for (SmallVectorImpl<SUnit*>::const_reverse_iterator
797 I = BotRoots.rbegin(), E = BotRoots.rend(); I != E; ++I) {
798 SchedImpl->releaseBottomNode(*I);
799 }
800
801 releaseSuccessors(&EntrySU);
802 releasePredecessors(&ExitSU);
803
804 SchedImpl->registerRoots();
805
806 // Advance past initial DebugValues.
807 CurrentTop = nextIfDebug(RegionBegin, RegionEnd);
808 CurrentBottom = RegionEnd;
809}
810
811/// Update scheduler queues after scheduling an instruction.
812void ScheduleDAGMI::updateQueues(SUnit *SU, bool IsTopNode) {
813 // Release dependent instructions for scheduling.
814 if (IsTopNode)
815 releaseSuccessors(SU);
816 else
817 releasePredecessors(SU);
818
819 SU->isScheduled = true;
820}
821
822/// Reinsert any remaining debug_values, just like the PostRA scheduler.
823void ScheduleDAGMI::placeDebugValues() {
824 // If first instruction was a DBG_VALUE then put it back.
825 if (FirstDbgValue) {
826 BB->splice(RegionBegin, BB, FirstDbgValue);
827 RegionBegin = FirstDbgValue;
828 }
829
830 for (std::vector<std::pair<MachineInstr *, MachineInstr *> >::iterator
831 DI = DbgValues.end(), DE = DbgValues.begin(); DI != DE; --DI) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000832 std::pair<MachineInstr *, MachineInstr *> P = *std::prev(DI);
Andrew Trickd7f890e2013-12-28 21:56:47 +0000833 MachineInstr *DbgValue = P.first;
834 MachineBasicBlock::iterator OrigPrevMI = P.second;
835 if (&*RegionBegin == DbgValue)
836 ++RegionBegin;
837 BB->splice(++OrigPrevMI, BB, DbgValue);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000838 if (OrigPrevMI == std::prev(RegionEnd))
Andrew Trickd7f890e2013-12-28 21:56:47 +0000839 RegionEnd = DbgValue;
840 }
841 DbgValues.clear();
Craig Topperc0196b12014-04-14 00:51:57 +0000842 FirstDbgValue = nullptr;
Andrew Trickd7f890e2013-12-28 21:56:47 +0000843}
844
845#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
846void ScheduleDAGMI::dumpSchedule() const {
847 for (MachineBasicBlock::iterator MI = begin(), ME = end(); MI != ME; ++MI) {
848 if (SUnit *SU = getSUnit(&(*MI)))
849 SU->dump(this);
850 else
851 dbgs() << "Missing SUnit\n";
852 }
853}
854#endif
855
856//===----------------------------------------------------------------------===//
857// ScheduleDAGMILive - Base class for MachineInstr scheduling with LiveIntervals
858// preservation.
859//===----------------------------------------------------------------------===//
860
861ScheduleDAGMILive::~ScheduleDAGMILive() {
862 delete DFSResult;
863}
864
Andrew Trick88639922012-04-24 17:56:43 +0000865/// enterRegion - Called back from MachineScheduler::runOnMachineFunction after
866/// crossing a scheduling boundary. [begin, end) includes all instructions in
867/// the region, including the boundary itself and single-instruction regions
868/// that don't get scheduled.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000869void ScheduleDAGMILive::enterRegion(MachineBasicBlock *bb,
Andrew Trick88639922012-04-24 17:56:43 +0000870 MachineBasicBlock::iterator begin,
871 MachineBasicBlock::iterator end,
Andrew Tricka53e1012013-08-23 17:48:33 +0000872 unsigned regioninstrs)
Andrew Trick88639922012-04-24 17:56:43 +0000873{
Andrew Trickd7f890e2013-12-28 21:56:47 +0000874 // ScheduleDAGMI initializes SchedImpl's per-region policy.
875 ScheduleDAGMI::enterRegion(bb, begin, end, regioninstrs);
Andrew Trick4add42f2012-05-10 21:06:10 +0000876
877 // For convenience remember the end of the liveness region.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000878 LiveRegionEnd = (RegionEnd == bb->end()) ? RegionEnd : std::next(RegionEnd);
Andrew Trick75e411c2013-09-06 17:32:34 +0000879
Andrew Trickb248b4a2013-09-06 17:32:47 +0000880 SUPressureDiffs.clear();
881
Andrew Trick75e411c2013-09-06 17:32:34 +0000882 ShouldTrackPressure = SchedImpl->shouldTrackPressure();
Matthias Braund4f64092016-01-20 00:23:32 +0000883 ShouldTrackLaneMasks = SchedImpl->shouldTrackLaneMasks();
884
885 if (ShouldTrackLaneMasks) {
886 if (!ShouldTrackPressure)
887 report_fatal_error("ShouldTrackLaneMasks requires ShouldTrackPressure");
888 // Dead subregister defs have no users and therefore no dependencies,
889 // moving them around may cause liveintervals to degrade into multiple
890 // components. Change independent components to have their own vreg to avoid
891 // this.
892 if (!DisconnectedComponentsRenamed)
893 LIS->renameDisconnectedComponents();
894 }
Andrew Trick4add42f2012-05-10 21:06:10 +0000895}
896
897// Setup the register pressure trackers for the top scheduled top and bottom
898// scheduled regions.
Andrew Trickd7f890e2013-12-28 21:56:47 +0000899void ScheduleDAGMILive::initRegPressure() {
Matthias Braund4f64092016-01-20 00:23:32 +0000900 TopRPTracker.init(&MF, RegClassInfo, LIS, BB, RegionBegin,
901 ShouldTrackLaneMasks, false);
902 BotRPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd,
903 ShouldTrackLaneMasks, false);
Andrew Trick4add42f2012-05-10 21:06:10 +0000904
905 // Close the RPTracker to finalize live ins.
906 RPTracker.closeRegion();
907
Andrew Trick9c17eab2013-07-30 19:59:12 +0000908 DEBUG(RPTracker.dump());
Andrew Trick79d3eec2012-05-24 22:11:14 +0000909
Andrew Trick4add42f2012-05-10 21:06:10 +0000910 // Initialize the live ins and live outs.
Matthias Braun3e86de12015-09-17 21:12:24 +0000911 TopRPTracker.addLiveRegs(RPTracker.getPressure().LiveInRegs);
912 BotRPTracker.addLiveRegs(RPTracker.getPressure().LiveOutRegs);
Andrew Trick4add42f2012-05-10 21:06:10 +0000913
914 // Close one end of the tracker so we can call
915 // getMaxUpward/DownwardPressureDelta before advancing across any
916 // instructions. This converts currently live regs into live ins/outs.
917 TopRPTracker.closeTop();
918 BotRPTracker.closeBottom();
919
Andrew Trick9c17eab2013-07-30 19:59:12 +0000920 BotRPTracker.initLiveThru(RPTracker);
921 if (!BotRPTracker.getLiveThru().empty()) {
922 TopRPTracker.initLiveThru(BotRPTracker.getLiveThru());
923 DEBUG(dbgs() << "Live Thru: ";
924 dumpRegSetPressure(BotRPTracker.getLiveThru(), TRI));
925 };
926
Andrew Trick2bc74c22013-08-30 04:36:57 +0000927 // For each live out vreg reduce the pressure change associated with other
928 // uses of the same vreg below the live-out reaching def.
Matthias Braun3e86de12015-09-17 21:12:24 +0000929 updatePressureDiffs(RPTracker.getPressure().LiveOutRegs);
Andrew Trick2bc74c22013-08-30 04:36:57 +0000930
Andrew Trick4add42f2012-05-10 21:06:10 +0000931 // Account for liveness generated by the region boundary.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000932 if (LiveRegionEnd != RegionEnd) {
Matthias Braun5d458612016-01-20 00:23:26 +0000933 SmallVector<RegisterMaskPair, 8> LiveUses;
Andrew Trick2bc74c22013-08-30 04:36:57 +0000934 BotRPTracker.recede(&LiveUses);
935 updatePressureDiffs(LiveUses);
936 }
Andrew Trick4add42f2012-05-10 21:06:10 +0000937
Matthias Braune6edd482015-11-13 22:30:31 +0000938 DEBUG(
939 dbgs() << "Top Pressure:\n";
940 dumpRegSetPressure(TopRPTracker.getRegSetPressureAtPos(), TRI);
941 dbgs() << "Bottom Pressure:\n";
942 dumpRegSetPressure(BotRPTracker.getRegSetPressureAtPos(), TRI);
943 );
944
Andrew Trick4add42f2012-05-10 21:06:10 +0000945 assert(BotRPTracker.getPos() == RegionEnd && "Can't find the region bottom");
Andrew Trick22025772012-05-17 18:35:10 +0000946
947 // Cache the list of excess pressure sets in this region. This will also track
948 // the max pressure in the scheduled code for these sets.
949 RegionCriticalPSets.clear();
Jakub Staszakc641ada2013-01-25 21:44:27 +0000950 const std::vector<unsigned> &RegionPressure =
951 RPTracker.getPressure().MaxSetPressure;
Andrew Trick22025772012-05-17 18:35:10 +0000952 for (unsigned i = 0, e = RegionPressure.size(); i < e; ++i) {
Andrew Trick736dd9a2013-06-21 18:32:58 +0000953 unsigned Limit = RegClassInfo->getRegPressureSetLimit(i);
Andrew Trickb55db582013-06-21 18:33:01 +0000954 if (RegionPressure[i] > Limit) {
955 DEBUG(dbgs() << TRI->getRegPressureSetName(i)
956 << " Limit " << Limit
957 << " Actual " << RegionPressure[i] << "\n");
Andrew Trick1a831342013-08-30 03:49:48 +0000958 RegionCriticalPSets.push_back(PressureChange(i));
Andrew Trickb55db582013-06-21 18:33:01 +0000959 }
Andrew Trick22025772012-05-17 18:35:10 +0000960 }
961 DEBUG(dbgs() << "Excess PSets: ";
962 for (unsigned i = 0, e = RegionCriticalPSets.size(); i != e; ++i)
963 dbgs() << TRI->getRegPressureSetName(
Andrew Trick1a831342013-08-30 03:49:48 +0000964 RegionCriticalPSets[i].getPSet()) << " ";
Andrew Trick22025772012-05-17 18:35:10 +0000965 dbgs() << "\n");
966}
967
Andrew Trickd7f890e2013-12-28 21:56:47 +0000968void ScheduleDAGMILive::
Andrew Trickb248b4a2013-09-06 17:32:47 +0000969updateScheduledPressure(const SUnit *SU,
970 const std::vector<unsigned> &NewMaxPressure) {
971 const PressureDiff &PDiff = getPressureDiff(SU);
972 unsigned CritIdx = 0, CritEnd = RegionCriticalPSets.size();
973 for (PressureDiff::const_iterator I = PDiff.begin(), E = PDiff.end();
974 I != E; ++I) {
975 if (!I->isValid())
976 break;
977 unsigned ID = I->getPSet();
978 while (CritIdx != CritEnd && RegionCriticalPSets[CritIdx].getPSet() < ID)
979 ++CritIdx;
980 if (CritIdx != CritEnd && RegionCriticalPSets[CritIdx].getPSet() == ID) {
981 if ((int)NewMaxPressure[ID] > RegionCriticalPSets[CritIdx].getUnitInc()
982 && NewMaxPressure[ID] <= INT16_MAX)
983 RegionCriticalPSets[CritIdx].setUnitInc(NewMaxPressure[ID]);
984 }
985 unsigned Limit = RegClassInfo->getRegPressureSetLimit(ID);
986 if (NewMaxPressure[ID] >= Limit - 2) {
987 DEBUG(dbgs() << " " << TRI->getRegPressureSetName(ID) << ": "
Andrew Trick569dc65a2015-05-17 23:40:31 +0000988 << NewMaxPressure[ID]
989 << ((NewMaxPressure[ID] > Limit) ? " > " : " <= ") << Limit
990 << "(+ " << BotRPTracker.getLiveThru()[ID] << " livethru)\n");
Andrew Trickb248b4a2013-09-06 17:32:47 +0000991 }
Andrew Trick22025772012-05-17 18:35:10 +0000992 }
Andrew Trick88639922012-04-24 17:56:43 +0000993}
994
Andrew Trick2bc74c22013-08-30 04:36:57 +0000995/// Update the PressureDiff array for liveness after scheduling this
996/// instruction.
Matthias Braun5d458612016-01-20 00:23:26 +0000997void ScheduleDAGMILive::updatePressureDiffs(
998 ArrayRef<RegisterMaskPair> LiveUses) {
999 for (const RegisterMaskPair &P : LiveUses) {
Matthias Braun5d458612016-01-20 00:23:26 +00001000 unsigned Reg = P.RegUnit;
Matthias Braund4f64092016-01-20 00:23:32 +00001001 /// FIXME: Currently assuming single-use physregs.
Andrew Trick2bc74c22013-08-30 04:36:57 +00001002 if (!TRI->isVirtualRegister(Reg))
1003 continue;
Andrew Trickffdbefb2013-09-06 17:32:39 +00001004
Matthias Braund4f64092016-01-20 00:23:32 +00001005 if (ShouldTrackLaneMasks) {
1006 // If the register has just become live then other uses won't change
1007 // this fact anymore => decrement pressure.
1008 // If the register has just become dead then other uses make it come
1009 // back to life => increment pressure.
1010 bool Decrement = P.LaneMask != 0;
1011
1012 for (const VReg2SUnit &V2SU
1013 : make_range(VRegUses.find(Reg), VRegUses.end())) {
1014 SUnit &SU = *V2SU.SU;
1015 if (SU.isScheduled || &SU == &ExitSU)
1016 continue;
1017
1018 PressureDiff &PDiff = getPressureDiff(&SU);
1019 PDiff.addPressureChange(Reg, Decrement, &MRI);
1020 DEBUG(
1021 dbgs() << " UpdateRegP: SU(" << SU.NodeNum << ") "
1022 << PrintReg(Reg, TRI) << ':' << PrintLaneMask(P.LaneMask)
1023 << ' ' << *SU.getInstr();
1024 dbgs() << " to ";
1025 PDiff.dump(*TRI);
1026 );
1027 }
1028 } else {
1029 assert(P.LaneMask != 0);
1030 DEBUG(dbgs() << " LiveReg: " << PrintVRegOrUnit(Reg, TRI) << "\n");
1031 // This may be called before CurrentBottom has been initialized. However,
1032 // BotRPTracker must have a valid position. We want the value live into the
1033 // instruction or live out of the block, so ask for the previous
1034 // instruction's live-out.
1035 const LiveInterval &LI = LIS->getInterval(Reg);
1036 VNInfo *VNI;
1037 MachineBasicBlock::const_iterator I =
1038 nextIfDebug(BotRPTracker.getPos(), BB->end());
1039 if (I == BB->end())
1040 VNI = LI.getVNInfoBefore(LIS->getMBBEndIdx(BB));
1041 else {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001042 LiveQueryResult LRQ = LI.Query(LIS->getInstructionIndex(*I));
Matthias Braund4f64092016-01-20 00:23:32 +00001043 VNI = LRQ.valueIn();
1044 }
1045 // RegisterPressureTracker guarantees that readsReg is true for LiveUses.
1046 assert(VNI && "No live value at use.");
1047 for (const VReg2SUnit &V2SU
1048 : make_range(VRegUses.find(Reg), VRegUses.end())) {
1049 SUnit *SU = V2SU.SU;
1050 // If this use comes before the reaching def, it cannot be a last use,
1051 // so decrease its pressure change.
1052 if (!SU->isScheduled && SU != &ExitSU) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001053 LiveQueryResult LRQ =
1054 LI.Query(LIS->getInstructionIndex(*SU->getInstr()));
Matthias Braund4f64092016-01-20 00:23:32 +00001055 if (LRQ.valueIn() == VNI) {
1056 PressureDiff &PDiff = getPressureDiff(SU);
1057 PDiff.addPressureChange(Reg, true, &MRI);
1058 DEBUG(
1059 dbgs() << " UpdateRegP: SU(" << SU->NodeNum << ") "
1060 << *SU->getInstr();
1061 dbgs() << " to ";
1062 PDiff.dump(*TRI);
1063 );
1064 }
Matthias Braun9198c672015-11-06 20:59:02 +00001065 }
Andrew Trick2bc74c22013-08-30 04:36:57 +00001066 }
1067 }
1068 }
1069}
1070
Andrew Trick8823dec2012-03-14 04:00:41 +00001071/// schedule - Called back from MachineScheduler::runOnMachineFunction
Andrew Trick88639922012-04-24 17:56:43 +00001072/// after setting up the current scheduling region. [RegionBegin, RegionEnd)
1073/// only includes instructions that have DAG nodes, not scheduling boundaries.
Andrew Trick7a8e1002012-09-11 00:39:15 +00001074///
1075/// This is a skeletal driver, with all the functionality pushed into helpers,
Nick Lewycky06b0ea22015-08-18 22:41:58 +00001076/// so that it can be easily extended by experimental schedulers. Generally,
Andrew Trick7a8e1002012-09-11 00:39:15 +00001077/// implementing MachineSchedStrategy should be sufficient to implement a new
1078/// scheduling algorithm. However, if a scheduler further subclasses
Andrew Trickd7f890e2013-12-28 21:56:47 +00001079/// ScheduleDAGMILive then it will want to override this virtual method in order
1080/// to update any specialized state.
1081void ScheduleDAGMILive::schedule() {
James Y Knighte72b0db2015-09-18 18:52:20 +00001082 DEBUG(dbgs() << "ScheduleDAGMILive::schedule starting\n");
1083 DEBUG(SchedImpl->dumpPolicy());
Andrew Trick7a8e1002012-09-11 00:39:15 +00001084 buildDAGWithRegPressure();
1085
Andrew Tricka7714a02012-11-12 19:40:10 +00001086 Topo.InitDAGTopologicalSorting();
1087
Andrew Tricka2733e92012-09-14 17:22:42 +00001088 postprocessDAG();
1089
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001090 SmallVector<SUnit*, 8> TopRoots, BotRoots;
1091 findRootsAndBiasEdges(TopRoots, BotRoots);
1092
1093 // Initialize the strategy before modifying the DAG.
1094 // This may initialize a DFSResult to be used for queue priority.
1095 SchedImpl->initialize(this);
1096
Matthias Braun9198c672015-11-06 20:59:02 +00001097 DEBUG(
1098 for (const SUnit &SU : SUnits) {
1099 SU.dumpAll(this);
1100 if (ShouldTrackPressure) {
1101 dbgs() << " Pressure Diff : ";
1102 getPressureDiff(&SU).dump(*TRI);
1103 }
1104 dbgs() << '\n';
1105 }
1106 );
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001107 if (ViewMISchedDAGs) viewGraph();
Andrew Trick7a8e1002012-09-11 00:39:15 +00001108
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001109 // Initialize ready queues now that the DAG and priority data are finalized.
1110 initQueues(TopRoots, BotRoots);
Andrew Trick7a8e1002012-09-11 00:39:15 +00001111
Andrew Trickd7f890e2013-12-28 21:56:47 +00001112 if (ShouldTrackPressure) {
1113 assert(TopRPTracker.getPos() == RegionBegin && "bad initial Top tracker");
1114 TopRPTracker.setPos(CurrentTop);
1115 }
1116
Andrew Trick7a8e1002012-09-11 00:39:15 +00001117 bool IsTopNode = false;
James Y Knighte72b0db2015-09-18 18:52:20 +00001118 while (true) {
1119 DEBUG(dbgs() << "** ScheduleDAGMILive::schedule picking next node\n");
1120 SUnit *SU = SchedImpl->pickNode(IsTopNode);
1121 if (!SU) break;
1122
Andrew Trick984d98b2012-10-08 18:53:53 +00001123 assert(!SU->isScheduled && "Node already scheduled");
Andrew Trick7a8e1002012-09-11 00:39:15 +00001124 if (!checkSchedLimit())
1125 break;
1126
1127 scheduleMI(SU, IsTopNode);
1128
Andrew Trickd7f890e2013-12-28 21:56:47 +00001129 if (DFSResult) {
1130 unsigned SubtreeID = DFSResult->getSubtreeID(SU);
1131 if (!ScheduledTrees.test(SubtreeID)) {
1132 ScheduledTrees.set(SubtreeID);
1133 DFSResult->scheduleTree(SubtreeID);
1134 SchedImpl->scheduleTree(SubtreeID);
1135 }
1136 }
1137
1138 // Notify the scheduling strategy after updating the DAG.
1139 SchedImpl->schedNode(SU, IsTopNode);
Andrew Trick43adfb32015-03-27 06:10:13 +00001140
1141 updateQueues(SU, IsTopNode);
Andrew Trick7a8e1002012-09-11 00:39:15 +00001142 }
1143 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone.");
1144
1145 placeDebugValues();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001146
1147 DEBUG({
Andrew Trickcf7e6972012-11-28 03:42:47 +00001148 unsigned BBNum = begin()->getParent()->getNumber();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001149 dbgs() << "*** Final schedule for BB#" << BBNum << " ***\n";
1150 dumpSchedule();
1151 dbgs() << '\n';
1152 });
Andrew Trick7a8e1002012-09-11 00:39:15 +00001153}
1154
1155/// Build the DAG and setup three register pressure trackers.
Andrew Trickd7f890e2013-12-28 21:56:47 +00001156void ScheduleDAGMILive::buildDAGWithRegPressure() {
Andrew Trickb6e74712013-09-04 20:59:59 +00001157 if (!ShouldTrackPressure) {
1158 RPTracker.reset();
1159 RegionCriticalPSets.clear();
1160 buildSchedGraph(AA);
1161 return;
1162 }
1163
Andrew Trick4add42f2012-05-10 21:06:10 +00001164 // Initialize the register pressure tracker used by buildSchedGraph.
Andrew Trick9c17eab2013-07-30 19:59:12 +00001165 RPTracker.init(&MF, RegClassInfo, LIS, BB, LiveRegionEnd,
Matthias Braund4f64092016-01-20 00:23:32 +00001166 ShouldTrackLaneMasks, /*TrackUntiedDefs=*/true);
Andrew Trick88639922012-04-24 17:56:43 +00001167
Andrew Trick4add42f2012-05-10 21:06:10 +00001168 // Account for liveness generate by the region boundary.
1169 if (LiveRegionEnd != RegionEnd)
1170 RPTracker.recede();
1171
1172 // Build the DAG, and compute current register pressure.
Matthias Braund4f64092016-01-20 00:23:32 +00001173 buildSchedGraph(AA, &RPTracker, &SUPressureDiffs, LIS, ShouldTrackLaneMasks);
Andrew Trick02a80da2012-03-08 01:41:12 +00001174
Andrew Trick4add42f2012-05-10 21:06:10 +00001175 // Initialize top/bottom trackers after computing region pressure.
1176 initRegPressure();
Andrew Trick7a8e1002012-09-11 00:39:15 +00001177}
Andrew Trick4add42f2012-05-10 21:06:10 +00001178
Andrew Trickd7f890e2013-12-28 21:56:47 +00001179void ScheduleDAGMILive::computeDFSResult() {
Andrew Trick44f750a2013-01-25 04:01:04 +00001180 if (!DFSResult)
1181 DFSResult = new SchedDFSResult(/*BottomU*/true, MinSubtreeSize);
1182 DFSResult->clear();
Andrew Trick44f750a2013-01-25 04:01:04 +00001183 ScheduledTrees.clear();
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001184 DFSResult->resize(SUnits.size());
1185 DFSResult->compute(SUnits);
Andrew Trick44f750a2013-01-25 04:01:04 +00001186 ScheduledTrees.resize(DFSResult->getNumSubtrees());
1187}
1188
Andrew Trick483f4192013-08-29 18:04:49 +00001189/// Compute the max cyclic critical path through the DAG. The scheduling DAG
1190/// only provides the critical path for single block loops. To handle loops that
1191/// span blocks, we could use the vreg path latencies provided by
1192/// MachineTraceMetrics instead. However, MachineTraceMetrics is not currently
1193/// available for use in the scheduler.
1194///
1195/// The cyclic path estimation identifies a def-use pair that crosses the back
Andrew Trickef80f502013-08-30 02:02:12 +00001196/// edge and considers the depth and height of the nodes. For example, consider
Andrew Trick483f4192013-08-29 18:04:49 +00001197/// the following instruction sequence where each instruction has unit latency
1198/// and defines an epomymous virtual register:
1199///
1200/// a->b(a,c)->c(b)->d(c)->exit
1201///
1202/// The cyclic critical path is a two cycles: b->c->b
1203/// The acyclic critical path is four cycles: a->b->c->d->exit
1204/// LiveOutHeight = height(c) = len(c->d->exit) = 2
1205/// LiveOutDepth = depth(c) + 1 = len(a->b->c) + 1 = 3
1206/// LiveInHeight = height(b) + 1 = len(b->c->d->exit) + 1 = 4
1207/// LiveInDepth = depth(b) = len(a->b) = 1
1208///
1209/// LiveOutDepth - LiveInDepth = 3 - 1 = 2
1210/// LiveInHeight - LiveOutHeight = 4 - 2 = 2
1211/// CyclicCriticalPath = min(2, 2) = 2
Andrew Trickd7f890e2013-12-28 21:56:47 +00001212///
1213/// This could be relevant to PostRA scheduling, but is currently implemented
1214/// assuming LiveIntervals.
1215unsigned ScheduleDAGMILive::computeCyclicCriticalPath() {
Andrew Trick483f4192013-08-29 18:04:49 +00001216 // This only applies to single block loop.
1217 if (!BB->isSuccessor(BB))
1218 return 0;
1219
1220 unsigned MaxCyclicLatency = 0;
1221 // Visit each live out vreg def to find def/use pairs that cross iterations.
Matthias Braun5d458612016-01-20 00:23:26 +00001222 for (const RegisterMaskPair &P : RPTracker.getPressure().LiveOutRegs) {
1223 unsigned Reg = P.RegUnit;
Andrew Trick483f4192013-08-29 18:04:49 +00001224 if (!TRI->isVirtualRegister(Reg))
1225 continue;
1226 const LiveInterval &LI = LIS->getInterval(Reg);
1227 const VNInfo *DefVNI = LI.getVNInfoBefore(LIS->getMBBEndIdx(BB));
1228 if (!DefVNI)
1229 continue;
1230
1231 MachineInstr *DefMI = LIS->getInstructionFromIndex(DefVNI->def);
1232 const SUnit *DefSU = getSUnit(DefMI);
1233 if (!DefSU)
1234 continue;
1235
1236 unsigned LiveOutHeight = DefSU->getHeight();
1237 unsigned LiveOutDepth = DefSU->getDepth() + DefSU->Latency;
1238 // Visit all local users of the vreg def.
Matthias Braunb0c437b2015-10-29 03:57:17 +00001239 for (const VReg2SUnit &V2SU
1240 : make_range(VRegUses.find(Reg), VRegUses.end())) {
1241 SUnit *SU = V2SU.SU;
1242 if (SU == &ExitSU)
Andrew Trick483f4192013-08-29 18:04:49 +00001243 continue;
1244
1245 // Only consider uses of the phi.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001246 LiveQueryResult LRQ = LI.Query(LIS->getInstructionIndex(*SU->getInstr()));
Andrew Trick483f4192013-08-29 18:04:49 +00001247 if (!LRQ.valueIn()->isPHIDef())
1248 continue;
1249
1250 // Assume that a path spanning two iterations is a cycle, which could
1251 // overestimate in strange cases. This allows cyclic latency to be
1252 // estimated as the minimum slack of the vreg's depth or height.
1253 unsigned CyclicLatency = 0;
Matthias Braunb0c437b2015-10-29 03:57:17 +00001254 if (LiveOutDepth > SU->getDepth())
1255 CyclicLatency = LiveOutDepth - SU->getDepth();
Andrew Trick483f4192013-08-29 18:04:49 +00001256
Matthias Braunb0c437b2015-10-29 03:57:17 +00001257 unsigned LiveInHeight = SU->getHeight() + DefSU->Latency;
Andrew Trick483f4192013-08-29 18:04:49 +00001258 if (LiveInHeight > LiveOutHeight) {
1259 if (LiveInHeight - LiveOutHeight < CyclicLatency)
1260 CyclicLatency = LiveInHeight - LiveOutHeight;
1261 }
1262 else
1263 CyclicLatency = 0;
1264
1265 DEBUG(dbgs() << "Cyclic Path: SU(" << DefSU->NodeNum << ") -> SU("
Matthias Braunb0c437b2015-10-29 03:57:17 +00001266 << SU->NodeNum << ") = " << CyclicLatency << "c\n");
Andrew Trick483f4192013-08-29 18:04:49 +00001267 if (CyclicLatency > MaxCyclicLatency)
1268 MaxCyclicLatency = CyclicLatency;
1269 }
1270 }
1271 DEBUG(dbgs() << "Cyclic Critical Path: " << MaxCyclicLatency << "c\n");
1272 return MaxCyclicLatency;
1273}
1274
Andrew Trick7a8e1002012-09-11 00:39:15 +00001275/// Move an instruction and update register pressure.
Andrew Trickd7f890e2013-12-28 21:56:47 +00001276void ScheduleDAGMILive::scheduleMI(SUnit *SU, bool IsTopNode) {
Andrew Trick7a8e1002012-09-11 00:39:15 +00001277 // Move the instruction to its new location in the instruction stream.
1278 MachineInstr *MI = SU->getInstr();
Andrew Trick02a80da2012-03-08 01:41:12 +00001279
Andrew Trick7a8e1002012-09-11 00:39:15 +00001280 if (IsTopNode) {
1281 assert(SU->isTopReady() && "node still has unscheduled dependencies");
1282 if (&*CurrentTop == MI)
1283 CurrentTop = nextIfDebug(++CurrentTop, CurrentBottom);
Andrew Trick8823dec2012-03-14 04:00:41 +00001284 else {
Andrew Trick7a8e1002012-09-11 00:39:15 +00001285 moveInstruction(MI, CurrentTop);
1286 TopRPTracker.setPos(MI);
Andrew Trick8823dec2012-03-14 04:00:41 +00001287 }
Andrew Trickc3ea0052012-04-24 18:04:37 +00001288
Andrew Trickb6e74712013-09-04 20:59:59 +00001289 if (ShouldTrackPressure) {
1290 // Update top scheduled pressure.
Matthias Braund4f64092016-01-20 00:23:32 +00001291 RegisterOperands RegOpers;
1292 RegOpers.collect(*MI, *TRI, MRI, ShouldTrackLaneMasks, false);
1293 if (ShouldTrackLaneMasks) {
1294 // Adjust liveness and add missing dead+read-undef flags.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001295 SlotIndex SlotIdx = LIS->getInstructionIndex(*MI).getRegSlot();
Matthias Braund4f64092016-01-20 00:23:32 +00001296 RegOpers.adjustLaneLiveness(*LIS, MRI, SlotIdx, MI);
1297 } else {
1298 // Adjust for missing dead-def flags.
1299 RegOpers.detectDeadDefs(*MI, *LIS);
1300 }
1301
1302 TopRPTracker.advance(RegOpers);
Andrew Trickb6e74712013-09-04 20:59:59 +00001303 assert(TopRPTracker.getPos() == CurrentTop && "out of sync");
Matthias Braun9198c672015-11-06 20:59:02 +00001304 DEBUG(
1305 dbgs() << "Top Pressure:\n";
1306 dumpRegSetPressure(TopRPTracker.getRegSetPressureAtPos(), TRI);
1307 );
1308
Andrew Trickb248b4a2013-09-06 17:32:47 +00001309 updateScheduledPressure(SU, TopRPTracker.getPressure().MaxSetPressure);
Andrew Trickb6e74712013-09-04 20:59:59 +00001310 }
Andrew Trick7a8e1002012-09-11 00:39:15 +00001311 }
1312 else {
1313 assert(SU->isBottomReady() && "node still has unscheduled dependencies");
1314 MachineBasicBlock::iterator priorII =
1315 priorNonDebug(CurrentBottom, CurrentTop);
1316 if (&*priorII == MI)
1317 CurrentBottom = priorII;
1318 else {
1319 if (&*CurrentTop == MI) {
1320 CurrentTop = nextIfDebug(++CurrentTop, priorII);
1321 TopRPTracker.setPos(CurrentTop);
1322 }
1323 moveInstruction(MI, CurrentBottom);
1324 CurrentBottom = MI;
1325 }
Andrew Trickb6e74712013-09-04 20:59:59 +00001326 if (ShouldTrackPressure) {
Matthias Braund4f64092016-01-20 00:23:32 +00001327 RegisterOperands RegOpers;
1328 RegOpers.collect(*MI, *TRI, MRI, ShouldTrackLaneMasks, false);
1329 if (ShouldTrackLaneMasks) {
1330 // Adjust liveness and add missing dead+read-undef flags.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001331 SlotIndex SlotIdx = LIS->getInstructionIndex(*MI).getRegSlot();
Matthias Braund4f64092016-01-20 00:23:32 +00001332 RegOpers.adjustLaneLiveness(*LIS, MRI, SlotIdx, MI);
1333 } else {
1334 // Adjust for missing dead-def flags.
1335 RegOpers.detectDeadDefs(*MI, *LIS);
1336 }
1337
1338 BotRPTracker.recedeSkipDebugValues();
Matthias Braun5d458612016-01-20 00:23:26 +00001339 SmallVector<RegisterMaskPair, 8> LiveUses;
Matthias Braund4f64092016-01-20 00:23:32 +00001340 BotRPTracker.recede(RegOpers, &LiveUses);
Andrew Trickb6e74712013-09-04 20:59:59 +00001341 assert(BotRPTracker.getPos() == CurrentBottom && "out of sync");
Matthias Braun9198c672015-11-06 20:59:02 +00001342 DEBUG(
1343 dbgs() << "Bottom Pressure:\n";
1344 dumpRegSetPressure(BotRPTracker.getRegSetPressureAtPos(), TRI);
1345 );
1346
Andrew Trickb248b4a2013-09-06 17:32:47 +00001347 updateScheduledPressure(SU, BotRPTracker.getPressure().MaxSetPressure);
Andrew Trickb6e74712013-09-04 20:59:59 +00001348 updatePressureDiffs(LiveUses);
Andrew Trickb6e74712013-09-04 20:59:59 +00001349 }
Andrew Trick7a8e1002012-09-11 00:39:15 +00001350 }
1351}
1352
Andrew Trick263280242012-11-12 19:52:20 +00001353//===----------------------------------------------------------------------===//
1354// LoadClusterMutation - DAG post-processing to cluster loads.
1355//===----------------------------------------------------------------------===//
1356
Andrew Tricka7714a02012-11-12 19:40:10 +00001357namespace {
1358/// \brief Post-process the DAG to create cluster edges between neighboring
1359/// loads.
1360class LoadClusterMutation : public ScheduleDAGMutation {
1361 struct LoadInfo {
1362 SUnit *SU;
1363 unsigned BaseReg;
Chad Rosierc27a18f2016-03-09 16:00:35 +00001364 int64_t Offset;
Chad Rosierac216fd2016-03-11 16:54:07 +00001365 LoadInfo(SUnit *su, unsigned reg, int64_t ofs)
Andrew Tricka7714a02012-11-12 19:40:10 +00001366 : SU(su), BaseReg(reg), Offset(ofs) {}
Benjamin Kramerb0f74b22014-03-07 21:35:39 +00001367
1368 bool operator<(const LoadInfo &RHS) const {
1369 return std::tie(BaseReg, Offset) < std::tie(RHS.BaseReg, RHS.Offset);
1370 }
Andrew Tricka7714a02012-11-12 19:40:10 +00001371 };
Andrew Tricka7714a02012-11-12 19:40:10 +00001372
1373 const TargetInstrInfo *TII;
1374 const TargetRegisterInfo *TRI;
1375public:
1376 LoadClusterMutation(const TargetInstrInfo *tii,
1377 const TargetRegisterInfo *tri)
1378 : TII(tii), TRI(tri) {}
1379
Krzysztof Parzyszek5c61d112016-03-05 15:45:23 +00001380 void apply(ScheduleDAGInstrs *DAGInstrs) override;
Andrew Tricka7714a02012-11-12 19:40:10 +00001381protected:
1382 void clusterNeighboringLoads(ArrayRef<SUnit*> Loads, ScheduleDAGMI *DAG);
1383};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001384} // anonymous
Andrew Tricka7714a02012-11-12 19:40:10 +00001385
Andrew Tricka7714a02012-11-12 19:40:10 +00001386void LoadClusterMutation::clusterNeighboringLoads(ArrayRef<SUnit*> Loads,
1387 ScheduleDAGMI *DAG) {
1388 SmallVector<LoadClusterMutation::LoadInfo,32> LoadRecords;
1389 for (unsigned Idx = 0, End = Loads.size(); Idx != End; ++Idx) {
1390 SUnit *SU = Loads[Idx];
1391 unsigned BaseReg;
Chad Rosierc27a18f2016-03-09 16:00:35 +00001392 int64_t Offset;
Sanjoy Dasb666ea32015-06-15 18:44:14 +00001393 if (TII->getMemOpBaseRegImmOfs(SU->getInstr(), BaseReg, Offset, TRI))
Andrew Tricka7714a02012-11-12 19:40:10 +00001394 LoadRecords.push_back(LoadInfo(SU, BaseReg, Offset));
1395 }
1396 if (LoadRecords.size() < 2)
1397 return;
Benjamin Kramerb0f74b22014-03-07 21:35:39 +00001398 std::sort(LoadRecords.begin(), LoadRecords.end());
Andrew Tricka7714a02012-11-12 19:40:10 +00001399 unsigned ClusterLength = 1;
1400 for (unsigned Idx = 0, End = LoadRecords.size(); Idx < (End - 1); ++Idx) {
1401 if (LoadRecords[Idx].BaseReg != LoadRecords[Idx+1].BaseReg) {
1402 ClusterLength = 1;
1403 continue;
1404 }
1405
1406 SUnit *SUa = LoadRecords[Idx].SU;
1407 SUnit *SUb = LoadRecords[Idx+1].SU;
Andrew Trickec369d52012-11-12 21:28:10 +00001408 if (TII->shouldClusterLoads(SUa->getInstr(), SUb->getInstr(), ClusterLength)
Andrew Tricka7714a02012-11-12 19:40:10 +00001409 && DAG->addEdge(SUb, SDep(SUa, SDep::Cluster))) {
1410
1411 DEBUG(dbgs() << "Cluster loads SU(" << SUa->NodeNum << ") - SU("
1412 << SUb->NodeNum << ")\n");
1413 // Copy successor edges from SUa to SUb. Interleaving computation
1414 // dependent on SUa can prevent load combining due to register reuse.
1415 // Predecessor edges do not need to be copied from SUb to SUa since nearby
1416 // loads should have effectively the same inputs.
1417 for (SUnit::const_succ_iterator
1418 SI = SUa->Succs.begin(), SE = SUa->Succs.end(); SI != SE; ++SI) {
1419 if (SI->getSUnit() == SUb)
1420 continue;
1421 DEBUG(dbgs() << " Copy Succ SU(" << SI->getSUnit()->NodeNum << ")\n");
1422 DAG->addEdge(SI->getSUnit(), SDep(SUb, SDep::Artificial));
1423 }
1424 ++ClusterLength;
1425 }
1426 else
1427 ClusterLength = 1;
1428 }
1429}
1430
1431/// \brief Callback from DAG postProcessing to create cluster edges for loads.
Krzysztof Parzyszek5c61d112016-03-05 15:45:23 +00001432void LoadClusterMutation::apply(ScheduleDAGInstrs *DAGInstrs) {
1433 ScheduleDAGMI *DAG = static_cast<ScheduleDAGMI*>(DAGInstrs);
1434
Andrew Tricka7714a02012-11-12 19:40:10 +00001435 // Map DAG NodeNum to store chain ID.
1436 DenseMap<unsigned, unsigned> StoreChainIDs;
1437 // Map each store chain to a set of dependent loads.
1438 SmallVector<SmallVector<SUnit*,4>, 32> StoreChainDependents;
1439 for (unsigned Idx = 0, End = DAG->SUnits.size(); Idx != End; ++Idx) {
1440 SUnit *SU = &DAG->SUnits[Idx];
1441 if (!SU->getInstr()->mayLoad())
1442 continue;
1443 unsigned ChainPredID = DAG->SUnits.size();
1444 for (SUnit::const_pred_iterator
1445 PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) {
1446 if (PI->isCtrl()) {
1447 ChainPredID = PI->getSUnit()->NodeNum;
1448 break;
1449 }
1450 }
1451 // Check if this chain-like pred has been seen
1452 // before. ChainPredID==MaxNodeID for loads at the top of the schedule.
1453 unsigned NumChains = StoreChainDependents.size();
1454 std::pair<DenseMap<unsigned, unsigned>::iterator, bool> Result =
1455 StoreChainIDs.insert(std::make_pair(ChainPredID, NumChains));
1456 if (Result.second)
1457 StoreChainDependents.resize(NumChains + 1);
1458 StoreChainDependents[Result.first->second].push_back(SU);
1459 }
1460 // Iterate over the store chains.
1461 for (unsigned Idx = 0, End = StoreChainDependents.size(); Idx != End; ++Idx)
1462 clusterNeighboringLoads(StoreChainDependents[Idx], DAG);
1463}
1464
Andrew Trick02a80da2012-03-08 01:41:12 +00001465//===----------------------------------------------------------------------===//
Andrew Trick263280242012-11-12 19:52:20 +00001466// MacroFusion - DAG post-processing to encourage fusion of macro ops.
1467//===----------------------------------------------------------------------===//
1468
1469namespace {
1470/// \brief Post-process the DAG to create cluster edges between instructions
1471/// that may be fused by the processor into a single operation.
1472class MacroFusion : public ScheduleDAGMutation {
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001473 const TargetInstrInfo &TII;
1474 const TargetRegisterInfo &TRI;
Andrew Trick263280242012-11-12 19:52:20 +00001475public:
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001476 MacroFusion(const TargetInstrInfo &TII, const TargetRegisterInfo &TRI)
1477 : TII(TII), TRI(TRI) {}
Andrew Trick263280242012-11-12 19:52:20 +00001478
Krzysztof Parzyszek5c61d112016-03-05 15:45:23 +00001479 void apply(ScheduleDAGInstrs *DAGInstrs) override;
Andrew Trick263280242012-11-12 19:52:20 +00001480};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001481} // anonymous
Andrew Trick263280242012-11-12 19:52:20 +00001482
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001483/// Returns true if \p MI reads a register written by \p Other.
1484static bool HasDataDep(const TargetRegisterInfo &TRI, const MachineInstr &MI,
1485 const MachineInstr &Other) {
1486 for (const MachineOperand &MO : MI.uses()) {
1487 if (!MO.isReg() || !MO.readsReg())
1488 continue;
1489
1490 unsigned Reg = MO.getReg();
1491 if (Other.modifiesRegister(Reg, &TRI))
1492 return true;
1493 }
1494 return false;
1495}
1496
Andrew Trick263280242012-11-12 19:52:20 +00001497/// \brief Callback from DAG postProcessing to create cluster edges to encourage
1498/// fused operations.
Krzysztof Parzyszek5c61d112016-03-05 15:45:23 +00001499void MacroFusion::apply(ScheduleDAGInstrs *DAGInstrs) {
1500 ScheduleDAGMI *DAG = static_cast<ScheduleDAGMI*>(DAGInstrs);
1501
Andrew Trick263280242012-11-12 19:52:20 +00001502 // For now, assume targets can only fuse with the branch.
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001503 SUnit &ExitSU = DAG->ExitSU;
1504 MachineInstr *Branch = ExitSU.getInstr();
Andrew Trick263280242012-11-12 19:52:20 +00001505 if (!Branch)
1506 return;
1507
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001508 for (SUnit &SU : DAG->SUnits) {
1509 // SUnits with successors can't be schedule in front of the ExitSU.
1510 if (!SU.Succs.empty())
1511 continue;
1512 // We only care if the node writes to a register that the branch reads.
1513 MachineInstr *Pred = SU.getInstr();
1514 if (!HasDataDep(TRI, *Branch, *Pred))
1515 continue;
1516
1517 if (!TII.shouldScheduleAdjacent(Pred, Branch))
Andrew Trick263280242012-11-12 19:52:20 +00001518 continue;
1519
1520 // Create a single weak edge from SU to ExitSU. The only effect is to cause
1521 // bottom-up scheduling to heavily prioritize the clustered SU. There is no
1522 // need to copy predecessor edges from ExitSU to SU, since top-down
1523 // scheduling cannot prioritize ExitSU anyway. To defer top-down scheduling
1524 // of SU, we could create an artificial edge from the deepest root, but it
1525 // hasn't been needed yet.
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001526 bool Success = DAG->addEdge(&ExitSU, SDep(&SU, SDep::Cluster));
Andrew Trick263280242012-11-12 19:52:20 +00001527 (void)Success;
1528 assert(Success && "No DAG nodes should be reachable from ExitSU");
1529
Matthias Braun2bd6dd82015-07-20 22:34:44 +00001530 DEBUG(dbgs() << "Macro Fuse SU(" << SU.NodeNum << ")\n");
Andrew Trick263280242012-11-12 19:52:20 +00001531 break;
1532 }
1533}
1534
1535//===----------------------------------------------------------------------===//
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001536// CopyConstrain - DAG post-processing to encourage copy elimination.
1537//===----------------------------------------------------------------------===//
1538
1539namespace {
1540/// \brief Post-process the DAG to create weak edges from all uses of a copy to
1541/// the one use that defines the copy's source vreg, most likely an induction
1542/// variable increment.
1543class CopyConstrain : public ScheduleDAGMutation {
1544 // Transient state.
1545 SlotIndex RegionBeginIdx;
Andrew Trick2e875172013-04-24 23:19:56 +00001546 // RegionEndIdx is the slot index of the last non-debug instruction in the
1547 // scheduling region. So we may have RegionBeginIdx == RegionEndIdx.
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001548 SlotIndex RegionEndIdx;
1549public:
1550 CopyConstrain(const TargetInstrInfo *, const TargetRegisterInfo *) {}
1551
Krzysztof Parzyszek5c61d112016-03-05 15:45:23 +00001552 void apply(ScheduleDAGInstrs *DAGInstrs) override;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001553
1554protected:
Andrew Trickd7f890e2013-12-28 21:56:47 +00001555 void constrainLocalCopy(SUnit *CopySU, ScheduleDAGMILive *DAG);
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001556};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001557} // anonymous
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001558
1559/// constrainLocalCopy handles two possibilities:
1560/// 1) Local src:
1561/// I0: = dst
1562/// I1: src = ...
1563/// I2: = dst
1564/// I3: dst = src (copy)
1565/// (create pred->succ edges I0->I1, I2->I1)
1566///
1567/// 2) Local copy:
1568/// I0: dst = src (copy)
1569/// I1: = dst
1570/// I2: src = ...
1571/// I3: = dst
1572/// (create pred->succ edges I1->I2, I3->I2)
1573///
1574/// Although the MachineScheduler is currently constrained to single blocks,
1575/// this algorithm should handle extended blocks. An EBB is a set of
1576/// contiguously numbered blocks such that the previous block in the EBB is
1577/// always the single predecessor.
Andrew Trickd7f890e2013-12-28 21:56:47 +00001578void CopyConstrain::constrainLocalCopy(SUnit *CopySU, ScheduleDAGMILive *DAG) {
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001579 LiveIntervals *LIS = DAG->getLIS();
1580 MachineInstr *Copy = CopySU->getInstr();
1581
1582 // Check for pure vreg copies.
Matthias Braun7511abd2016-04-04 21:23:46 +00001583 const MachineOperand &SrcOp = Copy->getOperand(1);
1584 unsigned SrcReg = SrcOp.getReg();
1585 if (!TargetRegisterInfo::isVirtualRegister(SrcReg) || !SrcOp.readsReg())
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001586 return;
1587
Matthias Braun7511abd2016-04-04 21:23:46 +00001588 const MachineOperand &DstOp = Copy->getOperand(0);
1589 unsigned DstReg = DstOp.getReg();
1590 if (!TargetRegisterInfo::isVirtualRegister(DstReg) || DstOp.isDead())
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001591 return;
1592
1593 // Check if either the dest or source is local. If it's live across a back
1594 // edge, it's not local. Note that if both vregs are live across the back
1595 // edge, we cannot successfully contrain the copy without cyclic scheduling.
Michael Kuperstein54c61ed2015-01-19 07:30:47 +00001596 // If both the copy's source and dest are local live intervals, then we
1597 // should treat the dest as the global for the purpose of adding
1598 // constraints. This adds edges from source's other uses to the copy.
1599 unsigned LocalReg = SrcReg;
1600 unsigned GlobalReg = DstReg;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001601 LiveInterval *LocalLI = &LIS->getInterval(LocalReg);
1602 if (!LocalLI->isLocal(RegionBeginIdx, RegionEndIdx)) {
Michael Kuperstein54c61ed2015-01-19 07:30:47 +00001603 LocalReg = DstReg;
1604 GlobalReg = SrcReg;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001605 LocalLI = &LIS->getInterval(LocalReg);
1606 if (!LocalLI->isLocal(RegionBeginIdx, RegionEndIdx))
1607 return;
1608 }
1609 LiveInterval *GlobalLI = &LIS->getInterval(GlobalReg);
1610
1611 // Find the global segment after the start of the local LI.
1612 LiveInterval::iterator GlobalSegment = GlobalLI->find(LocalLI->beginIndex());
1613 // If GlobalLI does not overlap LocalLI->start, then a copy directly feeds a
1614 // local live range. We could create edges from other global uses to the local
1615 // start, but the coalescer should have already eliminated these cases, so
1616 // don't bother dealing with it.
1617 if (GlobalSegment == GlobalLI->end())
1618 return;
1619
1620 // If GlobalSegment is killed at the LocalLI->start, the call to find()
1621 // returned the next global segment. But if GlobalSegment overlaps with
1622 // LocalLI->start, then advance to the next segement. If a hole in GlobalLI
1623 // exists in LocalLI's vicinity, GlobalSegment will be the end of the hole.
1624 if (GlobalSegment->contains(LocalLI->beginIndex()))
1625 ++GlobalSegment;
1626
1627 if (GlobalSegment == GlobalLI->end())
1628 return;
1629
1630 // Check if GlobalLI contains a hole in the vicinity of LocalLI.
1631 if (GlobalSegment != GlobalLI->begin()) {
1632 // Two address defs have no hole.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001633 if (SlotIndex::isSameInstr(std::prev(GlobalSegment)->end,
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001634 GlobalSegment->start)) {
1635 return;
1636 }
Andrew Trickd9761772013-07-30 19:59:08 +00001637 // If the prior global segment may be defined by the same two-address
1638 // instruction that also defines LocalLI, then can't make a hole here.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001639 if (SlotIndex::isSameInstr(std::prev(GlobalSegment)->start,
Andrew Trickd9761772013-07-30 19:59:08 +00001640 LocalLI->beginIndex())) {
1641 return;
1642 }
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001643 // If GlobalLI has a prior segment, it must be live into the EBB. Otherwise
1644 // it would be a disconnected component in the live range.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001645 assert(std::prev(GlobalSegment)->start < LocalLI->beginIndex() &&
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001646 "Disconnected LRG within the scheduling region.");
1647 }
1648 MachineInstr *GlobalDef = LIS->getInstructionFromIndex(GlobalSegment->start);
1649 if (!GlobalDef)
1650 return;
1651
1652 SUnit *GlobalSU = DAG->getSUnit(GlobalDef);
1653 if (!GlobalSU)
1654 return;
1655
1656 // GlobalDef is the bottom of the GlobalLI hole. Open the hole by
1657 // constraining the uses of the last local def to precede GlobalDef.
1658 SmallVector<SUnit*,8> LocalUses;
1659 const VNInfo *LastLocalVN = LocalLI->getVNInfoBefore(LocalLI->endIndex());
1660 MachineInstr *LastLocalDef = LIS->getInstructionFromIndex(LastLocalVN->def);
1661 SUnit *LastLocalSU = DAG->getSUnit(LastLocalDef);
1662 for (SUnit::const_succ_iterator
1663 I = LastLocalSU->Succs.begin(), E = LastLocalSU->Succs.end();
1664 I != E; ++I) {
1665 if (I->getKind() != SDep::Data || I->getReg() != LocalReg)
1666 continue;
1667 if (I->getSUnit() == GlobalSU)
1668 continue;
1669 if (!DAG->canAddEdge(GlobalSU, I->getSUnit()))
1670 return;
1671 LocalUses.push_back(I->getSUnit());
1672 }
1673 // Open the top of the GlobalLI hole by constraining any earlier global uses
1674 // to precede the start of LocalLI.
1675 SmallVector<SUnit*,8> GlobalUses;
1676 MachineInstr *FirstLocalDef =
1677 LIS->getInstructionFromIndex(LocalLI->beginIndex());
1678 SUnit *FirstLocalSU = DAG->getSUnit(FirstLocalDef);
1679 for (SUnit::const_pred_iterator
1680 I = GlobalSU->Preds.begin(), E = GlobalSU->Preds.end(); I != E; ++I) {
1681 if (I->getKind() != SDep::Anti || I->getReg() != GlobalReg)
1682 continue;
1683 if (I->getSUnit() == FirstLocalSU)
1684 continue;
1685 if (!DAG->canAddEdge(FirstLocalSU, I->getSUnit()))
1686 return;
1687 GlobalUses.push_back(I->getSUnit());
1688 }
1689 DEBUG(dbgs() << "Constraining copy SU(" << CopySU->NodeNum << ")\n");
1690 // Add the weak edges.
1691 for (SmallVectorImpl<SUnit*>::const_iterator
1692 I = LocalUses.begin(), E = LocalUses.end(); I != E; ++I) {
1693 DEBUG(dbgs() << " Local use SU(" << (*I)->NodeNum << ") -> SU("
1694 << GlobalSU->NodeNum << ")\n");
1695 DAG->addEdge(GlobalSU, SDep(*I, SDep::Weak));
1696 }
1697 for (SmallVectorImpl<SUnit*>::const_iterator
1698 I = GlobalUses.begin(), E = GlobalUses.end(); I != E; ++I) {
1699 DEBUG(dbgs() << " Global use SU(" << (*I)->NodeNum << ") -> SU("
1700 << FirstLocalSU->NodeNum << ")\n");
1701 DAG->addEdge(FirstLocalSU, SDep(*I, SDep::Weak));
1702 }
1703}
1704
1705/// \brief Callback from DAG postProcessing to create weak edges to encourage
1706/// copy elimination.
Krzysztof Parzyszek5c61d112016-03-05 15:45:23 +00001707void CopyConstrain::apply(ScheduleDAGInstrs *DAGInstrs) {
1708 ScheduleDAGMI *DAG = static_cast<ScheduleDAGMI*>(DAGInstrs);
Andrew Trickd7f890e2013-12-28 21:56:47 +00001709 assert(DAG->hasVRegLiveness() && "Expect VRegs with LiveIntervals");
1710
Andrew Trick2e875172013-04-24 23:19:56 +00001711 MachineBasicBlock::iterator FirstPos = nextIfDebug(DAG->begin(), DAG->end());
1712 if (FirstPos == DAG->end())
1713 return;
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001714 RegionBeginIdx = DAG->getLIS()->getInstructionIndex(*FirstPos);
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001715 RegionEndIdx = DAG->getLIS()->getInstructionIndex(
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001716 *priorNonDebug(DAG->end(), DAG->begin()));
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001717
1718 for (unsigned Idx = 0, End = DAG->SUnits.size(); Idx != End; ++Idx) {
1719 SUnit *SU = &DAG->SUnits[Idx];
1720 if (!SU->getInstr()->isCopy())
1721 continue;
1722
Andrew Trickd7f890e2013-12-28 21:56:47 +00001723 constrainLocalCopy(SU, static_cast<ScheduleDAGMILive*>(DAG));
Andrew Trick85a1d4c2013-04-24 15:54:43 +00001724 }
1725}
1726
1727//===----------------------------------------------------------------------===//
Andrew Trickfc127d12013-12-07 05:59:44 +00001728// MachineSchedStrategy helpers used by GenericScheduler, GenericPostScheduler
1729// and possibly other custom schedulers.
Andrew Trickd14d7c22013-12-28 21:56:57 +00001730//===----------------------------------------------------------------------===//
Andrew Tricke1c034f2012-01-17 06:55:03 +00001731
Andrew Trick5a22df42013-12-05 17:56:02 +00001732static const unsigned InvalidCycle = ~0U;
1733
Andrew Trickfc127d12013-12-07 05:59:44 +00001734SchedBoundary::~SchedBoundary() { delete HazardRec; }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001735
Andrew Trickfc127d12013-12-07 05:59:44 +00001736void SchedBoundary::reset() {
1737 // A new HazardRec is created for each DAG and owned by SchedBoundary.
1738 // Destroying and reconstructing it is very expensive though. So keep
1739 // invalid, placeholder HazardRecs.
1740 if (HazardRec && HazardRec->isEnabled()) {
1741 delete HazardRec;
Craig Topperc0196b12014-04-14 00:51:57 +00001742 HazardRec = nullptr;
Andrew Trickfc127d12013-12-07 05:59:44 +00001743 }
1744 Available.clear();
1745 Pending.clear();
1746 CheckPending = false;
1747 NextSUs.clear();
1748 CurrCycle = 0;
1749 CurrMOps = 0;
1750 MinReadyCycle = UINT_MAX;
1751 ExpectedLatency = 0;
1752 DependentLatency = 0;
1753 RetiredMOps = 0;
1754 MaxExecutedResCount = 0;
1755 ZoneCritResIdx = 0;
1756 IsResourceLimited = false;
1757 ReservedCycles.clear();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001758#ifndef NDEBUG
Andrew Trickd14d7c22013-12-28 21:56:57 +00001759 // Track the maximum number of stall cycles that could arise either from the
1760 // latency of a DAG edge or the number of cycles that a processor resource is
1761 // reserved (SchedBoundary::ReservedCycles).
Andrew Trick7f1ebbe2014-06-07 01:48:43 +00001762 MaxObservedStall = 0;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001763#endif
Andrew Trickfc127d12013-12-07 05:59:44 +00001764 // Reserve a zero-count for invalid CritResIdx.
1765 ExecutedResCounts.resize(1);
1766 assert(!ExecutedResCounts[0] && "nonzero count for bad resource");
1767}
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001768
Andrew Trickfc127d12013-12-07 05:59:44 +00001769void SchedRemainder::
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001770init(ScheduleDAGMI *DAG, const TargetSchedModel *SchedModel) {
1771 reset();
1772 if (!SchedModel->hasInstrSchedModel())
1773 return;
1774 RemainingCounts.resize(SchedModel->getNumProcResourceKinds());
1775 for (std::vector<SUnit>::iterator
1776 I = DAG->SUnits.begin(), E = DAG->SUnits.end(); I != E; ++I) {
1777 const MCSchedClassDesc *SC = DAG->getSchedClass(&*I);
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001778 RemIssueCount += SchedModel->getNumMicroOps(I->getInstr(), SC)
1779 * SchedModel->getMicroOpFactor();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001780 for (TargetSchedModel::ProcResIter
1781 PI = SchedModel->getWriteProcResBegin(SC),
1782 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
1783 unsigned PIdx = PI->ProcResourceIdx;
1784 unsigned Factor = SchedModel->getResourceFactor(PIdx);
1785 RemainingCounts[PIdx] += (Factor * PI->Cycles);
1786 }
1787 }
1788}
1789
Andrew Trickfc127d12013-12-07 05:59:44 +00001790void SchedBoundary::
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001791init(ScheduleDAGMI *dag, const TargetSchedModel *smodel, SchedRemainder *rem) {
1792 reset();
1793 DAG = dag;
1794 SchedModel = smodel;
1795 Rem = rem;
Andrew Trick5a22df42013-12-05 17:56:02 +00001796 if (SchedModel->hasInstrSchedModel()) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001797 ExecutedResCounts.resize(SchedModel->getNumProcResourceKinds());
Andrew Trick5a22df42013-12-05 17:56:02 +00001798 ReservedCycles.resize(SchedModel->getNumProcResourceKinds(), InvalidCycle);
1799 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001800}
1801
Andrew Trick880e5732013-12-05 17:55:58 +00001802/// Compute the stall cycles based on this SUnit's ready time. Heuristics treat
1803/// these "soft stalls" differently than the hard stall cycles based on CPU
1804/// resources and computed by checkHazard(). A fully in-order model
1805/// (MicroOpBufferSize==0) will not make use of this since instructions are not
1806/// available for scheduling until they are ready. However, a weaker in-order
1807/// model may use this for heuristics. For example, if a processor has in-order
1808/// behavior when reading certain resources, this may come into play.
Andrew Trickfc127d12013-12-07 05:59:44 +00001809unsigned SchedBoundary::getLatencyStallCycles(SUnit *SU) {
Andrew Trick880e5732013-12-05 17:55:58 +00001810 if (!SU->isUnbuffered)
1811 return 0;
1812
1813 unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle);
1814 if (ReadyCycle > CurrCycle)
1815 return ReadyCycle - CurrCycle;
1816 return 0;
1817}
1818
Andrew Trick5a22df42013-12-05 17:56:02 +00001819/// Compute the next cycle at which the given processor resource can be
1820/// scheduled.
Andrew Trickfc127d12013-12-07 05:59:44 +00001821unsigned SchedBoundary::
Andrew Trick5a22df42013-12-05 17:56:02 +00001822getNextResourceCycle(unsigned PIdx, unsigned Cycles) {
1823 unsigned NextUnreserved = ReservedCycles[PIdx];
1824 // If this resource has never been used, always return cycle zero.
1825 if (NextUnreserved == InvalidCycle)
1826 return 0;
1827 // For bottom-up scheduling add the cycles needed for the current operation.
1828 if (!isTop())
1829 NextUnreserved += Cycles;
1830 return NextUnreserved;
1831}
1832
Andrew Trick8c9e6722012-06-29 03:23:24 +00001833/// Does this SU have a hazard within the current instruction group.
1834///
1835/// The scheduler supports two modes of hazard recognition. The first is the
1836/// ScheduleHazardRecognizer API. It is a fully general hazard recognizer that
1837/// supports highly complicated in-order reservation tables
1838/// (ScoreboardHazardRecognizer) and arbitraty target-specific logic.
1839///
1840/// The second is a streamlined mechanism that checks for hazards based on
1841/// simple counters that the scheduler itself maintains. It explicitly checks
1842/// for instruction dispatch limitations, including the number of micro-ops that
1843/// can dispatch per cycle.
1844///
1845/// TODO: Also check whether the SU must start a new group.
Andrew Trickfc127d12013-12-07 05:59:44 +00001846bool SchedBoundary::checkHazard(SUnit *SU) {
Andrew Trickd14d7c22013-12-28 21:56:57 +00001847 if (HazardRec->isEnabled()
1848 && HazardRec->getHazardType(SU) != ScheduleHazardRecognizer::NoHazard) {
1849 return true;
1850 }
Andrew Trickdd79f0f2012-10-10 05:43:09 +00001851 unsigned uops = SchedModel->getNumMicroOps(SU->getInstr());
Andrew Tricke2ff5752013-06-15 04:49:49 +00001852 if ((CurrMOps > 0) && (CurrMOps + uops > SchedModel->getIssueWidth())) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001853 DEBUG(dbgs() << " SU(" << SU->NodeNum << ") uops="
1854 << SchedModel->getNumMicroOps(SU->getInstr()) << '\n');
Andrew Trick8c9e6722012-06-29 03:23:24 +00001855 return true;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001856 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001857 if (SchedModel->hasInstrSchedModel() && SU->hasReservedResource) {
1858 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
1859 for (TargetSchedModel::ProcResIter
1860 PI = SchedModel->getWriteProcResBegin(SC),
1861 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
Andrew Trick56327222014-06-27 04:57:05 +00001862 unsigned NRCycle = getNextResourceCycle(PI->ProcResourceIdx, PI->Cycles);
1863 if (NRCycle > CurrCycle) {
Andrew Trick040c0da2014-06-27 05:09:36 +00001864#ifndef NDEBUG
Chad Rosieraba845e2014-07-02 16:46:08 +00001865 MaxObservedStall = std::max(PI->Cycles, MaxObservedStall);
Andrew Trick040c0da2014-06-27 05:09:36 +00001866#endif
Andrew Trick56327222014-06-27 04:57:05 +00001867 DEBUG(dbgs() << " SU(" << SU->NodeNum << ") "
1868 << SchedModel->getResourceName(PI->ProcResourceIdx)
1869 << "=" << NRCycle << "c\n");
Andrew Trick5a22df42013-12-05 17:56:02 +00001870 return true;
Andrew Trick56327222014-06-27 04:57:05 +00001871 }
Andrew Trick5a22df42013-12-05 17:56:02 +00001872 }
1873 }
Andrew Trick8c9e6722012-06-29 03:23:24 +00001874 return false;
1875}
1876
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001877// Find the unscheduled node in ReadySUs with the highest latency.
Andrew Trickfc127d12013-12-07 05:59:44 +00001878unsigned SchedBoundary::
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001879findMaxLatency(ArrayRef<SUnit*> ReadySUs) {
Craig Topperc0196b12014-04-14 00:51:57 +00001880 SUnit *LateSU = nullptr;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001881 unsigned RemLatency = 0;
1882 for (ArrayRef<SUnit*>::iterator I = ReadySUs.begin(), E = ReadySUs.end();
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001883 I != E; ++I) {
1884 unsigned L = getUnscheduledLatency(*I);
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001885 if (L > RemLatency) {
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001886 RemLatency = L;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001887 LateSU = *I;
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001888 }
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001889 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001890 if (LateSU) {
1891 DEBUG(dbgs() << Available.getName() << " RemLatency SU("
1892 << LateSU->NodeNum << ") " << RemLatency << "c\n");
Andrew Trickd6d5ad32012-12-18 20:52:56 +00001893 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001894 return RemLatency;
1895}
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001896
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001897// Count resources in this zone and the remaining unscheduled
1898// instruction. Return the max count, scaled. Set OtherCritIdx to the critical
1899// resource index, or zero if the zone is issue limited.
Andrew Trickfc127d12013-12-07 05:59:44 +00001900unsigned SchedBoundary::
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001901getOtherResourceCount(unsigned &OtherCritIdx) {
Alexey Samsonov64c391d2013-07-19 08:55:18 +00001902 OtherCritIdx = 0;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001903 if (!SchedModel->hasInstrSchedModel())
1904 return 0;
1905
1906 unsigned OtherCritCount = Rem->RemIssueCount
1907 + (RetiredMOps * SchedModel->getMicroOpFactor());
1908 DEBUG(dbgs() << " " << Available.getName() << " + Remain MOps: "
1909 << OtherCritCount / SchedModel->getMicroOpFactor() << '\n');
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001910 for (unsigned PIdx = 1, PEnd = SchedModel->getNumProcResourceKinds();
1911 PIdx != PEnd; ++PIdx) {
1912 unsigned OtherCount = getResourceCount(PIdx) + Rem->RemainingCounts[PIdx];
1913 if (OtherCount > OtherCritCount) {
1914 OtherCritCount = OtherCount;
1915 OtherCritIdx = PIdx;
1916 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001917 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001918 if (OtherCritIdx) {
1919 DEBUG(dbgs() << " " << Available.getName() << " + Remain CritRes: "
1920 << OtherCritCount / SchedModel->getResourceFactor(OtherCritIdx)
Andrew Trickfc127d12013-12-07 05:59:44 +00001921 << " " << SchedModel->getResourceName(OtherCritIdx) << "\n");
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001922 }
1923 return OtherCritCount;
1924}
1925
Andrew Trickfc127d12013-12-07 05:59:44 +00001926void SchedBoundary::releaseNode(SUnit *SU, unsigned ReadyCycle) {
Andrew Trick7f1ebbe2014-06-07 01:48:43 +00001927 assert(SU->getInstr() && "Scheduled SUnit must have instr");
1928
1929#ifndef NDEBUG
Andrew Trick491e34a2014-06-12 22:36:28 +00001930 // ReadyCycle was been bumped up to the CurrCycle when this node was
1931 // scheduled, but CurrCycle may have been eagerly advanced immediately after
1932 // scheduling, so may now be greater than ReadyCycle.
1933 if (ReadyCycle > CurrCycle)
1934 MaxObservedStall = std::max(ReadyCycle - CurrCycle, MaxObservedStall);
Andrew Trick7f1ebbe2014-06-07 01:48:43 +00001935#endif
1936
Andrew Trick61f1a272012-05-24 22:11:09 +00001937 if (ReadyCycle < MinReadyCycle)
1938 MinReadyCycle = ReadyCycle;
1939
1940 // Check for interlocks first. For the purpose of other heuristics, an
1941 // instruction that cannot issue appears as if it's not in the ReadyQueue.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001942 bool IsBuffered = SchedModel->getMicroOpBufferSize() != 0;
1943 if ((!IsBuffered && ReadyCycle > CurrCycle) || checkHazard(SU))
Andrew Trick61f1a272012-05-24 22:11:09 +00001944 Pending.push(SU);
1945 else
1946 Available.push(SU);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001947
1948 // Record this node as an immediate dependent of the scheduled node.
1949 NextSUs.insert(SU);
Andrew Trick61f1a272012-05-24 22:11:09 +00001950}
1951
Andrew Trickfc127d12013-12-07 05:59:44 +00001952void SchedBoundary::releaseTopNode(SUnit *SU) {
1953 if (SU->isScheduled)
1954 return;
1955
Andrew Trickfc127d12013-12-07 05:59:44 +00001956 releaseNode(SU, SU->TopReadyCycle);
1957}
1958
1959void SchedBoundary::releaseBottomNode(SUnit *SU) {
1960 if (SU->isScheduled)
1961 return;
1962
Andrew Trickfc127d12013-12-07 05:59:44 +00001963 releaseNode(SU, SU->BotReadyCycle);
1964}
1965
Andrew Trick61f1a272012-05-24 22:11:09 +00001966/// Move the boundary of scheduled code by one cycle.
Andrew Trickfc127d12013-12-07 05:59:44 +00001967void SchedBoundary::bumpCycle(unsigned NextCycle) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001968 if (SchedModel->getMicroOpBufferSize() == 0) {
1969 assert(MinReadyCycle < UINT_MAX && "MinReadyCycle uninitialized");
1970 if (MinReadyCycle > NextCycle)
1971 NextCycle = MinReadyCycle;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00001972 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001973 // Update the current micro-ops, which will issue in the next cycle.
1974 unsigned DecMOps = SchedModel->getIssueWidth() * (NextCycle - CurrCycle);
1975 CurrMOps = (CurrMOps <= DecMOps) ? 0 : CurrMOps - DecMOps;
1976
1977 // Decrement DependentLatency based on the next cycle.
Andrew Trickf5b8ef22013-06-15 04:49:44 +00001978 if ((NextCycle - CurrCycle) > DependentLatency)
1979 DependentLatency = 0;
1980 else
1981 DependentLatency -= (NextCycle - CurrCycle);
Andrew Trick61f1a272012-05-24 22:11:09 +00001982
1983 if (!HazardRec->isEnabled()) {
Andrew Trick45446062012-06-05 21:11:27 +00001984 // Bypass HazardRec virtual calls.
Andrew Trick61f1a272012-05-24 22:11:09 +00001985 CurrCycle = NextCycle;
1986 }
1987 else {
Andrew Trick45446062012-06-05 21:11:27 +00001988 // Bypass getHazardType calls in case of long latency.
Andrew Trick61f1a272012-05-24 22:11:09 +00001989 for (; CurrCycle != NextCycle; ++CurrCycle) {
1990 if (isTop())
1991 HazardRec->AdvanceCycle();
1992 else
1993 HazardRec->RecedeCycle();
1994 }
1995 }
1996 CheckPending = true;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00001997 unsigned LFactor = SchedModel->getLatencyFactor();
1998 IsResourceLimited =
1999 (int)(getCriticalCount() - (getScheduledLatency() * LFactor))
2000 > (int)LFactor;
Andrew Trick61f1a272012-05-24 22:11:09 +00002001
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002002 DEBUG(dbgs() << "Cycle: " << CurrCycle << ' ' << Available.getName() << '\n');
2003}
2004
Andrew Trickfc127d12013-12-07 05:59:44 +00002005void SchedBoundary::incExecutedResources(unsigned PIdx, unsigned Count) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002006 ExecutedResCounts[PIdx] += Count;
2007 if (ExecutedResCounts[PIdx] > MaxExecutedResCount)
2008 MaxExecutedResCount = ExecutedResCounts[PIdx];
Andrew Trick61f1a272012-05-24 22:11:09 +00002009}
2010
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002011/// Add the given processor resource to this scheduled zone.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002012///
2013/// \param Cycles indicates the number of consecutive (non-pipelined) cycles
2014/// during which this resource is consumed.
2015///
2016/// \return the next cycle at which the instruction may execute without
2017/// oversubscribing resources.
Andrew Trickfc127d12013-12-07 05:59:44 +00002018unsigned SchedBoundary::
Andrew Trick5a22df42013-12-05 17:56:02 +00002019countResource(unsigned PIdx, unsigned Cycles, unsigned NextCycle) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002020 unsigned Factor = SchedModel->getResourceFactor(PIdx);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002021 unsigned Count = Factor * Cycles;
Andrew Trickfc127d12013-12-07 05:59:44 +00002022 DEBUG(dbgs() << " " << SchedModel->getResourceName(PIdx)
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002023 << " +" << Cycles << "x" << Factor << "u\n");
2024
2025 // Update Executed resources counts.
2026 incExecutedResources(PIdx, Count);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002027 assert(Rem->RemainingCounts[PIdx] >= Count && "resource double counted");
2028 Rem->RemainingCounts[PIdx] -= Count;
2029
Andrew Trickb13ef172013-07-19 00:20:07 +00002030 // Check if this resource exceeds the current critical resource. If so, it
2031 // becomes the critical resource.
2032 if (ZoneCritResIdx != PIdx && (getResourceCount(PIdx) > getCriticalCount())) {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002033 ZoneCritResIdx = PIdx;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002034 DEBUG(dbgs() << " *** Critical resource "
Andrew Trickfc127d12013-12-07 05:59:44 +00002035 << SchedModel->getResourceName(PIdx) << ": "
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002036 << getResourceCount(PIdx) / SchedModel->getLatencyFactor() << "c\n");
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002037 }
Andrew Trick5a22df42013-12-05 17:56:02 +00002038 // For reserved resources, record the highest cycle using the resource.
2039 unsigned NextAvailable = getNextResourceCycle(PIdx, Cycles);
2040 if (NextAvailable > CurrCycle) {
2041 DEBUG(dbgs() << " Resource conflict: "
2042 << SchedModel->getProcResource(PIdx)->Name << " reserved until @"
2043 << NextAvailable << "\n");
2044 }
2045 return NextAvailable;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002046}
2047
Andrew Trick45446062012-06-05 21:11:27 +00002048/// Move the boundary of scheduled code by one SUnit.
Andrew Trickfc127d12013-12-07 05:59:44 +00002049void SchedBoundary::bumpNode(SUnit *SU) {
Andrew Trick45446062012-06-05 21:11:27 +00002050 // Update the reservation table.
2051 if (HazardRec->isEnabled()) {
2052 if (!isTop() && SU->isCall) {
2053 // Calls are scheduled with their preceding instructions. For bottom-up
2054 // scheduling, clear the pipeline state before emitting.
2055 HazardRec->Reset();
2056 }
2057 HazardRec->EmitInstruction(SU);
2058 }
Andrew Trick5a22df42013-12-05 17:56:02 +00002059 // checkHazard should prevent scheduling multiple instructions per cycle that
2060 // exceed the issue width.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002061 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
2062 unsigned IncMOps = SchedModel->getNumMicroOps(SU->getInstr());
Daniel Jasper0d92abd2013-12-06 08:58:22 +00002063 assert(
2064 (CurrMOps == 0 || (CurrMOps + IncMOps) <= SchedModel->getIssueWidth()) &&
Andrew Trickf7760a22013-12-06 17:19:20 +00002065 "Cannot schedule this instruction's MicroOps in the current cycle.");
Andrew Trick5a22df42013-12-05 17:56:02 +00002066
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002067 unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle);
2068 DEBUG(dbgs() << " Ready @" << ReadyCycle << "c\n");
2069
Andrew Trick5a22df42013-12-05 17:56:02 +00002070 unsigned NextCycle = CurrCycle;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002071 switch (SchedModel->getMicroOpBufferSize()) {
2072 case 0:
2073 assert(ReadyCycle <= CurrCycle && "Broken PendingQueue");
2074 break;
2075 case 1:
2076 if (ReadyCycle > NextCycle) {
2077 NextCycle = ReadyCycle;
2078 DEBUG(dbgs() << " *** Stall until: " << ReadyCycle << "\n");
2079 }
2080 break;
2081 default:
2082 // We don't currently model the OOO reorder buffer, so consider all
Andrew Trick880e5732013-12-05 17:55:58 +00002083 // scheduled MOps to be "retired". We do loosely model in-order resource
2084 // latency. If this instruction uses an in-order resource, account for any
2085 // likely stall cycles.
2086 if (SU->isUnbuffered && ReadyCycle > NextCycle)
2087 NextCycle = ReadyCycle;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002088 break;
2089 }
2090 RetiredMOps += IncMOps;
2091
2092 // Update resource counts and critical resource.
2093 if (SchedModel->hasInstrSchedModel()) {
2094 unsigned DecRemIssue = IncMOps * SchedModel->getMicroOpFactor();
2095 assert(Rem->RemIssueCount >= DecRemIssue && "MOps double counted");
2096 Rem->RemIssueCount -= DecRemIssue;
2097 if (ZoneCritResIdx) {
2098 // Scale scheduled micro-ops for comparing with the critical resource.
2099 unsigned ScaledMOps =
2100 RetiredMOps * SchedModel->getMicroOpFactor();
2101
2102 // If scaled micro-ops are now more than the previous critical resource by
2103 // a full cycle, then micro-ops issue becomes critical.
2104 if ((int)(ScaledMOps - getResourceCount(ZoneCritResIdx))
2105 >= (int)SchedModel->getLatencyFactor()) {
2106 ZoneCritResIdx = 0;
2107 DEBUG(dbgs() << " *** Critical resource NumMicroOps: "
2108 << ScaledMOps / SchedModel->getLatencyFactor() << "c\n");
2109 }
2110 }
2111 for (TargetSchedModel::ProcResIter
2112 PI = SchedModel->getWriteProcResBegin(SC),
2113 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
2114 unsigned RCycle =
Andrew Trick5a22df42013-12-05 17:56:02 +00002115 countResource(PI->ProcResourceIdx, PI->Cycles, NextCycle);
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002116 if (RCycle > NextCycle)
2117 NextCycle = RCycle;
2118 }
Andrew Trick5a22df42013-12-05 17:56:02 +00002119 if (SU->hasReservedResource) {
2120 // For reserved resources, record the highest cycle using the resource.
2121 // For top-down scheduling, this is the cycle in which we schedule this
2122 // instruction plus the number of cycles the operations reserves the
2123 // resource. For bottom-up is it simply the instruction's cycle.
2124 for (TargetSchedModel::ProcResIter
2125 PI = SchedModel->getWriteProcResBegin(SC),
2126 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
2127 unsigned PIdx = PI->ProcResourceIdx;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002128 if (SchedModel->getProcResource(PIdx)->BufferSize == 0) {
Chad Rosieraba845e2014-07-02 16:46:08 +00002129 if (isTop()) {
2130 ReservedCycles[PIdx] =
2131 std::max(getNextResourceCycle(PIdx, 0), NextCycle + PI->Cycles);
2132 }
2133 else
2134 ReservedCycles[PIdx] = NextCycle;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002135 }
Andrew Trick5a22df42013-12-05 17:56:02 +00002136 }
2137 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002138 }
2139 // Update ExpectedLatency and DependentLatency.
2140 unsigned &TopLatency = isTop() ? ExpectedLatency : DependentLatency;
2141 unsigned &BotLatency = isTop() ? DependentLatency : ExpectedLatency;
2142 if (SU->getDepth() > TopLatency) {
2143 TopLatency = SU->getDepth();
2144 DEBUG(dbgs() << " " << Available.getName()
2145 << " TopLatency SU(" << SU->NodeNum << ") " << TopLatency << "c\n");
2146 }
2147 if (SU->getHeight() > BotLatency) {
2148 BotLatency = SU->getHeight();
2149 DEBUG(dbgs() << " " << Available.getName()
2150 << " BotLatency SU(" << SU->NodeNum << ") " << BotLatency << "c\n");
2151 }
2152 // If we stall for any reason, bump the cycle.
2153 if (NextCycle > CurrCycle) {
2154 bumpCycle(NextCycle);
2155 }
2156 else {
2157 // After updating ZoneCritResIdx and ExpectedLatency, check if we're
Alp Tokercb402912014-01-24 17:20:08 +00002158 // resource limited. If a stall occurred, bumpCycle does this.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002159 unsigned LFactor = SchedModel->getLatencyFactor();
2160 IsResourceLimited =
2161 (int)(getCriticalCount() - (getScheduledLatency() * LFactor))
2162 > (int)LFactor;
2163 }
Andrew Trick5a22df42013-12-05 17:56:02 +00002164 // Update CurrMOps after calling bumpCycle to handle stalls, since bumpCycle
2165 // resets CurrMOps. Loop to handle instructions with more MOps than issue in
2166 // one cycle. Since we commonly reach the max MOps here, opportunistically
2167 // bump the cycle to avoid uselessly checking everything in the readyQ.
2168 CurrMOps += IncMOps;
2169 while (CurrMOps >= SchedModel->getIssueWidth()) {
Andrew Trick5a22df42013-12-05 17:56:02 +00002170 DEBUG(dbgs() << " *** Max MOps " << CurrMOps
2171 << " at cycle " << CurrCycle << '\n');
Andrew Trickd14d7c22013-12-28 21:56:57 +00002172 bumpCycle(++NextCycle);
Andrew Trick5a22df42013-12-05 17:56:02 +00002173 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002174 DEBUG(dumpScheduledState());
Andrew Trick45446062012-06-05 21:11:27 +00002175}
2176
Andrew Trick61f1a272012-05-24 22:11:09 +00002177/// Release pending ready nodes in to the available queue. This makes them
2178/// visible to heuristics.
Andrew Trickfc127d12013-12-07 05:59:44 +00002179void SchedBoundary::releasePending() {
Andrew Trick61f1a272012-05-24 22:11:09 +00002180 // If the available queue is empty, it is safe to reset MinReadyCycle.
2181 if (Available.empty())
2182 MinReadyCycle = UINT_MAX;
2183
2184 // Check to see if any of the pending instructions are ready to issue. If
2185 // so, add them to the available queue.
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002186 bool IsBuffered = SchedModel->getMicroOpBufferSize() != 0;
Andrew Trick61f1a272012-05-24 22:11:09 +00002187 for (unsigned i = 0, e = Pending.size(); i != e; ++i) {
2188 SUnit *SU = *(Pending.begin()+i);
Andrew Trick45446062012-06-05 21:11:27 +00002189 unsigned ReadyCycle = isTop() ? SU->TopReadyCycle : SU->BotReadyCycle;
Andrew Trick61f1a272012-05-24 22:11:09 +00002190
2191 if (ReadyCycle < MinReadyCycle)
2192 MinReadyCycle = ReadyCycle;
2193
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002194 if (!IsBuffered && ReadyCycle > CurrCycle)
Andrew Trick61f1a272012-05-24 22:11:09 +00002195 continue;
2196
Andrew Trick8c9e6722012-06-29 03:23:24 +00002197 if (checkHazard(SU))
Andrew Trick61f1a272012-05-24 22:11:09 +00002198 continue;
2199
2200 Available.push(SU);
2201 Pending.remove(Pending.begin()+i);
2202 --i; --e;
2203 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002204 DEBUG(if (!Pending.empty()) Pending.dump());
Andrew Trick61f1a272012-05-24 22:11:09 +00002205 CheckPending = false;
2206}
2207
2208/// Remove SU from the ready set for this boundary.
Andrew Trickfc127d12013-12-07 05:59:44 +00002209void SchedBoundary::removeReady(SUnit *SU) {
Andrew Trick61f1a272012-05-24 22:11:09 +00002210 if (Available.isInQueue(SU))
2211 Available.remove(Available.find(SU));
2212 else {
2213 assert(Pending.isInQueue(SU) && "bad ready count");
2214 Pending.remove(Pending.find(SU));
2215 }
2216}
2217
2218/// If this queue only has one ready candidate, return it. As a side effect,
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002219/// defer any nodes that now hit a hazard, and advance the cycle until at least
2220/// one node is ready. If multiple instructions are ready, return NULL.
Andrew Trickfc127d12013-12-07 05:59:44 +00002221SUnit *SchedBoundary::pickOnlyChoice() {
Andrew Trick61f1a272012-05-24 22:11:09 +00002222 if (CheckPending)
2223 releasePending();
2224
Andrew Tricke2ff5752013-06-15 04:49:49 +00002225 if (CurrMOps > 0) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002226 // Defer any ready instrs that now have a hazard.
2227 for (ReadyQueue::iterator I = Available.begin(); I != Available.end();) {
2228 if (checkHazard(*I)) {
2229 Pending.push(*I);
2230 I = Available.remove(I);
2231 continue;
2232 }
2233 ++I;
2234 }
2235 }
Andrew Trick61f1a272012-05-24 22:11:09 +00002236 for (unsigned i = 0; Available.empty(); ++i) {
Chad Rosieraba845e2014-07-02 16:46:08 +00002237// FIXME: Re-enable assert once PR20057 is resolved.
2238// assert(i <= (HazardRec->getMaxLookAhead() + MaxObservedStall) &&
2239// "permanent hazard");
2240 (void)i;
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002241 bumpCycle(CurrCycle + 1);
Andrew Trick61f1a272012-05-24 22:11:09 +00002242 releasePending();
2243 }
2244 if (Available.size() == 1)
2245 return *Available.begin();
Craig Topperc0196b12014-04-14 00:51:57 +00002246 return nullptr;
Andrew Trick61f1a272012-05-24 22:11:09 +00002247}
2248
Andrew Trick8e8415f2013-06-15 05:46:47 +00002249#ifndef NDEBUG
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002250// This is useful information to dump after bumpNode.
2251// Note that the Queue contents are more useful before pickNodeFromQueue.
Andrew Trickfc127d12013-12-07 05:59:44 +00002252void SchedBoundary::dumpScheduledState() {
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002253 unsigned ResFactor;
2254 unsigned ResCount;
2255 if (ZoneCritResIdx) {
2256 ResFactor = SchedModel->getResourceFactor(ZoneCritResIdx);
2257 ResCount = getResourceCount(ZoneCritResIdx);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002258 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002259 else {
2260 ResFactor = SchedModel->getMicroOpFactor();
2261 ResCount = RetiredMOps * SchedModel->getMicroOpFactor();
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002262 }
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002263 unsigned LFactor = SchedModel->getLatencyFactor();
2264 dbgs() << Available.getName() << " @" << CurrCycle << "c\n"
2265 << " Retired: " << RetiredMOps;
2266 dbgs() << "\n Executed: " << getExecutedCount() / LFactor << "c";
2267 dbgs() << "\n Critical: " << ResCount / LFactor << "c, "
Andrew Trickfc127d12013-12-07 05:59:44 +00002268 << ResCount / ResFactor << " "
2269 << SchedModel->getResourceName(ZoneCritResIdx)
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002270 << "\n ExpectedLatency: " << ExpectedLatency << "c\n"
2271 << (IsResourceLimited ? " - Resource" : " - Latency")
2272 << " limited.\n";
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002273}
Andrew Trick8e8415f2013-06-15 05:46:47 +00002274#endif
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002275
Andrew Trickfc127d12013-12-07 05:59:44 +00002276//===----------------------------------------------------------------------===//
Andrew Trickd14d7c22013-12-28 21:56:57 +00002277// GenericScheduler - Generic implementation of MachineSchedStrategy.
Andrew Trickfc127d12013-12-07 05:59:44 +00002278//===----------------------------------------------------------------------===//
2279
Andrew Trickd14d7c22013-12-28 21:56:57 +00002280void GenericSchedulerBase::SchedCandidate::
2281initResourceDelta(const ScheduleDAGMI *DAG,
2282 const TargetSchedModel *SchedModel) {
2283 if (!Policy.ReduceResIdx && !Policy.DemandResIdx)
2284 return;
2285
2286 const MCSchedClassDesc *SC = DAG->getSchedClass(SU);
2287 for (TargetSchedModel::ProcResIter
2288 PI = SchedModel->getWriteProcResBegin(SC),
2289 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
2290 if (PI->ProcResourceIdx == Policy.ReduceResIdx)
2291 ResDelta.CritResources += PI->Cycles;
2292 if (PI->ProcResourceIdx == Policy.DemandResIdx)
2293 ResDelta.DemandedResources += PI->Cycles;
2294 }
2295}
2296
2297/// Set the CandPolicy given a scheduling zone given the current resources and
2298/// latencies inside and outside the zone.
2299void GenericSchedulerBase::setPolicy(CandPolicy &Policy,
2300 bool IsPostRA,
2301 SchedBoundary &CurrZone,
2302 SchedBoundary *OtherZone) {
Eric Christopher572e03a2015-06-19 01:53:21 +00002303 // Apply preemptive heuristics based on the total latency and resources
Andrew Trickd14d7c22013-12-28 21:56:57 +00002304 // inside and outside this zone. Potential stalls should be considered before
2305 // following this policy.
2306
2307 // Compute remaining latency. We need this both to determine whether the
2308 // overall schedule has become latency-limited and whether the instructions
2309 // outside this zone are resource or latency limited.
2310 //
2311 // The "dependent" latency is updated incrementally during scheduling as the
2312 // max height/depth of scheduled nodes minus the cycles since it was
2313 // scheduled:
2314 // DLat = max (N.depth - (CurrCycle - N.ReadyCycle) for N in Zone
2315 //
2316 // The "independent" latency is the max ready queue depth:
2317 // ILat = max N.depth for N in Available|Pending
2318 //
2319 // RemainingLatency is the greater of independent and dependent latency.
2320 unsigned RemLatency = CurrZone.getDependentLatency();
2321 RemLatency = std::max(RemLatency,
2322 CurrZone.findMaxLatency(CurrZone.Available.elements()));
2323 RemLatency = std::max(RemLatency,
2324 CurrZone.findMaxLatency(CurrZone.Pending.elements()));
2325
2326 // Compute the critical resource outside the zone.
Andrew Trick7afe4812013-12-28 22:25:57 +00002327 unsigned OtherCritIdx = 0;
Andrew Trickd14d7c22013-12-28 21:56:57 +00002328 unsigned OtherCount =
2329 OtherZone ? OtherZone->getOtherResourceCount(OtherCritIdx) : 0;
2330
2331 bool OtherResLimited = false;
2332 if (SchedModel->hasInstrSchedModel()) {
2333 unsigned LFactor = SchedModel->getLatencyFactor();
2334 OtherResLimited = (int)(OtherCount - (RemLatency * LFactor)) > (int)LFactor;
2335 }
2336 // Schedule aggressively for latency in PostRA mode. We don't check for
2337 // acyclic latency during PostRA, and highly out-of-order processors will
2338 // skip PostRA scheduling.
2339 if (!OtherResLimited) {
2340 if (IsPostRA || (RemLatency + CurrZone.getCurrCycle() > Rem.CriticalPath)) {
2341 Policy.ReduceLatency |= true;
2342 DEBUG(dbgs() << " " << CurrZone.Available.getName()
2343 << " RemainingLatency " << RemLatency << " + "
2344 << CurrZone.getCurrCycle() << "c > CritPath "
2345 << Rem.CriticalPath << "\n");
2346 }
2347 }
2348 // If the same resource is limiting inside and outside the zone, do nothing.
2349 if (CurrZone.getZoneCritResIdx() == OtherCritIdx)
2350 return;
2351
2352 DEBUG(
2353 if (CurrZone.isResourceLimited()) {
2354 dbgs() << " " << CurrZone.Available.getName() << " ResourceLimited: "
2355 << SchedModel->getResourceName(CurrZone.getZoneCritResIdx())
2356 << "\n";
2357 }
2358 if (OtherResLimited)
2359 dbgs() << " RemainingLimit: "
2360 << SchedModel->getResourceName(OtherCritIdx) << "\n";
2361 if (!CurrZone.isResourceLimited() && !OtherResLimited)
2362 dbgs() << " Latency limited both directions.\n");
2363
2364 if (CurrZone.isResourceLimited() && !Policy.ReduceResIdx)
2365 Policy.ReduceResIdx = CurrZone.getZoneCritResIdx();
2366
2367 if (OtherResLimited)
2368 Policy.DemandResIdx = OtherCritIdx;
2369}
2370
2371#ifndef NDEBUG
2372const char *GenericSchedulerBase::getReasonStr(
2373 GenericSchedulerBase::CandReason Reason) {
2374 switch (Reason) {
2375 case NoCand: return "NOCAND ";
2376 case PhysRegCopy: return "PREG-COPY";
2377 case RegExcess: return "REG-EXCESS";
2378 case RegCritical: return "REG-CRIT ";
2379 case Stall: return "STALL ";
2380 case Cluster: return "CLUSTER ";
2381 case Weak: return "WEAK ";
2382 case RegMax: return "REG-MAX ";
2383 case ResourceReduce: return "RES-REDUCE";
2384 case ResourceDemand: return "RES-DEMAND";
2385 case TopDepthReduce: return "TOP-DEPTH ";
2386 case TopPathReduce: return "TOP-PATH ";
2387 case BotHeightReduce:return "BOT-HEIGHT";
2388 case BotPathReduce: return "BOT-PATH ";
2389 case NextDefUse: return "DEF-USE ";
2390 case NodeOrder: return "ORDER ";
2391 };
2392 llvm_unreachable("Unknown reason!");
2393}
2394
2395void GenericSchedulerBase::traceCandidate(const SchedCandidate &Cand) {
2396 PressureChange P;
2397 unsigned ResIdx = 0;
2398 unsigned Latency = 0;
2399 switch (Cand.Reason) {
2400 default:
2401 break;
2402 case RegExcess:
2403 P = Cand.RPDelta.Excess;
2404 break;
2405 case RegCritical:
2406 P = Cand.RPDelta.CriticalMax;
2407 break;
2408 case RegMax:
2409 P = Cand.RPDelta.CurrentMax;
2410 break;
2411 case ResourceReduce:
2412 ResIdx = Cand.Policy.ReduceResIdx;
2413 break;
2414 case ResourceDemand:
2415 ResIdx = Cand.Policy.DemandResIdx;
2416 break;
2417 case TopDepthReduce:
2418 Latency = Cand.SU->getDepth();
2419 break;
2420 case TopPathReduce:
2421 Latency = Cand.SU->getHeight();
2422 break;
2423 case BotHeightReduce:
2424 Latency = Cand.SU->getHeight();
2425 break;
2426 case BotPathReduce:
2427 Latency = Cand.SU->getDepth();
2428 break;
2429 }
James Y Knighte72b0db2015-09-18 18:52:20 +00002430 dbgs() << " Cand SU(" << Cand.SU->NodeNum << ") " << getReasonStr(Cand.Reason);
Andrew Trickd14d7c22013-12-28 21:56:57 +00002431 if (P.isValid())
2432 dbgs() << " " << TRI->getRegPressureSetName(P.getPSet())
2433 << ":" << P.getUnitInc() << " ";
2434 else
2435 dbgs() << " ";
2436 if (ResIdx)
2437 dbgs() << " " << SchedModel->getProcResource(ResIdx)->Name << " ";
2438 else
2439 dbgs() << " ";
2440 if (Latency)
2441 dbgs() << " " << Latency << " cycles ";
2442 else
2443 dbgs() << " ";
2444 dbgs() << '\n';
2445}
2446#endif
2447
2448/// Return true if this heuristic determines order.
2449static bool tryLess(int TryVal, int CandVal,
2450 GenericSchedulerBase::SchedCandidate &TryCand,
2451 GenericSchedulerBase::SchedCandidate &Cand,
2452 GenericSchedulerBase::CandReason Reason) {
2453 if (TryVal < CandVal) {
2454 TryCand.Reason = Reason;
2455 return true;
2456 }
2457 if (TryVal > CandVal) {
2458 if (Cand.Reason > Reason)
2459 Cand.Reason = Reason;
2460 return true;
2461 }
2462 Cand.setRepeat(Reason);
2463 return false;
2464}
2465
2466static bool tryGreater(int TryVal, int CandVal,
2467 GenericSchedulerBase::SchedCandidate &TryCand,
2468 GenericSchedulerBase::SchedCandidate &Cand,
2469 GenericSchedulerBase::CandReason Reason) {
2470 if (TryVal > CandVal) {
2471 TryCand.Reason = Reason;
2472 return true;
2473 }
2474 if (TryVal < CandVal) {
2475 if (Cand.Reason > Reason)
2476 Cand.Reason = Reason;
2477 return true;
2478 }
2479 Cand.setRepeat(Reason);
2480 return false;
2481}
2482
2483static bool tryLatency(GenericSchedulerBase::SchedCandidate &TryCand,
2484 GenericSchedulerBase::SchedCandidate &Cand,
2485 SchedBoundary &Zone) {
2486 if (Zone.isTop()) {
2487 if (Cand.SU->getDepth() > Zone.getScheduledLatency()) {
2488 if (tryLess(TryCand.SU->getDepth(), Cand.SU->getDepth(),
2489 TryCand, Cand, GenericSchedulerBase::TopDepthReduce))
2490 return true;
2491 }
2492 if (tryGreater(TryCand.SU->getHeight(), Cand.SU->getHeight(),
2493 TryCand, Cand, GenericSchedulerBase::TopPathReduce))
2494 return true;
2495 }
2496 else {
2497 if (Cand.SU->getHeight() > Zone.getScheduledLatency()) {
2498 if (tryLess(TryCand.SU->getHeight(), Cand.SU->getHeight(),
2499 TryCand, Cand, GenericSchedulerBase::BotHeightReduce))
2500 return true;
2501 }
2502 if (tryGreater(TryCand.SU->getDepth(), Cand.SU->getDepth(),
2503 TryCand, Cand, GenericSchedulerBase::BotPathReduce))
2504 return true;
2505 }
2506 return false;
2507}
2508
2509static void tracePick(const GenericSchedulerBase::SchedCandidate &Cand,
2510 bool IsTop) {
2511 DEBUG(dbgs() << "Pick " << (IsTop ? "Top " : "Bot ")
2512 << GenericSchedulerBase::getReasonStr(Cand.Reason) << '\n');
2513}
2514
Andrew Trickfc127d12013-12-07 05:59:44 +00002515void GenericScheduler::initialize(ScheduleDAGMI *dag) {
Andrew Trickd7f890e2013-12-28 21:56:47 +00002516 assert(dag->hasVRegLiveness() &&
2517 "(PreRA)GenericScheduler needs vreg liveness");
2518 DAG = static_cast<ScheduleDAGMILive*>(dag);
Andrew Trickfc127d12013-12-07 05:59:44 +00002519 SchedModel = DAG->getSchedModel();
2520 TRI = DAG->TRI;
2521
2522 Rem.init(DAG, SchedModel);
2523 Top.init(DAG, SchedModel, &Rem);
2524 Bot.init(DAG, SchedModel, &Rem);
2525
2526 // Initialize resource counts.
2527
2528 // Initialize the HazardRecognizers. If itineraries don't exist, are empty, or
2529 // are disabled, then these HazardRecs will be disabled.
2530 const InstrItineraryData *Itin = SchedModel->getInstrItineraries();
Andrew Trickfc127d12013-12-07 05:59:44 +00002531 if (!Top.HazardRec) {
2532 Top.HazardRec =
Eric Christopher99556d72014-10-14 06:56:25 +00002533 DAG->MF.getSubtarget().getInstrInfo()->CreateTargetMIHazardRecognizer(
Eric Christopherd9134482014-08-04 21:25:23 +00002534 Itin, DAG);
Andrew Trickfc127d12013-12-07 05:59:44 +00002535 }
2536 if (!Bot.HazardRec) {
2537 Bot.HazardRec =
Eric Christopher99556d72014-10-14 06:56:25 +00002538 DAG->MF.getSubtarget().getInstrInfo()->CreateTargetMIHazardRecognizer(
Eric Christopherd9134482014-08-04 21:25:23 +00002539 Itin, DAG);
Andrew Trickfc127d12013-12-07 05:59:44 +00002540 }
2541}
2542
2543/// Initialize the per-region scheduling policy.
2544void GenericScheduler::initPolicy(MachineBasicBlock::iterator Begin,
2545 MachineBasicBlock::iterator End,
2546 unsigned NumRegionInstrs) {
Eric Christopher99556d72014-10-14 06:56:25 +00002547 const MachineFunction &MF = *Begin->getParent()->getParent();
2548 const TargetLowering *TLI = MF.getSubtarget().getTargetLowering();
Andrew Trickfc127d12013-12-07 05:59:44 +00002549
2550 // Avoid setting up the register pressure tracker for small regions to save
2551 // compile time. As a rough heuristic, only track pressure when the number of
2552 // schedulable instructions exceeds half the integer register file.
Andrew Trick350ff2c2014-01-21 21:27:37 +00002553 RegionPolicy.ShouldTrackPressure = true;
Andrew Trick46753512014-01-22 03:38:55 +00002554 for (unsigned VT = MVT::i32; VT > (unsigned)MVT::i1; --VT) {
2555 MVT::SimpleValueType LegalIntVT = (MVT::SimpleValueType)VT;
2556 if (TLI->isTypeLegal(LegalIntVT)) {
Andrew Trick350ff2c2014-01-21 21:27:37 +00002557 unsigned NIntRegs = Context->RegClassInfo->getNumAllocatableRegs(
Andrew Trick46753512014-01-22 03:38:55 +00002558 TLI->getRegClassFor(LegalIntVT));
Andrew Trick350ff2c2014-01-21 21:27:37 +00002559 RegionPolicy.ShouldTrackPressure = NumRegionInstrs > (NIntRegs / 2);
2560 }
2561 }
Andrew Trickfc127d12013-12-07 05:59:44 +00002562
2563 // For generic targets, we default to bottom-up, because it's simpler and more
2564 // compile-time optimizations have been implemented in that direction.
2565 RegionPolicy.OnlyBottomUp = true;
2566
2567 // Allow the subtarget to override default policy.
Eric Christopher99556d72014-10-14 06:56:25 +00002568 MF.getSubtarget().overrideSchedPolicy(RegionPolicy, Begin, End,
2569 NumRegionInstrs);
Andrew Trickfc127d12013-12-07 05:59:44 +00002570
2571 // After subtarget overrides, apply command line options.
2572 if (!EnableRegPressure)
2573 RegionPolicy.ShouldTrackPressure = false;
2574
2575 // Check -misched-topdown/bottomup can force or unforce scheduling direction.
2576 // e.g. -misched-bottomup=false allows scheduling in both directions.
2577 assert((!ForceTopDown || !ForceBottomUp) &&
2578 "-misched-topdown incompatible with -misched-bottomup");
2579 if (ForceBottomUp.getNumOccurrences() > 0) {
2580 RegionPolicy.OnlyBottomUp = ForceBottomUp;
2581 if (RegionPolicy.OnlyBottomUp)
2582 RegionPolicy.OnlyTopDown = false;
2583 }
2584 if (ForceTopDown.getNumOccurrences() > 0) {
2585 RegionPolicy.OnlyTopDown = ForceTopDown;
2586 if (RegionPolicy.OnlyTopDown)
2587 RegionPolicy.OnlyBottomUp = false;
2588 }
2589}
2590
James Y Knighte72b0db2015-09-18 18:52:20 +00002591void GenericScheduler::dumpPolicy() {
2592 dbgs() << "GenericScheduler RegionPolicy: "
2593 << " ShouldTrackPressure=" << RegionPolicy.ShouldTrackPressure
2594 << " OnlyTopDown=" << RegionPolicy.OnlyTopDown
2595 << " OnlyBottomUp=" << RegionPolicy.OnlyBottomUp
2596 << "\n";
2597}
2598
Andrew Trickfc127d12013-12-07 05:59:44 +00002599/// Set IsAcyclicLatencyLimited if the acyclic path is longer than the cyclic
2600/// critical path by more cycles than it takes to drain the instruction buffer.
2601/// We estimate an upper bounds on in-flight instructions as:
2602///
2603/// CyclesPerIteration = max( CyclicPath, Loop-Resource-Height )
2604/// InFlightIterations = AcyclicPath / CyclesPerIteration
2605/// InFlightResources = InFlightIterations * LoopResources
2606///
2607/// TODO: Check execution resources in addition to IssueCount.
2608void GenericScheduler::checkAcyclicLatency() {
2609 if (Rem.CyclicCritPath == 0 || Rem.CyclicCritPath >= Rem.CriticalPath)
2610 return;
2611
2612 // Scaled number of cycles per loop iteration.
2613 unsigned IterCount =
2614 std::max(Rem.CyclicCritPath * SchedModel->getLatencyFactor(),
2615 Rem.RemIssueCount);
2616 // Scaled acyclic critical path.
2617 unsigned AcyclicCount = Rem.CriticalPath * SchedModel->getLatencyFactor();
2618 // InFlightCount = (AcyclicPath / IterCycles) * InstrPerLoop
2619 unsigned InFlightCount =
2620 (AcyclicCount * Rem.RemIssueCount + IterCount-1) / IterCount;
2621 unsigned BufferLimit =
2622 SchedModel->getMicroOpBufferSize() * SchedModel->getMicroOpFactor();
2623
2624 Rem.IsAcyclicLatencyLimited = InFlightCount > BufferLimit;
2625
2626 DEBUG(dbgs() << "IssueCycles="
2627 << Rem.RemIssueCount / SchedModel->getLatencyFactor() << "c "
2628 << "IterCycles=" << IterCount / SchedModel->getLatencyFactor()
2629 << "c NumIters=" << (AcyclicCount + IterCount-1) / IterCount
2630 << " InFlight=" << InFlightCount / SchedModel->getMicroOpFactor()
2631 << "m BufferLim=" << SchedModel->getMicroOpBufferSize() << "m\n";
2632 if (Rem.IsAcyclicLatencyLimited)
2633 dbgs() << " ACYCLIC LATENCY LIMIT\n");
2634}
2635
2636void GenericScheduler::registerRoots() {
2637 Rem.CriticalPath = DAG->ExitSU.getDepth();
2638
2639 // Some roots may not feed into ExitSU. Check all of them in case.
2640 for (std::vector<SUnit*>::const_iterator
2641 I = Bot.Available.begin(), E = Bot.Available.end(); I != E; ++I) {
2642 if ((*I)->getDepth() > Rem.CriticalPath)
2643 Rem.CriticalPath = (*I)->getDepth();
2644 }
Gerolf Hoflehnerb5220dc2014-08-07 21:49:44 +00002645 DEBUG(dbgs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << '\n');
2646 if (DumpCriticalPathLength) {
2647 errs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << " \n";
2648 }
Andrew Trickfc127d12013-12-07 05:59:44 +00002649
2650 if (EnableCyclicPath) {
2651 Rem.CyclicCritPath = DAG->computeCyclicCriticalPath();
2652 checkAcyclicLatency();
2653 }
2654}
2655
Andrew Trick1a831342013-08-30 03:49:48 +00002656static bool tryPressure(const PressureChange &TryP,
2657 const PressureChange &CandP,
Andrew Trickd14d7c22013-12-28 21:56:57 +00002658 GenericSchedulerBase::SchedCandidate &TryCand,
2659 GenericSchedulerBase::SchedCandidate &Cand,
Tom Stellard5ce53062015-12-16 18:31:01 +00002660 GenericSchedulerBase::CandReason Reason,
2661 const TargetRegisterInfo *TRI,
2662 const MachineFunction &MF) {
2663 unsigned TryPSet = TryP.getPSetOrMax();
2664 unsigned CandPSet = CandP.getPSetOrMax();
Andrew Trickb1a45b62013-08-30 04:27:29 +00002665 // If both candidates affect the same set, go with the smallest increase.
Tom Stellard5ce53062015-12-16 18:31:01 +00002666 if (TryPSet == CandPSet) {
Andrew Trickb1a45b62013-08-30 04:27:29 +00002667 return tryLess(TryP.getUnitInc(), CandP.getUnitInc(), TryCand, Cand,
2668 Reason);
Andrew Trick401b6952013-07-25 07:26:35 +00002669 }
Andrew Trickb1a45b62013-08-30 04:27:29 +00002670 // If one candidate decreases and the other increases, go with it.
2671 // Invalid candidates have UnitInc==0.
Hal Finkel7a87f8a2014-10-10 17:06:20 +00002672 if (tryGreater(TryP.getUnitInc() < 0, CandP.getUnitInc() < 0, TryCand, Cand,
2673 Reason)) {
Andrew Trickb1a45b62013-08-30 04:27:29 +00002674 return true;
2675 }
Tom Stellard5ce53062015-12-16 18:31:01 +00002676
2677 int TryRank = TryP.isValid() ? TRI->getRegPressureSetScore(MF, TryPSet) :
2678 std::numeric_limits<int>::max();
2679
2680 int CandRank = CandP.isValid() ? TRI->getRegPressureSetScore(MF, CandPSet) :
2681 std::numeric_limits<int>::max();
2682
Andrew Trick401b6952013-07-25 07:26:35 +00002683 // If the candidates are decreasing pressure, reverse priority.
Andrew Trick1a831342013-08-30 03:49:48 +00002684 if (TryP.getUnitInc() < 0)
Andrew Trick401b6952013-07-25 07:26:35 +00002685 std::swap(TryRank, CandRank);
2686 return tryGreater(TryRank, CandRank, TryCand, Cand, Reason);
2687}
2688
Andrew Tricka7714a02012-11-12 19:40:10 +00002689static unsigned getWeakLeft(const SUnit *SU, bool isTop) {
2690 return (isTop) ? SU->WeakPredsLeft : SU->WeakSuccsLeft;
2691}
2692
Andrew Tricke833e1c2013-04-13 06:07:40 +00002693/// Minimize physical register live ranges. Regalloc wants them adjacent to
2694/// their physreg def/use.
2695///
2696/// FIXME: This is an unnecessary check on the critical path. Most are root/leaf
2697/// copies which can be prescheduled. The rest (e.g. x86 MUL) could be bundled
2698/// with the operation that produces or consumes the physreg. We'll do this when
2699/// regalloc has support for parallel copies.
2700static int biasPhysRegCopy(const SUnit *SU, bool isTop) {
2701 const MachineInstr *MI = SU->getInstr();
2702 if (!MI->isCopy())
2703 return 0;
2704
2705 unsigned ScheduledOper = isTop ? 1 : 0;
2706 unsigned UnscheduledOper = isTop ? 0 : 1;
2707 // If we have already scheduled the physreg produce/consumer, immediately
2708 // schedule the copy.
2709 if (TargetRegisterInfo::isPhysicalRegister(
2710 MI->getOperand(ScheduledOper).getReg()))
2711 return 1;
2712 // If the physreg is at the boundary, defer it. Otherwise schedule it
2713 // immediately to free the dependent. We can hoist the copy later.
2714 bool AtBoundary = isTop ? !SU->NumSuccsLeft : !SU->NumPredsLeft;
2715 if (TargetRegisterInfo::isPhysicalRegister(
2716 MI->getOperand(UnscheduledOper).getReg()))
2717 return AtBoundary ? -1 : 1;
2718 return 0;
2719}
2720
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002721/// Apply a set of heursitics to a new candidate. Heuristics are currently
2722/// hierarchical. This may be more efficient than a graduated cost model because
2723/// we don't need to evaluate all aspects of the model for each node in the
2724/// queue. But it's really done to make the heuristics easier to debug and
2725/// statistically analyze.
2726///
2727/// \param Cand provides the policy and current best candidate.
2728/// \param TryCand refers to the next SUnit candidate, otherwise uninitialized.
2729/// \param Zone describes the scheduled zone that we are extending.
2730/// \param RPTracker describes reg pressure within the scheduled zone.
2731/// \param TempTracker is a scratch pressure tracker to reuse in queries.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002732void GenericScheduler::tryCandidate(SchedCandidate &Cand,
Andrew Trickbb1247b2013-12-05 17:55:47 +00002733 SchedCandidate &TryCand,
2734 SchedBoundary &Zone,
2735 const RegPressureTracker &RPTracker,
2736 RegPressureTracker &TempTracker) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002737
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002738 if (DAG->isTrackingPressure()) {
Andrew Trick310190e2013-09-04 21:00:02 +00002739 // Always initialize TryCand's RPDelta.
2740 if (Zone.isTop()) {
2741 TempTracker.getMaxDownwardPressureDelta(
Andrew Trick1a831342013-08-30 03:49:48 +00002742 TryCand.SU->getInstr(),
Andrew Trick1a831342013-08-30 03:49:48 +00002743 TryCand.RPDelta,
2744 DAG->getRegionCriticalPSets(),
2745 DAG->getRegPressure().MaxSetPressure);
2746 }
2747 else {
Andrew Trick310190e2013-09-04 21:00:02 +00002748 if (VerifyScheduling) {
2749 TempTracker.getMaxUpwardPressureDelta(
2750 TryCand.SU->getInstr(),
2751 &DAG->getPressureDiff(TryCand.SU),
2752 TryCand.RPDelta,
2753 DAG->getRegionCriticalPSets(),
2754 DAG->getRegPressure().MaxSetPressure);
2755 }
2756 else {
2757 RPTracker.getUpwardPressureDelta(
2758 TryCand.SU->getInstr(),
2759 DAG->getPressureDiff(TryCand.SU),
2760 TryCand.RPDelta,
2761 DAG->getRegionCriticalPSets(),
2762 DAG->getRegPressure().MaxSetPressure);
2763 }
Andrew Trick1a831342013-08-30 03:49:48 +00002764 }
2765 }
Andrew Trickc573cd92013-09-06 17:32:44 +00002766 DEBUG(if (TryCand.RPDelta.Excess.isValid())
James Y Knighte72b0db2015-09-18 18:52:20 +00002767 dbgs() << " Try SU(" << TryCand.SU->NodeNum << ") "
Andrew Trickc573cd92013-09-06 17:32:44 +00002768 << TRI->getRegPressureSetName(TryCand.RPDelta.Excess.getPSet())
2769 << ":" << TryCand.RPDelta.Excess.getUnitInc() << "\n");
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002770
2771 // Initialize the candidate if needed.
2772 if (!Cand.isValid()) {
2773 TryCand.Reason = NodeOrder;
2774 return;
2775 }
Andrew Tricke833e1c2013-04-13 06:07:40 +00002776
2777 if (tryGreater(biasPhysRegCopy(TryCand.SU, Zone.isTop()),
2778 biasPhysRegCopy(Cand.SU, Zone.isTop()),
2779 TryCand, Cand, PhysRegCopy))
2780 return;
2781
Andrew Tricke02d5da2015-05-17 23:40:27 +00002782 // Avoid exceeding the target's limit.
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002783 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.Excess,
2784 Cand.RPDelta.Excess,
Tom Stellard5ce53062015-12-16 18:31:01 +00002785 TryCand, Cand, RegExcess, TRI,
2786 DAG->MF))
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002787 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002788
2789 // Avoid increasing the max critical pressure in the scheduled region.
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002790 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.CriticalMax,
2791 Cand.RPDelta.CriticalMax,
Tom Stellard5ce53062015-12-16 18:31:01 +00002792 TryCand, Cand, RegCritical, TRI,
2793 DAG->MF))
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002794 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002795
Andrew Trickddffae92013-09-06 17:32:36 +00002796 // For loops that are acyclic path limited, aggressively schedule for latency.
Andrew Tricke1f7bf22013-09-09 22:28:08 +00002797 // This can result in very long dependence chains scheduled in sequence, so
2798 // once every cycle (when CurrMOps == 0), switch to normal heuristics.
Andrew Trickfc127d12013-12-07 05:59:44 +00002799 if (Rem.IsAcyclicLatencyLimited && !Zone.getCurrMOps()
Andrew Tricke1f7bf22013-09-09 22:28:08 +00002800 && tryLatency(TryCand, Cand, Zone))
Andrew Trickddffae92013-09-06 17:32:36 +00002801 return;
2802
Andrew Trick880e5732013-12-05 17:55:58 +00002803 // Prioritize instructions that read unbuffered resources by stall cycles.
2804 if (tryLess(Zone.getLatencyStallCycles(TryCand.SU),
2805 Zone.getLatencyStallCycles(Cand.SU), TryCand, Cand, Stall))
2806 return;
2807
Andrew Tricka7714a02012-11-12 19:40:10 +00002808 // Keep clustered nodes together to encourage downstream peephole
2809 // optimizations which may reduce resource requirements.
2810 //
2811 // This is a best effort to set things up for a post-RA pass. Optimizations
2812 // like generating loads of multiple registers should ideally be done within
2813 // the scheduler pass by combining the loads during DAG postprocessing.
2814 const SUnit *NextClusterSU =
2815 Zone.isTop() ? DAG->getNextClusterSucc() : DAG->getNextClusterPred();
2816 if (tryGreater(TryCand.SU == NextClusterSU, Cand.SU == NextClusterSU,
2817 TryCand, Cand, Cluster))
2818 return;
Andrew Trick85a1d4c2013-04-24 15:54:43 +00002819
2820 // Weak edges are for clustering and other constraints.
Andrew Tricka7714a02012-11-12 19:40:10 +00002821 if (tryLess(getWeakLeft(TryCand.SU, Zone.isTop()),
2822 getWeakLeft(Cand.SU, Zone.isTop()),
Andrew Trick85a1d4c2013-04-24 15:54:43 +00002823 TryCand, Cand, Weak)) {
Andrew Tricka7714a02012-11-12 19:40:10 +00002824 return;
2825 }
Andrew Trick71f08a32013-06-17 21:45:13 +00002826 // Avoid increasing the max pressure of the entire region.
Andrew Trick66c3dfb2013-09-04 21:00:11 +00002827 if (DAG->isTrackingPressure() && tryPressure(TryCand.RPDelta.CurrentMax,
2828 Cand.RPDelta.CurrentMax,
Tom Stellard5ce53062015-12-16 18:31:01 +00002829 TryCand, Cand, RegMax, TRI,
2830 DAG->MF))
Andrew Trick71f08a32013-06-17 21:45:13 +00002831 return;
2832
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002833 // Avoid critical resource consumption and balance the schedule.
2834 TryCand.initResourceDelta(DAG, SchedModel);
2835 if (tryLess(TryCand.ResDelta.CritResources, Cand.ResDelta.CritResources,
2836 TryCand, Cand, ResourceReduce))
2837 return;
2838 if (tryGreater(TryCand.ResDelta.DemandedResources,
2839 Cand.ResDelta.DemandedResources,
2840 TryCand, Cand, ResourceDemand))
2841 return;
2842
2843 // Avoid serializing long latency dependence chains.
Andrew Trickc01b0042013-08-23 17:48:43 +00002844 // For acyclic path limited loops, latency was already checked above.
Matthias Braun61f4d642015-10-22 18:07:31 +00002845 if (!RegionPolicy.DisableLatencyHeuristic && Cand.Policy.ReduceLatency &&
2846 !Rem.IsAcyclicLatencyLimited && tryLatency(TryCand, Cand, Zone)) {
Andrew Trickc01b0042013-08-23 17:48:43 +00002847 return;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002848 }
2849
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002850 // Prefer immediate defs/users of the last scheduled instruction. This is a
Andrew Trickf78e7fa2013-06-15 05:39:19 +00002851 // local pressure avoidance strategy that also makes the machine code
2852 // readable.
Andrew Trickfc127d12013-12-07 05:59:44 +00002853 if (tryGreater(Zone.isNextSU(TryCand.SU), Zone.isNextSU(Cand.SU),
Andrew Tricka7714a02012-11-12 19:40:10 +00002854 TryCand, Cand, NextDefUse))
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002855 return;
Andrew Tricka7714a02012-11-12 19:40:10 +00002856
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002857 // Fall through to original instruction order.
2858 if ((Zone.isTop() && TryCand.SU->NodeNum < Cand.SU->NodeNum)
2859 || (!Zone.isTop() && TryCand.SU->NodeNum > Cand.SU->NodeNum)) {
2860 TryCand.Reason = NodeOrder;
2861 }
2862}
Andrew Trick419eae22012-05-10 21:06:19 +00002863
Andrew Trickc573cd92013-09-06 17:32:44 +00002864/// Pick the best candidate from the queue.
Andrew Trick7ee9de52012-05-10 21:06:16 +00002865///
2866/// TODO: getMaxPressureDelta results can be mostly cached for each SUnit during
2867/// DAG building. To adjust for the current scheduling location we need to
2868/// maintain the number of vreg uses remaining to be top-scheduled.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002869void GenericScheduler::pickNodeFromQueue(SchedBoundary &Zone,
Andrew Trickbb1247b2013-12-05 17:55:47 +00002870 const RegPressureTracker &RPTracker,
2871 SchedCandidate &Cand) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002872 ReadyQueue &Q = Zone.Available;
2873
Andrew Tricka8ad5f72012-05-24 22:11:12 +00002874 DEBUG(Q.dump());
Andrew Trick22025772012-05-17 18:35:10 +00002875
Andrew Trick7ee9de52012-05-10 21:06:16 +00002876 // getMaxPressureDelta temporarily modifies the tracker.
2877 RegPressureTracker &TempTracker = const_cast<RegPressureTracker&>(RPTracker);
2878
Andrew Trickdd375dd2012-05-24 22:11:03 +00002879 for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) {
Andrew Trick7ee9de52012-05-10 21:06:16 +00002880
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002881 SchedCandidate TryCand(Cand.Policy);
2882 TryCand.SU = *I;
2883 tryCandidate(Cand, TryCand, Zone, RPTracker, TempTracker);
2884 if (TryCand.Reason != NoCand) {
2885 // Initialize resource delta if needed in case future heuristics query it.
2886 if (TryCand.ResDelta == SchedResourceDelta())
2887 TryCand.initResourceDelta(DAG, SchedModel);
2888 Cand.setBest(TryCand);
Andrew Trick419d4912013-04-05 00:31:29 +00002889 DEBUG(traceCandidate(Cand));
Andrew Trick22025772012-05-17 18:35:10 +00002890 }
Andrew Trick7ee9de52012-05-10 21:06:16 +00002891 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002892}
2893
Andrew Trick22025772012-05-17 18:35:10 +00002894/// Pick the best candidate node from either the top or bottom queue.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002895SUnit *GenericScheduler::pickNodeBidirectional(bool &IsTopNode) {
Andrew Trick22025772012-05-17 18:35:10 +00002896 // Schedule as far as possible in the direction of no choice. This is most
2897 // efficient, but also provides the best heuristics for CriticalPSets.
Andrew Trick61f1a272012-05-24 22:11:09 +00002898 if (SUnit *SU = Bot.pickOnlyChoice()) {
Andrew Trick22025772012-05-17 18:35:10 +00002899 IsTopNode = false;
Matthias Braun3b099db2015-11-13 22:30:29 +00002900 DEBUG(dbgs() << "Pick Bot ONLY1\n");
Andrew Trick61f1a272012-05-24 22:11:09 +00002901 return SU;
Andrew Trick22025772012-05-17 18:35:10 +00002902 }
Andrew Trick61f1a272012-05-24 22:11:09 +00002903 if (SUnit *SU = Top.pickOnlyChoice()) {
Andrew Trick22025772012-05-17 18:35:10 +00002904 IsTopNode = true;
Matthias Braun3b099db2015-11-13 22:30:29 +00002905 DEBUG(dbgs() << "Pick Top ONLY1\n");
Andrew Trick61f1a272012-05-24 22:11:09 +00002906 return SU;
Andrew Trick22025772012-05-17 18:35:10 +00002907 }
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002908 CandPolicy NoPolicy;
2909 SchedCandidate BotCand(NoPolicy);
2910 SchedCandidate TopCand(NoPolicy);
Andrew Trickfc127d12013-12-07 05:59:44 +00002911 // Set the bottom-up policy based on the state of the current bottom zone and
2912 // the instructions outside the zone, including the top zone.
Andrew Trickd14d7c22013-12-28 21:56:57 +00002913 setPolicy(BotCand.Policy, /*IsPostRA=*/false, Bot, &Top);
Andrew Trickfc127d12013-12-07 05:59:44 +00002914 // Set the top-down policy based on the state of the current top zone and
2915 // the instructions outside the zone, including the bottom zone.
Andrew Trickd14d7c22013-12-28 21:56:57 +00002916 setPolicy(TopCand.Policy, /*IsPostRA=*/false, Top, &Bot);
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002917
Andrew Trick22025772012-05-17 18:35:10 +00002918 // Prefer bottom scheduling when heuristics are silent.
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002919 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand);
2920 assert(BotCand.Reason != NoCand && "failed to find the first candidate");
Andrew Trick22025772012-05-17 18:35:10 +00002921
2922 // If either Q has a single candidate that provides the least increase in
2923 // Excess pressure, we can immediately schedule from that Q.
2924 //
2925 // RegionCriticalPSets summarizes the pressure within the scheduled region and
2926 // affects picking from either Q. If scheduling in one direction must
2927 // increase pressure for one of the excess PSets, then schedule in that
2928 // direction first to provide more freedom in the other direction.
Andrew Trickd40d0f22013-06-17 21:45:05 +00002929 if ((BotCand.Reason == RegExcess && !BotCand.isRepeat(RegExcess))
2930 || (BotCand.Reason == RegCritical
2931 && !BotCand.isRepeat(RegCritical)))
2932 {
Andrew Trick22025772012-05-17 18:35:10 +00002933 IsTopNode = false;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002934 tracePick(BotCand, IsTopNode);
Andrew Trick61f1a272012-05-24 22:11:09 +00002935 return BotCand.SU;
Andrew Trick22025772012-05-17 18:35:10 +00002936 }
2937 // Check if the top Q has a better candidate.
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002938 pickNodeFromQueue(Top, DAG->getTopRPTracker(), TopCand);
2939 assert(TopCand.Reason != NoCand && "failed to find the first candidate");
Andrew Trick22025772012-05-17 18:35:10 +00002940
Andrew Trickd40d0f22013-06-17 21:45:05 +00002941 // Choose the queue with the most important (lowest enum) reason.
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002942 if (TopCand.Reason < BotCand.Reason) {
2943 IsTopNode = true;
2944 tracePick(TopCand, IsTopNode);
2945 return TopCand.SU;
2946 }
Andrew Trickd40d0f22013-06-17 21:45:05 +00002947 // Otherwise prefer the bottom candidate, in node order if all else failed.
Andrew Trick22025772012-05-17 18:35:10 +00002948 IsTopNode = false;
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002949 tracePick(BotCand, IsTopNode);
Andrew Trick61f1a272012-05-24 22:11:09 +00002950 return BotCand.SU;
Andrew Trick22025772012-05-17 18:35:10 +00002951}
2952
2953/// Pick the best node to balance the schedule. Implements MachineSchedStrategy.
Andrew Trick665d3ec2013-09-19 23:10:59 +00002954SUnit *GenericScheduler::pickNode(bool &IsTopNode) {
Andrew Trick7ee9de52012-05-10 21:06:16 +00002955 if (DAG->top() == DAG->bottom()) {
Andrew Trick61f1a272012-05-24 22:11:09 +00002956 assert(Top.Available.empty() && Top.Pending.empty() &&
2957 Bot.Available.empty() && Bot.Pending.empty() && "ReadyQ garbage");
Craig Topperc0196b12014-04-14 00:51:57 +00002958 return nullptr;
Andrew Trick7ee9de52012-05-10 21:06:16 +00002959 }
Andrew Trick7ee9de52012-05-10 21:06:16 +00002960 SUnit *SU;
Andrew Trick984d98b2012-10-08 18:53:53 +00002961 do {
Andrew Trick75e411c2013-09-06 17:32:34 +00002962 if (RegionPolicy.OnlyTopDown) {
Andrew Trick984d98b2012-10-08 18:53:53 +00002963 SU = Top.pickOnlyChoice();
2964 if (!SU) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002965 CandPolicy NoPolicy;
2966 SchedCandidate TopCand(NoPolicy);
2967 pickNodeFromQueue(Top, DAG->getTopRPTracker(), TopCand);
Andrew Trick1ab16d92013-09-04 21:00:13 +00002968 assert(TopCand.Reason != NoCand && "failed to find a candidate");
Andrew Trickef54c592013-09-04 21:00:16 +00002969 tracePick(TopCand, true);
Andrew Trick984d98b2012-10-08 18:53:53 +00002970 SU = TopCand.SU;
2971 }
2972 IsTopNode = true;
Andrew Tricka306a8a2012-05-24 23:11:17 +00002973 }
Andrew Trick75e411c2013-09-06 17:32:34 +00002974 else if (RegionPolicy.OnlyBottomUp) {
Andrew Trick984d98b2012-10-08 18:53:53 +00002975 SU = Bot.pickOnlyChoice();
2976 if (!SU) {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002977 CandPolicy NoPolicy;
2978 SchedCandidate BotCand(NoPolicy);
2979 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand);
Andrew Trick1ab16d92013-09-04 21:00:13 +00002980 assert(BotCand.Reason != NoCand && "failed to find a candidate");
Andrew Trickef54c592013-09-04 21:00:16 +00002981 tracePick(BotCand, false);
Andrew Trick984d98b2012-10-08 18:53:53 +00002982 SU = BotCand.SU;
2983 }
2984 IsTopNode = false;
Andrew Tricka306a8a2012-05-24 23:11:17 +00002985 }
Andrew Trick984d98b2012-10-08 18:53:53 +00002986 else {
Andrew Trick3ca33ac2012-11-07 07:05:09 +00002987 SU = pickNodeBidirectional(IsTopNode);
Andrew Trick984d98b2012-10-08 18:53:53 +00002988 }
2989 } while (SU->isScheduled);
2990
Andrew Trick61f1a272012-05-24 22:11:09 +00002991 if (SU->isTopReady())
2992 Top.removeReady(SU);
2993 if (SU->isBottomReady())
2994 Bot.removeReady(SU);
Andrew Trick4e7f6a72012-05-25 02:02:39 +00002995
Andrew Trick1f0bb692013-04-13 06:07:49 +00002996 DEBUG(dbgs() << "Scheduling SU(" << SU->NodeNum << ") " << *SU->getInstr());
Andrew Trick7ee9de52012-05-10 21:06:16 +00002997 return SU;
2998}
2999
Andrew Trick665d3ec2013-09-19 23:10:59 +00003000void GenericScheduler::reschedulePhysRegCopies(SUnit *SU, bool isTop) {
Andrew Tricke833e1c2013-04-13 06:07:40 +00003001
3002 MachineBasicBlock::iterator InsertPos = SU->getInstr();
3003 if (!isTop)
3004 ++InsertPos;
3005 SmallVectorImpl<SDep> &Deps = isTop ? SU->Preds : SU->Succs;
3006
3007 // Find already scheduled copies with a single physreg dependence and move
3008 // them just above the scheduled instruction.
3009 for (SmallVectorImpl<SDep>::iterator I = Deps.begin(), E = Deps.end();
3010 I != E; ++I) {
3011 if (I->getKind() != SDep::Data || !TRI->isPhysicalRegister(I->getReg()))
3012 continue;
3013 SUnit *DepSU = I->getSUnit();
3014 if (isTop ? DepSU->Succs.size() > 1 : DepSU->Preds.size() > 1)
3015 continue;
3016 MachineInstr *Copy = DepSU->getInstr();
3017 if (!Copy->isCopy())
3018 continue;
3019 DEBUG(dbgs() << " Rescheduling physreg copy ";
3020 I->getSUnit()->dump(DAG));
3021 DAG->moveInstruction(Copy, InsertPos);
3022 }
3023}
3024
Andrew Trick61f1a272012-05-24 22:11:09 +00003025/// Update the scheduler's state after scheduling a node. This is the same node
Andrew Trickd14d7c22013-12-28 21:56:57 +00003026/// that was just returned by pickNode(). However, ScheduleDAGMILive needs to
3027/// update it's state based on the current cycle before MachineSchedStrategy
3028/// does.
Andrew Tricke833e1c2013-04-13 06:07:40 +00003029///
3030/// FIXME: Eventually, we may bundle physreg copies rather than rescheduling
3031/// them here. See comments in biasPhysRegCopy.
Andrew Trick665d3ec2013-09-19 23:10:59 +00003032void GenericScheduler::schedNode(SUnit *SU, bool IsTopNode) {
Andrew Trick45446062012-06-05 21:11:27 +00003033 if (IsTopNode) {
Andrew Trickfc127d12013-12-07 05:59:44 +00003034 SU->TopReadyCycle = std::max(SU->TopReadyCycle, Top.getCurrCycle());
Andrew Trickce27bb92012-06-29 03:23:22 +00003035 Top.bumpNode(SU);
Andrew Tricke833e1c2013-04-13 06:07:40 +00003036 if (SU->hasPhysRegUses)
3037 reschedulePhysRegCopies(SU, true);
Andrew Trick61f1a272012-05-24 22:11:09 +00003038 }
Andrew Trick45446062012-06-05 21:11:27 +00003039 else {
Andrew Trickfc127d12013-12-07 05:59:44 +00003040 SU->BotReadyCycle = std::max(SU->BotReadyCycle, Bot.getCurrCycle());
Andrew Trickce27bb92012-06-29 03:23:22 +00003041 Bot.bumpNode(SU);
Andrew Tricke833e1c2013-04-13 06:07:40 +00003042 if (SU->hasPhysRegDefs)
3043 reschedulePhysRegCopies(SU, false);
Andrew Trick61f1a272012-05-24 22:11:09 +00003044 }
3045}
3046
Andrew Trick8823dec2012-03-14 04:00:41 +00003047/// Create the standard converging machine scheduler. This will be used as the
3048/// default scheduler if the target does not set a default.
Andrew Trickd14d7c22013-12-28 21:56:57 +00003049static ScheduleDAGInstrs *createGenericSchedLive(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003050 ScheduleDAGMILive *DAG = new ScheduleDAGMILive(C, make_unique<GenericScheduler>(C));
Andrew Tricka7714a02012-11-12 19:40:10 +00003051 // Register DAG post-processors.
Andrew Trick85a1d4c2013-04-24 15:54:43 +00003052 //
3053 // FIXME: extend the mutation API to allow earlier mutations to instantiate
3054 // data and pass it to later mutations. Have a single mutation that gathers
3055 // the interesting nodes in one pass.
David Blaikie422b93d2014-04-21 20:32:32 +00003056 DAG->addMutation(make_unique<CopyConstrain>(DAG->TII, DAG->TRI));
Andrew Tricka6e87772013-09-04 21:00:08 +00003057 if (EnableLoadCluster && DAG->TII->enableClusterLoads())
David Blaikie422b93d2014-04-21 20:32:32 +00003058 DAG->addMutation(make_unique<LoadClusterMutation>(DAG->TII, DAG->TRI));
Andrew Trick263280242012-11-12 19:52:20 +00003059 if (EnableMacroFusion)
Matthias Braun2bd6dd82015-07-20 22:34:44 +00003060 DAG->addMutation(make_unique<MacroFusion>(*DAG->TII, *DAG->TRI));
Andrew Tricka7714a02012-11-12 19:40:10 +00003061 return DAG;
Andrew Tricke1c034f2012-01-17 06:55:03 +00003062}
Andrew Trickd14d7c22013-12-28 21:56:57 +00003063
Andrew Tricke1c034f2012-01-17 06:55:03 +00003064static MachineSchedRegistry
Andrew Trick665d3ec2013-09-19 23:10:59 +00003065GenericSchedRegistry("converge", "Standard converging scheduler.",
Andrew Trickd14d7c22013-12-28 21:56:57 +00003066 createGenericSchedLive);
3067
3068//===----------------------------------------------------------------------===//
3069// PostGenericScheduler - Generic PostRA implementation of MachineSchedStrategy.
3070//===----------------------------------------------------------------------===//
3071
Andrew Trick3ccf71d2014-06-04 07:06:18 +00003072void PostGenericScheduler::initialize(ScheduleDAGMI *Dag) {
3073 DAG = Dag;
3074 SchedModel = DAG->getSchedModel();
3075 TRI = DAG->TRI;
Andrew Trickd14d7c22013-12-28 21:56:57 +00003076
Andrew Trick3ccf71d2014-06-04 07:06:18 +00003077 Rem.init(DAG, SchedModel);
3078 Top.init(DAG, SchedModel, &Rem);
3079 BotRoots.clear();
Andrew Trickd14d7c22013-12-28 21:56:57 +00003080
Andrew Trick3ccf71d2014-06-04 07:06:18 +00003081 // Initialize the HazardRecognizers. If itineraries don't exist, are empty,
3082 // or are disabled, then these HazardRecs will be disabled.
3083 const InstrItineraryData *Itin = SchedModel->getInstrItineraries();
Andrew Trick3ccf71d2014-06-04 07:06:18 +00003084 if (!Top.HazardRec) {
3085 Top.HazardRec =
Eric Christopher99556d72014-10-14 06:56:25 +00003086 DAG->MF.getSubtarget().getInstrInfo()->CreateTargetMIHazardRecognizer(
Eric Christopherd9134482014-08-04 21:25:23 +00003087 Itin, DAG);
Andrew Trickd14d7c22013-12-28 21:56:57 +00003088 }
Andrew Trick3ccf71d2014-06-04 07:06:18 +00003089}
Andrew Trickd14d7c22013-12-28 21:56:57 +00003090
Andrew Trickd14d7c22013-12-28 21:56:57 +00003091
3092void PostGenericScheduler::registerRoots() {
3093 Rem.CriticalPath = DAG->ExitSU.getDepth();
3094
3095 // Some roots may not feed into ExitSU. Check all of them in case.
3096 for (SmallVectorImpl<SUnit*>::const_iterator
3097 I = BotRoots.begin(), E = BotRoots.end(); I != E; ++I) {
3098 if ((*I)->getDepth() > Rem.CriticalPath)
3099 Rem.CriticalPath = (*I)->getDepth();
3100 }
Gerolf Hoflehnerb5220dc2014-08-07 21:49:44 +00003101 DEBUG(dbgs() << "Critical Path: (PGS-RR) " << Rem.CriticalPath << '\n');
3102 if (DumpCriticalPathLength) {
3103 errs() << "Critical Path(PGS-RR ): " << Rem.CriticalPath << " \n";
3104 }
Andrew Trickd14d7c22013-12-28 21:56:57 +00003105}
3106
3107/// Apply a set of heursitics to a new candidate for PostRA scheduling.
3108///
3109/// \param Cand provides the policy and current best candidate.
3110/// \param TryCand refers to the next SUnit candidate, otherwise uninitialized.
3111void PostGenericScheduler::tryCandidate(SchedCandidate &Cand,
3112 SchedCandidate &TryCand) {
3113
3114 // Initialize the candidate if needed.
3115 if (!Cand.isValid()) {
3116 TryCand.Reason = NodeOrder;
3117 return;
3118 }
3119
3120 // Prioritize instructions that read unbuffered resources by stall cycles.
3121 if (tryLess(Top.getLatencyStallCycles(TryCand.SU),
3122 Top.getLatencyStallCycles(Cand.SU), TryCand, Cand, Stall))
3123 return;
3124
3125 // Avoid critical resource consumption and balance the schedule.
3126 if (tryLess(TryCand.ResDelta.CritResources, Cand.ResDelta.CritResources,
3127 TryCand, Cand, ResourceReduce))
3128 return;
3129 if (tryGreater(TryCand.ResDelta.DemandedResources,
3130 Cand.ResDelta.DemandedResources,
3131 TryCand, Cand, ResourceDemand))
3132 return;
3133
3134 // Avoid serializing long latency dependence chains.
3135 if (Cand.Policy.ReduceLatency && tryLatency(TryCand, Cand, Top)) {
3136 return;
3137 }
3138
3139 // Fall through to original instruction order.
3140 if (TryCand.SU->NodeNum < Cand.SU->NodeNum)
3141 TryCand.Reason = NodeOrder;
3142}
3143
3144void PostGenericScheduler::pickNodeFromQueue(SchedCandidate &Cand) {
3145 ReadyQueue &Q = Top.Available;
3146
3147 DEBUG(Q.dump());
3148
3149 for (ReadyQueue::iterator I = Q.begin(), E = Q.end(); I != E; ++I) {
3150 SchedCandidate TryCand(Cand.Policy);
3151 TryCand.SU = *I;
3152 TryCand.initResourceDelta(DAG, SchedModel);
3153 tryCandidate(Cand, TryCand);
3154 if (TryCand.Reason != NoCand) {
3155 Cand.setBest(TryCand);
3156 DEBUG(traceCandidate(Cand));
3157 }
3158 }
3159}
3160
3161/// Pick the next node to schedule.
3162SUnit *PostGenericScheduler::pickNode(bool &IsTopNode) {
3163 if (DAG->top() == DAG->bottom()) {
3164 assert(Top.Available.empty() && Top.Pending.empty() && "ReadyQ garbage");
Craig Topperc0196b12014-04-14 00:51:57 +00003165 return nullptr;
Andrew Trickd14d7c22013-12-28 21:56:57 +00003166 }
3167 SUnit *SU;
3168 do {
3169 SU = Top.pickOnlyChoice();
3170 if (!SU) {
3171 CandPolicy NoPolicy;
3172 SchedCandidate TopCand(NoPolicy);
3173 // Set the top-down policy based on the state of the current top zone and
3174 // the instructions outside the zone, including the bottom zone.
Craig Topperc0196b12014-04-14 00:51:57 +00003175 setPolicy(TopCand.Policy, /*IsPostRA=*/true, Top, nullptr);
Andrew Trickd14d7c22013-12-28 21:56:57 +00003176 pickNodeFromQueue(TopCand);
3177 assert(TopCand.Reason != NoCand && "failed to find a candidate");
3178 tracePick(TopCand, true);
3179 SU = TopCand.SU;
3180 }
3181 } while (SU->isScheduled);
3182
3183 IsTopNode = true;
3184 Top.removeReady(SU);
3185
3186 DEBUG(dbgs() << "Scheduling SU(" << SU->NodeNum << ") " << *SU->getInstr());
3187 return SU;
3188}
3189
3190/// Called after ScheduleDAGMI has scheduled an instruction and updated
3191/// scheduled/remaining flags in the DAG nodes.
3192void PostGenericScheduler::schedNode(SUnit *SU, bool IsTopNode) {
3193 SU->TopReadyCycle = std::max(SU->TopReadyCycle, Top.getCurrCycle());
3194 Top.bumpNode(SU);
3195}
3196
3197/// Create a generic scheduler with no vreg liveness or DAG mutation passes.
3198static ScheduleDAGInstrs *createGenericSchedPostRA(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003199 return new ScheduleDAGMI(C, make_unique<PostGenericScheduler>(C), /*IsPostRA=*/true);
Andrew Trickd14d7c22013-12-28 21:56:57 +00003200}
Andrew Tricke1c034f2012-01-17 06:55:03 +00003201
3202//===----------------------------------------------------------------------===//
Andrew Trick90f711d2012-10-15 18:02:27 +00003203// ILP Scheduler. Currently for experimental analysis of heuristics.
3204//===----------------------------------------------------------------------===//
3205
3206namespace {
3207/// \brief Order nodes by the ILP metric.
3208struct ILPOrder {
Andrew Trick44f750a2013-01-25 04:01:04 +00003209 const SchedDFSResult *DFSResult;
3210 const BitVector *ScheduledTrees;
Andrew Trick90f711d2012-10-15 18:02:27 +00003211 bool MaximizeILP;
3212
Craig Topperc0196b12014-04-14 00:51:57 +00003213 ILPOrder(bool MaxILP)
3214 : DFSResult(nullptr), ScheduledTrees(nullptr), MaximizeILP(MaxILP) {}
Andrew Trick90f711d2012-10-15 18:02:27 +00003215
3216 /// \brief Apply a less-than relation on node priority.
Andrew Trick48d392e2012-11-28 05:13:28 +00003217 ///
3218 /// (Return true if A comes after B in the Q.)
Andrew Trick90f711d2012-10-15 18:02:27 +00003219 bool operator()(const SUnit *A, const SUnit *B) const {
Andrew Trick48d392e2012-11-28 05:13:28 +00003220 unsigned SchedTreeA = DFSResult->getSubtreeID(A);
3221 unsigned SchedTreeB = DFSResult->getSubtreeID(B);
3222 if (SchedTreeA != SchedTreeB) {
3223 // Unscheduled trees have lower priority.
3224 if (ScheduledTrees->test(SchedTreeA) != ScheduledTrees->test(SchedTreeB))
3225 return ScheduledTrees->test(SchedTreeB);
3226
3227 // Trees with shallower connections have have lower priority.
3228 if (DFSResult->getSubtreeLevel(SchedTreeA)
3229 != DFSResult->getSubtreeLevel(SchedTreeB)) {
3230 return DFSResult->getSubtreeLevel(SchedTreeA)
3231 < DFSResult->getSubtreeLevel(SchedTreeB);
3232 }
3233 }
Andrew Trick90f711d2012-10-15 18:02:27 +00003234 if (MaximizeILP)
Andrew Trick48d392e2012-11-28 05:13:28 +00003235 return DFSResult->getILP(A) < DFSResult->getILP(B);
Andrew Trick90f711d2012-10-15 18:02:27 +00003236 else
Andrew Trick48d392e2012-11-28 05:13:28 +00003237 return DFSResult->getILP(A) > DFSResult->getILP(B);
Andrew Trick90f711d2012-10-15 18:02:27 +00003238 }
3239};
3240
3241/// \brief Schedule based on the ILP metric.
3242class ILPScheduler : public MachineSchedStrategy {
Andrew Trickd7f890e2013-12-28 21:56:47 +00003243 ScheduleDAGMILive *DAG;
Andrew Trick90f711d2012-10-15 18:02:27 +00003244 ILPOrder Cmp;
3245
3246 std::vector<SUnit*> ReadyQ;
3247public:
Craig Topperc0196b12014-04-14 00:51:57 +00003248 ILPScheduler(bool MaximizeILP): DAG(nullptr), Cmp(MaximizeILP) {}
Andrew Trick90f711d2012-10-15 18:02:27 +00003249
Craig Topper4584cd52014-03-07 09:26:03 +00003250 void initialize(ScheduleDAGMI *dag) override {
Andrew Trickd7f890e2013-12-28 21:56:47 +00003251 assert(dag->hasVRegLiveness() && "ILPScheduler needs vreg liveness");
3252 DAG = static_cast<ScheduleDAGMILive*>(dag);
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00003253 DAG->computeDFSResult();
Andrew Trick44f750a2013-01-25 04:01:04 +00003254 Cmp.DFSResult = DAG->getDFSResult();
3255 Cmp.ScheduledTrees = &DAG->getScheduledTrees();
Andrew Trick90f711d2012-10-15 18:02:27 +00003256 ReadyQ.clear();
Andrew Trick90f711d2012-10-15 18:02:27 +00003257 }
3258
Craig Topper4584cd52014-03-07 09:26:03 +00003259 void registerRoots() override {
Benjamin Krameraa598b32012-11-29 14:36:26 +00003260 // Restore the heap in ReadyQ with the updated DFS results.
3261 std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
Andrew Trick90f711d2012-10-15 18:02:27 +00003262 }
3263
3264 /// Implement MachineSchedStrategy interface.
3265 /// -----------------------------------------
3266
Andrew Trick48d392e2012-11-28 05:13:28 +00003267 /// Callback to select the highest priority node from the ready Q.
Craig Topper4584cd52014-03-07 09:26:03 +00003268 SUnit *pickNode(bool &IsTopNode) override {
Craig Topperc0196b12014-04-14 00:51:57 +00003269 if (ReadyQ.empty()) return nullptr;
Matt Arsenault4ab769f2013-03-21 00:57:21 +00003270 std::pop_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
Andrew Trick90f711d2012-10-15 18:02:27 +00003271 SUnit *SU = ReadyQ.back();
3272 ReadyQ.pop_back();
3273 IsTopNode = false;
Andrew Trick1f0bb692013-04-13 06:07:49 +00003274 DEBUG(dbgs() << "Pick node " << "SU(" << SU->NodeNum << ") "
Andrew Trick44f750a2013-01-25 04:01:04 +00003275 << " ILP: " << DAG->getDFSResult()->getILP(SU)
3276 << " Tree: " << DAG->getDFSResult()->getSubtreeID(SU) << " @"
3277 << DAG->getDFSResult()->getSubtreeLevel(
Andrew Trick1f0bb692013-04-13 06:07:49 +00003278 DAG->getDFSResult()->getSubtreeID(SU)) << '\n'
3279 << "Scheduling " << *SU->getInstr());
Andrew Trick90f711d2012-10-15 18:02:27 +00003280 return SU;
3281 }
3282
Andrew Trick44f750a2013-01-25 04:01:04 +00003283 /// \brief Scheduler callback to notify that a new subtree is scheduled.
Craig Topper4584cd52014-03-07 09:26:03 +00003284 void scheduleTree(unsigned SubtreeID) override {
Andrew Trick44f750a2013-01-25 04:01:04 +00003285 std::make_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
3286 }
3287
Andrew Trick48d392e2012-11-28 05:13:28 +00003288 /// Callback after a node is scheduled. Mark a newly scheduled tree, notify
3289 /// DFSResults, and resort the priority Q.
Craig Topper4584cd52014-03-07 09:26:03 +00003290 void schedNode(SUnit *SU, bool IsTopNode) override {
Andrew Trick48d392e2012-11-28 05:13:28 +00003291 assert(!IsTopNode && "SchedDFSResult needs bottom-up");
Andrew Trick48d392e2012-11-28 05:13:28 +00003292 }
Andrew Trick90f711d2012-10-15 18:02:27 +00003293
Craig Topper4584cd52014-03-07 09:26:03 +00003294 void releaseTopNode(SUnit *) override { /*only called for top roots*/ }
Andrew Trick90f711d2012-10-15 18:02:27 +00003295
Craig Topper4584cd52014-03-07 09:26:03 +00003296 void releaseBottomNode(SUnit *SU) override {
Andrew Trick90f711d2012-10-15 18:02:27 +00003297 ReadyQ.push_back(SU);
3298 std::push_heap(ReadyQ.begin(), ReadyQ.end(), Cmp);
3299 }
3300};
3301} // namespace
3302
3303static ScheduleDAGInstrs *createILPMaxScheduler(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003304 return new ScheduleDAGMILive(C, make_unique<ILPScheduler>(true));
Andrew Trick90f711d2012-10-15 18:02:27 +00003305}
3306static ScheduleDAGInstrs *createILPMinScheduler(MachineSchedContext *C) {
David Blaikie422b93d2014-04-21 20:32:32 +00003307 return new ScheduleDAGMILive(C, make_unique<ILPScheduler>(false));
Andrew Trick90f711d2012-10-15 18:02:27 +00003308}
3309static MachineSchedRegistry ILPMaxRegistry(
3310 "ilpmax", "Schedule bottom-up for max ILP", createILPMaxScheduler);
3311static MachineSchedRegistry ILPMinRegistry(
3312 "ilpmin", "Schedule bottom-up for min ILP", createILPMinScheduler);
3313
3314//===----------------------------------------------------------------------===//
Andrew Trick63440872012-01-14 02:17:06 +00003315// Machine Instruction Shuffler for Correctness Testing
3316//===----------------------------------------------------------------------===//
3317
Andrew Tricke77e84e2012-01-13 06:30:30 +00003318#ifndef NDEBUG
3319namespace {
Andrew Trick8823dec2012-03-14 04:00:41 +00003320/// Apply a less-than relation on the node order, which corresponds to the
3321/// instruction order prior to scheduling. IsReverse implements greater-than.
3322template<bool IsReverse>
3323struct SUnitOrder {
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003324 bool operator()(SUnit *A, SUnit *B) const {
Andrew Trick8823dec2012-03-14 04:00:41 +00003325 if (IsReverse)
3326 return A->NodeNum > B->NodeNum;
3327 else
3328 return A->NodeNum < B->NodeNum;
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003329 }
3330};
3331
Andrew Tricke77e84e2012-01-13 06:30:30 +00003332/// Reorder instructions as much as possible.
Andrew Trick8823dec2012-03-14 04:00:41 +00003333class InstructionShuffler : public MachineSchedStrategy {
3334 bool IsAlternating;
3335 bool IsTopDown;
3336
3337 // Using a less-than relation (SUnitOrder<false>) for the TopQ priority
3338 // gives nodes with a higher number higher priority causing the latest
3339 // instructions to be scheduled first.
3340 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<false> >
3341 TopQ;
3342 // When scheduling bottom-up, use greater-than as the queue priority.
3343 PriorityQueue<SUnit*, std::vector<SUnit*>, SUnitOrder<true> >
3344 BottomQ;
Andrew Tricke77e84e2012-01-13 06:30:30 +00003345public:
Andrew Trick8823dec2012-03-14 04:00:41 +00003346 InstructionShuffler(bool alternate, bool topdown)
3347 : IsAlternating(alternate), IsTopDown(topdown) {}
Andrew Tricke77e84e2012-01-13 06:30:30 +00003348
Craig Topper9d74a5a2014-04-29 07:58:41 +00003349 void initialize(ScheduleDAGMI*) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003350 TopQ.clear();
3351 BottomQ.clear();
3352 }
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003353
Andrew Trick8823dec2012-03-14 04:00:41 +00003354 /// Implement MachineSchedStrategy interface.
3355 /// -----------------------------------------
3356
Craig Topper9d74a5a2014-04-29 07:58:41 +00003357 SUnit *pickNode(bool &IsTopNode) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003358 SUnit *SU;
3359 if (IsTopDown) {
3360 do {
Craig Topperc0196b12014-04-14 00:51:57 +00003361 if (TopQ.empty()) return nullptr;
Andrew Trick8823dec2012-03-14 04:00:41 +00003362 SU = TopQ.top();
3363 TopQ.pop();
3364 } while (SU->isScheduled);
3365 IsTopNode = true;
3366 }
3367 else {
3368 do {
Craig Topperc0196b12014-04-14 00:51:57 +00003369 if (BottomQ.empty()) return nullptr;
Andrew Trick8823dec2012-03-14 04:00:41 +00003370 SU = BottomQ.top();
3371 BottomQ.pop();
3372 } while (SU->isScheduled);
3373 IsTopNode = false;
3374 }
3375 if (IsAlternating)
3376 IsTopDown = !IsTopDown;
Andrew Trick7ccdc5c2012-01-17 06:55:07 +00003377 return SU;
3378 }
3379
Craig Topper9d74a5a2014-04-29 07:58:41 +00003380 void schedNode(SUnit *SU, bool IsTopNode) override {}
Andrew Trick61f1a272012-05-24 22:11:09 +00003381
Craig Topper9d74a5a2014-04-29 07:58:41 +00003382 void releaseTopNode(SUnit *SU) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003383 TopQ.push(SU);
3384 }
Craig Topper9d74a5a2014-04-29 07:58:41 +00003385 void releaseBottomNode(SUnit *SU) override {
Andrew Trick8823dec2012-03-14 04:00:41 +00003386 BottomQ.push(SU);
Andrew Tricke77e84e2012-01-13 06:30:30 +00003387 }
3388};
3389} // namespace
3390
Andrew Trick02a80da2012-03-08 01:41:12 +00003391static ScheduleDAGInstrs *createInstructionShuffler(MachineSchedContext *C) {
Andrew Trick8823dec2012-03-14 04:00:41 +00003392 bool Alternate = !ForceTopDown && !ForceBottomUp;
3393 bool TopDown = !ForceBottomUp;
Benjamin Kramer05e7a842012-03-14 11:26:37 +00003394 assert((TopDown || !ForceTopDown) &&
Andrew Trick8823dec2012-03-14 04:00:41 +00003395 "-misched-topdown incompatible with -misched-bottomup");
David Blaikie422b93d2014-04-21 20:32:32 +00003396 return new ScheduleDAGMILive(C, make_unique<InstructionShuffler>(Alternate, TopDown));
Andrew Tricke77e84e2012-01-13 06:30:30 +00003397}
Andrew Trick8823dec2012-03-14 04:00:41 +00003398static MachineSchedRegistry ShufflerRegistry(
3399 "shuffle", "Shuffle machine instructions alternating directions",
3400 createInstructionShuffler);
Andrew Tricke77e84e2012-01-13 06:30:30 +00003401#endif // !NDEBUG
Andrew Trickea9fd952013-01-25 07:45:29 +00003402
3403//===----------------------------------------------------------------------===//
Andrew Trickd7f890e2013-12-28 21:56:47 +00003404// GraphWriter support for ScheduleDAGMILive.
Andrew Trickea9fd952013-01-25 07:45:29 +00003405//===----------------------------------------------------------------------===//
3406
3407#ifndef NDEBUG
3408namespace llvm {
3409
3410template<> struct GraphTraits<
3411 ScheduleDAGMI*> : public GraphTraits<ScheduleDAG*> {};
3412
3413template<>
3414struct DOTGraphTraits<ScheduleDAGMI*> : public DefaultDOTGraphTraits {
3415
3416 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
3417
3418 static std::string getGraphName(const ScheduleDAG *G) {
3419 return G->MF.getName();
3420 }
3421
3422 static bool renderGraphFromBottomUp() {
3423 return true;
3424 }
3425
3426 static bool isNodeHidden(const SUnit *Node) {
Matthias Braund78ee542015-09-17 21:09:59 +00003427 if (ViewMISchedCutoff == 0)
3428 return false;
3429 return (Node->Preds.size() > ViewMISchedCutoff
3430 || Node->Succs.size() > ViewMISchedCutoff);
Andrew Trickea9fd952013-01-25 07:45:29 +00003431 }
3432
Andrew Trickea9fd952013-01-25 07:45:29 +00003433 /// If you want to override the dot attributes printed for a particular
3434 /// edge, override this method.
3435 static std::string getEdgeAttributes(const SUnit *Node,
3436 SUnitIterator EI,
3437 const ScheduleDAG *Graph) {
3438 if (EI.isArtificialDep())
3439 return "color=cyan,style=dashed";
3440 if (EI.isCtrlDep())
3441 return "color=blue,style=dashed";
3442 return "";
3443 }
3444
3445 static std::string getNodeLabel(const SUnit *SU, const ScheduleDAG *G) {
Alp Tokere69170a2014-06-26 22:52:05 +00003446 std::string Str;
3447 raw_string_ostream SS(Str);
Andrew Trickd7f890e2013-12-28 21:56:47 +00003448 const ScheduleDAGMI *DAG = static_cast<const ScheduleDAGMI*>(G);
3449 const SchedDFSResult *DFS = DAG->hasVRegLiveness() ?
Craig Topperc0196b12014-04-14 00:51:57 +00003450 static_cast<const ScheduleDAGMILive*>(G)->getDFSResult() : nullptr;
Andrew Trick7609b7d2013-09-06 17:32:42 +00003451 SS << "SU:" << SU->NodeNum;
3452 if (DFS)
3453 SS << " I:" << DFS->getNumInstrs(SU);
Andrew Trickea9fd952013-01-25 07:45:29 +00003454 return SS.str();
3455 }
3456 static std::string getNodeDescription(const SUnit *SU, const ScheduleDAG *G) {
3457 return G->getGraphNodeLabel(SU);
3458 }
3459
Andrew Trickd7f890e2013-12-28 21:56:47 +00003460 static std::string getNodeAttributes(const SUnit *N, const ScheduleDAG *G) {
Andrew Trickea9fd952013-01-25 07:45:29 +00003461 std::string Str("shape=Mrecord");
Andrew Trickd7f890e2013-12-28 21:56:47 +00003462 const ScheduleDAGMI *DAG = static_cast<const ScheduleDAGMI*>(G);
3463 const SchedDFSResult *DFS = DAG->hasVRegLiveness() ?
Craig Topperc0196b12014-04-14 00:51:57 +00003464 static_cast<const ScheduleDAGMILive*>(G)->getDFSResult() : nullptr;
Andrew Trickea9fd952013-01-25 07:45:29 +00003465 if (DFS) {
3466 Str += ",style=filled,fillcolor=\"#";
3467 Str += DOT::getColorString(DFS->getSubtreeID(N));
3468 Str += '"';
3469 }
3470 return Str;
3471 }
3472};
3473} // namespace llvm
3474#endif // NDEBUG
3475
3476/// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
3477/// rendered using 'dot'.
3478///
3479void ScheduleDAGMI::viewGraph(const Twine &Name, const Twine &Title) {
3480#ifndef NDEBUG
3481 ViewGraph(this, Name, false, Title);
3482#else
3483 errs() << "ScheduleDAGMI::viewGraph is only available in debug builds on "
3484 << "systems with Graphviz or gv!\n";
3485#endif // NDEBUG
3486}
3487
3488/// Out-of-line implementation with no arguments is handy for gdb.
3489void ScheduleDAGMI::viewGraph() {
3490 viewGraph(getDAGName(), "Scheduling-Units Graph for " + getDAGName());
3491}