diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2015-08-21 07:03:23 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2015-08-21 07:03:23 -0400 |
commit | ddfa96cf455ba4a287930942514cdf0f7f2afa77 (patch) | |
tree | 89eddf6ab0ec6f4660629b45b1b7cff7df6ca82c /src/mem/cache/cache.hh | |
parent | d71a0d790d8d1113480c5a57d7bfbb9b7d0d0037 (diff) | |
download | gem5-ddfa96cf455ba4a287930942514cdf0f7f2afa77.tar.xz |
mem: Add explicit Cache subclass and make BaseCache abstract
Open up for other subclasses to BaseCache and transition to using the
explicit Cache subclass.
--HG--
rename : src/mem/cache/BaseCache.py => src/mem/cache/Cache.py
Diffstat (limited to 'src/mem/cache/cache.hh')
-rw-r--r-- | src/mem/cache/cache.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mem/cache/cache.hh b/src/mem/cache/cache.hh index 06d78a272..447a55229 100644 --- a/src/mem/cache/cache.hh +++ b/src/mem/cache/cache.hh @@ -57,6 +57,7 @@ #include "mem/cache/blk.hh" #include "mem/cache/mshr.hh" #include "mem/cache/tags/base.hh" +#include "params/Cache.hh" #include "sim/eventq.hh" //Forward decleration @@ -419,7 +420,7 @@ class Cache : public BaseCache public: /** Instantiates a basic cache object. */ - Cache(const Params *p); + Cache(const CacheParams *p); /** Non-default destructor is needed to deallocate memory. */ virtual ~Cache(); |