diff options
author | Kevin Lim <ktlim@umich.edu> | 2005-05-17 14:34:46 -0400 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2005-05-17 14:34:46 -0400 |
commit | e5721ce6777726fa54aee49be414233656bd98d1 (patch) | |
tree | 1c5b1cbee861b15f61bcfa9c671243cfd958232f /python/m5/objects | |
parent | c03e97b62d2adbe335a883b5fafa10c973e2c4d1 (diff) | |
parent | dd48c2c42cff07b3102981f0c1efcbd094f03705 (diff) | |
download | gem5-e5721ce6777726fa54aee49be414233656bd98d1.tar.xz |
Merge ktlim@zizzer:/bk/m5 into zamp.eecs.umich.edu:/z/ktlim2/current/m5
--HG--
extra : convert_revision : c403960153ed648e7da7251465ca9350ba10cd27
Diffstat (limited to 'python/m5/objects')
-rw-r--r-- | python/m5/objects/BaseCache.mpy | 2 |
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, |