base.hh (12636:9859213e2662) base.hh (12702:27cb33a96e0f)
1/*
2 * Copyright (c) 2012-2014,2016-2017 ARM Limited
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 90 unchanged lines hidden (view full) ---

99
100 // Statistics
101 /**
102 * TODO: It would be good if these stats were acquired after warmup.
103 * @addtogroup CacheStatistics
104 * @{
105 */
106
1/*
2 * Copyright (c) 2012-2014,2016-2017 ARM Limited
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 90 unchanged lines hidden (view full) ---

99
100 // Statistics
101 /**
102 * TODO: It would be good if these stats were acquired after warmup.
103 * @addtogroup CacheStatistics
104 * @{
105 */
106
107 /** Number of replacements of valid blocks per thread. */
108 Stats::Vector replacements;
109 /** Per cycle average of the number of tags that hold valid data. */
110 Stats::Average tagsInUse;
111
112 /** The total number of references to a block before it is replaced. */
113 Stats::Scalar totalRefs;
114
115 /**
116 * The number of reference counts sampled. This is different from

--- 189 unchanged lines hidden ---
107 /** Per cycle average of the number of tags that hold valid data. */
108 Stats::Average tagsInUse;
109
110 /** The total number of references to a block before it is replaced. */
111 Stats::Scalar totalRefs;
112
113 /**
114 * The number of reference counts sampled. This is different from

--- 189 unchanged lines hidden ---