summaryrefslogtreecommitdiff
path: root/src/cpu/o3/dyn_inst_impl.hh
diff options
context:
space:
mode:
authorGiacomo Gabrielli <Giacomo.Gabrielli@arm.com>2011-07-15 11:53:35 -0500
committerGiacomo Gabrielli <Giacomo.Gabrielli@arm.com>2011-07-15 11:53:35 -0500
commit69ef57fd0f226af90faf46ac877343b5493df693 (patch)
tree3e4572c2a803aea5636a4059ce853144fd5f0ae0 /src/cpu/o3/dyn_inst_impl.hh
parent09914cdf8f270cb4ab1861d1ff92b91e49b39608 (diff)
downloadgem5-69ef57fd0f226af90faf46ac877343b5493df693.tar.xz
O3: Create a pipeline activity viewer for the O3 CPU model.
Implemented a pipeline activity viewer as a python script (util/o3-pipeview.py) and modified O3 code base to support an extra trace flag (O3PipeView) for generating traces to be used as inputs by the tool.
Diffstat (limited to 'src/cpu/o3/dyn_inst_impl.hh')
-rw-r--r--src/cpu/o3/dyn_inst_impl.hh9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/cpu/o3/dyn_inst_impl.hh b/src/cpu/o3/dyn_inst_impl.hh
index 89d6528a1..9216c5fa7 100644
--- a/src/cpu/o3/dyn_inst_impl.hh
+++ b/src/cpu/o3/dyn_inst_impl.hh
@@ -85,6 +85,15 @@ BaseO3DynInst<Impl>::initVars()
}
_numDestMiscRegs = 0;
+
+#if TRACING_ON
+ fetchTick = 0;
+ decodeTick = 0;
+ renameTick = 0;
+ dispatchTick = 0;
+ issueTick = 0;
+ completeTick = 0;
+#endif
}
template <class Impl>