summaryrefslogtreecommitdiff
path: root/python/m5/objects/BaseCache.mpy
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2005-05-13 15:01:42 -0400
committerSteve Reinhardt <stever@eecs.umich.edu>2005-05-13 15:01:42 -0400
commit16dcebf4c471cfa75aab2c50d17931c5cfbe8ae9 (patch)
tree3ec44b5f0b7d19c4255041f7c44851511f38dc8d /python/m5/objects/BaseCache.mpy
parentea18fda771c5de4f48861915c429a4fec5e82be1 (diff)
downloadgem5-16dcebf4c471cfa75aab2c50d17931c5cfbe8ae9.tar.xz
Add mem_trace parameter to BaseCache.
python/m5/objects/BaseCache.mpy: Add mem_trace parameter. --HG-- extra : convert_revision : a0bab53fabd7426eee5ca9c845c02a6ac2e1722f
Diffstat (limited to 'python/m5/objects/BaseCache.mpy')
-rw-r--r--python/m5/objects/BaseCache.mpy2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/m5/objects/BaseCache.mpy b/python/m5/objects/BaseCache.mpy
index da0c7c50e..a9a665f77 100644
--- a/python/m5/objects/BaseCache.mpy
+++ b/python/m5/objects/BaseCache.mpy
@@ -19,6 +19,8 @@ simobj BaseCache(BaseMem):
"whether this NIC partition should use LIFO repl. policy")
max_miss_count = Param.Counter(0,
"number of misses to handle before calling exit")
+ mem_trace = Param.MemTraceWriter(NULL,
+ "memory trace writer to record accesses")
mshrs = Param.Int("number of MSHRs (max outstanding requests)")
out_bus = Param.Bus("outgoing bus object")
prioritizeRequests = Param.Bool(False,