gem5
|
This is a simple scalar statistic, like a counter. More...
#include <statistics.hh>
Additional Inherited Members | |
Public Types inherited from Stats::ScalarBase< Scalar, StatStor > | |
typedef StatStor | Storage |
typedef StatStor::Params | Params |
Public Types inherited from Stats::DataWrap< Scalar, ScalarInfoProxy > | |
typedef ScalarInfoProxy< Scalar > | Info |
Public Member Functions inherited from Stats::ScalarBase< Scalar, StatStor > | |
Counter | value () const |
Return the current value of this stat as its base type. More... | |
Counter | value () |
ScalarBase () | |
void | operator++ () |
Increment the stat by 1. More... | |
void | operator++ (int) |
Increment the stat by 1. More... | |
void | operator-- () |
Decrement the stat by 1. More... | |
void | operator-- (int) |
Decrement the stat by 1. More... | |
void | operator= (const U &v) |
Set the data value to the given value. More... | |
void | operator+= (const U &v) |
Increment the stat by the given value. More... | |
void | operator-= (const U &v) |
Decrement the stat by the given value. More... | |
size_type | size () const |
Return the number of elements, always 1 for a scalar. More... | |
Result | result () |
Result | total () |
bool | zero () |
void | reset () |
void | prepare () |
Public Member Functions inherited from Stats::DataWrap< Scalar, ScalarInfoProxy > | |
const Info * | info () const |
DataWrap () | |
Scalar & | name (const std::string &name) |
Set the name and marks this stat to print at the end of simulation. More... | |
const std::string & | name () const |
Scalar & | setSeparator (const std::string &_sep) |
Set the character(s) used between the name and vector number on vectors, dist, etc. More... | |
const std::string & | setSeparator () const |
Scalar & | desc (const std::string &_desc) |
Set the description and marks this stat to print at the end of simulation. More... | |
Scalar & | precision (int _precision) |
Set the precision and marks this stat to print at the end of simulation. More... | |
Scalar & | flags (Flags _flags) |
Set the flags and marks this stat to print at the end of simulation. More... | |
Scalar & | prereq (const Stat &prereq) |
Set the prerequisite stat and marks this stat to print at the end of simulation. More... | |
Public Member Functions inherited from Stats::InfoAccess | |
void | reset () |
Reset the stat to the default state. More... | |
bool | zero () const |
bool | check () const |
Check that this stat has been set up properly and is ready for use. More... | |
Protected Member Functions inherited from Stats::ScalarBase< Scalar, StatStor > | |
char storage[sizeof(Storage)] | __attribute__ ((aligned(8))) |
The storage of this stat. More... | |
Storage * | data () |
Retrieve the storage. More... | |
const Storage * | data () const |
Retrieve a const pointer to the storage. More... | |
void | doInit () |
Protected Member Functions inherited from Stats::DataWrap< Scalar, ScalarInfoProxy > | |
Scalar & | self () |
Info * | info () |
DataWrap (const DataWrap &stat) | |
Copy constructor, copies are not allowed. More... | |
void | operator= (const DataWrap &) |
Can't copy stats. More... | |
Protected Member Functions inherited from Stats::InfoAccess | |
void | setInfo (Info *info) |
Set up an info class for this statistic. More... | |
void | setParams (const StorageParams *params) |
Save Storage class parameters if any. More... | |
void | setInit () |
Save Storage class parameters if any. More... | |
Info * | info () |
Grab the information class for this statistic. More... | |
const Info * | info () const |
Grab the information class for this statistic. More... | |
This is a simple scalar statistic, like a counter.
Definition at line 2475 of file statistics.hh.