Go to the documentation of this file.
66 cacheTracking(
p.min_tracked_cache_size, size, blkSize, this)
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");
113 M5_VAR_USED
auto num_erased =
117 assert(num_erased == 1);
149 if (in_caches_mask) {
150 *in_caches_mask =
mask;
167 auto iter =
tagHash.find(std::make_pair(tag, is_secure));
169 blk = (*iter).second;
173 assert(blk->
getTag() == tag);
174 assert(blk->
isSecure() == is_secure);
195 evict_blks.push_back(victim);
224 panic(
"Moving blocks in FALRU has not been implemented");
235 assert(blk->
next ==
nullptr);
262 assert(blk->
prev ==
nullptr);
284 static const char *SIZES[] = {
"B",
"kB",
"MB",
"GB",
"TB",
"ZB" };
286 while (size >= 1024 && div < (
sizeof SIZES /
sizeof *SIZES)) {
290 stream << size << SIZES[div];
295 :
Stats::Group(parent),
297 minTrackedSize(min_size),
298 numTrackedCaches(max_size > min_size ?
300 inAllCachesMask(
mask(numTrackedCaches)),
301 boundaries(numTrackedCaches),
305 "The number of accesses to the FA LRU cache.")
308 "Not enough bits (%s) in type CachesMask type to keep "
318 std::stringstream size_str;
321 hits.
subdesc(
i,
"Hits in a " + size_str.str() +
" cache");
332 unsigned curr_size = 0;
333 unsigned tracked_cache_size = minTrackedSize;
342 if (curr_size == tracked_cache_size && blk !=
tail) {
343 panic_if(boundaries[
j] != blk,
"Unexpected boundary for the %d-th "
345 tracked_cache_size <<= 1;
347 in_caches_mask &= ~(1U <<
j);
352 #endif // FALRU_DEBUG
360 unsigned curr_size = 0;
361 unsigned tracked_cache_size = minTrackedSize;
369 if (curr_size == tracked_cache_size && blk !=
tail) {
372 tracked_cache_size <<= 1;
374 in_caches_mask &= ~(1U <<
j);
389 for (
int i = 0;
i < numTrackedCaches;
i++) {
391 if (current_cache_mask & update_caches_mask) {
395 boundaries[
i]->inCachesMask &= ~current_cache_mask;
396 boundaries[
i] = boundaries[
i]->prev;
397 }
else if (boundaries[
i] == blk) {
400 boundaries[
i] = blk->
prev;
413 for (
int i = 0;
i < numTrackedCaches;
i++) {
415 if (current_cache_mask & update_caches_mask) {
419 boundaries[
i] = boundaries[
i]->next;
420 if (boundaries[
i] == blk) {
423 boundaries[
i] = blk->
next;
436 for (
int i = 0;
i < numTrackedCaches;
i++) {
446 hits[numTrackedCaches]++;
448 misses[numTrackedCaches]++;
#define fatal(...)
This implements a cprintf based fatal() function.
const int numTrackedCaches
The number of different size caches being tracked.
A replaceable entry is a basic entry in a 2d table-like structure that needs to have replacement func...
CacheTracking cacheTracking
FALRUBlk * head
The MRU block.
FALRUBlk * next
The next block in LRU order.
std::string print() const override
Pretty-print inCachesMask and other CacheBlk information.
const unsigned minTrackedSize
The smallest cache we are tracking.
void recordAccess(FALRUBlk *blk)
Notify of a block 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.
Stats::Vector misses
Misses in each cache.
FALRUBlk * tail
The LRU block.
void moveBlock(CacheBlk *src_blk, CacheBlk *dest_blk) override
Move a block's metadata to another location decided by the replacement policy.
void insertBlock(const PacketPtr pkt, CacheBlk *blk) override
Insert the new block into the cache and update replacement data.
CacheBlk * findBlock(Addr addr, bool is_secure) const override
Find the block in the cache, do not update the replacement data.
FALRU(const Params &p)
Construct and initialize this cache tagstore.
void moveToTail(FALRUBlk *blk)
Move a cache block to the LRU position.
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
void moveBlockToHead(FALRUBlk *blk)
Update boundaries as a block will be moved to the MRU.
A fully associative cache block.
bool isSecure() const
Check if this block holds data from the secure memory space.
void tagsInit() override
Initialize blocks as FALRUBlk instances.
void printSize(std::ostream &stream, size_t size)
virtual void setPosition(const uint32_t set, const uint32_t way)
Set both the set and way.
FALRUBlk * prev
The previous block in LRU order.
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.
Derived & subdesc(off_type index, const std::string &desc)
Set the subfield description for the given index and marks this stat to print at the end of simulatio...
std::string print() const override
Pretty-print tag, set and way, and interpret state bits to readable form including mapping to a MOESI...
virtual bool isValid() const
Checks if the entry is valid.
void check(const FALRUBlk *head, const FALRUBlk *tail) const
Check that the tracking mechanism is in consistent state.
void moveBlockToTail(FALRUBlk *blk)
Update boundaries as a block will be moved to the LRU.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
TagHash tagHash
The address hash table.
Derived & init(size_type size)
Set this vector to have the given size.
void invalidate(CacheBlk *blk) override
Invalidate a cache block.
void init(FALRUBlk *head, FALRUBlk *tail)
Initialiaze cache blocks and the tracking mechanism.
std::enable_if_t< std::is_integral< T >::value, int > floorLog2(T x)
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
CacheTracking(unsigned min_size, unsigned max_size, unsigned block_size, Stats::Group *parent)
uint8_t * data
Contains a copy of the data in this block for easy access.
void moveToHead(FALRUBlk *blk)
Move a cache block to the MRU position.
virtual Addr getTag() const
Get tag associated to this block.
FALRUBlk * blks
The cache blocks.
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Cycles is a wrapper class for representing cycle counts, i.e.
Derived & subname(off_type index, const std::string &name)
Set the subfield name for the given index, and marks this stat to print at the end of simulation.
Addr extractTag(Addr addr) const override
Generate the tag from the addres.
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
bool isPowerOf2(const T &n)
std::string csprintf(const char *format, const Args &...args)
ReplaceableEntry * findBlockBySetAndWay(int set, int way) const override
Find a block given set and way.
Stats::Vector hits
Hits in each cache.
#define panic(...)
This implements a cprintf based panic() function.
Generated on Tue Mar 23 2021 19:41:27 for gem5 by doxygen 1.8.17