diff options
Diffstat (limited to 'src/mem/cache/base.cc')
-rw-r--r-- | src/mem/cache/base.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mem/cache/base.cc b/src/mem/cache/base.cc index 736f16761..0eeb19252 100644 --- a/src/mem/cache/base.cc +++ b/src/mem/cache/base.cc @@ -52,6 +52,7 @@ #include "base/logging.hh" #include "debug/Cache.hh" #include "debug/CachePort.hh" +#include "debug/CacheRepl.hh" #include "debug/CacheVerbose.hh" #include "mem/cache/mshr.hh" #include "mem/cache/prefetch/base.hh" @@ -1237,6 +1238,9 @@ BaseCache::allocateBlock(const PacketPtr pkt, PacketList &writebacks) if (!victim) return nullptr; + // Print victim block's information + DPRINTF(CacheRepl, "Replacement victim: %s\n", victim->print()); + // Check for transient state allocations. If any of the entries listed // for eviction has a transient state, the allocation fails for (const auto& blk : evict_blks) { |