diff options
author | Andreas Sandberg <andreas.sandberg@arm.com> | 2015-08-04 10:29:13 +0100 |
---|---|---|
committer | Andreas Sandberg <andreas.sandberg@arm.com> | 2015-08-04 10:29:13 +0100 |
commit | a3f49f60c74c33ede433a024ae85d1ca47ed3c78 (patch) | |
tree | e25a85dccdffd555d92326aafb930e0cbf755b34 /tests/configs/tgen-simple-mem.py | |
parent | 022e69e6de513fce2efea8d732e9274624ce3e94 (diff) | |
download | gem5-a3f49f60c74c33ede433a024ae85d1ca47ed3c78.tar.xz |
mem: Move trace functionality from the CommMonitor to a probe
This changeset moves the access trace functionality from the
CommMonitor into a separate probe. The probe can be hooked up to any
component that exports probe points of the type ProbePoints::Packet.
This patch moves the dependency on Google's Protocol Buffers library
from the CommMonitor to the MemTraceProbe, which means that the
CommMonitor (including stack distance profiling) no long depends on
it.
Diffstat (limited to 'tests/configs/tgen-simple-mem.py')
-rw-r--r-- | tests/configs/tgen-simple-mem.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/configs/tgen-simple-mem.py b/tests/configs/tgen-simple-mem.py index 8c2aa80a9..d128eb37d 100644 --- a/tests/configs/tgen-simple-mem.py +++ b/tests/configs/tgen-simple-mem.py @@ -56,8 +56,8 @@ system = System(cpu = cpu, physmem = SimpleMemory(), # add a communication monitor, and also trace all the packets and # calculate and verify stack distance -system.monitor = CommMonitor(trace_file = "monitor.ptrc.gz", - trace_enable = True) +system.monitor = CommMonitor() +system.monitor.trace = MemTraceProbe(trace_file = "monitor.ptrc.gz") system.monitor.stackdist = StackDistProbe(verify = True) # connect the traffic generator to the bus via a communication monitor |