blob: 178d993cb2ae4441ef29f246120b85c599f2f967 [file] [log] [blame]
Eugene Zelenkoc8fbf6f2017-08-10 00:46:15 +00001//===- GCNIterativeScheduler.cpp ------------------------------------------===//
Valery Pykhtinfd4c4102017-03-21 13:15:46 +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//===----------------------------------------------------------------------===//
Valery Pykhtinfd4c4102017-03-21 13:15:46 +00009
10#include "GCNIterativeScheduler.h"
Eugene Zelenkoc8fbf6f2017-08-10 00:46:15 +000011#include "AMDGPUSubtarget.h"
12#include "GCNRegPressure.h"
Valery Pykhtinfd4c4102017-03-21 13:15:46 +000013#include "GCNSchedStrategy.h"
Eugene Zelenkoc8fbf6f2017-08-10 00:46:15 +000014#include "llvm/ADT/ArrayRef.h"
15#include "llvm/ADT/STLExtras.h"
16#include "llvm/ADT/SmallVector.h"
Matthias Braunf8422972017-12-13 02:51:04 +000017#include "llvm/CodeGen/LiveIntervals.h"
Eugene Zelenkoc8fbf6f2017-08-10 00:46:15 +000018#include "llvm/CodeGen/MachineBasicBlock.h"
19#include "llvm/CodeGen/MachineFunction.h"
20#include "llvm/CodeGen/RegisterPressure.h"
21#include "llvm/CodeGen/ScheduleDAG.h"
22#include "llvm/Support/Compiler.h"
23#include "llvm/Support/Debug.h"
24#include "llvm/Support/raw_ostream.h"
25#include <algorithm>
26#include <cassert>
27#include <iterator>
28#include <limits>
29#include <memory>
30#include <type_traits>
31#include <vector>
Valery Pykhtinfd4c4102017-03-21 13:15:46 +000032
33using namespace llvm;
34
Evandro Menezes0cd23f562017-07-11 22:08:28 +000035#define DEBUG_TYPE "machine-scheduler"
Valery Pykhtinfd4c4102017-03-21 13:15:46 +000036
37namespace llvm {
Eugene Zelenkoc8fbf6f2017-08-10 00:46:15 +000038
39std::vector<const SUnit *> makeMinRegSchedule(ArrayRef<const SUnit *> TopRoots,
40 const ScheduleDAG &DAG);
41
Valery Pykhtinf2fe9722017-11-20 14:35:53 +000042 std::vector<const SUnit*> makeGCNILPScheduler(ArrayRef<const SUnit*> BotRoots,
43 const ScheduleDAG &DAG);
44}
Valery Pykhtinfd4c4102017-03-21 13:15:46 +000045
46// shim accessors for different order containers
47static inline MachineInstr *getMachineInstr(MachineInstr *MI) {
48 return MI;
49}
50static inline MachineInstr *getMachineInstr(const SUnit *SU) {
51 return SU->getInstr();
52}
53static inline MachineInstr *getMachineInstr(const SUnit &SU) {
54 return SU.getInstr();
55}
56
Aaron Ballman615eb472017-10-15 14:32:27 +000057#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Valery Pykhtinfd4c4102017-03-21 13:15:46 +000058LLVM_DUMP_METHOD
59static void printRegion(raw_ostream &OS,
60 MachineBasicBlock::iterator Begin,
61 MachineBasicBlock::iterator End,
62 const LiveIntervals *LIS,
63 unsigned MaxInstNum =
64 std::numeric_limits<unsigned>::max()) {
65 auto BB = Begin->getParent();
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +000066 OS << BB->getParent()->getName() << ":" << printMBBReference(*BB) << ' '
67 << BB->getName() << ":\n";
Valery Pykhtinfd4c4102017-03-21 13:15:46 +000068 auto I = Begin;
69 MaxInstNum = std::max(MaxInstNum, 1u);
70 for (; I != End && MaxInstNum; ++I, --MaxInstNum) {
71 if (!I->isDebugValue() && LIS)
72 OS << LIS->getInstructionIndex(*I);
73 OS << '\t' << *I;
74 }
75 if (I != End) {
76 OS << "\t...\n";
77 I = std::prev(End);
78 if (!I->isDebugValue() && LIS)
79 OS << LIS->getInstructionIndex(*I);
80 OS << '\t' << *I;
81 }
82 if (End != BB->end()) { // print boundary inst if present
83 OS << "----\n";
84 if (LIS) OS << LIS->getInstructionIndex(*End) << '\t';
85 OS << *End;
86 }
87}
88
89LLVM_DUMP_METHOD
90static void printLivenessInfo(raw_ostream &OS,
91 MachineBasicBlock::iterator Begin,
92 MachineBasicBlock::iterator End,
93 const LiveIntervals *LIS) {
94 const auto BB = Begin->getParent();
95 const auto &MRI = BB->getParent()->getRegInfo();
96
97 const auto LiveIns = getLiveRegsBefore(*Begin, *LIS);
98 OS << "LIn RP: ";
99 getRegPressure(MRI, LiveIns).print(OS);
100
101 const auto BottomMI = End == BB->end() ? std::prev(End) : End;
102 const auto LiveOuts = getLiveRegsAfter(*BottomMI, *LIS);
103 OS << "LOt RP: ";
104 getRegPressure(MRI, LiveOuts).print(OS);
105}
106
107LLVM_DUMP_METHOD
108void GCNIterativeScheduler::printRegions(raw_ostream &OS) const {
109 const auto &ST = MF.getSubtarget<SISubtarget>();
110 for (const auto R : Regions) {
111 OS << "Region to schedule ";
112 printRegion(OS, R->Begin, R->End, LIS, 1);
113 printLivenessInfo(OS, R->Begin, R->End, LIS);
114 OS << "Max RP: ";
115 R->MaxPressure.print(OS, &ST);
116 }
117}
118
119LLVM_DUMP_METHOD
120void GCNIterativeScheduler::printSchedResult(raw_ostream &OS,
121 const Region *R,
122 const GCNRegPressure &RP) const {
123 OS << "\nAfter scheduling ";
124 printRegion(OS, R->Begin, R->End, LIS);
125 printSchedRP(OS, R->MaxPressure, RP);
126 OS << '\n';
127}
128
129LLVM_DUMP_METHOD
130void GCNIterativeScheduler::printSchedRP(raw_ostream &OS,
131 const GCNRegPressure &Before,
132 const GCNRegPressure &After) const {
133 const auto &ST = MF.getSubtarget<SISubtarget>();
134 OS << "RP before: ";
135 Before.print(OS, &ST);
136 OS << "RP after: ";
137 After.print(OS, &ST);
138}
Valery Pykhtinfd4c4102017-03-21 13:15:46 +0000139#endif
140
141// DAG builder helper
142class GCNIterativeScheduler::BuildDAG {
143 GCNIterativeScheduler &Sch;
Eugene Zelenkoc8fbf6f2017-08-10 00:46:15 +0000144 SmallVector<SUnit *, 8> TopRoots;
145
Valery Pykhtinf2fe9722017-11-20 14:35:53 +0000146 SmallVector<SUnit*, 8> BotRoots;
Valery Pykhtinfd4c4102017-03-21 13:15:46 +0000147public:
148 BuildDAG(const Region &R, GCNIterativeScheduler &_Sch)
149 : Sch(_Sch) {
150 auto BB = R.Begin->getParent();
151 Sch.BaseClass::startBlock(BB);
152 Sch.BaseClass::enterRegion(BB, R.Begin, R.End, R.NumRegionInstrs);
153
154 Sch.buildSchedGraph(Sch.AA, nullptr, nullptr, nullptr,
155 /*TrackLaneMask*/true);
156 Sch.Topo.InitDAGTopologicalSorting();
Valery Pykhtinfd4c4102017-03-21 13:15:46 +0000157 Sch.findRootsAndBiasEdges(TopRoots, BotRoots);
158 }
Eugene Zelenkoc8fbf6f2017-08-10 00:46:15 +0000159
Valery Pykhtinfd4c4102017-03-21 13:15:46 +0000160 ~BuildDAG() {
161 Sch.BaseClass::exitRegion();
162 Sch.BaseClass::finishBlock();
163 }
Eugene Zelenkoc8fbf6f2017-08-10 00:46:15 +0000164
165 ArrayRef<const SUnit *> getTopRoots() const {
Valery Pykhtinfd4c4102017-03-21 13:15:46 +0000166 return TopRoots;
167 }
Valery Pykhtinf2fe9722017-11-20 14:35:53 +0000168 ArrayRef<SUnit*> getBottomRoots() const {
169 return BotRoots;
170 }
Valery Pykhtinfd4c4102017-03-21 13:15:46 +0000171};
172
173class GCNIterativeScheduler::OverrideLegacyStrategy {
174 GCNIterativeScheduler &Sch;
175 Region &Rgn;
176 std::unique_ptr<MachineSchedStrategy> SaveSchedImpl;
177 GCNRegPressure SaveMaxRP;
Eugene Zelenkoc8fbf6f2017-08-10 00:46:15 +0000178
Valery Pykhtinfd4c4102017-03-21 13:15:46 +0000179public:
180 OverrideLegacyStrategy(Region &R,
181 MachineSchedStrategy &OverrideStrategy,
182 GCNIterativeScheduler &_Sch)
183 : Sch(_Sch)
184 , Rgn(R)
185 , SaveSchedImpl(std::move(_Sch.SchedImpl))
186 , SaveMaxRP(R.MaxPressure) {
187 Sch.SchedImpl.reset(&OverrideStrategy);
188 auto BB = R.Begin->getParent();
189 Sch.BaseClass::startBlock(BB);
190 Sch.BaseClass::enterRegion(BB, R.Begin, R.End, R.NumRegionInstrs);
191 }
Eugene Zelenkoc8fbf6f2017-08-10 00:46:15 +0000192
Valery Pykhtinfd4c4102017-03-21 13:15:46 +0000193 ~OverrideLegacyStrategy() {
194 Sch.BaseClass::exitRegion();
195 Sch.BaseClass::finishBlock();
196 Sch.SchedImpl.release();
197 Sch.SchedImpl = std::move(SaveSchedImpl);
198 }
Eugene Zelenkoc8fbf6f2017-08-10 00:46:15 +0000199
Valery Pykhtinfd4c4102017-03-21 13:15:46 +0000200 void schedule() {
201 assert(Sch.RegionBegin == Rgn.Begin && Sch.RegionEnd == Rgn.End);
202 DEBUG(dbgs() << "\nScheduling ";
203 printRegion(dbgs(), Rgn.Begin, Rgn.End, Sch.LIS, 2));
204 Sch.BaseClass::schedule();
205
206 // Unfortunatelly placeDebugValues incorrectly modifies RegionEnd, restore
207 Sch.RegionEnd = Rgn.End;
208 //assert(Rgn.End == Sch.RegionEnd);
209 Rgn.Begin = Sch.RegionBegin;
210 Rgn.MaxPressure.clear();
211 }
Eugene Zelenkoc8fbf6f2017-08-10 00:46:15 +0000212
Valery Pykhtinfd4c4102017-03-21 13:15:46 +0000213 void restoreOrder() {
214 assert(Sch.RegionBegin == Rgn.Begin && Sch.RegionEnd == Rgn.End);
215 // DAG SUnits are stored using original region's order
216 // so just use SUnits as the restoring schedule
217 Sch.scheduleRegion(Rgn, Sch.SUnits, SaveMaxRP);
218 }
219};
220
Benjamin Kramerdebb3c32017-05-26 20:09:00 +0000221namespace {
Eugene Zelenkoc8fbf6f2017-08-10 00:46:15 +0000222
Valery Pykhtinfd4c4102017-03-21 13:15:46 +0000223// just a stub to make base class happy
224class SchedStrategyStub : public MachineSchedStrategy {
225public:
226 bool shouldTrackPressure() const override { return false; }
227 bool shouldTrackLaneMasks() const override { return false; }
228 void initialize(ScheduleDAGMI *DAG) override {}
229 SUnit *pickNode(bool &IsTopNode) override { return nullptr; }
230 void schedNode(SUnit *SU, bool IsTopNode) override {}
231 void releaseTopNode(SUnit *SU) override {}
232 void releaseBottomNode(SUnit *SU) override {}
233};
Eugene Zelenkoc8fbf6f2017-08-10 00:46:15 +0000234
235} // end anonymous namespace
Valery Pykhtinfd4c4102017-03-21 13:15:46 +0000236
237GCNIterativeScheduler::GCNIterativeScheduler(MachineSchedContext *C,
238 StrategyKind S)
239 : BaseClass(C, llvm::make_unique<SchedStrategyStub>())
240 , Context(C)
241 , Strategy(S)
242 , UPTracker(*LIS) {
243}
244
245// returns max pressure for a region
246GCNRegPressure
247GCNIterativeScheduler::getRegionPressure(MachineBasicBlock::iterator Begin,
248 MachineBasicBlock::iterator End)
249 const {
250 // For the purpose of pressure tracking bottom inst of the region should
251 // be also processed. End is either BB end, BB terminator inst or sched
252 // boundary inst.
253 auto const BBEnd = Begin->getParent()->end();
254 auto const BottomMI = End == BBEnd ? std::prev(End) : End;
255
256 // scheduleRegions walks bottom to top, so its likely we just get next
257 // instruction to track
258 auto AfterBottomMI = std::next(BottomMI);
259 if (AfterBottomMI == BBEnd ||
260 &*AfterBottomMI != UPTracker.getLastTrackedMI()) {
261 UPTracker.reset(*BottomMI);
262 } else {
263 assert(UPTracker.isValid());
264 }
265
266 for (auto I = BottomMI; I != Begin; --I)
267 UPTracker.recede(*I);
268
269 UPTracker.recede(*Begin);
270
271 assert(UPTracker.isValid() ||
272 (dbgs() << "Tracked region ",
273 printRegion(dbgs(), Begin, End, LIS), false));
274 return UPTracker.moveMaxPressure();
275}
276
277// returns max pressure for a tentative schedule
278template <typename Range> GCNRegPressure
279GCNIterativeScheduler::getSchedulePressure(const Region &R,
280 Range &&Schedule) const {
281 auto const BBEnd = R.Begin->getParent()->end();
282 GCNUpwardRPTracker RPTracker(*LIS);
283 if (R.End != BBEnd) {
284 // R.End points to the boundary instruction but the
285 // schedule doesn't include it
286 RPTracker.reset(*R.End);
287 RPTracker.recede(*R.End);
288 } else {
289 // R.End doesn't point to the boundary instruction
290 RPTracker.reset(*std::prev(BBEnd));
291 }
292 for (auto I = Schedule.end(), B = Schedule.begin(); I != B;) {
293 RPTracker.recede(*getMachineInstr(*--I));
294 }
295 return RPTracker.moveMaxPressure();
296}
297
298void GCNIterativeScheduler::enterRegion(MachineBasicBlock *BB, // overriden
299 MachineBasicBlock::iterator Begin,
300 MachineBasicBlock::iterator End,
301 unsigned NumRegionInstrs) {
302 BaseClass::enterRegion(BB, Begin, End, NumRegionInstrs);
303 if (NumRegionInstrs > 2) {
304 Regions.push_back(
305 new (Alloc.Allocate())
306 Region { Begin, End, NumRegionInstrs,
307 getRegionPressure(Begin, End), nullptr });
308 }
309}
310
311void GCNIterativeScheduler::schedule() { // overriden
312 // do nothing
313 DEBUG(
314 printLivenessInfo(dbgs(), RegionBegin, RegionEnd, LIS);
315 if (!Regions.empty() && Regions.back()->Begin == RegionBegin) {
316 dbgs() << "Max RP: ";
317 Regions.back()->MaxPressure.print(dbgs(), &MF.getSubtarget<SISubtarget>());
318 }
319 dbgs() << '\n';
320 );
321}
322
323void GCNIterativeScheduler::finalizeSchedule() { // overriden
324 if (Regions.empty())
325 return;
326 switch (Strategy) {
327 case SCHEDULE_MINREGONLY: scheduleMinReg(); break;
328 case SCHEDULE_MINREGFORCED: scheduleMinReg(true); break;
329 case SCHEDULE_LEGACYMAXOCCUPANCY: scheduleLegacyMaxOccupancy(); break;
Valery Pykhtinf2fe9722017-11-20 14:35:53 +0000330 case SCHEDULE_ILP: scheduleILP(false); break;
Valery Pykhtinfd4c4102017-03-21 13:15:46 +0000331 }
332}
333
334// Detach schedule from SUnits and interleave it with debug values.
335// Returned schedule becomes independent of DAG state.
336std::vector<MachineInstr*>
337GCNIterativeScheduler::detachSchedule(ScheduleRef Schedule) const {
338 std::vector<MachineInstr*> Res;
339 Res.reserve(Schedule.size() * 2);
340
341 if (FirstDbgValue)
342 Res.push_back(FirstDbgValue);
343
344 const auto DbgB = DbgValues.begin(), DbgE = DbgValues.end();
345 for (auto SU : Schedule) {
346 Res.push_back(SU->getInstr());
347 const auto &D = std::find_if(DbgB, DbgE, [SU](decltype(*DbgB) &P) {
348 return P.second == SU->getInstr();
349 });
350 if (D != DbgE)
351 Res.push_back(D->first);
352 }
353 return Res;
354}
355
356void GCNIterativeScheduler::setBestSchedule(Region &R,
357 ScheduleRef Schedule,
358 const GCNRegPressure &MaxRP) {
359 R.BestSchedule.reset(
360 new TentativeSchedule{ detachSchedule(Schedule), MaxRP });
361}
362
363void GCNIterativeScheduler::scheduleBest(Region &R) {
364 assert(R.BestSchedule.get() && "No schedule specified");
365 scheduleRegion(R, R.BestSchedule->Schedule, R.BestSchedule->MaxPressure);
366 R.BestSchedule.reset();
367}
368
369// minimal required region scheduler, works for ranges of SUnits*,
370// SUnits or MachineIntrs*
371template <typename Range>
372void GCNIterativeScheduler::scheduleRegion(Region &R, Range &&Schedule,
373 const GCNRegPressure &MaxRP) {
374 assert(RegionBegin == R.Begin && RegionEnd == R.End);
375 assert(LIS != nullptr);
376#ifndef NDEBUG
377 const auto SchedMaxRP = getSchedulePressure(R, Schedule);
378#endif
379 auto BB = R.Begin->getParent();
380 auto Top = R.Begin;
381 for (const auto &I : Schedule) {
382 auto MI = getMachineInstr(I);
383 if (MI != &*Top) {
384 BB->remove(MI);
385 BB->insert(Top, MI);
386 if (!MI->isDebugValue())
387 LIS->handleMove(*MI, true);
388 }
389 if (!MI->isDebugValue()) {
390 // Reset read - undef flags and update them later.
391 for (auto &Op : MI->operands())
392 if (Op.isReg() && Op.isDef())
393 Op.setIsUndef(false);
394
395 RegisterOperands RegOpers;
396 RegOpers.collect(*MI, *TRI, MRI, /*ShouldTrackLaneMasks*/true,
397 /*IgnoreDead*/false);
398 // Adjust liveness and add missing dead+read-undef flags.
399 auto SlotIdx = LIS->getInstructionIndex(*MI).getRegSlot();
400 RegOpers.adjustLaneLiveness(*LIS, MRI, SlotIdx, MI);
401 }
402 Top = std::next(MI->getIterator());
403 }
404 RegionBegin = getMachineInstr(Schedule.front());
405
406 // Schedule consisting of MachineInstr* is considered 'detached'
407 // and already interleaved with debug values
408 if (!std::is_same<decltype(*Schedule.begin()), MachineInstr*>::value) {
409 placeDebugValues();
410 // Unfortunatelly placeDebugValues incorrectly modifies RegionEnd, restore
411 //assert(R.End == RegionEnd);
412 RegionEnd = R.End;
413 }
414
415 R.Begin = RegionBegin;
416 R.MaxPressure = MaxRP;
417
418#ifndef NDEBUG
419 const auto RegionMaxRP = getRegionPressure(R);
420 const auto &ST = MF.getSubtarget<SISubtarget>();
421#endif
422 assert((SchedMaxRP == RegionMaxRP && (MaxRP.empty() || SchedMaxRP == MaxRP))
423 || (dbgs() << "Max RP mismatch!!!\n"
424 "RP for schedule (calculated): ",
425 SchedMaxRP.print(dbgs(), &ST),
426 dbgs() << "RP for schedule (reported): ",
427 MaxRP.print(dbgs(), &ST),
428 dbgs() << "RP after scheduling: ",
429 RegionMaxRP.print(dbgs(), &ST),
430 false));
431}
432
433// Sort recorded regions by pressure - highest at the front
434void GCNIterativeScheduler::sortRegionsByPressure(unsigned TargetOcc) {
435 const auto &ST = MF.getSubtarget<SISubtarget>();
436 std::sort(Regions.begin(), Regions.end(),
437 [&ST, TargetOcc](const Region *R1, const Region *R2) {
438 return R2->MaxPressure.less(ST, R1->MaxPressure, TargetOcc);
439 });
440}
441
442///////////////////////////////////////////////////////////////////////////////
443// Legacy MaxOccupancy Strategy
444
445// Tries to increase occupancy applying minreg scheduler for a sequence of
446// most demanding regions. Obtained schedules are saved as BestSchedule for a
447// region.
448// TargetOcc is the best achievable occupancy for a kernel.
449// Returns better occupancy on success or current occupancy on fail.
450// BestSchedules aren't deleted on fail.
451unsigned GCNIterativeScheduler::tryMaximizeOccupancy(unsigned TargetOcc) {
452 // TODO: assert Regions are sorted descending by pressure
453 const auto &ST = MF.getSubtarget<SISubtarget>();
454 const auto Occ = Regions.front()->MaxPressure.getOccupancy(ST);
455 DEBUG(dbgs() << "Trying to to improve occupancy, target = " << TargetOcc
456 << ", current = " << Occ << '\n');
457
458 auto NewOcc = TargetOcc;
459 for (auto R : Regions) {
460 if (R->MaxPressure.getOccupancy(ST) >= NewOcc)
461 break;
462
463 DEBUG(printRegion(dbgs(), R->Begin, R->End, LIS, 3);
464 printLivenessInfo(dbgs(), R->Begin, R->End, LIS));
465
466 BuildDAG DAG(*R, *this);
467 const auto MinSchedule = makeMinRegSchedule(DAG.getTopRoots(), *this);
468 const auto MaxRP = getSchedulePressure(*R, MinSchedule);
469 DEBUG(dbgs() << "Occupancy improvement attempt:\n";
470 printSchedRP(dbgs(), R->MaxPressure, MaxRP));
471
472 NewOcc = std::min(NewOcc, MaxRP.getOccupancy(ST));
473 if (NewOcc <= Occ)
474 break;
475
476 setBestSchedule(*R, MinSchedule, MaxRP);
477 }
478 DEBUG(dbgs() << "New occupancy = " << NewOcc
479 << ", prev occupancy = " << Occ << '\n');
480 return std::max(NewOcc, Occ);
481}
482
483void GCNIterativeScheduler::scheduleLegacyMaxOccupancy(
484 bool TryMaximizeOccupancy) {
485 const auto &ST = MF.getSubtarget<SISubtarget>();
486 auto TgtOcc = ST.getOccupancyWithLocalMemSize(MF);
487
488 sortRegionsByPressure(TgtOcc);
489 auto Occ = Regions.front()->MaxPressure.getOccupancy(ST);
490
491 if (TryMaximizeOccupancy && Occ < TgtOcc)
492 Occ = tryMaximizeOccupancy(TgtOcc);
493
494 // This is really weird but for some magic scheduling regions twice
495 // gives performance improvement
496 const int NumPasses = Occ < TgtOcc ? 2 : 1;
497
498 TgtOcc = std::min(Occ, TgtOcc);
499 DEBUG(dbgs() << "Scheduling using default scheduler, "
500 "target occupancy = " << TgtOcc << '\n');
501 GCNMaxOccupancySchedStrategy LStrgy(Context);
502
503 for (int I = 0; I < NumPasses; ++I) {
504 // running first pass with TargetOccupancy = 0 mimics previous scheduling
505 // approach and is a performance magic
506 LStrgy.setTargetOccupancy(I == 0 ? 0 : TgtOcc);
507 for (auto R : Regions) {
508 OverrideLegacyStrategy Ovr(*R, LStrgy, *this);
509
510 Ovr.schedule();
511 const auto RP = getRegionPressure(*R);
512 DEBUG(printSchedRP(dbgs(), R->MaxPressure, RP));
513
514 if (RP.getOccupancy(ST) < TgtOcc) {
515 DEBUG(dbgs() << "Didn't fit into target occupancy O" << TgtOcc);
516 if (R->BestSchedule.get() &&
517 R->BestSchedule->MaxPressure.getOccupancy(ST) >= TgtOcc) {
518 DEBUG(dbgs() << ", scheduling minimal register\n");
519 scheduleBest(*R);
520 } else {
521 DEBUG(dbgs() << ", restoring\n");
522 Ovr.restoreOrder();
523 assert(R->MaxPressure.getOccupancy(ST) >= TgtOcc);
524 }
525 }
526 }
527 }
528}
529
530///////////////////////////////////////////////////////////////////////////////
531// Minimal Register Strategy
532
533void GCNIterativeScheduler::scheduleMinReg(bool force) {
534 const auto &ST = MF.getSubtarget<SISubtarget>();
535 const auto TgtOcc = ST.getOccupancyWithLocalMemSize(MF);
536 sortRegionsByPressure(TgtOcc);
537
538 auto MaxPressure = Regions.front()->MaxPressure;
539 for (auto R : Regions) {
540 if (!force && R->MaxPressure.less(ST, MaxPressure, TgtOcc))
541 break;
542
543 BuildDAG DAG(*R, *this);
544 const auto MinSchedule = makeMinRegSchedule(DAG.getTopRoots(), *this);
545
546 const auto RP = getSchedulePressure(*R, MinSchedule);
547 DEBUG(if (R->MaxPressure.less(ST, RP, TgtOcc)) {
548 dbgs() << "\nWarning: Pressure becomes worse after minreg!";
549 printSchedRP(dbgs(), R->MaxPressure, RP);
550 });
551
552 if (!force && MaxPressure.less(ST, RP, TgtOcc))
553 break;
554
555 scheduleRegion(*R, MinSchedule, RP);
556 DEBUG(printSchedResult(dbgs(), R, RP));
557
558 MaxPressure = RP;
559 }
560}
Valery Pykhtinf2fe9722017-11-20 14:35:53 +0000561
562///////////////////////////////////////////////////////////////////////////////
563// ILP scheduler port
564
565void GCNIterativeScheduler::scheduleILP(
566 bool TryMaximizeOccupancy) {
567 const auto &ST = MF.getSubtarget<SISubtarget>();
568 auto TgtOcc = std::min(ST.getOccupancyWithLocalMemSize(MF),
569 ST.getWavesPerEU(*MF.getFunction()).second);
570
571 sortRegionsByPressure(TgtOcc);
572 auto Occ = Regions.front()->MaxPressure.getOccupancy(ST);
573
574 if (TryMaximizeOccupancy && Occ < TgtOcc)
575 Occ = tryMaximizeOccupancy(TgtOcc);
576
577 TgtOcc = std::min(Occ, TgtOcc);
578 DEBUG(dbgs() << "Scheduling using default scheduler, "
579 "target occupancy = " << TgtOcc << '\n');
580
581 for (auto R : Regions) {
582 BuildDAG DAG(*R, *this);
583 const auto ILPSchedule = makeGCNILPScheduler(DAG.getBottomRoots(), *this);
584
585 const auto RP = getSchedulePressure(*R, ILPSchedule);
586 DEBUG(printSchedRP(dbgs(), R->MaxPressure, RP));
587
588 if (RP.getOccupancy(ST) < TgtOcc) {
589 DEBUG(dbgs() << "Didn't fit into target occupancy O" << TgtOcc);
590 if (R->BestSchedule.get() &&
591 R->BestSchedule->MaxPressure.getOccupancy(ST) >= TgtOcc) {
592 DEBUG(dbgs() << ", scheduling minimal register\n");
593 scheduleBest(*R);
594 }
595 } else {
596 scheduleRegion(*R, ILPSchedule, RP);
597 DEBUG(printSchedResult(dbgs(), R, RP));
598 }
599 }
600}