diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2015-05-05 03:22:29 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2015-05-05 03:22:29 -0400 |
commit | 36f29496a019af4483430f17c4a6028b8dcfb2cf (patch) | |
tree | 28da4a1a1f29340fa7c95896427bf9c15da582d0 /src/mem/cache/base.hh | |
parent | 554ddc7c074b0d9793a6c4972e1c449a57b94590 (diff) | |
download | gem5-36f29496a019af4483430f17c4a6028b8dcfb2cf.tar.xz |
mem: Snoop into caches on uncacheable accesses
This patch takes a last step in fixing issues related to uncacheable
accesses. We do not separate uncacheable memory from uncacheable
devices, and in cases where it is really memory, there are valid
scenarios where we need to snoop since we do not support cache
maintenance instructions (yet). On snooping an uncacheable access we
thus provide data if possible. In essence this makes uncacheable
accesses IO coherent.
The snoop filter is also queried to steer the snoops, but not updated
since the uncacheable accesses do not allocate a block.
Diffstat (limited to 'src/mem/cache/base.hh')
-rw-r--r-- | src/mem/cache/base.hh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mem/cache/base.hh b/src/mem/cache/base.hh index 2bac2d30f..aaf0ea691 100644 --- a/src/mem/cache/base.hh +++ b/src/mem/cache/base.hh @@ -262,6 +262,16 @@ class BaseCache : public MemObject */ virtual bool isDirty() const = 0; + /** + * Determine if an address is in the ranges covered by this + * cache. This is useful to filter snoops. + * + * @param addr Address to check against + * + * @return If the address in question is in range + */ + bool inRange(Addr addr) const; + /** Block size of this cache */ const unsigned blkSize; |