summaryrefslogtreecommitdiff
path: root/src/base/trace.cc
diff options
context:
space:
mode:
authorCiro Santilli <ciro.santilli@arm.com>2019-10-11 17:57:14 +0100
committerCiro Santilli <ciro.santilli@arm.com>2019-11-26 12:46:59 +0000
commit1ef80a590e509daa70e08c44f22f8f2cfbcf4bc1 (patch)
tree7a63af66c35e0ba6f03a9ac777ae023ded99d9b6 /src/base/trace.cc
parent2841aaae7e5d53cc5b634873a8d689119556c875 (diff)
downloadgem5-1ef80a590e509daa70e08c44f22f8f2cfbcf4bc1.tar.xz
base: generalize ExecTicks to all messages with FmtTicksOff
If FmtTicksOff is given, ticks are disabled for all log messages. The original motivation of this is to bring the implementation of native traces closer to that of other traces to help refactoring done in future patches. One additional advantage of this is that sometimes we want to compare traces of a given program under different conditions, so the start of the ROI is different, and the different initial timestamp makes a diff useless by showing differences on every line. Change-Id: Idd6cb105d301b3b9b064996043f4ca75ddafe0af Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/22006 Reviewed-by: Jason Lowe-Power <jason@lowepower.com> Maintainer: Jason Lowe-Power <jason@lowepower.com> Tested-by: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'src/base/trace.cc')
-rw-r--r--src/base/trace.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/base/trace.cc b/src/base/trace.cc
index c7f338bf5..6b18787c2 100644
--- a/src/base/trace.cc
+++ b/src/base/trace.cc
@@ -46,6 +46,7 @@
#include "base/output.hh"
#include "base/str.hh"
#include "debug/FmtFlag.hh"
+#include "debug/FmtTicksOff.hh"
const std::string &name()
{
@@ -150,7 +151,7 @@ OstreamLogger::logMessage(Tick when, const std::string &name,
if (!name.empty() && ignore.match(name))
return;
- if (when != MaxTick)
+ if (!DTRACE(FmtTicksOff) && (when != MaxTick))
ccprintf(stream, "%7d: ", when);
if (DTRACE(FmtFlag) && !flag.empty())