[InstCombine] Signed saturation patterns
[llvm-complete.git] / lib / MCA / Instruction.cpp
blobe5f2c4fd1eec81801ad76fdd92d482edd416475d
1 //===--------------------- Instruction.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 // This file defines abstractions used by the Pipeline to model register reads,
10 // register writes and instructions.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/MCA/Instruction.h"
15 #include "llvm/Support/Debug.h"
16 #include "llvm/Support/raw_ostream.h"
18 namespace llvm {
19 namespace mca {
21 void WriteState::writeStartEvent(unsigned IID, MCPhysReg RegID,
22 unsigned Cycles) {
23 CRD.IID = IID;
24 CRD.RegID = RegID;
25 CRD.Cycles = Cycles;
26 DependentWriteCyclesLeft = Cycles;
27 DependentWrite = nullptr;
30 void ReadState::writeStartEvent(unsigned IID, MCPhysReg RegID, unsigned Cycles) {
31 assert(DependentWrites);
32 assert(CyclesLeft == UNKNOWN_CYCLES);
34 // This read may be dependent on more than one write. This typically occurs
35 // when a definition is the result of multiple writes where at least one
36 // write does a partial register update.
37 // The HW is forced to do some extra bookkeeping to track of all the
38 // dependent writes, and implement a merging scheme for the partial writes.
39 --DependentWrites;
40 if (TotalCycles < Cycles) {
41 CRD.IID = IID;
42 CRD.RegID = RegID;
43 CRD.Cycles = Cycles;
44 TotalCycles = Cycles;
47 if (!DependentWrites) {
48 CyclesLeft = TotalCycles;
49 IsReady = !CyclesLeft;
53 void WriteState::onInstructionIssued(unsigned IID) {
54 assert(CyclesLeft == UNKNOWN_CYCLES);
55 // Update the number of cycles left based on the WriteDescriptor info.
56 CyclesLeft = getLatency();
58 // Now that the time left before write-back is known, notify
59 // all the users.
60 for (const std::pair<ReadState *, int> &User : Users) {
61 ReadState *RS = User.first;
62 unsigned ReadCycles = std::max(0, CyclesLeft - User.second);
63 RS->writeStartEvent(IID, RegisterID, ReadCycles);
66 // Notify any writes that are in a false dependency with this write.
67 if (PartialWrite)
68 PartialWrite->writeStartEvent(IID, RegisterID, CyclesLeft);
71 void WriteState::addUser(unsigned IID, ReadState *User, int ReadAdvance) {
72 // If CyclesLeft is different than -1, then we don't need to
73 // update the list of users. We can just notify the user with
74 // the actual number of cycles left (which may be zero).
75 if (CyclesLeft != UNKNOWN_CYCLES) {
76 unsigned ReadCycles = std::max(0, CyclesLeft - ReadAdvance);
77 User->writeStartEvent(IID, RegisterID, ReadCycles);
78 return;
81 Users.emplace_back(User, ReadAdvance);
84 void WriteState::addUser(unsigned IID, WriteState *User) {
85 if (CyclesLeft != UNKNOWN_CYCLES) {
86 User->writeStartEvent(IID, RegisterID, std::max(0, CyclesLeft));
87 return;
90 assert(!PartialWrite && "PartialWrite already set!");
91 PartialWrite = User;
92 User->setDependentWrite(this);
95 void WriteState::cycleEvent() {
96 // Note: CyclesLeft can be a negative number. It is an error to
97 // make it an unsigned quantity because users of this write may
98 // specify a negative ReadAdvance.
99 if (CyclesLeft != UNKNOWN_CYCLES)
100 CyclesLeft--;
102 if (DependentWriteCyclesLeft)
103 DependentWriteCyclesLeft--;
106 void ReadState::cycleEvent() {
107 // Update the total number of cycles.
108 if (DependentWrites && TotalCycles) {
109 --TotalCycles;
110 return;
113 // Bail out immediately if we don't know how many cycles are left.
114 if (CyclesLeft == UNKNOWN_CYCLES)
115 return;
117 if (CyclesLeft) {
118 --CyclesLeft;
119 IsReady = !CyclesLeft;
123 #ifndef NDEBUG
124 void WriteState::dump() const {
125 dbgs() << "{ OpIdx=" << WD->OpIndex << ", Lat=" << getLatency() << ", RegID "
126 << getRegisterID() << ", Cycles Left=" << getCyclesLeft() << " }";
129 void WriteRef::dump() const {
130 dbgs() << "IID=" << getSourceIndex() << ' ';
131 if (isValid())
132 getWriteState()->dump();
133 else
134 dbgs() << "(null)";
136 #endif
138 const CriticalDependency &Instruction::computeCriticalRegDep() {
139 if (CriticalRegDep.Cycles)
140 return CriticalRegDep;
142 unsigned MaxLatency = 0;
143 for (const WriteState &WS : getDefs()) {
144 const CriticalDependency &WriteCRD = WS.getCriticalRegDep();
145 if (WriteCRD.Cycles > MaxLatency)
146 CriticalRegDep = WriteCRD;
149 for (const ReadState &RS : getUses()) {
150 const CriticalDependency &ReadCRD = RS.getCriticalRegDep();
151 if (ReadCRD.Cycles > MaxLatency)
152 CriticalRegDep = ReadCRD;
155 return CriticalRegDep;
158 void Instruction::dispatch(unsigned RCUToken) {
159 assert(Stage == IS_INVALID);
160 Stage = IS_DISPATCHED;
161 RCUTokenID = RCUToken;
163 // Check if input operands are already available.
164 if (updateDispatched())
165 updatePending();
168 void Instruction::execute(unsigned IID) {
169 assert(Stage == IS_READY);
170 Stage = IS_EXECUTING;
172 // Set the cycles left before the write-back stage.
173 CyclesLeft = getLatency();
175 for (WriteState &WS : getDefs())
176 WS.onInstructionIssued(IID);
178 // Transition to the "executed" stage if this is a zero-latency instruction.
179 if (!CyclesLeft)
180 Stage = IS_EXECUTED;
183 void Instruction::forceExecuted() {
184 assert(Stage == IS_READY && "Invalid internal state!");
185 CyclesLeft = 0;
186 Stage = IS_EXECUTED;
189 bool Instruction::updatePending() {
190 assert(isPending() && "Unexpected instruction stage found!");
192 if (!all_of(getUses(), [](const ReadState &Use) { return Use.isReady(); }))
193 return false;
195 // A partial register write cannot complete before a dependent write.
196 if (!all_of(getDefs(), [](const WriteState &Def) { return Def.isReady(); }))
197 return false;
199 Stage = IS_READY;
200 return true;
203 bool Instruction::updateDispatched() {
204 assert(isDispatched() && "Unexpected instruction stage found!");
206 if (!all_of(getUses(), [](const ReadState &Use) {
207 return Use.isPending() || Use.isReady();
209 return false;
211 // A partial register write cannot complete before a dependent write.
212 if (!all_of(getDefs(),
213 [](const WriteState &Def) { return !Def.getDependentWrite(); }))
214 return false;
216 Stage = IS_PENDING;
217 return true;
220 void Instruction::update() {
221 if (isDispatched())
222 updateDispatched();
223 if (isPending())
224 updatePending();
227 void Instruction::cycleEvent() {
228 if (isReady())
229 return;
231 if (isDispatched() || isPending()) {
232 for (ReadState &Use : getUses())
233 Use.cycleEvent();
235 for (WriteState &Def : getDefs())
236 Def.cycleEvent();
238 update();
239 return;
242 assert(isExecuting() && "Instruction not in-flight?");
243 assert(CyclesLeft && "Instruction already executed?");
244 for (WriteState &Def : getDefs())
245 Def.cycleEvent();
246 CyclesLeft--;
247 if (!CyclesLeft)
248 Stage = IS_EXECUTED;
251 const unsigned WriteRef::INVALID_IID = std::numeric_limits<unsigned>::max();
253 } // namespace mca
254 } // namespace llvm