diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2016-04-21 04:48:19 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2016-04-21 04:48:19 -0400 |
commit | a7c94f6e69d329aeca53610a3ee2d573b02ff59d (patch) | |
tree | 925aead2b097c17ed9b76bbbb08cb5e5445eb4f5 /src/mem/cache/base.hh | |
parent | 13b9d4215dd0b5154f8f27fc6867a07c648a1af9 (diff) | |
download | gem5-a7c94f6e69d329aeca53610a3ee2d573b02ff59d.tar.xz |
mem: Remove unused cache stats
Prune cache stats that are never actually used.
Diffstat (limited to 'src/mem/cache/base.hh')
-rw-r--r-- | src/mem/cache/base.hh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/mem/cache/base.hh b/src/mem/cache/base.hh index 9275eb453..ffff6f058 100644 --- a/src/mem/cache/base.hh +++ b/src/mem/cache/base.hh @@ -381,12 +381,6 @@ class BaseCache : public MemObject /** The average number of cycles blocked for each blocked cause. */ Stats::Formula avg_blocked; - /** The number of fast writes (WH64) performed. */ - Stats::Scalar fastWrites; - - /** The number of cache copies performed. */ - Stats::Scalar cacheCopies; - /** The number of times a HW-prefetched block is evicted w/o reference. */ Stats::Scalar unusedPrefetches; @@ -452,13 +446,6 @@ class BaseCache : public MemObject /** The average overall latency of an MSHR miss. */ Stats::Formula overallAvgMshrUncacheableLatency; - /** The number of times a thread hit its MSHR cap. */ - Stats::Vector mshr_cap_events; - /** The number of times software prefetches caused the MSHR to block. */ - Stats::Vector soft_prefetch_mshr_full; - - Stats::Scalar mshr_no_allocate_misses; - /** * @} */ |