From 02881a7bf3e5a5920d258d13ed0aed282f252f07 Mon Sep 17 00:00:00 2001 From: Curtis Dunham Date: Wed, 30 Sep 2015 15:21:55 -0500 Subject: base: remove Trace::enabled flag The DTRACE() macro tests both Trace::enabled and the specific flag. This change uses the same administrative interface for enabling/disabling tracing, but masks the SimpleFlags settings directly. This eliminates a load for every DTRACE() test, e.g. DPRINTF. --- util/systemc/main.cc | 2 +- util/systemc/sc_gem5_control.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'util/systemc') diff --git a/util/systemc/main.cc b/util/systemc/main.cc index 2ca6bbe65..f4c7b6305 100644 --- a/util/systemc/main.cc +++ b/util/systemc/main.cc @@ -162,7 +162,7 @@ SimControl::SimControl(sc_core::sc_module_name name, Stats::initSimStats(); Stats::registerHandlers(CxxConfig::statsReset, CxxConfig::statsDump); - Trace::enabled = true; + Trace::enable(); setDebugFlag("Terminal"); checkpoint_restore = false; diff --git a/util/systemc/sc_gem5_control.cc b/util/systemc/sc_gem5_control.cc index 5dd3b1ed5..cf6e0d57c 100644 --- a/util/systemc/sc_gem5_control.cc +++ b/util/systemc/sc_gem5_control.cc @@ -241,7 +241,7 @@ Gem5TopLevelModule::Gem5TopLevelModule(sc_core::sc_module_name name, Stats::initSimStats(); Stats::registerHandlers(CxxConfig::statsReset, CxxConfig::statsDump); - Trace::enabled = true; + Trace::enable(); config_file = new CxxIniFile(); -- cgit v1.2.3