gem5  v20.0.0.3
Public Member Functions | Protected Types | Protected Attributes | List of all members
CallbackQueue Class Reference

#include <callback.hh>

Public Member Functions

 ~CallbackQueue ()
 
std::string name () const
 
void add (Callback *callback)
 Add a callback to the end of the queue. More...
 
template<class T , void(T::*)() F>
void add (T *obj)
 
template<class T , void(T::*)() F>
void add (T &obj)
 
bool empty () const
 Find out if there are any callbacks in the queue. More...
 
void process ()
 process all callbacks More...
 
void clear ()
 clear the callback queue More...
 

Protected Types

typedef std::list< Callback * > queue
 Simple typedef for the data structure that stores all of the callbacks. More...
 

Protected Attributes

queue callbacks
 List of all callbacks. More...
 

Detailed Description

Definition at line 82 of file callback.hh.

Member Typedef Documentation

◆ queue

typedef std::list<Callback *> CallbackQueue::queue
protected

Simple typedef for the data structure that stores all of the callbacks.

Definition at line 89 of file callback.hh.

Constructor & Destructor Documentation

◆ ~CallbackQueue()

CallbackQueue::~CallbackQueue ( )

Definition at line 31 of file callback.cc.

References callbacks, and ArmISA::i.

Member Function Documentation

◆ add() [1/3]

void CallbackQueue::add ( Callback callback)
inline

Add a callback to the end of the queue.

Parameters
callbackthe callback to be added to the queue

Definition at line 105 of file callback.hh.

Referenced by Stats::registerDumpCallback(), registerExitCallback(), Stats::registerResetCallback(), and TEST().

◆ add() [2/3]

template<class T , void(T::*)() F>
void CallbackQueue::add ( T *  obj)
inline

Definition at line 112 of file callback.hh.

◆ add() [3/3]

template<class T , void(T::*)() F>
void CallbackQueue::add ( T &  obj)
inline

Definition at line 119 of file callback.hh.

◆ clear()

void CallbackQueue::clear ( )
inline

clear the callback queue

Definition at line 148 of file callback.hh.

Referenced by doExitCleanup(), and TEST().

◆ empty()

bool CallbackQueue::empty ( ) const
inline

Find out if there are any callbacks in the queue.

Definition at line 127 of file callback.hh.

Referenced by TEST().

◆ name()

std::string CallbackQueue::name ( ) const
inline

Definition at line 98 of file callback.hh.

Referenced by TEST().

◆ process()

void CallbackQueue::process ( )
inline

process all callbacks

Definition at line 133 of file callback.hh.

References ArmISA::i.

Referenced by doExitCleanup(), Stats::processDumpQueue(), Stats::processResetQueue(), and TEST().

Member Data Documentation

◆ callbacks

queue CallbackQueue::callbacks
protected

List of all callbacks.

To be called in fifo order.

Definition at line 94 of file callback.hh.

Referenced by ~CallbackQueue().


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

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