42 #ifndef __CPU_O3_IEW_IMPL_IMPL_HH__ 43 #define __CPU_O3_IEW_IMPL_IMPL_HH__ 51 #include "arch/utility.hh" 52 #include "config/the_isa.hh" 57 #include "debug/Activity.hh" 58 #include "debug/Drain.hh" 59 #include "debug/IEW.hh" 60 #include "debug/O3PipeView.hh" 61 #include "params/DerivO3CPU.hh" 67 : issueToExecQueue(params->backComSize, params->forwardComSize),
69 instQueue(_cpu, this, params),
70 ldstQueue(_cpu, this, params),
71 fuPool(params->fuPool),
72 commitToIEWDelay(params->commitToIEWDelay),
73 renameToIEWDelay(params->renameToIEWDelay),
74 issueToExecuteDelay(params->issueToExecuteDelay),
75 dispatchWidth(params->dispatchWidth),
76 issueWidth(params->issueWidth),
79 wbWidth(params->wbWidth),
80 numThreads(params->numThreads)
83 fatal(
"dispatchWidth (%d) is larger than compiled limit (%d),\n" 84 "\tincrease MaxWidth in src/cpu/o3/impl.hh\n",
87 fatal(
"issueWidth (%d) is larger than compiled limit (%d),\n" 88 "\tincrease MaxWidth in src/cpu/o3/impl.hh\n",
91 fatal(
"wbWidth (%d) is larger than compiled limit (%d),\n" 92 "\tincrease MaxWidth in src/cpu/o3/impl.hh\n",
93 wbWidth, static_cast<int>(Impl::MaxWidth));
105 for (
ThreadID tid = 0; tid < Impl::MaxThreads; tid++) {
115 template <
class Impl>
119 return cpu->name() +
".iew";
122 template <
class Impl>
142 template <
class Impl>
146 using namespace Stats;
153 .
desc(
"Number of cycles IEW is idle");
157 .
desc(
"Number of cycles IEW is squashing");
161 .
desc(
"Number of cycles IEW is blocking");
165 .
desc(
"Number of cycles IEW is unblocking");
168 .
name(
name() +
".iewDispatchedInsts")
169 .
desc(
"Number of instructions dispatched to IQ");
172 .
name(
name() +
".iewDispSquashedInsts")
173 .
desc(
"Number of squashed instructions skipped by dispatch");
177 .
desc(
"Number of dispatched load instructions");
180 .
name(
name() +
".iewDispStoreInsts")
181 .
desc(
"Number of dispatched store instructions");
184 .
name(
name() +
".iewDispNonSpecInsts")
185 .
desc(
"Number of dispatched non-speculative instructions");
189 .
desc(
"Number of times the IQ has become full, causing a stall");
193 .
desc(
"Number of times the LSQ has become full, causing a stall");
196 .
name(
name() +
".memOrderViolationEvents")
197 .
desc(
"Number of memory order violations");
200 .
name(
name() +
".predictedTakenIncorrect")
201 .
desc(
"Number of branches that were predicted taken incorrectly");
204 .
name(
name() +
".predictedNotTakenIncorrect")
205 .
desc(
"Number of branches that were predicted not taken incorrectly");
208 .
name(
name() +
".branchMispredicts")
209 .
desc(
"Number of branch mispredicts detected at execute");
215 .
desc(
"Number of executed instructions");
220 .
desc(
"Number of load instructions executed")
224 .
name(
name() +
".iewExecSquashedInsts")
225 .
desc(
"Number of squashed instructions skipped in execute");
230 .
desc(
"number of swp insts executed")
236 .
desc(
"number of nop insts executed")
242 .
desc(
"number of memory reference insts executed")
248 .
desc(
"Number of branches executed")
253 .
desc(
"Number of stores executed")
259 .
desc(
"Inst execution rate")
267 .
desc(
"cumulative count of insts sent to commit")
273 .
desc(
"cumulative count of insts written-back")
279 .
desc(
"num instructions producing a value")
285 .
desc(
"num instructions consuming a value")
290 .
desc(
"average fanout of values written-back")
297 .
desc(
"insts written-back per cycle")
307 toRename->iewInfo[tid].usedIQ =
true;
308 toRename->iewInfo[tid].freeIQEntries =
311 toRename->iewInfo[tid].usedLSQ =
true;
321 cpu->activateStage(O3CPU::IEWIdx);
328 toRename->iewInfo[tid].usedIQ =
true;
329 toRename->iewInfo[tid].freeIQEntries =
332 toRename->iewInfo[tid].usedLSQ =
true;
392 template <
class Impl>
399 if (!
insts[tid].empty()) {
400 DPRINTF(Drain,
"%i: Insts not empty.\n", tid);
404 DPRINTF(Drain,
"%i: Skid buffer not empty.\n", tid);
414 DPRINTF(Drain,
"FU pool still busy.\n");
421 template <
class Impl>
431 template <
class Impl>
445 cpu->activityThisCycle();
463 DPRINTF(IEW,
"[tid:%i] Squashing all instructions.\n", tid);
474 "Removing skidbuffer instructions until " 475 "[sn:%llu] [tid:%i]\n",
480 toRename->iewInfo[tid].dispatchedToLQ++;
484 toRename->iewInfo[tid].dispatchedToSQ++;
487 toRename->iewInfo[tid].dispatched++;
499 DPRINTF(IEW,
"[tid:%i] [sn:%llu] Squashing from a specific instruction," 501 "\n", tid, inst->seqNum, inst->pcState() );
504 inst->seqNum <
toCommit->squashedSeqNum[tid]) {
506 toCommit->squashedSeqNum[tid] = inst->seqNum;
507 toCommit->branchTaken[tid] = inst->pcState().branching();
513 toCommit->mispredictInst[tid] = inst;
514 toCommit->includeSquashInst[tid] =
false;
525 DPRINTF(IEW,
"[tid:%i] Memory violation, squashing violator and younger " 526 "insts, PC: %s [sn:%llu].\n", tid, inst->pcState(), inst->seqNum);
534 inst->seqNum <=
toCommit->squashedSeqNum[tid]) {
537 toCommit->squashedSeqNum[tid] = inst->seqNum;
538 toCommit->pc[tid] = inst->pcState();
539 toCommit->mispredictInst[tid] = NULL;
542 toCommit->includeSquashInst[tid] =
true;
552 DPRINTF(IEW,
"[tid:%i] Blocking.\n", tid);
571 DPRINTF(IEW,
"[tid:%i] Reading instructions out of the skid " 572 "buffer %u.\n",tid, tid);
579 DPRINTF(IEW,
"[tid:%i] Done unblocking.\n",tid);
641 DPRINTF(IEW,
"Current wb cycle: %i, width: %i, numInst: %i\nwbActual:%i\n",
648 template <
class Impl>
652 unsigned inst_count = 0;
668 while (!
insts[tid].empty()) {
669 inst =
insts[tid].front();
673 DPRINTF(IEW,
"[tid:%i] Inserting [sn:%lli] PC:%s into " 674 "dispatch skidBuffer %i\n",tid, inst->seqNum,
675 inst->pcState(),tid);
681 "Skidbuffer Exceeded Max Size");
693 while (threads != end) {
695 unsigned thread_count =
skidBuffer[tid].size();
696 if (max < thread_count)
710 while (threads != end) {
720 template <
class Impl>
724 bool any_unblocking =
false;
729 while (threads != end) {
733 any_unblocking =
true;
744 DPRINTF(IEW,
"IEW switching to idle\n");
753 DPRINTF(IEW,
"IEW switching to active\n");
761 template <
class Impl>
767 if (
fromCommit->commitInfo[tid].robSquashing) {
768 DPRINTF(IEW,
"[tid:%i] Stall from Commit stage detected.\n",tid);
771 DPRINTF(IEW,
"[tid:%i] Stall: IQ is full.\n",tid);
778 template <
class Impl>
803 if (
fromCommit->commitInfo[tid].robSquashing) {
804 DPRINTF(IEW,
"[tid:%i] ROB is still squashing.\n", tid);
820 DPRINTF(IEW,
"[tid:%i] Done blocking, switching to unblocking.\n",
833 DPRINTF(IEW,
"[tid:%i] Done squashing, switching to running.\n",
842 template <
class Impl>
849 assert(
insts[tid].empty());
851 for (
int i = 0;
i < insts_from_rename; ++
i) {
856 template <
class Impl>
860 DPRINTF(IEW,
"[tid:%i] Removing incoming rename instructions\n", tid);
862 while (!
insts[tid].empty()) {
864 if (
insts[tid].front()->isLoad()) {
865 toRename->iewInfo[tid].dispatchedToLQ++;
867 if (
insts[tid].front()->isStore() ||
868 insts[tid].front()->isAtomic()) {
869 toRename->iewInfo[tid].dispatchedToSQ++;
872 toRename->iewInfo[tid].dispatched++;
878 template <
class Impl>
885 template <
class Impl>
889 DPRINTF(Activity,
"Activity this cycle.\n");
890 cpu->activityThisCycle();
893 template <
class Impl>
897 DPRINTF(Activity,
"Activating stage.\n");
898 cpu->activateStage(O3CPU::IEWIdx);
901 template <
class Impl>
905 DPRINTF(Activity,
"Deactivating stage.\n");
906 cpu->deactivateStage(O3CPU::IEWIdx);
931 DPRINTF(IEW,
"[tid:%i] Not blocked, so attempting to run " 957 template <
class Impl>
963 std::queue<DynInstPtr> &insts_to_dispatch =
967 int insts_to_add = insts_to_dispatch.size();
970 bool add_to_iq =
false;
971 int dis_num_inst = 0;
975 for ( ; dis_num_inst < insts_to_add &&
979 inst = insts_to_dispatch.front();
982 DPRINTF(IEW,
"[tid:%i] Issue: Examining instruction from skid " 989 DPRINTF(IEW,
"[tid:%i] Issue: Adding PC %s [sn:%lli] [tid:%i] to " 991 tid, inst->pcState(), inst->seqNum, inst->threadNumber);
998 if (inst->isSquashed()) {
999 DPRINTF(IEW,
"[tid:%i] Issue: Squashed instruction encountered, " 1000 "not adding to IQ.\n", tid);
1004 insts_to_dispatch.pop();
1007 if (inst->isLoad()) {
1008 toRename->iewInfo[tid].dispatchedToLQ++;
1010 if (inst->isStore() || inst->isAtomic()) {
1011 toRename->iewInfo[tid].dispatchedToSQ++;
1014 toRename->iewInfo[tid].dispatched++;
1021 DPRINTF(IEW,
"[tid:%i] Issue: IQ has become full.\n", tid);
1039 DPRINTF(IEW,
"[tid:%i] Issue: %s has become full.\n",tid,
1040 inst->isLoad() ?
"LQ" :
"SQ");
1055 if (inst->isAtomic()) {
1056 DPRINTF(IEW,
"[tid:%i] Issue: Memory instruction " 1057 "encountered, adding to LSQ.\n", tid);
1066 inst->setCanCommit();
1072 toRename->iewInfo[tid].dispatchedToSQ++;
1073 }
else if (inst->isLoad()) {
1074 DPRINTF(IEW,
"[tid:%i] Issue: Memory instruction " 1075 "encountered, adding to LSQ.\n", tid);
1085 toRename->iewInfo[tid].dispatchedToLQ++;
1086 }
else if (inst->isStore()) {
1087 DPRINTF(IEW,
"[tid:%i] Issue: Memory instruction " 1088 "encountered, adding to LSQ.\n", tid);
1094 if (inst->isStoreConditional()) {
1099 inst->setCanCommit();
1108 toRename->iewInfo[tid].dispatchedToSQ++;
1109 }
else if (inst->isMemBarrier() || inst->isWriteBarrier()) {
1111 inst->setCanCommit();
1114 }
else if (inst->isNop()) {
1115 DPRINTF(IEW,
"[tid:%i] Issue: Nop instruction encountered, " 1116 "skipping.\n", tid);
1119 inst->setExecuted();
1120 inst->setCanCommit();
1128 assert(!inst->isExecuted());
1132 if (add_to_iq && inst->isNonSpeculative()) {
1133 DPRINTF(IEW,
"[tid:%i] Issue: Nonspeculative instruction " 1134 "encountered, skipping.\n", tid);
1137 inst->setCanCommit();
1153 insts_to_dispatch.pop();
1155 toRename->iewInfo[tid].dispatched++;
1160 inst->dispatchTick =
curTick() - inst->fetchTick;
1165 if (!insts_to_dispatch.empty()) {
1166 DPRINTF(IEW,
"[tid:%i] Issue: Bandwidth Full. Blocking.\n", tid);
1180 template <
class Impl>
1186 std::cout <<
"Available Instructions: ";
1190 if (inst%3==0) std::cout <<
"\n\t";
1192 std::cout <<
"PC: " <<
fromIssue->insts[inst]->pcState()
1193 <<
" TN: " <<
fromIssue->insts[inst]->threadNumber
1194 <<
" SN: " <<
fromIssue->insts[inst]->seqNum <<
" | ";
1203 template <
class Impl>
1213 while (threads != end) {
1225 for (; inst_num < insts_to_execute;
1228 DPRINTF(IEW,
"Execute: Executing instructions from IQ.\n");
1232 DPRINTF(IEW,
"Execute: Processing PC %s, [tid:%i] [sn:%llu].\n",
1233 inst->pcState(), inst->threadNumber,inst->seqNum);
1240 if (inst->isSquashed()) {
1241 DPRINTF(IEW,
"Execute: Instruction was squashed. PC: %s, [tid:%i]" 1242 " [sn:%llu]\n", inst->pcState(), inst->threadNumber,
1247 inst->setExecuted();
1251 inst->setCanCommit();
1263 if (inst->isMemRef()) {
1264 DPRINTF(IEW,
"Execute: Calculating address for memory " 1268 if (inst->isAtomic()) {
1272 if (inst->isTranslationDelayed() &&
1276 DPRINTF(IEW,
"Execute: Delayed translation, deferring " 1281 }
else if (inst->isLoad()) {
1286 if (inst->isTranslationDelayed() &&
1290 DPRINTF(IEW,
"Execute: Delayed translation, deferring " 1296 if (inst->isDataPrefetch() || inst->isInstPrefetch()) {
1299 }
else if (inst->isStore()) {
1302 if (inst->isTranslationDelayed() &&
1306 DPRINTF(IEW,
"Execute: Delayed translation, deferring " 1313 if (fault !=
NoFault || !inst->readPredicate() ||
1314 !inst->isStoreConditional()) {
1319 inst->setExecuted();
1328 panic(
"Unexpected memory type!\n");
1336 if (inst->getFault() ==
NoFault) {
1338 if (!inst->readPredicate())
1339 inst->forwardOldRegs();
1342 inst->setExecuted();
1361 toCommit->squashedSeqNum[tid] > inst->seqNum) {
1365 bool loadNotExecuted = !inst->isExecuted() && inst->isLoad();
1367 if (inst->mispredicted() && !loadNotExecuted) {
1370 DPRINTF(IEW,
"[tid:%i] [sn:%llu] Execute: " 1371 "Branch mispredict detected.\n",
1373 DPRINTF(IEW,
"[tid:%i] [sn:%llu] " 1374 "Predicted target was PC: %s\n",
1375 tid,inst->seqNum,inst->readPredTarg());
1376 DPRINTF(IEW,
"[tid:%i] [sn:%llu] Execute: " 1377 "Redirecting fetch to PC: %s\n",
1378 tid,inst->seqNum,inst->pcState());
1384 if (inst->readPredTaken()) {
1390 assert(inst->isMemRef());
1397 DPRINTF(IEW,
"LDSTQ detected a violation. Violator PC: %s " 1398 "[sn:%lli], inst PC: %s [sn:%lli]. Addr is: %#x.\n",
1399 violator->pcState(), violator->seqNum,
1400 inst->pcState(), inst->seqNum, inst->physEffAddr);
1416 assert(inst->isMemRef());
1420 DPRINTF(IEW,
"LDSTQ detected a violation. Violator PC: " 1421 "%s, inst PC: %s. Addr is: %#x.\n",
1422 violator->pcState(), inst->pcState(),
1424 DPRINTF(IEW,
"Violation will not be handled because " 1425 "already squashing\n");
1440 cpu->activityThisCycle();
1450 template <
class Impl>
1459 for (
int inst_num = 0; inst_num <
wbWidth &&
1460 toCommit->insts[inst_num]; inst_num++) {
1464 DPRINTF(IEW,
"Sending instructions to commit, [sn:%lli] PC %s.\n",
1465 inst->seqNum, inst->pcState());
1477 if (!inst->isSquashed() && inst->isExecuted() && inst->getFault() ==
NoFault) {
1478 int dependents =
instQueue.wakeDependents(inst);
1480 for (
int i = 0;
i < inst->numDestRegs();
i++) {
1482 if (inst->renamedDestRegIdx(
i)->
1483 getNumPinnedWritesToComplete() == 0) {
1484 DPRINTF(IEW,
"Setting Destination Register %i (%s)\n",
1485 inst->renamedDestRegIdx(
i)->index(),
1486 inst->renamedDestRegIdx(
i)->className());
1500 template<
class Impl>
1521 while (threads != end) {
1524 DPRINTF(IEW,
"Issue: Processing [tid:%i]\n",tid);
1545 bool broadcast_free_entries =
false;
1551 broadcast_free_entries =
true;
1563 while (threads != end) {
1566 DPRINTF(IEW,
"Processing [tid:%i]\n",tid);
1569 if (
fromCommit->commitInfo[tid].doneSeqNum != 0 &&
1581 if (
fromCommit->commitInfo[tid].nonSpecSeqNum != 0) {
1584 if (
fromCommit->commitInfo[tid].strictlyOrdered) {
1586 fromCommit->commitInfo[tid].strictlyOrderedLoad);
1587 fromCommit->commitInfo[tid].strictlyOrderedLoad->setAtCommit();
1594 if (broadcast_free_entries) {
1595 toFetch->iewInfo[tid].iqCount =
1597 toFetch->iewInfo[tid].ldstqCount =
1600 toRename->iewInfo[tid].usedIQ =
true;
1601 toRename->iewInfo[tid].freeIQEntries =
1603 toRename->iewInfo[tid].usedLSQ =
true;
1605 toRename->iewInfo[tid].freeLQEntries =
1607 toRename->iewInfo[tid].freeSQEntries =
1613 DPRINTF(IEW,
"[tid:%i], Dispatch dispatched %i instructions.\n",
1614 tid,
toRename->iewInfo[tid].dispatched);
1617 DPRINTF(IEW,
"IQ has %i free entries (Can schedule: %i). " 1618 "LQ has %i free entries. SQ has %i free entries.\n",
1625 DPRINTF(Activity,
"Activity this cycle.\n");
1626 cpu->activityThisCycle();
1630 template <
class Impl>
1639 if (
DTRACE(O3PipeView)) {
1640 inst->completeTick =
curTick() - inst->fetchTick;
1647 if (inst->isControl())
1653 if (inst->isMemRef()) {
1656 if (inst->isLoad()) {
1662 template <
class Impl>
1670 toCommit->squashedSeqNum[tid] > inst->seqNum) {
1672 if (inst->mispredicted()) {
1675 DPRINTF(IEW,
"[tid:%i] [sn:%llu] Execute: " 1676 "Branch mispredict detected.\n",
1678 DPRINTF(IEW,
"[tid:%i] [sn:%llu] Predicted target " 1679 "was PC:%#x, NPC:%#x\n",
1681 inst->predInstAddr(), inst->predNextInstAddr());
1682 DPRINTF(IEW,
"[tid:%i] [sn:%llu] Execute: " 1683 "Redirecting fetch to PC: %#x, " 1686 inst->nextInstAddr(),
1687 inst->nextInstAddr());
1691 if (inst->readPredTaken()) {
1700 #endif//__CPU_O3_IEW_IMPL_IMPL_HH__ Cycles renameToIEWDelay
Rename to IEW delay.
#define panic(...)
This implements a cprintf based panic() function.
Stats::Vector iewExecutedBranches
Number of executed branches.
void setTimeBuffer(TimeBuffer< TimeStruct > *tb_ptr)
Sets main time buffer used for backwards communication.
unsigned issueWidth
Width of issue, in instructions.
void takeOverFrom()
Takes over execution from another CPU's thread.
Scoreboard * scoreboard
Scoreboard pointer.
bool fetchRedirect[Impl::MaxThreads]
Records if there is a fetch redirect on this cycle for each thread.
StageStatus exeStatus
Execute status.
void takeOverFrom()
Takes over from another CPU's thread.
Stats::Scalar iewDispStoreInsts
Stat for total number of dispatched store instructions.
Stats::Scalar iewExecutedInsts
Stat for total number of executed instructions.
decltype(nullptr) constexpr NoFault
void setIEWQueue(TimeBuffer< IEWStruct > *iq_ptr)
Sets time buffer to pass on instructions to commit.
#define fatal(...)
This implements a cprintf based fatal() function.
void rescheduleMemInst(const DynInstPtr &inst)
Tells memory dependence unit that a memory instruction needs to be rescheduled.
Stats::Scalar iewIdleCycles
Stat for total number of idle cycles.
bool willWB()
Returns if the LSQ will write back to memory this cycle.
bool updatedQueues
Records if the queues have been changed (inserted or issued insts), so that IEW knows to broadcast th...
void setRenameQueue(TimeBuffer< RenameStruct > *rq_ptr)
Sets time buffer for getting instructions coming from rename.
Stats::Scalar iewUnblockCycles
Stat for total number of unblocking cycles.
Stats::Scalar iewSquashCycles
Stat for total number of squashing cycles.
void startupStage()
Initializes stage; sends back the number of free IQ and LSQ entries.
Stats::Formula iewExecRate
Number of instructions executed per cycle.
void unblock(ThreadID tid)
Unblocks Dispatch if the skid buffer is empty, and signals back to other stages to unblock...
Stats::Scalar iewLSQFullEvents
Stat for number of times the LSQ becomes full.
Stats::Scalar iewIQFullEvents
Stat for number of times the IQ becomes full.
void tick()
Ticks the LSQ.
ThreadID numThreads
Number of active threads.
void notify(const Arg &arg)
called at the ProbePoint call site, passes arg to each listener.
void printAvailableInsts()
Debug function to print instructions that are issued this cycle.
bool sqFull()
Returns if any of the SQs are full.
Cycles issueToExecuteDelay
Issue to execute delay.
TimeBuffer< TimeStruct > * timeBuffer
Pointer to main time buffer used for backwards communication.
bool violation()
Returns whether or not there was a memory ordering violation.
Stats::Vector iewExecutedRefs
Number of executed meomory references.
DefaultIEW(O3CPU *_cpu, DerivO3CPUParams *params)
Constructs a DefaultIEW with the given parameters.
void squash(ThreadID tid)
Squashes instructions in IEW for a specific thread.
bool isDrained() const
Have all the FUs drained?
std::queue< DynInstPtr > insts[Impl::MaxThreads]
Queue of all instructions coming from rename this cycle.
Overload hash function for BasicBlockRange type.
bool checkStall(ThreadID tid)
Checks if any of the stall conditions are currently true.
Fault executeLoad(const DynInstPtr &inst)
Executes a load.
std::list< ThreadID > * activeThreads
Pointer to list of active threads.
unsigned wbNumInst
Index into queue of instructions being written back.
unsigned dispatchWidth
Width of dispatch, in instructions.
TimeBuffer< TimeStruct >::wire toFetch
Wire to write information heading to previous stages.
Derived & flags(Flags _flags)
Set the flags and marks this stat to print at the end of simulation.
void writebackStores()
Attempts to write back stores until all cache ports are used or the interface becomes blocked...
StageStatus wbStatus
Writeback status.
Derived & init(size_type size)
Set this vector to have the given size.
void instToCommit(const DynInstPtr &inst)
Sends an instruction to commit through the time buffer.
unsigned validInstsFromRename()
Returns the number of valid, non-squashed instructions coming from rename to dispatch.
TimeBuffer< IEWStruct > * iewQueue
IEW stage time buffer.
Stats::Vector iewExecutedSwp
Number of executed software prefetches.
ProbePointArg< DynInstPtr > * ppToCommit
To probe when instruction execution is complete.
Stats::Vector writebackCount
Number of instructions that writeback.
Stats::Scalar iewDispNonSpecInsts
Stat for total number of dispatched non speculative instructions.
Implements a simple scoreboard to track which registers are ready.
void cacheUnblocked()
Notifies that the cache has become unblocked.
IQ instQueue
Instruction queue.
TimeBuffer< IssueStruct >::wire fromIssue
Wire to read information from the issue stage time queue.
Tick curTick()
The current simulated tick.
void insertLoad(const DynInstPtr &load_inst)
Inserts a load into the LSQ.
bool isDrained() const
Has the LSQ drained?
void activateStage()
Tells CPU that the IEW stage is active and running.
unsigned numFreeStoreEntries()
Returns the number of free store entries.
void dispatchInsts(ThreadID tid)
Dispatches instructions to IQ and LSQ.
std::queue< DynInstPtr > skidBuffer[Impl::MaxThreads]
Skid buffer between rename and IEW.
void drainSanityCheck() const
Perform sanity checks after a drain.
Status _status
Overall stage status.
TimeBuffer< IssueStruct > issueToExecQueue
Issue stage queue.
ProbePointArg< DynInstPtr > * ppDispatch
Stats::Scalar iewExecSquashedInsts
Stat for total number of executed store instructions.
void setReg(PhysRegIdPtr phys_reg)
Sets the register as ready.
TimeBuffer< TimeStruct >::wire fromCommit
Wire to get commit's output from backwards time buffer.
Stats::Scalar iewDispLoadInsts
Stat for total number of dispatched load instructions.
void takeOverFrom()
Takes over from another CPU's thread.
Stats::Formula wbRate
Number of instructions per cycle written back.
Stats::Scalar iewDispatchedInsts
Stat for total number of instructions dispatched.
void tick()
Ticks IEW stage, causing Dispatch, the IQ, the LSQ, Execute, and Writeback to run for one cycle...
void emptyRenameInsts(ThreadID tid)
Removes instructions from rename from a thread's instruction list.
void checkSignalsAndUpdate(ThreadID tid)
Processes inputs and changes state accordingly.
unsigned wbWidth
Writeback width.
Fault executeStore(const DynInstPtr &inst)
Executes a store.
void replayMemInst(const DynInstPtr &inst)
Re-executes all rescheduled memory instructions.
void wakeCPU()
Tells the CPU to wakeup if it has descheduled itself due to no activity.
void advancePC(PCState &pc, const StaticInstPtr &inst)
unsigned wbCycle
Cycle number within the queue of instructions being written back.
Stats::Vector iewExecutedNop
Number of executed nops.
Cycles commitToIEWDelay
Commit to IEW delay.
Stats::Scalar iewDispSquashedInsts
Stat for total number of squashed instructions dispatch skips.
bool updateLSQNextCycle
Records if the LSQ needs to be updated on the next cycle, so that IEW knows if there will be activity...
void insertStore(const DynInstPtr &store_inst)
Inserts a store into the LSQ.
const FlagsType total
Print the total.
Stats::Vector producerInst
Number of instructions that wake consumers.
bool isDrained() const
Has the stage drained?
int getCount()
Returns the number of instructions in all of the queues.
Stats::Scalar predictedTakenIncorrect
Stat for total number of incorrect predicted taken branches.
Derived & name(const std::string &name)
Set the name and marks this stat to print at the end of simulation.
void activityThisCycle()
Reports to the CPU that there is activity this cycle.
int16_t ThreadID
Thread index/ID type.
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets pointer to list of active threads.
Stats::Scalar memOrderViolationEvents
Stat for total number of memory ordering violation events.
void regStats()
Registers statistics.
void updateExeInstStats(const DynInstPtr &inst)
Updates execution stats based on the instruction.
void commitStores(InstSeqNum &youngest_inst, ThreadID tid)
Commits stores up until the given sequence number for a specific thread.
int skidCount()
Returns the max of the number of entries in all of the skid buffers.
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 iewExecStoreInsts
Number of executed store instructions.
unsigned numFreeLoadEntries()
Returns the number of free load entries.
void squashDueToBranch(const DynInstPtr &inst, ThreadID tid)
Sends commit proper information for a squash due to a branch mispredict.
void executeInsts()
Executes instructions.
TimeBuffer< RenameStruct > * renameQueue
Rename instruction queue interface.
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets the pointer to the list of active threads.
void writebackInsts()
Writebacks instructions.
void blockMemInst(const DynInstPtr &inst)
Moves memory instruction onto the list of cache blocked instructions.
void wakeDependents(const DynInstPtr &inst)
Wakes all dependents of a completed instruction.
std::string name() const
Returns the name of the DefaultIEW stage.
void sortInsts()
Sorts instructions coming from rename into lists separated by thread.
void checkMisprediction(const DynInstPtr &inst)
Check misprediction.
Stats::Vector iewInstsToCommit
Number of instructions sent to commit.
void dispatch(ThreadID tid)
Determines proper actions to take given Dispatch's status.
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.
LSQ ldstQueue
Load / store queue.
TimeBuffer< IEWStruct >::wire toCommit
Wire to write infromation heading to commit.
Stats::Formula branchMispredicts
Stat for total number of mispredicted branches detected at execute.
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.
Derived & desc(const std::string &_desc)
Set the description and marks this stat to print at the end of simulation.
void regStats()
Registers statistics of each LSQ unit.
Impl::DynInstPtr DynInstPtr
void squash(const InstSeqNum &squashed_num, ThreadID tid)
Squash instructions from a thread until the specified sequence number.
ProbePointArg< DynInstPtr > * ppExecute
To probe when instruction execution begins.
void squashDueToMemOrder(const DynInstPtr &inst, ThreadID tid)
Sends commit proper information for a squash due to a memory order violation.
TimeBuffer< TimeStruct >::wire toRename
Wire to write information heading to previous stages.
StageStatus dispatchStatus[Impl::MaxThreads]
Dispatch status.
ProbePointArg< DynInstPtr > * ppMispredict
Probe points.
void clearStates(ThreadID tid)
Clear all thread-specific states.
MasterPort & getDataPort()
GenericISA::DelaySlotPCState< MachInst > PCState
void block(ThreadID tid)
Sets Dispatch to blocked, and signals back to other stages to block.
Stats::Scalar predictedNotTakenIncorrect
Stat for total number of incorrect predicted not taken branches.
Stats::Vector iewExecLoadInsts
Stat for total number of executed load instructions.
DynInstPtr getMemDepViolator(ThreadID tid)
Gets the instruction that caused the memory ordering violation.
Stats::Vector consumerInst
Number of instructions that wake up from producers.
std::shared_ptr< FaultBase > Fault
void regProbePoints()
Registers probes.
void processFreeUnits()
Frees all FUs on the list.
void commitLoads(InstSeqNum &youngest_inst, ThreadID tid)
Commits loads up until the given sequence number for a specific thread.
Stats::Scalar iewBlockCycles
Stat for total number of blocking cycles.
void updateStatus()
Updates overall IEW status based on all of the stages' statuses.
FUPool * fuPool
Pointer to the functional unit pool.
bool lqFull()
Returns if any of the LQs are full.
Stats::Formula wbFanout
Average number of woken instructions per writeback.
void drainSanityCheck() const
Perform sanity checks after a drain.