summaryrefslogtreecommitdiff
path: root/src/mem
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@gmail.com>2007-08-03 03:51:13 -0400
committerSteve Reinhardt <stever@gmail.com>2007-08-03 03:51:13 -0400
commit62aa1d7f559622dcb04b1b2fe1e2ecec375883a3 (patch)
treed562fd108f512ff61b8e1f1637e90308d2c17dd3 /src/mem
parentf20ba92a76c97d520b625d9ff6a962df1a875f23 (diff)
downloadgem5-62aa1d7f559622dcb04b1b2fe1e2ecec375883a3.tar.xz
cache: get rid of obsolete params from python.
--HG-- extra : convert_revision : cd40e0ef938ef6da1cccedf7be01c3ac5b4883fb
Diffstat (limited to 'src/mem')
-rw-r--r--src/mem/cache/BaseCache.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mem/cache/BaseCache.py b/src/mem/cache/BaseCache.py
index 86148f821..2bf44cdf9 100644
--- a/src/mem/cache/BaseCache.py
+++ b/src/mem/cache/BaseCache.py
@@ -34,15 +34,9 @@ class Prefetch(Enum): vals = ['none', 'tagged', 'stride', 'ghb']
class BaseCache(MemObject):
type = 'BaseCache'
- adaptive_compression = Param.Bool(False,
- "Use an adaptive compression scheme")
assoc = Param.Int("associativity")
block_size = Param.Int("block size in bytes")
latency = Param.Latency("Latency")
- compressed_bus = Param.Bool(False,
- "This cache connects to a compressed memory")
- compression_latency = Param.Latency('0ns',
- "Latency in cycles of compression algorithm")
hash_delay = Param.Int(1, "time in cycles of hash access")
lifo = Param.Bool(False,
"whether this NIC partition should use LIFO repl. policy")
@@ -56,8 +50,6 @@ class BaseCache(MemObject):
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")