gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
debug.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 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) 2003-2005 The Regents of The University of Michigan
15  * Copyright (c) 2010 The Hewlett-Packard Development Company
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 #ifndef __BASE_DEBUG_HH__
43 #define __BASE_DEBUG_HH__
44 
45 #include <initializer_list>
46 #include <map>
47 #include <string>
48 #include <vector>
49 
50 namespace Debug {
51 
52 void breakpoint();
53 
54 class Flag
55 {
56  protected:
57  static bool _globalEnable; // whether debug tracings are enabled
58 
59  const char *_name;
60  const char *_desc;
61 
62  virtual void sync() { }
63 
64  public:
65  Flag(const char *name, const char *desc);
66  virtual ~Flag();
67 
68  std::string name() const { return _name; }
69  std::string desc() const { return _desc; }
70 
71  virtual void enable() = 0;
72  virtual void disable() = 0;
73  virtual bool enabled() const = 0;
74 
75  operator bool() const { return enabled(); }
76 
77  static void globalEnable();
78  static void globalDisable();
79 };
80 
81 class SimpleFlag : public Flag
82 {
83  protected:
85  const bool _isFormat = false;
86 
87  bool _tracing = false; // tracing is enabled and flag is on
88  bool _enabled = false; // flag enablement status
89 
90  void sync() override { _tracing = _globalEnable && _enabled; }
91 
92  public:
93  SimpleFlag(const char *name, const char *desc, bool is_format=false)
94  : Flag(name, desc), _isFormat(is_format)
95  {}
96 
97  bool enabled() const override { return _tracing; }
98 
99  void enable() override { _enabled = true; sync(); }
100  void disable() override { _enabled = false; sync(); }
101 
108  bool isFormat() const { return _isFormat; }
109 };
110 
111 class CompoundFlag : public Flag
112 {
113  protected:
115 
116  public:
117  template<typename... Args>
118  CompoundFlag(const char *name, const char *desc,
119  std::initializer_list<Flag *> flags)
120  : Flag(name, desc),
121  _kids(flags)
122  {
123  }
124 
125  const std::vector<Flag *> &kids() const { return _kids; }
126 
127  void enable() override;
128  void disable() override;
129  bool enabled() const override;
130 };
131 
132 typedef std::map<std::string, Flag *> FlagsMap;
133 FlagsMap &allFlags();
134 
135 Flag *findFlag(const std::string &name);
136 
137 bool changeFlag(const char *s, bool value);
138 
139 } // namespace Debug
140 
141 void setDebugFlag(const char *string);
142 
143 void clearDebugFlag(const char *string);
144 
145 void dumpDebugFlags();
146 
153 #if TRACING_ON
154 # define DTRACE(x) (Debug::x)
155 #else // !TRACING_ON
156 # define DTRACE(x) (false)
157 #endif // TRACING_ON
158  // end of api_trace
159 
160 #endif // __BASE_DEBUG_HH__
Debug::Flag::disable
virtual void disable()=0
Debug::CompoundFlag::disable
void disable() override
Definition: debug.cc:133
Debug::CompoundFlag
Definition: debug.hh:111
Debug::Flag::_globalEnable
static bool _globalEnable
Definition: debug.hh:57
Debug::Flag::_desc
const char * _desc
Definition: debug.hh:60
Debug::breakpoint
void breakpoint()
Definition: debug.cc:60
Debug::CompoundFlag::CompoundFlag
CompoundFlag(const char *name, const char *desc, std::initializer_list< Flag * > flags)
Definition: debug.hh:118
Debug::Flag::enabled
virtual bool enabled() const =0
Debug::findFlag
Flag * findFlag(const std::string &name)
Definition: debug.cc:83
Debug::Flag::Flag
Flag(const char *name, const char *desc)
Definition: debug.cc:91
Debug::CompoundFlag::kids
const std::vector< Flag * > & kids() const
Definition: debug.hh:125
Debug::allFlags
FlagsMap & allFlags()
Definition: debug.cc:74
std::vector
STL vector class.
Definition: stl.hh:37
Debug::Flag::desc
std::string desc() const
Definition: debug.hh:69
Debug::SimpleFlag::disable
void disable() override
Definition: debug.hh:100
Debug::SimpleFlag
Definition: debug.hh:81
Debug::SimpleFlag::enable
void enable() override
Definition: debug.hh:99
Debug::CompoundFlag::enable
void enable() override
Definition: debug.cc:126
Debug::SimpleFlag::enabled
bool enabled() const override
Definition: debug.hh:97
Debug::CompoundFlag::_kids
std::vector< Flag * > _kids
Definition: debug.hh:114
setDebugFlag
void setDebugFlag(const char *string)
Definition: debug.cc:172
Debug::FlagsMap
std::map< std::string, Flag * > FlagsMap
Definition: debug.hh:132
Debug::Flag::globalEnable
static void globalEnable()
Definition: debug.cc:110
Debug::Flag
Definition: debug.hh:54
Debug::SimpleFlag::isFormat
bool isFormat() const
Checks whether this flag is a conventional debug flag, or a flag that modifies the way debug informat...
Definition: debug.hh:108
Debug::SimpleFlag::_enabled
bool _enabled
Definition: debug.hh:88
Debug::CompoundFlag::enabled
bool enabled() const override
Definition: debug.cc:140
Debug::changeFlag
bool changeFlag(const char *s, bool value)
Definition: debug.cc:154
Debug::Flag::globalDisable
static void globalDisable()
Definition: debug.cc:118
name
const std::string & name()
Definition: trace.cc:48
clearDebugFlag
void clearDebugFlag(const char *string)
Definition: debug.cc:178
Debug
Definition: debug.cc:52
Debug::SimpleFlag::SimpleFlag
SimpleFlag(const char *name, const char *desc, bool is_format=false)
Definition: debug.hh:93
Debug::SimpleFlag::_tracing
bool _tracing
Definition: debug.hh:87
Debug::Flag::name
std::string name() const
Definition: debug.hh:68
Debug::Flag::_name
const char * _name
Definition: debug.hh:59
Debug::SimpleFlag::_isFormat
const bool _isFormat
Whether this flag changes debug formatting.
Definition: debug.hh:85
Debug::Flag::~Flag
virtual ~Flag()
Definition: debug.cc:104
Debug::Flag::enable
virtual void enable()=0
Debug::SimpleFlag::sync
void sync() override
Definition: debug.hh:90
ArmISA::s
Bitfield< 4 > s
Definition: miscregs_types.hh:556
Debug::Flag::sync
virtual void sync()
Definition: debug.hh:62
dumpDebugFlags
void dumpDebugFlags()
Definition: debug.cc:184

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