summaryrefslogtreecommitdiff
path: root/src/cpu/o3/dyn_inst.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/o3/dyn_inst.hh')
-rw-r--r--src/cpu/o3/dyn_inst.hh11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/cpu/o3/dyn_inst.hh b/src/cpu/o3/dyn_inst.hh
index 2e434ea02..5fe1b2609 100644
--- a/src/cpu/o3/dyn_inst.hh
+++ b/src/cpu/o3/dyn_inst.hh
@@ -123,6 +123,17 @@ class BaseO3DynInst : public BaseDynInst<Impl>
int _numDestMiscRegs;
public:
+
+#if TRACING_ON
+ /** Tick records used for the pipeline activity viewer. */
+ Tick fetchTick;
+ Tick decodeTick;
+ Tick renameTick;
+ Tick dispatchTick;
+ Tick issueTick;
+ Tick completeTick;
+#endif
+
/** Reads a misc. register, including any side-effects the read
* might have as defined by the architecture.
*/