2005-01-15 10:12:25 +01:00
|
|
|
from BaseMem import BaseMem
|
|
|
|
|
|
|
|
simobj BaseCache(BaseMem):
|
2005-02-03 03:13:01 +01:00
|
|
|
type = 'BaseCache'
|
2005-02-03 23:04:54 +01:00
|
|
|
adaptive_compression = Param.Bool(False,
|
2005-01-15 10:12:25 +01:00
|
|
|
"Use an adaptive compression scheme")
|
|
|
|
assoc = Param.Int("associativity")
|
|
|
|
block_size = Param.Int("block size in bytes")
|
2005-02-03 23:04:54 +01:00
|
|
|
compressed_bus = Param.Bool(False,
|
2005-01-15 10:12:25 +01:00
|
|
|
"This cache connects to a compressed memory")
|
|
|
|
compression_latency = Param.Int(0,
|
|
|
|
"Latency in cycles of compression algorithm")
|
2005-02-03 23:04:54 +01:00
|
|
|
do_copy = Param.Bool(False, "perform fast copies in the cache")
|
2005-01-15 10:12:25 +01:00
|
|
|
hash_delay = Param.Int(1, "time in cycles of hash access")
|
|
|
|
in_bus = Param.Bus(NULL, "incoming bus object")
|
2005-02-03 23:04:54 +01:00
|
|
|
lifo = Param.Bool(False,
|
2005-02-01 23:35:01 +01:00
|
|
|
"whether this NIC partition should use LIFO repl. policy")
|
2005-01-15 10:12:25 +01:00
|
|
|
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")
|
2005-02-03 23:04:54 +01:00
|
|
|
prioritizeRequests = Param.Bool(False,
|
2005-01-15 10:12:25 +01:00
|
|
|
"always service demand misses first")
|
|
|
|
protocol = Param.CoherenceProtocol(NULL, "coherence protocol to use")
|
|
|
|
repl = Param.Repl(NULL, "replacement policy")
|
2005-03-23 19:25:48 +01:00
|
|
|
size = Param.MemorySize("capacity in bytes")
|
2005-02-03 23:04:54 +01:00
|
|
|
split = Param.Bool(False, "whether or not this cache is split")
|
2005-02-01 23:35:01 +01:00
|
|
|
split_size = Param.Int(0,
|
|
|
|
"How many ways of the cache belong to CPU/LRU partition")
|
2005-02-03 23:04:54 +01:00
|
|
|
store_compressed = Param.Bool(False,
|
2005-01-15 10:12:25 +01:00
|
|
|
"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")
|
2005-02-03 23:04:54 +01:00
|
|
|
two_queue = Param.Bool(False,
|
2005-02-01 23:35:01 +01:00
|
|
|
"whether the lifo should have two queue replacement")
|
2005-01-15 10:12:25 +01:00
|
|
|
write_buffers = Param.Int(8, "number of write buffers")
|
2005-04-02 02:26:44 +02:00
|
|
|
prefetch_miss = Param.Bool(False,
|
|
|
|
"wheter you are using the hardware prefetcher from Miss stream")
|
|
|
|
prefetch_access = Param.Bool(False,
|
|
|
|
"wheter you are using the hardware prefetcher from Access stream")
|
2005-03-30 22:05:58 +02:00
|
|
|
prefetcher_size = Param.Int(100,
|
|
|
|
"Number of entries in the harware prefetch queue")
|
2005-04-02 02:26:44 +02:00
|
|
|
prefetch_past_page = Param.Bool(False,
|
|
|
|
"Allow prefetches to cross virtual page boundaries")
|
|
|
|
|