gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
info.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2021 Daniel R. Carvalho
3  * Copyright (c) 2019 Arm Limited
4  * All rights reserved.
5  *
6  * The license below extends only to copyright in the software and shall
7  * not be construed as granting a license to any other intellectual
8  * property including but not limited to intellectual property relating
9  * to a hardware implementation of the functionality of the software
10  * licensed hereunder. You may use the software subject to the license
11  * terms below provided that you ensure that this notice is replicated
12  * unmodified and in its entirety in all distributions of the software,
13  * modified or unmodified, in source code or in binary form.
14  *
15  * Copyright (c) 2003-2005 The Regents of The University of Michigan
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41 
42 #include "base/stats/info.hh"
43 
44 #include <cctype>
45 #include <map>
46 #include <string>
47 
48 #include "base/cprintf.hh"
49 #include "base/debug.hh"
50 #include "base/logging.hh"
51 #include "base/str.hh"
52 
53 namespace Stats {
54 
55 std::string Info::separatorString = "::";
56 
57 int Info::id_count = 0;
58 
59 int debug_break_id = -1;
60 
63 {
64  static NameMapType the_map;
65  return the_map;
66 }
67 
69  : flags(none), precision(-1), prereq(0), storageParams(NULL)
70 {
71  id = id_count++;
72  if (debug_break_id >= 0 and debug_break_id == id)
74 }
75 
77 {
78 }
79 
80 bool
81 validateStatName(const std::string &name)
82 {
83  if (name.empty())
84  return false;
85 
87  tokenize(vec, name, '.');
89  while (item != vec.end()) {
90  if (item->empty())
91  return false;
92 
93  std::string::const_iterator c = item->begin();
94 
95  // The first character is different
96  if (!isalpha(*c) && *c != '_')
97  return false;
98 
99  // The rest of the characters have different rules.
100  while (++c != item->end()) {
101  if (!isalnum(*c) && *c != '_')
102  return false;
103  }
104 
105  ++item;
106  }
107 
108  return true;
109 }
110 
111 void
112 Info::setName(const std::string &name)
113 {
114  setName(nullptr, name);
115 }
116 
117 void
118 Info::setName(const Group *parent, const std::string &name)
119 {
120  if (!validateStatName(name))
121  panic("invalid stat name '%s'", name);
122 
123  // We only register the stat with the nameMap() if we are using
124  // old-style stats without a parent group. New-style stats should
125  // be unique since their names should correspond to a member
126  // variable.
127  if (!parent) {
128  auto p = nameMap().insert(make_pair(name, this));
129 
130  if (!p.second)
131  panic("same statistic name used twice! name=%s\n",
132  name);
133  }
134 
135  this->name = name;
136 }
137 
138 bool
139 Info::less(Info *stat1, Info *stat2)
140 {
141  const std::string &name1 = stat1->name;
142  const std::string &name2 = stat2->name;
143 
146 
147  tokenize(v1, name1, '.');
148  tokenize(v2, name2, '.');
149 
150  size_type last = std::min(v1.size(), v2.size()) - 1;
151  for (off_type i = 0; i < last; ++i)
152  if (v1[i] != v2[i])
153  return v1[i] < v2[i];
154 
155  // Special compare for last element.
156  if (v1[last] == v2[last])
157  return v1.size() < v2.size();
158  else
159  return v1[last] < v2[last];
160 
161  return false;
162 }
163 
164 bool
166 {
167  if (!(flags & Stats::init)) {
168 #ifdef DEBUG
169  cprintf("this is stat number %d\n", id);
170 #endif
171  panic("Not all stats have been initialized.\n"
172  "You may need to add <ParentClass>::regStats() to a"
173  " new SimObject's regStats() function. Name: %s",
174  name);
175  return false;
176  }
177 
178  if ((flags & display) && name.empty()) {
179  panic("all printable stats must be named");
180  return false;
181  }
182 
183  return true;
184 }
185 
186 void
188 {
189 }
190 
191 void
193 {
194  size_type s = size();
195  if (subnames.size() < s)
196  subnames.resize(s);
197  if (subdescs.size() < s)
198  subdescs.resize(s);
199 }
200 
201 void
203 {
204  size_type s = size();
205  if (subnames.size() < s)
206  subnames.resize(s);
207  if (subdescs.size() < s)
208  subdescs.resize(s);
209 }
210 
211 void
213 {
214  if (subnames.size() < x)
215  subnames.resize(x);
216  if (subdescs.size() < x)
217  subdescs.resize(x);
218  if (y_subnames.size() < y)
219  y_subnames.resize(y);
220 }
221 
222 } // namespace Stats
Stats::VectorDistInfo::subnames
std::vector< std::string > subnames
Names and descriptions of subfields.
Definition: info.hh:209
Stats::Vector2dInfo::subdescs
std::vector< std::string > subdescs
Definition: info.hh:226
Stats::Info::~Info
virtual ~Info()
Definition: info.cc:76
Stats::init
const FlagsType init
This Stat is Initialized.
Definition: info.hh:46
Stats::Info::baseCheck
bool baseCheck() const
Definition: info.cc:165
Debug::breakpoint
void breakpoint()
Definition: debug.cc:60
Stats::off_type
unsigned int off_type
Definition: types.hh:55
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
Stats::NameMapType
std::map< std::string, Info * > NameMapType
Definition: info.hh:261
Stats::Info::Info
Info()
Definition: info.cc:68
tokenize
void tokenize(std::vector< std::string > &v, const std::string &s, char token, bool ignore)
Definition: str.cc:65
Stats::VectorDistInfo::subdescs
std::vector< std::string > subdescs
Definition: info.hh:210
Stats::Vector2dInfo::subnames
std::vector< std::string > subnames
Names and descriptions of subfields.
Definition: info.hh:225
Stats::Vector2dInfo::y_subnames
std::vector< std::string > y_subnames
Definition: info.hh:227
std::vector< std::string >
Stats::display
const FlagsType display
Print this stat.
Definition: info.hh:48
Stats::none
const FlagsType none
Nothing extra to print.
Definition: info.hh:44
Stats::Info::id_count
static int id_count
A unique stat ID for each stat in the simulator.
Definition: info.hh:91
Stats::validateStatName
bool validateStatName(const std::string &name)
Definition: info.cc:81
str.hh
Stats::VectorDistInfo::size
virtual size_type size() const =0
Stats::Info::enable
virtual void enable()
Enable the stat for use.
Definition: info.cc:187
info.hh
Stats::VectorDistInfo::enable
void enable()
Enable the stat for use.
Definition: info.cc:202
Stats::nameMap
NameMapType & nameMap()
Definition: info.cc:62
Stats::Info::separatorString
static std::string separatorString
The separator string used for vectors, dist, etc.
Definition: info.hh:76
cprintf
void cprintf(const char *format, const Args &...args)
Definition: cprintf.hh:152
debug.hh
Stats::VectorInfo::subdescs
std::vector< std::string > subdescs
Definition: info.hh:164
cprintf.hh
Stats::Vector2dInfo::x
size_type x
Definition: info.hh:229
Stats::VectorInfo::size
virtual size_type size() const =0
name
const std::string & name()
Definition: trace.cc:48
Stats::Info
Definition: info.hh:70
Stats::VectorInfo::subnames
std::vector< std::string > subnames
Names and descriptions of subfields.
Definition: info.hh:163
Stats::Info::setName
void setName(const std::string &name)
Set the name of this statistic.
Definition: info.cc:112
Stats::Vector2dInfo::y
size_type y
Definition: info.hh:230
Stats::Info::flags
Flags flags
The formatting flags.
Definition: info.hh:82
Stats::Group
Statistics container.
Definition: group.hh:87
Stats::Info::name
std::string name
The name of the stat.
Definition: info.hh:74
logging.hh
Stats::Info::less
static bool less(Info *stat1, Info *stat2)
Checks if the first stat's name is alphabetically less than the second.
Definition: info.cc:139
ArmISA::c
Bitfield< 29 > c
Definition: miscregs_types.hh:50
Stats
Definition: statistics.cc:53
Stats::Vector2dInfo::enable
void enable()
Enable the stat for use.
Definition: info.cc:212
Stats::size_type
unsigned int size_type
Definition: types.hh:54
Stats::debug_break_id
int debug_break_id
Definition: info.cc:59
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
ArmISA::s
Bitfield< 4 > s
Definition: miscregs_types.hh:556
Stats::VectorInfo::enable
void enable()
Enable the stat for use.
Definition: info.cc:192
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171

Generated on Tue Mar 23 2021 19:41:24 for gem5 by doxygen 1.8.17