diff options
author | Lisa Hsu <hsul@eecs.umich.edu> | 2005-02-01 17:35:01 -0500 |
---|---|---|
committer | Lisa Hsu <hsul@eecs.umich.edu> | 2005-02-01 17:35:01 -0500 |
commit | 45bb2bf14d501f4ccab0bb399f53f8b35f8c82e6 (patch) | |
tree | c7abff1e392e3658e95e7765504ed1986e513954 /objects | |
parent | 38e6d1f7829942a9a84b6f6316c8f12361b19f69 (diff) | |
download | gem5-45bb2bf14d501f4ccab0bb399f53f8b35f8c82e6.tar.xz |
some changes for a split lifo in the new python config.
objects/BaseCache.mpy:
add all the Split parameters to the BaseCache simobj.
--HG--
extra : convert_revision : 4fcba3ce730f730ca8628ac7f4aa0fb9476474ab
Diffstat (limited to 'objects')
-rw-r--r-- | objects/BaseCache.mpy | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/objects/BaseCache.mpy b/objects/BaseCache.mpy index 67ca3c04e..5f22a344a 100644 --- a/objects/BaseCache.mpy +++ b/objects/BaseCache.mpy @@ -12,6 +12,8 @@ simobj BaseCache(BaseMem): do_copy = Param.Bool(false, "perform fast copies in the cache") hash_delay = Param.Int(1, "time in cycles of hash access") in_bus = Param.Bus(NULL, "incoming bus object") + lifo = Param.Bool(false, + "whether this NIC partition should use LIFO repl. policy") max_miss_count = Param.Counter(0, "number of misses to handle before calling exit") mshrs = Param.Int("number of MSHRs (max outstanding requests)") @@ -21,10 +23,15 @@ simobj BaseCache(BaseMem): protocol = Param.CoherenceProtocol(NULL, "coherence protocol to use") repl = Param.Repl(NULL, "replacement policy") size = Param.Int("capacity in bytes") + split = Param.Bool(false, "whether or not this cache is split") + split_size = Param.Int(0, + "How many ways of the cache belong to CPU/LRU partition") store_compressed = Param.Bool(false, "Store compressed data in the cache") subblock_size = Param.Int(0, "Size of subblock in IIC used for compression") tgts_per_mshr = Param.Int("max number of accesses per MSHR") trace_addr = Param.Addr(0, "address to trace") + two_queue = Param.Bool(false, + "whether the lifo should have two queue replacement") write_buffers = Param.Int(8, "number of write buffers") |