Go to the documentation of this file.
41 #ifndef __CPU_O3_ROB_HH__
42 #define __CPU_O3_ROB_HH__
50 #include "config/the_isa.hh"
55 #include "enums/SMTQueuePolicy.hh"
67 struct DerivO3CPUParams;
98 ROB(
CPU *_cpu,
const O3CPUParams ¶ms);
100 std::string
name()
const;
348 #endif //__CPU_O3_ROB_HH__
DynInstPtr dummyInst
Dummy instruction returned if there are no insts left.
This is a simple scalar statistic, like a counter.
void doSquash(ThreadID tid)
Executes the squash, marking squashed instructions.
int entryAmount(ThreadID num_threads)
Number of entries needed For 'num_threads' amount of threads.
void squash(InstSeqNum squash_num, ThreadID tid)
Squashes all instructions younger than the given sequence number for the specific thread.
DynInstPtr readTailInst(ThreadID tid)
Returns pointer to the tail instruction within the ROB.
unsigned squashWidth
Number of instructions that can be squashed in a single cycle.
InstIt squashIt[MaxThreads]
Iterator used for walking through the list of instructions when squashing.
void updateHead()
Updates the head instruction with the new oldest instruction.
bool isEmpty(ThreadID tid) const
Returns if a specific thread's partition is empty.
void insertInst(const DynInstPtr &inst)
Function to insert an instruction into the ROB.
void drainSanityCheck() const
Perform sanity checks after a drain.
unsigned numEntries
Number of instructions in the ROB.
unsigned threadEntries[MaxThreads]
Entries Per Thread.
bool isDoneSquashing(ThreadID tid) const
Reads the PC of the oldest head instruction.
Status robStatus[MaxThreads]
Per-thread ROB status.
std::pair< RegIndex, RegIndex > UnmapInfo
gem5::o3::ROB::ROBStats stats
unsigned numFreeEntries()
Returns the number of total free entries in the ROB.
bool isFull(ThreadID tid)
Returns if a specific thread's partition is full.
void resetEntries()
Re-adjust ROB partitioning.
If you want a reference counting pointer to a mutable object, create it like this:
unsigned maxEntries[MaxThreads]
Max Insts a Thread Can Have in the ROB.
unsigned getMaxEntries(ThreadID tid)
Returns the maximum number of entries for a specific thread.
std::list< DynInstPtr >::iterator InstIt
bool canCommit()
Is there any commitable head instruction across all threads ready.
bool isFull()
Returns if the ROB is full.
InstIt head
Iterator pointing to the instruction which is the first instruction in in the ROB.
O3CPU class, has each of the stages (fetch through commit) within it, as well as all of the time buff...
const DynInstPtr & readHeadInst(ThreadID tid)
Returns pointer to the head instruction within the ROB.
InstIt tail
Iterator pointing to the instruction which is the last instruction in the ROB.
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets pointer to the list of active threads.
CPU * cpu
Pointer to the CPU.
bool isHeadReady(ThreadID tid)
Is the oldest instruction across all threads ready.
std::list< DynInstPtr > instList[MaxThreads]
ROB List of Instructions.
Status
Possible ROB statuses.
ThreadID numThreads
Number of active threads.
SMTQueuePolicy robPolicy
ROB resource sharing policy for SMT mode.
unsigned getThreadEntries(ThreadID tid)
Returns the number of entries being used by a specific thread.
ROBStats(statistics::Group *parent)
static constexpr int MaxThreads
InstSeqNum squashedSeqNum[MaxThreads]
The sequence number of the squashed instruction.
DynInstPtr findInst(ThreadID tid, InstSeqNum squash_inst)
Returns a pointer to the instruction with the given sequence if it is in the ROB.
void resetState()
Reset the ROB state.
bool isEmpty() const
Returns if the ROB is empty.
ROB(CPU *_cpu, const O3CPUParams ¶ms)
ROB constructor.
void retireHead(ThreadID tid)
Retires the head instruction, removing it from the ROB.
bool doneSquashing[MaxThreads]
Is the ROB done squashing.
statistics::Scalar writes
std::list< ThreadID > * activeThreads
Active Threads in CPU.
int numInstsInROB
Number of instructions in the ROB.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
int countInsts()
This is more of a debugging function than anything.
bool isDoneSquashing()
Checks if the ROB is still in the process of squashing instructions for any thread.
void updateTail()
Updates the tail instruction with the new youngest instruction.
int16_t ThreadID
Thread index/ID type.
void takeOverFrom()
Takes over another CPU's thread.
Generated on Tue Dec 21 2021 11:34:26 for gem5 by doxygen 1.8.17