From: Ali Saidi Date: Fri, 23 Jan 2009 22:19:48 +0000 (-0500) Subject: Trace: Add DPRINTFS macro that takes parameter to call name() for trace printing. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=56d5212ba7a3588feb8ce0ed5d3a31c704106730;p=gem5.git Trace: Add DPRINTFS macro that takes parameter to call name() for trace printing. --- diff --git a/src/base/trace.hh b/src/base/trace.hh index 72d7ba605..fa24e9c48 100644 --- a/src/base/trace.hh +++ b/src/base/trace.hh @@ -97,6 +97,12 @@ inline const std::string &name() { return Trace::DefaultName; } Trace::dprintf(curTick, name(), __VA_ARGS__); \ } while (0) +#define DPRINTFS(x,s, ...) do { \ + if (DTRACE(x)) \ + Trace::dprintf(curTick, s->name(), __VA_ARGS__); \ +} while (0) + + #define DPRINTFR(x, ...) do { \ if (DTRACE(x)) \ Trace::dprintf((Tick)-1, std::string(), __VA_ARGS__); \ @@ -119,6 +125,7 @@ inline const std::string &name() { return Trace::DefaultName; } #define DTRACE(x) (false) #define DDUMP(x, data, count) do {} while (0) #define DPRINTF(x, ...) do {} while (0) +#define DPRINTFS(x, ...) do {} while (0) #define DPRINTFR(...) do {} while (0) #define DDUMPN(data, count) do {} while (0) #define DPRINTFN(...) do {} while (0)