41 #if defined(__APPLE__) 42 #define _GLIBCPP_USE_C99 1 98 : mystream(false), stream(NULL), descriptions(false)
127 panic(
"stream already set!");
132 fatal(
"Unable to open output stream for writing\n");
139 panic(
"stream already set!");
142 stream =
new ofstream(file.c_str(), ios::trunc);
144 fatal(
"Unable to open statistics file for writing\n");
156 ccprintf(*
stream,
"\n---------- Begin Simulation Statistics ----------\n");
162 ccprintf(*
stream,
"\n---------- End Simulation Statistics ----------\n");
188 assert(!
path.empty());
209 if (!std::isnan(value)) {
211 val.precision(precision);
212 else if (value == rint(value))
215 val.unsetf(ios::showpoint);
216 val.setf(ios::fixed);
237 void operator()(ostream &
stream,
bool oneLine =
false)
const;
253 if ((flags.isSet(
nozero) && (!oneLine) && value == 0.0) ||
254 (flags.isSet(
nonan) && std::isnan(value)))
257 stringstream pdfstr, cdfstr;
259 if (!std::isnan(
pdf))
262 if (!std::isnan(
cdf))
266 ccprintf(stream,
" |%12s %10s %10s",
267 ValueToString(value, precision), pdfstr.str(), cdfstr.str());
270 ValueToString(value, precision), pdfstr.str(), cdfstr.str());
294 void operator()(ostream &
stream)
const;
303 if (flags.isSet(
pdf |
cdf)) {
309 string base =
name + separatorString;
317 print.
pdf = _total ? 0.0 :
NAN;
318 print.
cdf = _total ? 0.0 :
NAN;
320 bool havesub = !subnames.empty();
328 print.
value = vec[0];
340 if (havesub && (
i >= subnames.size() || subnames[
i].empty()))
344 print.
desc = subdescs.empty() ? desc : subdescs[
i];
347 print(stream, flags.isSet(
oneline));
362 print.
name = base +
"total";
383 void operator()(ostream &
stream)
const;
431 print.
name = base +
"bucket_size";
435 print.
name = base +
"min_bucket";
439 print.
name = base +
"max_bucket";
444 print.
name = base +
"samples";
448 print.
name = base +
"mean";
453 print.
name = base +
"gmean";
462 print.
name = base +
"stdev";
485 print.
name = base +
"underflows";
495 stringstream namestr;
502 namestr <<
"-" << high;
504 print.
name = namestr.str();
518 print.
name = base +
"overflows";
527 print.
name = base +
"min_value";
533 print.
name = base +
"max_value";
538 print.
name = base +
"total";
608 bool havesub =
false;
641 yvec[
j] = info.
cvec[iy +
j];
642 tot_vec[
j] += yvec[
j];
646 print.
name = statName(
657 total_subname.push_back(
"total");
750 print.
name = base +
"samples";
754 MCounter::const_iterator it;
756 stringstream namestr;
759 namestr <<(*it).first;
760 print.
name = namestr.str();
761 print.
value = (*it).second;
780 static bool connected =
false;
#define panic(...)
This implements a cprintf based panic() function.
void ccprintf(cp::Print &print)
double Result
All results are doubles.
const FlagsType pdf
Print the percent of the total that this entry represents.
void operator()(ostream &stream) const
std::string name
The name of the stat.
void visit(const ScalarInfo &info) override
std::vector< std::string > subdescs
#define fatal(...)
This implements a cprintf based fatal() function.
std::vector< std::string > subdescs
const std::string & name()
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 size_type size() const =0
void init(const Text *text, const Info &info)
virtual Result total() const =0
std::vector< std::string > subnames
Names and descriptions of subfields.
Overload hash function for BasicBlockRange type.
list< Info * > & statsList()
SparseHistPrint(const Text *text, const SparseHistInfo &info)
void open(std::ostream &stream)
std::vector< std::string > y_subnames
virtual Result result() const =0
std::vector< std::string > subnames
Names and descriptions of subfields.
std::ostream * stream() const
Get the output underlying output stream.
double Counter
All counters are of 64-bit values.
void operator()(ostream &stream) const
virtual Result total() const =0
bool valid() const override
Data structure of sparse histogram.
const SparseHistData & data
virtual const VResult & result() const =0
std::string csprintf(const char *format, const Args &...args)
VCounter cvec
Local storage for the entry values, used for printing.
const Info * prereq
A pointer to a prerequisite Stat.
void operator()(ostream &stream) const
void init(const Text *text, const Info &info)
Flags flags
The formatting flags.
DistPrint(const Text *text, const DistInfo &info)
vector< string > subdescs
const FlagsType oneline
Print all values on a single line.
virtual size_type size() const =0
const FlagsType display
Print this stat.
#define NAN
Define Not a number.
vector< string > subnames
int precision
The display precision.
const FlagsType total
Print the total.
OutputStream * findOrCreate(const std::string &name, bool binary=false)
void beginGroup(const char *name) override
std::stack< std::string > path
string ValueToString(Result value, int precision)
std::vector< Result > VResult
vector of results.
Output * initText(const string &filename, bool desc)
void operator()(ostream &stream, bool oneLine=false) const
const FlagsType nozero
Don't print if this is zero.
const FlagsType cdf
Print the cumulative percentage of total upto this entry.
void update(Result val, Result total)
const FlagsType init
This Stat is Initialized.
std::vector< std::string > subnames
Names and descriptions of subfields.
const std::string to_string(sc_enc enc)
bool noOutput(const Info &info)
std::string desc
The description of the stat.
std::string statName(const std::string &name) const