summaryrefslogtreecommitdiff
path: root/objects/BaseCache.mpy
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2005-02-03 17:04:54 -0500
committerNathan Binkert <binkertn@umich.edu>2005-02-03 17:04:54 -0500
commit52403a5ddf1e02f53d0624254f41e27e3914df29 (patch)
tree8f3940b5cba764c2f9c2118b0ff3acd41c173597 /objects/BaseCache.mpy
parent936ad584022be7a4e89292c708cc624841198f62 (diff)
downloadgem5-52403a5ddf1e02f53d0624254f41e27e3914df29.tar.xz
get rid of defined and just access the env dict directly
get rid of the alias for true to True and false to False to keep consistent python syntax. util/stats/info.py: Fix typo --HG-- extra : convert_revision : e69588a8de52424e043315e70008ca3a3ede7d5b
Diffstat (limited to 'objects/BaseCache.mpy')
-rw-r--r--objects/BaseCache.mpy16
1 files changed, 8 insertions, 8 deletions
diff --git a/objects/BaseCache.mpy b/objects/BaseCache.mpy
index 95a7f0b35..98a422e30 100644
--- a/objects/BaseCache.mpy
+++ b/objects/BaseCache.mpy
@@ -2,37 +2,37 @@ from BaseMem import BaseMem
simobj BaseCache(BaseMem):
type = 'BaseCache'
- adaptive_compression = Param.Bool(false,
+ adaptive_compression = Param.Bool(False,
"Use an adaptive compression scheme")
assoc = Param.Int("associativity")
block_size = Param.Int("block size in bytes")
- compressed_bus = Param.Bool(false,
+ compressed_bus = Param.Bool(False,
"This cache connects to a compressed memory")
compression_latency = Param.Int(0,
"Latency in cycles of compression algorithm")
- do_copy = Param.Bool(false, "perform fast copies in the cache")
+ 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,
+ 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)")
out_bus = Param.Bus("outgoing bus object")
- prioritizeRequests = Param.Bool(false,
+ prioritizeRequests = Param.Bool(False,
"always service demand misses first")
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 = 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 = 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,
+ two_queue = Param.Bool(False,
"whether the lifo should have two queue replacement")
write_buffers = Param.Int(8, "number of write buffers")