63 std::string Info::separatorString =
"::";
85 "shouldn't register stat twice!");
99 statsMap().insert(make_pair(
this, info));
100 assert(result.second &&
"this should never fail");
107 info()->storageParams = params;
111 InfoAccess::setInit()
113 info()->flags.set(
init);
124 MapType::const_iterator
i =
statsMap().find(
this);
131 InfoAccess::info()
const 138 MapType::const_iterator
i =
statsMap().find(
this);
144 StorageParams::~StorageParams()
155 int Info::id_count = 0;
160 : flags(
none), precision(-1), prereq(0), storageParams(NULL)
163 if (debug_break_id >= 0 and debug_break_id ==
id)
180 while (item != vec.end()) {
184 string::const_iterator
c = item->begin();
187 if (!isalpha(*c) && *c !=
'_')
191 while (++c != item->end()) {
192 if (!isalnum(*c) && *c !=
'_')
212 panic(
"invalid stat name '%s'", name);
219 auto p =
nameMap().insert(make_pair(name,
this));
222 panic(
"same statistic name used twice! name=%s\n",
232 const string &name1 = stat1->
name;
233 const string &name2 = stat2->
name;
241 size_type last = min(v1.size(), v2.size()) - 1;
244 return v1[
i] < v2[
i];
247 if (v1[last] == v2[last])
248 return v1.size() < v2.size();
250 return v1[last] < v2[last];
260 cprintf(
"this is stat number %d\n",
id);
262 panic(
"Not all stats have been initialized.\n" 263 "You may need to add <ParentClass>::regStats() to a" 264 " new SimObject's regStats() function. Name: %s",
270 panic(
"all printable stats must be named");
286 if (subnames.size() <
s)
288 if (subdescs.size() <
s)
296 if (subnames.size() <
s)
298 if (subdescs.size() <
s)
305 if (subnames.size() <
x)
307 if (subdescs.size() <
x)
309 if (y_subnames.size() < y)
310 y_subnames.resize(y);
316 int size = cvec.size();
318 int top_half = zero + (size - zero + 1) / 2;
319 int bottom_half = (size -
zero) / 2;
322 int low_pair = zero - 1;
323 for (
int i = zero - 1;
i >= bottom_half;
i--) {
324 cvec[
i] = cvec[low_pair];
325 if (low_pair - 1 >= 0)
326 cvec[
i] += cvec[low_pair - 1];
329 assert(low_pair == 0 || low_pair == -1 || low_pair == -2);
331 for (
int i = bottom_half - 1;
i >= 0;
i--)
335 int high_pair =
zero;
336 for (
int i = zero;
i < top_half;
i++) {
337 cvec[
i] = cvec[high_pair];
338 if (high_pair + 1 < size)
339 cvec[
i] += cvec[high_pair + 1];
342 assert(high_pair == size || high_pair == size + 1);
344 for (
int i = top_half;
i < size;
i++)
355 int size = cvec.size();
356 int half = (size + 1) / 2;
360 for (
int i = size - 1;
i >= half; --
i) {
361 cvec[
i] = cvec[pair];
363 cvec[
i] += cvec[pair - 1];
367 for (
int i = half - 1;
i >= 0;
i--)
370 min_bucket = -max_bucket;
377 int size = cvec.size();
378 int half = (size + 1) / 2;
381 for (
int i = 0;
i < half;
i++) {
382 cvec[
i] = cvec[pair];
384 cvec[
i] += cvec[pair + 1];
387 assert(pair == size || pair == size + 1);
389 for (
int i = half;
i < size;
i++)
399 int b_size = hs->
size();
400 assert(size() == b_size);
410 while (bucket_size < hs->bucket_size)
413 for (uint32_t
i = 0;
i < b_size;
i++)
435 assert(!
root &&
"Can't change formulas");
471 vec =
root->result();
517 resetHandler = reset_handler;
518 dumpHandler = dump_handler;
554 fatal(
"Stats are already enabled");
565 fatal(
"No registered Stats::dump handler");
574 fatal(
"No registered Stats::reset handler");
580 const auto &it =
nameMap().find(name);
#define panic(...)
This implements a cprintf based panic() function.
double Result
All results are doubles.
Counter samples
The number of samples.
std::string name
The name of the stat.
static int id_count
A unique stat ID for each stat in the simulator.
void enable()
Enable the stat for use.
void processDumpQueue()
Process all the callbacks in the dump callbacks queue.
#define fatal(...)
This implements a cprintf based fatal() function.
const Info * resolve(const std::string &name)
virtual bool zero() const =0
NodePtr getNodePtr() const
Makde gcc < 4.6.3 happy and explicitly get the underlying node.
void process()
process all callbacks
VCounter cvec
Counter for each bucket.
void(* Handler)()
Register reset and dump handlers.
virtual void enable()
Enable the stat for use.
Overload hash function for BasicBlockRange type.
list< Info * > & statsList()
Counter logs
The sum of logarithm of each sample, used to compute geometric mean.
void enable()
Enable the stat for use.
Counter squares
The sum of squares.
Counter min_bucket
The minimum value to track.
Declaration of Statistics objects.
double Counter
All counters are of 64-bit values.
void add(Callback *callback)
Add a callback to the end of the queue.
Templatized storage and interface for a histogram stat.
static bool less(Info *stat1, Info *stat2)
Checks if the first stat's name is alphabetically less than the second.
Counter sum
The current sum.
std::shared_ptr< Node > NodePtr
Shared pointer to a function Node.
Flags flags
The formatting flags.
void registerResetCallback(Callback *cb)
Register a callback that should be called whenever statistics are reset.
void setName(const std::string &name)
Set the name of this statistic.
const FlagsType display
Print this stat.
const FlagsType none
Nothing extra to print.
std::map< const void *, Info * > MapType
void enable()
Enable the stat for use.
Counter bucket_size
The number of entries in each bucket.
const Info * resolveStat(std::string name) const
Resolve a stat by its name within this group.
Helper class to construct formula node trees.
void registerDumpCallback(Callback *cb)
Register a callback that should be called whenever statistics are about to be dumped.
void setInit()
Save Storage class parameters if any.
void processResetQueue()
Process all the callbacks in the reset callbacks queue.
bool validateStatName(const string &name)
void tokenize(vector< string > &v, const string &s, char token, bool ignore)
size_type size() const
Return the number of buckets in this distribution.
Formula & desc(const std::string &_desc)
Set the description and marks this stat to print at the end of simulation.
void dump()
Dump all statistics data to the registered outputs.
static Root * root()
Use this function to get a pointer to the single Root object in the simulation.
std::map< std::string, Info * > NameMapType
void registerHandlers(Handler reset_handler, Handler dump_handler)
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
const FlagsType init
This Stat is Initialized.
void cprintf(const char *format, const Args &...args)
std::string desc
The description of the stat.