31 #ifndef __BASE_STATS_INFO_HH__ 32 #define __BASE_STATS_INFO_HH__ 42 typedef ::Flags<FlagsType>
Flags;
45 const FlagsType
none = 0x0000;
47 const FlagsType
init = 0x0001;
53 const FlagsType
pdf = 0x0020;
55 const FlagsType
cdf = 0x0040;
57 const FlagsType
dist = 0x0080;
101 void setName(
const std::string &name);
102 void setName(
const Group *parent,
const std::string &name);
110 virtual bool check()
const = 0;
126 virtual void reset() = 0;
132 virtual bool zero()
const = 0;
153 virtual Counter value()
const = 0;
154 virtual Result result()
const = 0;
170 virtual const VCounter &value()
const = 0;
171 virtual const VResult &result()
const = 0;
242 virtual std::string str()
const = 0;
262 #endif // __BASE_STATS_INFO_HH__ double Result
All results are doubles.
const FlagsType pdf
Print the percent of the total that this entry represents.
std::map< Counter, int > MCounter
map of counters
std::string name
The name of the stat.
static int id_count
A unique stat ID for each stat in the simulator.
VResult rvec
Local storage for the entry values, used for printing.
std::vector< std::string > subdescs
std::vector< std::string > subdescs
static std::string separatorString
The separator string used for vectors, dist, etc.
virtual bool zero() const =0
const FlagsType nonan
Don't print if this is NAN.
virtual void enable()
Enable the stat for use.
std::vector< std::string > subnames
Names and descriptions of subfields.
std::vector< std::string > y_subnames
virtual void prepare()=0
Prepare the stat for dumping.
std::vector< std::string > subnames
Names and descriptions of subfields.
virtual void reset()=0
Reset the stat to the default state.
double Counter
All counters are of 64-bit values.
Data structure of sparse histogram.
VCounter cvec
Local storage for the entry values, used for printing.
const Info * prereq
A pointer to a prerequisite Stat.
static bool less(Info *stat1, Info *stat2)
Checks if the first stat's name is alphabetically less than the second.
Flags flags
The formatting flags.
const FlagsType oneline
Print all values on a single line.
void setName(const std::string &name)
Set the name of this statistic.
std::vector< DistData > data
const FlagsType display
Print this stat.
const FlagsType none
Nothing extra to print.
int precision
The display precision.
std::vector< std::string > subdescs
const FlagsType total
Print the total.
const FlagsType __reserved
Mask of flags that can't be set directly.
void setSeparator(std::string _sep)
virtual bool check() const =0
Check that this stat has been set up properly and is ready for use.
const StorageParams * storageParams
SparseHistData data
Local storage for the entry values, used for printing.
::Flags< FlagsType > Flags
const FlagsType nozero
Don't print if this is zero.
const FlagsType dist
Print the distribution.
const FlagsType cdf
Print the cumulative percentage of total upto this entry.
DistData data
Local storage for the entry values, used for printing.
const FlagsType init
This Stat is Initialized.
std::vector< std::string > subnames
Names and descriptions of subfields.
virtual void visit(Output &visitor)=0
Visitor entry for outputing statistics data.
std::string desc
The description of the stat.