Go to the documentation of this file.
32 #ifndef __BASE_TRACE_HH__
33 #define __BASE_TRACE_HH__
58 template <
typename ...Args>
66 template <
typename ...Args>
68 const std::string &flag,
69 const char *fmt,
const Args &...args)
73 std::ostringstream line;
80 const void *
d,
int len,
const std::string &flag);
84 const std::string &flag,
const std::string &message) = 0;
114 const std::string &flag,
const std::string &message)
override;
146 const std::string &
name();
186 #define DDUMP(x, data, count) do { \
187 using namespace Debug; \
188 if (M5_UNLIKELY(DTRACE(x))) \
189 Trace::getDebugLogger()->dump( \
190 curTick(), name(), data, count, #x); \
193 #define DPRINTF(x, ...) do { \
194 using namespace Debug; \
195 if (M5_UNLIKELY(DTRACE(x))) { \
196 Trace::getDebugLogger()->dprintf_flag( \
197 curTick(), name(), #x, __VA_ARGS__); \
201 #define DPRINTFS(x, s, ...) do { \
202 using namespace Debug; \
203 if (M5_UNLIKELY(DTRACE(x))) { \
204 Trace::getDebugLogger()->dprintf_flag( \
205 curTick(), s->name(), #x, __VA_ARGS__); \
209 #define DPRINTFR(x, ...) do { \
210 using namespace Debug; \
211 if (M5_UNLIKELY(DTRACE(x))) { \
212 Trace::getDebugLogger()->dprintf_flag( \
213 (Tick)-1, std::string(), #x, __VA_ARGS__); \
217 #define DDUMPN(data, count) do { \
218 Trace::getDebugLogger()->dump(curTick(), name(), data, count); \
221 #define DPRINTFN(...) do { \
222 Trace::getDebugLogger()->dprintf(curTick(), name(), __VA_ARGS__); \
225 #define DPRINTFNR(...) do { \
226 Trace::getDebugLogger()->dprintf((Tick)-1, std::string(), __VA_ARGS__); \
229 #define DPRINTF_UNCONDITIONAL(x, ...) do { \
230 Trace::getDebugLogger()->dprintf_flag( \
231 curTick(), name(), #x, __VA_ARGS__); \
236 #define DDUMP(x, data, count) do {} while (0)
237 #define DPRINTF(x, ...) do {} while (0)
238 #define DPRINTFS(x, ...) do {} while (0)
239 #define DPRINTFR(...) do {} while (0)
240 #define DDUMPN(data, count) do {} while (0)
241 #define DPRINTFN(...) do {} while (0)
242 #define DPRINTFNR(...) do {} while (0)
243 #define DPRINTF_UNCONDITIONAL(x, ...) do {} while (0)
249 #endif // __BASE_TRACE_HH__
bool match(const std::string &name) const
uint64_t Tick
Tick count type.
Logger * getDebugLogger()
Get the current global debug logger.
virtual std::ostream & getOstream()=0
Return an ostream that can be used to send messages to the 'same place' as formatted logMessage messa...
const std::string & operator()() const
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.
void setIgnore(ObjectMatch &ignore_)
Set objects to ignore.
void setDebugLogger(Logger *logger)
Delete the current global logger and assign a new one.
StringWrap(const std::string &s)
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.
void enable()
Enable/disable debug logging.
Debug logging base class.
void logMessage(Tick when, const std::string &name, const std::string &flag, const std::string &message) override
Log formatted message.
Logging wrapper for ostreams with the format: <when>: <name>: <message-body>
virtual void logMessage(Tick when, const std::string &name, const std::string &flag, const std::string &message)=0
Log formatted message.
std::ostream & getOstream() override
Return an ostream that can be used to send messages to the 'same place' as formatted logMessage messa...
std::ostream & output()
Get the ostream from the current global logger.
void addIgnore(const ObjectMatch &ignore_)
Add objects to ignore.
Named(const std::string &name_)
ObjectMatch ignore
Name match for objects to ignore.
void ccprintf(cp::Print &print)
void add(const ObjectMatch &other)
void dprintf(Tick when, const std::string &name, const char *fmt, const Args &...args)
Log a single message.
const std::string & name()
const std::string & name() const
OstreamLogger(std::ostream &stream_)
ObjectMatch contains a vector of expressions.
Generated on Tue Jun 22 2021 15:28:25 for gem5 by doxygen 1.8.17