gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
group.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  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #include "base/stats/group.hh"
39 
40 #include "base/logging.hh"
41 #include "base/stats/info.hh"
42 #include "base/trace.hh"
43 #include "debug/Stats.hh"
44 #include "sim/sim_object.hh"
45 
46 namespace Stats {
47 
48 Group::Group(Group *parent, const char *name)
49  : mergedParent(nullptr)
50 {
51  if (parent && name) {
52  parent->addStatGroup(name, this);
53  } else if (parent && !name) {
54  parent->mergeStatGroup(this);
55  }
56 }
57 
59 {
60 }
61 
62 void
64 {
65  for (auto &g : mergedStatGroups)
66  g->regStats();
67 
68  for (auto &g : statGroups) {
69  if (DTRACE(Stats)) {
70  M5_VAR_USED const SimObject *so =
71  dynamic_cast<const SimObject *>(this);
72  DPRINTF(Stats, "%s: regStats in group %s\n",
73  so ? so->name() : "?",
74  g.first);
75  }
76  g.second->regStats();
77  }
78 }
79 
80 void
82 {
83  for (auto &s : stats)
84  s->reset();
85 
86  for (auto &g : mergedStatGroups)
87  g->resetStats();
88 
89  for (auto &g : statGroups)
90  g.second->resetStats();
91 }
92 
93 void
95 {
96  for (auto &g : mergedStatGroups)
97  g->preDumpStats();
98 
99  for (auto &g : statGroups)
100  g.second->preDumpStats();
101 }
102 
103 void
105 {
106  stats.push_back(info);
107  if (mergedParent)
108  mergedParent->addStat(info);
109 }
110 
111 void
112 Group::addStatGroup(const char *name, Group *block)
113 {
114  panic_if(statGroups.find(name) != statGroups.end(),
115  "Stats of the same group share the same name `%s`.\n", name);
116 
117  statGroups[name] = block;
118 }
119 
120 const Info *
121 Group::resolveStat(std::string name) const
122 {
123  auto pos = name.find(".");
124  if (pos == std::string::npos) {
125  // look for the stat in this group
126  for (auto &info : stats) {
127  if (info->name == name) {
128  return info;
129  }
130  }
131  } else {
132  // look for the stat in subgroups
133  const std::string gname = name.substr(0, pos);
134  for (auto &g : statGroups) {
135  if (g.first == gname) {
136  return g.second->resolveStat(name.substr(pos + 1));
137  }
138  }
139  }
140 
141  // finally look for the stat in groups that have been merged
142  for (auto &g : mergedStatGroups) {
143  auto info = g->resolveStat(name);
144  if (info) {
145  return info;
146  }
147  }
148 
149  return nullptr;
150 }
151 
152 void
154 {
155  panic_if(!block, "No stat block provided");
156  panic_if(block->mergedParent,
157  "Stat group already merged into another group");
158  panic_if(block == this, "Stat group can't merge with itself");
159 
160  // Track the new stat group
161  mergedStatGroups.push_back(block);
162 
163  // We might not have seen stats that were associated with the
164  // child group before it was merged, so add them here.
165  for (auto &s : block->stats)
166  addStat(s);
167 
168  // Setup the parent pointer so the child know that it needs to
169  // register new stats with the parent.
170  block->mergedParent = this;
171 }
172 
173 const std::map<std::string, Group *> &
175 {
176  return statGroups;
177 }
178 
179 const std::vector<Info *> &
181 {
182  return stats;
183 }
184 
185 } // namespace Stats
Stats::Group::regStats
virtual void regStats()
Callback to set stat parameters.
Definition: group.cc:63
group.hh
Stats::Group::getStatGroups
const std::map< std::string, Group * > & getStatGroups() const
Get all child groups associated with this object.
Definition: group.cc:174
PowerISA::so
Bitfield< 28 > so
Definition: miscregs.hh:49
Stats::Group::Group
Group()=delete
DTRACE
#define DTRACE(x)
Definition: debug.hh:156
Stats::Group::preDumpStats
virtual void preDumpStats()
Callback before stats are dumped.
Definition: group.cc:94
std::vector
STL vector class.
Definition: stl.hh:37
Stats::Group::mergedStatGroups
std::vector< Group * > mergedStatGroups
Definition: group.hh:214
Stats::Group::resetStats
virtual void resetStats()
Callback to reset stats.
Definition: group.cc:81
info.hh
sim_object.hh
Stats::Group::resolveStat
const Info * resolveStat(std::string name) const
Resolve a stat by its name within this group.
Definition: group.cc:121
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
MipsISA::g
Bitfield< 4 > g
Definition: dt_constants.hh:83
Stats::Group::stats
std::vector< Info * > stats
Definition: group.hh:215
name
const std::string & name()
Definition: trace.cc:48
Stats::Group::statGroups
std::map< std::string, Group * > statGroups
Definition: group.hh:213
Stats::Info
Definition: info.hh:70
Stats::Group::~Group
virtual ~Group()
Definition: group.cc:58
Stats::Group::mergedParent
Group * mergedParent
Parent pointer if merged into parent.
Definition: group.hh:211
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:197
Stats::Group::mergeStatGroup
void mergeStatGroup(Group *block)
Merge the contents (stats & children) of a block to this block.
Definition: group.cc:153
Stats::Group::getStats
const std::vector< Info * > & getStats() const
Get all stats associated with this object.
Definition: group.cc:180
Stats::Group
Statistics container.
Definition: group.hh:87
logging.hh
Stats
Definition: statistics.cc:53
Stats::Group::addStat
void addStat(Stats::Info *info)
Register a stat with this group.
Definition: group.cc:104
trace.hh
ArmISA::s
Bitfield< 4 > s
Definition: miscregs_types.hh:556
Stats::Group::addStatGroup
void addStatGroup(const char *name, Group *block)
Add a stat block as a child of this block.
Definition: group.cc:112
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:141

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