gem5
v19.0.0.0
|
DefaultIEW handles both single threaded and SMT IEW (issue/execute/writeback). More...
#include <iew.hh>
Public Types | |
enum | Status { Active, Inactive } |
Overall IEW stage status. More... | |
enum | StageStatus { Running, Blocked, Idle, StartSquash, Squashing, Unblocking } |
Status for Issue, Execute, and Writeback stages. More... | |
Public Member Functions | |
DefaultIEW (O3CPU *_cpu, DerivO3CPUParams *params) | |
Constructs a DefaultIEW with the given parameters. More... | |
std::string | name () const |
Returns the name of the DefaultIEW stage. More... | |
void | regStats () |
Registers statistics. More... | |
void | regProbePoints () |
Registers probes. More... | |
void | startupStage () |
Initializes stage; sends back the number of free IQ and LSQ entries. More... | |
void | clearStates (ThreadID tid) |
Clear all thread-specific states. More... | |
void | setTimeBuffer (TimeBuffer< TimeStruct > *tb_ptr) |
Sets main time buffer used for backwards communication. More... | |
void | setRenameQueue (TimeBuffer< RenameStruct > *rq_ptr) |
Sets time buffer for getting instructions coming from rename. More... | |
void | setIEWQueue (TimeBuffer< IEWStruct > *iq_ptr) |
Sets time buffer to pass on instructions to commit. More... | |
void | setActiveThreads (std::list< ThreadID > *at_ptr) |
Sets pointer to list of active threads. More... | |
void | setScoreboard (Scoreboard *sb_ptr) |
Sets pointer to the scoreboard. More... | |
void | drainSanityCheck () const |
Perform sanity checks after a drain. More... | |
bool | isDrained () const |
Has the stage drained? More... | |
void | takeOverFrom () |
Takes over from another CPU's thread. More... | |
void | squash (ThreadID tid) |
Squashes instructions in IEW for a specific thread. More... | |
void | wakeDependents (const DynInstPtr &inst) |
Wakes all dependents of a completed instruction. More... | |
void | rescheduleMemInst (const DynInstPtr &inst) |
Tells memory dependence unit that a memory instruction needs to be rescheduled. More... | |
void | replayMemInst (const DynInstPtr &inst) |
Re-executes all rescheduled memory instructions. More... | |
void | blockMemInst (const DynInstPtr &inst) |
Moves memory instruction onto the list of cache blocked instructions. More... | |
void | cacheUnblocked () |
Notifies that the cache has become unblocked. More... | |
void | instToCommit (const DynInstPtr &inst) |
Sends an instruction to commit through the time buffer. More... | |
void | skidInsert (ThreadID tid) |
Inserts unused instructions of a thread into the skid buffer. More... | |
int | skidCount () |
Returns the max of the number of entries in all of the skid buffers. More... | |
bool | skidsEmpty () |
Returns if all of the skid buffers are empty. More... | |
void | updateStatus () |
Updates overall IEW status based on all of the stages' statuses. More... | |
void | resetEntries () |
Resets entries of the IQ and the LSQ. More... | |
void | wakeCPU () |
Tells the CPU to wakeup if it has descheduled itself due to no activity. More... | |
void | activityThisCycle () |
Reports to the CPU that there is activity this cycle. More... | |
void | activateStage () |
Tells CPU that the IEW stage is active and running. More... | |
void | deactivateStage () |
Tells CPU that the IEW stage is inactive and idle. More... | |
bool | hasStoresToWB () |
Returns if the LSQ has any stores to writeback. More... | |
bool | hasStoresToWB (ThreadID tid) |
Returns if the LSQ has any stores to writeback. More... | |
void | checkMisprediction (const DynInstPtr &inst) |
Check misprediction. More... | |
void | tick () |
Ticks IEW stage, causing Dispatch, the IQ, the LSQ, Execute, and Writeback to run for one cycle. More... | |
Public Attributes | |
IQ | instQueue |
Instruction queue. More... | |
LSQ | ldstQueue |
Load / store queue. More... | |
FUPool * | fuPool |
Pointer to the functional unit pool. More... | |
bool | updateLSQNextCycle |
Records if the LSQ needs to be updated on the next cycle, so that IEW knows if there will be activity on the next cycle. More... | |
Private Types | |
typedef Impl::CPUPol | CPUPol |
typedef Impl::DynInstPtr | DynInstPtr |
typedef Impl::O3CPU | O3CPU |
typedef CPUPol::IQ | IQ |
typedef CPUPol::RenameMap | RenameMap |
typedef CPUPol::LSQ | LSQ |
typedef CPUPol::TimeStruct | TimeStruct |
typedef CPUPol::IEWStruct | IEWStruct |
typedef CPUPol::RenameStruct | RenameStruct |
typedef CPUPol::IssueStruct | IssueStruct |
Private Member Functions | |
void | squashDueToBranch (const DynInstPtr &inst, ThreadID tid) |
Sends commit proper information for a squash due to a branch mispredict. More... | |
void | squashDueToMemOrder (const DynInstPtr &inst, ThreadID tid) |
Sends commit proper information for a squash due to a memory order violation. More... | |
void | block (ThreadID tid) |
Sets Dispatch to blocked, and signals back to other stages to block. More... | |
void | unblock (ThreadID tid) |
Unblocks Dispatch if the skid buffer is empty, and signals back to other stages to unblock. More... | |
void | dispatch (ThreadID tid) |
Determines proper actions to take given Dispatch's status. More... | |
void | dispatchInsts (ThreadID tid) |
Dispatches instructions to IQ and LSQ. More... | |
void | executeInsts () |
Executes instructions. More... | |
void | writebackInsts () |
Writebacks instructions. More... | |
unsigned | validInstsFromRename () |
Returns the number of valid, non-squashed instructions coming from rename to dispatch. More... | |
bool | checkStall (ThreadID tid) |
Checks if any of the stall conditions are currently true. More... | |
void | checkSignalsAndUpdate (ThreadID tid) |
Processes inputs and changes state accordingly. More... | |
void | emptyRenameInsts (ThreadID tid) |
Removes instructions from rename from a thread's instruction list. More... | |
void | sortInsts () |
Sorts instructions coming from rename into lists separated by thread. More... | |
void | updateExeInstStats (const DynInstPtr &inst) |
Updates execution stats based on the instruction. More... | |
void | printAvailableInsts () |
Debug function to print instructions that are issued this cycle. More... | |
Private Attributes | |
Status | _status |
Overall stage status. More... | |
StageStatus | dispatchStatus [Impl::MaxThreads] |
Dispatch status. More... | |
StageStatus | exeStatus |
Execute status. More... | |
StageStatus | wbStatus |
Writeback status. More... | |
ProbePointArg< DynInstPtr > * | ppMispredict |
Probe points. More... | |
ProbePointArg< DynInstPtr > * | ppDispatch |
ProbePointArg< DynInstPtr > * | ppExecute |
To probe when instruction execution begins. More... | |
ProbePointArg< DynInstPtr > * | ppToCommit |
To probe when instruction execution is complete. More... | |
TimeBuffer< TimeStruct > * | timeBuffer |
Pointer to main time buffer used for backwards communication. More... | |
TimeBuffer< TimeStruct >::wire | toFetch |
Wire to write information heading to previous stages. More... | |
TimeBuffer< TimeStruct >::wire | fromCommit |
Wire to get commit's output from backwards time buffer. More... | |
TimeBuffer< TimeStruct >::wire | toRename |
Wire to write information heading to previous stages. More... | |
TimeBuffer< RenameStruct > * | renameQueue |
Rename instruction queue interface. More... | |
TimeBuffer< RenameStruct >::wire | fromRename |
Wire to get rename's output from rename queue. More... | |
TimeBuffer< IssueStruct > | issueToExecQueue |
Issue stage queue. More... | |
TimeBuffer< IssueStruct >::wire | fromIssue |
Wire to read information from the issue stage time queue. More... | |
TimeBuffer< IEWStruct > * | iewQueue |
IEW stage time buffer. More... | |
TimeBuffer< IEWStruct >::wire | toCommit |
Wire to write infromation heading to commit. More... | |
std::queue< DynInstPtr > | insts [Impl::MaxThreads] |
Queue of all instructions coming from rename this cycle. More... | |
std::queue< DynInstPtr > | skidBuffer [Impl::MaxThreads] |
Skid buffer between rename and IEW. More... | |
Scoreboard * | scoreboard |
Scoreboard pointer. More... | |
O3CPU * | cpu |
CPU pointer. More... | |
bool | wroteToTimeBuffer |
Records if IEW has written to the time buffer this cycle, so that the CPU can deschedule itself if there is no activity. More... | |
bool | fetchRedirect [Impl::MaxThreads] |
Records if there is a fetch redirect on this cycle for each thread. More... | |
bool | updatedQueues |
Records if the queues have been changed (inserted or issued insts), so that IEW knows to broadcast the updated amount of free entries. More... | |
Cycles | commitToIEWDelay |
Commit to IEW delay. More... | |
Cycles | renameToIEWDelay |
Rename to IEW delay. More... | |
Cycles | issueToExecuteDelay |
Issue to execute delay. More... | |
unsigned | dispatchWidth |
Width of dispatch, in instructions. More... | |
unsigned | issueWidth |
Width of issue, in instructions. More... | |
unsigned | wbNumInst |
Index into queue of instructions being written back. More... | |
unsigned | wbCycle |
Cycle number within the queue of instructions being written back. More... | |
unsigned | wbWidth |
Writeback width. More... | |
ThreadID | numThreads |
Number of active threads. More... | |
std::list< ThreadID > * | activeThreads |
Pointer to list of active threads. More... | |
unsigned | skidBufferMax |
Maximum size of the skid buffer. More... | |
Stats::Scalar | iewIdleCycles |
Stat for total number of idle cycles. More... | |
Stats::Scalar | iewSquashCycles |
Stat for total number of squashing cycles. More... | |
Stats::Scalar | iewBlockCycles |
Stat for total number of blocking cycles. More... | |
Stats::Scalar | iewUnblockCycles |
Stat for total number of unblocking cycles. More... | |
Stats::Scalar | iewDispatchedInsts |
Stat for total number of instructions dispatched. More... | |
Stats::Scalar | iewDispSquashedInsts |
Stat for total number of squashed instructions dispatch skips. More... | |
Stats::Scalar | iewDispLoadInsts |
Stat for total number of dispatched load instructions. More... | |
Stats::Scalar | iewDispStoreInsts |
Stat for total number of dispatched store instructions. More... | |
Stats::Scalar | iewDispNonSpecInsts |
Stat for total number of dispatched non speculative instructions. More... | |
Stats::Scalar | iewIQFullEvents |
Stat for number of times the IQ becomes full. More... | |
Stats::Scalar | iewLSQFullEvents |
Stat for number of times the LSQ becomes full. More... | |
Stats::Scalar | memOrderViolationEvents |
Stat for total number of memory ordering violation events. More... | |
Stats::Scalar | predictedTakenIncorrect |
Stat for total number of incorrect predicted taken branches. More... | |
Stats::Scalar | predictedNotTakenIncorrect |
Stat for total number of incorrect predicted not taken branches. More... | |
Stats::Formula | branchMispredicts |
Stat for total number of mispredicted branches detected at execute. More... | |
Stats::Scalar | iewExecutedInsts |
Stat for total number of executed instructions. More... | |
Stats::Vector | iewExecLoadInsts |
Stat for total number of executed load instructions. More... | |
Stats::Scalar | iewExecSquashedInsts |
Stat for total number of executed store instructions. More... | |
Stats::Vector | iewExecutedSwp |
Number of executed software prefetches. More... | |
Stats::Vector | iewExecutedNop |
Number of executed nops. More... | |
Stats::Vector | iewExecutedRefs |
Number of executed meomory references. More... | |
Stats::Vector | iewExecutedBranches |
Number of executed branches. More... | |
Stats::Formula | iewExecStoreInsts |
Number of executed store instructions. More... | |
Stats::Formula | iewExecRate |
Number of instructions executed per cycle. More... | |
Stats::Vector | iewInstsToCommit |
Number of instructions sent to commit. More... | |
Stats::Vector | writebackCount |
Number of instructions that writeback. More... | |
Stats::Vector | producerInst |
Number of instructions that wake consumers. More... | |
Stats::Vector | consumerInst |
Number of instructions that wake up from producers. More... | |
Stats::Formula | wbRate |
Number of instructions per cycle written back. More... | |
Stats::Formula | wbFanout |
Average number of woken instructions per writeback. More... | |
DefaultIEW handles both single threaded and SMT IEW (issue/execute/writeback).
It handles the dispatching of instructions to the LSQ/IQ as part of the issue stage, and has the IQ try to issue instructions each cycle. The execute latency is actually tied into the issue latency to allow the IQ to be able to do back-to-back scheduling without having to speculatively schedule instructions. This happens by having the IQ have access to the functional units, and the IQ gets the execution latencies from the FUs when it issues instructions. Instructions reach the execute stage on the last cycle of their execution, which is when the IQ knows to wake up any dependent instructions, allowing back to back scheduling. The execute portion of IEW separates memory instructions from non-memory instructions, either telling the LSQ to execute the instruction, or executing the instruction directly. The writeback portion of IEW completes the instructions by waking up any dependents, and marking the register ready on the scoreboard.
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
enum DefaultIEW::StageStatus |
enum DefaultIEW::Status |
DefaultIEW< Impl >::DefaultIEW | ( | O3CPU * | _cpu, |
DerivO3CPUParams * | params | ||
) |
Constructs a DefaultIEW with the given parameters.
Definition at line 68 of file iew_impl.hh.
References DefaultIEW< Impl >::_status, DefaultIEW< Impl >::Active, DefaultIEW< Impl >::dispatchStatus, DefaultIEW< Impl >::dispatchWidth, DefaultIEW< Impl >::exeStatus, fatal, DefaultIEW< Impl >::fetchRedirect, DefaultIEW< Impl >::fromIssue, TimeBuffer< T >::getWire(), DefaultIEW< Impl >::Idle, DefaultIEW< Impl >::instQueue, DefaultIEW< Impl >::issueToExecQueue, DefaultIEW< Impl >::issueToExecuteDelay, DefaultIEW< Impl >::issueWidth, DefaultIEW< Impl >::renameToIEWDelay, DefaultIEW< Impl >::Running, DefaultIEW< Impl >::skidBufferMax, DefaultIEW< Impl >::updateLSQNextCycle, DefaultIEW< Impl >::wbStatus, and DefaultIEW< Impl >::wbWidth.
|
inline |
Tells CPU that the IEW stage is active and running.
Definition at line 897 of file iew_impl.hh.
References DefaultIEW< Impl >::cpu, and DPRINTF.
Referenced by DefaultIEW< Impl >::updateStatus().
void DefaultIEW< Impl >::activityThisCycle | ( | ) |
Reports to the CPU that there is activity this cycle.
Definition at line 889 of file iew_impl.hh.
References DefaultIEW< Impl >::cpu, and DPRINTF.
Referenced by DefaultIEW< Impl >::executeInsts().
|
private |
Sets Dispatch to blocked, and signals back to other stages to block.
Definition at line 552 of file iew_impl.hh.
References DefaultIEW< Impl >::Blocked, DefaultIEW< Impl >::dispatchStatus, DPRINTF, DefaultIEW< Impl >::skidInsert(), DefaultIEW< Impl >::toRename, DefaultIEW< Impl >::Unblocking, and DefaultIEW< Impl >::wroteToTimeBuffer.
Referenced by DefaultIEW< Impl >::checkSignalsAndUpdate(), DefaultIEW< Impl >::dispatchInsts(), and DefaultIEW< Impl >::hasStoresToWB().
void DefaultIEW< Impl >::blockMemInst | ( | const DynInstPtr & | inst | ) |
Moves memory instruction onto the list of cache blocked instructions.
Definition at line 609 of file iew_impl.hh.
References DefaultIEW< Impl >::instQueue.
void DefaultIEW< Impl >::cacheUnblocked | ( | ) |
Notifies that the cache has become unblocked.
Definition at line 616 of file iew_impl.hh.
References DefaultIEW< Impl >::instQueue.
void DefaultIEW< Impl >::checkMisprediction | ( | const DynInstPtr & | inst | ) |
Check misprediction.
Definition at line 1666 of file iew_impl.hh.
References DPRINTF, DefaultIEW< Impl >::fetchRedirect, DefaultIEW< Impl >::predictedNotTakenIncorrect, DefaultIEW< Impl >::predictedTakenIncorrect, DefaultIEW< Impl >::squashDueToBranch(), and DefaultIEW< Impl >::toCommit.
Referenced by DefaultIEW< Impl >::hasStoresToWB().
|
private |
Processes inputs and changes state accordingly.
Definition at line 782 of file iew_impl.hh.
References DefaultIEW< Impl >::block(), DefaultIEW< Impl >::Blocked, DefaultIEW< Impl >::checkStall(), DefaultIEW< Impl >::dispatchStatus, DPRINTF, DefaultIEW< Impl >::emptyRenameInsts(), DefaultIEW< Impl >::fetchRedirect, DefaultIEW< Impl >::fromCommit, DefaultIEW< Impl >::Running, DefaultIEW< Impl >::squash(), DefaultIEW< Impl >::Squashing, DefaultIEW< Impl >::toRename, DefaultIEW< Impl >::unblock(), DefaultIEW< Impl >::Unblocking, and DefaultIEW< Impl >::wroteToTimeBuffer.
Referenced by DefaultIEW< Impl >::hasStoresToWB(), and DefaultIEW< Impl >::tick().
|
private |
Checks if any of the stall conditions are currently true.
Definition at line 765 of file iew_impl.hh.
References DPRINTF, DefaultIEW< Impl >::fromCommit, and DefaultIEW< Impl >::instQueue.
Referenced by DefaultIEW< Impl >::checkSignalsAndUpdate(), and DefaultIEW< Impl >::hasStoresToWB().
void DefaultIEW< Impl >::clearStates | ( | ThreadID | tid | ) |
Clear all thread-specific states.
Definition at line 328 of file iew_impl.hh.
References DefaultIEW< Impl >::instQueue, DefaultIEW< Impl >::ldstQueue, LSQ< Impl >::numFreeLoadEntries(), LSQ< Impl >::numFreeStoreEntries(), and DefaultIEW< Impl >::toRename.
|
inline |
Tells CPU that the IEW stage is inactive and idle.
Definition at line 905 of file iew_impl.hh.
References DefaultIEW< Impl >::cpu, and DPRINTF.
Referenced by DefaultIEW< Impl >::updateStatus().
|
private |
Determines proper actions to take given Dispatch's status.
Definition at line 913 of file iew_impl.hh.
References DefaultIEW< Impl >::Blocked, DefaultIEW< Impl >::dispatchInsts(), DefaultIEW< Impl >::dispatchStatus, DPRINTF, DefaultIEW< Impl >::Idle, DefaultIEW< Impl >::iewBlockCycles, DefaultIEW< Impl >::iewSquashCycles, DefaultIEW< Impl >::iewUnblockCycles, DefaultIEW< Impl >::Running, DefaultIEW< Impl >::skidInsert(), DefaultIEW< Impl >::skidsEmpty(), DefaultIEW< Impl >::Squashing, DefaultIEW< Impl >::unblock(), DefaultIEW< Impl >::Unblocking, and DefaultIEW< Impl >::validInstsFromRename().
Referenced by DefaultIEW< Impl >::hasStoresToWB(), and DefaultIEW< Impl >::tick().
|
private |
Dispatches instructions to IQ and LSQ.
Definition at line 961 of file iew_impl.hh.
References DefaultIEW< Impl >::block(), curTick(), DefaultIEW< Impl >::dispatchStatus, DefaultIEW< Impl >::dispatchWidth, DPRINTF, DefaultIEW< Impl >::Idle, DefaultIEW< Impl >::iewDispatchedInsts, DefaultIEW< Impl >::iewDispLoadInsts, DefaultIEW< Impl >::iewDispNonSpecInsts, DefaultIEW< Impl >::iewDispSquashedInsts, DefaultIEW< Impl >::iewDispStoreInsts, DefaultIEW< Impl >::iewExecutedNop, DefaultIEW< Impl >::iewIQFullEvents, DefaultIEW< Impl >::iewLSQFullEvents, LSQ< Impl >::insertLoad(), LSQ< Impl >::insertStore(), DefaultIEW< Impl >::instQueue, DefaultIEW< Impl >::insts, DefaultIEW< Impl >::ldstQueue, LSQ< Impl >::lqFull(), ProbePointArg< Arg >::notify(), DefaultIEW< Impl >::ppDispatch, DefaultIEW< Impl >::Running, DefaultIEW< Impl >::skidBuffer, LSQ< Impl >::sqFull(), DefaultIEW< Impl >::toRename, DefaultIEW< Impl >::Unblocking, and DefaultIEW< Impl >::updatedQueues.
Referenced by DefaultIEW< Impl >::dispatch(), and DefaultIEW< Impl >::hasStoresToWB().
void DefaultIEW< Impl >::drainSanityCheck | ( | ) | const |
Perform sanity checks after a drain.
Definition at line 425 of file iew_impl.hh.
References LSQ< Impl >::drainSanityCheck(), DefaultIEW< Impl >::instQueue, DefaultIEW< Impl >::isDrained(), and DefaultIEW< Impl >::ldstQueue.
|
private |
Removes instructions from rename from a thread's instruction list.
Definition at line 860 of file iew_impl.hh.
References DPRINTF, DefaultIEW< Impl >::insts, and DefaultIEW< Impl >::toRename.
Referenced by DefaultIEW< Impl >::checkSignalsAndUpdate(), DefaultIEW< Impl >::hasStoresToWB(), and DefaultIEW< Impl >::squash().
|
private |
Executes instructions.
In the case of memory operations, it informs the LSQ to execute the instructions. Also handles any redirects that occur due to the executed instructions.
Definition at line 1207 of file iew_impl.hh.
References DefaultIEW< Impl >::activeThreads, DefaultIEW< Impl >::activityThisCycle(), DefaultIEW< Impl >::cpu, DPRINTF, LSQ< Impl >::executeLoad(), LSQ< Impl >::executeStore(), DefaultIEW< Impl >::exeStatus, DefaultIEW< Impl >::fetchRedirect, DefaultIEW< Impl >::fromIssue, LSQ< Impl >::getMemDepViolator(), DefaultIEW< Impl >::Idle, DefaultIEW< Impl >::iewExecSquashedInsts, DefaultIEW< Impl >::instQueue, DefaultIEW< Impl >::instToCommit(), DefaultIEW< Impl >::ldstQueue, DefaultIEW< Impl >::memOrderViolationEvents, NoFault, ProbePointArg< Arg >::notify(), panic, DefaultIEW< Impl >::ppExecute, DefaultIEW< Impl >::ppMispredict, DefaultIEW< Impl >::predictedNotTakenIncorrect, DefaultIEW< Impl >::predictedTakenIncorrect, DefaultIEW< Impl >::Running, TimeBuffer< T >::size, DefaultIEW< Impl >::squashDueToBranch(), DefaultIEW< Impl >::squashDueToMemOrder(), DefaultIEW< Impl >::toCommit, DefaultIEW< Impl >::updatedQueues, DefaultIEW< Impl >::updateExeInstStats(), LSQ< Impl >::violation(), DefaultIEW< Impl >::wbCycle, and DefaultIEW< Impl >::wbNumInst.
Referenced by DefaultIEW< Impl >::hasStoresToWB(), and DefaultIEW< Impl >::tick().
|
inline |
Returns if the LSQ has any stores to writeback.
Definition at line 230 of file iew.hh.
References LSQ< Impl >::hasStoresToWB(), and DefaultIEW< Impl >::ldstQueue.
|
inline |
Returns if the LSQ has any stores to writeback.
Definition at line 233 of file iew.hh.
References DefaultIEW< Impl >::block(), DefaultIEW< Impl >::checkMisprediction(), DefaultIEW< Impl >::checkSignalsAndUpdate(), DefaultIEW< Impl >::checkStall(), DefaultIEW< Impl >::dispatch(), DefaultIEW< Impl >::dispatchInsts(), DefaultIEW< Impl >::emptyRenameInsts(), DefaultIEW< Impl >::executeInsts(), LSQ< Impl >::hasStoresToWB(), DefaultIEW< Impl >::ldstQueue, DefaultIEW< Impl >::sortInsts(), DefaultIEW< Impl >::squashDueToBranch(), DefaultIEW< Impl >::squashDueToMemOrder(), DefaultIEW< Impl >::tick(), DefaultIEW< Impl >::unblock(), DefaultIEW< Impl >::updateExeInstStats(), DefaultIEW< Impl >::validInstsFromRename(), and DefaultIEW< Impl >::writebackInsts().
void DefaultIEW< Impl >::instToCommit | ( | const DynInstPtr & | inst | ) |
Sends an instruction to commit through the time buffer.
Definition at line 623 of file iew_impl.hh.
References DPRINTF, DefaultIEW< Impl >::iewQueue, DefaultIEW< Impl >::insts, DefaultIEW< Impl >::wbCycle, DefaultIEW< Impl >::wbNumInst, and DefaultIEW< Impl >::wbWidth.
Referenced by DefaultIEW< Impl >::executeInsts().
bool DefaultIEW< Impl >::isDrained | ( | ) | const |
Has the stage drained?
Definition at line 396 of file iew_impl.hh.
References DefaultIEW< Impl >::dispatchStatus, DPRINTF, DefaultIEW< Impl >::fuPool, DefaultIEW< Impl >::instQueue, DefaultIEW< Impl >::insts, FUPool::isDrained(), LSQ< Impl >::isDrained(), DefaultIEW< Impl >::ldstQueue, DefaultIEW< Impl >::numThreads, DefaultIEW< Impl >::Running, and DefaultIEW< Impl >::skidBuffer.
Referenced by DefaultIEW< Impl >::drainSanityCheck().
std::string DefaultIEW< Impl >::name | ( | ) | const |
Returns the name of the DefaultIEW stage.
Definition at line 119 of file iew_impl.hh.
References DefaultIEW< Impl >::cpu.
Referenced by DefaultIEW< Impl >::regStats().
|
private |
Debug function to print instructions that are issued this cycle.
Definition at line 1184 of file iew_impl.hh.
References DefaultIEW< Impl >::fromIssue.
void DefaultIEW< Impl >::regProbePoints | ( | ) |
Registers probes.
Probe point with dynamic instruction as the argument used to probe when an instruction starts to execute.
Probe point with dynamic instruction as the argument used to probe when an instruction execution completes and it is marked ready to commit.
Definition at line 126 of file iew_impl.hh.
References DefaultIEW< Impl >::cpu, DefaultIEW< Impl >::ppDispatch, DefaultIEW< Impl >::ppExecute, DefaultIEW< Impl >::ppMispredict, and DefaultIEW< Impl >::ppToCommit.
void DefaultIEW< Impl >::regStats | ( | ) |
Registers statistics.
Definition at line 146 of file iew_impl.hh.
References DefaultIEW< Impl >::branchMispredicts, DefaultIEW< Impl >::consumerInst, DefaultIEW< Impl >::cpu, Stats::DataWrap< Derived, InfoProxyType >::desc(), Stats::DataWrap< Derived, InfoProxyType >::flags(), DefaultIEW< Impl >::iewBlockCycles, DefaultIEW< Impl >::iewDispatchedInsts, DefaultIEW< Impl >::iewDispLoadInsts, DefaultIEW< Impl >::iewDispNonSpecInsts, DefaultIEW< Impl >::iewDispSquashedInsts, DefaultIEW< Impl >::iewDispStoreInsts, DefaultIEW< Impl >::iewExecLoadInsts, DefaultIEW< Impl >::iewExecRate, DefaultIEW< Impl >::iewExecSquashedInsts, DefaultIEW< Impl >::iewExecStoreInsts, DefaultIEW< Impl >::iewExecutedBranches, DefaultIEW< Impl >::iewExecutedInsts, DefaultIEW< Impl >::iewExecutedNop, DefaultIEW< Impl >::iewExecutedRefs, DefaultIEW< Impl >::iewExecutedSwp, DefaultIEW< Impl >::iewIdleCycles, DefaultIEW< Impl >::iewInstsToCommit, DefaultIEW< Impl >::iewIQFullEvents, DefaultIEW< Impl >::iewLSQFullEvents, DefaultIEW< Impl >::iewSquashCycles, DefaultIEW< Impl >::iewUnblockCycles, Stats::VectorBase< Derived, Stor >::init(), DefaultIEW< Impl >::instQueue, DefaultIEW< Impl >::ldstQueue, DefaultIEW< Impl >::memOrderViolationEvents, DefaultIEW< Impl >::name(), Stats::DataWrap< Derived, InfoProxyType >::name(), DefaultIEW< Impl >::predictedNotTakenIncorrect, DefaultIEW< Impl >::predictedTakenIncorrect, DefaultIEW< Impl >::producerInst, LSQ< Impl >::regStats(), Stats::total, DefaultIEW< Impl >::wbFanout, DefaultIEW< Impl >::wbRate, and DefaultIEW< Impl >::writebackCount.
void DefaultIEW< Impl >::replayMemInst | ( | const DynInstPtr & | inst | ) |
Re-executes all rescheduled memory instructions.
Definition at line 602 of file iew_impl.hh.
References DefaultIEW< Impl >::instQueue.
void DefaultIEW< Impl >::rescheduleMemInst | ( | const DynInstPtr & | inst | ) |
Tells memory dependence unit that a memory instruction needs to be rescheduled.
It will re-execute once replayMemInst() is called.
Definition at line 595 of file iew_impl.hh.
References DefaultIEW< Impl >::instQueue.
void DefaultIEW< Impl >::resetEntries | ( | ) |
Resets entries of the IQ and the LSQ.
void DefaultIEW< Impl >::setActiveThreads | ( | std::list< ThreadID > * | at_ptr | ) |
Sets pointer to list of active threads.
Definition at line 379 of file iew_impl.hh.
References DefaultIEW< Impl >::activeThreads, DefaultIEW< Impl >::instQueue, DefaultIEW< Impl >::ldstQueue, and LSQ< Impl >::setActiveThreads().
void DefaultIEW< Impl >::setIEWQueue | ( | TimeBuffer< IEWStruct > * | iq_ptr | ) |
Sets time buffer to pass on instructions to commit.
Definition at line 369 of file iew_impl.hh.
References TimeBuffer< T >::getWire(), DefaultIEW< Impl >::iewQueue, and DefaultIEW< Impl >::toCommit.
void DefaultIEW< Impl >::setRenameQueue | ( | TimeBuffer< RenameStruct > * | rq_ptr | ) |
Sets time buffer for getting instructions coming from rename.
Definition at line 359 of file iew_impl.hh.
References DefaultIEW< Impl >::fromRename, TimeBuffer< T >::getWire(), DefaultIEW< Impl >::renameQueue, and DefaultIEW< Impl >::renameToIEWDelay.
void DefaultIEW< Impl >::setScoreboard | ( | Scoreboard * | sb_ptr | ) |
Sets pointer to the scoreboard.
Definition at line 389 of file iew_impl.hh.
References DefaultIEW< Impl >::scoreboard.
void DefaultIEW< Impl >::setTimeBuffer | ( | TimeBuffer< TimeStruct > * | tb_ptr | ) |
Sets main time buffer used for backwards communication.
Definition at line 341 of file iew_impl.hh.
References DefaultIEW< Impl >::commitToIEWDelay, DefaultIEW< Impl >::fromCommit, TimeBuffer< T >::getWire(), DefaultIEW< Impl >::instQueue, DefaultIEW< Impl >::timeBuffer, DefaultIEW< Impl >::toFetch, and DefaultIEW< Impl >::toRename.
int DefaultIEW< Impl >::skidCount | ( | ) |
Returns the max of the number of entries in all of the skid buffers.
Definition at line 688 of file iew_impl.hh.
References DefaultIEW< Impl >::activeThreads, and DefaultIEW< Impl >::skidBuffer.
void DefaultIEW< Impl >::skidInsert | ( | ThreadID | tid | ) |
Inserts unused instructions of a thread into the skid buffer.
Definition at line 666 of file iew_impl.hh.
References DPRINTF, DefaultIEW< Impl >::insts, DefaultIEW< Impl >::skidBuffer, and DefaultIEW< Impl >::skidBufferMax.
Referenced by DefaultIEW< Impl >::block(), and DefaultIEW< Impl >::dispatch().
bool DefaultIEW< Impl >::skidsEmpty | ( | ) |
Returns if all of the skid buffers are empty.
Definition at line 707 of file iew_impl.hh.
References DefaultIEW< Impl >::activeThreads, and DefaultIEW< Impl >::skidBuffer.
Referenced by DefaultIEW< Impl >::dispatch().
|
private |
Sorts instructions coming from rename into lists separated by thread.
Definition at line 846 of file iew_impl.hh.
References DefaultIEW< Impl >::fromRename, ArmISA::i, DefaultIEW< Impl >::insts, DefaultIEW< Impl >::numThreads, and TimeBuffer< T >::size.
Referenced by DefaultIEW< Impl >::hasStoresToWB(), and DefaultIEW< Impl >::tick().
void DefaultIEW< Impl >::squash | ( | ThreadID | tid | ) |
Squashes instructions in IEW for a specific thread.
Definition at line 463 of file iew_impl.hh.
References DPRINTF, DefaultIEW< Impl >::emptyRenameInsts(), DefaultIEW< Impl >::fromCommit, DefaultIEW< Impl >::instQueue, DefaultIEW< Impl >::ldstQueue, DefaultIEW< Impl >::skidBuffer, LSQ< Impl >::squash(), DefaultIEW< Impl >::toRename, and DefaultIEW< Impl >::updatedQueues.
Referenced by DefaultIEW< Impl >::checkSignalsAndUpdate().
|
private |
Sends commit proper information for a squash due to a branch mispredict.
Definition at line 499 of file iew_impl.hh.
References AlphaISA::advancePC(), DPRINTF, MipsISA::pc, DefaultIEW< Impl >::toCommit, and DefaultIEW< Impl >::wroteToTimeBuffer.
Referenced by DefaultIEW< Impl >::checkMisprediction(), DefaultIEW< Impl >::executeInsts(), and DefaultIEW< Impl >::hasStoresToWB().
|
private |
Sends commit proper information for a squash due to a memory order violation.
Definition at line 525 of file iew_impl.hh.
References DPRINTF, DefaultIEW< Impl >::toCommit, and DefaultIEW< Impl >::wroteToTimeBuffer.
Referenced by DefaultIEW< Impl >::executeInsts(), and DefaultIEW< Impl >::hasStoresToWB().
void DefaultIEW< Impl >::startupStage | ( | ) |
Initializes stage; sends back the number of free IQ and LSQ entries.
Definition at line 306 of file iew_impl.hh.
References DefaultIEW< Impl >::cpu, LSQ< Impl >::getDataPort(), DefaultIEW< Impl >::instQueue, DefaultIEW< Impl >::ldstQueue, LSQ< Impl >::numFreeLoadEntries(), LSQ< Impl >::numFreeStoreEntries(), DefaultIEW< Impl >::numThreads, and DefaultIEW< Impl >::toRename.
Referenced by DefaultIEW< Impl >::takeOverFrom().
void DefaultIEW< Impl >::takeOverFrom | ( | ) |
Takes over from another CPU's thread.
Definition at line 435 of file iew_impl.hh.
References DefaultIEW< Impl >::_status, DefaultIEW< Impl >::Active, TimeBuffer< T >::advance(), DefaultIEW< Impl >::cpu, DefaultIEW< Impl >::dispatchStatus, DefaultIEW< Impl >::exeStatus, DefaultIEW< Impl >::fetchRedirect, DefaultIEW< Impl >::fuPool, TimeBuffer< T >::getSize(), ArmISA::i, DefaultIEW< Impl >::Idle, DefaultIEW< Impl >::instQueue, DefaultIEW< Impl >::issueToExecQueue, DefaultIEW< Impl >::ldstQueue, DefaultIEW< Impl >::numThreads, DefaultIEW< Impl >::Running, DefaultIEW< Impl >::startupStage(), FUPool::takeOverFrom(), LSQ< Impl >::takeOverFrom(), DefaultIEW< Impl >::updateLSQNextCycle, and DefaultIEW< Impl >::wbStatus.
void DefaultIEW< Impl >::tick | ( | ) |
Ticks IEW stage, causing Dispatch, the IQ, the LSQ, Execute, and Writeback to run for one cycle.
Definition at line 1504 of file iew_impl.hh.
References DefaultIEW< Impl >::activeThreads, TimeBuffer< T >::advance(), DefaultIEW< Impl >::checkSignalsAndUpdate(), LSQ< Impl >::commitLoads(), LSQ< Impl >::commitStores(), DefaultIEW< Impl >::cpu, DefaultIEW< Impl >::dispatch(), DPRINTF, DefaultIEW< Impl >::executeInsts(), DefaultIEW< Impl >::exeStatus, DefaultIEW< Impl >::fromCommit, DefaultIEW< Impl >::fuPool, LSQ< Impl >::getCount(), DefaultIEW< Impl >::Idle, DefaultIEW< Impl >::instQueue, DefaultIEW< Impl >::issueToExecQueue, DefaultIEW< Impl >::ldstQueue, LSQ< Impl >::numFreeLoadEntries(), LSQ< Impl >::numFreeStoreEntries(), FUPool::processFreeUnits(), DefaultIEW< Impl >::Running, DefaultIEW< Impl >::sortInsts(), DefaultIEW< Impl >::Squashing, LSQ< Impl >::tick(), DefaultIEW< Impl >::toFetch, DefaultIEW< Impl >::toRename, DefaultIEW< Impl >::updatedQueues, DefaultIEW< Impl >::updateLSQNextCycle, DefaultIEW< Impl >::updateStatus(), DefaultIEW< Impl >::wbCycle, DefaultIEW< Impl >::wbNumInst, DefaultIEW< Impl >::writebackInsts(), LSQ< Impl >::writebackStores(), and DefaultIEW< Impl >::wroteToTimeBuffer.
Referenced by DefaultIEW< Impl >::hasStoresToWB().
|
private |
Unblocks Dispatch if the skid buffer is empty, and signals back to other stages to unblock.
Definition at line 571 of file iew_impl.hh.
References DefaultIEW< Impl >::dispatchStatus, DPRINTF, DefaultIEW< Impl >::Running, DefaultIEW< Impl >::skidBuffer, DefaultIEW< Impl >::toRename, and DefaultIEW< Impl >::wroteToTimeBuffer.
Referenced by DefaultIEW< Impl >::checkSignalsAndUpdate(), DefaultIEW< Impl >::dispatch(), and DefaultIEW< Impl >::hasStoresToWB().
|
private |
Updates execution stats based on the instruction.
Definition at line 1634 of file iew_impl.hh.
References curTick(), DTRACE, DefaultIEW< Impl >::iewExecLoadInsts, DefaultIEW< Impl >::iewExecutedBranches, DefaultIEW< Impl >::iewExecutedInsts, and DefaultIEW< Impl >::iewExecutedRefs.
Referenced by DefaultIEW< Impl >::executeInsts(), and DefaultIEW< Impl >::hasStoresToWB().
void DefaultIEW< Impl >::updateStatus | ( | ) |
Updates overall IEW status based on all of the stages' statuses.
Definition at line 724 of file iew_impl.hh.
References DefaultIEW< Impl >::_status, DefaultIEW< Impl >::activateStage(), DefaultIEW< Impl >::Active, DefaultIEW< Impl >::activeThreads, DefaultIEW< Impl >::deactivateStage(), DefaultIEW< Impl >::dispatchStatus, DPRINTF, DefaultIEW< Impl >::Inactive, DefaultIEW< Impl >::instQueue, DefaultIEW< Impl >::ldstQueue, DefaultIEW< Impl >::Unblocking, and LSQ< Impl >::willWB().
Referenced by DefaultIEW< Impl >::tick().
|
private |
Returns the number of valid, non-squashed instructions coming from rename to dispatch.
Definition at line 652 of file iew_impl.hh.
References DefaultIEW< Impl >::fromRename, ArmISA::i, and TimeBuffer< T >::size.
Referenced by DefaultIEW< Impl >::dispatch(), and DefaultIEW< Impl >::hasStoresToWB().
void DefaultIEW< Impl >::wakeCPU | ( | ) |
Tells the CPU to wakeup if it has descheduled itself due to no activity.
Used mainly by the LdWritebackEvent.
Definition at line 882 of file iew_impl.hh.
References DefaultIEW< Impl >::cpu.
void DefaultIEW< Impl >::wakeDependents | ( | const DynInstPtr & | inst | ) |
Wakes all dependents of a completed instruction.
Definition at line 588 of file iew_impl.hh.
References DefaultIEW< Impl >::instQueue.
|
private |
Writebacks instructions.
In our model, the instruction's execute() function atomically reads registers, executes, and writes registers. Thus this writeback only wakes up dependent instructions, and informs the scoreboard of registers becoming ready.
Definition at line 1454 of file iew_impl.hh.
References DefaultIEW< Impl >::consumerInst, DPRINTF, ArmISA::i, DefaultIEW< Impl >::iewInstsToCommit, DefaultIEW< Impl >::instQueue, NoFault, ProbePointArg< Arg >::notify(), DefaultIEW< Impl >::ppToCommit, DefaultIEW< Impl >::producerInst, DefaultIEW< Impl >::scoreboard, Scoreboard::setReg(), DefaultIEW< Impl >::toCommit, DefaultIEW< Impl >::wbWidth, and DefaultIEW< Impl >::writebackCount.
Referenced by DefaultIEW< Impl >::hasStoresToWB(), and DefaultIEW< Impl >::tick().
|
private |
Overall stage status.
Definition at line 118 of file iew.hh.
Referenced by DefaultIEW< Impl >::DefaultIEW(), DefaultIEW< Impl >::takeOverFrom(), and DefaultIEW< Impl >::updateStatus().
|
private |
Pointer to list of active threads.
Definition at line 416 of file iew.hh.
Referenced by DefaultIEW< Impl >::executeInsts(), DefaultIEW< Impl >::setActiveThreads(), DefaultIEW< Impl >::skidCount(), DefaultIEW< Impl >::skidsEmpty(), DefaultIEW< Impl >::tick(), and DefaultIEW< Impl >::updateStatus().
|
private |
Stat for total number of mispredicted branches detected at execute.
Definition at line 450 of file iew.hh.
Referenced by DefaultIEW< Impl >::regStats().
|
private |
Commit to IEW delay.
Definition at line 381 of file iew.hh.
Referenced by DefaultIEW< Impl >::setTimeBuffer().
|
private |
Number of instructions that wake up from producers.
Definition at line 480 of file iew.hh.
Referenced by DefaultIEW< Impl >::regStats(), and DefaultIEW< Impl >::writebackInsts().
|
private |
CPU pointer.
Definition at line 347 of file iew.hh.
Referenced by DefaultIEW< Impl >::activateStage(), DefaultIEW< Impl >::activityThisCycle(), DefaultIEW< Impl >::deactivateStage(), DefaultIEW< Impl >::executeInsts(), DefaultIEW< Impl >::name(), DefaultIEW< Impl >::regProbePoints(), DefaultIEW< Impl >::regStats(), DefaultIEW< Impl >::startupStage(), DefaultIEW< Impl >::takeOverFrom(), DefaultIEW< Impl >::tick(), and DefaultIEW< Impl >::wakeCPU().
|
private |
Dispatch status.
Definition at line 120 of file iew.hh.
Referenced by DefaultIEW< Impl >::block(), DefaultIEW< Impl >::checkSignalsAndUpdate(), DefaultIEW< Impl >::DefaultIEW(), DefaultIEW< Impl >::dispatch(), DefaultIEW< Impl >::dispatchInsts(), DefaultIEW< Impl >::isDrained(), DefaultIEW< Impl >::takeOverFrom(), DefaultIEW< Impl >::unblock(), and DefaultIEW< Impl >::updateStatus().
|
private |
Width of dispatch, in instructions.
Definition at line 394 of file iew.hh.
Referenced by DefaultIEW< Impl >::DefaultIEW(), and DefaultIEW< Impl >::dispatchInsts().
|
private |
Execute status.
Definition at line 122 of file iew.hh.
Referenced by DefaultIEW< Impl >::DefaultIEW(), DefaultIEW< Impl >::executeInsts(), DefaultIEW< Impl >::takeOverFrom(), and DefaultIEW< Impl >::tick().
|
private |
Records if there is a fetch redirect on this cycle for each thread.
Definition at line 373 of file iew.hh.
Referenced by DefaultIEW< Impl >::checkMisprediction(), DefaultIEW< Impl >::checkSignalsAndUpdate(), DefaultIEW< Impl >::DefaultIEW(), DefaultIEW< Impl >::executeInsts(), and DefaultIEW< Impl >::takeOverFrom().
|
private |
Wire to get commit's output from backwards time buffer.
Definition at line 310 of file iew.hh.
Referenced by DefaultIEW< Impl >::checkSignalsAndUpdate(), DefaultIEW< Impl >::checkStall(), DefaultIEW< Impl >::setTimeBuffer(), DefaultIEW< Impl >::squash(), and DefaultIEW< Impl >::tick().
|
private |
Wire to read information from the issue stage time queue.
Definition at line 325 of file iew.hh.
Referenced by DefaultIEW< Impl >::DefaultIEW(), DefaultIEW< Impl >::executeInsts(), and DefaultIEW< Impl >::printAvailableInsts().
|
private |
Wire to get rename's output from rename queue.
Definition at line 319 of file iew.hh.
Referenced by DefaultIEW< Impl >::setRenameQueue(), DefaultIEW< Impl >::sortInsts(), and DefaultIEW< Impl >::validInstsFromRename().
FUPool* DefaultIEW< Impl >::fuPool |
Pointer to the functional unit pool.
Definition at line 365 of file iew.hh.
Referenced by DefaultIEW< Impl >::isDrained(), DefaultIEW< Impl >::takeOverFrom(), and DefaultIEW< Impl >::tick().
|
private |
Stat for total number of blocking cycles.
Definition at line 426 of file iew.hh.
Referenced by DefaultIEW< Impl >::dispatch(), and DefaultIEW< Impl >::regStats().
|
private |
Stat for total number of instructions dispatched.
Definition at line 430 of file iew.hh.
Referenced by DefaultIEW< Impl >::dispatchInsts(), and DefaultIEW< Impl >::regStats().
|
private |
Stat for total number of dispatched load instructions.
Definition at line 434 of file iew.hh.
Referenced by DefaultIEW< Impl >::dispatchInsts(), and DefaultIEW< Impl >::regStats().
|
private |
Stat for total number of dispatched non speculative instructions.
Definition at line 438 of file iew.hh.
Referenced by DefaultIEW< Impl >::dispatchInsts(), and DefaultIEW< Impl >::regStats().
|
private |
Stat for total number of squashed instructions dispatch skips.
Definition at line 432 of file iew.hh.
Referenced by DefaultIEW< Impl >::dispatchInsts(), and DefaultIEW< Impl >::regStats().
|
private |
Stat for total number of dispatched store instructions.
Definition at line 436 of file iew.hh.
Referenced by DefaultIEW< Impl >::dispatchInsts(), and DefaultIEW< Impl >::regStats().
|
private |
Stat for total number of executed load instructions.
Definition at line 455 of file iew.hh.
Referenced by DefaultIEW< Impl >::regStats(), and DefaultIEW< Impl >::updateExeInstStats().
|
private |
Number of instructions executed per cycle.
Definition at line 471 of file iew.hh.
Referenced by DefaultIEW< Impl >::regStats().
|
private |
Stat for total number of executed store instructions.
Stat for total number of squashed instructions skipped at execute.
Definition at line 459 of file iew.hh.
Referenced by DefaultIEW< Impl >::executeInsts(), and DefaultIEW< Impl >::regStats().
|
private |
Number of executed store instructions.
Definition at line 469 of file iew.hh.
Referenced by DefaultIEW< Impl >::regStats().
|
private |
Number of executed branches.
Definition at line 467 of file iew.hh.
Referenced by DefaultIEW< Impl >::regStats(), and DefaultIEW< Impl >::updateExeInstStats().
|
private |
Stat for total number of executed instructions.
Definition at line 453 of file iew.hh.
Referenced by DefaultIEW< Impl >::regStats(), and DefaultIEW< Impl >::updateExeInstStats().
|
private |
Number of executed nops.
Definition at line 463 of file iew.hh.
Referenced by DefaultIEW< Impl >::dispatchInsts(), and DefaultIEW< Impl >::regStats().
|
private |
Number of executed meomory references.
Definition at line 465 of file iew.hh.
Referenced by DefaultIEW< Impl >::regStats(), and DefaultIEW< Impl >::updateExeInstStats().
|
private |
Number of executed software prefetches.
Definition at line 461 of file iew.hh.
Referenced by DefaultIEW< Impl >::regStats().
|
private |
Stat for total number of idle cycles.
Definition at line 422 of file iew.hh.
Referenced by DefaultIEW< Impl >::regStats().
|
private |
Number of instructions sent to commit.
Definition at line 474 of file iew.hh.
Referenced by DefaultIEW< Impl >::regStats(), and DefaultIEW< Impl >::writebackInsts().
|
private |
Stat for number of times the IQ becomes full.
Definition at line 440 of file iew.hh.
Referenced by DefaultIEW< Impl >::dispatchInsts(), and DefaultIEW< Impl >::regStats().
|
private |
Stat for number of times the LSQ becomes full.
Definition at line 442 of file iew.hh.
Referenced by DefaultIEW< Impl >::dispatchInsts(), and DefaultIEW< Impl >::regStats().
|
private |
IEW stage time buffer.
Holds ROB indices of instructions that can be marked as completed.
Definition at line 331 of file iew.hh.
Referenced by DefaultIEW< Impl >::instToCommit(), and DefaultIEW< Impl >::setIEWQueue().
|
private |
Stat for total number of squashing cycles.
Definition at line 424 of file iew.hh.
Referenced by DefaultIEW< Impl >::dispatch(), and DefaultIEW< Impl >::regStats().
|
private |
Stat for total number of unblocking cycles.
Definition at line 428 of file iew.hh.
Referenced by DefaultIEW< Impl >::dispatch(), and DefaultIEW< Impl >::regStats().
IQ DefaultIEW< Impl >::instQueue |
Instruction queue.
Definition at line 359 of file iew.hh.
Referenced by DefaultIEW< Impl >::blockMemInst(), DefaultIEW< Impl >::cacheUnblocked(), DefaultIEW< Impl >::checkStall(), DefaultIEW< Impl >::clearStates(), DefaultIEW< Impl >::DefaultIEW(), DefaultIEW< Impl >::dispatchInsts(), DefaultIEW< Impl >::drainSanityCheck(), DefaultIEW< Impl >::executeInsts(), DefaultIEW< Impl >::isDrained(), DefaultIEW< Impl >::regStats(), DefaultIEW< Impl >::replayMemInst(), DefaultIEW< Impl >::rescheduleMemInst(), DefaultIEW< Impl >::setActiveThreads(), DefaultIEW< Impl >::setTimeBuffer(), DefaultIEW< Impl >::squash(), DefaultIEW< Impl >::startupStage(), DefaultIEW< Impl >::takeOverFrom(), DefaultIEW< Impl >::tick(), DefaultIEW< Impl >::updateStatus(), DefaultIEW< Impl >::wakeDependents(), and DefaultIEW< Impl >::writebackInsts().
|
private |
Queue of all instructions coming from rename this cycle.
Definition at line 337 of file iew.hh.
Referenced by DefaultIEW< Impl >::dispatchInsts(), DefaultIEW< Impl >::emptyRenameInsts(), DefaultIEW< Impl >::instToCommit(), DefaultIEW< Impl >::isDrained(), DefaultIEW< Impl >::skidInsert(), and DefaultIEW< Impl >::sortInsts().
|
private |
Issue stage queue.
Definition at line 322 of file iew.hh.
Referenced by DefaultIEW< Impl >::DefaultIEW(), DefaultIEW< Impl >::takeOverFrom(), and DefaultIEW< Impl >::tick().
|
private |
Issue to execute delay.
What this actually represents is the amount of time it takes for an instruction to wake up, be scheduled, and sent to a FU for execution.
Definition at line 391 of file iew.hh.
Referenced by DefaultIEW< Impl >::DefaultIEW().
|
private |
Width of issue, in instructions.
Definition at line 397 of file iew.hh.
Referenced by DefaultIEW< Impl >::DefaultIEW().
LSQ DefaultIEW< Impl >::ldstQueue |
Load / store queue.
Definition at line 362 of file iew.hh.
Referenced by DefaultIEW< Impl >::clearStates(), DefaultIEW< Impl >::dispatchInsts(), DefaultIEW< Impl >::drainSanityCheck(), DefaultIEW< Impl >::executeInsts(), DefaultIEW< Impl >::hasStoresToWB(), DefaultIEW< Impl >::isDrained(), DefaultIEW< Impl >::regStats(), DefaultIEW< Impl >::setActiveThreads(), DefaultIEW< Impl >::squash(), DefaultIEW< Impl >::startupStage(), DefaultIEW< Impl >::takeOverFrom(), DefaultIEW< Impl >::tick(), and DefaultIEW< Impl >::updateStatus().
|
private |
Stat for total number of memory ordering violation events.
Definition at line 444 of file iew.hh.
Referenced by DefaultIEW< Impl >::executeInsts(), and DefaultIEW< Impl >::regStats().
|
private |
Number of active threads.
Definition at line 413 of file iew.hh.
Referenced by DefaultIEW< Impl >::isDrained(), DefaultIEW< Impl >::sortInsts(), DefaultIEW< Impl >::startupStage(), and DefaultIEW< Impl >::takeOverFrom().
|
private |
Definition at line 128 of file iew.hh.
Referenced by DefaultIEW< Impl >::dispatchInsts(), and DefaultIEW< Impl >::regProbePoints().
|
private |
To probe when instruction execution begins.
Definition at line 130 of file iew.hh.
Referenced by DefaultIEW< Impl >::executeInsts(), and DefaultIEW< Impl >::regProbePoints().
|
private |
Probe points.
Definition at line 127 of file iew.hh.
Referenced by DefaultIEW< Impl >::executeInsts(), and DefaultIEW< Impl >::regProbePoints().
|
private |
To probe when instruction execution is complete.
Definition at line 132 of file iew.hh.
Referenced by DefaultIEW< Impl >::regProbePoints(), and DefaultIEW< Impl >::writebackInsts().
|
private |
Stat for total number of incorrect predicted not taken branches.
Definition at line 448 of file iew.hh.
Referenced by DefaultIEW< Impl >::checkMisprediction(), DefaultIEW< Impl >::executeInsts(), and DefaultIEW< Impl >::regStats().
|
private |
Stat for total number of incorrect predicted taken branches.
Definition at line 446 of file iew.hh.
Referenced by DefaultIEW< Impl >::checkMisprediction(), DefaultIEW< Impl >::executeInsts(), and DefaultIEW< Impl >::regStats().
|
private |
Number of instructions that wake consumers.
Definition at line 478 of file iew.hh.
Referenced by DefaultIEW< Impl >::regStats(), and DefaultIEW< Impl >::writebackInsts().
|
private |
Rename instruction queue interface.
Definition at line 316 of file iew.hh.
Referenced by DefaultIEW< Impl >::setRenameQueue().
|
private |
Rename to IEW delay.
Definition at line 384 of file iew.hh.
Referenced by DefaultIEW< Impl >::DefaultIEW(), and DefaultIEW< Impl >::setRenameQueue().
|
private |
Scoreboard pointer.
Definition at line 343 of file iew.hh.
Referenced by DefaultIEW< Impl >::setScoreboard(), and DefaultIEW< Impl >::writebackInsts().
|
private |
Skid buffer between rename and IEW.
Definition at line 340 of file iew.hh.
Referenced by DefaultIEW< Impl >::dispatchInsts(), DefaultIEW< Impl >::isDrained(), DefaultIEW< Impl >::skidCount(), DefaultIEW< Impl >::skidInsert(), DefaultIEW< Impl >::skidsEmpty(), DefaultIEW< Impl >::squash(), and DefaultIEW< Impl >::unblock().
|
private |
Maximum size of the skid buffer.
Definition at line 419 of file iew.hh.
Referenced by DefaultIEW< Impl >::DefaultIEW(), and DefaultIEW< Impl >::skidInsert().
|
private |
Pointer to main time buffer used for backwards communication.
Definition at line 304 of file iew.hh.
Referenced by DefaultIEW< Impl >::setTimeBuffer().
|
private |
Wire to write infromation heading to commit.
Definition at line 334 of file iew.hh.
Referenced by DefaultIEW< Impl >::checkMisprediction(), DefaultIEW< Impl >::executeInsts(), DefaultIEW< Impl >::setIEWQueue(), DefaultIEW< Impl >::squashDueToBranch(), DefaultIEW< Impl >::squashDueToMemOrder(), and DefaultIEW< Impl >::writebackInsts().
|
private |
Wire to write information heading to previous stages.
Definition at line 307 of file iew.hh.
Referenced by DefaultIEW< Impl >::setTimeBuffer(), and DefaultIEW< Impl >::tick().
|
private |
Wire to write information heading to previous stages.
Definition at line 313 of file iew.hh.
Referenced by DefaultIEW< Impl >::block(), DefaultIEW< Impl >::checkSignalsAndUpdate(), DefaultIEW< Impl >::clearStates(), DefaultIEW< Impl >::dispatchInsts(), DefaultIEW< Impl >::emptyRenameInsts(), DefaultIEW< Impl >::setTimeBuffer(), DefaultIEW< Impl >::squash(), DefaultIEW< Impl >::startupStage(), DefaultIEW< Impl >::tick(), and DefaultIEW< Impl >::unblock().
|
private |
Records if the queues have been changed (inserted or issued insts), so that IEW knows to broadcast the updated amount of free entries.
Definition at line 378 of file iew.hh.
Referenced by DefaultIEW< Impl >::dispatchInsts(), DefaultIEW< Impl >::executeInsts(), DefaultIEW< Impl >::squash(), and DefaultIEW< Impl >::tick().
bool DefaultIEW< Impl >::updateLSQNextCycle |
Records if the LSQ needs to be updated on the next cycle, so that IEW knows if there will be activity on the next cycle.
Definition at line 369 of file iew.hh.
Referenced by DefaultIEW< Impl >::DefaultIEW(), DefaultIEW< Impl >::takeOverFrom(), and DefaultIEW< Impl >::tick().
|
private |
Cycle number within the queue of instructions being written back.
Used in case there are too many instructions writing back at the current cycle and writesbacks need to be scheduled for the future. See comments in instToCommit().
Definition at line 407 of file iew.hh.
Referenced by DefaultIEW< Impl >::executeInsts(), DefaultIEW< Impl >::instToCommit(), and DefaultIEW< Impl >::tick().
|
private |
Average number of woken instructions per writeback.
Definition at line 484 of file iew.hh.
Referenced by DefaultIEW< Impl >::regStats().
|
private |
Index into queue of instructions being written back.
Definition at line 400 of file iew.hh.
Referenced by DefaultIEW< Impl >::executeInsts(), DefaultIEW< Impl >::instToCommit(), and DefaultIEW< Impl >::tick().
|
private |
Number of instructions per cycle written back.
Definition at line 482 of file iew.hh.
Referenced by DefaultIEW< Impl >::regStats().
|
private |
Writeback status.
Definition at line 124 of file iew.hh.
Referenced by DefaultIEW< Impl >::DefaultIEW(), and DefaultIEW< Impl >::takeOverFrom().
|
private |
Writeback width.
Definition at line 410 of file iew.hh.
Referenced by DefaultIEW< Impl >::DefaultIEW(), DefaultIEW< Impl >::instToCommit(), and DefaultIEW< Impl >::writebackInsts().
|
private |
Number of instructions that writeback.
Definition at line 476 of file iew.hh.
Referenced by DefaultIEW< Impl >::regStats(), and DefaultIEW< Impl >::writebackInsts().
|
private |
Records if IEW has written to the time buffer this cycle, so that the CPU can deschedule itself if there is no activity.
Definition at line 352 of file iew.hh.
Referenced by DefaultIEW< Impl >::block(), DefaultIEW< Impl >::checkSignalsAndUpdate(), DefaultIEW< Impl >::squashDueToBranch(), DefaultIEW< Impl >::squashDueToMemOrder(), DefaultIEW< Impl >::tick(), and DefaultIEW< Impl >::unblock().