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",
146 : statistics::
Group(cpu),
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();
467 inst->staticInst->advancePC(
pc);
470 toCommit->mispredictInst[tid] = inst;
471 toCommit->includeSquashInst[tid] =
false;
481 DPRINTF(
IEW,
"[tid:%i] Memory violation, squashing violator and younger "
482 "insts, PC: %s [sn:%llu].\n", tid, inst->pcState(), inst->seqNum);
490 inst->seqNum <=
toCommit->squashedSeqNum[tid]) {
493 toCommit->squashedSeqNum[tid] = inst->seqNum;
494 toCommit->pc[tid] = inst->pcState();
495 toCommit->mispredictInst[tid] = NULL;
498 toCommit->includeSquashInst[tid] =
true;
525 DPRINTF(
IEW,
"[tid:%i] Reading instructions out of the skid "
526 "buffer %u.\n",tid, tid);
533 DPRINTF(
IEW,
"[tid:%i] Done unblocking.\n",tid);
589 DPRINTF(
IEW,
"Current wb cycle: %i, width: %i, numInst: %i\nwbActual:%i\n",
601 while (!
insts[tid].empty()) {
602 inst =
insts[tid].front();
606 DPRINTF(
IEW,
"[tid:%i] Inserting [sn:%lli] PC:%s into "
607 "dispatch skidBuffer %i\n",tid, inst->seqNum,
608 inst->pcState(),tid);
614 "Skidbuffer Exceeded Max Size");
625 while (threads != end) {
627 unsigned thread_count =
skidBuffer[tid].size();
628 if (max < thread_count)
641 while (threads != end) {
654 bool any_unblocking =
false;
659 while (threads != end) {
663 any_unblocking =
true;
696 if (
fromCommit->commitInfo[tid].robSquashing) {
697 DPRINTF(
IEW,
"[tid:%i] Stall from Commit stage detected.\n",tid);
700 DPRINTF(
IEW,
"[tid:%i] Stall: IQ is full.\n",tid);
731 if (
fromCommit->commitInfo[tid].robSquashing) {
732 DPRINTF(
IEW,
"[tid:%i] ROB is still squashing.\n", tid);
748 DPRINTF(
IEW,
"[tid:%i] Done blocking, switching to unblocking.\n",
761 DPRINTF(
IEW,
"[tid:%i] Done squashing, switching to running.\n",
776 assert(
insts[tid].empty());
778 for (
int i = 0;
i < insts_from_rename; ++
i) {
786 DPRINTF(
IEW,
"[tid:%i] Removing incoming rename instructions\n", tid);
788 while (!
insts[tid].empty()) {
790 if (
insts[tid].front()->isLoad()) {
791 toRename->iewInfo[tid].dispatchedToLQ++;
793 if (
insts[tid].front()->isStore() ||
794 insts[tid].front()->isAtomic()) {
795 toRename->iewInfo[tid].dispatchedToSQ++;
798 toRename->iewInfo[tid].dispatched++;
813 DPRINTF(Activity,
"Activity this cycle.\n");
820 DPRINTF(Activity,
"Activating stage.\n");
827 DPRINTF(Activity,
"Deactivating stage.\n");
852 DPRINTF(
IEW,
"[tid:%i] Not blocked, so attempting to run "
883 std::queue<DynInstPtr> &insts_to_dispatch =
887 int insts_to_add = insts_to_dispatch.size();
890 bool add_to_iq =
false;
891 int dis_num_inst = 0;
895 for ( ; dis_num_inst < insts_to_add &&
899 inst = insts_to_dispatch.front();
902 DPRINTF(
IEW,
"[tid:%i] Issue: Examining instruction from skid "
909 DPRINTF(
IEW,
"[tid:%i] Issue: Adding PC %s [sn:%lli] [tid:%i] to "
911 tid, inst->pcState(), inst->seqNum, inst->threadNumber);
918 if (inst->isSquashed()) {
919 DPRINTF(
IEW,
"[tid:%i] Issue: Squashed instruction encountered, "
920 "not adding to IQ.\n", tid);
924 insts_to_dispatch.pop();
927 if (inst->isLoad()) {
928 toRename->iewInfo[tid].dispatchedToLQ++;
930 if (inst->isStore() || inst->isAtomic()) {
931 toRename->iewInfo[tid].dispatchedToSQ++;
934 toRename->iewInfo[tid].dispatched++;
941 DPRINTF(
IEW,
"[tid:%i] Issue: IQ has become full.\n", tid);
959 DPRINTF(
IEW,
"[tid:%i] Issue: %s has become full.\n",tid,
960 inst->isLoad() ?
"LQ" :
"SQ");
978 const int htmDepth = numHtmStarts - numHtmStops;
984 inst->clearHtmTransactionalState();
989 if (inst->isAtomic()) {
990 DPRINTF(
IEW,
"[tid:%i] Issue: Memory instruction "
991 "encountered, adding to LSQ.\n", tid);
1000 inst->setCanCommit();
1006 toRename->iewInfo[tid].dispatchedToSQ++;
1007 }
else if (inst->isLoad()) {
1008 DPRINTF(
IEW,
"[tid:%i] Issue: Memory instruction "
1009 "encountered, adding to LSQ.\n", tid);
1019 toRename->iewInfo[tid].dispatchedToLQ++;
1020 }
else if (inst->isStore()) {
1021 DPRINTF(
IEW,
"[tid:%i] Issue: Memory instruction "
1022 "encountered, adding to LSQ.\n", tid);
1028 if (inst->isStoreConditional()) {
1033 inst->setCanCommit();
1042 toRename->iewInfo[tid].dispatchedToSQ++;
1043 }
else if (inst->isReadBarrier() || inst->isWriteBarrier()) {
1045 inst->setCanCommit();
1048 }
else if (inst->isNop()) {
1049 DPRINTF(
IEW,
"[tid:%i] Issue: Nop instruction encountered, "
1050 "skipping.\n", tid);
1053 inst->setExecuted();
1054 inst->setCanCommit();
1062 assert(!inst->isExecuted());
1066 if (add_to_iq && inst->isNonSpeculative()) {
1067 DPRINTF(
IEW,
"[tid:%i] Issue: Nonspeculative instruction "
1068 "encountered, skipping.\n", tid);
1071 inst->setCanCommit();
1087 insts_to_dispatch.pop();
1089 toRename->iewInfo[tid].dispatched++;
1094 inst->dispatchTick =
curTick() - inst->fetchTick;
1099 if (!insts_to_dispatch.empty()) {
1100 DPRINTF(
IEW,
"[tid:%i] Issue: Bandwidth Full. Blocking.\n", tid);
1119 std::cout <<
"Available Instructions: ";
1123 if (inst%3==0) std::cout <<
"\n\t";
1125 std::cout <<
"PC: " <<
fromIssue->insts[inst]->pcState()
1126 <<
" TN: " <<
fromIssue->insts[inst]->threadNumber
1127 <<
" SN: " <<
fromIssue->insts[inst]->seqNum <<
" | ";
1145 while (threads != end) {
1157 for (; inst_num < insts_to_execute;
1160 DPRINTF(
IEW,
"Execute: Executing instructions from IQ.\n");
1164 DPRINTF(
IEW,
"Execute: Processing PC %s, [tid:%i] [sn:%llu].\n",
1165 inst->pcState(), inst->threadNumber,inst->seqNum);
1172 if (inst->isSquashed()) {
1173 DPRINTF(
IEW,
"Execute: Instruction was squashed. PC: %s, [tid:%i]"
1174 " [sn:%llu]\n", inst->pcState(), inst->threadNumber,
1179 inst->setExecuted();
1183 inst->setCanCommit();
1195 if (inst->isMemRef()) {
1196 DPRINTF(
IEW,
"Execute: Calculating address for memory "
1200 if (inst->isAtomic()) {
1204 if (inst->isTranslationDelayed() &&
1208 DPRINTF(
IEW,
"Execute: Delayed translation, deferring "
1213 }
else if (inst->isLoad()) {
1218 if (inst->isTranslationDelayed() &&
1222 DPRINTF(
IEW,
"Execute: Delayed translation, deferring "
1228 if (inst->isDataPrefetch() || inst->isInstPrefetch()) {
1231 }
else if (inst->isStore()) {
1234 if (inst->isTranslationDelayed() &&
1238 DPRINTF(
IEW,
"Execute: Delayed translation, deferring "
1245 if (fault !=
NoFault || !inst->readPredicate() ||
1246 !inst->isStoreConditional()) {
1251 inst->setExecuted();
1260 panic(
"Unexpected memory type!\n");
1268 if (inst->getFault() ==
NoFault) {
1270 if (!inst->readPredicate())
1271 inst->forwardOldRegs();
1274 inst->setExecuted();
1293 toCommit->squashedSeqNum[tid] > inst->seqNum) {
1297 bool loadNotExecuted = !inst->isExecuted() && inst->isLoad();
1299 if (inst->mispredicted() && !loadNotExecuted) {
1303 "Branch mispredict detected.\n",
1306 "Predicted target was PC: %s\n",
1307 tid,inst->seqNum,inst->readPredTarg());
1309 "Redirecting fetch to PC: %s\n",
1310 tid,inst->seqNum,inst->pcState());
1316 if (inst->readPredTaken()) {
1322 assert(inst->isMemRef());
1329 DPRINTF(
IEW,
"LDSTQ detected a violation. Violator PC: %s "
1330 "[sn:%lli], inst PC: %s [sn:%lli]. Addr is: %#x.\n",
1331 violator->pcState(), violator->seqNum,
1332 inst->pcState(), inst->seqNum, inst->physEffAddr);
1348 assert(inst->isMemRef());
1352 DPRINTF(
IEW,
"LDSTQ detected a violation. Violator PC: "
1353 "%s, inst PC: %s. Addr is: %#x.\n",
1354 violator->pcState(), inst->pcState(),
1356 DPRINTF(
IEW,
"Violation will not be handled because "
1357 "already squashing\n");
1390 for (
int inst_num = 0; inst_num <
wbWidth &&
1391 toCommit->insts[inst_num]; inst_num++) {
1395 DPRINTF(
IEW,
"Sending instructions to commit, [sn:%lli] PC %s.\n",
1396 inst->seqNum, inst->pcState());
1408 if (!inst->isSquashed() && inst->isExecuted() &&
1409 inst->getFault() ==
NoFault) {
1412 for (
int i = 0;
i < inst->numDestRegs();
i++) {
1414 if (inst->regs.renamedDestIdx(
i)->
1415 getNumPinnedWritesToComplete() == 0) {
1416 DPRINTF(
IEW,
"Setting Destination Register %i (%s)\n",
1417 inst->regs.renamedDestIdx(
i)->index(),
1418 inst->regs.renamedDestIdx(
i)->className());
1452 while (threads != end) {
1455 DPRINTF(
IEW,
"Issue: Processing [tid:%i]\n",tid);
1476 bool broadcast_free_entries =
false;
1482 broadcast_free_entries =
true;
1494 while (threads != end) {
1500 if (
fromCommit->commitInfo[tid].doneSeqNum != 0 &&
1512 if (
fromCommit->commitInfo[tid].nonSpecSeqNum != 0) {
1515 if (
fromCommit->commitInfo[tid].strictlyOrdered) {
1517 fromCommit->commitInfo[tid].strictlyOrderedLoad);
1518 fromCommit->commitInfo[tid].strictlyOrderedLoad->setAtCommit();
1525 if (broadcast_free_entries) {
1526 toFetch->iewInfo[tid].iqCount =
1528 toFetch->iewInfo[tid].ldstqCount =
1531 toRename->iewInfo[tid].usedIQ =
true;
1532 toRename->iewInfo[tid].freeIQEntries =
1534 toRename->iewInfo[tid].usedLSQ =
true;
1536 toRename->iewInfo[tid].freeLQEntries =
1538 toRename->iewInfo[tid].freeSQEntries =
1544 DPRINTF(
IEW,
"[tid:%i], Dispatch dispatched %i instructions.\n",
1545 tid,
toRename->iewInfo[tid].dispatched);
1548 DPRINTF(
IEW,
"IQ has %i free entries (Can schedule: %i). "
1549 "LQ has %i free entries. SQ has %i free entries.\n",
1556 DPRINTF(Activity,
"Activity this cycle.\n");
1569 if (debug::O3PipeView) {
1570 inst->completeTick =
curTick() - inst->fetchTick;
1577 if (inst->isControl())
1583 if (inst->isMemRef()) {
1586 if (inst->isLoad()) {
1599 toCommit->squashedSeqNum[tid] > inst->seqNum) {
1601 if (inst->mispredicted()) {
1605 "Branch mispredict detected.\n",
1607 DPRINTF(
IEW,
"[tid:%i] [sn:%llu] Predicted target "
1608 "was PC:%#x, NPC:%#x\n",
1610 inst->predInstAddr(), inst->predNextInstAddr());
1612 "Redirecting fetch to PC: %#x, "
1615 inst->nextInstAddr(),
1616 inst->nextInstAddr());
1620 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.
ThreadID numThreads
Number of threads we're actually simulating (<= SMT_MAX_THREADS).
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.
gem5::BaseCPU::BaseCPUStats baseStats
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.
virtual std::string name() const
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.
statistics::Scalar numCycles
GenericISA::DelaySlotPCState< 4 > PCState
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.
ProbeManager * getProbeManager()
Get the probe manager for this object.
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 Jul 28 2021 12:10:24 for gem5 by doxygen 1.8.17