Go to the documentation of this file.
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"
65 : issueToExecQueue(params.backComSize, params.forwardComSize),
67 instQueue(_cpu, this, params),
68 ldstQueue(_cpu, this, params),
69 fuPool(params.fuPool),
70 commitToIEWDelay(params.commitToIEWDelay),
71 renameToIEWDelay(params.renameToIEWDelay),
72 issueToExecuteDelay(params.issueToExecuteDelay),
73 dispatchWidth(params.dispatchWidth),
74 issueWidth(params.issueWidth),
77 wbWidth(params.wbWidth),
78 numThreads(params.numThreads),
82 fatal(
"dispatchWidth (%d) is larger than compiled limit (%d),\n"
83 "\tincrease MaxWidth in src/cpu/o3/impl.hh\n",
86 fatal(
"issueWidth (%d) is larger than compiled limit (%d),\n"
87 "\tincrease MaxWidth in src/cpu/o3/impl.hh\n",
90 fatal(
"wbWidth (%d) is larger than compiled limit (%d),\n"
91 "\tincrease MaxWidth in src/cpu/o3/impl.hh\n",
92 wbWidth,
static_cast<int>(Impl::MaxWidth));
104 for (
ThreadID tid = 0; tid < Impl::MaxThreads; tid++) {
114 template <
class Impl>
118 return cpu->name() +
".iew";
121 template <
class Impl>
141 template <
class Impl>
150 "Number of instructions dispatched to IQ"),
152 "Number of squashed instructions skipped by dispatch"),
154 "Number of dispatched load instructions"),
156 "Number of dispatched store instructions"),
158 "Number of dispatched non-speculative instructions"),
160 "Number of times the IQ has become full, causing a stall"),
162 "Number of times the LSQ has become full, causing a stall"),
164 "Number of memory order violations"),
166 "Number of branches that were predicted taken incorrectly"),
168 "Number of branches that were predicted not taken incorrectly"),
170 "Number of branch mispredicts detected at execute",
171 predictedTakenIncorrect + predictedNotTakenIncorrect),
172 executedInstStats(cpu),
174 "Cumulative count of insts sent to commit"),
176 "Cumulative count of insts written-back"),
178 "Number of instructions producing a value"),
180 "Number of instructions consuming a value"),
182 "Insts written-back per cycle"),
184 "Average fanout of values written-back")
211 template <
class Impl>
218 "Number of squashed instructions skipped in execute"),
225 "Inst execution rate", numInsts /
cpu->baseStats.numCycles)
260 toRename->iewInfo[tid].usedIQ =
true;
261 toRename->iewInfo[tid].freeIQEntries =
264 toRename->iewInfo[tid].usedLSQ =
true;
274 cpu->activateStage(O3CPU::IEWIdx);
281 toRename->iewInfo[tid].usedIQ =
true;
282 toRename->iewInfo[tid].freeIQEntries =
285 toRename->iewInfo[tid].usedLSQ =
true;
345 template <
class Impl>
352 if (!
insts[tid].empty()) {
353 DPRINTF(Drain,
"%i: Insts not empty.\n", tid);
357 DPRINTF(Drain,
"%i: Skid buffer not empty.\n", tid);
367 DPRINTF(Drain,
"FU pool still busy.\n");
374 template <
class Impl>
384 template <
class Impl>
398 cpu->activityThisCycle();
416 DPRINTF(IEW,
"[tid:%i] Squashing all instructions.\n", tid);
427 "Removing skidbuffer instructions until "
428 "[sn:%llu] [tid:%i]\n",
433 toRename->iewInfo[tid].dispatchedToLQ++;
437 toRename->iewInfo[tid].dispatchedToSQ++;
440 toRename->iewInfo[tid].dispatched++;
452 DPRINTF(IEW,
"[tid:%i] [sn:%llu] Squashing from a specific instruction,"
454 "\n", tid, inst->seqNum, inst->pcState() );
457 inst->seqNum <
toCommit->squashedSeqNum[tid]) {
459 toCommit->squashedSeqNum[tid] = inst->seqNum;
460 toCommit->branchTaken[tid] = inst->pcState().branching();
466 toCommit->mispredictInst[tid] = inst;
467 toCommit->includeSquashInst[tid] =
false;
478 DPRINTF(IEW,
"[tid:%i] Memory violation, squashing violator and younger "
479 "insts, PC: %s [sn:%llu].\n", tid, inst->pcState(), inst->seqNum);
487 inst->seqNum <=
toCommit->squashedSeqNum[tid]) {
490 toCommit->squashedSeqNum[tid] = inst->seqNum;
491 toCommit->pc[tid] = inst->pcState();
492 toCommit->mispredictInst[tid] = NULL;
495 toCommit->includeSquashInst[tid] =
true;
505 DPRINTF(IEW,
"[tid:%i] Blocking.\n", tid);
524 DPRINTF(IEW,
"[tid:%i] Reading instructions out of the skid "
525 "buffer %u.\n",tid, tid);
532 DPRINTF(IEW,
"[tid:%i] Done unblocking.\n",tid);
594 DPRINTF(IEW,
"Current wb cycle: %i, width: %i, numInst: %i\nwbActual:%i\n",
601 template <
class Impl>
605 unsigned inst_count = 0;
621 while (!
insts[tid].empty()) {
622 inst =
insts[tid].front();
626 DPRINTF(IEW,
"[tid:%i] Inserting [sn:%lli] PC:%s into "
627 "dispatch skidBuffer %i\n",tid, inst->seqNum,
628 inst->pcState(),tid);
634 "Skidbuffer Exceeded Max Size");
646 while (threads != end) {
648 unsigned thread_count =
skidBuffer[tid].size();
649 if (max < thread_count)
663 while (threads != end) {
673 template <
class Impl>
677 bool any_unblocking =
false;
682 while (threads != end) {
686 any_unblocking =
true;
697 DPRINTF(IEW,
"IEW switching to idle\n");
706 DPRINTF(IEW,
"IEW switching to active\n");
714 template <
class Impl>
720 if (
fromCommit->commitInfo[tid].robSquashing) {
721 DPRINTF(IEW,
"[tid:%i] Stall from Commit stage detected.\n",tid);
724 DPRINTF(IEW,
"[tid:%i] Stall: IQ is full.\n",tid);
731 template <
class Impl>
756 if (
fromCommit->commitInfo[tid].robSquashing) {
757 DPRINTF(IEW,
"[tid:%i] ROB is still squashing.\n", tid);
773 DPRINTF(IEW,
"[tid:%i] Done blocking, switching to unblocking.\n",
786 DPRINTF(IEW,
"[tid:%i] Done squashing, switching to running.\n",
795 template <
class Impl>
802 assert(
insts[tid].empty());
804 for (
int i = 0;
i < insts_from_rename; ++
i) {
809 template <
class Impl>
813 DPRINTF(IEW,
"[tid:%i] Removing incoming rename instructions\n", tid);
815 while (!
insts[tid].empty()) {
817 if (
insts[tid].front()->isLoad()) {
818 toRename->iewInfo[tid].dispatchedToLQ++;
820 if (
insts[tid].front()->isStore() ||
821 insts[tid].front()->isAtomic()) {
822 toRename->iewInfo[tid].dispatchedToSQ++;
825 toRename->iewInfo[tid].dispatched++;
831 template <
class Impl>
838 template <
class Impl>
842 DPRINTF(Activity,
"Activity this cycle.\n");
843 cpu->activityThisCycle();
846 template <
class Impl>
850 DPRINTF(Activity,
"Activating stage.\n");
851 cpu->activateStage(O3CPU::IEWIdx);
854 template <
class Impl>
858 DPRINTF(Activity,
"Deactivating stage.\n");
859 cpu->deactivateStage(O3CPU::IEWIdx);
884 DPRINTF(IEW,
"[tid:%i] Not blocked, so attempting to run "
910 template <
class Impl>
916 std::queue<DynInstPtr> &insts_to_dispatch =
920 int insts_to_add = insts_to_dispatch.size();
923 bool add_to_iq =
false;
924 int dis_num_inst = 0;
928 for ( ; dis_num_inst < insts_to_add &&
932 inst = insts_to_dispatch.front();
935 DPRINTF(IEW,
"[tid:%i] Issue: Examining instruction from skid "
942 DPRINTF(IEW,
"[tid:%i] Issue: Adding PC %s [sn:%lli] [tid:%i] to "
944 tid, inst->pcState(), inst->seqNum, inst->threadNumber);
951 if (inst->isSquashed()) {
952 DPRINTF(IEW,
"[tid:%i] Issue: Squashed instruction encountered, "
953 "not adding to IQ.\n", tid);
957 insts_to_dispatch.pop();
960 if (inst->isLoad()) {
961 toRename->iewInfo[tid].dispatchedToLQ++;
963 if (inst->isStore() || inst->isAtomic()) {
964 toRename->iewInfo[tid].dispatchedToSQ++;
967 toRename->iewInfo[tid].dispatched++;
974 DPRINTF(IEW,
"[tid:%i] Issue: IQ has become full.\n", tid);
992 DPRINTF(IEW,
"[tid:%i] Issue: %s has become full.\n",tid,
993 inst->isLoad() ?
"LQ" :
"SQ");
1011 const int htmDepth = numHtmStarts - numHtmStops;
1017 inst->clearHtmTransactionalState();
1022 if (inst->isAtomic()) {
1023 DPRINTF(IEW,
"[tid:%i] Issue: Memory instruction "
1024 "encountered, adding to LSQ.\n", tid);
1033 inst->setCanCommit();
1039 toRename->iewInfo[tid].dispatchedToSQ++;
1040 }
else if (inst->isLoad()) {
1041 DPRINTF(IEW,
"[tid:%i] Issue: Memory instruction "
1042 "encountered, adding to LSQ.\n", tid);
1052 toRename->iewInfo[tid].dispatchedToLQ++;
1053 }
else if (inst->isStore()) {
1054 DPRINTF(IEW,
"[tid:%i] Issue: Memory instruction "
1055 "encountered, adding to LSQ.\n", tid);
1061 if (inst->isStoreConditional()) {
1066 inst->setCanCommit();
1075 toRename->iewInfo[tid].dispatchedToSQ++;
1076 }
else if (inst->isReadBarrier() || inst->isWriteBarrier()) {
1078 inst->setCanCommit();
1081 }
else if (inst->isNop()) {
1082 DPRINTF(IEW,
"[tid:%i] Issue: Nop instruction encountered, "
1083 "skipping.\n", tid);
1086 inst->setExecuted();
1087 inst->setCanCommit();
1095 assert(!inst->isExecuted());
1099 if (add_to_iq && inst->isNonSpeculative()) {
1100 DPRINTF(IEW,
"[tid:%i] Issue: Nonspeculative instruction "
1101 "encountered, skipping.\n", tid);
1104 inst->setCanCommit();
1120 insts_to_dispatch.pop();
1122 toRename->iewInfo[tid].dispatched++;
1127 inst->dispatchTick =
curTick() - inst->fetchTick;
1132 if (!insts_to_dispatch.empty()) {
1133 DPRINTF(IEW,
"[tid:%i] Issue: Bandwidth Full. Blocking.\n", tid);
1147 template <
class Impl>
1153 std::cout <<
"Available Instructions: ";
1157 if (inst%3==0) std::cout <<
"\n\t";
1159 std::cout <<
"PC: " <<
fromIssue->insts[inst]->pcState()
1160 <<
" TN: " <<
fromIssue->insts[inst]->threadNumber
1161 <<
" SN: " <<
fromIssue->insts[inst]->seqNum <<
" | ";
1170 template <
class Impl>
1180 while (threads != end) {
1192 for (; inst_num < insts_to_execute;
1195 DPRINTF(IEW,
"Execute: Executing instructions from IQ.\n");
1199 DPRINTF(IEW,
"Execute: Processing PC %s, [tid:%i] [sn:%llu].\n",
1200 inst->pcState(), inst->threadNumber,inst->seqNum);
1207 if (inst->isSquashed()) {
1208 DPRINTF(IEW,
"Execute: Instruction was squashed. PC: %s, [tid:%i]"
1209 " [sn:%llu]\n", inst->pcState(), inst->threadNumber,
1214 inst->setExecuted();
1218 inst->setCanCommit();
1230 if (inst->isMemRef()) {
1231 DPRINTF(IEW,
"Execute: Calculating address for memory "
1235 if (inst->isAtomic()) {
1239 if (inst->isTranslationDelayed() &&
1243 DPRINTF(IEW,
"Execute: Delayed translation, deferring "
1248 }
else if (inst->isLoad()) {
1253 if (inst->isTranslationDelayed() &&
1257 DPRINTF(IEW,
"Execute: Delayed translation, deferring "
1263 if (inst->isDataPrefetch() || inst->isInstPrefetch()) {
1266 }
else if (inst->isStore()) {
1269 if (inst->isTranslationDelayed() &&
1273 DPRINTF(IEW,
"Execute: Delayed translation, deferring "
1280 if (fault !=
NoFault || !inst->readPredicate() ||
1281 !inst->isStoreConditional()) {
1286 inst->setExecuted();
1295 panic(
"Unexpected memory type!\n");
1303 if (inst->getFault() ==
NoFault) {
1305 if (!inst->readPredicate())
1306 inst->forwardOldRegs();
1309 inst->setExecuted();
1328 toCommit->squashedSeqNum[tid] > inst->seqNum) {
1332 bool loadNotExecuted = !inst->isExecuted() && inst->isLoad();
1334 if (inst->mispredicted() && !loadNotExecuted) {
1337 DPRINTF(IEW,
"[tid:%i] [sn:%llu] Execute: "
1338 "Branch mispredict detected.\n",
1340 DPRINTF(IEW,
"[tid:%i] [sn:%llu] "
1341 "Predicted target was PC: %s\n",
1342 tid,inst->seqNum,inst->readPredTarg());
1343 DPRINTF(IEW,
"[tid:%i] [sn:%llu] Execute: "
1344 "Redirecting fetch to PC: %s\n",
1345 tid,inst->seqNum,inst->pcState());
1351 if (inst->readPredTaken()) {
1357 assert(inst->isMemRef());
1364 DPRINTF(IEW,
"LDSTQ detected a violation. Violator PC: %s "
1365 "[sn:%lli], inst PC: %s [sn:%lli]. Addr is: %#x.\n",
1366 violator->pcState(), violator->seqNum,
1367 inst->pcState(), inst->seqNum, inst->physEffAddr);
1383 assert(inst->isMemRef());
1387 DPRINTF(IEW,
"LDSTQ detected a violation. Violator PC: "
1388 "%s, inst PC: %s. Addr is: %#x.\n",
1389 violator->pcState(), inst->pcState(),
1391 DPRINTF(IEW,
"Violation will not be handled because "
1392 "already squashing\n");
1407 cpu->activityThisCycle();
1417 template <
class Impl>
1426 for (
int inst_num = 0; inst_num <
wbWidth &&
1427 toCommit->insts[inst_num]; inst_num++) {
1431 DPRINTF(IEW,
"Sending instructions to commit, [sn:%lli] PC %s.\n",
1432 inst->seqNum, inst->pcState());
1444 if (!inst->isSquashed() && inst->isExecuted() && inst->getFault() ==
NoFault) {
1445 int dependents =
instQueue.wakeDependents(inst);
1447 for (
int i = 0;
i < inst->numDestRegs();
i++) {
1449 if (inst->regs.renamedDestIdx(
i)->
1450 getNumPinnedWritesToComplete() == 0) {
1451 DPRINTF(IEW,
"Setting Destination Register %i (%s)\n",
1452 inst->regs.renamedDestIdx(
i)->index(),
1453 inst->regs.renamedDestIdx(
i)->className());
1467 template<
class Impl>
1488 while (threads != end) {
1491 DPRINTF(IEW,
"Issue: Processing [tid:%i]\n",tid);
1512 bool broadcast_free_entries =
false;
1518 broadcast_free_entries =
true;
1530 while (threads != end) {
1533 DPRINTF(IEW,
"Processing [tid:%i]\n",tid);
1536 if (
fromCommit->commitInfo[tid].doneSeqNum != 0 &&
1548 if (
fromCommit->commitInfo[tid].nonSpecSeqNum != 0) {
1551 if (
fromCommit->commitInfo[tid].strictlyOrdered) {
1553 fromCommit->commitInfo[tid].strictlyOrderedLoad);
1554 fromCommit->commitInfo[tid].strictlyOrderedLoad->setAtCommit();
1561 if (broadcast_free_entries) {
1562 toFetch->iewInfo[tid].iqCount =
1564 toFetch->iewInfo[tid].ldstqCount =
1567 toRename->iewInfo[tid].usedIQ =
true;
1568 toRename->iewInfo[tid].freeIQEntries =
1570 toRename->iewInfo[tid].usedLSQ =
true;
1572 toRename->iewInfo[tid].freeLQEntries =
1574 toRename->iewInfo[tid].freeSQEntries =
1580 DPRINTF(IEW,
"[tid:%i], Dispatch dispatched %i instructions.\n",
1581 tid,
toRename->iewInfo[tid].dispatched);
1584 DPRINTF(IEW,
"IQ has %i free entries (Can schedule: %i). "
1585 "LQ has %i free entries. SQ has %i free entries.\n",
1592 DPRINTF(Activity,
"Activity this cycle.\n");
1593 cpu->activityThisCycle();
1597 template <
class Impl>
1606 if (
DTRACE(O3PipeView)) {
1607 inst->completeTick =
curTick() - inst->fetchTick;
1614 if (inst->isControl())
1620 if (inst->isMemRef()) {
1623 if (inst->isLoad()) {
1629 template <
class Impl>
1637 toCommit->squashedSeqNum[tid] > inst->seqNum) {
1639 if (inst->mispredicted()) {
1642 DPRINTF(IEW,
"[tid:%i] [sn:%llu] Execute: "
1643 "Branch mispredict detected.\n",
1645 DPRINTF(IEW,
"[tid:%i] [sn:%llu] Predicted target "
1646 "was PC:%#x, NPC:%#x\n",
1648 inst->predInstAddr(), inst->predNextInstAddr());
1649 DPRINTF(IEW,
"[tid:%i] [sn:%llu] Execute: "
1650 "Redirecting fetch to PC: %#x, "
1653 inst->nextInstAddr(),
1654 inst->nextInstAddr());
1658 if (inst->readPredTaken()) {
1667 #endif//__CPU_O3_IEW_IMPL_IMPL_HH__
void insertStore(const DynInstPtr &store_inst)
Inserts a store into the LSQ.
#define fatal(...)
This implements a cprintf based fatal() function.
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.
bool willWB()
Returns if the LSQ will write back to memory this cycle.
unsigned wbCycle
Cycle number within the queue of instructions being written back.
void setReg(PhysRegIdPtr phys_reg)
Sets the register as ready.
Fault executeStore(const DynInstPtr &inst)
Executes a store.
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.
void commitStores(InstSeqNum &youngest_inst, ThreadID tid)
Commits stores up until the given sequence number for a specific thread.
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.
int numHtmStops(ThreadID tid) const
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...
void insertLoad(const DynInstPtr &load_inst)
Inserts a load into the LSQ.
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...
Cycles commitToIEWDelay
Commit to IEW delay.
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 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.
bool violation()
Returns whether or not there was a memory ordering violation.
void notify(const Arg &arg)
called at the ProbePoint call site, passes arg to each listener.
void takeOverFrom()
Takes over from another CPU's thread.
void squashDueToBranch(const DynInstPtr &inst, ThreadID tid)
Sends commit proper information for a squash due to a branch mispredict.
void executeInsts()
Executes instructions.
void advancePC(PCState &pc, const StaticInstPtr &inst)
Stats::Vector instsToCommit
Number of instructions sent to commit.
void tick()
Ticks the LSQ.
void blockMemInst(const DynInstPtr &inst)
Moves memory instruction onto the list of cache blocked instructions.
Impl::DynInstPtr DynInstPtr
bool lqFull()
Returns if any of the LQs are full.
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
Derived & flags(Flags _flags)
Set the flags and marks this stat to print at the end of simulation.
void clearStates(ThreadID tid)
Clear all thread-specific states.
bool isDrained() const
Has the LSQ drained?
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.
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.
void takeOverFrom()
Takes over execution from another CPU's thread.
Stats::Scalar dispSquashedInsts
Stat for total number of squashed instructions dispatch skips.
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
void drainSanityCheck() const
Perform sanity checks after a drain.
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.
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.
bool isDrained() const
Have all the FUs drained?
StageStatus dispatchStatus[Impl::MaxThreads]
Dispatch status.
void drainSanityCheck() const
Perform sanity checks after a drain.
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
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.
std::shared_ptr< FaultBase > Fault
void regProbePoints()
Registers probes.
unsigned numFreeStoreEntries()
Returns the number of free store entries.
Fault executeLoad(const DynInstPtr &inst)
Executes a load.
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.
FUPool * fuPool
Pointer to the functional unit pool.
RequestPort & getDataPort()
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.
uint64_t getLatestHtmUid(ThreadID tid) const
int getCount()
Returns the number of instructions in all of the queues.
constexpr decltype(nullptr) NoFault
void writebackStores()
Attempts to write back stores until all cache ports are used or the interface becomes blocked.
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.
Derived & init(size_type size)
Set this vector to have the given size.
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.
unsigned numFreeLoadEntries()
Returns the number of free load entries.
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.
#define UNIT_RATE(T1, T2)
bool checkStall(ThreadID tid)
Checks if any of the stall conditions are currently true.
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets the pointer to the list of active threads.
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.
Stats::Formula wbRate
Number of instructions per cycle written back.
TimeBuffer< TimeStruct >::wire toFetch
Wire to write information heading to previous stages.
Stats::Vector consumerInst
Number of instructions that wake up from producers.
Cycles issueToExecuteDelay
Issue to execute delay.
void processFreeUnits()
Frees all FUs on the list.
GenericISA::DelaySlotPCState< MachInst > PCState
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::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.
void squash(const InstSeqNum &squashed_num, ThreadID tid)
Squash instructions from a thread until the specified sequence number.
ProbePointArg< DynInstPtr > * ppToCommit
To probe when instruction execution is complete.
#define UNIT_CYCLE
Convenience macros to declare the unit of a stat.
Stats::Scalar iqFullEvents
Stat for number of times the IQ becomes full.
bool sqFull()
Returns if any of the SQs are full.
Stats::Scalar numSquashedInsts
Stat for total number of squashed instructions skipped at execute.
Tick curTick()
The universal simulation clock.
IQ instQueue
Instruction queue.
DynInstPtr getMemDepViolator(ThreadID tid)
Gets the instruction that caused the memory ordering violation.
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.
void commitLoads(InstSeqNum &youngest_inst, ThreadID tid)
Commits loads up until the given sequence number for a specific thread.
Stats::Vector numSwp
Number of executed software prefetches.
const FlagsType total
Print the total.
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.
int numHtmStarts(ThreadID tid) const
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.
#define panic(...)
This implements a cprintf based panic() function.
Stats::Scalar dispNonSpecInsts
Stat for total number of dispatched non speculative instructions.
Generated on Tue Mar 23 2021 19:41:25 for gem5 by doxygen 1.8.17