LLVM 19.0.0git
RetireControlUnit.cpp
Go to the documentation of this file.
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//===----------------------------------------------------------------------===//
13
15#include "llvm/Support/Debug.h"
16
17#define DEBUG_TYPE "llvm-mca"
18
19namespace llvm {
20namespace mca {
21
23 : NextAvailableSlotIdx(0), CurrentInstructionSlotIdx(0),
24 AvailableEntries(SM.isOutOfOrder() ? SM.MicroOpBufferSize : 0),
25 MaxRetirePerCycle(0) {
26 assert(SM.isOutOfOrder() &&
27 "RetireControlUnit is not available for in-order processors");
28 // Check if the scheduling model provides extra information about the machine
29 // processor. If so, then use that information to set the reorder buffer size
30 // and the maximum number of instructions retired per cycle.
31 if (SM.hasExtraProcessorInfo()) {
33 if (EPI.ReorderBufferSize)
34 AvailableEntries = EPI.ReorderBufferSize;
35 MaxRetirePerCycle = EPI.MaxRetirePerCycle;
36 }
37 NumROBEntries = AvailableEntries;
38 assert(NumROBEntries && "Invalid reorder buffer size!");
39 Queue.resize(2 * NumROBEntries);
40}
41
42// Reserves a number of slots, and returns a new token.
44 const Instruction &Inst = *IR.getInstruction();
45 unsigned Entries = normalizeQuantity(Inst.getNumMicroOps());
46 assert((AvailableEntries >= Entries) && "Reorder Buffer unavailable!");
47
48 unsigned TokenID = NextAvailableSlotIdx;
49 Queue[NextAvailableSlotIdx] = {IR, Entries, false};
50 NextAvailableSlotIdx += std::max(1U, Entries);
51 NextAvailableSlotIdx %= Queue.size();
52 assert(TokenID < UnhandledTokenID && "Invalid token ID");
53
54 AvailableEntries -= Entries;
55 return TokenID;
56}
57
59 const RetireControlUnit::RUToken &Current = Queue[CurrentInstructionSlotIdx];
60#ifndef NDEBUG
61 const Instruction *Inst = Current.IR.getInstruction();
62 assert(Inst && "Invalid RUToken in the RCU queue.");
63#endif
64 return Current;
65}
66
67unsigned RetireControlUnit::computeNextSlotIdx() const {
69 unsigned NextSlotIdx = CurrentInstructionSlotIdx + std::max(1U, Current.NumSlots);
70 return NextSlotIdx % Queue.size();
71}
72
74 return Queue[computeNextSlotIdx()];
75}
76
78 RetireControlUnit::RUToken &Current = Queue[CurrentInstructionSlotIdx];
79 Current.IR.getInstruction()->retire();
80
81 // Update the slot index to be the next item in the circular queue.
82 CurrentInstructionSlotIdx += std::max(1U, Current.NumSlots);
83 CurrentInstructionSlotIdx %= Queue.size();
84 AvailableEntries += Current.NumSlots;
85 Current = { InstRef(), 0U, false };
86}
87
89 assert(Queue.size() > TokenID);
90 assert(Queue[TokenID].IR.getInstruction() && "Instruction was not dispatched!");
91 assert(Queue[TokenID].Executed == false && "Instruction already executed!");
92 Queue[TokenID].Executed = true;
93}
94
95#ifndef NDEBUG
97 dbgs() << "Retire Unit: { Total ROB Entries =" << NumROBEntries
98 << ", Available ROB entries=" << AvailableEntries << " }\n";
99}
100#endif
101
102} // namespace mca
103} // namespace llvm
Legalize the Machine IR a function s Machine IR
Definition: Legalizer.cpp:81
This file simulates the hardware responsible for retiring instructions.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
An InstRef contains both a SourceMgr index and Instruction pair.
Definition: Instruction.h:720
Instruction * getInstruction()
Definition: Instruction.h:734
unsigned getNumMicroOps() const
Definition: Instruction.h:542
An instruction propagated through the simulated instruction pipeline.
Definition: Instruction.h:600
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163
Provide extra details about the machine processor.
Definition: MCSchedule.h:186
Machine model for scheduling, bundling, and heuristics.
Definition: MCSchedule.h:253
bool isOutOfOrder() const
Return true if machine supports out of order execution.
Definition: MCSchedule.h:347
bool hasExtraProcessorInfo() const
Definition: MCSchedule.h:329
const MCExtraProcessorInfo & getExtraProcessorInfo() const
Definition: MCSchedule.h:336
static const unsigned UnhandledTokenID
RetireControlUnit(const MCSchedModel &SM)
void onInstructionExecuted(unsigned TokenID)
const RUToken & getCurrentToken() const
unsigned dispatch(const InstRef &IS)
const RUToken & peekNextToken() const