Go to the documentation of this file.
41 #ifndef __CPU_O3_IEW_HH__
42 #define __CPU_O3_IEW_HH__
55 #include "debug/IEW.hh"
130 IEW(
CPU *_cpu,
const O3CPUParams ¶ms);
133 std::string
name()
const;
497 #endif // __CPU_O3_IEW_HH__
This is a simple scalar statistic, like a counter.
int skidCount()
Returns the max of the number of entries in all of the skid buffers.
statistics::Scalar unblockCycles
Stat for total number of unblocking cycles.
statistics::Scalar dispStoreInsts
Stat for total number of dispatched store instructions.
void setTimeBuffer(TimeBuffer< TimeStruct > *tb_ptr)
Sets main time buffer used for backwards communication.
TimeBuffer< TimeStruct >::wire toFetch
Wire to write information heading to previous stages.
std::queue< DynInstPtr > insts[MaxThreads]
Queue of all instructions coming from rename this cycle.
bool skidsEmpty()
Returns if all of the skid buffers are empty.
gem5::o3::IEW::IEWStats::ExecutedInstStats executedInstStats
ProbePointArg< DynInstPtr > * ppToCommit
To probe when instruction execution is complete.
statistics::Formula wbRate
Number of instructions per cycle written back.
TimeBuffer< RenameStruct > * renameQueue
Rename instruction queue interface.
statistics::Scalar blockCycles
Stat for total number of blocking cycles.
statistics::Vector producerInst
Number of instructions that wake consumers.
void checkSignalsAndUpdate(ThreadID tid)
Processes inputs and changes state accordingly.
void updateExeInstStats(const DynInstPtr &inst)
Updates execution stats based on the instruction.
StageStatus dispatchStatus[MaxThreads]
Dispatch status.
A standard instruction queue class.
void updateStatus()
Updates overall IEW status based on all of the stages' statuses.
void replayMemInst(const DynInstPtr &inst)
Re-executes all rescheduled memory instructions.
statistics::Formula numStoreInsts
Number of executed store instructions.
statistics::Vector numRefs
Number of executed meomory references.
ProbePointArg< DynInstPtr > * ppMispredict
Probe points.
statistics::Scalar predictedNotTakenIncorrect
Stat for total number of incorrect predicted not taken branches.
Status
Overall IEW stage status.
void takeOverFrom()
Takes over from another CPU's thread.
void checkMisprediction(const DynInstPtr &inst)
Check misprediction
TimeBuffer< RenameStruct >::wire fromRename
Wire to get rename's output from rename queue.
gem5::o3::IEW::IEWStats iewStats
void clearStates(ThreadID tid)
Clear all thread-specific states.
void wakeDependents(const DynInstPtr &inst)
Wakes all dependents of a completed instruction.
Cycles commitToIEWDelay
Commit to IEW delay.
statistics::Scalar iqFullEvents
Stat for number of times the IQ becomes full.
TimeBuffer< IssueStruct > issueToExecQueue
Issue stage queue.
statistics::Formula wbFanout
Average number of woken instructions per writeback.
Implements a simple scoreboard to track which registers are ready.
void skidInsert(ThreadID tid)
Inserts unused instructions of a thread into the skid buffer.
void writebackInsts()
Writebacks instructions.
A vector of scalar stats.
void emptyRenameInsts(ThreadID tid)
Removes instructions from rename from a thread's instruction list.
std::list< ThreadID > * activeThreads
Pointer to list of active threads.
StageStatus exeStatus
Execute status.
TimeBuffer< IEWStruct >::wire toCommit
Wire to write infromation heading to commit.
void dispatchInsts(ThreadID tid)
Dispatches instructions to IQ and LSQ.
void sortInsts()
Sorts instructions coming from rename into lists separated by thread.
bool checkStall(ThreadID tid)
Checks if any of the stall conditions are currently true.
TimeBuffer< TimeStruct >::wire toRename
Wire to write information heading to previous stages.
void squash(ThreadID tid)
Squashes instructions in IEW for a specific thread.
statistics::Scalar numSquashedInsts
Stat for total number of squashed instructions skipped at execute.
statistics::Vector writebackCount
Number of instructions that writeback.
void resetEntries()
Resets entries of the IQ and the LSQ.
void wakeCPU()
Tells the CPU to wakeup if it has descheduled itself due to no activity.
void startupStage()
Initializes stage; sends back the number of free IQ and LSQ entries.
void rescheduleMemInst(const DynInstPtr &inst)
Tells memory dependence unit that a memory instruction needs to be rescheduled.
Cycles is a wrapper class for representing cycle counts, i.e.
bool wroteToTimeBuffer
Records if IEW has written to the time buffer this cycle, so that the CPU can deschedule itself if th...
TimeBuffer< TimeStruct >::wire fromCommit
Wire to get commit's output from backwards time buffer.
statistics::Vector numLoadInsts
Stat for total number of executed load instructions.
InstructionQueue instQueue
Instruction queue.
statistics::Vector consumerInst
Number of instructions that wake up from producers.
void block(ThreadID tid)
Sets Dispatch to blocked, and signals back to other stages to block.
statistics::Scalar dispSquashedInsts
Stat for total number of squashed instructions dispatch skips.
Status _status
Overall stage status.
statistics::Vector instsToCommit
Number of instructions sent to commit.
O3CPU class, has each of the stages (fetch through commit) within it, as well as all of the time buff...
bool isDrained() const
Has the stage drained?
void squashDueToBranch(const DynInstPtr &inst, ThreadID tid)
Sends commit proper information for a squash due to a branch mispredict.
IEW(CPU *_cpu, const O3CPUParams ¶ms)
Constructs a IEW with the given parameters.
IEW handles both single threaded and SMT IEW (issue/execute/writeback).
StageStatus
Status for Issue, Execute, and Writeback stages.
std::queue< DynInstPtr > skidBuffer[MaxThreads]
Skid buffer between rename and IEW.
FUPool * fuPool
Pointer to the functional unit pool.
statistics::Scalar numInsts
Stat for total number of executed instructions.
StageStatus wbStatus
Writeback status.
void activityThisCycle()
Reports to the CPU that there is activity this cycle.
Cycles renameToIEWDelay
Rename to IEW delay.
TimeBuffer< IEWStruct > * iewQueue
IEW stage time buffer.
statistics::Scalar idleCycles
Stat for total number of idle cycles.
statistics::Formula branchMispredicts
Stat for total number of mispredicted branches detected at execute.
unsigned dispatchWidth
Width of dispatch, in instructions.
statistics::Scalar memOrderViolationEvents
Stat for total number of memory ordering violation events.
void setLastRetiredHtmUid(ThreadID tid, uint64_t htmUid)
void tick()
Ticks IEW stage, causing Dispatch, the IQ, the LSQ, Execute, and Writeback to run for one cycle.
statistics::Scalar dispatchedInsts
Stat for total number of instructions dispatched.
void printAvailableInsts()
Debug function to print instructions that are issued this cycle.
ExecutedInstStats(CPU *cpu)
statistics::Vector numNop
Number of executed nops.
unsigned wbWidth
Writeback width.
TimeBuffer< TimeStruct > * timeBuffer
Pointer to main time buffer used for backwards communication.
statistics::Scalar predictedTakenIncorrect
Stat for total number of incorrect predicted taken branches.
ProbePointArg generates a point for the class of Arg.
bool fetchRedirect[MaxThreads]
Records if there is a fetch redirect on this cycle for each thread.
statistics::Scalar squashCycles
Stat for total number of squashing cycles.
statistics::Scalar dispLoadInsts
Stat for total number of dispatched load instructions.
void setLastRetiredHtmUid(ThreadID tid, uint64_t htmUid)
TimeBuffer< IssueStruct >::wire fromIssue
Wire to read information from the issue stage time queue.
static constexpr int MaxThreads
void unblock(ThreadID tid)
Unblocks Dispatch if the skid buffer is empty, and signals back to other stages to unblock.
unsigned issueWidth
Width of issue, in instructions.
void instToCommit(const DynInstPtr &inst)
Sends an instruction to commit through the time buffer.
void drainSanityCheck() const
Perform sanity checks after a drain.
ProbePointArg< DynInstPtr > * ppExecute
To probe when instruction execution begins.
statistics::Scalar dispNonSpecInsts
Stat for total number of dispatched non speculative insts.
void blockMemInst(const DynInstPtr &inst)
Moves memory instruction onto the list of cache blocked instructions.
bool hasStoresToWB()
Returns whether or not there are any stores to write back to memory.
unsigned wbCycle
Cycle number within the queue of instructions being written back.
void cacheUnblocked()
Notifies that the cache has become unblocked.
statistics::Scalar lsqFullEvents
Stat for number of times the LSQ becomes full.
bool hasStoresToWB(ThreadID tid)
Returns if the LSQ has any stores to writeback.
unsigned wbNumInst
Index into queue of instructions being written back.
unsigned skidBufferMax
Maximum size of the skid buffer.
void deactivateStage()
Tells CPU that the IEW stage is inactive and idle.
Scoreboard * scoreboard
Scoreboard pointer.
ProbePointArg< DynInstPtr > * ppDispatch
void setRenameQueue(TimeBuffer< RenameStruct > *rq_ptr)
Sets time buffer for getting instructions coming from rename.
bool updateLSQNextCycle
Records if the LSQ needs to be updated on the next cycle, so that IEW knows if there will be activity...
ThreadID numThreads
Number of active threads.
statistics::Vector numSwp
Number of executed software prefetches.
void squashDueToMemOrder(const DynInstPtr &inst, ThreadID tid)
Sends commit proper information for a squash due to a memory order violation.
LSQ ldstQueue
Load / store queue.
bool hasStoresToWB()
Returns if the LSQ has any stores to writeback.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
void setIEWQueue(TimeBuffer< IEWStruct > *iq_ptr)
Sets time buffer to pass on instructions to commit.
void dispatch(ThreadID tid)
Determines proper actions to take given Dispatch's status.
bool updatedQueues
Records if the queues have been changed (inserted or issued insts), so that IEW knows to broadcast th...
Pool of FU's, specific to the new CPU model.
Cycles issueToExecuteDelay
Issue to execute delay.
statistics::Vector numBranches
Number of executed branches.
void activateStage()
Tells CPU that the IEW stage is active and running.
statistics::Formula numRate
Number of instructions executed per cycle.
int16_t ThreadID
Thread index/ID type.
std::string name() const
Returns the name of the IEW stage.
void setScoreboard(Scoreboard *sb_ptr)
Sets pointer to the scoreboard.
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets pointer to list of active threads.
void executeInsts()
Executes instructions.
void regProbePoints()
Registers probes.
Generated on Wed Jul 28 2021 12:10:24 for gem5 by doxygen 1.8.17