request.hh (5735:a88e8e7dec75) request.hh (5744:342cbc20a188)
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Ron Dreslinski
29 * Steve Reinhardt
30 * Ali Saidi
31 */
32
33/**
34 * @file
35 * Declaration of a request, the overall memory request consisting of
36 the parts of the request that are persistent throughout the transaction.
37 */
38
39#ifndef __MEM_REQUEST_HH__
40#define __MEM_REQUEST_HH__
41
42#include <cassert>
43
44#include "base/fast_alloc.hh"
45#include "base/flags.hh"
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Ron Dreslinski
29 * Steve Reinhardt
30 * Ali Saidi
31 */
32
33/**
34 * @file
35 * Declaration of a request, the overall memory request consisting of
36 the parts of the request that are persistent throughout the transaction.
37 */
38
39#ifndef __MEM_REQUEST_HH__
40#define __MEM_REQUEST_HH__
41
42#include <cassert>
43
44#include "base/fast_alloc.hh"
45#include "base/flags.hh"
46#include "base/misc.hh"
46#include "sim/host.hh"
47#include "sim/core.hh"
48
49class Request;
50
51typedef Request* RequestPtr;
52
53class Request : public FastAlloc
54{
55 public:
56 typedef uint32_t FlagsType;
57 typedef ::Flags<FlagsType> Flags;
58
59 /** ASI information for this request if it exists. */
60 static const FlagsType ASI_BITS = 0x000000FF;
61 /** The request is a Load locked/store conditional. */
62 static const FlagsType LOCKED = 0x00000100;
63 /** The virtual address is also the physical address. */
64 static const FlagsType PHYSICAL = 0x00000200;
65 /** The request is an ALPHA VPTE pal access (hw_ld). */
66 static const FlagsType VPTE = 0x00000400;
67 /** Use the alternate mode bits in ALPHA. */
68 static const FlagsType ALTMODE = 0x00000800;
69 /** The request is to an uncacheable address. */
70 static const FlagsType UNCACHEABLE = 0x00001000;
71 /** The request should not cause a page fault. */
72 static const FlagsType NO_FAULT = 0x00002000;
73 /** The request should be prefetched into the exclusive state. */
74 static const FlagsType PF_EXCLUSIVE = 0x00010000;
75 /** The request should be marked as LRU. */
76 static const FlagsType EVICT_NEXT = 0x00020000;
77 /** The request should ignore unaligned access faults */
78 static const FlagsType NO_ALIGN_FAULT = 0x00040000;
79 /** The request was an instruction read. */
80 static const FlagsType INST_READ = 0x00080000;
81 /** This request is for a memory swap. */
82 static const FlagsType MEM_SWAP = 0x00100000;
83 static const FlagsType MEM_SWAP_COND = 0x00200000;
84 /** The request should ignore unaligned access faults */
85 static const FlagsType NO_HALF_WORD_ALIGN_FAULT = 0x00400000;
86 /** This request is to a memory mapped register. */
87 static const FlagsType MMAPED_IPR = 0x00800000;
88
89 private:
90 static const FlagsType PUBLIC_FLAGS = 0x00FF3FFF;
91 static const FlagsType PRIVATE_FLAGS = 0xFF000000;
92
93 /** Whether or not the size is valid. */
94 static const FlagsType VALID_SIZE = 0x01000000;
95 /** Whether or not paddr is valid (has been written yet). */
96 static const FlagsType VALID_PADDR = 0x02000000;
97 /** Whether or not the vaddr & asid are valid. */
98 static const FlagsType VALID_VADDR = 0x04000000;
99 /** Whether or not the pc is valid. */
100 static const FlagsType VALID_PC = 0x10000000;
101 /** Whether or not the context ID is valid. */
102 static const FlagsType VALID_CONTEXT_ID = 0x20000000;
103 static const FlagsType VALID_THREAD_ID = 0x40000000;
104 /** Whether or not the sc result is valid. */
105 static const FlagsType VALID_EXTRA_DATA = 0x80000000;
106
107 private:
108 /**
109 * The physical address of the request. Valid only if validPaddr
110 * is set.
111 */
112 Addr paddr;
113
114 /**
115 * The size of the request. This field must be set when vaddr or
116 * paddr is written via setVirt() or setPhys(), so it is always
117 * valid as long as one of the address fields is valid.
118 */
119 int size;
120
121 /** Flag structure for the request. */
122 Flags flags;
123
124 /**
125 * The time this request was started. Used to calculate
126 * latencies. This field is set to curTick any time paddr or vaddr
127 * is written.
128 */
129 Tick time;
130
131 /** The address space ID. */
132 int asid;
133
134 /** The virtual address of the request. */
135 Addr vaddr;
136
137 /**
138 * Extra data for the request, such as the return value of
139 * store conditional or the compare value for a CAS. */
140 uint64_t extraData;
141
142 /** The context ID (for statistics, typically). */
143 int _contextId;
144 /** The thread ID (id within this CPU) */
145 int _threadId;
146
147 /** program counter of initiating access; for tracing/debugging */
148 Addr pc;
149
150 public:
151 /** Minimal constructor. No fields are initialized. */
152 Request()
153 {}
154
155 /**
156 * Constructor for physical (e.g. device) requests. Initializes
157 * just physical address, size, flags, and timestamp (to curTick).
158 * These fields are adequate to perform a request.
159 */
160 Request(Addr paddr, int size, Flags flags)
161 {
162 setPhys(paddr, size, flags);
163 }
164
165 Request(int asid, Addr vaddr, int size, Flags flags, Addr pc,
166 int cid, int tid)
167 {
168 setThreadContext(cid, tid);
169 setVirt(asid, vaddr, size, flags, pc);
170 }
171
172 ~Request() {} // for FastAlloc
173
174 /**
175 * Set up CPU and thread numbers.
176 */
177 void
178 setThreadContext(int context_id, int thread_id)
179 {
180 _contextId = context_id;
181 _threadId = thread_id;
182 flags.set(VALID_CONTEXT_ID|VALID_THREAD_ID);
183 }
184
185 /**
186 * Set up a physical (e.g. device) request in a previously
187 * allocated Request object.
188 */
189 void
190 setPhys(Addr _paddr, int _size, Flags _flags)
191 {
192 assert(_size >= 0);
193 paddr = _paddr;
194 size = _size;
195 time = curTick;
196
197 flags.set(VALID_PADDR|VALID_SIZE);
198 flags.clear(VALID_VADDR|VALID_PC|VALID_EXTRA_DATA|MMAPED_IPR);
199 flags.update(_flags, PUBLIC_FLAGS);
200 }
201
202 /**
203 * Set up a virtual (e.g., CPU) request in a previously
204 * allocated Request object.
205 */
206 void
207 setVirt(int _asid, Addr _vaddr, int _size, Flags _flags, Addr _pc)
208 {
209 assert(_size >= 0);
210 asid = _asid;
211 vaddr = _vaddr;
212 size = _size;
213 pc = _pc;
214 time = curTick;
215
216 flags.set(VALID_VADDR|VALID_SIZE|VALID_PC);
217 flags.clear(VALID_PADDR|VALID_EXTRA_DATA|MMAPED_IPR);
218 flags.update(_flags, PUBLIC_FLAGS);
219 }
220
221 /**
222 * Set just the physical address. This should only be used to
223 * record the result of a translation, and thus the vaddr must be
224 * valid before this method is called. Otherwise, use setPhys()
225 * to guarantee that the size and flags are also set.
226 */
227 void
228 setPaddr(Addr _paddr)
229 {
230 assert(flags.any(VALID_VADDR));
231 paddr = _paddr;
232 flags.set(VALID_PADDR);
233 }
234
235 /**
47#include "sim/host.hh"
48#include "sim/core.hh"
49
50class Request;
51
52typedef Request* RequestPtr;
53
54class Request : public FastAlloc
55{
56 public:
57 typedef uint32_t FlagsType;
58 typedef ::Flags<FlagsType> Flags;
59
60 /** ASI information for this request if it exists. */
61 static const FlagsType ASI_BITS = 0x000000FF;
62 /** The request is a Load locked/store conditional. */
63 static const FlagsType LOCKED = 0x00000100;
64 /** The virtual address is also the physical address. */
65 static const FlagsType PHYSICAL = 0x00000200;
66 /** The request is an ALPHA VPTE pal access (hw_ld). */
67 static const FlagsType VPTE = 0x00000400;
68 /** Use the alternate mode bits in ALPHA. */
69 static const FlagsType ALTMODE = 0x00000800;
70 /** The request is to an uncacheable address. */
71 static const FlagsType UNCACHEABLE = 0x00001000;
72 /** The request should not cause a page fault. */
73 static const FlagsType NO_FAULT = 0x00002000;
74 /** The request should be prefetched into the exclusive state. */
75 static const FlagsType PF_EXCLUSIVE = 0x00010000;
76 /** The request should be marked as LRU. */
77 static const FlagsType EVICT_NEXT = 0x00020000;
78 /** The request should ignore unaligned access faults */
79 static const FlagsType NO_ALIGN_FAULT = 0x00040000;
80 /** The request was an instruction read. */
81 static const FlagsType INST_READ = 0x00080000;
82 /** This request is for a memory swap. */
83 static const FlagsType MEM_SWAP = 0x00100000;
84 static const FlagsType MEM_SWAP_COND = 0x00200000;
85 /** The request should ignore unaligned access faults */
86 static const FlagsType NO_HALF_WORD_ALIGN_FAULT = 0x00400000;
87 /** This request is to a memory mapped register. */
88 static const FlagsType MMAPED_IPR = 0x00800000;
89
90 private:
91 static const FlagsType PUBLIC_FLAGS = 0x00FF3FFF;
92 static const FlagsType PRIVATE_FLAGS = 0xFF000000;
93
94 /** Whether or not the size is valid. */
95 static const FlagsType VALID_SIZE = 0x01000000;
96 /** Whether or not paddr is valid (has been written yet). */
97 static const FlagsType VALID_PADDR = 0x02000000;
98 /** Whether or not the vaddr & asid are valid. */
99 static const FlagsType VALID_VADDR = 0x04000000;
100 /** Whether or not the pc is valid. */
101 static const FlagsType VALID_PC = 0x10000000;
102 /** Whether or not the context ID is valid. */
103 static const FlagsType VALID_CONTEXT_ID = 0x20000000;
104 static const FlagsType VALID_THREAD_ID = 0x40000000;
105 /** Whether or not the sc result is valid. */
106 static const FlagsType VALID_EXTRA_DATA = 0x80000000;
107
108 private:
109 /**
110 * The physical address of the request. Valid only if validPaddr
111 * is set.
112 */
113 Addr paddr;
114
115 /**
116 * The size of the request. This field must be set when vaddr or
117 * paddr is written via setVirt() or setPhys(), so it is always
118 * valid as long as one of the address fields is valid.
119 */
120 int size;
121
122 /** Flag structure for the request. */
123 Flags flags;
124
125 /**
126 * The time this request was started. Used to calculate
127 * latencies. This field is set to curTick any time paddr or vaddr
128 * is written.
129 */
130 Tick time;
131
132 /** The address space ID. */
133 int asid;
134
135 /** The virtual address of the request. */
136 Addr vaddr;
137
138 /**
139 * Extra data for the request, such as the return value of
140 * store conditional or the compare value for a CAS. */
141 uint64_t extraData;
142
143 /** The context ID (for statistics, typically). */
144 int _contextId;
145 /** The thread ID (id within this CPU) */
146 int _threadId;
147
148 /** program counter of initiating access; for tracing/debugging */
149 Addr pc;
150
151 public:
152 /** Minimal constructor. No fields are initialized. */
153 Request()
154 {}
155
156 /**
157 * Constructor for physical (e.g. device) requests. Initializes
158 * just physical address, size, flags, and timestamp (to curTick).
159 * These fields are adequate to perform a request.
160 */
161 Request(Addr paddr, int size, Flags flags)
162 {
163 setPhys(paddr, size, flags);
164 }
165
166 Request(int asid, Addr vaddr, int size, Flags flags, Addr pc,
167 int cid, int tid)
168 {
169 setThreadContext(cid, tid);
170 setVirt(asid, vaddr, size, flags, pc);
171 }
172
173 ~Request() {} // for FastAlloc
174
175 /**
176 * Set up CPU and thread numbers.
177 */
178 void
179 setThreadContext(int context_id, int thread_id)
180 {
181 _contextId = context_id;
182 _threadId = thread_id;
183 flags.set(VALID_CONTEXT_ID|VALID_THREAD_ID);
184 }
185
186 /**
187 * Set up a physical (e.g. device) request in a previously
188 * allocated Request object.
189 */
190 void
191 setPhys(Addr _paddr, int _size, Flags _flags)
192 {
193 assert(_size >= 0);
194 paddr = _paddr;
195 size = _size;
196 time = curTick;
197
198 flags.set(VALID_PADDR|VALID_SIZE);
199 flags.clear(VALID_VADDR|VALID_PC|VALID_EXTRA_DATA|MMAPED_IPR);
200 flags.update(_flags, PUBLIC_FLAGS);
201 }
202
203 /**
204 * Set up a virtual (e.g., CPU) request in a previously
205 * allocated Request object.
206 */
207 void
208 setVirt(int _asid, Addr _vaddr, int _size, Flags _flags, Addr _pc)
209 {
210 assert(_size >= 0);
211 asid = _asid;
212 vaddr = _vaddr;
213 size = _size;
214 pc = _pc;
215 time = curTick;
216
217 flags.set(VALID_VADDR|VALID_SIZE|VALID_PC);
218 flags.clear(VALID_PADDR|VALID_EXTRA_DATA|MMAPED_IPR);
219 flags.update(_flags, PUBLIC_FLAGS);
220 }
221
222 /**
223 * Set just the physical address. This should only be used to
224 * record the result of a translation, and thus the vaddr must be
225 * valid before this method is called. Otherwise, use setPhys()
226 * to guarantee that the size and flags are also set.
227 */
228 void
229 setPaddr(Addr _paddr)
230 {
231 assert(flags.any(VALID_VADDR));
232 paddr = _paddr;
233 flags.set(VALID_PADDR);
234 }
235
236 /**
237 * Generate two requests as if this request had been split into two
238 * pieces. The original request can't have been translated already.
239 */
240 void splitOnVaddr(Addr split_addr, RequestPtr &req1, RequestPtr &req2)
241 {
242 assert(flags.any(VALID_VADDR));
243 assert(flags.none(VALID_PADDR));
244 assert(split_addr > vaddr && split_addr < vaddr + size);
245 req1 = new Request;
246 *req1 = *this;
247 req2 = new Request;
248 *req2 = *this;
249 req1->size = split_addr - vaddr;
250 req2->vaddr = split_addr;
251 req2->size = size - req1->size;
252 }
253
254 /**
236 * Accessor for paddr.
237 */
238 Addr
239 getPaddr()
240 {
241 assert(flags.any(VALID_PADDR));
242 return paddr;
243 }
244
245 /**
246 * Accessor for size.
247 */
248 int
249 getSize()
250 {
251 assert(flags.any(VALID_SIZE));
252 return size;
253 }
254
255 /** Accessor for time. */
256 Tick
257 getTime()
258 {
259 assert(flags.any(VALID_PADDR|VALID_VADDR));
260 return time;
261 }
262
263 void
264 setTime(Tick when)
265 {
266 assert(flags.any(VALID_PADDR|VALID_VADDR));
267 time = when;
268 }
269
270 void resetTime() { setTime(curTick); }
271
272 /** Accessor for flags. */
273 Flags
274 getFlags()
275 {
276 assert(flags.any(VALID_PADDR|VALID_VADDR));
277 return flags & PUBLIC_FLAGS;
278 }
279
280 Flags
281 anyFlags(Flags _flags)
282 {
283 assert(flags.any(VALID_PADDR|VALID_VADDR));
284 assert(_flags.none(~PUBLIC_FLAGS));
285 return flags.any(_flags);
286 }
287
288 Flags
289 allFlags(Flags _flags)
290 {
291 assert(flags.any(VALID_PADDR|VALID_VADDR));
292 assert(_flags.none(~PUBLIC_FLAGS));
293 return flags.all(_flags);
294 }
295
296 /** Accessor for flags. */
297 void
298 setFlags(Flags _flags)
299 {
300 assert(flags.any(VALID_PADDR|VALID_VADDR));
301 assert(_flags.none(~PUBLIC_FLAGS));
302 flags.set(_flags);
303 }
304
305 void
306 clearFlags(Flags _flags)
307 {
308 assert(flags.any(VALID_PADDR|VALID_VADDR));
309 assert(_flags.none(~PUBLIC_FLAGS));
310 flags.clear(_flags);
311 }
312
313 void
314 clearFlags()
315 {
316 assert(flags.any(VALID_PADDR|VALID_VADDR));
317 flags.clear(PUBLIC_FLAGS);
318 }
319
320 /** Accessor function for vaddr.*/
321 Addr
322 getVaddr()
323 {
324 assert(flags.any(VALID_VADDR));
325 return vaddr;
326 }
327
328 /** Accessor function for asid.*/
329 int
330 getAsid()
331 {
332 assert(flags.any(VALID_VADDR));
333 return asid;
334 }
335
336 /** Accessor function for asi.*/
337 uint8_t
338 getAsi()
339 {
340 assert(flags.any(VALID_VADDR));
341 return flags & ASI_BITS;
342 }
343
344 /** Accessor function for asi.*/
345 void
346 setAsi(uint8_t a)
347 {
348 assert(flags.any(VALID_VADDR));
349 flags.update(a, ASI_BITS);
350 }
351
352 /** Accessor function for asi.*/
353 bool
354 isMmapedIpr()
355 {
356 assert(flags.any(VALID_PADDR));
357 return flags.any(MMAPED_IPR);
358 }
359
360 /** Accessor function for asi.*/
361 void
362 setMmapedIpr(bool r)
363 {
364 assert(VALID_VADDR);
365 flags.set(MMAPED_IPR);
366 }
367
368 /** Accessor function to check if sc result is valid. */
369 bool
370 extraDataValid()
371 {
372 return flags.any(VALID_EXTRA_DATA);
373 }
374
375 /** Accessor function for store conditional return value.*/
376 uint64_t
377 getExtraData() const
378 {
379 assert(flags.any(VALID_EXTRA_DATA));
380 return extraData;
381 }
382
383 /** Accessor function for store conditional return value.*/
384 void
385 setExtraData(uint64_t _extraData)
386 {
387 extraData = _extraData;
388 flags.set(VALID_EXTRA_DATA);
389 }
390
391 /** Accessor function for context ID.*/
392 int
393 contextId() const
394 {
395 assert(flags.any(VALID_CONTEXT_ID));
396 return _contextId;
397 }
398
399 /** Accessor function for thread ID. */
400 int
401 threadId() const
402 {
403 assert(flags.any(VALID_THREAD_ID));
404 return _threadId;
405 }
406
407 /** Accessor function for pc.*/
408 Addr
409 getPC() const
410 {
411 assert(flags.any(VALID_PC));
412 return pc;
413 }
414
415 /** Accessor Function to Check Cacheability. */
416 bool isUncacheable() const { return flags.any(UNCACHEABLE); }
417 bool isInstRead() const { return flags.any(INST_READ); }
418 bool isLocked() const { return flags.any(LOCKED); }
419 bool isSwap() const { return flags.any(MEM_SWAP|MEM_SWAP_COND); }
420 bool isCondSwap() const { return flags.any(MEM_SWAP_COND); }
421
422 bool
423 isMisaligned() const
424 {
425 if (flags.any(NO_ALIGN_FAULT))
426 return false;
427
428 if ((vaddr & 0x1))
429 return true;
430
431 if (flags.any(NO_HALF_WORD_ALIGN_FAULT))
432 return false;
433
434 if ((vaddr & 0x2))
435 return true;
436
437 return false;
438 }
439
440 friend class Packet;
441};
442
443#endif // __MEM_REQUEST_HH__
255 * Accessor for paddr.
256 */
257 Addr
258 getPaddr()
259 {
260 assert(flags.any(VALID_PADDR));
261 return paddr;
262 }
263
264 /**
265 * Accessor for size.
266 */
267 int
268 getSize()
269 {
270 assert(flags.any(VALID_SIZE));
271 return size;
272 }
273
274 /** Accessor for time. */
275 Tick
276 getTime()
277 {
278 assert(flags.any(VALID_PADDR|VALID_VADDR));
279 return time;
280 }
281
282 void
283 setTime(Tick when)
284 {
285 assert(flags.any(VALID_PADDR|VALID_VADDR));
286 time = when;
287 }
288
289 void resetTime() { setTime(curTick); }
290
291 /** Accessor for flags. */
292 Flags
293 getFlags()
294 {
295 assert(flags.any(VALID_PADDR|VALID_VADDR));
296 return flags & PUBLIC_FLAGS;
297 }
298
299 Flags
300 anyFlags(Flags _flags)
301 {
302 assert(flags.any(VALID_PADDR|VALID_VADDR));
303 assert(_flags.none(~PUBLIC_FLAGS));
304 return flags.any(_flags);
305 }
306
307 Flags
308 allFlags(Flags _flags)
309 {
310 assert(flags.any(VALID_PADDR|VALID_VADDR));
311 assert(_flags.none(~PUBLIC_FLAGS));
312 return flags.all(_flags);
313 }
314
315 /** Accessor for flags. */
316 void
317 setFlags(Flags _flags)
318 {
319 assert(flags.any(VALID_PADDR|VALID_VADDR));
320 assert(_flags.none(~PUBLIC_FLAGS));
321 flags.set(_flags);
322 }
323
324 void
325 clearFlags(Flags _flags)
326 {
327 assert(flags.any(VALID_PADDR|VALID_VADDR));
328 assert(_flags.none(~PUBLIC_FLAGS));
329 flags.clear(_flags);
330 }
331
332 void
333 clearFlags()
334 {
335 assert(flags.any(VALID_PADDR|VALID_VADDR));
336 flags.clear(PUBLIC_FLAGS);
337 }
338
339 /** Accessor function for vaddr.*/
340 Addr
341 getVaddr()
342 {
343 assert(flags.any(VALID_VADDR));
344 return vaddr;
345 }
346
347 /** Accessor function for asid.*/
348 int
349 getAsid()
350 {
351 assert(flags.any(VALID_VADDR));
352 return asid;
353 }
354
355 /** Accessor function for asi.*/
356 uint8_t
357 getAsi()
358 {
359 assert(flags.any(VALID_VADDR));
360 return flags & ASI_BITS;
361 }
362
363 /** Accessor function for asi.*/
364 void
365 setAsi(uint8_t a)
366 {
367 assert(flags.any(VALID_VADDR));
368 flags.update(a, ASI_BITS);
369 }
370
371 /** Accessor function for asi.*/
372 bool
373 isMmapedIpr()
374 {
375 assert(flags.any(VALID_PADDR));
376 return flags.any(MMAPED_IPR);
377 }
378
379 /** Accessor function for asi.*/
380 void
381 setMmapedIpr(bool r)
382 {
383 assert(VALID_VADDR);
384 flags.set(MMAPED_IPR);
385 }
386
387 /** Accessor function to check if sc result is valid. */
388 bool
389 extraDataValid()
390 {
391 return flags.any(VALID_EXTRA_DATA);
392 }
393
394 /** Accessor function for store conditional return value.*/
395 uint64_t
396 getExtraData() const
397 {
398 assert(flags.any(VALID_EXTRA_DATA));
399 return extraData;
400 }
401
402 /** Accessor function for store conditional return value.*/
403 void
404 setExtraData(uint64_t _extraData)
405 {
406 extraData = _extraData;
407 flags.set(VALID_EXTRA_DATA);
408 }
409
410 /** Accessor function for context ID.*/
411 int
412 contextId() const
413 {
414 assert(flags.any(VALID_CONTEXT_ID));
415 return _contextId;
416 }
417
418 /** Accessor function for thread ID. */
419 int
420 threadId() const
421 {
422 assert(flags.any(VALID_THREAD_ID));
423 return _threadId;
424 }
425
426 /** Accessor function for pc.*/
427 Addr
428 getPC() const
429 {
430 assert(flags.any(VALID_PC));
431 return pc;
432 }
433
434 /** Accessor Function to Check Cacheability. */
435 bool isUncacheable() const { return flags.any(UNCACHEABLE); }
436 bool isInstRead() const { return flags.any(INST_READ); }
437 bool isLocked() const { return flags.any(LOCKED); }
438 bool isSwap() const { return flags.any(MEM_SWAP|MEM_SWAP_COND); }
439 bool isCondSwap() const { return flags.any(MEM_SWAP_COND); }
440
441 bool
442 isMisaligned() const
443 {
444 if (flags.any(NO_ALIGN_FAULT))
445 return false;
446
447 if ((vaddr & 0x1))
448 return true;
449
450 if (flags.any(NO_HALF_WORD_ALIGN_FAULT))
451 return false;
452
453 if ((vaddr & 0x2))
454 return true;
455
456 return false;
457 }
458
459 friend class Packet;
460};
461
462#endif // __MEM_REQUEST_HH__