[InstCombine] Signed saturation patterns
[llvm-complete.git] / lib / MCA / HardwareUnits / RetireControlUnit.cpp
blobde519d7fd94a34d607796ea8cda8b2aa45526d07
1 //===---------------------- RetireControlUnit.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 /// \file
9 ///
10 /// This file simulates the hardware responsible for retiring instructions.
11 ///
12 //===----------------------------------------------------------------------===//
14 #include "llvm/MCA/HardwareUnits/RetireControlUnit.h"
15 #include "llvm/Support/Debug.h"
17 #define DEBUG_TYPE "llvm-mca"
19 namespace llvm {
20 namespace mca {
22 RetireControlUnit::RetireControlUnit(const MCSchedModel &SM)
23 : NextAvailableSlotIdx(0), CurrentInstructionSlotIdx(0),
24 NumROBEntries(SM.MicroOpBufferSize),
25 AvailableEntries(SM.MicroOpBufferSize), MaxRetirePerCycle(0) {
26 // Check if the scheduling model provides extra information about the machine
27 // processor. If so, then use that information to set the reorder buffer size
28 // and the maximum number of instructions retired per cycle.
29 if (SM.hasExtraProcessorInfo()) {
30 const MCExtraProcessorInfo &EPI = SM.getExtraProcessorInfo();
31 if (EPI.ReorderBufferSize)
32 AvailableEntries = EPI.ReorderBufferSize;
33 MaxRetirePerCycle = EPI.MaxRetirePerCycle;
35 NumROBEntries = AvailableEntries;
36 assert(NumROBEntries && "Invalid reorder buffer size!");
37 Queue.resize(2 * NumROBEntries);
40 // Reserves a number of slots, and returns a new token.
41 unsigned RetireControlUnit::dispatch(const InstRef &IR) {
42 const Instruction &Inst = *IR.getInstruction();
43 unsigned Entries = normalizeQuantity(Inst.getNumMicroOps());
44 assert((AvailableEntries >= Entries) && "Reorder Buffer unavailable!");
46 unsigned TokenID = NextAvailableSlotIdx;
47 Queue[NextAvailableSlotIdx] = {IR, Entries, false};
48 NextAvailableSlotIdx += std::max(1U, Entries);
49 NextAvailableSlotIdx %= Queue.size();
51 AvailableEntries -= Entries;
52 return TokenID;
55 const RetireControlUnit::RUToken &RetireControlUnit::getCurrentToken() const {
56 const RetireControlUnit::RUToken &Current = Queue[CurrentInstructionSlotIdx];
57 #ifndef NDEBUG
58 const Instruction *Inst = Current.IR.getInstruction();
59 assert(Inst && "Invalid RUToken in the RCU queue.");
60 #endif
61 return Current;
64 unsigned RetireControlUnit::computeNextSlotIdx() const {
65 const RetireControlUnit::RUToken &Current = getCurrentToken();
66 unsigned NextSlotIdx = CurrentInstructionSlotIdx + std::max(1U, Current.NumSlots);
67 return NextSlotIdx % Queue.size();
70 const RetireControlUnit::RUToken &RetireControlUnit::peekNextToken() const {
71 return Queue[computeNextSlotIdx()];
74 void RetireControlUnit::consumeCurrentToken() {
75 RetireControlUnit::RUToken &Current = Queue[CurrentInstructionSlotIdx];
76 Current.IR.getInstruction()->retire();
78 // Update the slot index to be the next item in the circular queue.
79 CurrentInstructionSlotIdx += std::max(1U, Current.NumSlots);
80 CurrentInstructionSlotIdx %= Queue.size();
81 AvailableEntries += Current.NumSlots;
82 Current = { InstRef(), 0U, false };
85 void RetireControlUnit::onInstructionExecuted(unsigned TokenID) {
86 assert(Queue.size() > TokenID);
87 assert(Queue[TokenID].IR.getInstruction() && "Instruction was not dispatched!");
88 assert(Queue[TokenID].Executed == false && "Instruction already executed!");
89 Queue[TokenID].Executed = true;
92 #ifndef NDEBUG
93 void RetireControlUnit::dump() const {
94 dbgs() << "Retire Unit: { Total ROB Entries =" << NumROBEntries
95 << ", Available ROB entries=" << AvailableEntries << " }\n";
97 #endif
99 } // namespace mca
100 } // namespace llvm