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