44691c1229971dbfcb3a7033ddf97304d03fd660
[gem5.git] / src / mem / cache / blk.hh
1 /*
2 * Copyright (c) 2012-2016 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 * Andreas Sandberg
42 */
43
44 /** @file
45 * Definitions of a simple cache block class.
46 */
47
48 #ifndef __MEM_CACHE_BLK_HH__
49 #define __MEM_CACHE_BLK_HH__
50
51 #include <list>
52
53 #include "base/printable.hh"
54 #include "mem/packet.hh"
55 #include "mem/request.hh"
56
57 /**
58 * Cache block status bit assignments
59 */
60 enum CacheBlkStatusBits : unsigned {
61 /** valid, readable */
62 BlkValid = 0x01,
63 /** write permission */
64 BlkWritable = 0x02,
65 /** read permission (yes, block can be valid but not readable) */
66 BlkReadable = 0x04,
67 /** dirty (modified) */
68 BlkDirty = 0x08,
69 /** block was a hardware prefetch yet unaccessed*/
70 BlkHWPrefetched = 0x20,
71 /** block holds data from the secure memory space */
72 BlkSecure = 0x40,
73 };
74
75 /**
76 * A Basic Cache block.
77 * Contains the tag, status, and a pointer to data.
78 */
79 class CacheBlk
80 {
81 public:
82 /** Task Id associated with this block */
83 uint32_t task_id;
84
85 /** Data block tag value. */
86 Addr tag;
87 /**
88 * Contains a copy of the data in this block for easy access. This is used
89 * for efficient execution when the data could be actually stored in
90 * another format (COW, compressed, sub-blocked, etc). In all cases the
91 * data stored here should be kept consistant with the actual data
92 * referenced by this block.
93 */
94 uint8_t *data;
95
96 /** block state: OR of CacheBlkStatusBit */
97 typedef unsigned State;
98
99 /** The current status of this block. @sa CacheBlockStatusBits */
100 State status;
101
102 /** Which curTick() will this block be accessable */
103 Tick whenReady;
104
105 /**
106 * The set and way this block belongs to.
107 * @todo Move this into subclasses when we fix CacheTags to use them.
108 */
109 int set, way;
110
111 /** whether this block has been touched */
112 bool isTouched;
113
114 /** Number of references to this block since it was brought in. */
115 unsigned refCount;
116
117 /** holds the source requestor ID for this block. */
118 int srcMasterId;
119
120 Tick tickInserted;
121
122 protected:
123 /**
124 * Represents that the indicated thread context has a "lock" on
125 * the block, in the LL/SC sense.
126 */
127 class Lock {
128 public:
129 ContextID contextId; // locking context
130 Addr lowAddr; // low address of lock range
131 Addr highAddr; // high address of lock range
132
133 // check for matching execution context, and an address that
134 // is within the lock
135 bool matches(const RequestPtr req) const
136 {
137 Addr req_low = req->getPaddr();
138 Addr req_high = req_low + req->getSize() -1;
139 return (contextId == req->contextId()) &&
140 (req_low >= lowAddr) && (req_high <= highAddr);
141 }
142
143 // check if a request is intersecting and thus invalidating the lock
144 bool intersects(const RequestPtr req) const
145 {
146 Addr req_low = req->getPaddr();
147 Addr req_high = req_low + req->getSize() - 1;
148
149 return (req_low <= highAddr) && (req_high >= lowAddr);
150 }
151
152 Lock(const RequestPtr req)
153 : contextId(req->contextId()),
154 lowAddr(req->getPaddr()),
155 highAddr(lowAddr + req->getSize() - 1)
156 {
157 }
158 };
159
160 /** List of thread contexts that have performed a load-locked (LL)
161 * on the block since the last store. */
162 std::list<Lock> lockList;
163
164 public:
165
166 CacheBlk()
167 : task_id(ContextSwitchTaskId::Unknown),
168 tag(0), data(0), status(0), whenReady(0),
169 set(-1), way(-1), isTouched(false), refCount(0),
170 srcMasterId(Request::invldMasterId),
171 tickInserted(0)
172 {}
173
174 CacheBlk(const CacheBlk&) = delete;
175 CacheBlk& operator=(const CacheBlk&) = delete;
176
177 /**
178 * Checks the write permissions of this block.
179 * @return True if the block is writable.
180 */
181 bool isWritable() const
182 {
183 const State needed_bits = BlkWritable | BlkValid;
184 return (status & needed_bits) == needed_bits;
185 }
186
187 /**
188 * Checks the read permissions of this block. Note that a block
189 * can be valid but not readable if there is an outstanding write
190 * upgrade miss.
191 * @return True if the block is readable.
192 */
193 bool isReadable() const
194 {
195 const State needed_bits = BlkReadable | BlkValid;
196 return (status & needed_bits) == needed_bits;
197 }
198
199 /**
200 * Checks that a block is valid.
201 * @return True if the block is valid.
202 */
203 bool isValid() const
204 {
205 return (status & BlkValid) != 0;
206 }
207
208 /**
209 * Invalidate the block and clear all state.
210 */
211 void invalidate()
212 {
213 status = 0;
214 isTouched = false;
215 lockList.clear();
216 }
217
218 /**
219 * Check to see if a block has been written.
220 * @return True if the block is dirty.
221 */
222 bool isDirty() const
223 {
224 return (status & BlkDirty) != 0;
225 }
226
227 /**
228 * Check if this block was the result of a hardware prefetch, yet to
229 * be touched.
230 * @return True if the block was a hardware prefetch, unaccesed.
231 */
232 bool wasPrefetched() const
233 {
234 return (status & BlkHWPrefetched) != 0;
235 }
236
237 /**
238 * Check if this block holds data from the secure memory space.
239 * @return True if the block holds data from the secure memory space.
240 */
241 bool isSecure() const
242 {
243 return (status & BlkSecure) != 0;
244 }
245
246 /**
247 * Track the fact that a local locked was issued to the
248 * block. Invalidate any previous LL to the same address.
249 */
250 void trackLoadLocked(PacketPtr pkt)
251 {
252 assert(pkt->isLLSC());
253 auto l = lockList.begin();
254 while (l != lockList.end()) {
255 if (l->intersects(pkt->req))
256 l = lockList.erase(l);
257 else
258 ++l;
259 }
260
261 lockList.emplace_front(pkt->req);
262 }
263
264 /**
265 * Clear the any load lock that intersect the request, and is from
266 * a different context.
267 */
268 void clearLoadLocks(RequestPtr req)
269 {
270 auto l = lockList.begin();
271 while (l != lockList.end()) {
272 if (l->intersects(req) && l->contextId != req->contextId()) {
273 l = lockList.erase(l);
274 } else {
275 ++l;
276 }
277 }
278 }
279
280 /**
281 * Pretty-print a tag, and interpret state bits to readable form
282 * including mapping to a MOESI state.
283 *
284 * @return string with basic state information
285 */
286 std::string print() const
287 {
288 /**
289 * state M O E S I
290 * writable 1 0 1 0 0
291 * dirty 1 1 0 0 0
292 * valid 1 1 1 1 0
293 *
294 * state writable dirty valid
295 * M 1 1 1
296 * O 0 1 1
297 * E 1 0 1
298 * S 0 0 1
299 * I 0 0 0
300 *
301 * Note that only one cache ever has a block in Modified or
302 * Owned state, i.e., only one cache owns the block, or
303 * equivalently has the BlkDirty bit set. However, multiple
304 * caches on the same path to memory can have a block in the
305 * Exclusive state (despite the name). Exclusive means this
306 * cache has the only copy at this level of the hierarchy,
307 * i.e., there may be copies in caches above this cache (in
308 * various states), but there are no peers that have copies on
309 * this branch of the hierarchy, and no caches at or above
310 * this level on any other branch have copies either.
311 **/
312 unsigned state = isWritable() << 2 | isDirty() << 1 | isValid();
313 char s = '?';
314 switch (state) {
315 case 0b111: s = 'M'; break;
316 case 0b011: s = 'O'; break;
317 case 0b101: s = 'E'; break;
318 case 0b001: s = 'S'; break;
319 case 0b000: s = 'I'; break;
320 default: s = 'T'; break; // @TODO add other types
321 }
322 return csprintf("state: %x (%c) valid: %d writable: %d readable: %d "
323 "dirty: %d tag: %x", status, s, isValid(),
324 isWritable(), isReadable(), isDirty(), tag);
325 }
326
327 /**
328 * Handle interaction of load-locked operations and stores.
329 * @return True if write should proceed, false otherwise. Returns
330 * false only in the case of a failed store conditional.
331 */
332 bool checkWrite(PacketPtr pkt)
333 {
334 assert(pkt->isWrite());
335
336 // common case
337 if (!pkt->isLLSC() && lockList.empty())
338 return true;
339
340 RequestPtr req = pkt->req;
341
342 if (pkt->isLLSC()) {
343 // it's a store conditional... have to check for matching
344 // load locked.
345 bool success = false;
346
347 auto l = lockList.begin();
348 while (!success && l != lockList.end()) {
349 if (l->matches(pkt->req)) {
350 // it's a store conditional, and as far as the
351 // memory system can tell, the requesting
352 // context's lock is still valid.
353 success = true;
354 lockList.erase(l);
355 } else {
356 ++l;
357 }
358 }
359
360 req->setExtraData(success ? 1 : 0);
361 // clear any intersected locks from other contexts (our LL
362 // should already have cleared them)
363 clearLoadLocks(req);
364 return success;
365 } else {
366 // a normal write, if there is any lock not from this
367 // context we clear the list, thus for a private cache we
368 // never clear locks on normal writes
369 clearLoadLocks(req);
370 return true;
371 }
372 }
373 };
374
375 /**
376 * Simple class to provide virtual print() method on cache blocks
377 * without allocating a vtable pointer for every single cache block.
378 * Just wrap the CacheBlk object in an instance of this before passing
379 * to a function that requires a Printable object.
380 */
381 class CacheBlkPrintWrapper : public Printable
382 {
383 CacheBlk *blk;
384 public:
385 CacheBlkPrintWrapper(CacheBlk *_blk) : blk(_blk) {}
386 virtual ~CacheBlkPrintWrapper() {}
387 void print(std::ostream &o, int verbosity = 0,
388 const std::string &prefix = "") const;
389 };
390
391 /**
392 * Base class for cache block visitor, operating on the cache block
393 * base class (later subclassed for the various tag classes). This
394 * visitor class is used as part of the forEachBlk interface in the
395 * tag classes.
396 */
397 class CacheBlkVisitor
398 {
399 public:
400
401 CacheBlkVisitor() {}
402 virtual ~CacheBlkVisitor() {}
403
404 virtual bool operator()(CacheBlk &blk) = 0;
405 };
406
407 #endif //__MEM_CACHE_BLK_HH__