LLVM 24.0.0git
Scheduler.cpp
Go to the documentation of this file.
1//===- Scheduler.cpp ------------------------------------------------------===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8
11
12namespace llvm::sandboxir {
13
14// TODO: Check if we can cache top/bottom to reduce compile-time.
16 DGNode *TopN = Nodes.front();
17 for (auto *N : drop_begin(Nodes)) {
18 if (N->getInstruction()->comesBefore(TopN->getInstruction()))
19 TopN = N;
20 }
21 return TopN;
22}
23
25 DGNode *BotN = Nodes.front();
26 for (auto *N : drop_begin(Nodes)) {
27 if (BotN->getInstruction()->comesBefore(N->getInstruction()))
28 BotN = N;
29 }
30 return BotN;
31}
32
34 for (auto *N : Nodes) {
35 auto *I = N->getInstruction();
36 if (I->getIterator() == Where)
37 ++Where; // Try to maintain bundle order.
38 I->moveBefore(*Where.getNodeParent(), Where);
39 }
40}
41
42#ifndef NDEBUG
44 for (auto *N : Nodes)
45 OS << *N;
46}
47
48void SchedBundle::dump() const {
49 dump(dbgs());
50 dbgs() << "\n";
51}
52#endif // NDEBUG
53
54#ifndef NDEBUG
56 auto ListCopy = List;
57 while (!ListCopy.empty()) {
58 OS << *ListCopy.top() << "\n";
59 ListCopy.pop();
60 }
61}
62
64 dump(dbgs());
65 dbgs() << "\n";
66}
67
70 OS << "Before begin of BB " << BB->getName();
71 else if (BasicBlock *BB = atEndOrNull())
72 OS << "At end of BB " << BB->getName();
73 else
74 OS << "At instr: " << *atInstrOrNull();
75}
76
78 print(dbgs());
79 dbgs() << "\n";
80}
81#endif // NDEBUG
82
83void Scheduler::scheduleAndUpdateReadyList(SchedBundle &Bndl) {
84 // Find where we should schedule the instructions.
85 assert(ScheduleTopItOpt && "Should have been set by now!");
86 auto Where = Dir == SchedDirection::BottomUp
87 ? ScheduleTopItOpt->getIterator()
88 : ScheduleTopItOpt->getNext().getIterator();
89 // Move all instructions in `Bndl` to `Where`.
90 Bndl.cluster(Where);
91 // Update the last scheduled bundle.
92 ScheduleTopItOpt = Dir == SchedDirection::BottomUp
93 ? Bndl.getTop()->getInstruction()->getIterator()
94 : Bndl.getBot()->getInstruction()->getIterator();
95 // Set nodes as "scheduled" and decrement the UnscheduledSuccs/Preds counter
96 // of all dependency predecessors/successors.
97 for (DGNode *N : Bndl) {
98 switch (Dir) {
100 for (auto *DepN : N->preds(DAG)) {
101 DepN->decrUnscheduledSuccs();
102 if (DepN->readyBottomUp() && !DepN->scheduled())
103 ReadyList.insert(DepN);
104 }
105 break;
106 }
108 for (auto *DepN : N->succs(DAG)) {
109 DepN->decrUnscheduledPreds();
110 if (DepN->readyTopDown() && !DepN->scheduled())
111 ReadyList.insert(DepN);
112 }
113 break;
114 }
115 }
116 N->setScheduled();
117 }
118}
119
120void Scheduler::notifyCreateInstr(Instruction *I) {
121 // The DAG notifier should have run by now.
122 auto *N = DAG.getNode(I);
123 // If there is no DAG node for `I` it means that this is out of scope for the
124 // DAG and as such out of scope for the scheduler too, so nothing to do.
125 if (N == nullptr)
126 return;
127 // If the instruction is inserted below the top-of-schedule then we mark it as
128 // "scheduled".
129 bool IsScheduled = ScheduleTopItOpt &&
130 ScheduleTopItOpt->getIterator() != I->getParent()->end() &&
131 ((Dir == SchedDirection::BottomUp &&
132 (*ScheduleTopItOpt.value()).comesBefore(I)) ||
133 (Dir == SchedDirection::TopDown &&
134 I->comesBefore(&*ScheduleTopItOpt.value())));
135 if (IsScheduled)
136 N->setScheduled();
137 // If the new instruction is above the top of schedule we need to remove its
138 // dependency predecessors from the ready list and increment their
139 // `UnscheduledSuccs` counters.
140 if (!IsScheduled) {
141 if (Dir == SchedDirection::BottomUp) {
142 for (auto *PredN : N->preds(DAG)) {
143 ReadyList.remove(PredN);
144 PredN->incrUnscheduledSuccs();
145 }
146 } else {
147 for (auto *SuccN : N->succs(DAG)) {
148 ReadyList.remove(SuccN);
149 SuccN->incrUnscheduledPreds();
150 }
151 }
152 }
153}
154
155SchedBundle *Scheduler::createBundle(ArrayRef<Instruction *> Instrs) {
157 Nodes.reserve(Instrs.size());
158 for (auto *I : Instrs)
159 Nodes.push_back(DAG.getNode(I));
160 auto BndlPtr = std::make_unique<SchedBundle>(std::move(Nodes));
161 auto *Bndl = BndlPtr.get();
162 Bndls[Bndl] = std::move(BndlPtr);
163 return Bndl;
164}
165
166void Scheduler::eraseBundle(SchedBundle *SB) { Bndls.erase(SB); }
167
168bool Scheduler::tryScheduleUntil(ArrayRef<Instruction *> Instrs) {
169 // Create a bundle for Instrs. If it turns out the schedule is infeasible we
170 // will dismantle it.
171 auto *InstrsSB = createBundle(Instrs);
172 // Keep scheduling ready nodes until we either run out of ready nodes (i.e.,
173 // ReadyList is empty), or all nodes that correspond to `Instrs` (the nodes of
174 // which are collected in DeferredNodes) are all ready to schedule.
176 bool KeepScheduling = true;
177 while (KeepScheduling) {
178 enum class TryScheduleRes {
179 Success, ///> We successfully scheduled the bundle.
180 Failure, ///> We failed to schedule the bundle.
181 Finished, ///> We successfully scheduled the bundle and it is the last
182 /// bundle to be scheduled.
183 };
184 /// TryScheduleNode() attempts to schedule all DAG nodes in the bundle that
185 /// ReadyN is in. If it's not in a bundle it will create a singleton bundle
186 /// and will try to schedule it.
187 auto TryScheduleBndl = [this, InstrsSB](DGNode *ReadyN) -> TryScheduleRes {
188 auto *SB = ReadyN->getSchedBundle();
189 if (SB == nullptr) {
190 // If ReadyN does not belong to a bundle, create a singleton bundle
191 // and schedule it.
192 auto *SingletonSB = createBundle({ReadyN->getInstruction()});
193 scheduleAndUpdateReadyList(*SingletonSB);
194 return TryScheduleRes::Success;
195 }
196 if (SB->ready(Dir)) {
197 // Remove the rest of the bundle from the ready list.
198 // TODO: Perhaps change the Scheduler + ReadyList to operate on
199 // SchedBundles instead of DGNodes.
200 for (auto *N : *SB) {
201 if (N != ReadyN)
202 ReadyList.remove(N);
203 }
204 // If all nodes in the bundle are ready.
205 scheduleAndUpdateReadyList(*SB);
206 if (SB == InstrsSB)
207 // We just scheduled InstrsSB bundle, so we are done scheduling.
208 return TryScheduleRes::Finished;
209 return TryScheduleRes::Success;
210 }
211 return TryScheduleRes::Failure;
212 };
213 while (!ReadyList.empty()) {
214 auto *ReadyN = ReadyList.pop();
215 auto Res = TryScheduleBndl(ReadyN);
216 switch (Res) {
217 case TryScheduleRes::Success:
218 // We successfully scheduled ReadyN, keep scheduling.
219 continue;
220 case TryScheduleRes::Failure:
221 // We failed to schedule ReadyN, defer it to later and keep scheduling
222 // other ready instructions.
223 Retry.push_back(ReadyN);
224 continue;
225 case TryScheduleRes::Finished:
226 // We successfully scheduled the instruction bundle, so we are done.
227 return true;
228 }
229 llvm_unreachable("Unhandled TrySchedule() result");
230 }
231 // Try to schedule nodes from the Retry list.
232 KeepScheduling = false;
233 for (auto *N : make_early_inc_range(Retry)) {
234 auto Res = TryScheduleBndl(N);
235 if (Res == TryScheduleRes::Success) {
236 Retry.erase(find(Retry, N));
237 KeepScheduling = true;
238 }
239 }
240 }
241
242 eraseBundle(InstrsSB);
243 return false;
244}
245
246Scheduler::BndlSchedState
247Scheduler::getBndlSchedState(ArrayRef<Instruction *> Instrs) const {
248 assert(!Instrs.empty() && "Expected non-empty bundle");
249 auto *N0 = DAG.getNode(Instrs[0]);
250 auto *SB0 = N0 != nullptr ? N0->getSchedBundle() : nullptr;
251 bool AllUnscheduled = SB0 == nullptr;
252 bool FullyScheduled = SB0 != nullptr && !SB0->isSingleton();
253 for (auto *I : drop_begin(Instrs)) {
254 auto *N = DAG.getNode(I);
255 auto *SB = N != nullptr ? N->getSchedBundle() : nullptr;
256 if (SB != nullptr) {
257 // We found a scheduled instr, so there is now way all are unscheduled.
258 AllUnscheduled = false;
259 if (SB->isSingleton()) {
260 // We found an instruction in a temporarily scheduled singleton. There
261 // is no way that all instructions are scheduled in the same bundle.
262 FullyScheduled = false;
263 }
264 }
265
266 if (SB != SB0) {
267 // Either one of SB, SB0 is null, or they are in different bundles, so
268 // Instrs are definitely not in the same vector bundle.
269 FullyScheduled = false;
270 // One of SB, SB0 are in a vector bundle and they differ.
271 if ((SB != nullptr && !SB->isSingleton()) ||
272 (SB0 != nullptr && !SB0->isSingleton()))
273 return BndlSchedState::AlreadyScheduled;
274 }
275 }
276 return AllUnscheduled ? BndlSchedState::NoneScheduled
277 : FullyScheduled ? BndlSchedState::FullyScheduled
278 : BndlSchedState::TemporarilyScheduled;
279}
280
281void Scheduler::trimSchedule(ArrayRef<Instruction *> Instrs) {
282 // | Legend: N: DGNode
283 // N <- DAGInterval.top() | B: SchedBundle
284 // N | *: Contains instruction in Instrs
285 // B <- TopI (Top of schedule) +-------------------------------------------
286 // B
287 // B *
288 // B
289 // B * <- LowestI (Lowest in Instrs)
290 // B
291 // N
292 // N
293 // N <- DAGInterval.bottom()
294 //
295 // Note: this figure assumes bottom-up scheduling. In top-down we have the
296 // top-down mirror image.
298 ? &*ScheduleTopItOpt.value()
299 : VecUtils::getHighest(Instrs);
300 Instruction *LowestI = Dir == SchedDirection::BottomUp
301 ? VecUtils::getLowest(Instrs)
302 : &*ScheduleTopItOpt.value();
303 Interval<Instruction> ResetIntvl(TopI, LowestI);
304 // The DAG Nodes contain state like the number of UnscheduledSuccs and the
305 // Scheduled flag. We need to reset their state. We need to do this for all
306 // nodes in ResetIntvl. Also destroy the singleton schedule bundles from
307 // LowestI all the way to the top.
308 for (auto &I : ResetIntvl) {
309 auto *N = DAG.getNode(&I);
310 if (N == nullptr)
311 continue;
312 auto *SB = N->getSchedBundle();
313 if (SB->isSingleton())
314 eraseBundle(SB);
315 N->resetScheduleState();
316 }
317 // Nodes that depend on the nodes in ResetIntvl also need to have their
318 // UnscheduledSuccs/UnscheduledPreds adjusted.
319 for (Instruction &I : ResetIntvl) {
320 auto *N = DAG.getNode(&I);
321 if (Dir == SchedDirection::BottomUp) {
322 // Recompute UnscheduledSuccs for nodes not only in ResetIntvl but even
323 // for nodes above the top of schedule.
324 for (auto *PredN : N->preds(DAG))
325 PredN->incrUnscheduledSuccs();
326 } else {
328 // Recompute UnscheduledPreds for nodes not only in ResetIntvl but even
329 // for nodes below the bottom of schedule.
330 for (auto *SuccN : N->succs(DAG))
331 SuccN->incrUnscheduledPreds();
332 }
333 }
334
335 // Refill the ready list by visiting all the nodes in the unscheduled part of
336 // the DAG. In bottom-up that is from the top of the DAG down to LowestI; in
337 // top-down it is the mirror image, from TopI down to the bottom of the DAG.
338 ReadyList.clear();
339 Interval<Instruction> RefillIntvl =
341 ? Interval<Instruction>(DAG.getInterval().top(), LowestI)
342 : Interval<Instruction>(TopI, DAG.getInterval().bottom());
343 for (Instruction &I : RefillIntvl) {
344 auto *N = DAG.getNode(&I);
345 if (Dir == SchedDirection::BottomUp ? N->readyBottomUp()
346 : N->readyTopDown())
347 ReadyList.insert(N);
348 }
349}
350
352 assert(all_of(drop_begin(Instrs),
353 [Instrs](Instruction *I) {
354 return I->getParent() == (*Instrs.begin())->getParent();
355 }) &&
356 "Instrs not in the same BB, should have been rejected by Legality!");
357 // TODO: For now don't cross BBs.
358 if (!DAG.getInterval().empty()) {
359 auto *BB = DAG.getInterval().top()->getParent();
360 if (any_of(Instrs, [BB](auto *I) { return I->getParent() != BB; }))
361 return false;
362 }
363 if (ScheduledBB == nullptr)
364 ScheduledBB = Instrs[0]->getParent();
365 // We don't support crossing BBs for now.
366 if (any_of(Instrs,
367 [this](Instruction *I) { return I->getParent() != ScheduledBB; }))
368 return false;
369
370 auto GetSchedPoint = [](SchedDirection Dir,
371 const auto &Instrs) -> SchedulingPoint {
372 switch (Dir) {
374 return SchedulingPoint(VecUtils::getLowest(Instrs)->getIterator())
375 .getNext();
377 return SchedulingPoint(VecUtils::getHighest(Instrs)->getIterator())
378 .getPrev();
379 }
380 llvm_unreachable("Unhandled Dir!");
381 };
382 auto SchedState = getBndlSchedState(Instrs);
383 switch (SchedState) {
384 case BndlSchedState::FullyScheduled:
385 // Nothing to do.
386 return true;
387 case BndlSchedState::AlreadyScheduled:
388 // Instructions are part of a different vector schedule, so we can't
389 // schedule \p Instrs in the same bundle (without destroying the existing
390 // schedule).
391 return false;
392 case BndlSchedState::TemporarilyScheduled:
393 // If one or more instrs are already scheduled we need to destroy the
394 // top-most part of the schedule that includes the instrs in the bundle and
395 // re-schedule.
396 DAG.extend(Instrs);
397 trimSchedule(Instrs);
398 ScheduleTopItOpt = GetSchedPoint(Dir, Instrs);
399 return tryScheduleUntil(Instrs);
400 case BndlSchedState::NoneScheduled: {
401 // TODO: Set the window of the DAG that we are interested in.
402 if (!ScheduleTopItOpt)
403 // We start scheduling at the bottom instr of Instrs (top in TopDown).
404 ScheduleTopItOpt = GetSchedPoint(Dir, Instrs);
405 // Extend the DAG to include Instrs.
406 Interval<Instruction> Extension = DAG.extend(Instrs);
407 // Add nodes from the new interval to ready list if they are ready.
408 Interval<Instruction> InstrsInterval(Instrs);
409 Interval<Instruction> ScanForReady =
410 InstrsInterval.getUnionInterval(Extension);
411 for (auto &I : ScanForReady) {
412 auto *N = DAG.getNode(&I);
413 if (N->scheduled())
414 continue;
415 bool IsReady = Dir == SchedDirection::BottomUp ? N->readyBottomUp()
416 : N->readyTopDown();
417 if (IsReady && !ReadyList.contains(N))
418 ReadyList.insert(N);
419 }
420 // Try schedule all nodes until we can schedule Instrs back-to-back.
421 return tryScheduleUntil(Instrs);
422 }
423 }
424 llvm_unreachable("Unhandled BndlSchedState enum");
425}
426
427#ifndef NDEBUG
429 OS << "ReadyList:\n";
430 ReadyList.dump(OS);
431 OS << "Dir=" << schedDirectionToStr(Dir) << " "
432 << (Dir == SchedDirection::BottomUp ? "Top" : "Bottom")
433 << " of schedule: ";
434 if (ScheduleTopItOpt)
435 OS << **ScheduleTopItOpt;
436 else
437 OS << "Empty";
438 OS << "\n";
439}
440void Scheduler::dump() const { dump(dbgs()); }
441#endif // NDEBUG
442
443} // namespace llvm::sandboxir
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
#define I(x, y, z)
Definition MD5.cpp:57
std::pair< uint64_t, uint64_t > Interval
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
iterator begin() const
Definition ArrayRef.h:129
InstListType::iterator iterator
Instruction iterators...
Definition BasicBlock.h:170
void reserve(size_type N)
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
A DependencyGraph Node that points to an Instruction and contains memory dependency edges.
Instruction * getInstruction() const
A sandboxir::User with operands, opcode and linked with previous/next instructions in an instruction ...
Definition Instruction.h:43
LLVM_ABI BBIterator getIterator() const
\Returns a BasicBlock::iterator for this Instruction.
bool comesBefore(const Instruction *Other) const
Given an instruction Other in the same basic block as this instruction, return true if this instructi...
Interval getUnionInterval(const Interval &Other)
\Returns a single interval that spans across both this and Other.
Definition Interval.h:201
LLVM_DUMP_METHOD void dump() const
Definition Scheduler.cpp:63
The nodes that need to be scheduled back-to-back in a single scheduling cycle form a SchedBundle.
Definition Scheduler.h:115
LLVM_ABI DGNode * getBot() const
\Returns the bundle node that comes after the others in program order.
Definition Scheduler.cpp:24
LLVM_ABI DGNode * getTop() const
\Returns the bundle node that comes before the others in program order.
Definition Scheduler.cpp:15
SmallVector< DGNode *, 4 > ContainerTy
Definition Scheduler.h:117
LLVM_DUMP_METHOD void dump() const
Definition Scheduler.cpp:48
LLVM_ABI void cluster(BasicBlock::iterator Where)
Move all bundle instructions to Where back-to-back.
Definition Scheduler.cpp:33
LLVM_DUMP_METHOD void dump() const
LLVM_ABI bool trySchedule(ArrayRef< Instruction * > Instrs)
Tries to build a schedule that includes all of Instrs scheduled at the same scheduling cycle.
The scheduling point in the context of the Scheduler points to the top-of-schedule (i....
Definition Scheduler.h:188
SchedulingPoint getNext() const
Returns the SchedulingPoint pointing after this.
Definition Scheduler.h:251
BasicBlock * atEndOrNull() const
If the SchedulingPoint points after the last instruction in the BB then this returns the correspondin...
Definition Scheduler.h:227
Instruction * atInstrOrNull() const
Returns the instruction pointed to by this SchedulingPoint or null if we are before/after BB.
Definition Scheduler.h:235
LLVM_DUMP_METHOD void dump() const
Definition Scheduler.cpp:77
SchedulingPoint getPrev() const
Returns the SchedulingPoint pointing before this.
Definition Scheduler.h:258
BasicBlock * atBeforeBeginOrNull() const
If the SchedulingPoint points to before the beginning of a BB, then this returns that BB,...
Definition Scheduler.h:220
void print(raw_ostream &OS) const
Definition Scheduler.cpp:68
static Instruction * getLowest(ArrayRef< Instruction * > Instrs)
\Returns the instruction in Instrs that is lowest in the BB.
Definition VecUtils.h:145
static Instruction * getHighest(ArrayRef< Instruction * > Instrs)
\Returns the instruction in Instrs that is highest in the BB.
Definition VecUtils.h:155
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
StringLiteral schedDirectionToStr(SchedDirection Dir)
BasicBlock(llvm::BasicBlock *BB, Context &SBCtx)
Definition BasicBlock.h:75
template class LLVM_TEMPLATE_ABI Interval< Instruction >
Definition Interval.cpp:46
friend class Instruction
Iterator for Instructions in a `BasicBlock.
Definition BasicBlock.h:73
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
Definition STLExtras.h:315
auto find(R &&Range, const T &Val)
Provide wrappers to std::find which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1765
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1739
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
Definition STLExtras.h:633
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1746
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:209
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
@ Success
The lock was released successfully.
ArrayRef(const T &OneElt) -> ArrayRef< T >
#define N