gem5/configs
Andreas Hansson 654266f39c mem: Add cache clusivity
This patch adds a parameter to control the cache clusivity, that is if
the cache is mostly inclusive or exclusive. At the moment there is no
intention to support strict policies, and thus the options are: 1)
mostly inclusive, or 2) mostly exclusive.

The choice of policy guides the behaviuor on a cache fill, and a new
helper function, allocOnFill, is created to encapsulate the decision
making process. For the timing mode, the decision is annotated on the
MSHR on sending out the downstream packet, and in atomic we directly
pass the decision to handleFill. We (ab)use the tempBlock in cases
where we are not allocating on fill, leaving the rest of the cache
unaffected. Simple and effective.

This patch also makes it more explicit that multiple caches are
allowed to consider a block writable (this is the case
also before this patch). That is, for a mostly inclusive cache,
multiple caches upstream may also consider the block exclusive. The
caches considering the block writable/exclusive all appear along the
same path to memory, and from a coherency protocol point of view it
works due to the fact that we always snoop upwards in zero time before
querying any downstream cache.

Note that this patch does not introduce clean writebacks. Thus, for
clean lines we are essentially removing a cache level if it is made
mostly exclusive. For example, lines from the read-only L1 instruction
cache or table-walker cache are always clean, and simply get dropped
rather than being passed to the L2. If the L2 is mostly exclusive and
does not allocate on fill it will thus never hold the line. A follow
on patch adds the clean writebacks.

The patch changes the L2 of the O3_ARM_v7a CPU configuration to be
mostly exclusive (and stats are affected accordingly).
2015-11-06 03:26:41 -05:00
..
boot rcs scripts: remove bbench.rcS 2013-04-02 12:46:49 -04:00
common mem: Add cache clusivity 2015-11-06 03:26:41 -05:00
dram util: Fix minor issues in DRAM sweep scripts 2015-09-25 06:45:50 -04:00
example mem: hmc: top level design 2015-11-03 12:17:56 -06:00
learning_gem5 config: Fix 'learning gem5' configs after SMT push 2015-10-01 04:07:15 -04:00
ruby ruby: profiler: provide the number of vnets through ruby system 2015-10-14 00:29:43 -05:00
splash2 mem: Add explicit Cache subclass and make BaseCache abstract 2015-08-21 07:03:23 -04:00
topologies config: topologies: slight code refactor 2014-02-23 19:16:15 -06:00