Change-Id: Id3afec0a62446d6d0f44ccb655032343037637e0
Reviewed-by: Curtis Dunham <curtis.dunham@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/8281
Reviewed-by: Daniel Carvalho <odanrc@yahoo.com.br>
Maintainer: Nikos Nikoleris <nikos.nikoleris@arm.com>
bool warmedUp;
/** the number of blocks in the cache */
- unsigned numBlocks;
+ const unsigned numBlocks;
// Statistics
/**
cacheMask = 0;
}
- numBlocks = size/blkSize;
-
blks = new FALRUBlk[numBlocks];
head = &(blks[0]);
tail = &(blks[numBlocks-1]);