Go to the documentation of this file.
51 #include "debug/IQ.hh"
52 #include "enums/OpClass.hh"
53 #include "params/O3CPU.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 O3CPUParams ¶ms)
104 numPhysRegs = params.numPhysIntRegs + params.numPhysFloatRegs +
105 params.numPhysVecRegs +
107 params.numPhysVecPredRegs +
108 params.numPhysCCRegs;
126 if (
iqPolicy == SMTQueuePolicy::Dynamic) {
132 }
else if (
iqPolicy == SMTQueuePolicy::Partitioned) {
141 DPRINTF(IQ,
"IQ sharing policy set to Partitioned:"
142 "%i entries per thread.\n",part_amt);
143 }
else if (
iqPolicy == SMTQueuePolicy::Threshold) {
144 double threshold = (double)params.smtIQThreshold / 100;
146 int thresholdIQ = (
int)((double)threshold *
numEntries);
153 DPRINTF(IQ,
"IQ sharing policy set to Threshold:"
154 "%i entries per thread.\n",thresholdIQ);
165 cprintf(
"Nodes traversed: %i, removed: %i\n",
173 return cpu->name() +
".iq";
177 : statistics::
Group(cpu),
178 ADD_STAT(instsAdded, statistics::units::Count::get(),
179 "Number of instructions added to the IQ (excludes non-spec)"),
180 ADD_STAT(nonSpecInstsAdded, statistics::units::Count::get(),
181 "Number of non-speculative instructions added to the IQ"),
182 ADD_STAT(instsIssued, statistics::units::Count::get(),
183 "Number of instructions issued"),
184 ADD_STAT(intInstsIssued, statistics::units::Count::get(),
185 "Number of integer instructions issued"),
186 ADD_STAT(floatInstsIssued, statistics::units::Count::get(),
187 "Number of float instructions issued"),
188 ADD_STAT(branchInstsIssued, statistics::units::Count::get(),
189 "Number of branch instructions issued"),
190 ADD_STAT(memInstsIssued, statistics::units::Count::get(),
191 "Number of memory instructions issued"),
192 ADD_STAT(miscInstsIssued, statistics::units::Count::get(),
193 "Number of miscellaneous instructions issued"),
194 ADD_STAT(squashedInstsIssued, statistics::units::Count::get(),
195 "Number of squashed instructions issued"),
196 ADD_STAT(squashedInstsExamined, statistics::units::Count::get(),
197 "Number of squashed instructions iterated over during squash; "
198 "mainly for profiling"),
199 ADD_STAT(squashedOperandsExamined, statistics::units::Count::get(),
200 "Number of squashed operands that are examined and possibly "
201 "removed from graph"),
202 ADD_STAT(squashedNonSpecRemoved, statistics::units::Count::get(),
203 "Number of squashed non-spec instructions that were removed"),
204 ADD_STAT(numIssuedDist, statistics::units::Count::get(),
205 "Number of insts issued each cycle"),
206 ADD_STAT(statFuBusy, statistics::units::Count::get(),
207 "attempts to use FU when none available"),
208 ADD_STAT(statIssuedInstType, statistics::units::Count::get(),
209 "Number of instructions issued per FU type, per thread"),
210 ADD_STAT(issueRate, statistics::units::Rate<
211 statistics::units::Count, statistics::units::Cycle>::get(),
212 "Inst issue rate", instsIssued / cpu->baseStats.numCycles),
213 ADD_STAT(fuBusy, statistics::units::Count::get(),
"FU busy when requested"),
214 ADD_STAT(fuBusyRate, statistics::units::Rate<
215 statistics::units::Count, statistics::units::Count>::get(),
216 "FU busy rate (busy events/executed inst)")
265 .
init(0,total_width,1)
280 .
init(
cpu->numThreads,enums::Num_OpClass)
325 : statistics::
Group(parent),
326 ADD_STAT(intInstQueueReads, statistics::units::Count::get(),
327 "Number of integer instruction queue reads"),
328 ADD_STAT(intInstQueueWrites, statistics::units::Count::get(),
329 "Number of integer instruction queue writes"),
330 ADD_STAT(intInstQueueWakeupAccesses, statistics::units::Count::get(),
331 "Number of integer instruction queue wakeup accesses"),
332 ADD_STAT(fpInstQueueReads, statistics::units::Count::get(),
333 "Number of floating instruction queue reads"),
334 ADD_STAT(fpInstQueueWrites, statistics::units::Count::get(),
335 "Number of floating instruction queue writes"),
336 ADD_STAT(fpInstQueueWakeupAccesses, statistics::units::Count::get(),
337 "Number of floating instruction queue wakeup accesses"),
338 ADD_STAT(vecInstQueueReads, statistics::units::Count::get(),
339 "Number of vector instruction queue reads"),
340 ADD_STAT(vecInstQueueWrites, statistics::units::Count::get(),
341 "Number of vector instruction queue writes"),
342 ADD_STAT(vecInstQueueWakeupAccesses, statistics::units::Count::get(),
343 "Number of vector instruction queue wakeup accesses"),
344 ADD_STAT(intAluAccesses, statistics::units::Count::get(),
345 "Number of integer alu accesses"),
346 ADD_STAT(fpAluAccesses, statistics::units::Count::get(),
347 "Number of floating point alu accesses"),
348 ADD_STAT(vecAluAccesses, statistics::units::Count::get(),
349 "Number of vector alu accesses")
351 using namespace statistics;
478 if (
iqPolicy == SMTQueuePolicy::Partitioned) {
495 while (threads != end) {
498 if (
iqPolicy == SMTQueuePolicy::Partitioned) {
500 }
else if (
iqPolicy == SMTQueuePolicy::Threshold &&
501 active_threads == 1) {
561 if (new_inst->isFloating()) {
563 }
else if (new_inst->isVector()) {
571 DPRINTF(IQ,
"Adding instruction [sn:%llu] PC %s to the IQ.\n",
572 new_inst->seqNum, new_inst->pcState());
576 instList[new_inst->threadNumber].push_back(new_inst);
590 if (new_inst->isMemRef()) {
598 count[new_inst->threadNumber]++;
608 if (new_inst->isFloating()) {
610 }
else if (new_inst->isVector()) {
620 DPRINTF(IQ,
"Adding non-speculative instruction [sn:%llu] PC %s "
622 new_inst->seqNum, new_inst->pcState());
626 instList[new_inst->threadNumber].push_back(new_inst);
638 if (new_inst->isMemRef()) {
644 count[new_inst->threadNumber]++;
663 if (inst->isFloating()) {
665 }
else if (inst->isVector()) {
687 while (list_it != list_end_it) {
688 if ((*list_it).oldestInst > queue_entry.
oldestInst) {
708 OpClass op_class = (*list_order_it).
queueType;
717 (*next_it).oldestInst < queue_entry.
oldestInst) {
727 DPRINTF(IQ,
"Processing FU completion [sn:%llu]\n", inst->seqNum);
728 assert(!
cpu->switchedOut());
750 DPRINTF(IQ,
"Attempting to schedule ready instructions from "
773 int total_issued = 0;
777 while (total_issued <
totalWidth && order_it != order_end_it) {
778 OpClass op_class = (*order_it).queueType;
784 if (issuing_inst->isFloating()) {
786 }
else if (issuing_inst->isVector()) {
792 assert(issuing_inst->seqNum == (*order_it).oldestInst);
794 if (issuing_inst->isSquashed()) {
813 ThreadID tid = issuing_inst->threadNumber;
815 if (op_class != No_OpClass) {
817 if (issuing_inst->isFloating()) {
819 }
else if (issuing_inst->isVector()) {
832 if (op_latency ==
Cycles(1)) {
847 cpu->schedule(execution,
860 DPRINTF(IQ,
"Thread %i: Issuing instruction PC %s "
862 tid, issuing_inst->pcState(),
863 issuing_inst->seqNum);
874 issuing_inst->setIssued();
878 issuing_inst->issueTick =
curTick() - issuing_inst->fetchTick;
881 if (issuing_inst->firstIssue == -1)
882 issuing_inst->firstIssue =
curTick();
884 if (!issuing_inst->isMemRef()) {
889 issuing_inst->clearInIQ();
913 DPRINTF(IQ,
"Not able to schedule any instructions.\n");
920 DPRINTF(IQ,
"Marking nonspeculative instruction [sn:%llu] as ready "
921 "to execute.\n", inst);
927 ThreadID tid = (*inst_it).second->threadNumber;
929 (*inst_it).second->setAtCommit();
931 (*inst_it).second->setCanIssue();
933 if (!(*inst_it).second->isMemRef()) {
939 (*inst_it).second = NULL;
947 DPRINTF(IQ,
"[tid:%i] Committing instructions older than [sn:%llu]\n",
952 while (iq_it !=
instList[tid].end() &&
953 (*iq_it)->seqNum <= inst) {
967 if (completed_inst->isFloating()) {
969 }
else if (completed_inst->isVector()) {
975 completed_inst->lastWakeDependents =
curTick();
977 DPRINTF(IQ,
"Waking dependents of completed instruction.\n");
979 assert(!completed_inst->isSquashed());
984 ThreadID tid = completed_inst->threadNumber;
985 if (completed_inst->isMemRef()) {
988 DPRINTF(IQ,
"Completing mem instruction PC: %s [sn:%llu]\n",
989 completed_inst->pcState(), completed_inst->seqNum);
992 completed_inst->memOpDone(
true);
994 }
else if (completed_inst->isReadBarrier() ||
995 completed_inst->isWriteBarrier()) {
1000 for (
int dest_reg_idx = 0;
1001 dest_reg_idx < completed_inst->numDestRegs();
1005 completed_inst->renamedDestIdx(dest_reg_idx);
1010 DPRINTF(IQ,
"Reg %d [%s] is part of a fix mapping, skipping\n",
1018 completed_inst->setPinnedRegsWritten();
1021 DPRINTF(IQ,
"Reg %d [%s] is pinned, skipping\n",
1026 DPRINTF(IQ,
"Waking any dependents on register %i (%s).\n",
1035 DPRINTF(IQ,
"Waking up a dependent instruction, [sn:%llu] "
1036 "PC %s.\n", dep_inst->seqNum, dep_inst->pcState());
1042 dep_inst->markSrcRegReady();
1065 OpClass op_class = ready_inst->opClass();
1074 (*
readyIt[op_class]).oldestInst) {
1079 DPRINTF(IQ,
"Instruction is ready to issue, putting it onto "
1080 "the ready list, PC %s opclass:%i [sn:%llu].\n",
1081 ready_inst->pcState(), op_class, ready_inst->seqNum);
1087 DPRINTF(IQ,
"Rescheduling mem inst [sn:%llu]\n", resched_inst->seqNum);
1090 resched_inst->translationStarted(
false);
1091 resched_inst->translationCompleted(
false);
1093 resched_inst->clearCanIssue();
1112 blocked_inst->clearIssued();
1113 blocked_inst->clearCanIssue();
1115 DPRINTF(IQ,
"Memory inst [sn:%llu] PC %s is blocked, will be "
1116 "reissued later\n", blocked_inst->seqNum,
1117 blocked_inst->pcState());
1123 DPRINTF(IQ,
"Cache is unblocked, rescheduling blocked memory "
1135 if ((*it)->translationCompleted() || (*it)->isSquashed()) {
1167 DPRINTF(IQ,
"[tid:%i] Starting to squash instructions in "
1187 DPRINTF(IQ,
"[tid:%i] Squashing until sequence number %i!\n",
1192 while (squash_it !=
instList[tid].end() &&
1196 if (squashed_inst->isFloating()) {
1198 }
else if (squashed_inst->isVector()) {
1206 if (squashed_inst->threadNumber != tid ||
1207 squashed_inst->isSquashedInIQ()) {
1212 if (!squashed_inst->isIssued() ||
1213 (squashed_inst->isMemRef() &&
1214 !squashed_inst->memOpDone())) {
1216 DPRINTF(IQ,
"[tid:%i] Instruction [sn:%llu] PC %s squashed.\n",
1217 tid, squashed_inst->seqNum, squashed_inst->pcState());
1219 bool is_acq_rel = squashed_inst->isFullMemBarrier() &&
1220 (squashed_inst->isLoad() ||
1221 (squashed_inst->isStore() &&
1222 !squashed_inst->isStoreConditional()));
1226 (!squashed_inst->isNonSpeculative() &&
1227 !squashed_inst->isStoreConditional() &&
1228 !squashed_inst->isAtomic() &&
1229 !squashed_inst->isReadBarrier() &&
1230 !squashed_inst->isWriteBarrier())) {
1232 for (
int src_reg_idx = 0;
1233 src_reg_idx < squashed_inst->numSrcRegs();
1237 squashed_inst->renamedSrcIdx(src_reg_idx);
1248 if (!squashed_inst->readySrcIdx(src_reg_idx) &&
1257 }
else if (!squashed_inst->isStoreConditional() ||
1258 !squashed_inst->isCompleted()) {
1269 assert(squashed_inst->getFault() !=
NoFault ||
1270 squashed_inst->isMemRef());
1273 (*ns_inst_it).second = NULL;
1284 squashed_inst->setSquashedInIQ();
1288 squashed_inst->setIssued();
1289 squashed_inst->setCanCommit();
1290 squashed_inst->clearInIQ();
1293 count[squashed_inst->threadNumber]--;
1305 for (
int dest_reg_idx = 0;
1306 dest_reg_idx < squashed_inst->numDestRegs();
1310 squashed_inst->renamedDestIdx(dest_reg_idx);
1326 return lhs->seqNum > rhs->seqNum;
1334 int8_t total_src_regs = new_inst->numSrcRegs();
1335 bool return_val =
false;
1337 for (
int src_reg_idx = 0;
1338 src_reg_idx < total_src_regs;
1342 if (!new_inst->readySrcIdx(src_reg_idx)) {
1343 PhysRegIdPtr src_reg = new_inst->renamedSrcIdx(src_reg_idx);
1352 DPRINTF(IQ,
"Instruction PC %s has src reg %i (%s) that "
1353 "is being added to the dependency chain.\n",
1354 new_inst->pcState(), src_reg->
index(),
1363 DPRINTF(IQ,
"Instruction PC %s has src reg %i (%s) that "
1364 "became ready before it reached the IQ.\n",
1365 new_inst->pcState(), src_reg->
index(),
1368 new_inst->markSrcRegReady(src_reg_idx);
1383 int8_t total_dest_regs = new_inst->numDestRegs();
1385 for (
int dest_reg_idx = 0;
1386 dest_reg_idx < total_dest_regs;
1389 PhysRegIdPtr dest_reg = new_inst->renamedDestIdx(dest_reg_idx);
1399 panic(
"Dependency graph %i (%s) (flat: %i) not empty!",
1416 if (inst->readyToIssue()) {
1419 if (inst->isMemRef()) {
1421 DPRINTF(IQ,
"Checking if memory instruction can issue.\n");
1430 OpClass op_class = inst->opClass();
1432 DPRINTF(IQ,
"Instruction is ready to issue, putting it onto "
1433 "the ready list, PC %s opclass:%i [sn:%llu].\n",
1434 inst->pcState(), op_class, inst->seqNum);
1443 (*
readyIt[op_class]).oldestInst) {
1470 cprintf(
"Non speculative list: ");
1472 while (non_spec_it != non_spec_end_it) {
1473 cprintf(
"%s [sn:%llu]", (*non_spec_it).second->pcState(),
1474 (*non_spec_it).second->seqNum);
1486 while (list_order_it != list_order_end_it) {
1487 cprintf(
"%i OpClass:%i [sn:%llu] ",
i, (*list_order_it).queueType,
1488 (*list_order_it).oldestInst);
1506 while (inst_list_it !=
instList[tid].end()) {
1507 cprintf(
"Instruction:%i\n", num);
1508 if (!(*inst_list_it)->isSquashed()) {
1509 if (!(*inst_list_it)->isIssued()) {
1511 cprintf(
"Count:%i\n", valid_num);
1512 }
else if ((*inst_list_it)->isMemRef() &&
1513 !(*inst_list_it)->memOpDone()) {
1517 cprintf(
"Count:%i\n", valid_num);
1521 cprintf(
"PC: %s\n[sn:%llu]\n[tid:%i]\n"
1522 "Issued:%i\nSquashed:%i\n",
1523 (*inst_list_it)->pcState(),
1524 (*inst_list_it)->seqNum,
1525 (*inst_list_it)->threadNumber,
1526 (*inst_list_it)->isIssued(),
1527 (*inst_list_it)->isSquashed());
1529 if ((*inst_list_it)->isMemRef()) {
1530 cprintf(
"MemOpDone:%i\n", (*inst_list_it)->memOpDone());
1540 cprintf(
"Insts to Execute list:\n");
1550 if (!(*inst_list_it)->isSquashed()) {
1551 if (!(*inst_list_it)->isIssued()) {
1553 cprintf(
"Count:%i\n", valid_num);
1554 }
else if ((*inst_list_it)->isMemRef() &&
1555 !(*inst_list_it)->memOpDone()) {
1559 cprintf(
"Count:%i\n", valid_num);
1563 cprintf(
"PC: %s\n[sn:%llu]\n[tid:%i]\n"
1564 "Issued:%i\nSquashed:%i\n",
1565 (*inst_list_it)->pcState(),
1566 (*inst_list_it)->seqNum,
1567 (*inst_list_it)->threadNumber,
1568 (*inst_list_it)->isIssued(),
1569 (*inst_list_it)->isSquashed());
1571 if ((*inst_list_it)->isMemRef()) {
1572 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.
constexpr unsigned NumVecElemPerVecReg
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.
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
InstructionQueue(CPU *cpu_ptr, IEW *iew_ptr, const O3CPUParams ¶ms)
Constructs an IQ.
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.
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 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.
const char * className() const
Return a const char* with the register class name.
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.
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.
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 init(const O3CPUParams ¶ms, ThreadID tid, CPU *cpu)
Initializes the unit with parameters and a thread id.
void insert(const DynInstPtr &inst)
Inserts a memory instruction.
int getUnit(OpClass capability)
Gets a FU providing the requested capability.
RegIndex index() const
Visible RegId methods.
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 Tue Dec 21 2021 11:34:26 for gem5 by doxygen 1.8.17