gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Classes | Public Member Functions | Private Attributes | List of all members
Stats::AvgStor Class Reference

Templatized storage and interface to a per-tick average stat. More...

#include <statistics.hh>

Classes

struct  Params
 

Public Member Functions

 AvgStor (Info *info)
 Build and initializes this stat storage. More...
 
void set (Counter val)
 Set the current count to the one provided, update the total and last set values. More...
 
void inc (Counter val)
 Increment the current count by the provided value, calls set. More...
 
void dec (Counter val)
 Deccrement the current count by the provided value, calls set. More...
 
Counter value () const
 Return the current count. More...
 
Result result () const
 Return the current average. More...
 
bool zero () const
 
void prepare (Info *info)
 Prepare stat data for dumping or serialization. More...
 
void reset (Info *info)
 Reset stat value to default. More...
 

Private Attributes

Counter current
 The current count. More...
 
Tick lastReset
 The tick of the last reset. More...
 
Result total
 The total count for all tick. More...
 
Tick last
 The tick that current last changed. More...
 

Detailed Description

Templatized storage and interface to a per-tick average stat.

This keeps a current count and updates a total (count * ticks) when this count changes. This allows the quick calculation of a per tick count of the item being watched. This is good for keeping track of residencies in structures among other things.

Definition at line 556 of file statistics.hh.

Constructor & Destructor Documentation

◆ AvgStor()

Stats::AvgStor::AvgStor ( Info info)
inline

Build and initializes this stat storage.

Definition at line 575 of file statistics.hh.

Member Function Documentation

◆ dec()

void Stats::AvgStor::dec ( Counter  val)
inline

Deccrement the current count by the provided value, calls set.

Parameters
valThe amount to decrement.

Definition at line 602 of file statistics.hh.

References X86ISA::val.

◆ inc()

void Stats::AvgStor::inc ( Counter  val)
inline

Increment the current count by the provided value, calls set.

Parameters
valThe amount to increment.

Definition at line 596 of file statistics.hh.

References X86ISA::val.

◆ prepare()

void Stats::AvgStor::prepare ( Info info)
inline

Prepare stat data for dumping or serialization.

Definition at line 630 of file statistics.hh.

References curTick().

◆ reset()

void Stats::AvgStor::reset ( Info info)
inline

Reset stat value to default.

Definition at line 640 of file statistics.hh.

References curTick().

◆ result()

Result Stats::AvgStor::result ( ) const
inline

Return the current average.

Returns
The current average.

Definition at line 615 of file statistics.hh.

References curTick().

◆ set()

void Stats::AvgStor::set ( Counter  val)
inline

Set the current count to the one provided, update the total and last set values.

Parameters
valThe new count.

Definition at line 585 of file statistics.hh.

References curTick(), and X86ISA::val.

◆ value()

Counter Stats::AvgStor::value ( ) const
inline

Return the current count.

Returns
The current count.

Definition at line 608 of file statistics.hh.

◆ zero()

bool Stats::AvgStor::zero ( ) const
inline
Returns
true if zero value

Definition at line 624 of file statistics.hh.

Member Data Documentation

◆ current

Counter Stats::AvgStor::current
private

The current count.

Definition at line 560 of file statistics.hh.

◆ last

Tick Stats::AvgStor::last
mutableprivate

The tick that current last changed.

Definition at line 566 of file statistics.hh.

◆ lastReset

Tick Stats::AvgStor::lastReset
private

The tick of the last reset.

Definition at line 562 of file statistics.hh.

◆ total

Result Stats::AvgStor::total
mutableprivate

The total count for all tick.

Definition at line 564 of file statistics.hh.


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

Generated on Thu May 28 2020 16:22:26 for gem5 by doxygen 1.8.13