46 #ifndef __MEM_CACHE_TAGS_FA_LRU_HH__ 47 #define __MEM_CACHE_TAGS_FA_LRU_HH__ 52 #include <unordered_map> 63 #include "params/FALRU.hh" 99 std::string
print()
const override;
124 template <
class T1,
class T2>
127 return std::hash<T1>()(p.first) ^ std::hash<T2>()(p.second);
131 typedef std::unordered_map<TagHashKey, FALRUBlk *, PairHash>
TagHash;
162 void tagsInit()
override;
167 void regStats()
override;
224 const std::size_t size,
243 return blkAlign(addr);
258 for (
int i = 0;
i < numBlocks;
i++) {
264 for (
int i = 0;
i < numBlocks;
i++) {
265 if (visitor(blks[
i])) {
284 : blkSize(block_size),
285 minTrackedSize(min_size),
286 numTrackedCaches(max_size > min_size ?
288 inAllCachesMask(
mask(numTrackedCaches)),
289 boundaries(numTrackedCaches)
292 "Not enough bits (%s) in type CachesMask type to keep " 316 void moveBlockToHead(
FALRUBlk *blk);
327 void moveBlockToTail(
FALRUBlk *blk);
356 void regStats(std::string
name);
392 #endif // __MEM_CACHE_TAGS_FA_LRU_HH__
std::string print() const override
Pretty-print inCachesMask and other CacheBlk information.
Cycles is a wrapper class for representing cycle counts, i.e.
std::size_t operator()(const std::pair< T1, T2 > &p) const
const std::string & name()
Addr tag
Data block tag value.
CacheTracking cacheTracking
FALRUBlk * head
The MRU block.
A fully associative LRU cache.
std::pair< Addr, bool > TagHashKey
A vector of scalar stats.
std::unordered_map< TagHashKey, FALRUBlk *, PairHash > TagHash
FALRUBlk * next
The next block in LRU order.
const int numTrackedCaches
The number of different size caches being tracked.
std::vector< FALRUBlk * > boundaries
Array of pointers to blocks at the cache boundaries.
Declaration of Statistics objects.
This is a simple scalar statistic, like a counter.
std::enable_if< std::is_integral< T >::value, int >::type floorLog2(T x)
FALRUBlk * tail
The LRU block.
Mechanism that allows us to simultaneously collect miss statistics for multiple caches.
A fully associative cache block.
void forEachBlk(std::function< void(CacheBlk &)> visitor) override
Visit each block in the tags and apply a visitor.
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
const unsigned minTrackedSize
The smallest cache we are tracking.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Hash table type mapping addresses to cache block pointers.
CacheTracking(unsigned min_size, unsigned max_size, unsigned block_size)
Stats::Scalar accesses
Total number of accesses.
TagHash tagHash
The address hash table.
Definitions of a simple cache block class.
Stats::Vector misses
Misses in each cache.
Stats::Vector hits
Hits in each cache.
Declaration of the Packet class.
bool anyBlk(std::function< bool(CacheBlk &)> visitor) override
Find if any of the blocks satisfies a condition.
Addr extractTag(Addr addr) const override
Generate the tag from the addres.
A replaceable entry is a basic entry in a 2d table-like structure that needs to have replacement func...
FALRUBlk * blks
The cache blocks.
FALRUBlk * prev
The previous block in LRU order.
const unsigned blkSize
The size of the cache block.
const CachesMask inAllCachesMask
A mask for all cache being tracked.
FALRUBlk BlkType
Typedef the block type used in this class.
Addr regenerateBlkAddr(const CacheBlk *blk) const override
Regenerate the block address from the tag.
CachesMask inCachesMask
A bit mask of the caches that fit this block.
const FlagsType init
This Stat is Initialized.
virtual void invalidate()
Invalidate the block and clear all state.