MemTraceProbe.py (10996:d48fda705f4d) MemTraceProbe.py (11437:210624864179)
1# Copyright (c) 2014-2015 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 32 unchanged lines hidden (view full) ---

41
42class MemTraceProbe(BaseMemProbe):
43 type = 'MemTraceProbe'
44 cxx_header = "mem/probes/mem_trace.hh"
45
46 # Boolean to compress the trace or not.
47 trace_compress = Param.Bool(True, "Enable trace compression")
48
1# Copyright (c) 2014-2015 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 32 unchanged lines hidden (view full) ---

41
42class MemTraceProbe(BaseMemProbe):
43 type = 'MemTraceProbe'
44 cxx_header = "mem/probes/mem_trace.hh"
45
46 # Boolean to compress the trace or not.
47 trace_compress = Param.Bool(True, "Enable trace compression")
48
49 # For requests with a valid PC, include the PC in the trace
50 with_pc = Param.Bool(False, "Include PC info in the trace")
51
49 # packet trace output file, disabled by default
50 trace_file = Param.String("", "Packet trace output file")
51
52 # packet trace output file, disabled by default
53 trace_file = Param.String("", "Packet trace output file")
54