Go to the documentation of this file.
50 #include "config/the_isa.hh"
56 #include "debug/Activity.hh"
57 #include "debug/Drain.hh"
58 #include "debug/IEW.hh"
59 #include "debug/O3PipeView.hh"
60 #include "params/O3CPU.hh"
69 : issueToExecQueue(params.backComSize, params.forwardComSize),
71 instQueue(_cpu, this, params),
72 ldstQueue(_cpu, this, params),
73 fuPool(params.fuPool),
74 commitToIEWDelay(params.commitToIEWDelay),
75 renameToIEWDelay(params.renameToIEWDelay),
76 issueToExecuteDelay(params.issueToExecuteDelay),
77 dispatchWidth(params.dispatchWidth),
78 issueWidth(params.issueWidth),
81 wbWidth(params.wbWidth),
82 numThreads(params.numThreads),
86 fatal(
"dispatchWidth (%d) is larger than compiled limit (%d),\n"
87 "\tincrease MaxWidth in src/cpu/o3/limits.hh\n",
90 fatal(
"issueWidth (%d) is larger than compiled limit (%d),\n"
91 "\tincrease MaxWidth in src/cpu/o3/limits.hh\n",
94 fatal(
"wbWidth (%d) is larger than compiled limit (%d),\n"
95 "\tincrease MaxWidth in src/cpu/o3/limits.hh\n",
121 return cpu->name() +
".iew";
128 cpu->getProbeManager(),
"Dispatch");
130 cpu->getProbeManager(),
"Mispredict");
136 cpu->getProbeManager(),
"Execute");
142 cpu->getProbeManager(),
"ToCommit");
146 : statistics::
Group(cpu,
"iew"),
147 ADD_STAT(idleCycles, statistics::units::Cycle::get(),
148 "Number of cycles IEW is idle"),
149 ADD_STAT(squashCycles, statistics::units::Cycle::get(),
150 "Number of cycles IEW is squashing"),
151 ADD_STAT(blockCycles, statistics::units::Cycle::get(),
152 "Number of cycles IEW is blocking"),
153 ADD_STAT(unblockCycles, statistics::units::Cycle::get(),
154 "Number of cycles IEW is unblocking"),
155 ADD_STAT(dispatchedInsts, statistics::units::Count::get(),
156 "Number of instructions dispatched to IQ"),
157 ADD_STAT(dispSquashedInsts, statistics::units::Count::get(),
158 "Number of squashed instructions skipped by dispatch"),
159 ADD_STAT(dispLoadInsts, statistics::units::Count::get(),
160 "Number of dispatched load instructions"),
161 ADD_STAT(dispStoreInsts, statistics::units::Count::get(),
162 "Number of dispatched store instructions"),
163 ADD_STAT(dispNonSpecInsts, statistics::units::Count::get(),
164 "Number of dispatched non-speculative instructions"),
165 ADD_STAT(iqFullEvents, statistics::units::Count::get(),
166 "Number of times the IQ has become full, causing a stall"),
167 ADD_STAT(lsqFullEvents, statistics::units::Count::get(),
168 "Number of times the LSQ has become full, causing a stall"),
169 ADD_STAT(memOrderViolationEvents, statistics::units::Count::get(),
170 "Number of memory order violations"),
171 ADD_STAT(predictedTakenIncorrect, statistics::units::Count::get(),
172 "Number of branches that were predicted taken incorrectly"),
173 ADD_STAT(predictedNotTakenIncorrect, statistics::units::Count::get(),
174 "Number of branches that were predicted not taken incorrectly"),
175 ADD_STAT(branchMispredicts, statistics::units::Count::get(),
176 "Number of branch mispredicts detected at execute",
177 predictedTakenIncorrect + predictedNotTakenIncorrect),
178 executedInstStats(cpu),
179 ADD_STAT(instsToCommit, statistics::units::Count::get(),
180 "Cumulative count of insts sent to commit"),
181 ADD_STAT(writebackCount, statistics::units::Count::get(),
182 "Cumulative count of insts written-back"),
183 ADD_STAT(producerInst, statistics::units::Count::get(),
184 "Number of instructions producing a value"),
185 ADD_STAT(consumerInst, statistics::units::Count::get(),
186 "Number of instructions consuming a value"),
187 ADD_STAT(wbRate, statistics::units::Rate<
188 statistics::units::Count, statistics::units::Cycle>::get(),
189 "Insts written-back per cycle"),
190 ADD_STAT(wbFanout, statistics::units::Rate<
191 statistics::units::Count, statistics::units::Count>::get(),
192 "Average fanout of values written-back")
221 ADD_STAT(numInsts, statistics::units::Count::get(),
222 "Number of executed instructions"),
223 ADD_STAT(numLoadInsts, statistics::units::Count::get(),
224 "Number of load instructions executed"),
225 ADD_STAT(numSquashedInsts, statistics::units::Count::get(),
226 "Number of squashed instructions skipped in execute"),
227 ADD_STAT(numSwp, statistics::units::Count::get(),
228 "Number of swp insts executed"),
229 ADD_STAT(numNop, statistics::units::Count::get(),
230 "Number of nop insts executed"),
231 ADD_STAT(numRefs, statistics::units::Count::get(),
232 "Number of memory reference insts executed"),
233 ADD_STAT(numBranches, statistics::units::Count::get(),
234 "Number of branches executed"),
235 ADD_STAT(numStoreInsts, statistics::units::Count::get(),
236 "Number of stores executed"),
237 ADD_STAT(numRate, statistics::units::Rate<
238 statistics::units::Count, statistics::units::Cycle>::get(),
239 "Inst execution rate", numInsts /
cpu->baseStats.numCycles)
273 toRename->iewInfo[tid].usedIQ =
true;
274 toRename->iewInfo[tid].freeIQEntries =
277 toRename->iewInfo[tid].usedLSQ =
true;
278 toRename->iewInfo[tid].freeLQEntries =
280 toRename->iewInfo[tid].freeSQEntries =
295 toRename->iewInfo[tid].usedIQ =
true;
296 toRename->iewInfo[tid].freeIQEntries =
299 toRename->iewInfo[tid].usedLSQ =
true;
360 if (!
insts[tid].empty()) {
361 DPRINTF(Drain,
"%i: Insts not empty.\n", tid);
365 DPRINTF(Drain,
"%i: Skid buffer not empty.\n", tid);
375 DPRINTF(Drain,
"FU pool still busy.\n");
421 DPRINTF(
IEW,
"[tid:%i] Squashing all instructions.\n", tid);
432 "Removing skidbuffer instructions until "
433 "[sn:%llu] [tid:%i]\n",
438 toRename->iewInfo[tid].dispatchedToLQ++;
442 toRename->iewInfo[tid].dispatchedToSQ++;
445 toRename->iewInfo[tid].dispatched++;
456 DPRINTF(
IEW,
"[tid:%i] [sn:%llu] Squashing from a specific instruction,"
458 "\n", tid, inst->seqNum, inst->pcState() );
461 inst->seqNum <
toCommit->squashedSeqNum[tid]) {
463 toCommit->squashedSeqNum[tid] = inst->seqNum;
464 toCommit->branchTaken[tid] = inst->pcState().branching();
466 set(
toCommit->pc[tid], inst->pcState());
467 inst->staticInst->advancePC(*
toCommit->pc[tid]);
469 toCommit->mispredictInst[tid] = inst;
470 toCommit->includeSquashInst[tid] =
false;
480 DPRINTF(
IEW,
"[tid:%i] Memory violation, squashing violator and younger "
481 "insts, PC: %s [sn:%llu].\n", tid, inst->pcState(), inst->seqNum);
489 inst->seqNum <=
toCommit->squashedSeqNum[tid]) {
492 toCommit->squashedSeqNum[tid] = inst->seqNum;
493 set(
toCommit->pc[tid], inst->pcState());
494 toCommit->mispredictInst[tid] = NULL;
497 toCommit->includeSquashInst[tid] =
true;
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);
588 DPRINTF(
IEW,
"Current wb cycle: %i, width: %i, numInst: %i\nwbActual:%i\n",
600 while (!
insts[tid].empty()) {
601 inst =
insts[tid].front();
605 DPRINTF(
IEW,
"[tid:%i] Inserting [sn:%lli] PC:%s into "
606 "dispatch skidBuffer %i\n",tid, inst->seqNum,
607 inst->pcState(),tid);
613 "Skidbuffer Exceeded Max Size");
624 while (threads != end) {
626 unsigned thread_count =
skidBuffer[tid].size();
627 if (max < thread_count)
640 while (threads != end) {
653 bool any_unblocking =
false;
658 while (threads != end) {
662 any_unblocking =
true;
695 if (
fromCommit->commitInfo[tid].robSquashing) {
696 DPRINTF(
IEW,
"[tid:%i] Stall from Commit stage detected.\n",tid);
699 DPRINTF(
IEW,
"[tid:%i] Stall: IQ is full.\n",tid);
730 if (
fromCommit->commitInfo[tid].robSquashing) {
731 DPRINTF(
IEW,
"[tid:%i] ROB is still squashing.\n", tid);
747 DPRINTF(
IEW,
"[tid:%i] Done blocking, switching to unblocking.\n",
760 DPRINTF(
IEW,
"[tid:%i] Done squashing, switching to running.\n",
775 assert(
insts[tid].empty());
777 for (
int i = 0;
i < insts_from_rename; ++
i) {
785 DPRINTF(
IEW,
"[tid:%i] Removing incoming rename instructions\n", tid);
787 while (!
insts[tid].empty()) {
789 if (
insts[tid].front()->isLoad()) {
790 toRename->iewInfo[tid].dispatchedToLQ++;
792 if (
insts[tid].front()->isStore() ||
793 insts[tid].front()->isAtomic()) {
794 toRename->iewInfo[tid].dispatchedToSQ++;
797 toRename->iewInfo[tid].dispatched++;
812 DPRINTF(Activity,
"Activity this cycle.\n");
819 DPRINTF(Activity,
"Activating stage.\n");
826 DPRINTF(Activity,
"Deactivating stage.\n");
851 DPRINTF(
IEW,
"[tid:%i] Not blocked, so attempting to run "
882 std::queue<DynInstPtr> &insts_to_dispatch =
886 int insts_to_add = insts_to_dispatch.size();
889 bool add_to_iq =
false;
890 int dis_num_inst = 0;
894 for ( ; dis_num_inst < insts_to_add &&
898 inst = insts_to_dispatch.front();
901 DPRINTF(
IEW,
"[tid:%i] Issue: Examining instruction from skid "
908 DPRINTF(
IEW,
"[tid:%i] Issue: Adding PC %s [sn:%lli] [tid:%i] to "
910 tid, inst->pcState(), inst->seqNum, inst->threadNumber);
917 if (inst->isSquashed()) {
918 DPRINTF(
IEW,
"[tid:%i] Issue: Squashed instruction encountered, "
919 "not adding to IQ.\n", tid);
923 insts_to_dispatch.pop();
926 if (inst->isLoad()) {
927 toRename->iewInfo[tid].dispatchedToLQ++;
929 if (inst->isStore() || inst->isAtomic()) {
930 toRename->iewInfo[tid].dispatchedToSQ++;
933 toRename->iewInfo[tid].dispatched++;
940 DPRINTF(
IEW,
"[tid:%i] Issue: IQ has become full.\n", tid);
958 DPRINTF(
IEW,
"[tid:%i] Issue: %s has become full.\n",tid,
959 inst->isLoad() ?
"LQ" :
"SQ");
977 const int htmDepth = numHtmStarts - numHtmStops;
983 inst->clearHtmTransactionalState();
988 if (inst->isAtomic()) {
989 DPRINTF(
IEW,
"[tid:%i] Issue: Memory instruction "
990 "encountered, adding to LSQ.\n", tid);
999 inst->setCanCommit();
1005 toRename->iewInfo[tid].dispatchedToSQ++;
1006 }
else if (inst->isLoad()) {
1007 DPRINTF(
IEW,
"[tid:%i] Issue: Memory instruction "
1008 "encountered, adding to LSQ.\n", tid);
1018 toRename->iewInfo[tid].dispatchedToLQ++;
1019 }
else if (inst->isStore()) {
1020 DPRINTF(
IEW,
"[tid:%i] Issue: Memory instruction "
1021 "encountered, adding to LSQ.\n", tid);
1027 if (inst->isStoreConditional()) {
1032 inst->setCanCommit();
1041 toRename->iewInfo[tid].dispatchedToSQ++;
1042 }
else if (inst->isReadBarrier() || inst->isWriteBarrier()) {
1044 inst->setCanCommit();
1047 }
else if (inst->isNop()) {
1048 DPRINTF(
IEW,
"[tid:%i] Issue: Nop instruction encountered, "
1049 "skipping.\n", tid);
1052 inst->setExecuted();
1053 inst->setCanCommit();
1061 assert(!inst->isExecuted());
1065 if (add_to_iq && inst->isNonSpeculative()) {
1066 DPRINTF(
IEW,
"[tid:%i] Issue: Nonspeculative instruction "
1067 "encountered, skipping.\n", tid);
1070 inst->setCanCommit();
1086 insts_to_dispatch.pop();
1088 toRename->iewInfo[tid].dispatched++;
1093 inst->dispatchTick =
curTick() - inst->fetchTick;
1098 if (!insts_to_dispatch.empty()) {
1099 DPRINTF(
IEW,
"[tid:%i] Issue: Bandwidth Full. Blocking.\n", tid);
1118 std::cout <<
"Available Instructions: ";
1122 if (inst%3==0) std::cout <<
"\n\t";
1124 std::cout <<
"PC: " <<
fromIssue->insts[inst]->pcState()
1125 <<
" TN: " <<
fromIssue->insts[inst]->threadNumber
1126 <<
" SN: " <<
fromIssue->insts[inst]->seqNum <<
" | ";
1144 while (threads != end) {
1156 for (; inst_num < insts_to_execute;
1159 DPRINTF(
IEW,
"Execute: Executing instructions from IQ.\n");
1163 DPRINTF(
IEW,
"Execute: Processing PC %s, [tid:%i] [sn:%llu].\n",
1164 inst->pcState(), inst->threadNumber,inst->seqNum);
1171 if (inst->isSquashed()) {
1172 DPRINTF(
IEW,
"Execute: Instruction was squashed. PC: %s, [tid:%i]"
1173 " [sn:%llu]\n", inst->pcState(), inst->threadNumber,
1178 inst->setExecuted();
1182 inst->setCanCommit();
1194 if (inst->isMemRef()) {
1195 DPRINTF(
IEW,
"Execute: Calculating address for memory "
1199 if (inst->isAtomic()) {
1203 if (inst->isTranslationDelayed() &&
1207 DPRINTF(
IEW,
"Execute: Delayed translation, deferring "
1212 }
else if (inst->isLoad()) {
1217 if (inst->isTranslationDelayed() &&
1221 DPRINTF(
IEW,
"Execute: Delayed translation, deferring "
1227 if (inst->isDataPrefetch() || inst->isInstPrefetch()) {
1230 }
else if (inst->isStore()) {
1233 if (inst->isTranslationDelayed() &&
1237 DPRINTF(
IEW,
"Execute: Delayed translation, deferring "
1244 if (fault !=
NoFault || !inst->readPredicate() ||
1245 !inst->isStoreConditional()) {
1250 inst->setExecuted();
1259 panic(
"Unexpected memory type!\n");
1267 if (inst->getFault() ==
NoFault) {
1269 if (!inst->readPredicate())
1270 inst->forwardOldRegs();
1273 inst->setExecuted();
1292 toCommit->squashedSeqNum[tid] > inst->seqNum) {
1296 bool loadNotExecuted = !inst->isExecuted() && inst->isLoad();
1298 if (inst->mispredicted() && !loadNotExecuted) {
1302 "Branch mispredict detected.\n",
1305 "Predicted target was PC: %s\n",
1306 tid, inst->seqNum, inst->readPredTarg());
1308 "Redirecting fetch to PC: %s\n",
1309 tid, inst->seqNum, inst->pcState());
1315 if (inst->readPredTaken()) {
1321 assert(inst->isMemRef());
1328 DPRINTF(
IEW,
"LDSTQ detected a violation. Violator PC: %s "
1329 "[sn:%lli], inst PC: %s [sn:%lli]. Addr is: %#x.\n",
1330 violator->pcState(), violator->seqNum,
1331 inst->pcState(), inst->seqNum, inst->physEffAddr);
1347 assert(inst->isMemRef());
1351 DPRINTF(
IEW,
"LDSTQ detected a violation. Violator PC: "
1352 "%s, inst PC: %s. Addr is: %#x.\n",
1353 violator->pcState(), inst->pcState(),
1355 DPRINTF(
IEW,
"Violation will not be handled because "
1356 "already squashing\n");
1389 for (
int inst_num = 0; inst_num <
wbWidth &&
1390 toCommit->insts[inst_num]; inst_num++) {
1394 DPRINTF(
IEW,
"Sending instructions to commit, [sn:%lli] PC %s.\n",
1395 inst->seqNum, inst->pcState());
1407 if (!inst->isSquashed() && inst->isExecuted() &&
1408 inst->getFault() ==
NoFault) {
1411 for (
int i = 0;
i < inst->numDestRegs();
i++) {
1413 if (inst->renamedDestIdx(
i)->
1414 getNumPinnedWritesToComplete() == 0) {
1415 DPRINTF(
IEW,
"Setting Destination Register %i (%s)\n",
1416 inst->renamedDestIdx(
i)->index(),
1417 inst->renamedDestIdx(
i)->className());
1451 while (threads != end) {
1454 DPRINTF(
IEW,
"Issue: Processing [tid:%i]\n",tid);
1475 bool broadcast_free_entries =
false;
1481 broadcast_free_entries =
true;
1493 while (threads != end) {
1499 if (
fromCommit->commitInfo[tid].doneSeqNum != 0 &&
1511 if (
fromCommit->commitInfo[tid].nonSpecSeqNum != 0) {
1514 if (
fromCommit->commitInfo[tid].strictlyOrdered) {
1516 fromCommit->commitInfo[tid].strictlyOrderedLoad);
1517 fromCommit->commitInfo[tid].strictlyOrderedLoad->setAtCommit();
1524 if (broadcast_free_entries) {
1525 toFetch->iewInfo[tid].iqCount =
1527 toFetch->iewInfo[tid].ldstqCount =
1530 toRename->iewInfo[tid].usedIQ =
true;
1531 toRename->iewInfo[tid].freeIQEntries =
1533 toRename->iewInfo[tid].usedLSQ =
true;
1535 toRename->iewInfo[tid].freeLQEntries =
1537 toRename->iewInfo[tid].freeSQEntries =
1543 DPRINTF(
IEW,
"[tid:%i], Dispatch dispatched %i instructions.\n",
1544 tid,
toRename->iewInfo[tid].dispatched);
1547 DPRINTF(
IEW,
"IQ has %i free entries (Can schedule: %i). "
1548 "LQ has %i free entries. SQ has %i free entries.\n",
1555 DPRINTF(Activity,
"Activity this cycle.\n");
1568 if (debug::O3PipeView) {
1569 inst->completeTick =
curTick() - inst->fetchTick;
1576 if (inst->isControl())
1582 if (inst->isMemRef()) {
1585 if (inst->isLoad()) {
1598 toCommit->squashedSeqNum[tid] > inst->seqNum) {
1600 if (inst->mispredicted()) {
1604 "Branch mispredict detected.\n",
1606 DPRINTF(
IEW,
"[tid:%i] [sn:%llu] Predicted target was PC: %s\n",
1607 tid, inst->seqNum, inst->readPredTarg());
1609 "Redirecting fetch to PC: %s\n",
1610 tid, inst->seqNum, inst->pcState());
1614 if (inst->readPredTaken()) {
void rescheduleMemInst(const DynInstPtr &resched_inst)
Reschedules a memory instruction.
Tick curTick()
The universal simulation clock.
#define fatal(...)
This implements a cprintf based fatal() function.
void insertStore(const DynInstPtr &store_inst)
Inserts a store into the LSQ.
void drainSanityCheck() const
Perform sanity checks after a drain.
int skidCount()
Returns the max of the number of entries in all of the skid buffers.
statistics::Scalar unblockCycles
Stat for total number of unblocking cycles.
statistics::Scalar dispStoreInsts
Stat for total number of dispatched store instructions.
void commitLoads(InstSeqNum &youngest_inst, ThreadID tid)
Commits loads up until the given sequence number for a specific thread.
constexpr decltype(nullptr) NoFault
void setTimeBuffer(TimeBuffer< TimeStruct > *tb_ptr)
Sets main time buffer used for backwards communication.
TimeBuffer< TimeStruct >::wire toFetch
Wire to write information heading to previous stages.
std::queue< DynInstPtr > insts[MaxThreads]
Queue of all instructions coming from rename this cycle.
bool skidsEmpty()
Returns if all of the skid buffers are empty.
gem5::o3::IEW::IEWStats::ExecutedInstStats executedInstStats
ProbePointArg< DynInstPtr > * ppToCommit
To probe when instruction execution is complete.
statistics::Formula wbRate
Number of instructions per cycle written back.
TimeBuffer< RenameStruct > * renameQueue
Rename instruction queue interface.
statistics::Scalar blockCycles
Stat for total number of blocking cycles.
bool isFull()
Returns whether or not the IQ is full.
statistics::Vector producerInst
Number of instructions that wake consumers.
void checkSignalsAndUpdate(ThreadID tid)
Processes inputs and changes state accordingly.
void updateExeInstStats(const DynInstPtr &inst)
Updates execution stats based on the instruction.
int getCount()
Returns the number of instructions in all of the queues.
void writebackStores()
Attempts to write back stores until all cache ports are used or the interface becomes blocked.
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets the pointer to the list of active threads.
StageStatus dispatchStatus[MaxThreads]
Dispatch status.
void updateStatus()
Updates overall IEW status based on all of the stages' statuses.
void replayMemInst(const DynInstPtr &inst)
Re-executes all rescheduled memory instructions.
statistics::Formula numStoreInsts
Number of executed store instructions.
statistics::Vector numRefs
Number of executed meomory references.
ProbePointArg< DynInstPtr > * ppMispredict
Probe points.
statistics::Scalar predictedNotTakenIncorrect
Stat for total number of incorrect predicted not taken branches.
void takeOverFrom()
Takes over from another CPU's thread.
void takeOverFrom()
Takes over from another CPU's thread.
void checkMisprediction(const DynInstPtr &inst)
Check misprediction
TimeBuffer< RenameStruct >::wire fromRename
Wire to get rename's output from rename queue.
gem5::o3::IEW::IEWStats iewStats
void commit(const InstSeqNum &inst, ThreadID tid=0)
Commits all instructions up to and including the given sequence number, for a specific thread.
void clearStates(ThreadID tid)
Clear all thread-specific states.
void wakeDependents(const DynInstPtr &inst)
Wakes all dependents of a completed instruction.
Cycles commitToIEWDelay
Commit to IEW delay.
statistics::Scalar iqFullEvents
Stat for number of times the IQ becomes full.
TimeBuffer< IssueStruct > issueToExecQueue
Issue stage queue.
statistics::Formula wbFanout
Average number of woken instructions per writeback.
Implements a simple scoreboard to track which registers are ready.
void skidInsert(ThreadID tid)
Inserts unused instructions of a thread into the skid buffer.
void writebackInsts()
Writebacks instructions.
statistics::Scalar intInstQueueReads
void emptyRenameInsts(ThreadID tid)
Removes instructions from rename from a thread's instruction list.
std::list< ThreadID > * activeThreads
Pointer to list of active threads.
StageStatus exeStatus
Execute status.
TimeBuffer< IEWStruct >::wire toCommit
Wire to write infromation heading to commit.
void dispatchInsts(ThreadID tid)
Dispatches instructions to IQ and LSQ.
void sortInsts()
Sorts instructions coming from rename into lists separated by thread.
bool checkStall(ThreadID tid)
Checks if any of the stall conditions are currently true.
void recordProducer(const DynInstPtr &inst)
Records the instruction as the producer of a register without adding it to the rest of the IQ.
void cacheUnblocked()
Notify instruction queue that a previous blockage has resolved.
void takeOverFrom()
Takes over execution from another CPU's thread.
TimeBuffer< TimeStruct >::wire toRename
Wire to write information heading to previous stages.
void squash(ThreadID tid)
Squashes instructions in IEW for a specific thread.
statistics::Scalar numSquashedInsts
Stat for total number of squashed instructions skipped at execute.
statistics::Vector writebackCount
Number of instructions that writeback.
void setIssueToExecuteQueue(TimeBuffer< IssueStruct > *i2eQueue)
Sets the timer buffer between issue and execute.
Fault executeStore(const DynInstPtr &inst)
Executes a store.
void wakeCPU()
Tells the CPU to wakeup if it has descheduled itself due to no activity.
void startupStage()
Initializes stage; sends back the number of free IQ and LSQ entries.
void rescheduleMemInst(const DynInstPtr &inst)
Tells memory dependence unit that a memory instruction needs to be rescheduled.
bool sqFull()
Returns if any of the SQs are full.
gem5::Checker< DynInstPtr > * checker
Pointer to the checker, which can dynamically verify instruction results at run time.
bool violation()
Returns whether or not there was a memory ordering violation.
int wakeDependents(const DynInstPtr &completed_inst)
Wakes all dependents of a completed instruction.
void deactivateStage(const StageIdx idx)
Changes a stage's status to inactive within the activity recorder.
bool wroteToTimeBuffer
Records if IEW has written to the time buffer this cycle, so that the CPU can deschedule itself if th...
gem5::o3::InstructionQueue::IQIOStats iqIOStats
TimeBuffer< TimeStruct >::wire fromCommit
Wire to get commit's output from backwards time buffer.
statistics::Vector numLoadInsts
Stat for total number of executed load instructions.
InstructionQueue instQueue
Instruction queue.
int numHtmStarts(ThreadID tid) const
statistics::Vector consumerInst
Number of instructions that wake up from producers.
void block(ThreadID tid)
Sets Dispatch to blocked, and signals back to other stages to block.
statistics::Scalar dispSquashedInsts
Stat for total number of squashed instructions dispatch skips.
Status _status
Overall stage status.
bool isDrained() const
Have all the FUs drained?
void tick()
Ticks the LSQ.
statistics::Vector instsToCommit
Number of instructions sent to commit.
O3CPU class, has each of the stages (fetch through commit) within it, as well as all of the time buff...
bool isDrained() const
Has the stage drained?
void setTimeBuffer(TimeBuffer< TimeStruct > *tb_ptr)
Sets the global time buffer.
std::shared_ptr< FaultBase > Fault
bool isDrained() const
Has the LSQ drained?
void squashDueToBranch(const DynInstPtr &inst, ThreadID tid)
Sends commit proper information for a squash due to a branch mispredict.
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
void setReg(PhysRegIdPtr phys_reg)
Sets the register as ready.
IEW(CPU *_cpu, const O3CPUParams ¶ms)
Constructs a IEW with the given parameters.
IEW handles both single threaded and SMT IEW (issue/execute/writeback).
void deferMemInst(const DynInstPtr &deferred_inst)
Defers a memory instruction when its DTB translation incurs a hw page table walk.
std::queue< DynInstPtr > skidBuffer[MaxThreads]
Skid buffer between rename and IEW.
FUPool * fuPool
Pointer to the functional unit pool.
void activateStage(const StageIdx idx)
Changes a stage's status to active within the activity recorder.
uint64_t getLatestHtmUid(ThreadID tid) const
bool willWB()
Returns if the LSQ will write back to memory this cycle.
unsigned numFreeLoadEntries()
Returns the number of free load entries.
unsigned numFreeEntries()
Returns total number of free entries.
statistics::Scalar numInsts
Stat for total number of executed instructions.
StageStatus wbStatus
Writeback status.
void activityThisCycle()
Reports to the CPU that there is activity this cycle.
void wakeCPU()
Wakes the CPU, rescheduling the CPU if it's not already active.
Cycles renameToIEWDelay
Rename to IEW delay.
TimeBuffer< IEWStruct > * iewQueue
IEW stage time buffer.
void processFreeUnits()
Frees all FUs on the list.
static constexpr int MaxWidth
unsigned dispatchWidth
Width of dispatch, in instructions.
void scheduleNonSpec(const InstSeqNum &inst)
Schedules a single specific non-speculative instruction.
statistics::Scalar memOrderViolationEvents
Stat for total number of memory ordering violation events.
void tick()
Ticks IEW stage, causing Dispatch, the IQ, the LSQ, Execute, and Writeback to run for one cycle.
statistics::Scalar dispatchedInsts
Stat for total number of instructions dispatched.
void printAvailableInsts()
Debug function to print instructions that are issued this cycle.
ExecutedInstStats(CPU *cpu)
statistics::Vector numNop
Number of executed nops.
DynInstPtr getMemDepViolator(ThreadID tid)
Gets the instruction that caused the memory ordering violation.
DynInstPtr getInstToExecute()
Returns the oldest scheduled instruction, and removes it from the list of instructions waiting to exe...
unsigned wbWidth
Writeback width.
void squash(const InstSeqNum &squashed_num, ThreadID tid)
Squash instructions from a thread until the specified sequence number.
TimeBuffer< TimeStruct > * timeBuffer
Pointer to main time buffer used for backwards communication.
void drainSanityCheck() const
Perform sanity checks after a drain.
statistics::Scalar predictedTakenIncorrect
Stat for total number of incorrect predicted taken branches.
ProbePointArg generates a point for the class of Arg.
bool fetchRedirect[MaxThreads]
Records if there is a fetch redirect on this cycle for each thread.
statistics::Scalar squashCycles
Stat for total number of squashing cycles.
void insertBarrier(const DynInstPtr &barr_inst)
Inserts a memory or write barrier into the IQ to make sure loads and stores are ordered properly.
statistics::Scalar dispLoadInsts
Stat for total number of dispatched load instructions.
TimeBuffer< IssueStruct >::wire fromIssue
Wire to read information from the issue stage time queue.
static constexpr int MaxThreads
void activityThisCycle()
Records that there was time buffer activity this cycle.
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 for a thread.
unsigned issueWidth
Width of issue, in instructions.
void insertLoad(const DynInstPtr &load_inst)
Inserts a load into the LSQ.
void instToCommit(const DynInstPtr &inst)
Sends an instruction to commit through the time buffer.
void drainSanityCheck() const
Perform sanity checks after a drain.
ProbePointArg< DynInstPtr > * ppExecute
To probe when instruction execution begins.
statistics::Scalar dispNonSpecInsts
Stat for total number of dispatched non speculative insts.
void blockMemInst(const DynInstPtr &inst)
Moves memory instruction onto the list of cache blocked instructions.
unsigned wbCycle
Cycle number within the queue of instructions being written back.
void cacheUnblocked()
Notifies that the cache has become unblocked.
bool isDrained() const
Determine if we are drained.
statistics::Scalar lsqFullEvents
Stat for number of times the LSQ becomes full.
void insertNonSpec(const DynInstPtr &new_inst)
Inserts a new, non-speculative instruction into the IQ.
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets active threads list.
void blockMemInst(const DynInstPtr &blocked_inst)
Defers a memory instruction when it is cache blocked.
unsigned numFreeStoreEntries()
Returns the number of free store entries.
unsigned wbNumInst
Index into queue of instructions being written back.
unsigned skidBufferMax
Maximum size of the skid buffer.
void deactivateStage()
Tells CPU that the IEW stage is inactive and idle.
Scoreboard * scoreboard
Scoreboard pointer.
ProbePointArg< DynInstPtr > * ppDispatch
void setRenameQueue(TimeBuffer< RenameStruct > *rq_ptr)
Sets time buffer for getting instructions coming from rename.
void insert(const DynInstPtr &new_inst)
Inserts a new instruction into the IQ.
bool updateLSQNextCycle
Records if the LSQ needs to be updated on the next cycle, so that IEW knows if there will be activity...
void replayMemInst(const DynInstPtr &replay_inst)
Replays a memory instruction.
ThreadID numThreads
Number of active threads.
statistics::Vector numSwp
Number of executed software prefetches.
void squashDueToMemOrder(const DynInstPtr &inst, ThreadID tid)
Sends commit proper information for a squash due to a memory order violation.
RequestPort & getDataPort()
void takeOverFrom()
Takes over execution from another CPU's thread.
void commitStores(InstSeqNum &youngest_inst, ThreadID tid)
Commits stores up until the given sequence number for a specific thread.
Derived & flags(Flags _flags)
Set the flags and marks this stat to print at the end of simulation.
void scheduleReadyInsts()
Schedules ready instructions, adding the ready ones (oldest first) to the queue to execute.
LSQ ldstQueue
Load / store queue.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
const FlagsType total
Print the total.
void setIEWQueue(TimeBuffer< IEWStruct > *iq_ptr)
Sets time buffer to pass on instructions to commit.
Derived & init(size_type size)
Set this vector to have the given size.
bool lqFull()
Returns if any of the LQs are full.
void dispatch(ThreadID tid)
Determines proper actions to take given Dispatch's status.
int numHtmStops(ThreadID tid) const
bool updatedQueues
Records if the queues have been changed (inserted or issued insts), so that IEW knows to broadcast th...
Cycles issueToExecuteDelay
Issue to execute delay.
Fault executeLoad(const DynInstPtr &inst)
Executes a load.
statistics::Vector numBranches
Number of executed branches.
void activateStage()
Tells CPU that the IEW stage is active and running.
statistics::Formula numRate
Number of instructions executed per cycle.
int16_t ThreadID
Thread index/ID type.
std::string name() const
Returns the name of the IEW stage.
void violation(const DynInstPtr &store, const DynInstPtr &faulting_load)
Indicates an ordering violation between a store and a load.
#define panic(...)
This implements a cprintf based panic() function.
void setScoreboard(Scoreboard *sb_ptr)
Sets pointer to the scoreboard.
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets pointer to list of active threads.
bool hasReadyInsts()
Returns if there are any ready instructions in the IQ.
void executeInsts()
Executes instructions.
void regProbePoints()
Registers probes.
unsigned getCount(ThreadID tid)
Returns the number of used entries for a thread.
Generated on Wed May 4 2022 12:13:53 for gem5 by doxygen 1.8.17