gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
text.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019 Arm Limited
3  * All rights reserved.
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2004-2005 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #if defined(__APPLE__)
42 #define _GLIBCPP_USE_C99 1
43 #endif
44 
45 #if defined(__sun)
46 #include <cmath>
47 
48 #endif
49 
50 #include <cassert>
51 
52 #ifdef __SUNPRO_CC
53 #include <cmath>
54 
55 #endif
56 #include "base/stats/text.hh"
57 
58 #include <cmath>
59 #include <fstream>
60 #include <iostream>
61 #include <sstream>
62 #include <string>
63 
64 #include "base/cast.hh"
65 #include "base/logging.hh"
66 #include "base/stats/info.hh"
67 #include "base/str.hh"
68 
69 using namespace std;
70 
71 #ifndef NAN
72 float __nan();
74 #define NAN (__nan())
75 
76 #define __M5_NAN
77 #endif
78 
79 #ifdef __M5_NAN
80 float
82 {
83  union {
84  uint32_t ui;
85  float f;
86  } nan;
87 
88  nan.ui = 0x7fc00000;
89  return nan.f;
90 }
91 #endif
92 
93 namespace Stats {
94 
96 
97 Text::Text()
98  : mystream(false), stream(NULL), descriptions(false)
99 {
100 }
101 
102 Text::Text(std::ostream &stream)
103  : mystream(false), stream(NULL), descriptions(false)
104 {
105  open(stream);
106 }
107 
108 Text::Text(const std::string &file)
109  : mystream(false), stream(NULL), descriptions(false)
110 {
111  open(file);
112 }
113 
114 
116 {
117  if (mystream) {
118  assert(stream);
119  delete stream;
120  }
121 }
122 
123 void
124 Text::open(std::ostream &_stream)
125 {
126  if (stream)
127  panic("stream already set!");
128 
129  mystream = false;
130  stream = &_stream;
131  if (!valid())
132  fatal("Unable to open output stream for writing\n");
133 }
134 
135 void
136 Text::open(const std::string &file)
137 {
138  if (stream)
139  panic("stream already set!");
140 
141  mystream = true;
142  stream = new ofstream(file.c_str(), ios::trunc);
143  if (!valid())
144  fatal("Unable to open statistics file for writing\n");
145 }
146 
147 bool
148 Text::valid() const
149 {
150  return stream != NULL && stream->good();
151 }
152 
153 void
155 {
156  ccprintf(*stream, "\n---------- Begin Simulation Statistics ----------\n");
157 }
158 
159 void
161 {
162  ccprintf(*stream, "\n---------- End Simulation Statistics ----------\n");
163  stream->flush();
164 }
165 
166 std::string
167 Text::statName(const std::string &name) const
168 {
169  if (path.empty())
170  return name;
171  else
172  return csprintf("%s.%s", path.top(), name);
173 }
174 
175 void
176 Text::beginGroup(const char *name)
177 {
178  if (path.empty()) {
179  path.push(name);
180  } else {
181  path.push(csprintf("%s.%s", path.top(), name));
182  }
183 }
184 
185 void
187 {
188  assert(!path.empty());
189  path.pop();
190 }
191 
192 bool
193 Text::noOutput(const Info &info)
194 {
195  if (!info.flags.isSet(display))
196  return true;
197 
198  if (info.prereq && info.prereq->zero())
199  return true;
200 
201  return false;
202 }
203 
204 string
205 ValueToString(Result value, int precision)
206 {
207  stringstream val;
208 
209  if (!std::isnan(value)) {
210  if (precision != -1)
211  val.precision(precision);
212  else if (value == rint(value))
213  val.precision(0);
214 
215  val.unsetf(ios::showpoint);
216  val.setf(ios::fixed);
217  val << value;
218  } else {
219  val << "nan";
220  }
221 
222  return val.str();
223 }
224 
226 {
228  string name;
229  string desc;
235 
236  void update(Result val, Result total);
237  void operator()(ostream &stream, bool oneLine = false) const;
238 };
239 
240 void
242 {
243  value = val;
244  if (total) {
245  pdf = val / total;
246  cdf += pdf;
247  }
248 }
249 
250 void
251 ScalarPrint::operator()(ostream &stream, bool oneLine) const
252 {
253  if ((flags.isSet(nozero) && (!oneLine) && value == 0.0) ||
254  (flags.isSet(nonan) && std::isnan(value)))
255  return;
256 
257  stringstream pdfstr, cdfstr;
258 
259  if (!std::isnan(pdf))
260  ccprintf(pdfstr, "%.2f%%", pdf * 100.0);
261 
262  if (!std::isnan(cdf))
263  ccprintf(cdfstr, "%.2f%%", cdf * 100.0);
264 
265  if (oneLine) {
266  ccprintf(stream, " |%12s %10s %10s",
267  ValueToString(value, precision), pdfstr.str(), cdfstr.str());
268  } else {
269  ccprintf(stream, "%-40s %12s %10s %10s", name,
270  ValueToString(value, precision), pdfstr.str(), cdfstr.str());
271 
272  if (descriptions) {
273  if (!desc.empty())
274  ccprintf(stream, " # %s", desc);
275  }
276  stream << endl;
277  }
278 }
279 
281 {
282  string name;
284  string desc;
293 
294  void operator()(ostream &stream) const;
295 };
296 
297 void
298 VectorPrint::operator()(std::ostream &stream) const
299 {
300  size_type _size = vec.size();
301  Result _total = 0.0;
302 
303  if (flags.isSet(pdf | cdf)) {
304  for (off_type i = 0; i < _size; ++i) {
305  _total += vec[i];
306  }
307  }
308 
309  string base = name + separatorString;
310 
311  ScalarPrint print;
312  print.name = name;
313  print.desc = desc;
314  print.precision = precision;
315  print.descriptions = descriptions;
316  print.flags = flags;
317  print.pdf = _total ? 0.0 : NAN;
318  print.cdf = _total ? 0.0 : NAN;
319 
320  bool havesub = !subnames.empty();
321 
322  if (_size == 1) {
323  // If forceSubnames is set, get the first subname (or index in
324  // the case where there are no subnames) and append it to the
325  // base name.
326  if (forceSubnames)
327  print.name = base + (havesub ? subnames[0] : std::to_string(0));
328  print.value = vec[0];
329  print(stream);
330  return;
331  }
332 
333  if ((!flags.isSet(nozero)) || (total != 0)) {
334  if (flags.isSet(oneline)) {
335  ccprintf(stream, "%-40s", name);
336  print.flags = print.flags & (~nozero);
337  }
338 
339  for (off_type i = 0; i < _size; ++i) {
340  if (havesub && (i >= subnames.size() || subnames[i].empty()))
341  continue;
342 
343  print.name = base + (havesub ? subnames[i] : std::to_string(i));
344  print.desc = subdescs.empty() ? desc : subdescs[i];
345 
346  print.update(vec[i], _total);
347  print(stream, flags.isSet(oneline));
348  }
349 
350  if (flags.isSet(oneline)) {
351  if (descriptions) {
352  if (!desc.empty())
353  ccprintf(stream, " # %s", desc);
354  }
355  stream << endl;
356  }
357  }
358 
359  if (flags.isSet(::Stats::total)) {
360  print.pdf = NAN;
361  print.cdf = NAN;
362  print.name = base + "total";
363  print.desc = desc;
364  print.value = total;
365  print(stream);
366  }
367 }
368 
369 struct DistPrint
370 {
371  string name;
373  string desc;
377 
378  const DistData &data;
379 
380  DistPrint(const Text *text, const DistInfo &info);
381  DistPrint(const Text *text, const VectorDistInfo &info, int i);
382  void init(const Text *text, const Info &info);
383  void operator()(ostream &stream) const;
384 };
385 
386 DistPrint::DistPrint(const Text *text, const DistInfo &info)
387  : data(info.data)
388 {
389  init(text, info);
390 }
391 
392 DistPrint::DistPrint(const Text *text, const VectorDistInfo &info, int i)
393  : data(info.data[i])
394 {
395  init(text, info);
396 
397  name = text->statName(
398  info.name + "_" +
399  (info.subnames[i].empty() ? (std::to_string(i)) : info.subnames[i]));
400 
401  if (!info.subdescs[i].empty())
402  desc = info.subdescs[i];
403 }
404 
405 void
406 DistPrint::init(const Text *text, const Info &info)
407 {
408  name = text->statName(info.name);
410  desc = info.desc;
411  flags = info.flags;
412  precision = info.precision;
413  descriptions = text->descriptions;
414 }
415 
416 void
417 DistPrint::operator()(ostream &stream) const
418 {
419  if (flags.isSet(nozero) && data.samples == 0) return;
420  string base = name + separatorString;
421 
422  ScalarPrint print;
423  print.precision = precision;
424  print.flags = flags;
425  print.descriptions = descriptions;
426  print.desc = desc;
427  print.pdf = NAN;
428  print.cdf = NAN;
429 
430  if (flags.isSet(oneline)) {
431  print.name = base + "bucket_size";
432  print.value = data.bucket_size;
433  print(stream);
434 
435  print.name = base + "min_bucket";
436  print.value = data.min;
437  print(stream);
438 
439  print.name = base + "max_bucket";
440  print.value = data.max;
441  print(stream);
442  }
443 
444  print.name = base + "samples";
445  print.value = data.samples;
446  print(stream);
447 
448  print.name = base + "mean";
449  print.value = data.samples ? data.sum / data.samples : NAN;
450  print(stream);
451 
452  if (data.type == Hist) {
453  print.name = base + "gmean";
454  print.value = data.samples ? exp(data.logs / data.samples) : NAN;
455  print(stream);
456  }
457 
458  Result stdev = NAN;
459  if (data.samples)
460  stdev = sqrt((data.samples * data.squares - data.sum * data.sum) /
461  (data.samples * (data.samples - 1.0)));
462  print.name = base + "stdev";
463  print.value = stdev;
464  print(stream);
465 
466  if (data.type == Deviation)
467  return;
468 
469  size_t size = data.cvec.size();
470 
471  Result total = 0.0;
472  if (data.type == Dist && data.underflow != NAN)
473  total += data.underflow;
474  for (off_type i = 0; i < size; ++i)
475  total += data.cvec[i];
476  if (data.type == Dist && data.overflow != NAN)
477  total += data.overflow;
478 
479  if (total) {
480  print.pdf = 0.0;
481  print.cdf = 0.0;
482  }
483 
484  if (data.type == Dist && data.underflow != NAN) {
485  print.name = base + "underflows";
486  print.update(data.underflow, total);
487  print(stream);
488  }
489 
490  if (flags.isSet(oneline)) {
491  ccprintf(stream, "%-40s", name);
492  }
493 
494  for (off_type i = 0; i < size; ++i) {
495  stringstream namestr;
496  namestr << base;
497 
498  Counter low = i * data.bucket_size + data.min;
499  Counter high = ::min(low + data.bucket_size - 1.0, data.max);
500  namestr << low;
501  if (low < high)
502  namestr << "-" << high;
503 
504  print.name = namestr.str();
505  print.update(data.cvec[i], total);
506  print(stream, flags.isSet(oneline));
507  }
508 
509  if (flags.isSet(oneline)) {
510  if (descriptions) {
511  if (!desc.empty())
512  ccprintf(stream, " # %s", desc);
513  }
514  stream << endl;
515  }
516 
517  if (data.type == Dist && data.overflow != NAN) {
518  print.name = base + "overflows";
519  print.update(data.overflow, total);
520  print(stream);
521  }
522 
523  print.pdf = NAN;
524  print.cdf = NAN;
525 
526  if (data.type == Dist && data.min_val != NAN) {
527  print.name = base + "min_value";
528  print.value = data.min_val;
529  print(stream);
530  }
531 
532  if (data.type == Dist && data.max_val != NAN) {
533  print.name = base + "max_value";
534  print.value = data.max_val;
535  print(stream);
536  }
537 
538  print.name = base + "total";
539  print.value = total;
540  print(stream);
541 }
542 
543 void
545 {
546  if (noOutput(info))
547  return;
548 
549  ScalarPrint print;
550  print.value = info.result();
551  print.name = statName(info.name);
552  print.desc = info.desc;
553  print.flags = info.flags;
554  print.descriptions = descriptions;
555  print.precision = info.precision;
556  print.pdf = NAN;
557  print.cdf = NAN;
558 
559  print(*stream);
560 }
561 
562 void
564 {
565  if (noOutput(info))
566  return;
567 
568  size_type size = info.size();
569  VectorPrint print;
570 
571  print.name = statName(info.name);
572  print.separatorString = info.separatorString;
573  print.desc = info.desc;
574  print.flags = info.flags;
575  print.descriptions = descriptions;
576  print.precision = info.precision;
577  print.vec = info.result();
578  print.total = info.total();
579  print.forceSubnames = false;
580 
581  if (!info.subnames.empty()) {
582  for (off_type i = 0; i < size; ++i) {
583  if (!info.subnames[i].empty()) {
584  print.subnames = info.subnames;
585  print.subnames.resize(size);
586  for (off_type i = 0; i < size; ++i) {
587  if (!info.subnames[i].empty() &&
588  !info.subdescs[i].empty()) {
589  print.subdescs = info.subdescs;
590  print.subdescs.resize(size);
591  break;
592  }
593  }
594  break;
595  }
596  }
597  }
598 
599  print(*stream);
600 }
601 
602 void
604 {
605  if (noOutput(info))
606  return;
607 
608  bool havesub = false;
609  VectorPrint print;
610 
611  if (!info.y_subnames.empty()) {
612  for (off_type i = 0; i < info.y; ++i) {
613  if (!info.y_subnames[i].empty()) {
614  print.subnames = info.y_subnames;
615  break;
616  }
617  }
618  }
619  print.flags = info.flags;
620  print.separatorString = info.separatorString;
621  print.descriptions = descriptions;
622  print.precision = info.precision;
623  print.forceSubnames = true;
624 
625  if (!info.subnames.empty()) {
626  for (off_type i = 0; i < info.x; ++i)
627  if (!info.subnames[i].empty())
628  havesub = true;
629  }
630 
631  VResult tot_vec(info.y);
632  for (off_type i = 0; i < info.x; ++i) {
633  if (havesub && (i >= info.subnames.size() || info.subnames[i].empty()))
634  continue;
635 
636  off_type iy = i * info.y;
637  VResult yvec(info.y);
638 
639  Result total = 0.0;
640  for (off_type j = 0; j < info.y; ++j) {
641  yvec[j] = info.cvec[iy + j];
642  tot_vec[j] += yvec[j];
643  total += yvec[j];
644  }
645 
646  print.name = statName(
647  info.name + "_" +
648  (havesub ? info.subnames[i] : std::to_string(i)));
649  print.desc = info.desc;
650  print.vec = yvec;
651  print.total = total;
652  print(*stream);
653  }
654 
655  // Create a subname for printing the total
656  vector<string> total_subname;
657  total_subname.push_back("total");
658 
659  if (info.flags.isSet(::Stats::total) && (info.x > 1)) {
660  print.name = statName(info.name);
661  print.subnames = total_subname;
662  print.desc = info.desc;
663  print.vec = VResult(1, info.total());
664  print.flags = print.flags & ~total;
665  print(*stream);
666  }
667 }
668 
669 void
670 Text::visit(const DistInfo &info)
671 {
672  if (noOutput(info))
673  return;
674 
675  DistPrint print(this, info);
676  print(*stream);
677 }
678 
679 void
681 {
682  if (noOutput(info))
683  return;
684 
685  for (off_type i = 0; i < info.size(); ++i) {
686  DistPrint print(this, info, i);
687  print(*stream);
688  }
689 }
690 
691 void
693 {
694  visit((const VectorInfo &)info);
695 }
696 
697 /*
698  This struct implements the output methods for the sparse
699  histogram stat
700 */
702 {
703  string name;
705  string desc;
709 
711 
712  SparseHistPrint(const Text *text, const SparseHistInfo &info);
713  void init(const Text *text, const Info &info);
714  void operator()(ostream &stream) const;
715 };
716 
717 /* Call initialization function */
719  : data(info.data)
720 {
721  init(text, info);
722 }
723 
724 /* Initialization function */
725 void
726 SparseHistPrint::init(const Text *text, const Info &info)
727 {
728  name = text->statName(info.name);
730  desc = info.desc;
731  flags = info.flags;
732  precision = info.precision;
733  descriptions = text->descriptions;
734 }
735 
736 /* Grab data from map and write to output stream */
737 void
738 SparseHistPrint::operator()(ostream &stream) const
739 {
740  string base = name + separatorString;
741 
742  ScalarPrint print;
743  print.precision = precision;
744  print.flags = flags;
745  print.descriptions = descriptions;
746  print.desc = desc;
747  print.pdf = NAN;
748  print.cdf = NAN;
749 
750  print.name = base + "samples";
751  print.value = data.samples;
752  print(stream);
753 
754  MCounter::const_iterator it;
755  for (it = data.cmap.begin(); it != data.cmap.end(); it++) {
756  stringstream namestr;
757  namestr << base;
758 
759  namestr <<(*it).first;
760  print.name = namestr.str();
761  print.value = (*it).second;
762  print(stream);
763  }
764 }
765 
766 void
768 {
769  if (noOutput(info))
770  return;
771 
772  SparseHistPrint print(this, info);
773  print(*stream);
774 }
775 
776 Output *
777 initText(const string &filename, bool desc)
778 {
779  static Text text;
780  static bool connected = false;
781 
782  if (!connected) {
783  text.open(*simout.findOrCreate(filename)->stream());
784  text.descriptions = desc;
785  connected = true;
786  }
787 
788  return &text;
789 }
790 
791 } // namespace Stats
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
void ccprintf(cp::Print &print)
Definition: cprintf.hh:127
double Result
All results are doubles.
Definition: types.hh:50
const FlagsType pdf
Print the percent of the total that this entry represents.
Definition: info.hh:51
std::ostream * stream
Definition: text.hh:58
void operator()(ostream &stream) const
Definition: text.cc:417
OutputDirectory simout
Definition: output.cc:61
std::string name
The name of the stat.
Definition: info.hh:73
bool descriptions
Definition: text.hh:67
Text()
Definition: text.cc:97
void visit(const ScalarInfo &info) override
Definition: text.cc:544
std::vector< std::string > subdescs
Definition: info.hh:207
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:171
bool descriptions
Definition: text.cc:375
std::vector< std::string > subdescs
Definition: info.hh:161
const std::string & name()
Definition: trace.cc:50
void end() override
Definition: text.cc:160
Bitfield< 7 > i
static std::string separatorString
The separator string used for vectors, dist, etc.
Definition: info.hh:75
virtual bool zero() const =0
const FlagsType nonan
Don&#39;t print if this is NAN.
Definition: info.hh:59
virtual size_type size() const =0
bool isSet() const
Definition: flags.hh:60
void init(const Text *text, const Info &info)
Definition: text.cc:406
Counter min_val
Definition: info.hh:182
string separatorString
Definition: text.cc:283
virtual Result total() const =0
DistType type
Definition: info.hh:177
VResult vec
Definition: text.cc:290
std::vector< std::string > subnames
Names and descriptions of subfields.
Definition: info.hh:160
string separatorString
Definition: text.cc:704
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
list< Info * > & statsList()
Definition: statistics.cc:67
SparseHistPrint(const Text *text, const SparseHistInfo &info)
Definition: text.cc:718
void open(std::ostream &stream)
Definition: text.cc:124
std::vector< std::string > y_subnames
Definition: info.hh:224
virtual Result result() const =0
bool forceSubnames
Definition: text.cc:292
void endGroup() override
Definition: text.cc:186
Counter max
Definition: info.hh:179
std::vector< std::string > subnames
Names and descriptions of subfields.
Definition: info.hh:222
unsigned int size_type
Definition: types.hh:54
Counter overflow
Definition: info.hh:185
Bitfield< 63 > val
Definition: misc.hh:769
std::ostream * stream() const
Get the output underlying output stream.
Definition: output.hh:59
Bitfield< 6 > f
double Counter
All counters are of 64-bit values.
Definition: types.hh:41
void operator()(ostream &stream) const
Definition: text.cc:738
virtual Result total() const =0
bool valid() const override
Definition: text.cc:148
Data structure of sparse histogram.
Definition: info.hh:244
void begin() override
Definition: text.cc:154
bool descriptions
Definition: text.cc:288
const SparseHistData & data
Definition: text.cc:710
virtual const VResult & result() const =0
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158
float __nan()
Definition: text.cc:81
VCounter cvec
Local storage for the entry values, used for printing.
Definition: info.hh:230
Counter min
Definition: info.hh:178
const Info * prereq
A pointer to a prerequisite Stat.
Definition: info.hh:83
void operator()(ostream &stream) const
Definition: text.cc:298
void init(const Text *text, const Info &info)
Definition: text.cc:726
Counter underflow
Definition: info.hh:184
Flags flags
The formatting flags.
Definition: info.hh:79
DistPrint(const Text *text, const DistInfo &info)
Definition: text.cc:386
vector< string > subdescs
Definition: text.cc:286
const FlagsType oneline
Print all values on a single line.
Definition: info.hh:61
Bitfield< 51, 12 > base
Definition: pagetable.hh:141
virtual size_type size() const =0
STL list class.
Definition: stl.hh:51
const FlagsType display
Print this stat.
Definition: info.hh:47
unsigned int off_type
Definition: types.hh:55
Flags flags
Definition: text.cc:374
size_type x
Definition: info.hh:226
#define NAN
Define Not a number.
Definition: text.cc:74
Counter logs
Definition: info.hh:189
vector< string > subnames
Definition: text.cc:285
int precision
The display precision.
Definition: info.hh:81
string name
Definition: text.cc:371
const FlagsType total
Print the total.
Definition: info.hh:49
Bitfield< 24 > j
Counter samples
Definition: info.hh:190
OutputStream * findOrCreate(const std::string &name, bool binary=false)
Definition: output.cc:259
VCounter cvec
Definition: info.hh:186
size_type y
Definition: info.hh:227
Counter squares
Definition: info.hh:188
bool mystream
Definition: text.hh:57
Counter max_val
Definition: info.hh:183
Counter sum
Definition: info.hh:187
void beginGroup(const char *name) override
Definition: text.cc:176
std::stack< std::string > path
Definition: text.hh:61
string ValueToString(Result value, int precision)
Definition: text.cc:205
string separatorString
Definition: text.cc:372
Counter bucket_size
Definition: info.hh:180
const DistData & data
Definition: text.cc:378
std::vector< Result > VResult
vector of results.
Definition: types.hh:52
Output * initText(const string &filename, bool desc)
Definition: text.cc:777
bool descriptions
Definition: text.cc:231
void operator()(ostream &stream, bool oneLine=false) const
Definition: text.cc:251
Result value
Definition: text.cc:227
const FlagsType nozero
Don&#39;t print if this is zero.
Definition: info.hh:57
string desc
Definition: text.cc:373
const char data[]
const FlagsType cdf
Print the cumulative percentage of total upto this entry.
Definition: info.hh:53
void update(Result val, Result total)
Definition: text.cc:241
Result total
Definition: text.cc:291
const FlagsType init
This Stat is Initialized.
Definition: info.hh:45
std::vector< std::string > subnames
Names and descriptions of subfields.
Definition: info.hh:206
const std::string to_string(sc_enc enc)
Definition: sc_fxdefs.cc:60
bool noOutput(const Info &info)
Definition: text.cc:193
std::string desc
The description of the stat.
Definition: info.hh:77
std::string statName(const std::string &name) const
Definition: text.cc:167

Generated on Thu May 28 2020 16:21:30 for gem5 by doxygen 1.8.13