gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
probe.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 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 
59 #ifndef __SIM_PROBE_PROBE_HH__
60 #define __SIM_PROBE_PROBE_HH__
61 
62 #include <string>
63 #include <vector>
64 
65 #include "base/compiler.hh"
66 #include "base/trace.hh"
67 #include "sim/sim_object.hh"
68 
70 class ProbeManager;
71 class ProbeListener;
72 struct ProbeListenerObjectParams;
73 
82 namespace ProbePoints {
83 /* Note: This is only here for documentation purposes, new probe
84  * points should normally be declared in their own header files. See
85  * for example pmu.hh.
86  */
87 }
88 
99 {
100  protected:
103 
104  public:
105  ProbeListenerObject(const ProbeListenerObjectParams &params);
106  virtual ~ProbeListenerObject();
108 };
109 
118 {
119  public:
120  ProbeListener(ProbeManager *manager, const std::string &name);
121  virtual ~ProbeListener();
122  ProbeListener(const ProbeListener& other) = delete;
123  ProbeListener& operator=(const ProbeListener& other) = delete;
124  ProbeListener(ProbeListener&& other) noexcept = delete;
125  ProbeListener& operator=(ProbeListener&& other) noexcept = delete;
126 
127  protected:
129  const std::string name;
130 };
131 
138 {
139  protected:
140  const std::string name;
141  public:
142  ProbePoint(ProbeManager *manager, const std::string &name);
143  virtual ~ProbePoint() {}
144 
145  virtual void addListener(ProbeListener *listener) = 0;
146  virtual void removeListener(ProbeListener *listener) = 0;
147  std::string getName() const { return name; }
148 };
149 
155 {
156  private:
161 
162  public:
164  : object(obj)
165  {}
166  virtual ~ProbeManager() {}
167 
175  bool addListener(std::string pointName, ProbeListener &listener);
176 
185  bool removeListener(std::string pointName, ProbeListener &listener);
186 
191  void addPoint(ProbePoint &point);
192 };
193 
201 template <class Arg>
203 {
204  public:
205  ProbeListenerArgBase(ProbeManager *pm, const std::string &name)
206  : ProbeListener(pm, name)
207  {}
208  virtual void notify(const Arg &val) = 0;
209 };
210 
218 template <class T, class Arg>
220 {
221  private:
222  T *object;
223  void (T::* function)(const Arg &);
224 
225  public:
231  ProbeListenerArg(T *obj, const std::string &name, void (T::* func)(const Arg &))
232  : ProbeListenerArgBase<Arg>(obj->getProbeManager(), name),
233  object(obj),
234  function(func)
235  {}
236 
242  virtual void notify(const Arg &val) { (object->*function)(val); }
243 };
244 
252 template <typename Arg>
253 class ProbePointArg : public ProbePoint
254 {
257 
258  public:
259  ProbePointArg(ProbeManager *manager, std::string name)
260  : ProbePoint(manager, name)
261  {
262  }
263 
271  bool hasListeners() const { return listeners.size() > 0; }
272 
278  {
279  // check listener not already added
280  if (std::find(listeners.begin(), listeners.end(), l) == listeners.end()) {
281  listeners.push_back(static_cast<ProbeListenerArgBase<Arg> *>(l));
282  }
283  }
284 
290  {
291  listeners.erase(std::remove(listeners.begin(), listeners.end(), l),
292  listeners.end());
293  }
294 
299  void notify(const Arg &arg)
300  {
301  for (auto l = listeners.begin(); l != listeners.end(); ++l) {
302  (*l)->notify(arg);
303  }
304  }
305 };
306 #endif//__SIM_PROBE_PROBE_HH__
ProbePoint::name
const std::string name
Definition: probe.hh:140
ProbePointArg::hasListeners
bool hasListeners() const
Informs whether any listeners are attached to this probe.
Definition: probe.hh:271
ProbeManager::addPoint
void addPoint(ProbePoint &point)
Add a ProbePoint to this SimObject ProbeManager.
Definition: probe.cc:112
ProbePoint::getName
std::string getName() const
Definition: probe.hh:147
ProbeListener::ProbeListener
ProbeListener(ProbeManager *manager, const std::string &name)
Definition: probe.cc:66
ProbePoints
Name space containing shared probe point declarations.
Definition: mem.hh:46
ProbeManager::object
const M5_CLASS_VAR_USED SimObject * object
Required for sensible debug messages.
Definition: probe.hh:158
ProbeManager::~ProbeManager
virtual ~ProbeManager()
Definition: probe.hh:166
ProbeListenerArgBase::ProbeListenerArgBase
ProbeListenerArgBase(ProbeManager *pm, const std::string &name)
Definition: probe.hh:205
ProbeManager::removeListener
bool removeListener(std::string pointName, ProbeListener &listener)
Remove a ProbeListener from the ProbePoint named by pointName.
Definition: probe.cc:95
ProbeListenerArg::function
void(T::* function)(const Arg &)
Definition: probe.hh:223
ProbePointArg
ProbePointArg generates a point for the class of Arg.
Definition: thermal_domain.hh:51
ProbeManager::ProbeManager
ProbeManager(SimObject *obj)
Definition: probe.hh:163
std::vector< ProbeListener * >
ProbePoint::~ProbePoint
virtual ~ProbePoint()
Definition: probe.hh:143
ProbePointArg::notify
void notify(const Arg &arg)
called at the ProbePoint call site, passes arg to each listener.
Definition: probe.hh:299
ProbeListenerObject::listeners
std::vector< ProbeListener * > listeners
Definition: probe.hh:102
ProbeListenerArgBase::notify
virtual void notify(const Arg &val)=0
ProbeListener::manager
ProbeManager *const manager
Definition: probe.hh:128
ProbeListener::~ProbeListener
virtual ~ProbeListener()
Definition: probe.cc:72
ProbeListenerArg
ProbeListenerArg generates a listener for the class of Arg and the class type T which is the class co...
Definition: probe.hh:219
M5_CLASS_VAR_USED
#define M5_CLASS_VAR_USED
Definition: compiler.hh:126
ProbeListener
ProbeListener base class; here to simplify things like containers containing multiple types of ProbeL...
Definition: probe.hh:117
ProbeListenerObject::ProbeListenerObject
ProbeListenerObject(const ProbeListenerObjectParams &params)
Definition: probe.cc:51
sim_object.hh
ProbePointArg::listeners
std::vector< ProbeListenerArgBase< Arg > * > listeners
The attached listeners.
Definition: probe.hh:256
ProbeListener::name
const std::string name
Definition: probe.hh:129
ProbeListenerObject::~ProbeListenerObject
virtual ~ProbeListenerObject()
Definition: probe.cc:58
ProbeListener::operator=
ProbeListener & operator=(const ProbeListener &other)=delete
ProbePoint::addListener
virtual void addListener(ProbeListener *listener)=0
compiler.hh
ProbePoint
ProbeListener base class; again used to simplify use of ProbePoints in containers and used as to defi...
Definition: probe.hh:137
X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
ProbeListenerObject
This class is a minimal wrapper around SimObject.
Definition: probe.hh:98
ProbeListenerObject::getProbeManager
ProbeManager * getProbeManager()
Definition: probe.hh:107
ProbeManager::addListener
bool addListener(std::string pointName, ProbeListener &listener)
Add a ProbeListener to the ProbePoint named by pointName.
Definition: probe.cc:78
name
const std::string & name()
Definition: trace.cc:48
ProbePointArg::addListener
void addListener(ProbeListener *l)
adds a ProbeListener to this ProbePoints notify list.
Definition: probe.hh:277
ProbePointArg::ProbePointArg
ProbePointArg(ProbeManager *manager, std::string name)
Definition: probe.hh:259
ProbeManager
ProbeManager is a conduit class that lives on each SimObject, and is used to match up probe listeners...
Definition: probe.hh:154
ProbePoint::removeListener
virtual void removeListener(ProbeListener *listener)=0
ProbeListenerArg::object
T * object
Definition: probe.hh:222
ProbePoint::ProbePoint
ProbePoint(ProbeManager *manager, const std::string &name)
Definition: probe.cc:43
ProbeListenerArg::notify
virtual void notify(const Arg &val)
called when the ProbePoint calls notify.
Definition: probe.hh:242
ProbeManager::points
std::vector< ProbePoint * > points
Vector for name look-up.
Definition: probe.hh:160
ProbeListenerObject::manager
ProbeManager * manager
Definition: probe.hh:101
trace.hh
ProbePointArg::removeListener
void removeListener(ProbeListener *l)
remove a ProbeListener from this ProbePoints notify list.
Definition: probe.hh:289
SimObject::params
const Params & params() const
Definition: sim_object.hh:168
MipsISA::l
Bitfield< 5 > l
Definition: pra_constants.hh:320
ProbeListenerArg::ProbeListenerArg
ProbeListenerArg(T *obj, const std::string &name, void(T::*func)(const Arg &))
Definition: probe.hh:231
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:141
ProbeListenerArgBase
ProbeListenerArgBase is used to define the base interface to a ProbeListenerArg (i....
Definition: probe.hh:202

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