|
gem5
v19.0.0.0
|
#include <base.hh>
Public Member Functions | |
| StatGroup (Stats::Group *parent) | |
Public Member Functions inherited from Stats::Group | |
| 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 | regStats () |
| Callback to set stat parameters. More... | |
| 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... | |
Public Attributes | |
| Stats::Scalar | numSuppressed |
| Count the number of dropped requests. More... | |
| Stats::Scalar | numPackets |
| Count the number of generated packets. More... | |
| Stats::Scalar | numRetries |
| Count the number of retries. More... | |
| Stats::Scalar | retryTicks |
| Count the time incurred from back-pressure. More... | |
| Stats::Scalar | bytesRead |
| Count the number of bytes read. More... | |
| Stats::Scalar | bytesWritten |
| Count the number of bytes written. More... | |
| Stats::Scalar | totalReadLatency |
| Total num of ticks read reqs took to complete. More... | |
| Stats::Scalar | totalWriteLatency |
| Total num of ticks write reqs took to complete. More... | |
| Stats::Scalar | totalReads |
| Count the number reads. More... | |
| Stats::Scalar | totalWrites |
| Count the number writes. More... | |
| Stats::Formula | avgReadLatency |
| Avg num of ticks each read req took to complete. More... | |
| Stats::Formula | avgWriteLatency |
| Avg num of ticks each write reqs took to complete. More... | |
| Stats::Formula | readBW |
| Read bandwidth in bytes/s. More... | |
| Stats::Formula | writeBW |
| Write bandwidth in bytes/s. More... | |
| BaseTrafficGen::StatGroup::StatGroup | ( | Stats::Group * | parent | ) |
| Stats::Formula BaseTrafficGen::StatGroup::avgReadLatency |
| Stats::Formula BaseTrafficGen::StatGroup::avgWriteLatency |
| Stats::Scalar BaseTrafficGen::StatGroup::bytesRead |
| Stats::Scalar BaseTrafficGen::StatGroup::bytesWritten |
| Stats::Scalar BaseTrafficGen::StatGroup::numPackets |
Count the number of generated packets.
Definition at line 205 of file base.hh.
Referenced by BaseTrafficGen::update().
| Stats::Scalar BaseTrafficGen::StatGroup::numRetries |
Count the number of retries.
Definition at line 208 of file base.hh.
Referenced by BaseTrafficGen::recvReqRetry().
| Stats::Scalar BaseTrafficGen::StatGroup::numSuppressed |
Count the number of dropped requests.
Definition at line 202 of file base.hh.
Referenced by BaseTrafficGen::update().
| Stats::Formula BaseTrafficGen::StatGroup::readBW |
| Stats::Scalar BaseTrafficGen::StatGroup::retryTicks |
Count the time incurred from back-pressure.
Definition at line 211 of file base.hh.
Referenced by BaseTrafficGen::retryReq().
| Stats::Scalar BaseTrafficGen::StatGroup::totalReadLatency |
| Stats::Scalar BaseTrafficGen::StatGroup::totalReads |
| Stats::Scalar BaseTrafficGen::StatGroup::totalWriteLatency |
| Stats::Scalar BaseTrafficGen::StatGroup::totalWrites |
| Stats::Formula BaseTrafficGen::StatGroup::writeBW |