|
gem5
|
Implementation of a vector of stats. More...
#include <statistics.hh>
Public Types | |
| typedef Stor | Storage |
| typedef Stor::Params | Params |
| typedef ScalarProxy< Derived > | Proxy |
| Proxy type. More... | |
Public Types inherited from Stats::DataWrapVec< Derived, VectorInfoProxy > | |
| typedef VectorInfoProxy< Derived > | Info |
Public Types inherited from Stats::DataWrap< Derived, VectorInfoProxy > | |
| typedef VectorInfoProxy< Derived > | Info |
Public Member Functions | |
| void | value (VCounter &vec) const |
| void | result (VResult &vec) const |
| Copy the values to a local vector and return a reference to it. More... | |
| Result | total () const |
| Return a total of all entries in this vector. More... | |
| size_type | size () const |
| bool | zero () const |
| bool | check () const |
| VectorBase () | |
| ~VectorBase () | |
| Derived & | init (size_type size) |
| Set this vector to have the given size. More... | |
| Proxy | operator[] (off_type index) |
| Return a reference (ScalarProxy) to the stat at the given index. More... | |
Public Member Functions inherited from Stats::DataWrapVec< Derived, VectorInfoProxy > | |
| DataWrapVec () | |
| DataWrapVec (const DataWrapVec &ref) | |
| void | operator= (const DataWrapVec &) |
| Derived & | subname (off_type index, const std::string &name) |
| Set the subfield name for the given index, and marks this stat to print at the end of simulation. More... | |
| Derived & | subdesc (off_type index, const std::string &desc) |
| Set the subfield description for the given index and marks this stat to print at the end of simulation. More... | |
| void | prepare () |
| void | reset () |
Public Member Functions inherited from Stats::DataWrap< Derived, VectorInfoProxy > | |
| const Info * | info () const |
| DataWrap () | |
| Derived & | 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 |
| Derived & | 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 |
| Derived & | desc (const std::string &_desc) |
| Set the description and marks this stat to print at the end of simulation. More... | |
| Derived & | precision (int _precision) |
| Set the precision and marks this stat to print at the end of simulation. More... | |
| Derived & | flags (Flags _flags) |
| Set the flags and marks this stat to print at the end of simulation. More... | |
| Derived & | 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 | |
| Storage * | data (off_type index) |
| Retrieve the storage. More... | |
| const Storage * | data (off_type index) const |
| Retrieve a const pointer to the storage. More... | |
| void | doInit (size_type s) |
Protected Member Functions inherited from Stats::DataWrap< Derived, VectorInfoProxy > | |
| Derived & | 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... | |
Protected Attributes | |
| Storage * | storage |
| The storage of this stat. More... | |
| size_type | _size |
Friends | |
| class | ScalarProxy< Derived > |
| class | DataWrapVec< Derived, VectorInfoProxy > |
Implementation of a vector of stats.
The type of stat is determined by the Storage class.
Definition at line 996 of file statistics.hh.
| typedef Stor::Params Stats::VectorBase< Derived, Stor >::Params |
Definition at line 1000 of file statistics.hh.
| typedef ScalarProxy<Derived> Stats::VectorBase< Derived, Stor >::Proxy |
Proxy type.
Definition at line 1003 of file statistics.hh.
| typedef Stor Stats::VectorBase< Derived, Stor >::Storage |
Definition at line 999 of file statistics.hh.
|
inline |
Definition at line 1098 of file statistics.hh.
|
inline |
Definition at line 1102 of file statistics.hh.
|
inline |
Definition at line 1092 of file statistics.hh.
|
inlineprotected |
Retrieve the storage.
| index | The vector index to access. |
Definition at line 1018 of file statistics.hh.
Referenced by Stats::VectorBase< Vector, StatStor >::result(), Stats::VectorBase< Vector, StatStor >::total(), Stats::VectorBase< Vector, StatStor >::value(), Stats::VectorBase< Vector, StatStor >::zero(), and Stats::VectorBase< Vector, StatStor >::~VectorBase().
|
inlineprotected |
Retrieve a const pointer to the storage.
| index | The vector index to access. |
Definition at line 1025 of file statistics.hh.
|
inlineprotected |
Definition at line 1028 of file statistics.hh.
Referenced by Stats::VectorBase< Vector, StatStor >::init().
|
inline |
Set this vector to have the given size.
| size | The new size. |
Definition at line 1118 of file statistics.hh.
Referenced by ExecStage::regStats(), GarnetNetwork::regStats(), CacheMemory::regStats(), BaseSimpleCPU::regStats(), BaseTags::regStats(), FALRU::regStats(), CopyEngine::regStats(), ClockedObject::regStats(), AbstractMemory::regStats(), ComputeUnit::regStats(), BaseCache::regStats(), BaseXBar::regStats(), ArmISA::TableWalker::regStats(), and DRAMCtrl::regStats().
|
inline |
Return a reference (ScalarProxy) to the stat at the given index.
| index | The vector index to access. |
Definition at line 1131 of file statistics.hh.
|
inline |
Copy the values to a local vector and return a reference to it.
Definition at line 1057 of file statistics.hh.
|
inline |
Definition at line 1080 of file statistics.hh.
Referenced by Stats::VectorBase< Vector, StatStor >::operator[](), Stats::VectorBase< Vector, StatStor >::result(), Stats::VectorBase< Vector, StatStor >::total(), Stats::VectorBase< Vector, StatStor >::value(), and Stats::VectorBase< Vector, StatStor >::zero().
|
inline |
Return a total of all entries in this vector.
Definition at line 1069 of file statistics.hh.
Referenced by ClockedObject::pwrStateWeights(), and Stats::VectorBase< Vector, StatStor >::total().
|
inline |
Definition at line 1045 of file statistics.hh.
Referenced by ClockedObject::pwrStateWeights().
|
inline |
Definition at line 1083 of file statistics.hh.
|
friend |
Definition at line 1005 of file statistics.hh.
|
friend |
Definition at line 1004 of file statistics.hh.
|
protected |
Definition at line 1010 of file statistics.hh.
Referenced by Stats::VectorBase< Vector, StatStor >::doInit(), Stats::VectorBase< Vector, StatStor >::size(), and Stats::VectorBase< Vector, StatStor >::~VectorBase().
|
protected |
The storage of this stat.
Definition at line 1009 of file statistics.hh.
Referenced by Stats::VectorBase< Vector, StatStor >::check(), Stats::VectorBase< Vector, StatStor >::data(), Stats::VectorBase< Vector, StatStor >::doInit(), and Stats::VectorBase< Vector, StatStor >::~VectorBase().