gem5
v21.0.0.0
|
A standard instruction queue class. More...
#include <inst_queue.hh>
Classes | |
class | FUCompletion |
FU completion event class. More... | |
struct | IQIOStats |
struct | IQStats |
struct | ListOrderEntry |
Entry for the list age ordering by op class. More... | |
struct | pqCompare |
Struct for comparing entries to be added to the priority queue. More... | |
Public Types | |
typedef Impl::O3CPU | O3CPU |
typedef Impl::DynInstPtr | DynInstPtr |
typedef Impl::CPUPol::IEW | IEW |
typedef Impl::CPUPol::MemDepUnit | MemDepUnit |
typedef Impl::CPUPol::IssueStruct | IssueStruct |
typedef Impl::CPUPol::TimeStruct | TimeStruct |
typedef std::list< DynInstPtr >::iterator | ListIt |
Public Member Functions | |
InstructionQueue (O3CPU *cpu_ptr, IEW *iew_ptr, const DerivO3CPUParams ¶ms) | |
Constructs an IQ. More... | |
~InstructionQueue () | |
Destructs the IQ. More... | |
std::string | name () const |
Returns the name of the IQ. More... | |
void | resetState () |
Resets all instruction queue state. More... | |
void | setActiveThreads (std::list< ThreadID > *at_ptr) |
Sets active threads list. More... | |
void | setIssueToExecuteQueue (TimeBuffer< IssueStruct > *i2eQueue) |
Sets the timer buffer between issue and execute. More... | |
void | setTimeBuffer (TimeBuffer< TimeStruct > *tb_ptr) |
Sets the global time buffer. More... | |
bool | isDrained () const |
Determine if we are drained. More... | |
void | drainSanityCheck () const |
Perform sanity checks after a drain. More... | |
void | takeOverFrom () |
Takes over execution from another CPU's thread. More... | |
int | entryAmount (ThreadID num_threads) |
Number of entries needed for given amount of threads. More... | |
void | resetEntries () |
Resets max entries for all threads. More... | |
unsigned | numFreeEntries () |
Returns total number of free entries. More... | |
unsigned | numFreeEntries (ThreadID tid) |
Returns number of free entries for a thread. More... | |
bool | isFull () |
Returns whether or not the IQ is full. More... | |
bool | isFull (ThreadID tid) |
Returns whether or not the IQ is full for a specific thread. More... | |
bool | hasReadyInsts () |
Returns if there are any ready instructions in the IQ. More... | |
void | insert (const DynInstPtr &new_inst) |
Inserts a new instruction into the IQ. More... | |
void | insertNonSpec (const DynInstPtr &new_inst) |
Inserts a new, non-speculative instruction into the IQ. More... | |
void | insertBarrier (const DynInstPtr &barr_inst) |
Inserts a memory or write barrier into the IQ to make sure loads and stores are ordered properly. More... | |
DynInstPtr | getInstToExecute () |
Returns the oldest scheduled instruction, and removes it from the list of instructions waiting to execute. More... | |
DynInstPtr | getDeferredMemInstToExecute () |
Gets a memory instruction that was referred due to a delayed DTB translation if it is now ready to execute. More... | |
DynInstPtr | getBlockedMemInstToExecute () |
Gets a memory instruction that was blocked on the cache. More... | |
void | recordProducer (const DynInstPtr &inst) |
Records the instruction as the producer of a register without adding it to the rest of the IQ. More... | |
void | processFUCompletion (const DynInstPtr &inst, int fu_idx) |
Process FU completion event. More... | |
void | scheduleReadyInsts () |
Schedules ready instructions, adding the ready ones (oldest first) to the queue to execute. More... | |
void | scheduleNonSpec (const InstSeqNum &inst) |
Schedules a single specific non-speculative instruction. More... | |
void | commit (const InstSeqNum &inst, ThreadID tid=0) |
Commits all instructions up to and including the given sequence number, for a specific thread. More... | |
int | wakeDependents (const DynInstPtr &completed_inst) |
Wakes all dependents of a completed instruction. More... | |
void | addReadyMemInst (const DynInstPtr &ready_inst) |
Adds a ready memory instruction to the ready list. More... | |
void | rescheduleMemInst (const DynInstPtr &resched_inst) |
Reschedules a memory instruction. More... | |
void | replayMemInst (const DynInstPtr &replay_inst) |
Replays a memory instruction. More... | |
void | deferMemInst (const DynInstPtr &deferred_inst) |
Defers a memory instruction when its DTB translation incurs a hw page table walk. More... | |
void | blockMemInst (const DynInstPtr &blocked_inst) |
Defers a memory instruction when it is cache blocked. More... | |
void | cacheUnblocked () |
Notify instruction queue that a previous blockage has resolved. More... | |
void | violation (const DynInstPtr &store, const DynInstPtr &faulting_load) |
Indicates an ordering violation between a store and a load. More... | |
void | squash (ThreadID tid) |
Squashes instructions for a thread. More... | |
unsigned | getCount (ThreadID tid) |
Returns the number of used entries for a thread. More... | |
void | printInsts () |
Debug function to print all instructions. More... | |
Public Attributes | |
InstructionQueue::IQIOStats | iqIOStats |
Private Types | |
typedef std::priority_queue< DynInstPtr, std::vector< DynInstPtr >, pqCompare > | ReadyInstQueue |
typedef std::map< InstSeqNum, DynInstPtr >::iterator | NonSpecMapIt |
typedef std::list< ListOrderEntry >::iterator | ListOrderIt |
Private Member Functions | |
void | doSquash (ThreadID tid) |
Does the actual squashing. More... | |
void | addToOrderList (OpClass op_class) |
Add an op class to the age order list. More... | |
void | moveToYoungerInst (ListOrderIt age_order_it) |
Called when the oldest instruction has been removed from a ready queue; this places that ready queue into the proper spot in the age order list. More... | |
bool | addToDependents (const DynInstPtr &new_inst) |
Adds an instruction to the dependency graph, as a consumer. More... | |
void | addToProducers (const DynInstPtr &new_inst) |
Adds an instruction to the dependency graph, as a producer. More... | |
void | addIfReady (const DynInstPtr &inst) |
Moves an instruction to the ready queue if it is ready. More... | |
int | countInsts () |
Debugging function to count how many entries are in the IQ. More... | |
void | dumpLists () |
Debugging function to dump all the list sizes, as well as print out the list of nonspeculative instructions. More... | |
void | dumpInsts () |
Debugging function to dump out all instructions that are in the IQ. More... | |
Private Attributes | |
O3CPU * | cpu |
Pointer to the CPU. More... | |
MemInterface * | dcacheInterface |
Cache interface. More... | |
IEW * | iewStage |
Pointer to IEW stage. More... | |
MemDepUnit | memDepUnit [Impl::MaxThreads] |
The memory dependence unit, which tracks/predicts memory dependences between instructions. More... | |
TimeBuffer< IssueStruct > * | issueToExecuteQueue |
The queue to the execute stage. More... | |
TimeBuffer< TimeStruct > * | timeBuffer |
The backwards time buffer. More... | |
TimeBuffer< TimeStruct >::wire | fromCommit |
Wire to read information from timebuffer. More... | |
FUPool * | fuPool |
Function unit pool. More... | |
std::list< DynInstPtr > | instList [Impl::MaxThreads] |
List of all the instructions in the IQ (some of which may be issued). More... | |
std::list< DynInstPtr > | instsToExecute |
List of instructions that are ready to be executed. More... | |
std::list< DynInstPtr > | deferredMemInsts |
List of instructions waiting for their DTB translation to complete (hw page table walk in progress). More... | |
std::list< DynInstPtr > | blockedMemInsts |
List of instructions that have been cache blocked. More... | |
std::list< DynInstPtr > | retryMemInsts |
List of instructions that were cache blocked, but a retry has been seen since, so they can now be retried. More... | |
ReadyInstQueue | readyInsts [Num_OpClasses] |
List of ready instructions, per op class. More... | |
std::map< InstSeqNum, DynInstPtr > | nonSpecInsts |
List of non-speculative instructions that will be scheduled once the IQ gets a signal from commit. More... | |
std::list< ListOrderEntry > | listOrder |
List that contains the age order of the oldest instruction of each ready queue. More... | |
bool | queueOnList [Num_OpClasses] |
Tracks if each ready queue is on the age order list. More... | |
ListOrderIt | readyIt [Num_OpClasses] |
Iterators of each ready queue. More... | |
DependencyGraph< DynInstPtr > | dependGraph |
SMTQueuePolicy | iqPolicy |
IQ sharing policy for SMT. More... | |
ThreadID | numThreads |
Number of Total Threads. More... | |
std::list< ThreadID > * | activeThreads |
Pointer to list of active threads. More... | |
unsigned | count [Impl::MaxThreads] |
Per Thread IQ count. More... | |
unsigned | maxEntries [Impl::MaxThreads] |
Max IQ Entries Per Thread. More... | |
unsigned | freeEntries |
Number of free IQ entries left. More... | |
unsigned | numEntries |
The number of entries in the instruction queue. More... | |
unsigned | totalWidth |
The total number of instructions that can be issued in one cycle. More... | |
unsigned | numPhysRegs |
The number of physical registers in the CPU. More... | |
int | wbOutstanding |
Number of instructions currently in flight to FUs. More... | |
Cycles | commitToIEWDelay |
Delay between commit stage and the IQ. More... | |
InstSeqNum | squashedSeqNum [Impl::MaxThreads] |
The sequence number of the squashed instruction. More... | |
std::vector< bool > | regScoreboard |
A cache of the recently woken registers. More... | |
InstructionQueue::IQStats | iqStats |
A standard instruction queue class.
It holds ready instructions, in order, in seperate priority queues to facilitate the scheduling of instructions. The IQ uses a separate linked list to track dependencies. Similar to the rename map and the free list, it expects that floating point registers have their indices start after the integer registers (ie with 96 int and 96 fp registers, regs 0-95 are integer and 96-191 are fp). This remains true even for both logical and physical register indices. The IQ depends on the memory dependence unit to track when memory operations are ready in terms of ordering; register dependencies are tracked normally. Right now the IQ also handles the execution timing; this is mainly to allow back-to-back scheduling without requiring IEW to be able to peek into the IQ. At the end of the execution latency, the instruction is put into the queue to execute, where it will have the execute() function called on it.
Definition at line 81 of file inst_queue.hh.
typedef Impl::DynInstPtr InstructionQueue< Impl >::DynInstPtr |
Definition at line 86 of file inst_queue.hh.
typedef Impl::CPUPol::IEW InstructionQueue< Impl >::IEW |
Definition at line 88 of file inst_queue.hh.
typedef Impl::CPUPol::IssueStruct InstructionQueue< Impl >::IssueStruct |
Definition at line 90 of file inst_queue.hh.
typedef std::list<DynInstPtr>::iterator InstructionQueue< Impl >::ListIt |
Definition at line 94 of file inst_queue.hh.
|
private |
Definition at line 375 of file inst_queue.hh.
typedef Impl::CPUPol::MemDepUnit InstructionQueue< Impl >::MemDepUnit |
Definition at line 89 of file inst_queue.hh.
|
private |
Definition at line 358 of file inst_queue.hh.
typedef Impl::O3CPU InstructionQueue< Impl >::O3CPU |
Definition at line 85 of file inst_queue.hh.
|
private |
Definition at line 342 of file inst_queue.hh.
typedef Impl::CPUPol::TimeStruct InstructionQueue< Impl >::TimeStruct |
Definition at line 91 of file inst_queue.hh.
InstructionQueue< Impl >::InstructionQueue | ( | O3CPU * | cpu_ptr, |
IEW * | iew_ptr, | ||
const DerivO3CPUParams & | params | ||
) |
Constructs an IQ.
Definition at line 85 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::dependGraph, DPRINTF, InstructionQueue< Impl >::fuPool, MemDepUnit< MemDepPred, Impl >::init(), InstructionQueue< Impl >::iqPolicy, InstructionQueue< Impl >::maxEntries, InstructionQueue< Impl >::memDepUnit, InstructionQueue< Impl >::numEntries, InstructionQueue< Impl >::numPhysRegs, InstructionQueue< Impl >::numThreads, ArmISA::NumVecElemPerVecReg, InstructionQueue< Impl >::regScoreboard, InstructionQueue< Impl >::resetState(), and MemDepUnit< MemDepPred, Impl >::setIQ().
InstructionQueue< Impl >::~InstructionQueue |
|
private |
Moves an instruction to the ready queue if it is ready.
Definition at line 1432 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::addToOrderList(), DPRINTF, InstructionQueue< Impl >::listOrder, InstructionQueue< Impl >::memDepUnit, InstructionQueue< Impl >::queueOnList, InstructionQueue< Impl >::readyInsts, InstructionQueue< Impl >::readyIt, and MemDepUnit< MemDepPred, Impl >::regsReady().
Referenced by InstructionQueue< Impl >::insert(), InstructionQueue< Impl >::scheduleNonSpec(), and InstructionQueue< Impl >::wakeDependents().
void InstructionQueue< Impl >::addReadyMemInst | ( | const DynInstPtr & | ready_inst | ) |
Adds a ready memory instruction to the ready list.
Definition at line 1082 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::addToOrderList(), DPRINTF, InstructionQueue< Impl >::listOrder, InstructionQueue< Impl >::queueOnList, InstructionQueue< Impl >::readyInsts, and InstructionQueue< Impl >::readyIt.
Referenced by InstructionQueue< Impl >::scheduleReadyInsts().
|
private |
Adds an instruction to the dependency graph, as a consumer.
Definition at line 1348 of file inst_queue_impl.hh.
References PhysRegId::className(), InstructionQueue< Impl >::dependGraph, DPRINTF, PhysRegId::flatIndex(), PhysRegId::index(), PhysRegId::isFixedMapping(), and InstructionQueue< Impl >::regScoreboard.
Referenced by InstructionQueue< Impl >::insert().
|
private |
Add an op class to the age order list.
Definition at line 691 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::listOrder, InstructionQueue< Impl >::ListOrderEntry::oldestInst, InstructionQueue< Impl >::queueOnList, InstructionQueue< Impl >::ListOrderEntry::queueType, InstructionQueue< Impl >::readyInsts, and InstructionQueue< Impl >::readyIt.
Referenced by InstructionQueue< Impl >::addIfReady(), and InstructionQueue< Impl >::addReadyMemInst().
|
private |
Adds an instruction to the dependency graph, as a producer.
Definition at line 1396 of file inst_queue_impl.hh.
References PhysRegId::className(), InstructionQueue< Impl >::dependGraph, PhysRegId::flatIndex(), PhysRegId::index(), PhysRegId::isFixedMapping(), panic, and InstructionQueue< Impl >::regScoreboard.
Referenced by InstructionQueue< Impl >::insert(), InstructionQueue< Impl >::insertNonSpec(), and InstructionQueue< Impl >::recordProducer().
void InstructionQueue< Impl >::blockMemInst | ( | const DynInstPtr & | blocked_inst | ) |
Defers a memory instruction when it is cache blocked.
Definition at line 1133 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::blockedMemInsts.
void InstructionQueue< Impl >::cacheUnblocked |
Notify instruction queue that a previous blockage has resolved.
Definition at line 1142 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::blockedMemInsts, InstructionQueue< Impl >::cpu, and InstructionQueue< Impl >::retryMemInsts.
void InstructionQueue< Impl >::commit | ( | const InstSeqNum & | inst, |
ThreadID | tid = 0 |
||
) |
Commits all instructions up to and including the given sequence number, for a specific thread.
Definition at line 964 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::countInsts(), DPRINTF, InstructionQueue< Impl >::freeEntries, InstructionQueue< Impl >::instList, and InstructionQueue< Impl >::numEntries.
|
private |
Debugging function to count how many entries are in the IQ.
It does a linear walk through the instructions, so do not call this function during normal execution.
Definition at line 1472 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::freeEntries, and InstructionQueue< Impl >::numEntries.
Referenced by InstructionQueue< Impl >::commit(), InstructionQueue< Impl >::insert(), and InstructionQueue< Impl >::insertNonSpec().
void InstructionQueue< Impl >::deferMemInst | ( | const DynInstPtr & | deferred_inst | ) |
Defers a memory instruction when its DTB translation incurs a hw page table walk.
Definition at line 1126 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::deferredMemInsts.
|
private |
Does the actual squashing.
Definition at line 1205 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::count, InstructionQueue< Impl >::dependGraph, DPRINTF, PhysRegId::flatIndex(), InstructionQueue< Impl >::IQIOStats::fpInstQueueWrites, InstructionQueue< Impl >::freeEntries, InstructionQueue< Impl >::instList, InstructionQueue< Impl >::IQIOStats::intInstQueueWrites, InstructionQueue< Impl >::iqIOStats, InstructionQueue< Impl >::iqStats, PhysRegId::isFixedMapping(), NoFault, InstructionQueue< Impl >::nonSpecInsts, InstructionQueue< Impl >::IQStats::squashedInstsExamined, InstructionQueue< Impl >::IQStats::squashedNonSpecRemoved, InstructionQueue< Impl >::IQStats::squashedOperandsExamined, InstructionQueue< Impl >::squashedSeqNum, and InstructionQueue< Impl >::IQIOStats::vecInstQueueWrites.
Referenced by InstructionQueue< Impl >::squash().
void InstructionQueue< Impl >::drainSanityCheck |
Perform sanity checks after a drain.
Definition at line 465 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::dependGraph, InstructionQueue< Impl >::instsToExecute, InstructionQueue< Impl >::memDepUnit, and InstructionQueue< Impl >::numThreads.
|
private |
Debugging function to dump out all instructions that are in the IQ.
Definition at line 1522 of file inst_queue_impl.hh.
References cprintf(), InstructionQueue< Impl >::instList, InstructionQueue< Impl >::instsToExecute, and InstructionQueue< Impl >::numThreads.
|
private |
Debugging function to dump all the list sizes, as well as print out the list of nonspeculative instructions.
Should not be used in any other capacity, but it has no harmful sideaffects.
Definition at line 1479 of file inst_queue_impl.hh.
References cprintf(), ArmISA::i, InstructionQueue< Impl >::listOrder, InstructionQueue< Impl >::nonSpecInsts, Num_OpClasses, and InstructionQueue< Impl >::readyInsts.
int InstructionQueue< Impl >::entryAmount | ( | ThreadID | num_threads | ) |
Number of entries needed for given amount of threads.
Definition at line 482 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::iqPolicy, and InstructionQueue< Impl >::numEntries.
Impl::DynInstPtr InstructionQueue< Impl >::getBlockedMemInstToExecute |
Gets a memory instruction that was blocked on the cache.
NULL if none available.
Definition at line 1166 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::retryMemInsts.
Referenced by InstructionQueue< Impl >::scheduleReadyInsts().
|
inline |
Returns the number of used entries for a thread.
Definition at line 263 of file inst_queue.hh.
References InstructionQueue< Impl >::count.
Impl::DynInstPtr InstructionQueue< Impl >::getDeferredMemInstToExecute |
Gets a memory instruction that was referred due to a delayed DTB translation if it is now ready to execute.
NULL if none available.
Definition at line 1151 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::deferredMemInsts.
Referenced by InstructionQueue< Impl >::scheduleReadyInsts().
Impl::DynInstPtr InstructionQueue< Impl >::getInstToExecute |
Returns the oldest scheduled instruction, and removes it from the list of instructions waiting to execute.
Definition at line 674 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::IQIOStats::fpInstQueueReads, InstructionQueue< Impl >::instsToExecute, InstructionQueue< Impl >::IQIOStats::intInstQueueReads, InstructionQueue< Impl >::iqIOStats, and InstructionQueue< Impl >::IQIOStats::vecInstQueueReads.
bool InstructionQueue< Impl >::hasReadyInsts |
Returns if there are any ready instructions in the IQ.
Definition at line 555 of file inst_queue_impl.hh.
References ArmISA::i, InstructionQueue< Impl >::listOrder, Num_OpClasses, and InstructionQueue< Impl >::readyInsts.
void InstructionQueue< Impl >::insert | ( | const DynInstPtr & | new_inst | ) |
Inserts a new instruction into the IQ.
Definition at line 572 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::addIfReady(), InstructionQueue< Impl >::addToDependents(), InstructionQueue< Impl >::addToProducers(), InstructionQueue< Impl >::count, InstructionQueue< Impl >::countInsts(), DPRINTF, InstructionQueue< Impl >::IQIOStats::fpInstQueueWrites, InstructionQueue< Impl >::freeEntries, MemDepUnit< MemDepPred, Impl >::insert(), InstructionQueue< Impl >::instList, InstructionQueue< Impl >::IQStats::instsAdded, InstructionQueue< Impl >::IQIOStats::intInstQueueWrites, InstructionQueue< Impl >::iqIOStats, InstructionQueue< Impl >::iqStats, InstructionQueue< Impl >::memDepUnit, InstructionQueue< Impl >::numEntries, and InstructionQueue< Impl >::IQIOStats::vecInstQueueWrites.
void InstructionQueue< Impl >::insertBarrier | ( | const DynInstPtr & | barr_inst | ) |
Inserts a memory or write barrier into the IQ to make sure loads and stores are ordered properly.
Definition at line 665 of file inst_queue_impl.hh.
References MemDepUnit< MemDepPred, Impl >::insertBarrier(), InstructionQueue< Impl >::insertNonSpec(), and InstructionQueue< Impl >::memDepUnit.
void InstructionQueue< Impl >::insertNonSpec | ( | const DynInstPtr & | new_inst | ) |
Inserts a new, non-speculative instruction into the IQ.
Definition at line 618 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::addToProducers(), InstructionQueue< Impl >::count, InstructionQueue< Impl >::countInsts(), DPRINTF, InstructionQueue< Impl >::IQIOStats::fpInstQueueWrites, InstructionQueue< Impl >::freeEntries, MemDepUnit< MemDepPred, Impl >::insertNonSpec(), InstructionQueue< Impl >::instList, InstructionQueue< Impl >::IQIOStats::intInstQueueWrites, InstructionQueue< Impl >::iqIOStats, InstructionQueue< Impl >::iqStats, InstructionQueue< Impl >::memDepUnit, InstructionQueue< Impl >::nonSpecInsts, InstructionQueue< Impl >::IQStats::nonSpecInstsAdded, InstructionQueue< Impl >::numEntries, and InstructionQueue< Impl >::IQIOStats::vecInstQueueWrites.
Referenced by InstructionQueue< Impl >::insertBarrier().
bool InstructionQueue< Impl >::isDrained |
Determine if we are drained.
Definition at line 452 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::dependGraph, InstructionQueue< Impl >::instsToExecute, InstructionQueue< Impl >::memDepUnit, InstructionQueue< Impl >::numThreads, and InstructionQueue< Impl >::wbOutstanding.
bool InstructionQueue< Impl >::isFull |
Returns whether or not the IQ is full.
Definition at line 533 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::freeEntries.
bool InstructionQueue< Impl >::isFull | ( | ThreadID | tid | ) |
Returns whether or not the IQ is full for a specific thread.
Definition at line 544 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::numFreeEntries().
|
private |
Called when the oldest instruction has been removed from a ready queue; this places that ready queue into the proper spot in the age order list.
Definition at line 718 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::listOrder, InstructionQueue< Impl >::ListOrderEntry::oldestInst, InstructionQueue< Impl >::ListOrderEntry::queueType, InstructionQueue< Impl >::readyInsts, and InstructionQueue< Impl >::readyIt.
Referenced by InstructionQueue< Impl >::scheduleReadyInsts().
std::string InstructionQueue< Impl >::name |
Returns the name of the IQ.
Definition at line 171 of file inst_queue_impl.hh.
unsigned InstructionQueue< Impl >::numFreeEntries |
Returns total number of free entries.
Definition at line 517 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::freeEntries.
Referenced by InstructionQueue< Impl >::isFull().
unsigned InstructionQueue< Impl >::numFreeEntries | ( | ThreadID | tid | ) |
Returns number of free entries for a thread.
Definition at line 524 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::count, and InstructionQueue< Impl >::maxEntries.
void InstructionQueue< Impl >::printInsts | ( | ) |
Debug function to print all instructions.
void InstructionQueue< Impl >::processFUCompletion | ( | const DynInstPtr & | inst, |
int | fu_idx | ||
) |
Process FU completion event.
Definition at line 744 of file inst_queue_impl.hh.
References TimeBuffer< T >::access(), InstructionQueue< Impl >::cpu, DPRINTF, FUPool::freeUnitNextCycle(), InstructionQueue< Impl >::fuPool, InstructionQueue< Impl >::iewStage, InstructionQueue< Impl >::instsToExecute, InstructionQueue< Impl >::issueToExecuteQueue, IssueStruct< Impl >::size, and InstructionQueue< Impl >::wbOutstanding.
|
inline |
Records the instruction as the producer of a register without adding it to the rest of the IQ.
Definition at line 205 of file inst_queue.hh.
References InstructionQueue< Impl >::addToProducers().
void InstructionQueue< Impl >::replayMemInst | ( | const DynInstPtr & | replay_inst | ) |
Replays a memory instruction.
It must be rescheduled first.
Definition at line 1119 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::memDepUnit, and MemDepUnit< MemDepPred, Impl >::replay().
void InstructionQueue< Impl >::rescheduleMemInst | ( | const DynInstPtr & | resched_inst | ) |
Reschedules a memory instruction.
It will be ready to issue once replayMemInst() is called.
Definition at line 1105 of file inst_queue_impl.hh.
References DPRINTF, InstructionQueue< Impl >::memDepUnit, and MemDepUnit< MemDepPred, Impl >::reschedule().
void InstructionQueue< Impl >::resetEntries |
Resets max entries for all threads.
Definition at line 494 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::activeThreads, InstructionQueue< Impl >::iqPolicy, InstructionQueue< Impl >::maxEntries, InstructionQueue< Impl >::numEntries, and InstructionQueue< Impl >::numThreads.
void InstructionQueue< Impl >::resetState |
Resets all instruction queue state.
Definition at line 389 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::blockedMemInsts, InstructionQueue< Impl >::count, InstructionQueue< Impl >::deferredMemInsts, InstructionQueue< Impl >::freeEntries, ArmISA::i, InstructionQueue< Impl >::instList, InstructionQueue< Impl >::listOrder, InstructionQueue< Impl >::nonSpecInsts, Num_OpClasses, InstructionQueue< Impl >::numEntries, InstructionQueue< Impl >::numPhysRegs, InstructionQueue< Impl >::queueOnList, InstructionQueue< Impl >::readyInsts, InstructionQueue< Impl >::readyIt, InstructionQueue< Impl >::regScoreboard, InstructionQueue< Impl >::retryMemInsts, InstructionQueue< Impl >::squashedSeqNum, and InstructionQueue< Impl >::wbOutstanding.
Referenced by InstructionQueue< Impl >::InstructionQueue(), and InstructionQueue< Impl >::takeOverFrom().
void InstructionQueue< Impl >::scheduleNonSpec | ( | const InstSeqNum & | inst | ) |
Schedules a single specific non-speculative instruction.
Definition at line 936 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::addIfReady(), DPRINTF, InstructionQueue< Impl >::memDepUnit, MemDepUnit< MemDepPred, Impl >::nonSpecInstReady(), and InstructionQueue< Impl >::nonSpecInsts.
void InstructionQueue< Impl >::scheduleReadyInsts |
Schedules ready instructions, adding the ready ones (oldest first) to the queue to execute.
Definition at line 768 of file inst_queue_impl.hh.
References TimeBuffer< T >::access(), InstructionQueue< Impl >::addReadyMemInst(), InstructionQueue< Impl >::count, InstructionQueue< Impl >::cpu, curTick(), InstructionQueue< Impl >::deferredMemInsts, DPRINTF, InstructionQueue< Impl >::IQIOStats::fpAluAccesses, InstructionQueue< Impl >::IQIOStats::fpInstQueueReads, InstructionQueue< Impl >::freeEntries, FUPool::freeUnitNextCycle(), InstructionQueue< Impl >::IQStats::fuBusy, InstructionQueue< Impl >::fuPool, InstructionQueue< Impl >::getBlockedMemInstToExecute(), InstructionQueue< Impl >::getDeferredMemInstToExecute(), FUPool::getOpLatency(), FUPool::getUnit(), InstructionQueue< Impl >::IQStats::instsIssued, InstructionQueue< Impl >::instsToExecute, InstructionQueue< Impl >::IQIOStats::intAluAccesses, InstructionQueue< Impl >::IQIOStats::intInstQueueReads, InstructionQueue< Impl >::iqIOStats, InstructionQueue< Impl >::iqStats, FUPool::isPipelined(), MemDepUnit< MemDepPred, Impl >::issue(), InstructionQueue< Impl >::issueToExecuteQueue, InstructionQueue< Impl >::listOrder, InstructionQueue< Impl >::memDepUnit, InstructionQueue< Impl >::moveToYoungerInst(), FUPool::NoCapableFU, FUPool::NoFreeFU, InstructionQueue< Impl >::IQStats::numIssuedDist, InstructionQueue< Impl >::queueOnList, InstructionQueue< Impl >::readyInsts, InstructionQueue< Impl >::readyIt, InstructionQueue< Impl >::retryMemInsts, Stats::DistBase< Derived, Stor >::sample(), InstructionQueue< Impl >::FUCompletion::setFreeFU(), IssueStruct< Impl >::size, InstructionQueue< Impl >::IQStats::squashedInstsIssued, InstructionQueue< Impl >::IQStats::statFuBusy, InstructionQueue< Impl >::IQStats::statIssuedInstType, InstructionQueue< Impl >::totalWidth, InstructionQueue< Impl >::IQIOStats::vecAluAccesses, InstructionQueue< Impl >::IQIOStats::vecInstQueueReads, and InstructionQueue< Impl >::wbOutstanding.
void InstructionQueue< Impl >::setActiveThreads | ( | std::list< ThreadID > * | at_ptr | ) |
Sets active threads list.
Definition at line 429 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::activeThreads.
void InstructionQueue< Impl >::setIssueToExecuteQueue | ( | TimeBuffer< IssueStruct > * | i2eQueue | ) |
Sets the timer buffer between issue and execute.
Definition at line 436 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::issueToExecuteQueue.
void InstructionQueue< Impl >::setTimeBuffer | ( | TimeBuffer< TimeStruct > * | tb_ptr | ) |
Sets the global time buffer.
Definition at line 443 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::commitToIEWDelay, InstructionQueue< Impl >::fromCommit, TimeBuffer< T >::getWire(), and InstructionQueue< Impl >::timeBuffer.
void InstructionQueue< Impl >::squash | ( | ThreadID | tid | ) |
Squashes instructions for a thread.
Squashing information is obtained from the time buffer.
Definition at line 1188 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::doSquash(), DPRINTF, InstructionQueue< Impl >::fromCommit, InstructionQueue< Impl >::memDepUnit, MemDepUnit< MemDepPred, Impl >::squash(), and InstructionQueue< Impl >::squashedSeqNum.
void InstructionQueue< Impl >::takeOverFrom |
Takes over execution from another CPU's thread.
Definition at line 475 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::resetState().
void InstructionQueue< Impl >::violation | ( | const DynInstPtr & | store, |
const DynInstPtr & | faulting_load | ||
) |
Indicates an ordering violation between a store and a load.
Definition at line 1179 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::IQIOStats::intInstQueueWrites, InstructionQueue< Impl >::iqIOStats, InstructionQueue< Impl >::memDepUnit, and MemDepUnit< MemDepPred, Impl >::violation().
int InstructionQueue< Impl >::wakeDependents | ( | const DynInstPtr & | completed_inst | ) |
Wakes all dependents of a completed instruction.
Definition at line 982 of file inst_queue_impl.hh.
References InstructionQueue< Impl >::addIfReady(), PhysRegId::className(), MemDepUnit< MemDepPred, Impl >::completeInst(), InstructionQueue< Impl >::count, PhysRegId::decrNumPinnedWritesToComplete(), InstructionQueue< Impl >::dependGraph, DPRINTF, PhysRegId::flatIndex(), InstructionQueue< Impl >::IQIOStats::fpInstQueueWakeupAccesses, InstructionQueue< Impl >::freeEntries, PhysRegId::getNumPinnedWritesToComplete(), PhysRegId::index(), InstructionQueue< Impl >::IQIOStats::intInstQueueWakeupAccesses, InstructionQueue< Impl >::iqIOStats, PhysRegId::isFixedMapping(), PhysRegId::isPinned(), InstructionQueue< Impl >::memDepUnit, InstructionQueue< Impl >::regScoreboard, and InstructionQueue< Impl >::IQIOStats::vecInstQueueWakeupAccesses.
|
private |
Pointer to list of active threads.
Definition at line 407 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::resetEntries(), and InstructionQueue< Impl >::setActiveThreads().
|
private |
List of instructions that have been cache blocked.
Definition at line 320 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::blockMemInst(), InstructionQueue< Impl >::cacheUnblocked(), and InstructionQueue< Impl >::resetState().
|
private |
Delay between commit stage and the IQ.
Definition at line 433 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::setTimeBuffer().
|
private |
Per Thread IQ count.
Definition at line 410 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::doSquash(), InstructionQueue< Impl >::getCount(), InstructionQueue< Impl >::insert(), InstructionQueue< Impl >::insertNonSpec(), InstructionQueue< Impl >::numFreeEntries(), InstructionQueue< Impl >::resetState(), InstructionQueue< Impl >::scheduleReadyInsts(), and InstructionQueue< Impl >::wakeDependents().
|
private |
Pointer to the CPU.
Definition at line 277 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::cacheUnblocked(), InstructionQueue< Impl >::IQStats::IQStats(), InstructionQueue< Impl >::processFUCompletion(), and InstructionQueue< Impl >::scheduleReadyInsts().
|
private |
Cache interface.
Definition at line 280 of file inst_queue.hh.
|
private |
List of instructions waiting for their DTB translation to complete (hw page table walk in progress).
Definition at line 317 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::deferMemInst(), InstructionQueue< Impl >::getDeferredMemInstToExecute(), InstructionQueue< Impl >::resetState(), and InstructionQueue< Impl >::scheduleReadyInsts().
|
private |
Definition at line 394 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::addToDependents(), InstructionQueue< Impl >::addToProducers(), InstructionQueue< Impl >::doSquash(), InstructionQueue< Impl >::drainSanityCheck(), InstructionQueue< Impl >::InstructionQueue(), InstructionQueue< Impl >::isDrained(), and InstructionQueue< Impl >::wakeDependents().
|
private |
Number of free IQ entries left.
Definition at line 416 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::commit(), InstructionQueue< Impl >::countInsts(), InstructionQueue< Impl >::doSquash(), InstructionQueue< Impl >::insert(), InstructionQueue< Impl >::insertNonSpec(), InstructionQueue< Impl >::isFull(), InstructionQueue< Impl >::numFreeEntries(), InstructionQueue< Impl >::resetState(), InstructionQueue< Impl >::scheduleReadyInsts(), and InstructionQueue< Impl >::wakeDependents().
|
private |
Wire to read information from timebuffer.
Definition at line 299 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::setTimeBuffer(), and InstructionQueue< Impl >::squash().
|
private |
Function unit pool.
Definition at line 302 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::InstructionQueue(), InstructionQueue< Impl >::processFUCompletion(), and InstructionQueue< Impl >::scheduleReadyInsts().
|
private |
Pointer to IEW stage.
Definition at line 283 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::processFUCompletion().
|
private |
List of all the instructions in the IQ (some of which may be issued).
Definition at line 309 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::commit(), InstructionQueue< Impl >::doSquash(), InstructionQueue< Impl >::dumpInsts(), InstructionQueue< Impl >::insert(), InstructionQueue< Impl >::insertNonSpec(), and InstructionQueue< Impl >::resetState().
|
private |
List of instructions that are ready to be executed.
Definition at line 312 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::drainSanityCheck(), InstructionQueue< Impl >::dumpInsts(), InstructionQueue< Impl >::getInstToExecute(), InstructionQueue< Impl >::isDrained(), InstructionQueue< Impl >::processFUCompletion(), and InstructionQueue< Impl >::scheduleReadyInsts().
InstructionQueue::IQIOStats InstructionQueue< Impl >::iqIOStats |
Referenced by InstructionQueue< Impl >::doSquash(), InstructionQueue< Impl >::getInstToExecute(), InstructionQueue< Impl >::insert(), InstructionQueue< Impl >::insertNonSpec(), InstructionQueue< Impl >::scheduleReadyInsts(), InstructionQueue< Impl >::violation(), and InstructionQueue< Impl >::wakeDependents().
|
private |
IQ sharing policy for SMT.
Definition at line 401 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::entryAmount(), InstructionQueue< Impl >::InstructionQueue(), and InstructionQueue< Impl >::resetEntries().
|
private |
|
private |
The queue to the execute stage.
Issued instructions will be written into it.
Definition at line 293 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::processFUCompletion(), InstructionQueue< Impl >::scheduleReadyInsts(), and InstructionQueue< Impl >::setIssueToExecuteQueue().
|
private |
List that contains the age order of the oldest instruction of each ready queue.
Used to select the oldest instruction available among op classes.
Definition at line 373 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::addIfReady(), InstructionQueue< Impl >::addReadyMemInst(), InstructionQueue< Impl >::addToOrderList(), InstructionQueue< Impl >::dumpLists(), InstructionQueue< Impl >::hasReadyInsts(), InstructionQueue< Impl >::moveToYoungerInst(), InstructionQueue< Impl >::resetState(), and InstructionQueue< Impl >::scheduleReadyInsts().
|
private |
Max IQ Entries Per Thread.
Definition at line 413 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::InstructionQueue(), InstructionQueue< Impl >::numFreeEntries(), and InstructionQueue< Impl >::resetEntries().
|
private |
The memory dependence unit, which tracks/predicts memory dependences between instructions.
Definition at line 288 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::addIfReady(), InstructionQueue< Impl >::drainSanityCheck(), InstructionQueue< Impl >::insert(), InstructionQueue< Impl >::insertBarrier(), InstructionQueue< Impl >::insertNonSpec(), InstructionQueue< Impl >::InstructionQueue(), InstructionQueue< Impl >::isDrained(), InstructionQueue< Impl >::replayMemInst(), InstructionQueue< Impl >::rescheduleMemInst(), InstructionQueue< Impl >::scheduleNonSpec(), InstructionQueue< Impl >::scheduleReadyInsts(), InstructionQueue< Impl >::squash(), InstructionQueue< Impl >::violation(), and InstructionQueue< Impl >::wakeDependents().
|
private |
List of non-speculative instructions that will be scheduled once the IQ gets a signal from commit.
While it's redundant to have the key be a part of the value (the sequence number is stored inside of DynInst), when these instructions are woken up only the sequence number will be available. Thus it is most efficient to be able to search by the sequence number alone.
Definition at line 356 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::doSquash(), InstructionQueue< Impl >::dumpLists(), InstructionQueue< Impl >::insertNonSpec(), InstructionQueue< Impl >::resetState(), and InstructionQueue< Impl >::scheduleNonSpec().
|
private |
The number of entries in the instruction queue.
Definition at line 419 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::commit(), InstructionQueue< Impl >::countInsts(), InstructionQueue< Impl >::entryAmount(), InstructionQueue< Impl >::insert(), InstructionQueue< Impl >::insertNonSpec(), InstructionQueue< Impl >::InstructionQueue(), InstructionQueue< Impl >::resetEntries(), and InstructionQueue< Impl >::resetState().
|
private |
The number of physical registers in the CPU.
Definition at line 425 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::InstructionQueue(), and InstructionQueue< Impl >::resetState().
|
private |
Number of Total Threads.
Definition at line 404 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::drainSanityCheck(), InstructionQueue< Impl >::dumpInsts(), InstructionQueue< Impl >::InstructionQueue(), InstructionQueue< Impl >::isDrained(), and InstructionQueue< Impl >::resetEntries().
|
private |
Tracks if each ready queue is on the age order list.
Definition at line 378 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::addIfReady(), InstructionQueue< Impl >::addReadyMemInst(), InstructionQueue< Impl >::addToOrderList(), InstructionQueue< Impl >::resetState(), and InstructionQueue< Impl >::scheduleReadyInsts().
|
private |
List of ready instructions, per op class.
They are separated by op class to allow for easy mapping to FUs.
Definition at line 347 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::addIfReady(), InstructionQueue< Impl >::addReadyMemInst(), InstructionQueue< Impl >::addToOrderList(), InstructionQueue< Impl >::dumpLists(), InstructionQueue< Impl >::hasReadyInsts(), InstructionQueue< Impl >::moveToYoungerInst(), InstructionQueue< Impl >::resetState(), and InstructionQueue< Impl >::scheduleReadyInsts().
|
private |
Iterators of each ready queue.
Points to their spot in the age order list.
Definition at line 383 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::addIfReady(), InstructionQueue< Impl >::addReadyMemInst(), InstructionQueue< Impl >::addToOrderList(), InstructionQueue< Impl >::moveToYoungerInst(), InstructionQueue< Impl >::resetState(), and InstructionQueue< Impl >::scheduleReadyInsts().
|
private |
A cache of the recently woken registers.
It is 1 if the register has been woken up recently, and 0 if the register has been added to the dependency graph and has not yet received its value. It is basically a secondary scoreboard, and should pretty much mirror the scoreboard that exists in the rename map.
Definition at line 444 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::addToDependents(), InstructionQueue< Impl >::addToProducers(), InstructionQueue< Impl >::InstructionQueue(), InstructionQueue< Impl >::resetState(), and InstructionQueue< Impl >::wakeDependents().
|
private |
List of instructions that were cache blocked, but a retry has been seen since, so they can now be retried.
May fail again go on the blocked list.
Definition at line 325 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::cacheUnblocked(), InstructionQueue< Impl >::getBlockedMemInstToExecute(), InstructionQueue< Impl >::resetState(), and InstructionQueue< Impl >::scheduleReadyInsts().
|
private |
The sequence number of the squashed instruction.
Definition at line 436 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::doSquash(), InstructionQueue< Impl >::resetState(), and InstructionQueue< Impl >::squash().
|
private |
The backwards time buffer.
Definition at line 296 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::setTimeBuffer().
|
private |
The total number of instructions that can be issued in one cycle.
Definition at line 422 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::scheduleReadyInsts().
|
private |
Number of instructions currently in flight to FUs.
Definition at line 428 of file inst_queue.hh.
Referenced by InstructionQueue< Impl >::isDrained(), InstructionQueue< Impl >::processFUCompletion(), InstructionQueue< Impl >::resetState(), and InstructionQueue< Impl >::scheduleReadyInsts().