gem5  v20.1.0.0
Classes | Public Types | Public Member Functions | Private Attributes | Friends | List of all members
WriteQueueEntry Class Reference

Write queue entry. More...

#include <write_queue_entry.hh>

Inheritance diagram for WriteQueueEntry:
QueueEntry Printable Packet::SenderState

Classes

class  TargetList
 

Public Types

typedef std::list< WriteQueueEntry * > List
 A list of write queue entriess. More...
 
typedef List::iterator Iterator
 WriteQueueEntry list iterator. More...
 

Public Member Functions

bool sendPacket (BaseCache &cache) override
 Send this queue entry as a downstream packet, with the exact behaviour depending on the specific entry type. More...
 
 WriteQueueEntry ()
 A simple constructor. More...
 
void allocate (Addr blk_addr, unsigned blk_size, PacketPtr pkt, Tick when_ready, Counter _order)
 Allocate a miss to this entry. More...
 
void deallocate ()
 Mark this entry as free. More...
 
int getNumTargets () const
 Returns the current number of allocated targets. More...
 
bool hasTargets () const
 Returns true if there are targets left. More...
 
TargetgetTarget () override
 Returns a reference to the first target. More...
 
void popTarget ()
 Pop first target. More...
 
bool trySatisfyFunctional (PacketPtr pkt)
 
void print (std::ostream &os, int verbosity=0, const std::string &prefix="") const override
 Prints the contents of this MSHR for debugging. More...
 
std::string print () const
 A no-args wrapper of print(std::ostream...) meant to be invoked from DPRINTFs avoiding string overheads in fast mode. More...
 
bool matchBlockAddr (const Addr addr, const bool is_secure) const override
 Check if entry corresponds to the one being looked for. More...
 
bool matchBlockAddr (const PacketPtr pkt) const override
 Check if entry contains a packet that corresponds to the one being looked for. More...
 
bool conflictAddr (const QueueEntry *entry) const override
 Check if given entry's packets conflict with this' entries packets. More...
 
- Public Member Functions inherited from QueueEntry
 QueueEntry ()
 
bool isUncacheable () const
 
- Public Member Functions inherited from Packet::SenderState
 SenderState ()
 
virtual ~SenderState ()
 
- Public Member Functions inherited from Printable
 Printable ()
 
virtual ~Printable ()
 

Private Attributes

Iterator readyIter
 Pointer to this entry on the ready list. More...
 
Iterator allocIter
 Pointer to this entry on the allocated list. More...
 
TargetList targets
 List of all requests that match the address. More...
 

Friends

template<typename Entry >
class Queue
 Consider the queues friends to avoid making everything public. More...
 
class WriteQueue
 

Additional Inherited Members

- Public Attributes inherited from QueueEntry
bool inService
 True if the entry has been sent downstream. More...
 
Counter order
 Order number assigned to disambiguate writes and misses. More...
 
Addr blkAddr
 Block aligned address. More...
 
unsigned blkSize
 Block size of the cache. More...
 
bool isSecure
 True if the entry targets the secure memory space. More...
 
- Public Attributes inherited from Packet::SenderState
SenderStatepredecessor
 
- Protected Attributes inherited from QueueEntry
Tick readyTime
 Tick when ready to issue. More...
 
bool _isUncacheable
 True if the entry is uncacheable. More...
 

Detailed Description

Write queue entry.

Definition at line 65 of file write_queue_entry.hh.

Member Typedef Documentation

◆ Iterator

typedef List::iterator WriteQueueEntry::Iterator

WriteQueueEntry list iterator.

Definition at line 90 of file write_queue_entry.hh.

◆ List

A list of write queue entriess.

Definition at line 88 of file write_queue_entry.hh.

Constructor & Destructor Documentation

◆ WriteQueueEntry()

WriteQueueEntry::WriteQueueEntry ( )
inline

A simple constructor.

Definition at line 114 of file write_queue_entry.hh.

Member Function Documentation

◆ allocate()

void WriteQueueEntry::allocate ( Addr  blk_addr,
unsigned  blk_size,
PacketPtr  pkt,
Tick  when_ready,
Counter  _order 
)

Allocate a miss to this entry.

Parameters
blk_addrThe address of the block.
blk_sizeThe number of bytes to request.
pktThe original write.
when_readyWhen should the write be sent out.
_orderThe logical order of this write.

Definition at line 87 of file write_queue_entry.cc.

References QueueEntry::_isUncacheable, WriteQueueEntry::TargetList::add(), QueueEntry::blkAddr, QueueEntry::blkSize, Packet::cmd, QueueEntry::inService, Packet::isEviction(), QueueEntry::isSecure, Packet::isSecure(), Packet::isWrite(), Packet::matchBlockAddr(), QueueEntry::order, panic_if, QueueEntry::readyTime, Packet::req, targets, and MemCmd::WriteClean.

Referenced by WriteQueue::allocate().

◆ conflictAddr()

bool WriteQueueEntry::conflictAddr ( const QueueEntry entry) const
overridevirtual

Check if given entry's packets conflict with this' entries packets.

Parameters
entryOther entry to compare against.
Returns
True if entry matches given information.

Implements QueueEntry.

Definition at line 158 of file write_queue_entry.cc.

References QueueEntry::blkAddr, hasTargets(), QueueEntry::isSecure, and QueueEntry::matchBlockAddr().

◆ deallocate()

void WriteQueueEntry::deallocate ( )

Mark this entry as free.

Definition at line 117 of file write_queue_entry.cc.

References QueueEntry::inService, and targets.

◆ getNumTargets()

int WriteQueueEntry::getNumTargets ( ) const
inline

Returns the current number of allocated targets.

Returns
The current number of allocated targets.

Definition at line 137 of file write_queue_entry.hh.

References targets.

Referenced by BaseCache::access(), WriteQueue::allocate(), and Cache::recvTimingSnoopReq().

◆ getTarget()

Target* WriteQueueEntry::getTarget ( )
inlineoverridevirtual

Returns a reference to the first target.

Returns
A pointer to the first target.

Implements QueueEntry.

Definition at line 150 of file write_queue_entry.hh.

References hasTargets(), and targets.

Referenced by BaseCache::access(), Cache::recvTimingSnoopReq(), and BaseCache::sendWriteQueuePacket().

◆ hasTargets()

bool WriteQueueEntry::hasTargets ( ) const
inline

Returns true if there are targets left.

Returns
true if there are targets

Definition at line 144 of file write_queue_entry.hh.

References targets.

Referenced by conflictAddr(), getTarget(), and matchBlockAddr().

◆ matchBlockAddr() [1/2]

bool WriteQueueEntry::matchBlockAddr ( const Addr  addr,
const bool  is_secure 
) const
overridevirtual

Check if entry corresponds to the one being looked for.

Parameters
addrAddress to match against.
is_secureWhether the target should be in secure space or not.
Returns
True if entry matches given information.

Implements QueueEntry.

Definition at line 144 of file write_queue_entry.cc.

References addr, QueueEntry::blkAddr, hasTargets(), and QueueEntry::isSecure.

◆ matchBlockAddr() [2/2]

bool WriteQueueEntry::matchBlockAddr ( const PacketPtr  pkt) const
overridevirtual

Check if entry contains a packet that corresponds to the one being looked for.

Parameters
pktThe packet to search for.
Returns
True if any of its targets' packets matches the given one.

Implements QueueEntry.

Definition at line 151 of file write_queue_entry.cc.

References QueueEntry::blkAddr, QueueEntry::blkSize, hasTargets(), QueueEntry::isSecure, and Packet::matchBlockAddr().

◆ popTarget()

void WriteQueueEntry::popTarget ( )
inline

Pop first target.

Definition at line 159 of file write_queue_entry.hh.

References targets.

Referenced by WriteQueue::markInService().

◆ print() [1/2]

std::string WriteQueueEntry::print ( ) const

A no-args wrapper of print(std::ostream...) meant to be invoked from DPRINTFs avoiding string overheads in fast mode.

Returns
string with mshr fields

Definition at line 179 of file write_queue_entry.cc.

◆ print() [2/2]

void WriteQueueEntry::print ( std::ostream &  os,
int  verbosity = 0,
const std::string &  prefix = "" 
) const
overridevirtual

◆ sendPacket()

bool WriteQueueEntry::sendPacket ( BaseCache cache)
overridevirtual

Send this queue entry as a downstream packet, with the exact behaviour depending on the specific entry type.

Implements QueueEntry.

Definition at line 138 of file write_queue_entry.cc.

References BaseCache::sendWriteQueuePacket().

◆ trySatisfyFunctional()

bool WriteQueueEntry::trySatisfyFunctional ( PacketPtr  pkt)

Friends And Related Function Documentation

◆ Queue

template<typename Entry >
friend class Queue
friend

Consider the queues friends to avoid making everything public.

Definition at line 72 of file write_queue_entry.hh.

◆ WriteQueue

friend class WriteQueue
friend

Definition at line 73 of file write_queue_entry.hh.

Member Data Documentation

◆ allocIter

Iterator WriteQueueEntry::allocIter
private

Pointer to this entry on the allocated list.

See also
MissQueue, WriteQueue::allocatedList

Definition at line 106 of file write_queue_entry.hh.

Referenced by WriteQueue::allocate().

◆ readyIter

Iterator WriteQueueEntry::readyIter
private

Pointer to this entry on the ready list.

See also
MissQueue, WriteQueue::readyList

Definition at line 100 of file write_queue_entry.hh.

Referenced by WriteQueue::allocate().

◆ targets

TargetList WriteQueueEntry::targets
private

List of all requests that match the address.

Definition at line 109 of file write_queue_entry.hh.

Referenced by allocate(), deallocate(), getNumTargets(), getTarget(), hasTargets(), popTarget(), print(), and trySatisfyFunctional().


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

Generated on Wed Sep 30 2020 14:02:34 for gem5 by doxygen 1.8.17