Go to the documentation of this file.
51 #include "debug/IQ.hh"
52 #include "enums/OpClass.hh"
53 #include "params/BaseO3CPU.hh"
68 :
Event(Stat_Event_Pri, AutoDelete),
69 inst(_inst), fuIdx(fu_idx), iqPtr(iq_ptr), freeFU(false)
76 iqPtr->processFUCompletion(inst, freeFU ? fuIdx : -1);
84 return "Functional unit completion";
88 const BaseO3CPUParams ¶ms)
102 const auto ®_classes = params.isa[0]->regClasses();
105 numPhysRegs = params.numPhysIntRegs + params.numPhysFloatRegs +
106 params.numPhysVecRegs +
107 params.numPhysVecRegs * (
110 params.numPhysVecPredRegs +
111 params.numPhysCCRegs;
129 if (
iqPolicy == SMTQueuePolicy::Dynamic) {
135 }
else if (
iqPolicy == SMTQueuePolicy::Partitioned) {
144 DPRINTF(IQ,
"IQ sharing policy set to Partitioned:"
145 "%i entries per thread.\n",part_amt);
146 }
else if (
iqPolicy == SMTQueuePolicy::Threshold) {
147 double threshold = (double)params.smtIQThreshold / 100;
149 int thresholdIQ = (
int)((double)threshold *
numEntries);
156 DPRINTF(IQ,
"IQ sharing policy set to Threshold:"
157 "%i entries per thread.\n",thresholdIQ);
168 cprintf(
"Nodes traversed: %i, removed: %i\n",
176 return cpu->name() +
".iq";
180 : statistics::
Group(cpu),
181 ADD_STAT(instsAdded, statistics::units::Count::get(),
182 "Number of instructions added to the IQ (excludes non-spec)"),
183 ADD_STAT(nonSpecInstsAdded, statistics::units::Count::get(),
184 "Number of non-speculative instructions added to the IQ"),
185 ADD_STAT(instsIssued, statistics::units::Count::get(),
186 "Number of instructions issued"),
187 ADD_STAT(intInstsIssued, statistics::units::Count::get(),
188 "Number of integer instructions issued"),
189 ADD_STAT(floatInstsIssued, statistics::units::Count::get(),
190 "Number of float instructions issued"),
191 ADD_STAT(branchInstsIssued, statistics::units::Count::get(),
192 "Number of branch instructions issued"),
193 ADD_STAT(memInstsIssued, statistics::units::Count::get(),
194 "Number of memory instructions issued"),
195 ADD_STAT(miscInstsIssued, statistics::units::Count::get(),
196 "Number of miscellaneous instructions issued"),
197 ADD_STAT(squashedInstsIssued, statistics::units::Count::get(),
198 "Number of squashed instructions issued"),
199 ADD_STAT(squashedInstsExamined, statistics::units::Count::get(),
200 "Number of squashed instructions iterated over during squash; "
201 "mainly for profiling"),
202 ADD_STAT(squashedOperandsExamined, statistics::units::Count::get(),
203 "Number of squashed operands that are examined and possibly "
204 "removed from graph"),
205 ADD_STAT(squashedNonSpecRemoved, statistics::units::Count::get(),
206 "Number of squashed non-spec instructions that were removed"),
207 ADD_STAT(numIssuedDist, statistics::units::Count::get(),
208 "Number of insts issued each cycle"),
209 ADD_STAT(statFuBusy, statistics::units::Count::get(),
210 "attempts to use FU when none available"),
211 ADD_STAT(statIssuedInstType, statistics::units::Count::get(),
212 "Number of instructions issued per FU type, per thread"),
213 ADD_STAT(issueRate, statistics::units::Rate<
214 statistics::units::Count, statistics::units::Cycle>::get(),
215 "Inst issue rate", instsIssued / cpu->baseStats.numCycles),
216 ADD_STAT(fuBusy, statistics::units::Count::get(),
"FU busy when requested"),
217 ADD_STAT(fuBusyRate, statistics::units::Rate<
218 statistics::units::Count, statistics::units::Count>::get(),
219 "FU busy rate (busy events/executed inst)")
268 .
init(0,total_width,1)
283 .
init(
cpu->numThreads,enums::Num_OpClass)
328 : statistics::
Group(parent),
329 ADD_STAT(intInstQueueReads, statistics::units::Count::get(),
330 "Number of integer instruction queue reads"),
331 ADD_STAT(intInstQueueWrites, statistics::units::Count::get(),
332 "Number of integer instruction queue writes"),
333 ADD_STAT(intInstQueueWakeupAccesses, statistics::units::Count::get(),
334 "Number of integer instruction queue wakeup accesses"),
335 ADD_STAT(fpInstQueueReads, statistics::units::Count::get(),
336 "Number of floating instruction queue reads"),
337 ADD_STAT(fpInstQueueWrites, statistics::units::Count::get(),
338 "Number of floating instruction queue writes"),
339 ADD_STAT(fpInstQueueWakeupAccesses, statistics::units::Count::get(),
340 "Number of floating instruction queue wakeup accesses"),
341 ADD_STAT(vecInstQueueReads, statistics::units::Count::get(),
342 "Number of vector instruction queue reads"),
343 ADD_STAT(vecInstQueueWrites, statistics::units::Count::get(),
344 "Number of vector instruction queue writes"),
345 ADD_STAT(vecInstQueueWakeupAccesses, statistics::units::Count::get(),
346 "Number of vector instruction queue wakeup accesses"),
347 ADD_STAT(intAluAccesses, statistics::units::Count::get(),
348 "Number of integer alu accesses"),
349 ADD_STAT(fpAluAccesses, statistics::units::Count::get(),
350 "Number of floating point alu accesses"),
351 ADD_STAT(vecAluAccesses, statistics::units::Count::get(),
352 "Number of vector alu accesses")
354 using namespace statistics;
481 if (
iqPolicy == SMTQueuePolicy::Partitioned) {
498 while (threads != end) {
501 if (
iqPolicy == SMTQueuePolicy::Partitioned) {
503 }
else if (
iqPolicy == SMTQueuePolicy::Threshold &&
504 active_threads == 1) {
564 if (new_inst->isFloating()) {
566 }
else if (new_inst->isVector()) {
574 DPRINTF(IQ,
"Adding instruction [sn:%llu] PC %s to the IQ.\n",
575 new_inst->seqNum, new_inst->pcState());
579 instList[new_inst->threadNumber].push_back(new_inst);
593 if (new_inst->isMemRef()) {
601 count[new_inst->threadNumber]++;
611 if (new_inst->isFloating()) {
613 }
else if (new_inst->isVector()) {
623 DPRINTF(IQ,
"Adding non-speculative instruction [sn:%llu] PC %s "
625 new_inst->seqNum, new_inst->pcState());
629 instList[new_inst->threadNumber].push_back(new_inst);
641 if (new_inst->isMemRef()) {
647 count[new_inst->threadNumber]++;
666 if (inst->isFloating()) {
668 }
else if (inst->isVector()) {
690 while (list_it != list_end_it) {
691 if ((*list_it).oldestInst > queue_entry.
oldestInst) {
711 OpClass op_class = (*list_order_it).
queueType;
720 (*next_it).oldestInst < queue_entry.
oldestInst) {
730 DPRINTF(IQ,
"Processing FU completion [sn:%llu]\n", inst->seqNum);
731 assert(!
cpu->switchedOut());
753 DPRINTF(IQ,
"Attempting to schedule ready instructions from "
776 int total_issued = 0;
780 while (total_issued <
totalWidth && order_it != order_end_it) {
781 OpClass op_class = (*order_it).queueType;
787 if (issuing_inst->isFloating()) {
789 }
else if (issuing_inst->isVector()) {
795 assert(issuing_inst->seqNum == (*order_it).oldestInst);
797 if (issuing_inst->isSquashed()) {
816 ThreadID tid = issuing_inst->threadNumber;
818 if (op_class != No_OpClass) {
820 if (issuing_inst->isFloating()) {
822 }
else if (issuing_inst->isVector()) {
835 if (op_latency ==
Cycles(1)) {
850 cpu->schedule(execution,
863 DPRINTF(IQ,
"Thread %i: Issuing instruction PC %s "
865 tid, issuing_inst->pcState(),
866 issuing_inst->seqNum);
877 issuing_inst->setIssued();
881 issuing_inst->issueTick =
curTick() - issuing_inst->fetchTick;
884 if (issuing_inst->firstIssue == -1)
885 issuing_inst->firstIssue =
curTick();
887 if (!issuing_inst->isMemRef()) {
892 issuing_inst->clearInIQ();
916 DPRINTF(IQ,
"Not able to schedule any instructions.\n");
923 DPRINTF(IQ,
"Marking nonspeculative instruction [sn:%llu] as ready "
924 "to execute.\n", inst);
930 ThreadID tid = (*inst_it).second->threadNumber;
932 (*inst_it).second->setAtCommit();
934 (*inst_it).second->setCanIssue();
936 if (!(*inst_it).second->isMemRef()) {
942 (*inst_it).second = NULL;
950 DPRINTF(IQ,
"[tid:%i] Committing instructions older than [sn:%llu]\n",
955 while (iq_it !=
instList[tid].end() &&
956 (*iq_it)->seqNum <= inst) {
970 if (completed_inst->isFloating()) {
972 }
else if (completed_inst->isVector()) {
978 completed_inst->lastWakeDependents =
curTick();
980 DPRINTF(IQ,
"Waking dependents of completed instruction.\n");
982 assert(!completed_inst->isSquashed());
987 ThreadID tid = completed_inst->threadNumber;
988 if (completed_inst->isMemRef()) {
991 DPRINTF(IQ,
"Completing mem instruction PC: %s [sn:%llu]\n",
992 completed_inst->pcState(), completed_inst->seqNum);
995 completed_inst->memOpDone(
true);
997 }
else if (completed_inst->isReadBarrier() ||
998 completed_inst->isWriteBarrier()) {
1003 for (
int dest_reg_idx = 0;
1004 dest_reg_idx < completed_inst->numDestRegs();
1008 completed_inst->renamedDestIdx(dest_reg_idx);
1013 DPRINTF(IQ,
"Reg %d [%s] is part of a fix mapping, skipping\n",
1021 completed_inst->setPinnedRegsWritten();
1024 DPRINTF(IQ,
"Reg %d [%s] is pinned, skipping\n",
1029 DPRINTF(IQ,
"Waking any dependents on register %i (%s).\n",
1038 DPRINTF(IQ,
"Waking up a dependent instruction, [sn:%llu] "
1039 "PC %s.\n", dep_inst->seqNum, dep_inst->pcState());
1045 dep_inst->markSrcRegReady();
1068 OpClass op_class = ready_inst->opClass();
1077 (*
readyIt[op_class]).oldestInst) {
1082 DPRINTF(IQ,
"Instruction is ready to issue, putting it onto "
1083 "the ready list, PC %s opclass:%i [sn:%llu].\n",
1084 ready_inst->pcState(), op_class, ready_inst->seqNum);
1090 DPRINTF(IQ,
"Rescheduling mem inst [sn:%llu]\n", resched_inst->seqNum);
1093 resched_inst->translationStarted(
false);
1094 resched_inst->translationCompleted(
false);
1096 resched_inst->clearCanIssue();
1115 blocked_inst->clearIssued();
1116 blocked_inst->clearCanIssue();
1118 DPRINTF(IQ,
"Memory inst [sn:%llu] PC %s is blocked, will be "
1119 "reissued later\n", blocked_inst->seqNum,
1120 blocked_inst->pcState());
1126 DPRINTF(IQ,
"Cache is unblocked, rescheduling blocked memory "
1138 if ((*it)->translationCompleted() || (*it)->isSquashed()) {
1170 DPRINTF(IQ,
"[tid:%i] Starting to squash instructions in "
1190 DPRINTF(IQ,
"[tid:%i] Squashing until sequence number %i!\n",
1195 while (squash_it !=
instList[tid].end() &&
1199 if (squashed_inst->isFloating()) {
1201 }
else if (squashed_inst->isVector()) {
1209 if (squashed_inst->threadNumber != tid ||
1210 squashed_inst->isSquashedInIQ()) {
1215 if (!squashed_inst->isIssued() ||
1216 (squashed_inst->isMemRef() &&
1217 !squashed_inst->memOpDone())) {
1219 DPRINTF(IQ,
"[tid:%i] Instruction [sn:%llu] PC %s squashed.\n",
1220 tid, squashed_inst->seqNum, squashed_inst->pcState());
1222 bool is_acq_rel = squashed_inst->isFullMemBarrier() &&
1223 (squashed_inst->isLoad() ||
1224 (squashed_inst->isStore() &&
1225 !squashed_inst->isStoreConditional()));
1229 (!squashed_inst->isNonSpeculative() &&
1230 !squashed_inst->isStoreConditional() &&
1231 !squashed_inst->isAtomic() &&
1232 !squashed_inst->isReadBarrier() &&
1233 !squashed_inst->isWriteBarrier())) {
1235 for (
int src_reg_idx = 0;
1236 src_reg_idx < squashed_inst->numSrcRegs();
1240 squashed_inst->renamedSrcIdx(src_reg_idx);
1251 if (!squashed_inst->readySrcIdx(src_reg_idx) &&
1260 }
else if (!squashed_inst->isStoreConditional() ||
1261 !squashed_inst->isCompleted()) {
1272 assert(squashed_inst->getFault() !=
NoFault ||
1273 squashed_inst->isMemRef());
1276 (*ns_inst_it).second = NULL;
1287 squashed_inst->setSquashedInIQ();
1291 squashed_inst->setIssued();
1292 squashed_inst->setCanCommit();
1293 squashed_inst->clearInIQ();
1296 count[squashed_inst->threadNumber]--;
1308 for (
int dest_reg_idx = 0;
1309 dest_reg_idx < squashed_inst->numDestRegs();
1313 squashed_inst->renamedDestIdx(dest_reg_idx);
1329 return lhs->seqNum > rhs->seqNum;
1337 int8_t total_src_regs = new_inst->numSrcRegs();
1338 bool return_val =
false;
1340 for (
int src_reg_idx = 0;
1341 src_reg_idx < total_src_regs;
1345 if (!new_inst->readySrcIdx(src_reg_idx)) {
1346 PhysRegIdPtr src_reg = new_inst->renamedSrcIdx(src_reg_idx);
1355 DPRINTF(IQ,
"Instruction PC %s has src reg %i (%s) that "
1356 "is being added to the dependency chain.\n",
1357 new_inst->pcState(), src_reg->
index(),
1366 DPRINTF(IQ,
"Instruction PC %s has src reg %i (%s) that "
1367 "became ready before it reached the IQ.\n",
1368 new_inst->pcState(), src_reg->
index(),
1371 new_inst->markSrcRegReady(src_reg_idx);
1386 int8_t total_dest_regs = new_inst->numDestRegs();
1388 for (
int dest_reg_idx = 0;
1389 dest_reg_idx < total_dest_regs;
1392 PhysRegIdPtr dest_reg = new_inst->renamedDestIdx(dest_reg_idx);
1402 panic(
"Dependency graph %i (%s) (flat: %i) not empty!",
1419 if (inst->readyToIssue()) {
1422 if (inst->isMemRef()) {
1424 DPRINTF(IQ,
"Checking if memory instruction can issue.\n");
1433 OpClass op_class = inst->opClass();
1435 DPRINTF(IQ,
"Instruction is ready to issue, putting it onto "
1436 "the ready list, PC %s opclass:%i [sn:%llu].\n",
1437 inst->pcState(), op_class, inst->seqNum);
1446 (*
readyIt[op_class]).oldestInst) {
1473 cprintf(
"Non speculative list: ");
1475 while (non_spec_it != non_spec_end_it) {
1476 cprintf(
"%s [sn:%llu]", (*non_spec_it).second->pcState(),
1477 (*non_spec_it).second->seqNum);
1489 while (list_order_it != list_order_end_it) {
1490 cprintf(
"%i OpClass:%i [sn:%llu] ",
i, (*list_order_it).queueType,
1491 (*list_order_it).oldestInst);
1509 while (inst_list_it !=
instList[tid].end()) {
1510 cprintf(
"Instruction:%i\n", num);
1511 if (!(*inst_list_it)->isSquashed()) {
1512 if (!(*inst_list_it)->isIssued()) {
1514 cprintf(
"Count:%i\n", valid_num);
1515 }
else if ((*inst_list_it)->isMemRef() &&
1516 !(*inst_list_it)->memOpDone()) {
1520 cprintf(
"Count:%i\n", valid_num);
1524 cprintf(
"PC: %s\n[sn:%llu]\n[tid:%i]\n"
1525 "Issued:%i\nSquashed:%i\n",
1526 (*inst_list_it)->pcState(),
1527 (*inst_list_it)->seqNum,
1528 (*inst_list_it)->threadNumber,
1529 (*inst_list_it)->isIssued(),
1530 (*inst_list_it)->isSquashed());
1532 if ((*inst_list_it)->isMemRef()) {
1533 cprintf(
"MemOpDone:%i\n", (*inst_list_it)->memOpDone());
1543 cprintf(
"Insts to Execute list:\n");
1553 if (!(*inst_list_it)->isSquashed()) {
1554 if (!(*inst_list_it)->isIssued()) {
1556 cprintf(
"Count:%i\n", valid_num);
1557 }
else if ((*inst_list_it)->isMemRef() &&
1558 !(*inst_list_it)->memOpDone()) {
1562 cprintf(
"Count:%i\n", valid_num);
1566 cprintf(
"PC: %s\n[sn:%llu]\n[tid:%i]\n"
1567 "Issued:%i\nSquashed:%i\n",
1568 (*inst_list_it)->pcState(),
1569 (*inst_list_it)->seqNum,
1570 (*inst_list_it)->threadNumber,
1571 (*inst_list_it)->isIssued(),
1572 (*inst_list_it)->isSquashed());
1574 if ((*inst_list_it)->isMemRef()) {
1575 cprintf(
"MemOpDone:%i\n", (*inst_list_it)->memOpDone());
statistics::Scalar miscInstsIssued
Stat for number of miscellaneous instructions issued.
ListOrderIt readyIt[Num_OpClasses]
Iterators of each ready queue.
void rescheduleMemInst(const DynInstPtr &resched_inst)
Reschedules a memory instruction.
Tick curTick()
The universal simulation clock.
void addToOrderList(OpClass op_class)
Add an op class to the age order list.
unsigned maxEntries[MaxThreads]
Max IQ Entries Per Thread.
void resetEntries()
Resets max entries for all threads.
void drainSanityCheck() const
Perform sanity checks after a drain.
TimeBuffer< IssueStruct > * issueToExecuteQueue
The queue to the execute stage.
constexpr decltype(nullptr) NoFault
statistics::Vector2d statIssuedInstType
Stat for total number issued for each instruction type.
statistics::Scalar fpAluAccesses
statistics::Scalar squashedInstsIssued
Stat for number of squashed instructions that were ready to issue.
int countInsts()
Debugging function to count how many entries are in the IQ.
void cprintf(const char *format, const Args &...args)
std::list< DynInstPtr > instsToExecute
List of instructions that are ready to be executed.
statistics::Scalar instsIssued
DynInstPtr getDeferredMemInstToExecute()
Gets a memory instruction that was referred due to a delayed DTB translation if it is now ready to ex...
static constexpr auto NoCapableFU
IQIOStats(statistics::Group *parent)
std::vector< bool > regScoreboard
A cache of the recently woken registers.
void insertBarrier(const DynInstPtr &barr_inst)
Inserts a barrier instruction.
bool isFull()
Returns whether or not the IQ is full.
@ VecElemClass
Vector Register Native Elem lane.
bool queueOnList[Num_OpClasses]
Tracks if each ready queue is on the age order list.
std::map< InstSeqNum, DynInstPtr > nonSpecInsts
List of non-speculative instructions that will be scheduled once the IQ gets a signal from commit.
A standard instruction queue class.
DynInstPtr getBlockedMemInstToExecute()
Gets a memory instruction that was blocked on the cache.
Derived & init(size_type _x, size_type _y)
void completeInst(const DynInstPtr &inst)
Notifies completion of an instruction.
statistics::Formula issueRate
Number of instructions issued per cycle.
Cycles getOpLatency(OpClass capability)
Returns the operation execution latency of the given capability.
statistics::Scalar vecInstQueueWrites
CPU * cpu
Pointer to the CPU.
void squash(const InstSeqNum &squashed_num, ThreadID tid)
Squashes all instructions up until a given sequence number for a specific thread.
void commit(const InstSeqNum &inst, ThreadID tid=0)
Commits all instructions up to and including the given sequence number, for a specific thread.
statistics::Scalar vecInstQueueWakeupAccesses
statistics::Scalar squashedInstsExamined
Stat for number of squashed instructions examined when squashing.
Derived & subname(off_type index, const std::string &name)
Set the subfield name for the given index, and marks this stat to print at the end of simulation.
static scfx_rep_node * list
statistics::Scalar instsAdded
Stat for number of instructions added.
bool operator()(const DynInstPtr &lhs, const DynInstPtr &rhs) const
statistics::Scalar intInstQueueReads
statistics::Scalar vecInstQueueReads
unsigned numEntries
The number of entries in the instruction queue.
bool addToDependents(const DynInstPtr &new_inst)
Adds an instruction to the dependency graph, as a consumer.
void cacheUnblocked()
Notify instruction queue that a previous blockage has resolved.
void takeOverFrom()
Takes over execution from another CPU's thread.
statistics::Scalar intInstQueueWakeupAccesses
unsigned numPhysRegs
The number of physical registers in the CPU.
void resetState()
Resets all instruction queue state.
void setIssueToExecuteQueue(TimeBuffer< IssueStruct > *i2eQueue)
Sets the timer buffer between issue and execute.
void sample(const U &v, int n=1)
Add a value to the distribtion n times.
void decrNumPinnedWritesToComplete()
const FlagsType dist
Print the distribution.
void wakeCPU()
Tells the CPU to wakeup if it has descheduled itself due to no activity.
DependencyGraph< DynInstPtr > dependGraph
unsigned freeEntries
Number of free IQ entries left.
void issue(const DynInstPtr &inst)
Issues the given instruction.
std::list< ListOrderEntry >::iterator ListOrderIt
int wakeDependents(const DynInstPtr &completed_inst)
Wakes all dependents of a completed instruction.
statistics::Scalar vecAluAccesses
IEW * iewStage
Pointer to IEW stage.
Cycles is a wrapper class for representing cycle counts, i.e.
MemDepUnit memDepUnit[MaxThreads]
The memory dependence unit, which tracks/predicts memory dependences between instructions.
std::list< DynInstPtr > deferredMemInsts
List of instructions waiting for their DTB translation to complete (hw page table walk in progress).
gem5::o3::InstructionQueue::IQIOStats iqIOStats
const FlagsType pdf
Print the percent of the total that this entry represents.
void freeUnitNextCycle(int fu_idx)
Frees a FU at the end of this cycle.
statistics::Scalar fpInstQueueReads
void addIfReady(const DynInstPtr &inst)
Moves an instruction to the ready queue if it is ready.
const RegIndex & flatIndex() const
Flat index accessor.
void replay()
Replays all instructions that have been rescheduled by moving them to the ready list.
statistics::Scalar intAluAccesses
O3CPU class, has each of the stages (fetch through commit) within it, as well as all of the time buff...
statistics::Scalar squashedOperandsExamined
Stat for number of squashed instruction operands examined when squashing.
void setIQ(InstructionQueue *iq_ptr)
Sets the pointer to the IQ.
std::string name() const
Returns the name of the IQ.
FU completion event class.
Distribution & init(Counter min, Counter max, Counter bkt)
Set the parameters of this distribution.
void setTimeBuffer(TimeBuffer< TimeStruct > *tb_ptr)
Sets the global time buffer.
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
void doSquash(ThreadID tid)
Does the actual squashing.
statistics::Scalar branchInstsIssued
Stat for number of branch instructions issued.
std::list< ThreadID > * activeThreads
Pointer to list of active threads.
statistics::Scalar squashedNonSpecRemoved
Stat for number of non-speculative instructions removed due to a squash.
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.
void nonSpecInstReady(const DynInstPtr &inst)
Indicate that a non-speculative instruction is ready.
std::list< DynInstPtr > retryMemInsts
List of instructions that were cache blocked, but a retry has been seen since, so they can now be ret...
Cycles commitToIEWDelay
Delay between commit stage and the IQ.
unsigned totalWidth
The total number of instructions that can be issued in one cycle.
unsigned numFreeEntries()
Returns total number of free entries.
constexpr const char * className() const
Return a const char* with the register class name.
statistics::Scalar nonSpecInstsAdded
Stat for number of non-speculative instructions added.
void addToProducers(const DynInstPtr &new_inst)
Adds an instruction to the dependency graph, as a producer.
void wakeCPU()
Wakes the CPU, rescheduling the CPU if it's not already active.
void violation(const DynInstPtr &store_inst, const DynInstPtr &violating_load)
Indicates an ordering violation between a store and a younger load.
statistics::Formula fuBusyRate
Number of times the FU was busy per instruction issued.
TimeBuffer< TimeStruct >::wire fromCommit
Wire to read information from timebuffer.
FUPool * fuPool
Function unit pool.
void dumpInsts()
Debugging function to dump out all instructions that are in the IQ.
statistics::Scalar memInstsIssued
Stat for number of memory instructions issued.
int getNumPinnedWritesToComplete() const
void scheduleNonSpec(const InstSeqNum &inst)
Schedules a single specific non-speculative instruction.
void processFUCompletion(const DynInstPtr &inst, int fu_idx)
Process FU completion event.
DynInstPtr getInstToExecute()
Returns the oldest scheduled instruction, and removes it from the list of instructions waiting to exe...
bool isPipelined(OpClass capability)
Returns the issue latency of the given capability.
statistics::Scalar intInstsIssued
Stat for number of integer instructions issued.
gem5::o3::InstructionQueue::IQStats iqStats
statistics::Scalar intInstQueueWrites
void init(const BaseO3CPUParams ¶ms, ThreadID tid, CPU *cpu)
Initializes the unit with parameters and a thread id.
void insertBarrier(const DynInstPtr &barr_inst)
Inserts a memory or write barrier into the IQ to make sure loads and stores are ordered properly.
static constexpr int MaxThreads
statistics::Scalar floatInstsIssued
Stat for number of floating point instructions issued.
SMTQueuePolicy iqPolicy
IQ sharing policy for SMT.
void regsReady(const DynInstPtr &inst)
Indicate that an instruction has its registers ready.
void activityThisCycle()
Records that there was time buffer activity this cycle.
void squash(ThreadID tid)
Squashes instructions for a thread.
statistics::Scalar fpInstQueueWrites
~InstructionQueue()
Destructs the IQ.
Derived & prereq(const Stat &prereq)
Set the prerequisite stat and marks this stat to print at the end of simulation.
InstructionQueue(CPU *cpu_ptr, IEW *iew_ptr, const BaseO3CPUParams ¶ms)
Constructs an IQ.
std::list< DynInstPtr >::iterator ListIt
bool isDrained() const
Determine if we are drained.
virtual const char * description() const
Return a C string describing the event.
void moveToYoungerInst(ListOrderIt age_order_it)
Called when the oldest instruction has been removed from a ready queue; this places that ready queue ...
void insertNonSpec(const DynInstPtr &new_inst)
Inserts a new, non-speculative instruction into the IQ.
std::list< DynInstPtr > blockedMemInsts
List of instructions that have been cache blocked.
void addReadyMemInst(const DynInstPtr &ready_inst)
Adds a ready memory instruction to the ready list.
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets active threads list.
unsigned count[MaxThreads]
Per Thread IQ count.
void blockMemInst(const DynInstPtr &blocked_inst)
Defers a memory instruction when it is cache blocked.
IQStats(CPU *cpu, const unsigned &total_width)
void insertNonSpec(const DynInstPtr &inst)
Inserts a non-speculative memory instruction.
void insert(const DynInstPtr &new_inst)
Inserts a new instruction into the IQ.
statistics::Vector statFuBusy
Distribution of the cycles it takes to issue an instruction.
Derived & ysubnames(const char **names)
int entryAmount(ThreadID num_threads)
Number of entries needed for given amount of threads.
statistics::Vector fuBusy
Number of times the FU was busy.
void replayMemInst(const DynInstPtr &replay_inst)
Replays a memory instruction.
statistics::Distribution numIssuedDist
Distribution of number of instructions in the queue.
constexpr RegIndex index() const
Visible RegId methods.
TimeBuffer< TimeStruct > * timeBuffer
The backwards time buffer.
static const OpClass Num_OpClasses
ThreadID numThreads
Number of Total Threads.
bool isFixedMapping() const
Returns true if this register is always associated to the same architectural register.
Derived & flags(Flags _flags)
Set the flags and marks this stat to print at the end of simulation.
@ VecRegClass
Vector Register.
static constexpr auto NoFreeFU
void scheduleReadyInsts()
Schedules ready instructions, adding the ready ones (oldest first) to the queue to execute.
std::map< InstSeqNum, DynInstPtr >::iterator NonSpecMapIt
void dumpLists()
Debugging function to dump all the list sizes, as well as print out the list of nonspeculative instru...
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
int wbOutstanding
Number of instructions currently in flight to FUs.
statistics::Scalar fpInstQueueWakeupAccesses
const FlagsType total
Print the total.
Derived & init(size_type size)
Set this vector to have the given size.
InstSeqNum squashedSeqNum[MaxThreads]
The sequence number of the squashed instruction.
void insert(const DynInstPtr &inst)
Inserts a memory instruction.
int getUnit(OpClass capability)
Gets a FU providing the requested capability.
int16_t ThreadID
Thread index/ID type.
std::list< ListOrderEntry > listOrder
List that contains the age order of the oldest instruction of each ready queue.
std::list< DynInstPtr > instList[MaxThreads]
List of all the instructions in the IQ (some of which may be issued).
ReadyInstQueue readyInsts[Num_OpClasses]
List of ready instructions, per op class.
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.
Entry for the list age ordering by op class.
bool hasReadyInsts()
Returns if there are any ready instructions in the IQ.
void reschedule(const DynInstPtr &inst)
Reschedules an instruction to be re-executed.
FUCompletion(const DynInstPtr &_inst, int fu_idx, InstructionQueue *iq_ptr)
Construct a FU completion event.
Generated on Thu Jun 16 2022 10:41:47 for gem5 by doxygen 1.8.17