gem5
v20.0.0.3
|
Memory dependency unit class. More...
#include <mem_dep_unit.hh>
Classes | |
class | MemDepEntry |
Memory dependence entries that track memory operations, marking when the instruction is ready to execute and what instructions depend upon it. More... | |
Public Types | |
typedef Impl::DynInstPtr | DynInstPtr |
typedef Impl::DynInstConstPtr | DynInstConstPtr |
Public Member Functions | |
MemDepUnit () | |
Empty constructor. More... | |
MemDepUnit (DerivO3CPUParams *params) | |
Constructs a MemDepUnit with given parameters. More... | |
~MemDepUnit () | |
Frees up any memory allocated. More... | |
std::string | name () const |
Returns the name of the memory dependence unit. More... | |
void | init (DerivO3CPUParams *params, ThreadID tid) |
Initializes the unit with parameters and a thread id. More... | |
void | regStats () |
Registers statistics. More... | |
bool | isDrained () const |
Determine if we are drained. More... | |
void | drainSanityCheck () const |
Perform sanity checks after a drain. More... | |
void | takeOverFrom () |
Takes over from another CPU's thread. More... | |
void | setIQ (InstructionQueue< Impl > *iq_ptr) |
Sets the pointer to the IQ. More... | |
void | insert (const DynInstPtr &inst) |
Inserts a memory instruction. More... | |
void | insertNonSpec (const DynInstPtr &inst) |
Inserts a non-speculative memory instruction. More... | |
void | insertBarrier (const DynInstPtr &barr_inst) |
Inserts a barrier instruction. More... | |
void | regsReady (const DynInstPtr &inst) |
Indicate that an instruction has its registers ready. More... | |
void | nonSpecInstReady (const DynInstPtr &inst) |
Indicate that a non-speculative instruction is ready. More... | |
void | reschedule (const DynInstPtr &inst) |
Reschedules an instruction to be re-executed. More... | |
void | replay () |
Replays all instructions that have been rescheduled by moving them to the ready list. More... | |
void | completed (const DynInstPtr &inst) |
Completes a memory instruction. More... | |
void | completeBarrier (const DynInstPtr &inst) |
Completes a barrier instruction. More... | |
void | wakeDependents (const DynInstPtr &inst) |
Wakes any dependents of a memory instruction. More... | |
void | squash (const InstSeqNum &squashed_num, ThreadID tid) |
Squashes all instructions up until a given sequence number for a specific thread. More... | |
void | violation (const DynInstPtr &store_inst, const DynInstPtr &violating_load) |
Indicates an ordering violation between a store and a younger load. More... | |
void | issue (const DynInstPtr &inst) |
Issues the given instruction. More... | |
void | dumpLists () |
Debugging function to dump the lists of instructions. More... | |
Protected Attributes | |
std::string | _name |
Private Types | |
typedef std::list< DynInstPtr >::iterator | ListIt |
typedef std::shared_ptr< MemDepEntry > | MemDepEntryPtr |
typedef std::unordered_map< InstSeqNum, MemDepEntryPtr, SNHash > | MemDepHash |
typedef MemDepHash::iterator | MemDepHashIt |
Private Member Functions | |
MemDepEntryPtr & | findInHash (const DynInstConstPtr &inst) |
Finds the memory dependence entry in the hash map. More... | |
void | moveToReady (MemDepEntryPtr &ready_inst_entry) |
Moves an entry to the ready list. More... | |
Private Attributes | |
MemDepHash | memDepHash |
A hash map of all memory dependence entries. More... | |
std::list< DynInstPtr > | instList [Impl::MaxThreads] |
A list of all instructions in the memory dependence unit. More... | |
std::list< DynInstPtr > | instsToReplay |
A list of all instructions that are going to be replayed. More... | |
MemDepPred | depPred |
The memory dependence predictor. More... | |
bool | loadBarrier |
Is there an outstanding load barrier that loads must wait on. More... | |
InstSeqNum | loadBarrierSN |
The sequence number of the load barrier. More... | |
bool | storeBarrier |
Is there an outstanding store barrier that loads must wait on. More... | |
InstSeqNum | storeBarrierSN |
The sequence number of the store barrier. More... | |
InstructionQueue< Impl > * | iqPtr |
Pointer to the IQ. More... | |
int | id |
The thread id of this memory dependence unit. More... | |
Stats::Scalar | insertedLoads |
Stat for number of inserted loads. More... | |
Stats::Scalar | insertedStores |
Stat for number of inserted stores. More... | |
Stats::Scalar | conflictingLoads |
Stat for number of conflicting loads that had to wait for a store. More... | |
Stats::Scalar | conflictingStores |
Stat for number of conflicting stores that had to wait for a store. More... | |
Memory dependency unit class.
This holds the memory dependence predictor. As memory operations are issued to the IQ, they are also issued to this unit, which then looks up the prediction as to what they are dependent upon. This unit must be checked prior to a memory operation being able to issue. Although this is templated, it's somewhat hard to make a generic memory dependence unit. This one is mostly for store sets; it will be quite limited in what other memory dependence predictions it can also utilize. Thus this class should be most likely be rewritten for other dependence prediction schemes.
Definition at line 79 of file mem_dep_unit.hh.
typedef Impl::DynInstConstPtr MemDepUnit< MemDepPred, Impl >::DynInstConstPtr |
Definition at line 86 of file mem_dep_unit.hh.
typedef Impl::DynInstPtr MemDepUnit< MemDepPred, Impl >::DynInstPtr |
Definition at line 85 of file mem_dep_unit.hh.
|
private |
Definition at line 166 of file mem_dep_unit.hh.
|
private |
Definition at line 168 of file mem_dep_unit.hh.
|
private |
Definition at line 240 of file mem_dep_unit.hh.
|
private |
Definition at line 242 of file mem_dep_unit.hh.
MemDepUnit< MemDepPred, Impl >::MemDepUnit | ( | ) |
Empty constructor.
Must call init() prior to using in this case.
Definition at line 52 of file mem_dep_unit_impl.hh.
MemDepUnit< MemDepPred, Impl >::MemDepUnit | ( | DerivO3CPUParams * | params | ) |
Constructs a MemDepUnit with given parameters.
Definition at line 59 of file mem_dep_unit_impl.hh.
References DPRINTF.
MemDepUnit< MemDepPred, Impl >::~MemDepUnit | ( | ) |
Frees up any memory allocated.
Definition at line 70 of file mem_dep_unit_impl.hh.
References MemDepUnit< MemDepPred, Impl >::instList, and MemDepUnit< MemDepPred, Impl >::memDepHash.
void MemDepUnit< MemDepPred, Impl >::completeBarrier | ( | const DynInstPtr & | inst | ) |
Completes a barrier instruction.
Definition at line 429 of file mem_dep_unit_impl.hh.
References MemDepUnit< MemDepPred, Impl >::completed(), DPRINTF, MemDepUnit< MemDepPred, Impl >::loadBarrier, MemDepUnit< MemDepPred, Impl >::loadBarrierSN, MemDepUnit< MemDepPred, Impl >::storeBarrier, MemDepUnit< MemDepPred, Impl >::storeBarrierSN, and MemDepUnit< MemDepPred, Impl >::wakeDependents().
Referenced by InstructionQueue< Impl >::wakeDependents().
void MemDepUnit< MemDepPred, Impl >::completed | ( | const DynInstPtr & | inst | ) |
Completes a memory instruction.
Definition at line 405 of file mem_dep_unit_impl.hh.
References DPRINTF, MemDepUnit< MemDepPred, Impl >::instList, and MemDepUnit< MemDepPred, Impl >::memDepHash.
Referenced by MemDepUnit< MemDepPred, Impl >::completeBarrier(), and InstructionQueue< Impl >::completeMemInst().
void MemDepUnit< MemDepPred, Impl >::drainSanityCheck | ( | ) | const |
Perform sanity checks after a drain.
Definition at line 143 of file mem_dep_unit_impl.hh.
References ArmISA::i, MemDepUnit< MemDepPred, Impl >::instList, MemDepUnit< MemDepPred, Impl >::instsToReplay, and MemDepUnit< MemDepPred, Impl >::memDepHash.
void MemDepUnit< MemDepPred, Impl >::dumpLists | ( | ) |
Debugging function to dump the lists of instructions.
Definition at line 584 of file mem_dep_unit_impl.hh.
References cprintf(), MemDepUnit< MemDepPred, Impl >::instList, and MemDepUnit< MemDepPred, Impl >::memDepHash.
|
inlineprivate |
Finds the memory dependence entry in the hash map.
Definition at line 560 of file mem_dep_unit_impl.hh.
References MemDepUnit< MemDepPred, Impl >::memDepHash.
Referenced by MemDepUnit< MemDepPred, Impl >::nonSpecInstReady(), MemDepUnit< MemDepPred, Impl >::regsReady(), MemDepUnit< MemDepPred, Impl >::replay(), and MemDepUnit< MemDepPred, Impl >::wakeDependents().
void MemDepUnit< MemDepPred, Impl >::init | ( | DerivO3CPUParams * | params, |
ThreadID | tid | ||
) |
Initializes the unit with parameters and a thread id.
Definition at line 96 of file mem_dep_unit_impl.hh.
References MemDepUnit< MemDepPred, Impl >::_name, csprintf(), MemDepUnit< MemDepPred, Impl >::depPred, and DPRINTF.
Referenced by InstructionQueue< Impl >::InstructionQueue().
void MemDepUnit< MemDepPred, Impl >::insert | ( | const DynInstPtr & | inst | ) |
Inserts a memory instruction.
Definition at line 172 of file mem_dep_unit_impl.hh.
References MemDepUnit< MemDepPred, Impl >::conflictingLoads, MemDepUnit< MemDepPred, Impl >::conflictingStores, MemDepUnit< MemDepPred, Impl >::depPred, DPRINTF, MemDepUnit< MemDepPred, Impl >::insertedLoads, MemDepUnit< MemDepPred, Impl >::insertedStores, MemDepUnit< MemDepPred, Impl >::instList, MemDepUnit< MemDepPred, Impl >::loadBarrier, MemDepUnit< MemDepPred, Impl >::loadBarrierSN, MemDepUnit< MemDepPred, Impl >::memDepHash, MemDepUnit< MemDepPred, Impl >::moveToReady(), panic, MemDepUnit< MemDepPred, Impl >::storeBarrier, and MemDepUnit< MemDepPred, Impl >::storeBarrierSN.
Referenced by InstructionQueue< Impl >::insert().
void MemDepUnit< MemDepPred, Impl >::insertBarrier | ( | const DynInstPtr & | barr_inst | ) |
Inserts a barrier instruction.
Definition at line 305 of file mem_dep_unit_impl.hh.
References DPRINTF, MemDepUnit< MemDepPred, Impl >::instList, MemDepUnit< MemDepPred, Impl >::loadBarrier, MemDepUnit< MemDepPred, Impl >::loadBarrierSN, MemDepUnit< MemDepPred, Impl >::memDepHash, MemDepUnit< MemDepPred, Impl >::storeBarrier, and MemDepUnit< MemDepPred, Impl >::storeBarrierSN.
Referenced by InstructionQueue< Impl >::insertBarrier().
void MemDepUnit< MemDepPred, Impl >::insertNonSpec | ( | const DynInstPtr & | inst | ) |
Inserts a non-speculative memory instruction.
Definition at line 269 of file mem_dep_unit_impl.hh.
References MemDepUnit< MemDepPred, Impl >::depPred, DPRINTF, MemDepUnit< MemDepPred, Impl >::insertedLoads, MemDepUnit< MemDepPred, Impl >::insertedStores, MemDepUnit< MemDepPred, Impl >::instList, MemDepUnit< MemDepPred, Impl >::memDepHash, and panic.
Referenced by InstructionQueue< Impl >::insertNonSpec().
bool MemDepUnit< MemDepPred, Impl >::isDrained | ( | ) | const |
Determine if we are drained.
Definition at line 130 of file mem_dep_unit_impl.hh.
References ArmISA::i, MemDepUnit< MemDepPred, Impl >::instList, MemDepUnit< MemDepPred, Impl >::instsToReplay, and MemDepUnit< MemDepPred, Impl >::memDepHash.
void MemDepUnit< MemDepPred, Impl >::issue | ( | const DynInstPtr & | inst | ) |
Issues the given instruction.
Definition at line 550 of file mem_dep_unit_impl.hh.
References MemDepUnit< MemDepPred, Impl >::depPred, and DPRINTF.
Referenced by InstructionQueue< Impl >::scheduleReadyInsts().
|
inlineprivate |
Moves an entry to the ready list.
Definition at line 571 of file mem_dep_unit_impl.hh.
References DPRINTF, and MemDepUnit< MemDepPred, Impl >::iqPtr.
Referenced by MemDepUnit< MemDepPred, Impl >::insert(), MemDepUnit< MemDepPred, Impl >::nonSpecInstReady(), MemDepUnit< MemDepPred, Impl >::regsReady(), MemDepUnit< MemDepPred, Impl >::replay(), and MemDepUnit< MemDepPred, Impl >::wakeDependents().
|
inline |
Returns the name of the memory dependence unit.
Definition at line 98 of file mem_dep_unit.hh.
References Stats::init, and takeOverFrom().
Referenced by MemDepUnit< MemDepPred, Impl >::regStats().
void MemDepUnit< MemDepPred, Impl >::nonSpecInstReady | ( | const DynInstPtr & | inst | ) |
Indicate that a non-speculative instruction is ready.
Definition at line 364 of file mem_dep_unit_impl.hh.
References DPRINTF, MemDepUnit< MemDepPred, Impl >::findInHash(), and MemDepUnit< MemDepPred, Impl >::moveToReady().
Referenced by InstructionQueue< Impl >::scheduleNonSpec().
void MemDepUnit< MemDepPred, Impl >::regsReady | ( | const DynInstPtr & | inst | ) |
Indicate that an instruction has its registers ready.
Definition at line 341 of file mem_dep_unit_impl.hh.
References DPRINTF, MemDepUnit< MemDepPred, Impl >::findInHash(), and MemDepUnit< MemDepPred, Impl >::moveToReady().
Referenced by InstructionQueue< Impl >::addIfReady().
void MemDepUnit< MemDepPred, Impl >::regStats | ( | ) |
Registers statistics.
Definition at line 109 of file mem_dep_unit_impl.hh.
References MemDepUnit< MemDepPred, Impl >::conflictingLoads, MemDepUnit< MemDepPred, Impl >::conflictingStores, Stats::DataWrap< Derived, InfoProxyType >::desc(), MemDepUnit< MemDepPred, Impl >::insertedLoads, MemDepUnit< MemDepPred, Impl >::insertedStores, MemDepUnit< MemDepPred, Impl >::name(), and Stats::DataWrap< Derived, InfoProxyType >::name().
Referenced by InstructionQueue< Impl >::regStats().
void MemDepUnit< MemDepPred, Impl >::replay | ( | ) |
Replays all instructions that have been rescheduled by moving them to the ready list.
Definition at line 384 of file mem_dep_unit_impl.hh.
References DPRINTF, MemDepUnit< MemDepPred, Impl >::findInHash(), MemDepUnit< MemDepPred, Impl >::instsToReplay, and MemDepUnit< MemDepPred, Impl >::moveToReady().
Referenced by InstructionQueue< Impl >::replayMemInst().
void MemDepUnit< MemDepPred, Impl >::reschedule | ( | const DynInstPtr & | inst | ) |
Reschedules an instruction to be re-executed.
Definition at line 377 of file mem_dep_unit_impl.hh.
References MemDepUnit< MemDepPred, Impl >::instsToReplay.
Referenced by InstructionQueue< Impl >::rescheduleMemInst().
void MemDepUnit< MemDepPred, Impl >::setIQ | ( | InstructionQueue< Impl > * | iq_ptr | ) |
Sets the pointer to the IQ.
Definition at line 165 of file mem_dep_unit_impl.hh.
References MemDepUnit< MemDepPred, Impl >::iqPtr.
Referenced by InstructionQueue< Impl >::InstructionQueue().
void MemDepUnit< MemDepPred, Impl >::squash | ( | const InstSeqNum & | squashed_num, |
ThreadID | tid | ||
) |
Squashes all instructions up until a given sequence number for a specific thread.
Definition at line 484 of file mem_dep_unit_impl.hh.
References MemDepUnit< MemDepPred, Impl >::depPred, DPRINTF, MemDepUnit< MemDepPred, Impl >::instList, MemDepUnit< MemDepPred, Impl >::instsToReplay, MemDepUnit< MemDepPred, Impl >::loadBarrier, MemDepUnit< MemDepPred, Impl >::loadBarrierSN, MemDepUnit< MemDepPred, Impl >::memDepHash, MemDepUnit< MemDepPred, Impl >::storeBarrier, and MemDepUnit< MemDepPred, Impl >::storeBarrierSN.
Referenced by InstructionQueue< Impl >::squash().
void MemDepUnit< MemDepPred, Impl >::takeOverFrom | ( | ) |
Takes over from another CPU's thread.
Definition at line 155 of file mem_dep_unit_impl.hh.
References MemDepUnit< MemDepPred, Impl >::depPred, MemDepUnit< MemDepPred, Impl >::loadBarrier, MemDepUnit< MemDepPred, Impl >::loadBarrierSN, MemDepUnit< MemDepPred, Impl >::storeBarrier, and MemDepUnit< MemDepPred, Impl >::storeBarrierSN.
void MemDepUnit< MemDepPred, Impl >::violation | ( | const DynInstPtr & | store_inst, |
const DynInstPtr & | violating_load | ||
) |
Indicates an ordering violation between a store and a younger load.
Definition at line 538 of file mem_dep_unit_impl.hh.
References MemDepUnit< MemDepPred, Impl >::depPred, and DPRINTF.
Referenced by InstructionQueue< Impl >::violation().
void MemDepUnit< MemDepPred, Impl >::wakeDependents | ( | const DynInstPtr & | inst | ) |
Wakes any dependents of a memory instruction.
Definition at line 450 of file mem_dep_unit_impl.hh.
References DPRINTF, MemDepUnit< MemDepPred, Impl >::findInHash(), ArmISA::i, and MemDepUnit< MemDepPred, Impl >::moveToReady().
Referenced by MemDepUnit< MemDepPred, Impl >::completeBarrier(), and InstructionQueue< Impl >::wakeDependents().
|
protected |
Definition at line 82 of file mem_dep_unit.hh.
Referenced by MemDepUnit< MemDepPred, Impl >::init().
|
private |
Stat for number of conflicting loads that had to wait for a store.
Definition at line 280 of file mem_dep_unit.hh.
Referenced by MemDepUnit< MemDepPred, Impl >::insert(), and MemDepUnit< MemDepPred, Impl >::regStats().
|
private |
Stat for number of conflicting stores that had to wait for a store.
Definition at line 282 of file mem_dep_unit.hh.
Referenced by MemDepUnit< MemDepPred, Impl >::insert(), and MemDepUnit< MemDepPred, Impl >::regStats().
|
private |
The memory dependence predictor.
It is accessed upon new instructions being added to the IQ, and responds by telling this unit what instruction the newly added instruction is dependent upon.
Definition at line 258 of file mem_dep_unit.hh.
Referenced by MemDepUnit< MemDepPred, Impl >::init(), MemDepUnit< MemDepPred, Impl >::insert(), MemDepUnit< MemDepPred, Impl >::insertNonSpec(), MemDepUnit< MemDepPred, Impl >::issue(), MemDepUnit< MemDepPred, Impl >::squash(), MemDepUnit< MemDepPred, Impl >::takeOverFrom(), and MemDepUnit< MemDepPred, Impl >::violation().
|
private |
The thread id of this memory dependence unit.
Definition at line 273 of file mem_dep_unit.hh.
|
private |
Stat for number of inserted loads.
Definition at line 276 of file mem_dep_unit.hh.
Referenced by MemDepUnit< MemDepPred, Impl >::insert(), MemDepUnit< MemDepPred, Impl >::insertNonSpec(), and MemDepUnit< MemDepPred, Impl >::regStats().
|
private |
Stat for number of inserted stores.
Definition at line 278 of file mem_dep_unit.hh.
Referenced by MemDepUnit< MemDepPred, Impl >::insert(), MemDepUnit< MemDepPred, Impl >::insertNonSpec(), and MemDepUnit< MemDepPred, Impl >::regStats().
|
private |
A list of all instructions in the memory dependence unit.
Definition at line 248 of file mem_dep_unit.hh.
Referenced by MemDepUnit< MemDepPred, Impl >::completed(), MemDepUnit< MemDepPred, Impl >::drainSanityCheck(), MemDepUnit< MemDepPred, Impl >::dumpLists(), MemDepUnit< MemDepPred, Impl >::insert(), MemDepUnit< MemDepPred, Impl >::insertBarrier(), MemDepUnit< MemDepPred, Impl >::insertNonSpec(), MemDepUnit< MemDepPred, Impl >::isDrained(), MemDepUnit< MemDepPred, Impl >::squash(), and MemDepUnit< MemDepPred, Impl >::~MemDepUnit().
|
private |
A list of all instructions that are going to be replayed.
Definition at line 251 of file mem_dep_unit.hh.
Referenced by MemDepUnit< MemDepPred, Impl >::drainSanityCheck(), MemDepUnit< MemDepPred, Impl >::isDrained(), MemDepUnit< MemDepPred, Impl >::replay(), MemDepUnit< MemDepPred, Impl >::reschedule(), and MemDepUnit< MemDepPred, Impl >::squash().
|
private |
Pointer to the IQ.
Definition at line 270 of file mem_dep_unit.hh.
Referenced by MemDepUnit< MemDepPred, Impl >::moveToReady(), and MemDepUnit< MemDepPred, Impl >::setIQ().
|
private |
Is there an outstanding load barrier that loads must wait on.
Definition at line 261 of file mem_dep_unit.hh.
Referenced by MemDepUnit< MemDepPred, Impl >::completeBarrier(), MemDepUnit< MemDepPred, Impl >::insert(), MemDepUnit< MemDepPred, Impl >::insertBarrier(), MemDepUnit< MemDepPred, Impl >::squash(), and MemDepUnit< MemDepPred, Impl >::takeOverFrom().
|
private |
The sequence number of the load barrier.
Definition at line 263 of file mem_dep_unit.hh.
Referenced by MemDepUnit< MemDepPred, Impl >::completeBarrier(), MemDepUnit< MemDepPred, Impl >::insert(), MemDepUnit< MemDepPred, Impl >::insertBarrier(), MemDepUnit< MemDepPred, Impl >::squash(), and MemDepUnit< MemDepPred, Impl >::takeOverFrom().
|
private |
A hash map of all memory dependence entries.
Definition at line 245 of file mem_dep_unit.hh.
Referenced by MemDepUnit< MemDepPred, Impl >::completed(), MemDepUnit< MemDepPred, Impl >::drainSanityCheck(), MemDepUnit< MemDepPred, Impl >::dumpLists(), MemDepUnit< MemDepPred, Impl >::findInHash(), MemDepUnit< MemDepPred, Impl >::insert(), MemDepUnit< MemDepPred, Impl >::insertBarrier(), MemDepUnit< MemDepPred, Impl >::insertNonSpec(), MemDepUnit< MemDepPred, Impl >::isDrained(), MemDepUnit< MemDepPred, Impl >::squash(), and MemDepUnit< MemDepPred, Impl >::~MemDepUnit().
|
private |
Is there an outstanding store barrier that loads must wait on.
Definition at line 265 of file mem_dep_unit.hh.
Referenced by MemDepUnit< MemDepPred, Impl >::completeBarrier(), MemDepUnit< MemDepPred, Impl >::insert(), MemDepUnit< MemDepPred, Impl >::insertBarrier(), MemDepUnit< MemDepPred, Impl >::squash(), and MemDepUnit< MemDepPred, Impl >::takeOverFrom().
|
private |
The sequence number of the store barrier.
Definition at line 267 of file mem_dep_unit.hh.
Referenced by MemDepUnit< MemDepPred, Impl >::completeBarrier(), MemDepUnit< MemDepPred, Impl >::insert(), MemDepUnit< MemDepPred, Impl >::insertBarrier(), MemDepUnit< MemDepPred, Impl >::squash(), and MemDepUnit< MemDepPred, Impl >::takeOverFrom().