base.hh (12727:56c23b54bcb1) base.hh (12728:57bdea4f96aa)
1/*
1/*
2 * Copyright (c) 2012-2014,2016-2017 ARM Limited
2 * Copyright (c) 2012-2014,2016-2018 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
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Copyright (c) 2003-2005 The Regents of The University of Michigan
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are
19 * met: redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer;
21 * redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution;
24 * neither the name of the copyright holders nor the names of its
25 * contributors may be used to endorse or promote products derived from
26 * this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Authors: Erik Hallnor
41 * Ron Dreslinski
42 */
43
44/**
45 * @file
46 * Declaration of a common base class for cache tagstore objects.
47 */
48
49#ifndef __MEM_CACHE_TAGS_BASE_HH__
50#define __MEM_CACHE_TAGS_BASE_HH__
51
52#include <cassert>
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
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Copyright (c) 2003-2005 The Regents of The University of Michigan
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are
19 * met: redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer;
21 * redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution;
24 * neither the name of the copyright holders nor the names of its
25 * contributors may be used to endorse or promote products derived from
26 * this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Authors: Erik Hallnor
41 * Ron Dreslinski
42 */
43
44/**
45 * @file
46 * Declaration of a common base class for cache tagstore objects.
47 */
48
49#ifndef __MEM_CACHE_TAGS_BASE_HH__
50#define __MEM_CACHE_TAGS_BASE_HH__
51
52#include <cassert>
53#include <functional>
53#include <string>
54
55#include "base/callback.hh"
56#include "base/logging.hh"
57#include "base/statistics.hh"
58#include "base/types.hh"
59#include "mem/cache/blk.hh"
60#include "mem/packet.hh"
61#include "params/BaseTags.hh"
62#include "sim/clocked_object.hh"
63
64class BaseCache;
65
66/**
67 * A common base class of Cache tagstore objects.
68 */
69class BaseTags : public ClockedObject
70{
71 protected:
72 /** The block size of the cache. */
73 const unsigned blkSize;
74 /** Mask out all bits that aren't part of the block offset. */
75 const Addr blkMask;
76 /** The size of the cache. */
77 const unsigned size;
78 /** The tag lookup latency of the cache. */
79 const Cycles lookupLatency;
80 /**
81 * The total access latency of the cache. This latency
82 * is different depending on the cache access mode
83 * (parallel or sequential)
84 */
85 const Cycles accessLatency;
86 /** Pointer to the parent cache. */
87 BaseCache *cache;
88
89 /**
90 * The number of tags that need to be touched to meet the warmup
91 * percentage.
92 */
93 const unsigned warmupBound;
94 /** Marked true when the cache is warmed up. */
95 bool warmedUp;
96
97 /** the number of blocks in the cache */
98 const unsigned numBlocks;
99
100 /** The data blocks, 1 per cache block. */
101 std::unique_ptr<uint8_t[]> dataBlks;
102
103 // Statistics
104 /**
105 * TODO: It would be good if these stats were acquired after warmup.
106 * @addtogroup CacheStatistics
107 * @{
108 */
109
110 /** Per cycle average of the number of tags that hold valid data. */
111 Stats::Average tagsInUse;
112
113 /** The total number of references to a block before it is replaced. */
114 Stats::Scalar totalRefs;
115
116 /**
117 * The number of reference counts sampled. This is different from
118 * replacements because we sample all the valid blocks when the simulator
119 * exits.
120 */
121 Stats::Scalar sampledRefs;
122
123 /**
124 * Average number of references to a block before is was replaced.
125 * @todo This should change to an average stat once we have them.
126 */
127 Stats::Formula avgRefs;
128
129 /** The cycle that the warmup percentage was hit. 0 on failure. */
130 Stats::Scalar warmupCycle;
131
132 /** Average occupancy of each requestor using the cache */
133 Stats::AverageVector occupancies;
134
135 /** Average occ % of each requestor using the cache */
136 Stats::Formula avgOccs;
137
138 /** Occupancy of each context/cpu using the cache */
139 Stats::Vector occupanciesTaskId;
140
141 /** Occupancy of each context/cpu using the cache */
142 Stats::Vector2d ageTaskId;
143
144 /** Occ % of each context/cpu using the cache */
145 Stats::Formula percentOccsTaskId;
146
147 /** Number of tags consulted over all accesses. */
148 Stats::Scalar tagAccesses;
149 /** Number of data blocks consulted over all accesses. */
150 Stats::Scalar dataAccesses;
151
152 /**
153 * @}
154 */
155
156 public:
157 typedef BaseTagsParams Params;
158 BaseTags(const Params *p);
159
160 /**
161 * Destructor.
162 */
163 virtual ~BaseTags() {}
164
165 /**
166 * Set the parent cache back pointer.
167 * @param _cache Pointer to parent cache.
168 */
169 void setCache(BaseCache *_cache);
170
171 /**
172 * Register local statistics.
173 */
174 void regStats();
175
176 /**
177 * Average in the reference count for valid blocks when the simulation
178 * exits.
179 */
54#include <string>
55
56#include "base/callback.hh"
57#include "base/logging.hh"
58#include "base/statistics.hh"
59#include "base/types.hh"
60#include "mem/cache/blk.hh"
61#include "mem/packet.hh"
62#include "params/BaseTags.hh"
63#include "sim/clocked_object.hh"
64
65class BaseCache;
66
67/**
68 * A common base class of Cache tagstore objects.
69 */
70class BaseTags : public ClockedObject
71{
72 protected:
73 /** The block size of the cache. */
74 const unsigned blkSize;
75 /** Mask out all bits that aren't part of the block offset. */
76 const Addr blkMask;
77 /** The size of the cache. */
78 const unsigned size;
79 /** The tag lookup latency of the cache. */
80 const Cycles lookupLatency;
81 /**
82 * The total access latency of the cache. This latency
83 * is different depending on the cache access mode
84 * (parallel or sequential)
85 */
86 const Cycles accessLatency;
87 /** Pointer to the parent cache. */
88 BaseCache *cache;
89
90 /**
91 * The number of tags that need to be touched to meet the warmup
92 * percentage.
93 */
94 const unsigned warmupBound;
95 /** Marked true when the cache is warmed up. */
96 bool warmedUp;
97
98 /** the number of blocks in the cache */
99 const unsigned numBlocks;
100
101 /** The data blocks, 1 per cache block. */
102 std::unique_ptr<uint8_t[]> dataBlks;
103
104 // Statistics
105 /**
106 * TODO: It would be good if these stats were acquired after warmup.
107 * @addtogroup CacheStatistics
108 * @{
109 */
110
111 /** Per cycle average of the number of tags that hold valid data. */
112 Stats::Average tagsInUse;
113
114 /** The total number of references to a block before it is replaced. */
115 Stats::Scalar totalRefs;
116
117 /**
118 * The number of reference counts sampled. This is different from
119 * replacements because we sample all the valid blocks when the simulator
120 * exits.
121 */
122 Stats::Scalar sampledRefs;
123
124 /**
125 * Average number of references to a block before is was replaced.
126 * @todo This should change to an average stat once we have them.
127 */
128 Stats::Formula avgRefs;
129
130 /** The cycle that the warmup percentage was hit. 0 on failure. */
131 Stats::Scalar warmupCycle;
132
133 /** Average occupancy of each requestor using the cache */
134 Stats::AverageVector occupancies;
135
136 /** Average occ % of each requestor using the cache */
137 Stats::Formula avgOccs;
138
139 /** Occupancy of each context/cpu using the cache */
140 Stats::Vector occupanciesTaskId;
141
142 /** Occupancy of each context/cpu using the cache */
143 Stats::Vector2d ageTaskId;
144
145 /** Occ % of each context/cpu using the cache */
146 Stats::Formula percentOccsTaskId;
147
148 /** Number of tags consulted over all accesses. */
149 Stats::Scalar tagAccesses;
150 /** Number of data blocks consulted over all accesses. */
151 Stats::Scalar dataAccesses;
152
153 /**
154 * @}
155 */
156
157 public:
158 typedef BaseTagsParams Params;
159 BaseTags(const Params *p);
160
161 /**
162 * Destructor.
163 */
164 virtual ~BaseTags() {}
165
166 /**
167 * Set the parent cache back pointer.
168 * @param _cache Pointer to parent cache.
169 */
170 void setCache(BaseCache *_cache);
171
172 /**
173 * Register local statistics.
174 */
175 void regStats();
176
177 /**
178 * Average in the reference count for valid blocks when the simulation
179 * exits.
180 */
180 virtual void cleanupRefs() {}
181 void cleanupRefs();
181
182 /**
183 * Computes stats just prior to dump event
184 */
182
183 /**
184 * Computes stats just prior to dump event
185 */
185 virtual void computeStats() {}
186 void computeStats();
186
187 /**
188 * Print all tags used
189 */
187
188 /**
189 * Print all tags used
190 */
190 virtual std::string print() const = 0;
191 std::string print();
191
192 /**
193 * Find a block using the memory address
194 */
195 virtual CacheBlk * findBlock(Addr addr, bool is_secure) const = 0;
196
197 /**
198 * Align an address to the block size.
199 * @param addr the address to align.
200 * @return The block address.
201 */
202 Addr blkAlign(Addr addr) const
203 {
204 return addr & ~blkMask;
205 }
206
207 /**
208 * Calculate the block offset of an address.
209 * @param addr the address to get the offset of.
210 * @return the block offset.
211 */
212 int extractBlkOffset(Addr addr) const
213 {
214 return (addr & blkMask);
215 }
216
217 /**
218 * Find the cache block given set and way
219 * @param set The set of the block.
220 * @param way The way of the block.
221 * @return The cache block.
222 */
223 virtual CacheBlk *findBlockBySetAndWay(int set, int way) const = 0;
224
225 /**
226 * Limit the allocation for the cache ways.
227 * @param ways The maximum number of ways available for replacement.
228 */
229 virtual void setWayAllocationMax(int ways)
230 {
231 panic("This tag class does not implement way allocation limit!\n");
232 }
233
234 /**
235 * Get the way allocation mask limit.
236 * @return The maximum number of ways available for replacement.
237 */
238 virtual int getWayAllocationMax() const
239 {
240 panic("This tag class does not implement way allocation limit!\n");
241 return -1;
242 }
243
244 /**
245 * This function updates the tags when a block is invalidated
246 *
247 * @param blk A valid block to invalidate.
248 */
249 virtual void invalidate(CacheBlk *blk)
250 {
251 assert(blk);
252 assert(blk->isValid());
253
254 tagsInUse--;
255 occupancies[blk->srcMasterId]--;
256 totalRefs += blk->refCount;
257 sampledRefs++;
258
259 blk->invalidate();
260 }
261
262 /**
263 * Find replacement victim based on address.
264 *
265 * @param addr Address to find a victim for.
266 * @return Cache block to be replaced.
267 */
268 virtual CacheBlk* findVictim(Addr addr) = 0;
269
270 virtual CacheBlk* accessBlock(Addr addr, bool is_secure, Cycles &lat) = 0;
271
272 virtual Addr extractTag(Addr addr) const = 0;
273
274 /**
275 * Insert the new block into the cache and update stats.
276 *
277 * @param pkt Packet holding the address to update
278 * @param blk The block to update.
279 */
280 virtual void insertBlock(PacketPtr pkt, CacheBlk *blk);
281
282 /**
283 * Regenerate the block address.
284 *
285 * @param block The block.
286 * @return the block address.
287 */
288 virtual Addr regenerateBlkAddr(const CacheBlk* blk) const = 0;
289
290 virtual int extractSet(Addr addr) const = 0;
291
192
193 /**
194 * Find a block using the memory address
195 */
196 virtual CacheBlk * findBlock(Addr addr, bool is_secure) const = 0;
197
198 /**
199 * Align an address to the block size.
200 * @param addr the address to align.
201 * @return The block address.
202 */
203 Addr blkAlign(Addr addr) const
204 {
205 return addr & ~blkMask;
206 }
207
208 /**
209 * Calculate the block offset of an address.
210 * @param addr the address to get the offset of.
211 * @return the block offset.
212 */
213 int extractBlkOffset(Addr addr) const
214 {
215 return (addr & blkMask);
216 }
217
218 /**
219 * Find the cache block given set and way
220 * @param set The set of the block.
221 * @param way The way of the block.
222 * @return The cache block.
223 */
224 virtual CacheBlk *findBlockBySetAndWay(int set, int way) const = 0;
225
226 /**
227 * Limit the allocation for the cache ways.
228 * @param ways The maximum number of ways available for replacement.
229 */
230 virtual void setWayAllocationMax(int ways)
231 {
232 panic("This tag class does not implement way allocation limit!\n");
233 }
234
235 /**
236 * Get the way allocation mask limit.
237 * @return The maximum number of ways available for replacement.
238 */
239 virtual int getWayAllocationMax() const
240 {
241 panic("This tag class does not implement way allocation limit!\n");
242 return -1;
243 }
244
245 /**
246 * This function updates the tags when a block is invalidated
247 *
248 * @param blk A valid block to invalidate.
249 */
250 virtual void invalidate(CacheBlk *blk)
251 {
252 assert(blk);
253 assert(blk->isValid());
254
255 tagsInUse--;
256 occupancies[blk->srcMasterId]--;
257 totalRefs += blk->refCount;
258 sampledRefs++;
259
260 blk->invalidate();
261 }
262
263 /**
264 * Find replacement victim based on address.
265 *
266 * @param addr Address to find a victim for.
267 * @return Cache block to be replaced.
268 */
269 virtual CacheBlk* findVictim(Addr addr) = 0;
270
271 virtual CacheBlk* accessBlock(Addr addr, bool is_secure, Cycles &lat) = 0;
272
273 virtual Addr extractTag(Addr addr) const = 0;
274
275 /**
276 * Insert the new block into the cache and update stats.
277 *
278 * @param pkt Packet holding the address to update
279 * @param blk The block to update.
280 */
281 virtual void insertBlock(PacketPtr pkt, CacheBlk *blk);
282
283 /**
284 * Regenerate the block address.
285 *
286 * @param block The block.
287 * @return the block address.
288 */
289 virtual Addr regenerateBlkAddr(const CacheBlk* blk) const = 0;
290
291 virtual int extractSet(Addr addr) const = 0;
292
292 virtual void forEachBlk(CacheBlkVisitor &visitor) = 0;
293
294 /**
295 * Visit each block in the tags and apply a visitor
296 *
297 * The visitor should be a std::function that takes a cache block
298 * reference as its parameter.
299 *
300 * @param visitor Visitor to call on each block.
301 */
302 virtual void forEachBlk(std::function<void(CacheBlk &)> visitor) = 0;
303
304 /**
305 * Find if any of the blocks satisfies a condition
306 *
307 * The visitor should be a std::function that takes a cache block
308 * reference as its parameter. The visitor will terminate the
309 * traversal early if the condition is satisfied.
310 *
311 * @param visitor Visitor to call on each block.
312 */
313 virtual bool anyBlk(std::function<bool(CacheBlk &)> visitor) = 0;
314
315 private:
316 /**
317 * Update the reference stats using data from the input block
318 *
319 * @param blk The input block
320 */
321 void cleanupRefsVisitor(CacheBlk &blk);
322
323 /**
324 * Update the occupancy and age stats using data from the input block
325 *
326 * @param blk The input block
327 */
328 void computeStatsVisitor(CacheBlk &blk);
293};
294
295class BaseTagsCallback : public Callback
296{
297 BaseTags *tags;
298 public:
299 BaseTagsCallback(BaseTags *t) : tags(t) {}
300 virtual void process() { tags->cleanupRefs(); };
301};
302
303class BaseTagsDumpCallback : public Callback
304{
305 BaseTags *tags;
306 public:
307 BaseTagsDumpCallback(BaseTags *t) : tags(t) {}
308 virtual void process() { tags->computeStats(); };
309};
310
311#endif //__MEM_CACHE_TAGS_BASE_HH__
329};
330
331class BaseTagsCallback : public Callback
332{
333 BaseTags *tags;
334 public:
335 BaseTagsCallback(BaseTags *t) : tags(t) {}
336 virtual void process() { tags->cleanupRefs(); };
337};
338
339class BaseTagsDumpCallback : public Callback
340{
341 BaseTags *tags;
342 public:
343 BaseTagsDumpCallback(BaseTags *t) : tags(t) {}
344 virtual void process() { tags->computeStats(); };
345};
346
347#endif //__MEM_CACHE_TAGS_BASE_HH__