request.hh revision 5745:6b0f8306704b
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"
47#include "sim/host.hh"
48#include "sim/core.hh"
49
50class Request;
51
52typedef Request* RequestPtr;
53
54class Request : public FastAlloc
55{
56    friend class Packet;
57
58  public:
59    typedef uint32_t FlagsType;
60    typedef ::Flags<FlagsType> Flags;
61
62    /** ASI information for this request if it exists. */
63    static const FlagsType ASI_BITS                    = 0x000000FF;
64    /** The request is a Load locked/store conditional. */
65    static const FlagsType LOCKED                      = 0x00000100;
66    /** The virtual address is also the physical address. */
67    static const FlagsType PHYSICAL                    = 0x00000200;
68    /** The request is an ALPHA VPTE pal access (hw_ld). */
69    static const FlagsType VPTE                        = 0x00000400;
70    /** Use the alternate mode bits in ALPHA. */
71    static const FlagsType ALTMODE                     = 0x00000800;
72    /** The request is to an uncacheable address. */
73    static const FlagsType UNCACHEABLE                 = 0x00001000;
74    /** The request should not cause a page fault. */
75    static const FlagsType NO_FAULT                    = 0x00002000;
76    /** The request should be prefetched into the exclusive state. */
77    static const FlagsType PF_EXCLUSIVE                = 0x00010000;
78    /** The request should be marked as LRU. */
79    static const FlagsType EVICT_NEXT                  = 0x00020000;
80    /** The request should ignore unaligned access faults */
81    static const FlagsType NO_ALIGN_FAULT              = 0x00040000;
82    /** The request was an instruction read. */
83    static const FlagsType INST_READ                   = 0x00080000;
84    /** This request is for a memory swap. */
85    static const FlagsType MEM_SWAP                    = 0x00100000;
86    static const FlagsType MEM_SWAP_COND               = 0x00200000;
87    /** The request should ignore unaligned access faults */
88    static const FlagsType NO_HALF_WORD_ALIGN_FAULT    = 0x00400000;
89    /** This request is to a memory mapped register. */
90    static const FlagsType MMAPED_IPR                  = 0x00800000;
91
92  private:
93    static const FlagsType PUBLIC_FLAGS                = 0x00FF3FFF;
94    static const FlagsType PRIVATE_FLAGS               = 0xFF000000;
95
96    /** Whether or not the size is valid. */
97    static const FlagsType VALID_SIZE                  = 0x01000000;
98    /** Whether or not paddr is valid (has been written yet). */
99    static const FlagsType VALID_PADDR                 = 0x02000000;
100    /** Whether or not the vaddr & asid are valid. */
101    static const FlagsType VALID_VADDR                 = 0x04000000;
102    /** Whether or not the pc is valid. */
103    static const FlagsType VALID_PC                    = 0x10000000;
104    /** Whether or not the context ID is valid. */
105    static const FlagsType VALID_CONTEXT_ID            = 0x20000000;
106    static const FlagsType VALID_THREAD_ID             = 0x40000000;
107    /** Whether or not the sc result is valid. */
108    static const FlagsType VALID_EXTRA_DATA            = 0x80000000;
109
110  private:
111    /**
112     * The physical address of the request. Valid only if validPaddr
113     * is set.
114     */
115    Addr paddr;
116
117    /**
118     * The size of the request. This field must be set when vaddr or
119     * paddr is written via setVirt() or setPhys(), so it is always
120     * valid as long as one of the address fields is valid.
121     */
122    int size;
123
124    /** Flag structure for the request. */
125    Flags flags;
126
127    /**
128     * The time this request was started. Used to calculate
129     * latencies. This field is set to curTick any time paddr or vaddr
130     * is written.
131     */
132    Tick time;
133
134    /** The address space ID. */
135    int asid;
136
137    /** The virtual address of the request. */
138    Addr vaddr;
139
140    /**
141     * Extra data for the request, such as the return value of
142     * store conditional or the compare value for a CAS. */
143    uint64_t extraData;
144
145    /** The context ID (for statistics, typically). */
146    int _contextId;
147    /** The thread ID (id within this CPU) */
148    int _threadId;
149
150    /** program counter of initiating access; for tracing/debugging */
151    Addr pc;
152
153  public:
154    /** Minimal constructor.  No fields are initialized. */
155    Request()
156    {}
157
158    /**
159     * Constructor for physical (e.g. device) requests.  Initializes
160     * just physical address, size, flags, and timestamp (to curTick).
161     * These fields are adequate to perform a request.
162     */
163    Request(Addr paddr, int size, Flags flags)
164    {
165        setPhys(paddr, size, flags);
166    }
167
168    Request(int asid, Addr vaddr, int size, Flags flags, Addr pc,
169            int cid, int tid)
170    {
171        setThreadContext(cid, tid);
172        setVirt(asid, vaddr, size, flags, pc);
173    }
174
175    ~Request() {}  // for FastAlloc
176
177    /**
178     * Set up CPU and thread numbers.
179     */
180    void
181    setThreadContext(int context_id, int thread_id)
182    {
183        _contextId = context_id;
184        _threadId = thread_id;
185        flags.set(VALID_CONTEXT_ID|VALID_THREAD_ID);
186    }
187
188    /**
189     * Set up a physical (e.g. device) request in a previously
190     * allocated Request object.
191     */
192    void
193    setPhys(Addr _paddr, int _size, Flags _flags)
194    {
195        assert(_size >= 0);
196        paddr = _paddr;
197        size = _size;
198        time = curTick;
199
200        flags.set(VALID_PADDR|VALID_SIZE);
201        flags.clear(VALID_VADDR|VALID_PC|VALID_EXTRA_DATA|MMAPED_IPR);
202        flags.update(_flags, PUBLIC_FLAGS);
203    }
204
205    /**
206     * Set up a virtual (e.g., CPU) request in a previously
207     * allocated Request object.
208     */
209    void
210    setVirt(int _asid, Addr _vaddr, int _size, Flags _flags, Addr _pc)
211    {
212        assert(_size >= 0);
213        asid = _asid;
214        vaddr = _vaddr;
215        size = _size;
216        pc = _pc;
217        time = curTick;
218
219        flags.set(VALID_VADDR|VALID_SIZE|VALID_PC);
220        flags.clear(VALID_PADDR|VALID_EXTRA_DATA|MMAPED_IPR);
221        flags.update(_flags, PUBLIC_FLAGS);
222    }
223
224    /**
225     * Set just the physical address.  This should only be used to
226     * record the result of a translation, and thus the vaddr must be
227     * valid before this method is called.  Otherwise, use setPhys()
228     * to guarantee that the size and flags are also set.
229     */
230    void
231    setPaddr(Addr _paddr)
232    {
233        assert(flags.any(VALID_VADDR));
234        paddr = _paddr;
235        flags.set(VALID_PADDR);
236    }
237
238    /**
239     * Generate two requests as if this request had been split into two
240     * pieces. The original request can't have been translated already.
241     */
242    void splitOnVaddr(Addr split_addr, RequestPtr &req1, RequestPtr &req2)
243    {
244        assert(flags.any(VALID_VADDR));
245        assert(flags.none(VALID_PADDR));
246        assert(split_addr > vaddr && split_addr < vaddr + size);
247        req1 = new Request;
248        *req1 = *this;
249        req2 = new Request;
250        *req2 = *this;
251        req1->size = split_addr - vaddr;
252        req2->vaddr = split_addr;
253        req2->size = size - req1->size;
254    }
255
256    /**
257     * Accessor for paddr.
258     */
259    Addr
260    getPaddr()
261    {
262        assert(flags.any(VALID_PADDR));
263        return paddr;
264    }
265
266    /**
267     *  Accessor for size.
268     */
269    int
270    getSize()
271    {
272        assert(flags.any(VALID_SIZE));
273        return size;
274    }
275
276    /** Accessor for time. */
277    Tick
278    getTime()
279    {
280        assert(flags.any(VALID_PADDR|VALID_VADDR));
281        return time;
282    }
283
284    void
285    setTime(Tick when)
286    {
287        assert(flags.any(VALID_PADDR|VALID_VADDR));
288        time = when;
289    }
290
291    void resetTime() { setTime(curTick); }
292
293    /** Accessor for flags. */
294    Flags
295    getFlags()
296    {
297        assert(flags.any(VALID_PADDR|VALID_VADDR));
298        return flags & PUBLIC_FLAGS;
299    }
300
301    Flags
302    anyFlags(Flags _flags)
303    {
304        assert(flags.any(VALID_PADDR|VALID_VADDR));
305        assert(_flags.none(~PUBLIC_FLAGS));
306        return flags.any(_flags);
307    }
308
309    Flags
310    allFlags(Flags _flags)
311    {
312        assert(flags.any(VALID_PADDR|VALID_VADDR));
313        assert(_flags.none(~PUBLIC_FLAGS));
314        return flags.all(_flags);
315    }
316
317    /** Accessor for flags. */
318    void
319    setFlags(Flags _flags)
320    {
321        assert(flags.any(VALID_PADDR|VALID_VADDR));
322        assert(_flags.none(~PUBLIC_FLAGS));
323        flags.set(_flags);
324    }
325
326    void
327    clearFlags(Flags _flags)
328    {
329        assert(flags.any(VALID_PADDR|VALID_VADDR));
330        assert(_flags.none(~PUBLIC_FLAGS));
331        flags.clear(_flags);
332    }
333
334    void
335    clearFlags()
336    {
337        assert(flags.any(VALID_PADDR|VALID_VADDR));
338        flags.clear(PUBLIC_FLAGS);
339    }
340
341    /** Accessor function for vaddr.*/
342    Addr
343    getVaddr()
344    {
345        assert(flags.any(VALID_VADDR));
346        return vaddr;
347    }
348
349    /** Accessor function for asid.*/
350    int
351    getAsid()
352    {
353        assert(flags.any(VALID_VADDR));
354        return asid;
355    }
356
357    /** Accessor function for asi.*/
358    uint8_t
359    getAsi()
360    {
361        assert(flags.any(VALID_VADDR));
362        return flags & ASI_BITS;
363    }
364
365    /** Accessor function for asi.*/
366    void
367    setAsi(uint8_t a)
368    {
369        assert(flags.any(VALID_VADDR));
370        flags.update(a, ASI_BITS);
371    }
372
373    /** Accessor function for asi.*/
374    bool
375    isMmapedIpr()
376    {
377        assert(flags.any(VALID_PADDR));
378        return flags.any(MMAPED_IPR);
379    }
380
381    /** Accessor function for asi.*/
382    void
383    setMmapedIpr(bool r)
384    {
385        assert(VALID_VADDR);
386        flags.set(MMAPED_IPR);
387    }
388
389    /** Accessor function to check if sc result is valid. */
390    bool
391    extraDataValid()
392    {
393        return flags.any(VALID_EXTRA_DATA);
394    }
395
396    /** Accessor function for store conditional return value.*/
397    uint64_t
398    getExtraData() const
399    {
400        assert(flags.any(VALID_EXTRA_DATA));
401        return extraData;
402    }
403
404    /** Accessor function for store conditional return value.*/
405    void
406    setExtraData(uint64_t _extraData)
407    {
408        extraData = _extraData;
409        flags.set(VALID_EXTRA_DATA);
410    }
411
412    /** Accessor function for context ID.*/
413    int
414    contextId() const
415    {
416        assert(flags.any(VALID_CONTEXT_ID));
417        return _contextId;
418    }
419
420    /** Accessor function for thread ID. */
421    int
422    threadId() const
423    {
424        assert(flags.any(VALID_THREAD_ID));
425        return _threadId;
426    }
427
428    /** Accessor function for pc.*/
429    Addr
430    getPC() const
431    {
432        assert(flags.any(VALID_PC));
433        return pc;
434    }
435
436    /** Accessor Function to Check Cacheability. */
437    bool isUncacheable() const { return flags.any(UNCACHEABLE); }
438    bool isInstRead() const { return flags.any(INST_READ); }
439    bool isLocked() const { return flags.any(LOCKED); }
440    bool isSwap() const { return flags.any(MEM_SWAP|MEM_SWAP_COND); }
441    bool isCondSwap() const { return flags.any(MEM_SWAP_COND); }
442
443    bool
444    isMisaligned() const
445    {
446        if (flags.any(NO_ALIGN_FAULT))
447            return false;
448
449        if ((vaddr & 0x1))
450            return true;
451
452        if (flags.any(NO_HALF_WORD_ALIGN_FAULT))
453            return false;
454
455        if ((vaddr & 0x2))
456            return true;
457
458        return false;
459    }
460};
461
462#endif // __MEM_REQUEST_HH__
463