gem5  v20.0.0.3
Classes | Public Types | Public Member Functions | Protected Attributes | Private Types | Private Member Functions | Private Attributes | List of all members
MemDepUnit< MemDepPred, Impl > Class Template Reference

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< MemDepEntryMemDepEntryPtr
 
typedef std::unordered_map< InstSeqNum, MemDepEntryPtr, SNHashMemDepHash
 
typedef MemDepHash::iterator MemDepHashIt
 

Private Member Functions

MemDepEntryPtrfindInHash (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< DynInstPtrinstList [Impl::MaxThreads]
 A list of all instructions in the memory dependence unit. More...
 
std::list< DynInstPtrinstsToReplay
 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...
 

Detailed Description

template<class MemDepPred, class Impl>
class MemDepUnit< MemDepPred, Impl >

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.

Member Typedef Documentation

◆ DynInstConstPtr

template<class MemDepPred , class Impl >
typedef Impl::DynInstConstPtr MemDepUnit< MemDepPred, Impl >::DynInstConstPtr

Definition at line 86 of file mem_dep_unit.hh.

◆ DynInstPtr

template<class MemDepPred , class Impl >
typedef Impl::DynInstPtr MemDepUnit< MemDepPred, Impl >::DynInstPtr

Definition at line 85 of file mem_dep_unit.hh.

◆ ListIt

template<class MemDepPred , class Impl >
typedef std::list<DynInstPtr>::iterator MemDepUnit< MemDepPred, Impl >::ListIt
private

Definition at line 166 of file mem_dep_unit.hh.

◆ MemDepEntryPtr

template<class MemDepPred , class Impl >
typedef std::shared_ptr<MemDepEntry> MemDepUnit< MemDepPred, Impl >::MemDepEntryPtr
private

Definition at line 168 of file mem_dep_unit.hh.

◆ MemDepHash

template<class MemDepPred , class Impl >
typedef std::unordered_map<InstSeqNum, MemDepEntryPtr, SNHash> MemDepUnit< MemDepPred, Impl >::MemDepHash
private

Definition at line 240 of file mem_dep_unit.hh.

◆ MemDepHashIt

template<class MemDepPred , class Impl >
typedef MemDepHash::iterator MemDepUnit< MemDepPred, Impl >::MemDepHashIt
private

Definition at line 242 of file mem_dep_unit.hh.

Constructor & Destructor Documentation

◆ MemDepUnit() [1/2]

template<class MemDepPred , class Impl >
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() [2/2]

template<class MemDepPred , class Impl >
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()

template<class MemDepPred , class Impl >
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.

Member Function Documentation

◆ completeBarrier()

template<class MemDepPred , class Impl >
void MemDepUnit< MemDepPred, Impl >::completeBarrier ( const DynInstPtr inst)

◆ completed()

template<class MemDepPred , class Impl >
void MemDepUnit< MemDepPred, Impl >::completed ( const DynInstPtr inst)

◆ drainSanityCheck()

template<class MemDepPred , class Impl >
void MemDepUnit< MemDepPred, Impl >::drainSanityCheck ( ) const

◆ dumpLists()

template<class MemDepPred , class Impl >
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.

◆ findInHash()

template<class MemDepPred , class Impl >
MemDepUnit< MemDepPred, Impl >::MemDepEntryPtr & MemDepUnit< MemDepPred, Impl >::findInHash ( const DynInstConstPtr inst)
inlineprivate

◆ init()

template<class MemDepPred , class Impl >
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().

◆ insert()

template<class MemDepPred , class Impl >
void MemDepUnit< MemDepPred, Impl >::insert ( const DynInstPtr inst)

◆ insertBarrier()

template<class MemDepPred , class Impl >
void MemDepUnit< MemDepPred, Impl >::insertBarrier ( const DynInstPtr barr_inst)

◆ insertNonSpec()

template<class MemDepPred , class Impl >
void MemDepUnit< MemDepPred, Impl >::insertNonSpec ( const DynInstPtr inst)

◆ isDrained()

template<class MemDepPred , class Impl >
bool MemDepUnit< MemDepPred, Impl >::isDrained ( ) const

◆ issue()

template<class MemDepPred , class Impl >
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().

◆ moveToReady()

template<class MemDepPred , class Impl >
void MemDepUnit< MemDepPred, Impl >::moveToReady ( MemDepEntryPtr ready_inst_entry)
inlineprivate

◆ name()

template<class MemDepPred , class Impl >
std::string MemDepUnit< MemDepPred, Impl >::name ( ) const
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().

◆ nonSpecInstReady()

template<class MemDepPred , class Impl >
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().

◆ regsReady()

template<class MemDepPred , class Impl >
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().

◆ regStats()

template<class MemDepPred , class Impl >
void MemDepUnit< MemDepPred, Impl >::regStats ( )

◆ replay()

template<class MemDepPred , class Impl >
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().

◆ reschedule()

template<class MemDepPred , class Impl >
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().

◆ setIQ()

template<class MemDepPred , class Impl >
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().

◆ squash()

template<class MemDepPred , class Impl >
void MemDepUnit< MemDepPred, Impl >::squash ( const InstSeqNum squashed_num,
ThreadID  tid 
)

◆ takeOverFrom()

template<class MemDepPred , class Impl >
void MemDepUnit< MemDepPred, Impl >::takeOverFrom ( )

◆ violation()

template<class MemDepPred , class Impl >
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().

◆ wakeDependents()

template<class MemDepPred , class Impl >
void MemDepUnit< MemDepPred, Impl >::wakeDependents ( const DynInstPtr inst)

Member Data Documentation

◆ _name

template<class MemDepPred , class Impl >
std::string MemDepUnit< MemDepPred, Impl >::_name
protected

Definition at line 82 of file mem_dep_unit.hh.

Referenced by MemDepUnit< MemDepPred, Impl >::init().

◆ conflictingLoads

template<class MemDepPred , class Impl >
Stats::Scalar MemDepUnit< MemDepPred, Impl >::conflictingLoads
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().

◆ conflictingStores

template<class MemDepPred , class Impl >
Stats::Scalar MemDepUnit< MemDepPred, Impl >::conflictingStores
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().

◆ depPred

template<class MemDepPred , class Impl >
MemDepPred MemDepUnit< MemDepPred, Impl >::depPred
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().

◆ id

template<class MemDepPred , class Impl >
int MemDepUnit< MemDepPred, Impl >::id
private

The thread id of this memory dependence unit.

Definition at line 273 of file mem_dep_unit.hh.

◆ insertedLoads

template<class MemDepPred , class Impl >
Stats::Scalar MemDepUnit< MemDepPred, Impl >::insertedLoads
private

◆ insertedStores

template<class MemDepPred , class Impl >
Stats::Scalar MemDepUnit< MemDepPred, Impl >::insertedStores
private

◆ instList

template<class MemDepPred , class Impl >
std::list<DynInstPtr> MemDepUnit< MemDepPred, Impl >::instList[Impl::MaxThreads]
private

◆ instsToReplay

template<class MemDepPred , class Impl >
std::list<DynInstPtr> MemDepUnit< MemDepPred, Impl >::instsToReplay
private

◆ iqPtr

template<class MemDepPred , class Impl >
InstructionQueue<Impl>* MemDepUnit< MemDepPred, Impl >::iqPtr
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().

◆ loadBarrier

template<class MemDepPred , class Impl >
bool MemDepUnit< MemDepPred, Impl >::loadBarrier
private

◆ loadBarrierSN

template<class MemDepPred , class Impl >
InstSeqNum MemDepUnit< MemDepPred, Impl >::loadBarrierSN
private

◆ memDepHash

template<class MemDepPred , class Impl >
MemDepHash MemDepUnit< MemDepPred, Impl >::memDepHash
private

◆ storeBarrier

template<class MemDepPred , class Impl >
bool MemDepUnit< MemDepPred, Impl >::storeBarrier
private

◆ storeBarrierSN

template<class MemDepPred , class Impl >
InstSeqNum MemDepUnit< MemDepPred, Impl >::storeBarrierSN
private

The documentation for this class was generated from the following files:

Generated on Fri Jul 3 2020 15:53:16 for gem5 by doxygen 1.8.13