66 cacheTracking(p->min_tracked_cache_size, size, blkSize)
69 fatal(
"cache block size (in bytes) `%d' must be a power of two",
72 fatal(
"Cache Size must be power of 2 for now");
120 auto num_erased M5_VAR_USED =
124 assert(num_erased == 1);
156 if (in_caches_mask) {
157 *in_caches_mask =
mask;
174 auto iter =
tagHash.find(std::make_pair(tag, is_secure));
176 blk = (*iter).second;
180 assert(blk->
tag == tag);
181 assert(blk->
isSecure() == is_secure);
202 evict_blks.push_back(victim);
236 assert(blk->
next ==
nullptr);
263 assert(blk->
prev ==
nullptr);
283 FALRUParams::create()
285 return new FALRU(
this);
293 unsigned curr_size = 0;
294 unsigned tracked_cache_size = minTrackedSize;
303 if (curr_size == tracked_cache_size && blk != tail) {
304 panic_if(boundaries[j] != blk,
"Unexpected boundary for the %d-th " 306 tracked_cache_size <<= 1;
308 in_caches_mask &= ~(1U <<
j);
313 #endif // FALRU_DEBUG 321 unsigned curr_size = 0;
322 unsigned tracked_cache_size = minTrackedSize;
330 if (curr_size == tracked_cache_size && blk != tail) {
333 tracked_cache_size <<= 1;
335 in_caches_mask &= ~(1U <<
j);
350 for (
int i = 0;
i < numTrackedCaches;
i++) {
352 if (current_cache_mask & update_caches_mask) {
356 boundaries[
i]->inCachesMask &= ~current_cache_mask;
357 boundaries[
i] = boundaries[
i]->prev;
358 }
else if (boundaries[i] == blk) {
361 boundaries[
i] = blk->
prev;
374 for (
int i = 0;
i < numTrackedCaches;
i++) {
376 if (current_cache_mask & update_caches_mask) {
380 boundaries[
i] = boundaries[
i]->next;
381 if (boundaries[i] == blk) {
384 boundaries[
i] = blk->
next;
397 for (
int i = 0;
i < numTrackedCaches;
i++) {
407 hits[numTrackedCaches]++;
409 misses[numTrackedCaches]++;
418 static const char *SIZES[] = {
"B",
"kB",
"MB",
"GB",
"TB",
"ZB" };
420 while (size >= 1024 && div < (
sizeof SIZES /
sizeof *SIZES)) {
424 stream << size << SIZES[div];
431 .init(numTrackedCaches + 1)
432 .name(name +
".falru_hits")
433 .desc(
"The number of hits in each cache size.")
436 .init(numTrackedCaches + 1)
437 .name(name +
".falru_misses")
438 .desc(
"The number of misses in each cache size.")
441 .name(name +
".falru_accesses")
442 .desc(
"The number of accesses to the FA LRU cache.")
445 for (
unsigned i = 0;
i < numTrackedCaches + 1; ++
i) {
446 std::stringstream size_str;
448 hits.subname(
i, size_str.str());
449 hits.subdesc(
i,
"Hits in a " + size_str.str() +
" cache");
450 misses.subname(
i, size_str.str());
451 misses.subdesc(
i,
"Misses in a " + size_str.str() +
" cache");
Declares a basic cache interface BaseCache.
FALRU(const Params *p)
Construct and initialize this cache tagstore.
std::string print() const override
Pretty-print inCachesMask and other CacheBlk information.
Cycles is a wrapper class for representing cycle counts, i.e.
#define fatal(...)
This implements a cprintf based fatal() function.
bool isValid() const
Checks that a block is valid.
std::string print() const override
Pretty-print tag, set and way, and interpret state bits to readable form including mapping to a MOESI...
Addr tag
Data block tag value.
CacheTracking cacheTracking
FALRUBlk * head
The MRU block.
A fully associative LRU cache.
CacheBlk * findBlock(Addr addr, bool is_secure) const override
Find the block in the cache, do not update the replacement data.
void recordAccess(FALRUBlk *blk)
Notify of a block access.
FALRUBlk * next
The next block in LRU order.
void moveToTail(FALRUBlk *blk)
Move a cache block to the LRU position.
void moveBlockToHead(FALRUBlk *blk)
Update boundaries as a block will be moved to the MRU.
Declaration of a fully associative LRU tag store.
void init(FALRUBlk *head, FALRUBlk *tail)
Initialiaze cache blocks and the tracking mechanism.
virtual void setPosition(const uint32_t set, const uint32_t way)
Set both the set and way.
void tagsInit() override
Initialize blocks as FALRUBlk instances.
FALRUBlk * tail
The LRU block.
std::string csprintf(const char *format, const Args &...args)
void insertBlock(const PacketPtr pkt, CacheBlk *blk) override
Insert the new block into the cache and update replacement data.
void check(const FALRUBlk *head, const FALRUBlk *tail) const
Check that the tracking mechanism is in consistent state.
A fully associative cache block.
void invalidate(CacheBlk *blk) override
Invalidate a cache block.
bool isSecure() const
Check if this block holds data from the secure memory space.
bool isPowerOf2(const T &n)
void regStats(std::string name)
Register the stats for this object.
void moveToHead(FALRUBlk *blk)
Move a cache block to the MRU position.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
TagHash tagHash
The address hash table.
virtual const std::string name() const
void regStats() override
Register the stats for this object.
void printSize(std::ostream &stream, size_t size)
void moveBlockToTail(FALRUBlk *blk)
Update boundaries as a block will be moved to the LRU.
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.
virtual void regStats()
Callback to set stat parameters.
ReplaceableEntry * findBlockBySetAndWay(int set, int way) const override
Find a block given set and way.
CacheBlk * findVictim(Addr addr, const bool is_secure, const std::size_t size, std::vector< CacheBlk *> &evict_blks) override
Find replacement victim based on address.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
uint8_t * data
Contains a copy of the data in this block for easy access.
CachesMask inCachesMask
A bit mask of the caches that fit this block.
CacheBlk * accessBlock(Addr addr, bool is_secure, Cycles &lat, CachesMask *in_cache_mask)
Access block and update replacement data.