summaryrefslogtreecommitdiff
path: root/src/mem/probes/mem_trace.hh
diff options
context:
space:
mode:
authorVictor Garcia <victor.garcia@arm.com>2016-04-07 11:32:38 -0500
committerVictor Garcia <victor.garcia@arm.com>2016-04-07 11:32:38 -0500
commitdf5a81183303fa941d71e866ff8d258e4d6a510e (patch)
tree9a3b6d1cec6ac0a672480ad477090d743af54e0d /src/mem/probes/mem_trace.hh
parenta3bf4aa6ec9caa68a558f7347d55991f7a254fa5 (diff)
downloadgem5-df5a81183303fa941d71e866ff8d258e4d6a510e.tar.xz
mem: Add Program Counter to MemTraceProbe
Diffstat (limited to 'src/mem/probes/mem_trace.hh')
-rw-r--r--src/mem/probes/mem_trace.hh5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mem/probes/mem_trace.hh b/src/mem/probes/mem_trace.hh
index d34235eef..158c5aacb 100644
--- a/src/mem/probes/mem_trace.hh
+++ b/src/mem/probes/mem_trace.hh
@@ -64,6 +64,11 @@ class MemTraceProbe : public BaseMemProbe
/** Trace output stream */
ProtoOutputStream *traceStream;
+
+ private:
+
+ /** Include the Program Counter in the memory trace */
+ const bool withPC;
};
#endif //__MEM_PROBES_MEM_TRACE_HH__