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

Generated on Tue Jun 22 2021 15:28:25 for gem5 by doxygen 1.8.17