gem5
v19.0.0.0
|
#include <MessageBuffer.hh>
Public Types | |
typedef MessageBufferParams | Params |
![]() | |
typedef SimObjectParams | Params |
Public Member Functions | |
MessageBuffer (const Params *p) | |
void | reanalyzeMessages (Addr addr, Tick current_time) |
void | reanalyzeAllMessages (Tick current_time) |
void | stallMessage (Addr addr, Tick current_time) |
bool | isReady (Tick current_time) const |
void | delayHead (Tick current_time, Tick delta) |
bool | areNSlotsAvailable (unsigned int n, Tick curTime) |
int | getPriority () |
void | setPriority (int rank) |
void | setConsumer (Consumer *consumer) |
Consumer * | getConsumer () |
bool | getOrdered () |
const Message * | peek () const |
Function for extracting the message at the head of the message queue. More... | |
const MsgPtr & | peekMsgPtr () const |
void | enqueue (MsgPtr message, Tick curTime, Tick delta) |
Tick | dequeue (Tick current_time, bool decrement_messages=true) |
Updates the delay cycles of the message at the head of the queue, removes it from the queue and returns its total delay. More... | |
void | registerDequeueCallback (std::function< void()> callback) |
void | unregisterDequeueCallback () |
void | recycle (Tick current_time, Tick recycle_latency) |
bool | isEmpty () const |
bool | isStallMapEmpty () |
unsigned int | getStallMapSize () |
unsigned int | getSize (Tick curTime) |
void | clear () |
void | print (std::ostream &out) const |
void | clearStats () |
void | setIncomingLink (int link_id) |
void | setVnet (int net) |
Port & | getPort (const std::string &, PortID idx=InvalidPortID) override |
Get a port with a given name and index. More... | |
void | regStats () override |
Callback to set stat parameters. More... | |
uint32_t | functionalWrite (Packet *pkt) |
![]() | |
const Params * | params () const |
SimObject (const Params *_params) | |
virtual | ~SimObject () |
virtual const std::string | name () const |
virtual void | init () |
init() is called after all C++ SimObjects have been created and all ports are connected. More... | |
virtual void | loadState (CheckpointIn &cp) |
loadState() is called on each SimObject when restoring from a checkpoint. More... | |
virtual void | initState () |
initState() is called on each SimObject when not restoring from a checkpoint. More... | |
virtual void | regProbePoints () |
Register probe points for this object. More... | |
virtual void | regProbeListeners () |
Register probe listeners for this object. More... | |
ProbeManager * | getProbeManager () |
Get the probe manager for this object. More... | |
virtual void | startup () |
startup() is the final initialization call before simulation. More... | |
DrainState | drain () override |
Provide a default implementation of the drain interface for objects that don't need draining. More... | |
virtual void | memWriteback () |
Write back dirty buffers to memory using functional writes. More... | |
virtual void | memInvalidate () |
Invalidate the contents of memory buffers. More... | |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
![]() | |
EventManager (EventManager &em) | |
EventManager (EventManager *em) | |
EventManager (EventQueue *eq) | |
EventQueue * | eventQueue () const |
void | schedule (Event &event, Tick when) |
void | deschedule (Event &event) |
void | reschedule (Event &event, Tick when, bool always=false) |
void | schedule (Event *event, Tick when) |
void | deschedule (Event *event) |
void | reschedule (Event *event, Tick when, bool always=false) |
void | wakeupEventQueue (Tick when=(Tick) -1) |
void | setCurTick (Tick newVal) |
![]() | |
Serializable () | |
virtual | ~Serializable () |
void | serializeSection (CheckpointOut &cp, const char *name) const |
Serialize an object into a new section. More... | |
void | serializeSection (CheckpointOut &cp, const std::string &name) const |
void | unserializeSection (CheckpointIn &cp, const char *name) |
Unserialize an a child object. More... | |
void | unserializeSection (CheckpointIn &cp, const std::string &name) |
![]() | |
DrainState | drainState () const |
Return the current drain state of an object. More... | |
virtual void | notifyFork () |
Notify a child process of a fork. More... | |
![]() | |
Group ()=delete | |
Group (const Group &)=delete | |
Group & | operator= (const Group &)=delete |
Group (Group *parent, const char *name=nullptr) | |
Construct a new statistics group. More... | |
virtual | ~Group () |
virtual void | resetStats () |
Callback to reset stats. More... | |
virtual void | preDumpStats () |
Callback before stats are dumped. More... | |
void | addStat (Stats::Info *info) |
Register a stat with this group. More... | |
const std::map< std::string, Group * > & | getStatGroups () const |
Get all child groups associated with this object. More... | |
const std::vector< Info * > & | getStats () const |
Get all stats associated with this object. More... | |
void | addStatGroup (const char *name, Group *block) |
Add a stat block as a child of this block. More... | |
Private Types | |
typedef std::map< Addr, std::list< MsgPtr > > | StallMsgMapType |
Private Member Functions | |
void | reanalyzeList (std::list< MsgPtr > &, Tick) |
Private Attributes | |
Consumer * | m_consumer |
Consumer to signal a wakeup(), can be NULL. More... | |
std::vector< MsgPtr > | m_prio_heap |
std::function< void()> | m_dequeue_callback |
StallMsgMapType | m_stall_msg_map |
A map from line addresses to lists of stalled messages for that line. More... | |
int | m_stall_map_size |
Current size of the stall map. More... | |
const unsigned int | m_max_size |
The maximum capacity. More... | |
Tick | m_time_last_time_size_checked |
unsigned int | m_size_last_time_size_checked |
Tick | m_time_last_time_enqueue |
Tick | m_time_last_time_pop |
Tick | m_last_arrival_time |
unsigned int | m_size_at_cycle_start |
unsigned int | m_stalled_at_cycle_start |
unsigned int | m_msgs_this_cycle |
Stats::Scalar | m_not_avail_count |
uint64_t | m_msg_counter |
int | m_priority_rank |
const bool | m_strict_fifo |
const bool | m_randomization |
int | m_input_link_id |
int | m_vnet_id |
Stats::Average | m_buf_msgs |
Stats::Average | m_stall_time |
Stats::Scalar | m_stall_count |
Stats::Formula | m_occupancy |
Additional Inherited Members | |
![]() | |
static void | serializeAll (CheckpointOut &cp) |
Serialize all SimObjects in the system. More... | |
static SimObject * | find (const char *name) |
Find the SimObject with the given name and return a pointer to it. More... | |
![]() | |
static const std::string & | currentSection () |
Get the fully-qualified name of the active section. More... | |
static void | serializeAll (const std::string &cpt_dir) |
static void | unserializeGlobals (CheckpointIn &cp) |
![]() | |
static int | ckptCount = 0 |
static int | ckptMaxCount = 0 |
static int | ckptPrevCount = -1 |
![]() | |
Drainable () | |
virtual | ~Drainable () |
virtual void | drainResume () |
Resume execution after a successful drain. More... | |
void | signalDrainDone () const |
Signal that an object is drained. More... | |
![]() | |
const SimObjectParams * | _params |
Cached copy of the object parameters. More... | |
![]() | |
EventQueue * | eventq |
A pointer to this object's event queue. More... | |
Definition at line 55 of file MessageBuffer.hh.
typedef MessageBufferParams MessageBuffer::Params |
Definition at line 58 of file MessageBuffer.hh.
|
private |
Definition at line 152 of file MessageBuffer.hh.
MessageBuffer::MessageBuffer | ( | const Params * | p | ) |
Definition at line 43 of file MessageBuffer.cc.
References m_buf_msgs, m_consumer, m_dequeue_callback, m_input_link_id, m_msg_counter, m_msgs_this_cycle, m_priority_rank, m_size_at_cycle_start, m_size_last_time_size_checked, m_stall_msg_map, m_stall_time, m_stalled_at_cycle_start, and m_vnet_id.
Referenced by functionalWrite().
bool MessageBuffer::areNSlotsAvailable | ( | unsigned int | n, |
Tick | curTime | ||
) |
Definition at line 80 of file MessageBuffer.cc.
References DPRINTF, m_max_size, m_msgs_this_cycle, m_not_avail_count, m_prio_heap, m_size_at_cycle_start, m_stall_map_size, m_stalled_at_cycle_start, m_time_last_time_enqueue, and m_time_last_time_pop.
Referenced by delayHead(), GPUCoalescer::getRequestStatus(), GPUCoalescer::insertRequest(), and Throttle::operateVnet().
void MessageBuffer::clear | ( | ) |
Definition at line 277 of file MessageBuffer.cc.
References m_msg_counter, m_msgs_this_cycle, m_prio_heap, m_size_at_cycle_start, m_stalled_at_cycle_start, m_time_last_time_enqueue, and m_time_last_time_pop.
Referenced by getStallMapSize().
|
inline |
Definition at line 120 of file MessageBuffer.hh.
References m_msg_counter, and m_not_avail_count.
Definition at line 69 of file MessageBuffer.hh.
References areNSlotsAvailable(), enqueue(), ArmISA::m, m_prio_heap, and ArmISA::n.
Updates the delay cycles of the message at the head of the queue, removes it from the queue and returns its total delay.
Definition at line 226 of file MessageBuffer.cc.
References curTick(), DPRINTF, isReady(), m_buf_msgs, m_dequeue_callback, m_prio_heap, m_size_at_cycle_start, m_stall_map_size, m_stall_time, m_stalled_at_cycle_start, and m_time_last_time_pop.
Referenced by PerfectSwitch::operateMessageBuffer(), Throttle::operateVnet(), peekMsgPtr(), stallMessage(), and NetworkInterface::wakeup().
Definition at line 150 of file MessageBuffer.cc.
References DPRINTF, Message::getLastEnqueueTime(), RubySystem::getRandomization(), RubySystem::getWarmupEnabled(), m_buf_msgs, m_consumer, m_last_arrival_time, m_msg_counter, m_msgs_this_cycle, m_prio_heap, m_randomization, m_strict_fifo, m_time_last_time_enqueue, m_vnet_id, SimObject::name(), panic, random_time(), Consumer::scheduleEventAbsolute(), Message::setLastEnqueueTime(), Message::setMsgCounter(), Consumer::storeEventInfo(), and Message::updateDelayedTicks().
Referenced by delayHead(), VIPERCoalescer::invL1(), VIPERCoalescer::invwbL1(), DMASequencer::issueNext(), Sequencer::issueRequest(), GPUCoalescer::issueRequest(), DMASequencer::makeRequest(), Throttle::operateVnet(), peekMsgPtr(), AbstractController::recvTimingResp(), and VIPERCoalescer::wbL1().
uint32_t MessageBuffer::functionalWrite | ( | Packet * | pkt | ) |
Definition at line 441 of file MessageBuffer.cc.
References Message::functionalWrite(), ArmISA::i, m_prio_heap, m_stall_msg_map, and MessageBuffer().
Referenced by getPort().
|
inline |
Definition at line 92 of file MessageBuffer.hh.
References m_consumer.
|
inline |
Definition at line 94 of file MessageBuffer.hh.
References m_strict_fifo, and peek().
|
inlineoverridevirtual |
Get a port with a given name and index.
This is used at binding time and returns a reference to a protocol-agnostic port.
if_name | Port name |
idx | Index in the case of a VectorPort |
Reimplemented from SimObject.
Definition at line 126 of file MessageBuffer.hh.
References functionalWrite(), RubyDummyPort::instance(), reanalyzeList(), and regStats().
|
inline |
Definition at line 79 of file MessageBuffer.hh.
References m_priority_rank.
unsigned int MessageBuffer::getSize | ( | Tick | curTime | ) |
Definition at line 69 of file MessageBuffer.cc.
References m_prio_heap, m_size_last_time_size_checked, and m_time_last_time_size_checked.
Referenced by getStallMapSize().
|
inline |
Definition at line 114 of file MessageBuffer.hh.
References clear(), getSize(), m_stall_msg_map, and print().
|
inline |
Definition at line 112 of file MessageBuffer.hh.
References m_prio_heap.
bool MessageBuffer::isReady | ( | Tick | current_time | ) | const |
Definition at line 399 of file MessageBuffer.cc.
References m_prio_heap.
Referenced by dequeue(), PerfectSwitch::operateMessageBuffer(), Throttle::operateVnet(), recycle(), stallMessage(), and NetworkInterface::wakeup().
|
inline |
Definition at line 113 of file MessageBuffer.hh.
References m_stall_msg_map.
const Message * MessageBuffer::peek | ( | ) | const |
Function for extracting the message at the head of the message queue.
The function assumes that the queue is nonempty.
Definition at line 127 of file MessageBuffer.cc.
References DPRINTF, and m_prio_heap.
Referenced by getOrdered().
|
inline |
Definition at line 100 of file MessageBuffer.hh.
References dequeue(), enqueue(), m_prio_heap, recycle(), registerDequeueCallback(), and unregisterDequeueCallback().
Referenced by PerfectSwitch::operateMessageBuffer(), Throttle::operateVnet(), and NetworkInterface::wakeup().
void MessageBuffer::print | ( | std::ostream & | out | ) | const |
Definition at line 386 of file MessageBuffer.cc.
References ccprintf(), m_consumer, m_prio_heap, and SimObject::name().
Referenced by getStallMapSize(), and operator<<().
void MessageBuffer::reanalyzeAllMessages | ( | Tick | current_time | ) |
Definition at line 344 of file MessageBuffer.cc.
References DPRINTF, m_stall_map_size, m_stall_msg_map, and reanalyzeList().
Definition at line 306 of file MessageBuffer.cc.
References DPRINTF, ArmISA::m, m_consumer, m_prio_heap, and Consumer::scheduleEventAbsolute().
Referenced by getPort(), reanalyzeAllMessages(), and reanalyzeMessages().
Definition at line 326 of file MessageBuffer.cc.
References addr, DPRINTF, m_stall_map_size, m_stall_msg_map, and reanalyzeList().
Definition at line 290 of file MessageBuffer.cc.
References DPRINTF, isReady(), m_consumer, m_prio_heap, and Consumer::scheduleEventAbsolute().
Referenced by peekMsgPtr().
void MessageBuffer::registerDequeueCallback | ( | std::function< void()> | callback | ) |
Definition at line 265 of file MessageBuffer.cc.
References m_dequeue_callback.
Referenced by peekMsgPtr().
|
overridevirtual |
Callback to set stat parameters.
This callback is typically used for complex stats (e.g., distributions) that need parameters in addition to a name and a description. Stat names and descriptions should typically be set from the constructor usingo from the constructor using the ADD_STAT macro.
Reimplemented from Stats::Group.
Definition at line 406 of file MessageBuffer.cc.
References Stats::DataWrap< Derived, InfoProxyType >::desc(), Stats::DataWrap< Derived, InfoProxyType >::flags(), m_buf_msgs, m_max_size, m_not_avail_count, m_occupancy, m_stall_count, m_stall_time, SimObject::name(), Stats::DataWrap< Derived, InfoProxyType >::name(), and Stats::nozero.
Referenced by getPort().
|
inline |
Definition at line 81 of file MessageBuffer.hh.
References DPRINTF, fatal, and m_consumer.
Referenced by Throttle::addLinks().
|
inline |
Definition at line 122 of file MessageBuffer.hh.
References m_input_link_id.
|
inline |
Definition at line 80 of file MessageBuffer.hh.
References m_priority_rank.
|
inline |
Definition at line 123 of file MessageBuffer.hh.
References m_vnet_id.
Definition at line 364 of file MessageBuffer.cc.
References addr, dequeue(), DPRINTF, getOffset(), isReady(), m_prio_heap, m_stall_count, m_stall_map_size, and m_stall_msg_map.
void MessageBuffer::unregisterDequeueCallback | ( | ) |
Definition at line 271 of file MessageBuffer.cc.
References m_dequeue_callback.
Referenced by peekMsgPtr().
|
private |
Definition at line 208 of file MessageBuffer.hh.
Referenced by dequeue(), enqueue(), MessageBuffer(), and regStats().
|
private |
Consumer to signal a wakeup(), can be NULL.
Definition at line 145 of file MessageBuffer.hh.
Referenced by enqueue(), getConsumer(), MessageBuffer(), print(), reanalyzeList(), recycle(), and setConsumer().
|
private |
Definition at line 148 of file MessageBuffer.hh.
Referenced by dequeue(), MessageBuffer(), registerDequeueCallback(), and unregisterDequeueCallback().
|
private |
Definition at line 205 of file MessageBuffer.hh.
Referenced by MessageBuffer(), and setIncomingLink().
|
private |
Definition at line 192 of file MessageBuffer.hh.
Referenced by enqueue().
|
private |
The maximum capacity.
For finite-sized buffers, m_max_size stores a number greater than 0 to indicate the maximum allowed number of messages in the buffer at any time. To get infinitely-sized buffers, set buffer size: m_max_size = 0
Definition at line 183 of file MessageBuffer.hh.
Referenced by areNSlotsAvailable(), and regStats().
|
private |
Definition at line 200 of file MessageBuffer.hh.
Referenced by clear(), clearStats(), enqueue(), and MessageBuffer().
|
private |
Definition at line 196 of file MessageBuffer.hh.
Referenced by areNSlotsAvailable(), clear(), enqueue(), and MessageBuffer().
|
private |
Definition at line 198 of file MessageBuffer.hh.
Referenced by areNSlotsAvailable(), clearStats(), and regStats().
|
private |
Definition at line 211 of file MessageBuffer.hh.
Referenced by regStats().
|
private |
Definition at line 146 of file MessageBuffer.hh.
Referenced by areNSlotsAvailable(), clear(), delayHead(), dequeue(), enqueue(), functionalWrite(), getSize(), isEmpty(), isReady(), peek(), peekMsgPtr(), print(), reanalyzeList(), recycle(), and stallMessage().
|
private |
Definition at line 201 of file MessageBuffer.hh.
Referenced by getPriority(), MessageBuffer(), and setPriority().
|
private |
Definition at line 203 of file MessageBuffer.hh.
Referenced by enqueue().
|
private |
Definition at line 194 of file MessageBuffer.hh.
Referenced by areNSlotsAvailable(), clear(), dequeue(), and MessageBuffer().
|
private |
Definition at line 186 of file MessageBuffer.hh.
Referenced by getSize(), and MessageBuffer().
|
private |
Definition at line 210 of file MessageBuffer.hh.
Referenced by regStats(), and stallMessage().
|
private |
Current size of the stall map.
Track the number of messages held in stall map lists. This is used to ensure that if the buffer is finite-sized, it blocks further requests when the m_prio_heap and m_stall_msg_map contain m_max_size messages.
Definition at line 175 of file MessageBuffer.hh.
Referenced by areNSlotsAvailable(), dequeue(), reanalyzeAllMessages(), reanalyzeMessages(), and stallMessage().
|
private |
A map from line addresses to lists of stalled messages for that line.
If this buffer allows the receiver to stall messages, on a stall request, the stalled message is removed from the m_prio_heap and placed in the m_stall_msg_map. Messages are held there until the receiver requests they be reanalyzed, at which point they are moved back to m_prio_heap.
NOTE: The stall map holds messages in the order in which they were initially received, and when a line is unblocked, the messages are moved back to the m_prio_heap in the same order. This prevents starving older requests with younger ones.
Definition at line 167 of file MessageBuffer.hh.
Referenced by functionalWrite(), getStallMapSize(), isStallMapEmpty(), MessageBuffer(), reanalyzeAllMessages(), reanalyzeMessages(), and stallMessage().
|
private |
Definition at line 209 of file MessageBuffer.hh.
Referenced by dequeue(), MessageBuffer(), and regStats().
|
private |
Definition at line 195 of file MessageBuffer.hh.
Referenced by areNSlotsAvailable(), clear(), dequeue(), and MessageBuffer().
|
private |
Definition at line 202 of file MessageBuffer.hh.
Referenced by enqueue(), and getOrdered().
|
private |
Definition at line 190 of file MessageBuffer.hh.
Referenced by areNSlotsAvailable(), clear(), and enqueue().
|
private |
Definition at line 191 of file MessageBuffer.hh.
Referenced by areNSlotsAvailable(), clear(), and dequeue().
|
private |
Definition at line 185 of file MessageBuffer.hh.
Referenced by getSize().
|
private |
Definition at line 206 of file MessageBuffer.hh.
Referenced by enqueue(), MessageBuffer(), and setVnet().