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

Generated on Fri Feb 28 2020 16:26:58 for gem5 by doxygen 1.8.13