Go to the documentation of this file.
32 #ifndef __BASE_TRACE_HH__
33 #define __BASE_TRACE_HH__
49 const std::string &
name();
66 template <
typename ...Args>
74 template <
typename ...Args>
76 const std::string &flag,
77 const char *fmt,
const Args &...args)
81 std::ostringstream line;
88 const void *
d,
int len,
const std::string &flag);
92 const std::string &flag,
const std::string &message) = 0;
122 const std::string &flag,
const std::string &message)
override;
180 #define DDUMP(x, data, count) do { \
181 if (GEM5_UNLIKELY(TRACING_ON && ::gem5::debug::x)) \
182 ::gem5::Trace::getDebugLogger()->dump( \
183 ::gem5::curTick(), name(), data, count, #x); \
186 #define DPRINTF(x, ...) do { \
187 if (GEM5_UNLIKELY(TRACING_ON && ::gem5::debug::x)) { \
188 ::gem5::Trace::getDebugLogger()->dprintf_flag( \
189 ::gem5::curTick(), name(), #x, __VA_ARGS__); \
193 #define DPRINTFS(x, s, ...) do { \
194 if (GEM5_UNLIKELY(TRACING_ON && ::gem5::debug::x)) { \
195 ::gem5::Trace::getDebugLogger()->dprintf_flag( \
196 ::gem5::curTick(), (s)->name(), #x, __VA_ARGS__); \
200 #define DPRINTFR(x, ...) do { \
201 if (GEM5_UNLIKELY(TRACING_ON && ::gem5::debug::x)) { \
202 ::gem5::Trace::getDebugLogger()->dprintf_flag( \
203 (::gem5::Tick)-1, std::string(), #x, __VA_ARGS__); \
207 #define DPRINTFV(x, ...) do { \
208 if (GEM5_UNLIKELY(TRACING_ON && (x))) { \
209 ::gem5::Trace::getDebugLogger()->dprintf_flag( \
210 ::gem5::curTick(), name(), x.name(), __VA_ARGS__); \
214 #define DPRINTFN(...) do { \
216 ::gem5::Trace::getDebugLogger()->dprintf( \
217 ::gem5::curTick(), name(), __VA_ARGS__); \
221 #define DPRINTFNR(...) do { \
223 ::gem5::Trace::getDebugLogger()->dprintf( \
224 (::gem5::Tick)-1, "", __VA_ARGS__); \
228 #define DPRINTF_UNCONDITIONAL(x, ...) \
229 GEM5_DEPRECATED_MACRO_STMT(DPRINTF_UNCONDITIONAL, \
232 ::gem5::Trace::getDebugLogger()->dprintf_flag( \
233 ::gem5::curTick(), name(), #x, __VA_ARGS__); \
236 "Use DPRINTFN or DPRINTF with a debug flag instead.")
242 #endif // __BASE_TRACE_HH__
ObjectMatch contains a vector of expressions.
void setIgnore(ObjectMatch &ignore_)
Set objects to ignore.
virtual void logMessage(Tick when, const std::string &name, const std::string &flag, const std::string &message)=0
Log formatted message.
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.
bool match(const std::string &name) const
void addIgnore(const ObjectMatch &ignore_)
Add objects to ignore.
Logger * getDebugLogger()
Get the current global debug logger.
void ccprintf(cp::Print &print)
const std::string & operator()() const
uint64_t Tick
Tick count type.
virtual std::ostream & getOstream()=0
Return an ostream that can be used to send messages to the 'same place' as formatted logMessage messa...
Debug logging base class.
void logMessage(Tick when, const std::string &name, const std::string &flag, const std::string &message) override
Log formatted message.
ObjectMatch ignore
Name match for objects to ignore.
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.
Logging wrapper for ostreams with the format: <when>: <name>: <message-body>
void dprintf(Tick when, const std::string &name, const char *fmt, const Args &...args)
Log a single message.
OstreamLogger(std::ostream &stream_)
void setDebugLogger(Logger *logger)
Delete the current global logger and assign a new one.
const std::string & name()
void enable()
Enable/disable debug logging.
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.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
void add(const ObjectMatch &other)
StringWrap(const std::string &s)
Generated on Wed Jul 28 2021 12:10:23 for gem5 by doxygen 1.8.17