LLVM 20.0.0git
Scheduler.cpp
Go to the documentation of this file.
1//===--------------------- Scheduler.cpp ------------------------*- C++ -*-===//
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//
9// A scheduler for processor resource units and processor resource groups.
10//
11//===----------------------------------------------------------------------===//
12
14#include "llvm/Support/Debug.h"
16
17namespace llvm {
18namespace mca {
19
20#define DEBUG_TYPE "llvm-mca"
21
22void Scheduler::initializeStrategy(std::unique_ptr<SchedulerStrategy> S) {
23 // Ensure we have a valid (non-null) strategy object.
24 Strategy = S ? std::move(S) : std::make_unique<DefaultSchedulerStrategy>();
25}
26
27// Anchor the vtable of SchedulerStrategy and DefaultSchedulerStrategy.
30
31#ifndef NDEBUG
32void Scheduler::dump() const {
33 dbgs() << "[SCHEDULER]: WaitSet size is: " << WaitSet.size() << '\n';
34 dbgs() << "[SCHEDULER]: ReadySet size is: " << ReadySet.size() << '\n';
35 dbgs() << "[SCHEDULER]: IssuedSet size is: " << IssuedSet.size() << '\n';
36 Resources->dump();
37}
38#endif
39
42 Resources->canBeDispatched(IR.getInstruction()->getUsedBuffers());
43 HadTokenStall = RSE != RS_BUFFER_AVAILABLE;
44
45 switch (RSE) {
51 break;
52 }
53
54 // Give lower priority to LSUnit stall events.
55 LSUnit::Status LSS = LSU.isAvailable(IR);
56 HadTokenStall = LSS != LSUnit::LSU_AVAILABLE;
57
58 switch (LSS) {
65 }
66
67 llvm_unreachable("Don't know how to process this LSU state result!");
68}
69
70void Scheduler::issueInstructionImpl(
71 InstRef &IR,
72 SmallVectorImpl<std::pair<ResourceRef, ReleaseAtCycles>> &UsedResources) {
73 Instruction *IS = IR.getInstruction();
74 const InstrDesc &D = IS->getDesc();
75
76 // Issue the instruction and collect all the consumed resources
77 // into a vector. That vector is then used to notify the listener.
78 Resources->issueInstruction(D, UsedResources);
79
80 // Notify the instruction that it started executing.
81 // This updates the internal state of each write.
82 IS->execute(IR.getSourceIndex());
83
85
86 if (IS->isMemOp()) {
88 const CriticalDependency &MemDep =
90 IS->setCriticalMemDep(MemDep);
91 }
92
93 if (IS->isExecuting())
94 IssuedSet.emplace_back(IR);
95 else if (IS->isExecuted())
97}
98
99// Release the buffered resources and issue the instruction.
101 InstRef &IR,
102 SmallVectorImpl<std::pair<ResourceRef, ReleaseAtCycles>> &UsedResources,
103 SmallVectorImpl<InstRef> &PendingInstructions,
104 SmallVectorImpl<InstRef> &ReadyInstructions) {
105 const Instruction &Inst = *IR.getInstruction();
106 bool HasDependentUsers = Inst.hasDependentUsers();
107 HasDependentUsers |= Inst.isMemOp() && LSU.hasDependentUsers(IR);
108
109 Resources->releaseBuffers(Inst.getUsedBuffers());
110 issueInstructionImpl(IR, UsedResources);
111 // Instructions that have been issued during this cycle might have unblocked
112 // other dependent instructions. Dependent instructions may be issued during
113 // this same cycle if operands have ReadAdvance entries. Promote those
114 // instructions to the ReadySet and notify the caller that those are ready.
115 if (HasDependentUsers)
116 if (promoteToPendingSet(PendingInstructions))
117 promoteToReadySet(ReadyInstructions);
118}
119
120bool Scheduler::promoteToReadySet(SmallVectorImpl<InstRef> &Ready) {
121 // Scan the set of waiting instructions and promote them to the
122 // ready set if operands are all ready.
123 unsigned PromotedElements = 0;
124 for (auto I = PendingSet.begin(), E = PendingSet.end(); I != E;) {
125 InstRef &IR = *I;
126 if (!IR)
127 break;
128
129 // Check if there are unsolved register dependencies.
130 Instruction &IS = *IR.getInstruction();
131 if (!IS.isReady() && !IS.updatePending()) {
132 ++I;
133 continue;
134 }
135 // Check if there are unsolved memory dependencies.
136 if (IS.isMemOp() && !LSU.isReady(IR)) {
137 ++I;
138 continue;
139 }
140
141 LLVM_DEBUG(dbgs() << "[SCHEDULER]: Instruction #" << IR
142 << " promoted to the READY set.\n");
143
144 Ready.emplace_back(IR);
145 ReadySet.emplace_back(IR);
146
147 IR.invalidate();
148 ++PromotedElements;
149 std::iter_swap(I, E - PromotedElements);
150 }
151
152 PendingSet.resize(PendingSet.size() - PromotedElements);
153 return PromotedElements;
154}
155
156bool Scheduler::promoteToPendingSet(SmallVectorImpl<InstRef> &Pending) {
157 // Scan the set of waiting instructions and promote them to the
158 // pending set if operands are all ready.
159 unsigned RemovedElements = 0;
160 for (auto I = WaitSet.begin(), E = WaitSet.end(); I != E;) {
161 InstRef &IR = *I;
162 if (!IR)
163 break;
164
165 // Check if this instruction is now ready. In case, force
166 // a transition in state using method 'updateDispatched()'.
167 Instruction &IS = *IR.getInstruction();
168 if (IS.isDispatched() && !IS.updateDispatched()) {
169 ++I;
170 continue;
171 }
172
173 if (IS.isMemOp() && LSU.isWaiting(IR)) {
174 ++I;
175 continue;
176 }
177
178 LLVM_DEBUG(dbgs() << "[SCHEDULER]: Instruction #" << IR
179 << " promoted to the PENDING set.\n");
180
181 Pending.emplace_back(IR);
182 PendingSet.emplace_back(IR);
183
184 IR.invalidate();
185 ++RemovedElements;
186 std::iter_swap(I, E - RemovedElements);
187 }
188
189 WaitSet.resize(WaitSet.size() - RemovedElements);
190 return RemovedElements;
191}
192
194 unsigned QueueIndex = ReadySet.size();
195 for (unsigned I = 0, E = ReadySet.size(); I != E; ++I) {
196 InstRef &IR = ReadySet[I];
197 if (QueueIndex == ReadySet.size() ||
198 Strategy->compare(IR, ReadySet[QueueIndex])) {
199 Instruction &IS = *IR.getInstruction();
200 uint64_t BusyResourceMask = Resources->checkAvailability(IS.getDesc());
201 if (BusyResourceMask)
202 IS.setCriticalResourceMask(BusyResourceMask);
203 BusyResourceUnits |= BusyResourceMask;
204 if (!BusyResourceMask)
205 QueueIndex = I;
206 }
207 }
208
209 if (QueueIndex == ReadySet.size())
210 return InstRef();
211
212 // We found an instruction to issue.
213 InstRef IR = ReadySet[QueueIndex];
214 std::swap(ReadySet[QueueIndex], ReadySet[ReadySet.size() - 1]);
215 ReadySet.pop_back();
216 return IR;
217}
218
219void Scheduler::updateIssuedSet(SmallVectorImpl<InstRef> &Executed) {
220 unsigned RemovedElements = 0;
221 for (auto I = IssuedSet.begin(), E = IssuedSet.end(); I != E;) {
222 InstRef &IR = *I;
223 if (!IR)
224 break;
225 Instruction &IS = *IR.getInstruction();
226 if (!IS.isExecuted()) {
227 LLVM_DEBUG(dbgs() << "[SCHEDULER]: Instruction #" << IR
228 << " is still executing.\n");
229 ++I;
230 continue;
231 }
232
233 // Instruction IR has completed execution.
235 Executed.emplace_back(IR);
236 ++RemovedElements;
237 IR.invalidate();
238 std::iter_swap(I, E - RemovedElements);
239 }
240
241 IssuedSet.resize(IssuedSet.size() - RemovedElements);
242}
243
245 llvm::append_range(Insts, ReadySet);
246 return BusyResourceUnits;
247}
248
250 SmallVectorImpl<InstRef> &MemDeps) {
251 const auto EndIt = PendingSet.end() - NumDispatchedToThePendingSet;
252 for (const InstRef &IR : make_range(PendingSet.begin(), EndIt)) {
253 const Instruction &IS = *IR.getInstruction();
254 if (Resources->checkAvailability(IS.getDesc()))
255 continue;
256
257 if (IS.isMemOp() && LSU.isPending(IR))
258 MemDeps.emplace_back(IR);
259
260 if (IS.isPending())
261 RegDeps.emplace_back(IR);
262 }
263}
264
266 SmallVectorImpl<InstRef> &Executed,
269 LSU.cycleEvent();
270
271 // Release consumed resources.
272 Resources->cycleEvent(Freed);
273
274 for (InstRef &IR : IssuedSet)
275 IR.getInstruction()->cycleEvent();
276 updateIssuedSet(Executed);
277
278 for (InstRef &IR : PendingSet)
279 IR.getInstruction()->cycleEvent();
280
281 for (InstRef &IR : WaitSet)
282 IR.getInstruction()->cycleEvent();
283
284 promoteToPendingSet(Pending);
285 promoteToReadySet(Ready);
286
287 NumDispatchedToThePendingSet = 0;
288 BusyResourceUnits = 0;
289}
290
292 const InstrDesc &Desc = IR.getInstruction()->getDesc();
293 if (Desc.isZeroLatency())
294 return true;
295 // Instructions that use an in-order dispatch/issue processor resource must be
296 // issued immediately to the pipeline(s). Any other in-order buffered
297 // resources (i.e. BufferSize=1) is consumed.
298 return Desc.MustIssueImmediately;
299}
300
302 Instruction &IS = *IR.getInstruction();
303 Resources->reserveBuffers(IS.getUsedBuffers());
304
305 // If necessary, reserve queue entries in the load-store unit (LSU).
306 if (IS.isMemOp())
307 IS.setLSUTokenID(LSU.dispatch(IR));
308
309 if (IS.isDispatched() || (IS.isMemOp() && LSU.isWaiting(IR))) {
310 LLVM_DEBUG(dbgs() << "[SCHEDULER] Adding #" << IR << " to the WaitSet\n");
311 WaitSet.push_back(IR);
312 return false;
313 }
314
315 if (IS.isPending() || (IS.isMemOp() && LSU.isPending(IR))) {
316 LLVM_DEBUG(dbgs() << "[SCHEDULER] Adding #" << IR
317 << " to the PendingSet\n");
318 PendingSet.push_back(IR);
319 ++NumDispatchedToThePendingSet;
320 return false;
321 }
322
323 assert(IS.isReady() && (!IS.isMemOp() || LSU.isReady(IR)) &&
324 "Unexpected internal state found!");
325 // Don't add a zero-latency instruction to the Ready queue.
326 // A zero-latency instruction doesn't consume any scheduler resources. That is
327 // because it doesn't need to be executed, and it is often removed at register
328 // renaming stage. For example, register-register moves are often optimized at
329 // register renaming stage by simply updating register aliases. On some
330 // targets, zero-idiom instructions (for example: a xor that clears the value
331 // of a register) are treated specially, and are often eliminated at register
332 // renaming stage.
333 if (!mustIssueImmediately(IR)) {
334 LLVM_DEBUG(dbgs() << "[SCHEDULER] Adding #" << IR << " to the ReadySet\n");
335 ReadySet.push_back(IR);
336 }
337
338 return true;
339}
340
341} // namespace mca
342} // namespace llvm
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
#define LLVM_DEBUG(...)
Definition: Debug.h:106
Legalize the Machine IR a function s Machine IR
Definition: Legalizer.cpp:80
A scheduler for Processor Resource Units and Processor Resource Groups.
#define I(x, y, z)
Definition: MD5.cpp:58
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Definition: SmallVector.h:573
reference emplace_back(ArgTypes &&... Args)
Definition: SmallVector.h:937
An InstRef contains both a SourceMgr index and Instruction pair.
Definition: Instruction.h:720
const InstrDesc & getDesc() const
Definition: Instruction.h:539
bool hasDependentUsers() const
Definition: Instruction.h:562
An instruction propagated through the simulated instruction pipeline.
Definition: Instruction.h:600
bool isDispatched() const
Definition: Instruction.h:685
bool isExecuted() const
Definition: Instruction.h:689
bool isExecuting() const
Definition: Instruction.h:688
void setCriticalResourceMask(uint64_t ResourceMask)
Definition: Instruction.h:710
bool isReady() const
Definition: Instruction.h:687
const CriticalDependency & computeCriticalRegDep()
void execute(unsigned IID)
void setLSUTokenID(unsigned LSUTok)
Definition: Instruction.h:657
void setCriticalMemDep(const CriticalDependency &MemDep)
Definition: Instruction.h:705
uint64_t getUsedBuffers() const
Definition: Instruction.h:659
bool isPending() const
Definition: Instruction.h:686
unsigned getLSUTokenID() const
Definition: Instruction.h:656
virtual unsigned dispatch(const InstRef &IR)=0
Allocates LS resources for instruction IR.
virtual bool isReady(const InstRef &IR) const =0
Check if a peviously dispatched instruction IR is now ready for execution.
virtual Status isAvailable(const InstRef &IR) const =0
This method checks the availability of the load/store buffers.
virtual void onInstructionExecuted(const InstRef &IR)=0
virtual void cycleEvent()=0
virtual bool isWaiting(const InstRef &IR) const =0
Check if instruction IR is still waiting on memory operations, and the wait time is still unknown.
virtual const CriticalDependency getCriticalPredecessor(unsigned GroupId)=0
virtual bool isPending(const InstRef &IR) const =0
Check if instruction IR only depends on memory instructions that are currently executing.
virtual bool hasDependentUsers(const InstRef &IR) const =0
virtual void onInstructionIssued(const InstRef &IR)=0
InstRef select()
Select the next instruction to issue from the ReadySet.
Definition: Scheduler.cpp:193
void issueInstruction(InstRef &IR, SmallVectorImpl< std::pair< ResourceRef, ReleaseAtCycles > > &Used, SmallVectorImpl< InstRef > &Pending, SmallVectorImpl< InstRef > &Ready)
Issue an instruction and populates a vector of used pipeline resources, and a vector of instructions ...
Definition: Scheduler.cpp:100
Status isAvailable(const InstRef &IR)
Check if the instruction in 'IR' can be dispatched during this cycle.
Definition: Scheduler.cpp:40
void analyzeDataDependencies(SmallVectorImpl< InstRef > &RegDeps, SmallVectorImpl< InstRef > &MemDeps)
This method is called by the ExecuteStage at the end of each cycle to identify bottlenecks caused by ...
Definition: Scheduler.cpp:249
bool dispatch(InstRef &IR)
Reserves buffer and LSUnit queue resources that are necessary to issue this instruction.
Definition: Scheduler.cpp:301
void cycleEvent(SmallVectorImpl< ResourceRef > &Freed, SmallVectorImpl< InstRef > &Executed, SmallVectorImpl< InstRef > &Pending, SmallVectorImpl< InstRef > &Ready)
This routine notifies the Scheduler that a new cycle just started.
Definition: Scheduler.cpp:265
bool mustIssueImmediately(const InstRef &IR) const
Returns true if IR has to be issued immediately, or if IR is a zero latency instruction.
Definition: Scheduler.cpp:291
uint64_t analyzeResourcePressure(SmallVectorImpl< InstRef > &Insts)
Returns a mask of busy resources, and populates vector Insts with instructions that could not be issu...
Definition: Scheduler.cpp:244
void dump() const
Definition: Scheduler.cpp:32
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
ResourceStateEvent
Used to notify the internal state of a processor resource.
@ RS_BUFFER_UNAVAILABLE
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
Definition: STLExtras.h:2115
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
Definition: BitVector.h:860
Description of the encoding of one expression Op.
A critical data dependency descriptor.
Definition: Instruction.h:185
An instruction descriptor.
Definition: Instruction.h:447