1 //===---------------------------- GCNILPSched.cpp - -----------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
13 #include "llvm/CodeGen/ScheduleDAG.h"
17 #define DEBUG_TYPE "machine-scheduler"
21 class GCNILPScheduler
{
22 struct Candidate
: ilist_node
<Candidate
> {
29 SpecificBumpPtrAllocator
<Candidate
> Alloc
;
30 using Queue
= simple_ilist
<Candidate
>;
33 unsigned CurQueueId
= 0;
35 std::vector
<unsigned> SUNumbers
;
37 /// CurCycle - The current scheduler state corresponds to this cycle.
38 unsigned CurCycle
= 0;
40 unsigned getNodePriority(const SUnit
*SU
) const;
42 const SUnit
*pickBest(const SUnit
*left
, const SUnit
*right
);
43 Candidate
* pickCandidate();
45 void releasePending();
46 void advanceToCycle(unsigned NextCycle
);
47 void releasePredecessors(const SUnit
* SU
);
50 std::vector
<const SUnit
*> schedule(ArrayRef
<const SUnit
*> TopRoots
,
51 const ScheduleDAG
&DAG
);
55 /// CalcNodeSethiUllmanNumber - Compute Sethi Ullman number.
56 /// Smaller number is the higher priority.
58 CalcNodeSethiUllmanNumber(const SUnit
*SU
, std::vector
<unsigned> &SUNumbers
) {
59 unsigned &SethiUllmanNumber
= SUNumbers
[SU
->NodeNum
];
60 if (SethiUllmanNumber
!= 0)
61 return SethiUllmanNumber
;
64 for (const SDep
&Pred
: SU
->Preds
) {
65 if (Pred
.isCtrl()) continue; // ignore chain preds
66 SUnit
*PredSU
= Pred
.getSUnit();
67 unsigned PredSethiUllman
= CalcNodeSethiUllmanNumber(PredSU
, SUNumbers
);
68 if (PredSethiUllman
> SethiUllmanNumber
) {
69 SethiUllmanNumber
= PredSethiUllman
;
72 else if (PredSethiUllman
== SethiUllmanNumber
)
76 SethiUllmanNumber
+= Extra
;
78 if (SethiUllmanNumber
== 0)
79 SethiUllmanNumber
= 1;
81 return SethiUllmanNumber
;
84 // Lower priority means schedule further down. For bottom-up scheduling, lower
85 // priority SUs are scheduled before higher priority SUs.
86 unsigned GCNILPScheduler::getNodePriority(const SUnit
*SU
) const {
87 assert(SU
->NodeNum
< SUNumbers
.size());
88 if (SU
->NumSuccs
== 0 && SU
->NumPreds
!= 0)
89 // If SU does not have a register use, i.e. it doesn't produce a value
90 // that would be consumed (e.g. store), then it terminates a chain of
91 // computation. Give it a large SethiUllman number so it will be
92 // scheduled right before its predecessors that it doesn't lengthen
96 if (SU
->NumPreds
== 0 && SU
->NumSuccs
!= 0)
97 // If SU does not have a register def, schedule it close to its uses
98 // because it does not lengthen any live ranges.
101 return SUNumbers
[SU
->NodeNum
];
104 /// closestSucc - Returns the scheduled cycle of the successor which is
105 /// closest to the current cycle.
106 static unsigned closestSucc(const SUnit
*SU
) {
107 unsigned MaxHeight
= 0;
108 for (const SDep
&Succ
: SU
->Succs
) {
109 if (Succ
.isCtrl()) continue; // ignore chain succs
110 unsigned Height
= Succ
.getSUnit()->getHeight();
111 // If there are bunch of CopyToRegs stacked up, they should be considered
112 // to be at the same position.
113 if (Height
> MaxHeight
)
119 /// calcMaxScratches - Returns an cost estimate of the worse case requirement
120 /// for scratch registers, i.e. number of data dependencies.
121 static unsigned calcMaxScratches(const SUnit
*SU
) {
122 unsigned Scratches
= 0;
123 for (const SDep
&Pred
: SU
->Preds
) {
124 if (Pred
.isCtrl()) continue; // ignore chain preds
130 // Return -1 if left has higher priority, 1 if right has higher priority.
131 // Return 0 if latency-based priority is equivalent.
132 static int BUCompareLatency(const SUnit
*left
, const SUnit
*right
) {
133 // Scheduling an instruction that uses a VReg whose postincrement has not yet
134 // been scheduled will induce a copy. Model this as an extra cycle of latency.
135 int LHeight
= (int)left
->getHeight();
136 int RHeight
= (int)right
->getHeight();
138 // If either node is scheduling for latency, sort them by height/depth
141 // If neither instruction stalls (!LStall && !RStall) and HazardRecognizer
142 // is enabled, grouping instructions by cycle, then its height is already
143 // covered so only its depth matters. We also reach this point if both stall
144 // but have the same height.
145 if (LHeight
!= RHeight
)
146 return LHeight
> RHeight
? 1 : -1;
148 int LDepth
= left
->getDepth();
149 int RDepth
= right
->getDepth();
150 if (LDepth
!= RDepth
) {
151 LLVM_DEBUG(dbgs() << " Comparing latency of SU (" << left
->NodeNum
152 << ") depth " << LDepth
<< " vs SU (" << right
->NodeNum
153 << ") depth " << RDepth
<< "\n");
154 return LDepth
< RDepth
? 1 : -1;
156 if (left
->Latency
!= right
->Latency
)
157 return left
->Latency
> right
->Latency
? 1 : -1;
162 const SUnit
*GCNILPScheduler::pickBest(const SUnit
*left
, const SUnit
*right
)
164 // TODO: add register pressure lowering checks
166 bool const DisableSchedCriticalPath
= false;
167 int MaxReorderWindow
= 6;
168 if (!DisableSchedCriticalPath
) {
169 int spread
= (int)left
->getDepth() - (int)right
->getDepth();
170 if (std::abs(spread
) > MaxReorderWindow
) {
171 LLVM_DEBUG(dbgs() << "Depth of SU(" << left
->NodeNum
<< "): "
172 << left
->getDepth() << " != SU(" << right
->NodeNum
173 << "): " << right
->getDepth() << "\n");
174 return left
->getDepth() < right
->getDepth() ? right
: left
;
178 bool const DisableSchedHeight
= false;
179 if (!DisableSchedHeight
&& left
->getHeight() != right
->getHeight()) {
180 int spread
= (int)left
->getHeight() - (int)right
->getHeight();
181 if (std::abs(spread
) > MaxReorderWindow
)
182 return left
->getHeight() > right
->getHeight() ? right
: left
;
185 // Prioritize by Sethi-Ulmann number and push CopyToReg nodes down.
186 unsigned LPriority
= getNodePriority(left
);
187 unsigned RPriority
= getNodePriority(right
);
189 if (LPriority
!= RPriority
)
190 return LPriority
> RPriority
? right
: left
;
192 // Try schedule def + use closer when Sethi-Ullman numbers are the same.
197 // and the following instructions are both ready.
201 // Then schedule t2 = op first.
208 // This creates more short live intervals.
209 unsigned LDist
= closestSucc(left
);
210 unsigned RDist
= closestSucc(right
);
212 return LDist
< RDist
? right
: left
;
214 // How many registers becomes live when the node is scheduled.
215 unsigned LScratch
= calcMaxScratches(left
);
216 unsigned RScratch
= calcMaxScratches(right
);
217 if (LScratch
!= RScratch
)
218 return LScratch
> RScratch
? right
: left
;
220 bool const DisableSchedCycles
= false;
221 if (!DisableSchedCycles
) {
222 int result
= BUCompareLatency(left
, right
);
224 return result
> 0 ? right
: left
;
227 if (left
->getHeight() != right
->getHeight())
228 return (left
->getHeight() > right
->getHeight()) ? right
: left
;
230 if (left
->getDepth() != right
->getDepth())
231 return (left
->getDepth() < right
->getDepth()) ? right
: left
;
233 assert(left
->NodeQueueId
&& right
->NodeQueueId
&&
234 "NodeQueueId cannot be zero");
235 return (left
->NodeQueueId
> right
->NodeQueueId
) ? right
: left
;
238 GCNILPScheduler::Candidate
* GCNILPScheduler::pickCandidate() {
239 if (AvailQueue
.empty())
241 auto Best
= AvailQueue
.begin();
242 for (auto I
= std::next(AvailQueue
.begin()), E
= AvailQueue
.end(); I
!= E
; ++I
) {
243 const auto *NewBestSU
= pickBest(Best
->SU
, I
->SU
);
244 if (NewBestSU
!= Best
->SU
) {
245 assert(NewBestSU
== I
->SU
);
252 void GCNILPScheduler::releasePending() {
253 // Check to see if any of the pending instructions are ready to issue. If
254 // so, add them to the available queue.
255 for(auto I
= PendingQueue
.begin(), E
= PendingQueue
.end(); I
!= E
;) {
257 if (C
.SU
->getHeight() <= CurCycle
) {
258 PendingQueue
.remove(C
);
259 AvailQueue
.push_back(C
);
260 C
.SU
->NodeQueueId
= CurQueueId
++;
265 /// Move the scheduler state forward by the specified number of Cycles.
266 void GCNILPScheduler::advanceToCycle(unsigned NextCycle
) {
267 if (NextCycle
<= CurCycle
)
269 CurCycle
= NextCycle
;
273 void GCNILPScheduler::releasePredecessors(const SUnit
* SU
) {
274 for (const auto &PredEdge
: SU
->Preds
) {
275 auto *PredSU
= PredEdge
.getSUnit();
276 if (PredEdge
.isWeak())
278 assert(PredSU
->isBoundaryNode() || PredSU
->NumSuccsLeft
> 0);
280 PredSU
->setHeightToAtLeast(SU
->getHeight() + PredEdge
.getLatency());
282 if (!PredSU
->isBoundaryNode() && --PredSU
->NumSuccsLeft
== 0)
283 PendingQueue
.push_front(*new (Alloc
.Allocate()) Candidate(PredSU
));
287 std::vector
<const SUnit
*>
288 GCNILPScheduler::schedule(ArrayRef
<const SUnit
*> BotRoots
,
289 const ScheduleDAG
&DAG
) {
290 auto &SUnits
= const_cast<ScheduleDAG
&>(DAG
).SUnits
;
292 std::vector
<SUnit
> SUSavedCopy
;
293 SUSavedCopy
.resize(SUnits
.size());
295 // we cannot save only those fields we touch: some of them are private
296 // so save units verbatim: this assumes SUnit should have value semantics
297 for (const SUnit
&SU
: SUnits
)
298 SUSavedCopy
[SU
.NodeNum
] = SU
;
300 SUNumbers
.assign(SUnits
.size(), 0);
301 for (const SUnit
&SU
: SUnits
)
302 CalcNodeSethiUllmanNumber(&SU
, SUNumbers
);
304 for (const auto *SU
: BotRoots
) {
305 AvailQueue
.push_back(
306 *new (Alloc
.Allocate()) Candidate(const_cast<SUnit
*>(SU
)));
308 releasePredecessors(&DAG
.ExitSU
);
310 std::vector
<const SUnit
*> Schedule
;
311 Schedule
.reserve(SUnits
.size());
313 if (AvailQueue
.empty() && !PendingQueue
.empty()) {
315 llvm::min_element(PendingQueue
, [=](const Candidate
&C1
,
316 const Candidate
&C2
) {
317 return C1
.SU
->getHeight() < C2
.SU
->getHeight();
319 advanceToCycle(std::max(CurCycle
+ 1, EarliestSU
->getHeight()));
321 if (AvailQueue
.empty())
324 LLVM_DEBUG(dbgs() << "\n=== Picking candidate\n"
328 << ' ' << C
.SU
->NodeNum
;
331 auto *C
= pickCandidate();
333 AvailQueue
.remove(*C
);
335 LLVM_DEBUG(dbgs() << "Selected "; DAG
.dumpNode(*SU
));
337 advanceToCycle(SU
->getHeight());
339 releasePredecessors(SU
);
340 Schedule
.push_back(SU
);
341 SU
->isScheduled
= true;
343 assert(SUnits
.size() == Schedule
.size());
345 std::reverse(Schedule
.begin(), Schedule
.end());
348 for (auto &SU
: SUnits
)
349 SU
= SUSavedCopy
[SU
.NodeNum
];
355 std::vector
<const SUnit
*> makeGCNILPScheduler(ArrayRef
<const SUnit
*> BotRoots
,
356 const ScheduleDAG
&DAG
) {
358 return S
.schedule(BotRoots
, DAG
);