diff options
author | Ciro Santilli <ciro.santilli@arm.com> | 2019-10-11 17:01:24 +0100 |
---|---|---|
committer | Ciro Santilli <ciro.santilli@arm.com> | 2019-11-26 12:46:59 +0000 |
commit | 2841aaae7e5d53cc5b634873a8d689119556c875 (patch) | |
tree | be689f9c221ba856a7498655ea24235dc61d2564 /src | |
parent | 105b2c8914946867f040caf6a8ff7da3c5d028d7 (diff) | |
download | gem5-2841aaae7e5d53cc5b634873a8d689119556c875.tar.xz |
base: create DPRINTF_UNCONDITIONAL
This is similar to DPRINTFN, but it also prints a given flag to allow
communicating to users which flag enabled a given log.
This is useful for logs which are enabled with DTRACE instead of directly
with DPRINTF.
Change-Id: Ife2d2ea88aede1cdcb713f143340a8788a755b01
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/22005
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Reviewed-by: Bobby R. Bruce <bbruce@ucdavis.edu>
Maintainer: Jason Lowe-Power <jason@lowepower.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/base/trace.hh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/base/trace.hh b/src/base/trace.hh index 0fe798ec6..0b136f931 100644 --- a/src/base/trace.hh +++ b/src/base/trace.hh @@ -217,6 +217,11 @@ class Named Trace::getDebugLogger()->dprintf((Tick)-1, std::string(), __VA_ARGS__); \ } while (0) +#define DPRINTF_UNCONDITIONAL(x, ...) do { \ + Trace::getDebugLogger()->dprintf_flag( \ + curTick(), name(), #x, __VA_ARGS__); \ +} while (0) + #else // !TRACING_ON #define DTRACE(x) (false) |