gem5  v20.0.0.3
trace.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2014, 2019 ARM Limited
3  * All rights reserved
4  *
5  * Copyright (c) 2001-2006 The Regents of The University of Michigan
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions are
10  * met: redistributions of source code must retain the above copyright
11  * notice, this list of conditions and the following disclaimer;
12  * redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution;
15  * neither the name of the copyright holders nor the names of its
16  * contributors may be used to endorse or promote products derived from
17  * this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 #ifndef __BASE_TRACE_HH__
33 #define __BASE_TRACE_HH__
34 
35 #include <string>
36 
37 #include "base/cprintf.hh"
38 #include "base/debug.hh"
39 #include "base/match.hh"
40 #include "base/types.hh"
41 #include "sim/core.hh"
42 
43 namespace Trace {
44 
47 class Logger
48 {
49  protected:
52 
53  public:
55  template <typename ...Args>
56  void dprintf(Tick when, const std::string &name, const char *fmt,
57  const Args &...args)
58  {
59  dprintf_flag(when, name, "", fmt, args...);
60  }
61 
63  template <typename ...Args>
64  void dprintf_flag(Tick when, const std::string &name,
65  const std::string &flag,
66  const char *fmt, const Args &...args)
67  {
68  if (!name.empty() && ignore.match(name))
69  return;
70  std::ostringstream line;
71  ccprintf(line, fmt, args...);
72  logMessage(when, name, flag, line.str());
73  }
74 
76  void dump(Tick when, const std::string &name,
77  const void *d, int len, const std::string &flag);
78 
80  virtual void logMessage(Tick when, const std::string &name,
81  const std::string &flag, const std::string &message) = 0;
82 
88  virtual std::ostream &getOstream() = 0;
89 
91  void setIgnore(ObjectMatch &ignore_) { ignore = ignore_; }
92 
94  void addIgnore(const ObjectMatch &ignore_) { ignore.add(ignore_); }
95 
96  virtual ~Logger() { }
97 };
98 
101 class OstreamLogger : public Logger
102 {
103  protected:
104  std::ostream &stream;
105 
106  public:
107  OstreamLogger(std::ostream &stream_) : stream(stream_)
108  { }
109 
110  void logMessage(Tick when, const std::string &name,
111  const std::string &flag, const std::string &message) override;
112 
113  std::ostream &getOstream() override { return stream; }
114 };
115 
119 
121 std::ostream &output();
122 
124 void setDebugLogger(Logger *logger);
125 
127 void enable();
128 void disable();
129 
130 } // namespace Trace
131 
132 // This silly little class allows us to wrap a string in a functor
133 // object so that we can give a name() that DPRINTF will like
135 {
136  std::string str;
137  StringWrap(const std::string &s) : str(s) {}
138  const std::string &operator()() const { return str; }
139 };
140 
141 // Return the global context name "global". This function gets called when
142 // the DPRINTF macros are used in a context without a visible name() function
143 const std::string &name();
144 
145 // Interface for things with names. (cf. SimObject but without other
146 // functionality). This is useful when using DPRINTF
147 class Named
148 {
149  protected:
150  const std::string _name;
151 
152  public:
153  Named(const std::string &name_) : _name(name_) { }
154 
155  public:
156  const std::string &name() const { return _name; }
157 };
158 
159 //
160 // DPRINTF is a debugging trace facility that allows one to
161 // selectively enable tracing statements. To use DPRINTF, there must
162 // be a function or functor called name() that returns a const
163 // std::string & in the current scope.
164 //
165 // If you desire that the automatic printing not occur, use DPRINTFR
166 // (R for raw)
167 //
168 
169 #if TRACING_ON
170 
171 #define DTRACE(x) (Debug::x)
172 
173 #define DDUMP(x, data, count) do { \
174  using namespace Debug; \
175  if (DTRACE(x)) \
176  Trace::getDebugLogger()->dump( \
177  curTick(), name(), data, count, #x); \
178 } while (0)
179 
180 #define DPRINTF(x, ...) do { \
181  using namespace Debug; \
182  if (DTRACE(x)) { \
183  Trace::getDebugLogger()->dprintf_flag( \
184  curTick(), name(), #x, __VA_ARGS__); \
185  } \
186 } while (0)
187 
188 #define DPRINTFS(x, s, ...) do { \
189  using namespace Debug; \
190  if (DTRACE(x)) { \
191  Trace::getDebugLogger()->dprintf_flag( \
192  curTick(), s->name(), #x, __VA_ARGS__); \
193  } \
194 } while (0)
195 
196 #define DPRINTFR(x, ...) do { \
197  using namespace Debug; \
198  if (DTRACE(x)) { \
199  Trace::getDebugLogger()->dprintf_flag( \
200  (Tick)-1, std::string(), #x, __VA_ARGS__); \
201  } \
202 } while (0)
203 
204 #define DDUMPN(data, count) do { \
205  Trace::getDebugLogger()->dump(curTick(), name(), data, count); \
206 } while (0)
207 
208 #define DPRINTFN(...) do { \
209  Trace::getDebugLogger()->dprintf(curTick(), name(), __VA_ARGS__); \
210 } while (0)
211 
212 #define DPRINTFNR(...) do { \
213  Trace::getDebugLogger()->dprintf((Tick)-1, std::string(), __VA_ARGS__); \
214 } while (0)
215 
216 #define DPRINTF_UNCONDITIONAL(x, ...) do { \
217  Trace::getDebugLogger()->dprintf_flag( \
218  curTick(), name(), #x, __VA_ARGS__); \
219 } while (0)
220 
221 #else // !TRACING_ON
222 
223 #define DTRACE(x) (false)
224 #define DDUMP(x, data, count) do {} while (0)
225 #define DPRINTF(x, ...) do {} while (0)
226 #define DPRINTFS(x, ...) do {} while (0)
227 #define DPRINTFR(...) do {} while (0)
228 #define DDUMPN(data, count) do {} while (0)
229 #define DPRINTFN(...) do {} while (0)
230 #define DPRINTFNR(...) do {} while (0)
231 #define DPRINTF_UNCONDITIONAL(x, ...) do {} while (0)
232 
233 #endif // TRACING_ON
234 
235 #endif // __BASE_TRACE_HH__
void ccprintf(cp::Print &print)
Definition: cprintf.hh:127
std::ostream & stream
Definition: trace.hh:104
std::ostream & getOstream() override
Return an ostream that can be used to send messages to the &#39;same place&#39; as formatted logMessage messa...
Definition: trace.hh:113
const std::string & operator()() const
Definition: trace.hh:138
void dprintf_flag(Tick when, const std::string &name, const std::string &flag, const char *fmt, const Args &...args)
Log a single message with a flag prefix.
Definition: trace.hh:64
StringWrap(const std::string &s)
Definition: trace.hh:137
void setIgnore(ObjectMatch &ignore_)
Set objects to ignore.
Definition: trace.hh:91
virtual ~Logger()
Definition: trace.hh:96
Definition: trace.hh:147
const std::string & name()
Definition: trace.cc:50
bool match(const std::string &name) const
Definition: match.hh:66
virtual std::ostream & getOstream()=0
Return an ostream that can be used to send messages to the &#39;same place&#39; as formatted logMessage messa...
Bitfield< 4 > s
OstreamLogger(std::ostream &stream_)
Definition: trace.hh:107
uint64_t Tick
Tick count type.
Definition: types.hh:61
Debug logging base class.
Definition: trace.hh:47
Bitfield< 9 > d
Bitfield< 18, 16 > len
ObjectMatch ignore
Name match for objects to ignore.
Definition: trace.hh:51
const std::string _name
Definition: trace.hh:150
void add(const ObjectMatch &other)
Definition: match.cc:46
std::ostream & output()
Get the ostream from the current global logger.
Definition: trace.cc:77
void addIgnore(const ObjectMatch &ignore_)
Add objects to ignore.
Definition: trace.hh:94
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
const std::string & name() const
Definition: trace.hh:156
Logging wrapper for ostreams with the format: <when>: <name>: <message-body>
Definition: trace.hh:101
virtual void logMessage(Tick when, const std::string &name, const std::string &flag, const std::string &message)=0
Log formatted message.
std::string str
Definition: trace.hh:136
Logger * getDebugLogger()
Get the current global debug logger.
Definition: trace.cc:67
void enable()
Enable/disable debug logging.
Definition: trace.cc:92
void setDebugLogger(Logger *logger)
Delete the current global logger and assign a new one.
Definition: trace.cc:83
Named(const std::string &name_)
Definition: trace.hh:153
ObjectMatch contains a vector of expressions.
Definition: match.hh:53
void dprintf(Tick when, const std::string &name, const char *fmt, const Args &...args)
Log a single message.
Definition: trace.hh:56
void dump(Tick when, const std::string &name, const void *d, int len, const std::string &flag)
Dump a block of data of length len.
Definition: trace.cc:107
void disable()
Definition: trace.cc:98

Generated on Fri Jul 3 2020 15:52:59 for gem5 by doxygen 1.8.13