43 #if defined(__APPLE__) 44 #define _GLIBCPP_USE_C99 1 100 : mystream(false), stream(NULL), descriptions(false)
129 panic(
"stream already set!");
134 fatal(
"Unable to open output stream for writing\n");
141 panic(
"stream already set!");
144 stream =
new ofstream(file.c_str(), ios::trunc);
146 fatal(
"Unable to open statistics file for writing\n");
158 ccprintf(*
stream,
"\n---------- Begin Simulation Statistics ----------\n");
164 ccprintf(*
stream,
"\n---------- End Simulation Statistics ----------\n");
190 assert(!
path.empty());
211 if (!std::isnan(value)) {
213 val.precision(precision);
214 else if (value == rint(value))
217 val.unsetf(ios::showpoint);
218 val.setf(ios::fixed);
239 void operator()(ostream &
stream,
bool oneLine =
false)
const;
255 if ((flags.isSet(
nozero) && (!oneLine) && value == 0.0) ||
256 (flags.isSet(
nonan) && std::isnan(value)))
259 stringstream pdfstr, cdfstr;
261 if (!std::isnan(
pdf))
264 if (!std::isnan(
cdf))
268 ccprintf(stream,
" |%12s %10s %10s",
269 ValueToString(value, precision), pdfstr.str(), cdfstr.str());
272 ValueToString(value, precision), pdfstr.str(), cdfstr.str());
296 void operator()(ostream &
stream)
const;
305 if (flags.isSet(
pdf |
cdf)) {
311 string base =
name + separatorString;
319 print.
pdf = _total ? 0.0 :
NAN;
320 print.
cdf = _total ? 0.0 :
NAN;
322 bool havesub = !subnames.empty();
330 print.
value = vec[0];
342 if (havesub && (
i >= subnames.size() || subnames[
i].empty()))
346 print.
desc = subdescs.empty() ? desc : subdescs[
i];
349 print(stream, flags.isSet(
oneline));
364 print.
name = base +
"total";
385 void operator()(ostream &
stream)
const;
433 print.
name = base +
"bucket_size";
437 print.
name = base +
"min_bucket";
441 print.
name = base +
"max_bucket";
446 print.
name = base +
"samples";
450 print.
name = base +
"mean";
455 print.
name = base +
"gmean";
464 print.
name = base +
"stdev";
487 print.
name = base +
"underflows";
497 stringstream namestr;
504 namestr <<
"-" << high;
506 print.
name = namestr.str();
520 print.
name = base +
"overflows";
529 print.
name = base +
"min_value";
535 print.
name = base +
"max_value";
540 print.
name = base +
"total";
610 bool havesub =
false;
643 yvec[
j] = info.
cvec[iy +
j];
644 tot_vec[
j] += yvec[
j];
648 print.
name = statName(
659 total_subname.push_back(
"total");
752 print.
name = base +
"samples";
756 MCounter::const_iterator it;
758 stringstream namestr;
761 namestr <<(*it).first;
762 print.
name = namestr.str();
763 print.
value = (*it).second;
782 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