packet.hh revision 10028:fb8c44de891a
1/*
2 * Copyright (c) 2012-2013 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) 2006 The Regents of The University of Michigan
15 * Copyright (c) 2010 Advanced Micro Devices, Inc.
16 * All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions are
20 * met: redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer;
22 * redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution;
25 * neither the name of the copyright holders nor the names of its
26 * contributors may be used to endorse or promote products derived from
27 * this software without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 *
41 * Authors: Ron Dreslinski
42 *          Steve Reinhardt
43 *          Ali Saidi
44 *          Andreas Hansson
45 */
46
47/**
48 * @file
49 * Declaration of the Packet class.
50 */
51
52#ifndef __MEM_PACKET_HH__
53#define __MEM_PACKET_HH__
54
55#include <bitset>
56#include <cassert>
57#include <list>
58
59#include "base/cast.hh"
60#include "base/compiler.hh"
61#include "base/flags.hh"
62#include "base/misc.hh"
63#include "base/printable.hh"
64#include "base/types.hh"
65#include "mem/request.hh"
66#include "sim/core.hh"
67
68class Packet;
69typedef Packet *PacketPtr;
70typedef uint8_t* PacketDataPtr;
71typedef std::list<PacketPtr> PacketList;
72
73class MemCmd
74{
75    friend class Packet;
76
77  public:
78    /**
79     * List of all commands associated with a packet.
80     */
81    enum Command
82    {
83        InvalidCmd,
84        ReadReq,
85        ReadResp,
86        ReadRespWithInvalidate,
87        WriteReq,
88        WriteResp,
89        Writeback,
90        SoftPFReq,
91        HardPFReq,
92        SoftPFResp,
93        HardPFResp,
94        // WriteInvalidateReq transactions used to be generated by the
95        // DMA ports when writing full blocks to memory, however, it
96        // is not used anymore since we put the I/O cache in place to
97        // deal with partial block writes. Hence, WriteInvalidateReq
98        // and WriteInvalidateResp are currently unused. The
99        // implication is that the I/O cache does read-exclusive
100        // operations on every full-cache-block DMA, and ultimately
101        // this needs to be fixed.
102        WriteInvalidateReq,
103        WriteInvalidateResp,
104        UpgradeReq,
105        SCUpgradeReq,           // Special "weak" upgrade for StoreCond
106        UpgradeResp,
107        SCUpgradeFailReq,       // Failed SCUpgradeReq in MSHR (never sent)
108        UpgradeFailResp,        // Valid for SCUpgradeReq only
109        ReadExReq,
110        ReadExResp,
111        LoadLockedReq,
112        StoreCondReq,
113        StoreCondFailReq,       // Failed StoreCondReq in MSHR (never sent)
114        StoreCondResp,
115        SwapReq,
116        SwapResp,
117        MessageReq,
118        MessageResp,
119        // Error responses
120        // @TODO these should be classified as responses rather than
121        // requests; coding them as requests initially for backwards
122        // compatibility
123        InvalidDestError,  // packet dest field invalid
124        BadAddressError,   // memory address invalid
125        FunctionalReadError, // unable to fulfill functional read
126        FunctionalWriteError, // unable to fulfill functional write
127        // Fake simulator-only commands
128        PrintReq,       // Print state matching address
129        FlushReq,      //request for a cache flush
130        InvalidationReq,   // request for address to be invalidated from lsq
131        NUM_MEM_CMDS
132    };
133
134  private:
135    /**
136     * List of command attributes.
137     */
138    enum Attribute
139    {
140        IsRead,         //!< Data flows from responder to requester
141        IsWrite,        //!< Data flows from requester to responder
142        IsUpgrade,
143        IsInvalidate,
144        NeedsExclusive, //!< Requires exclusive copy to complete in-cache
145        IsRequest,      //!< Issued by requester
146        IsResponse,     //!< Issue by responder
147        NeedsResponse,  //!< Requester needs response from target
148        IsSWPrefetch,
149        IsHWPrefetch,
150        IsLlsc,         //!< Alpha/MIPS LL or SC access
151        HasData,        //!< There is an associated payload
152        IsError,        //!< Error response
153        IsPrint,        //!< Print state matching address (for debugging)
154        IsFlush,        //!< Flush the address from caches
155        NUM_COMMAND_ATTRIBUTES
156    };
157
158    /**
159     * Structure that defines attributes and other data associated
160     * with a Command.
161     */
162    struct CommandInfo
163    {
164        /// Set of attribute flags.
165        const std::bitset<NUM_COMMAND_ATTRIBUTES> attributes;
166        /// Corresponding response for requests; InvalidCmd if no
167        /// response is applicable.
168        const Command response;
169        /// String representation (for printing)
170        const std::string str;
171    };
172
173    /// Array to map Command enum to associated info.
174    static const CommandInfo commandInfo[];
175
176  private:
177
178    Command cmd;
179
180    bool
181    testCmdAttrib(MemCmd::Attribute attrib) const
182    {
183        return commandInfo[cmd].attributes[attrib] != 0;
184    }
185
186  public:
187
188    bool isRead() const         { return testCmdAttrib(IsRead); }
189    bool isWrite() const        { return testCmdAttrib(IsWrite); }
190    bool isUpgrade() const      { return testCmdAttrib(IsUpgrade); }
191    bool isRequest() const      { return testCmdAttrib(IsRequest); }
192    bool isResponse() const     { return testCmdAttrib(IsResponse); }
193    bool needsExclusive() const { return testCmdAttrib(NeedsExclusive); }
194    bool needsResponse() const  { return testCmdAttrib(NeedsResponse); }
195    bool isInvalidate() const   { return testCmdAttrib(IsInvalidate); }
196    bool hasData() const        { return testCmdAttrib(HasData); }
197    bool isReadWrite() const    { return isRead() && isWrite(); }
198    bool isLLSC() const         { return testCmdAttrib(IsLlsc); }
199    bool isError() const        { return testCmdAttrib(IsError); }
200    bool isPrint() const        { return testCmdAttrib(IsPrint); }
201    bool isFlush() const        { return testCmdAttrib(IsFlush); }
202
203    const Command
204    responseCommand() const
205    {
206        return commandInfo[cmd].response;
207    }
208
209    /// Return the string to a cmd given by idx.
210    const std::string &toString() const { return commandInfo[cmd].str; }
211    int toInt() const { return (int)cmd; }
212
213    MemCmd(Command _cmd) : cmd(_cmd) { }
214    MemCmd(int _cmd) : cmd((Command)_cmd) { }
215    MemCmd() : cmd(InvalidCmd) { }
216
217    bool operator==(MemCmd c2) const { return (cmd == c2.cmd); }
218    bool operator!=(MemCmd c2) const { return (cmd != c2.cmd); }
219};
220
221/**
222 * A Packet is used to encapsulate a transfer between two objects in
223 * the memory system (e.g., the L1 and L2 cache).  (In contrast, a
224 * single Request travels all the way from the requester to the
225 * ultimate destination and back, possibly being conveyed by several
226 * different Packets along the way.)
227 */
228class Packet : public Printable
229{
230  public:
231    typedef uint32_t FlagsType;
232    typedef ::Flags<FlagsType> Flags;
233
234  private:
235    static const FlagsType PUBLIC_FLAGS           = 0x00000000;
236    static const FlagsType PRIVATE_FLAGS          = 0x00007F0F;
237    static const FlagsType COPY_FLAGS             = 0x0000000F;
238
239    static const FlagsType SHARED                 = 0x00000001;
240    // Special control flags
241    /// Special timing-mode atomic snoop for multi-level coherence.
242    static const FlagsType EXPRESS_SNOOP          = 0x00000002;
243    /// Does supplier have exclusive copy?
244    /// Useful for multi-level coherence.
245    static const FlagsType SUPPLY_EXCLUSIVE       = 0x00000004;
246    // Snoop response flags
247    static const FlagsType MEM_INHIBIT            = 0x00000008;
248    /// Are the 'addr' and 'size' fields valid?
249    static const FlagsType VALID_ADDR             = 0x00000100;
250    static const FlagsType VALID_SIZE             = 0x00000200;
251    /// Is the data pointer set to a value that shouldn't be freed
252    /// when the packet is destroyed?
253    static const FlagsType STATIC_DATA            = 0x00001000;
254    /// The data pointer points to a value that should be freed when
255    /// the packet is destroyed.
256    static const FlagsType DYNAMIC_DATA           = 0x00002000;
257    /// the data pointer points to an array (thus delete []) needs to
258    /// be called on it rather than simply delete.
259    static const FlagsType ARRAY_DATA             = 0x00004000;
260    /// suppress the error if this packet encounters a functional
261    /// access failure.
262    static const FlagsType SUPPRESS_FUNC_ERROR    = 0x00008000;
263
264    Flags flags;
265
266  public:
267    typedef MemCmd::Command Command;
268
269    /// The command field of the packet.
270    MemCmd cmd;
271
272    /// A pointer to the original request.
273    RequestPtr req;
274
275  private:
276   /**
277    * A pointer to the data being transfered.  It can be differnt
278    * sizes at each level of the heirarchy so it belongs in the
279    * packet, not request. This may or may not be populated when a
280    * responder recieves the packet. If not populated it memory should
281    * be allocated.
282    */
283    PacketDataPtr data;
284
285    /// The address of the request.  This address could be virtual or
286    /// physical, depending on the system configuration.
287    Addr addr;
288
289    /// True if the request targets the secure memory space.
290    bool _isSecure;
291
292    /// The size of the request or transfer.
293    unsigned size;
294
295    /**
296     * Source port identifier set on a request packet to enable
297     * appropriate routing of the responses. The source port
298     * identifier is set by any multiplexing component, e.g. a bus, as
299     * the timing responses need this information to be routed back to
300     * the appropriate port at a later point in time. The field can be
301     * updated (over-written) as the request packet passes through
302     * additional multiplexing components, and it is their
303     * responsibility to remember the original source port identifier,
304     * for example by using an appropriate sender state. The latter is
305     * done in the cache and bridge.
306     */
307    PortID src;
308
309    /**
310     * Destination port identifier that is present on all response
311     * packets that passed through a multiplexing component as a
312     * request packet. The source port identifier is turned into a
313     * destination port identifier when the packet is turned into a
314     * response, and the destination is used, e.g. by the bus, to
315     * select the appropriate path through the interconnect.
316     */
317    PortID dest;
318
319    /**
320     * The original value of the command field.  Only valid when the
321     * current command field is an error condition; in that case, the
322     * previous contents of the command field are copied here.  This
323     * field is *not* set on non-error responses.
324     */
325    MemCmd origCmd;
326
327    /**
328     * These values specify the range of bytes found that satisfy a
329     * functional read.
330     */
331    uint16_t bytesValidStart;
332    uint16_t bytesValidEnd;
333
334  public:
335
336    /**
337     * The extra delay from seeing the packet until the first word is
338     * transmitted by the bus that provided it (if any). This delay is
339     * used to communicate the bus waiting time to the neighbouring
340     * object (e.g. a cache) that actually makes the packet wait. As
341     * the delay is relative, a 32-bit unsigned should be sufficient.
342     */
343    uint32_t busFirstWordDelay;
344
345    /**
346     * The extra delay from seeing the packet until the last word is
347     * transmitted by the bus that provided it (if any). Similar to
348     * the first word time, this is used to make up for the fact that
349     * the bus does not make the packet wait. As the delay is relative,
350     * a 32-bit unsigned should be sufficient.
351     */
352    uint32_t busLastWordDelay;
353
354    /**
355     * A virtual base opaque structure used to hold state associated
356     * with the packet (e.g., an MSHR), specific to a MemObject that
357     * sees the packet. A pointer to this state is returned in the
358     * packet's response so that the MemObject in question can quickly
359     * look up the state needed to process it. A specific subclass
360     * would be derived from this to carry state specific to a
361     * particular sending device.
362     *
363     * As multiple MemObjects may add their SenderState throughout the
364     * memory system, the SenderStates create a stack, where a
365     * MemObject can add a new Senderstate, as long as the
366     * predecessing SenderState is restored when the response comes
367     * back. For this reason, the predecessor should always be
368     * populated with the current SenderState of a packet before
369     * modifying the senderState field in the request packet.
370     */
371    struct SenderState
372    {
373        SenderState* predecessor;
374        SenderState() : predecessor(NULL) {}
375        virtual ~SenderState() {}
376    };
377
378    /**
379     * Object used to maintain state of a PrintReq.  The senderState
380     * field of a PrintReq should always be of this type.
381     */
382    class PrintReqState : public SenderState
383    {
384      private:
385        /**
386         * An entry in the label stack.
387         */
388        struct LabelStackEntry
389        {
390            const std::string label;
391            std::string *prefix;
392            bool labelPrinted;
393            LabelStackEntry(const std::string &_label, std::string *_prefix);
394        };
395
396        typedef std::list<LabelStackEntry> LabelStack;
397        LabelStack labelStack;
398
399        std::string *curPrefixPtr;
400
401      public:
402        std::ostream &os;
403        const int verbosity;
404
405        PrintReqState(std::ostream &os, int verbosity = 0);
406        ~PrintReqState();
407
408        /**
409         * Returns the current line prefix.
410         */
411        const std::string &curPrefix() { return *curPrefixPtr; }
412
413        /**
414         * Push a label onto the label stack, and prepend the given
415         * prefix string onto the current prefix.  Labels will only be
416         * printed if an object within the label's scope is printed.
417         */
418        void pushLabel(const std::string &lbl,
419                       const std::string &prefix = "  ");
420
421        /**
422         * Pop a label off the label stack.
423         */
424        void popLabel();
425
426        /**
427         * Print all of the pending unprinted labels on the
428         * stack. Called by printObj(), so normally not called by
429         * users unless bypassing printObj().
430         */
431        void printLabels();
432
433        /**
434         * Print a Printable object to os, because it matched the
435         * address on a PrintReq.
436         */
437        void printObj(Printable *obj);
438    };
439
440    /**
441     * This packet's sender state.  Devices should use dynamic_cast<>
442     * to cast to the state appropriate to the sender.  The intent of
443     * this variable is to allow a device to attach extra information
444     * to a request. A response packet must return the sender state
445     * that was attached to the original request (even if a new packet
446     * is created).
447     */
448    SenderState *senderState;
449
450    /**
451     * Push a new sender state to the packet and make the current
452     * sender state the predecessor of the new one. This should be
453     * prefered over direct manipulation of the senderState member
454     * variable.
455     *
456     * @param sender_state SenderState to push at the top of the stack
457     */
458    void pushSenderState(SenderState *sender_state);
459
460    /**
461     * Pop the top of the state stack and return a pointer to it. This
462     * assumes the current sender state is not NULL. This should be
463     * preferred over direct manipulation of the senderState member
464     * variable.
465     *
466     * @return The current top of the stack
467     */
468    SenderState *popSenderState();
469
470    /**
471     * Go through the sender state stack and return the first instance
472     * that is of type T (as determined by a dynamic_cast). If there
473     * is no sender state of type T, NULL is returned.
474     *
475     * @return The topmost state of type T
476     */
477    template <typename T>
478    T * findNextSenderState() const
479    {
480        T *t = NULL;
481        SenderState* sender_state = senderState;
482        while (t == NULL && sender_state != NULL) {
483            t = dynamic_cast<T*>(sender_state);
484            sender_state = sender_state->predecessor;
485        }
486        return t;
487    }
488
489    /// Return the string name of the cmd field (for debugging and
490    /// tracing).
491    const std::string &cmdString() const { return cmd.toString(); }
492
493    /// Return the index of this command.
494    inline int cmdToIndex() const { return cmd.toInt(); }
495
496    bool isRead() const         { return cmd.isRead(); }
497    bool isWrite() const        { return cmd.isWrite(); }
498    bool isUpgrade()  const     { return cmd.isUpgrade(); }
499    bool isRequest() const      { return cmd.isRequest(); }
500    bool isResponse() const     { return cmd.isResponse(); }
501    bool needsExclusive() const { return cmd.needsExclusive(); }
502    bool needsResponse() const  { return cmd.needsResponse(); }
503    bool isInvalidate() const   { return cmd.isInvalidate(); }
504    bool hasData() const        { return cmd.hasData(); }
505    bool isReadWrite() const    { return cmd.isReadWrite(); }
506    bool isLLSC() const         { return cmd.isLLSC(); }
507    bool isError() const        { return cmd.isError(); }
508    bool isPrint() const        { return cmd.isPrint(); }
509    bool isFlush() const        { return cmd.isFlush(); }
510
511    // Snoop flags
512    void assertMemInhibit()         { flags.set(MEM_INHIBIT); }
513    bool memInhibitAsserted() const { return flags.isSet(MEM_INHIBIT); }
514    void assertShared()             { flags.set(SHARED); }
515    bool sharedAsserted() const     { return flags.isSet(SHARED); }
516
517    // Special control flags
518    void setExpressSnoop()          { flags.set(EXPRESS_SNOOP); }
519    bool isExpressSnoop() const     { return flags.isSet(EXPRESS_SNOOP); }
520    void setSupplyExclusive()       { flags.set(SUPPLY_EXCLUSIVE); }
521    void clearSupplyExclusive()     { flags.clear(SUPPLY_EXCLUSIVE); }
522    bool isSupplyExclusive() const  { return flags.isSet(SUPPLY_EXCLUSIVE); }
523    void setSuppressFuncError()     { flags.set(SUPPRESS_FUNC_ERROR); }
524    bool suppressFuncError() const  { return flags.isSet(SUPPRESS_FUNC_ERROR); }
525
526    // Network error conditions... encapsulate them as methods since
527    // their encoding keeps changing (from result field to command
528    // field, etc.)
529    void
530    setBadAddress()
531    {
532        assert(isResponse());
533        cmd = MemCmd::BadAddressError;
534    }
535
536    bool hadBadAddress() const { return cmd == MemCmd::BadAddressError; }
537    void copyError(Packet *pkt) { assert(pkt->isError()); cmd = pkt->cmd; }
538
539    bool isSrcValid() const { return src != InvalidPortID; }
540    /// Accessor function to get the source index of the packet.
541    PortID getSrc() const { assert(isSrcValid()); return src; }
542    /// Accessor function to set the source index of the packet.
543    void setSrc(PortID _src) { src = _src; }
544    /// Reset source field, e.g. to retransmit packet on different bus.
545    void clearSrc() { src = InvalidPortID; }
546
547    bool isDestValid() const { return dest != InvalidPortID; }
548    /// Accessor function for the destination index of the packet.
549    PortID getDest() const { assert(isDestValid()); return dest; }
550    /// Accessor function to set the destination index of the packet.
551    void setDest(PortID _dest) { dest = _dest; }
552    /// Reset destination field, e.g. to turn a response into a request again.
553    void clearDest() { dest = InvalidPortID; }
554
555    Addr getAddr() const { assert(flags.isSet(VALID_ADDR)); return addr; }
556    /**
557     * Update the address of this packet mid-transaction. This is used
558     * by the address mapper to change an already set address to a new
559     * one based on the system configuration. It is intended to remap
560     * an existing address, so it asserts that the current address is
561     * valid.
562     */
563    void setAddr(Addr _addr) { assert(flags.isSet(VALID_ADDR)); addr = _addr; }
564
565    unsigned getSize() const  { assert(flags.isSet(VALID_SIZE)); return size; }
566    Addr getOffset(int blkSize) const { return getAddr() & (Addr)(blkSize - 1); }
567
568    bool isSecure() const
569    {
570        assert(flags.isSet(VALID_ADDR));
571        return _isSecure;
572    }
573
574    /**
575     * It has been determined that the SC packet should successfully update
576     * memory.  Therefore, convert this SC packet to a normal write.
577     */
578    void
579    convertScToWrite()
580    {
581        assert(isLLSC());
582        assert(isWrite());
583        cmd = MemCmd::WriteReq;
584    }
585
586    /**
587     * When ruby is in use, Ruby will monitor the cache line and thus M5
588     * phys memory should treat LL ops as normal reads.
589     */
590    void
591    convertLlToRead()
592    {
593        assert(isLLSC());
594        assert(isRead());
595        cmd = MemCmd::ReadReq;
596    }
597
598    /**
599     * Constructor.  Note that a Request object must be constructed
600     * first, but the Requests's physical address and size fields need
601     * not be valid. The command must be supplied.
602     */
603    Packet(Request *_req, MemCmd _cmd)
604        :  cmd(_cmd), req(_req), data(NULL),
605           src(InvalidPortID), dest(InvalidPortID),
606           bytesValidStart(0), bytesValidEnd(0),
607           busFirstWordDelay(0), busLastWordDelay(0),
608           senderState(NULL)
609    {
610        if (req->hasPaddr()) {
611            addr = req->getPaddr();
612            flags.set(VALID_ADDR);
613            _isSecure = req->isSecure();
614        }
615        if (req->hasSize()) {
616            size = req->getSize();
617            flags.set(VALID_SIZE);
618        }
619    }
620
621    /**
622     * Alternate constructor if you are trying to create a packet with
623     * a request that is for a whole block, not the address from the
624     * req.  this allows for overriding the size/addr of the req.
625     */
626    Packet(Request *_req, MemCmd _cmd, int _blkSize)
627        :  cmd(_cmd), req(_req), data(NULL),
628           src(InvalidPortID), dest(InvalidPortID),
629           bytesValidStart(0), bytesValidEnd(0),
630           busFirstWordDelay(0), busLastWordDelay(0),
631           senderState(NULL)
632    {
633        if (req->hasPaddr()) {
634            addr = req->getPaddr() & ~(_blkSize - 1);
635            flags.set(VALID_ADDR);
636            _isSecure = req->isSecure();
637        }
638        size = _blkSize;
639        flags.set(VALID_SIZE);
640    }
641
642    /**
643     * Alternate constructor for copying a packet.  Copy all fields
644     * *except* if the original packet's data was dynamic, don't copy
645     * that, as we can't guarantee that the new packet's lifetime is
646     * less than that of the original packet.  In this case the new
647     * packet should allocate its own data.
648     */
649    Packet(Packet *pkt, bool clearFlags = false)
650        :  cmd(pkt->cmd), req(pkt->req),
651           data(pkt->flags.isSet(STATIC_DATA) ? pkt->data : NULL),
652           addr(pkt->addr), _isSecure(pkt->_isSecure), size(pkt->size),
653           src(pkt->src), dest(pkt->dest),
654           bytesValidStart(pkt->bytesValidStart),
655           bytesValidEnd(pkt->bytesValidEnd),
656           busFirstWordDelay(pkt->busFirstWordDelay),
657           busLastWordDelay(pkt->busLastWordDelay),
658           senderState(pkt->senderState)
659    {
660        if (!clearFlags)
661            flags.set(pkt->flags & COPY_FLAGS);
662
663        flags.set(pkt->flags & (VALID_ADDR|VALID_SIZE));
664        flags.set(pkt->flags & STATIC_DATA);
665
666    }
667
668    /**
669     * clean up packet variables
670     */
671    ~Packet()
672    {
673        // If this is a request packet for which there's no response,
674        // delete the request object here, since the requester will
675        // never get the chance.
676        if (req && isRequest() && !needsResponse())
677            delete req;
678        deleteData();
679    }
680
681    /**
682     * Reinitialize packet address and size from the associated
683     * Request object, and reset other fields that may have been
684     * modified by a previous transaction.  Typically called when a
685     * statically allocated Request/Packet pair is reused for multiple
686     * transactions.
687     */
688    void
689    reinitFromRequest()
690    {
691        assert(req->hasPaddr());
692        flags = 0;
693        addr = req->getPaddr();
694        _isSecure = req->isSecure();
695        size = req->getSize();
696
697        src = InvalidPortID;
698        dest = InvalidPortID;
699        bytesValidStart = 0;
700        bytesValidEnd = 0;
701        busFirstWordDelay = 0;
702        busLastWordDelay = 0;
703
704        flags.set(VALID_ADDR|VALID_SIZE);
705        deleteData();
706    }
707
708    /**
709     * Take a request packet and modify it in place to be suitable for
710     * returning as a response to that request. The source field is
711     * turned into the destination, and subsequently cleared. Note
712     * that the latter is not necessary for atomic requests, but
713     * causes no harm as neither field is valid.
714     */
715    void
716    makeResponse()
717    {
718        assert(needsResponse());
719        assert(isRequest());
720        origCmd = cmd;
721        cmd = cmd.responseCommand();
722
723        // responses are never express, even if the snoop that
724        // triggered them was
725        flags.clear(EXPRESS_SNOOP);
726
727        dest = src;
728        clearSrc();
729    }
730
731    void
732    makeAtomicResponse()
733    {
734        makeResponse();
735    }
736
737    void
738    makeTimingResponse()
739    {
740        makeResponse();
741    }
742
743    void
744    setFunctionalResponseStatus(bool success)
745    {
746        if (!success) {
747            if (isWrite()) {
748                cmd = MemCmd::FunctionalWriteError;
749            } else {
750                cmd = MemCmd::FunctionalReadError;
751            }
752        }
753    }
754
755    void
756    setSize(unsigned size)
757    {
758        assert(!flags.isSet(VALID_SIZE));
759
760        this->size = size;
761        flags.set(VALID_SIZE);
762    }
763
764
765    /**
766     * Set the data pointer to the following value that should not be
767     * freed.
768     */
769    template <typename T>
770    void
771    dataStatic(T *p)
772    {
773        assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA|ARRAY_DATA));
774        data = (PacketDataPtr)p;
775        flags.set(STATIC_DATA);
776    }
777
778    /**
779     * Set the data pointer to a value that should have delete []
780     * called on it.
781     */
782    template <typename T>
783    void
784    dataDynamicArray(T *p)
785    {
786        assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA|ARRAY_DATA));
787        data = (PacketDataPtr)p;
788        flags.set(DYNAMIC_DATA|ARRAY_DATA);
789    }
790
791    /**
792     * set the data pointer to a value that should have delete called
793     * on it.
794     */
795    template <typename T>
796    void
797    dataDynamic(T *p)
798    {
799        assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA|ARRAY_DATA));
800        data = (PacketDataPtr)p;
801        flags.set(DYNAMIC_DATA);
802    }
803
804    /**
805     * get a pointer to the data ptr.
806     */
807    template <typename T>
808    T*
809    getPtr(bool null_ok = false)
810    {
811        assert(null_ok || flags.isSet(STATIC_DATA|DYNAMIC_DATA));
812        return (T*)data;
813    }
814
815    /**
816     * return the value of what is pointed to in the packet.
817     */
818    template <typename T>
819    T get();
820
821    /**
822     * set the value in the data pointer to v.
823     */
824    template <typename T>
825    void set(T v);
826
827    /**
828     * Copy data into the packet from the provided pointer.
829     */
830    void
831    setData(uint8_t *p)
832    {
833        if (p != getPtr<uint8_t>())
834            std::memcpy(getPtr<uint8_t>(), p, getSize());
835    }
836
837    /**
838     * Copy data into the packet from the provided block pointer,
839     * which is aligned to the given block size.
840     */
841    void
842    setDataFromBlock(uint8_t *blk_data, int blkSize)
843    {
844        setData(blk_data + getOffset(blkSize));
845    }
846
847    /**
848     * Copy data from the packet to the provided block pointer, which
849     * is aligned to the given block size.
850     */
851    void
852    writeData(uint8_t *p)
853    {
854        std::memcpy(p, getPtr<uint8_t>(), getSize());
855    }
856
857    /**
858     * Copy data from the packet to the memory at the provided pointer.
859     */
860    void
861    writeDataToBlock(uint8_t *blk_data, int blkSize)
862    {
863        writeData(blk_data + getOffset(blkSize));
864    }
865
866    /**
867     * delete the data pointed to in the data pointer. Ok to call to
868     * matter how data was allocted.
869     */
870    void
871    deleteData()
872    {
873        if (flags.isSet(ARRAY_DATA))
874            delete [] data;
875        else if (flags.isSet(DYNAMIC_DATA))
876            delete data;
877
878        flags.clear(STATIC_DATA|DYNAMIC_DATA|ARRAY_DATA);
879        data = NULL;
880    }
881
882    /** If there isn't data in the packet, allocate some. */
883    void
884    allocate()
885    {
886        if (data) {
887            assert(flags.isSet(STATIC_DATA|DYNAMIC_DATA));
888            return;
889        }
890
891        assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA));
892        flags.set(DYNAMIC_DATA|ARRAY_DATA);
893        data = new uint8_t[getSize()];
894    }
895
896    /**
897     * Check a functional request against a memory value represented
898     * by a base/size pair and an associated data array.  If the
899     * functional request is a read, it may be satisfied by the memory
900     * value.  If the functional request is a write, it may update the
901     * memory value.
902     */
903    bool checkFunctional(Printable *obj, Addr base, bool is_secure, int size,
904                         uint8_t *data);
905
906    /**
907     * Check a functional request against a memory value stored in
908     * another packet (i.e. an in-transit request or response).
909     */
910    bool
911    checkFunctional(PacketPtr other)
912    {
913        uint8_t *data = other->hasData() ? other->getPtr<uint8_t>() : NULL;
914        return checkFunctional(other, other->getAddr(), other->isSecure(),
915                               other->getSize(), data);
916    }
917
918    /**
919     * Push label for PrintReq (safe to call unconditionally).
920     */
921    void
922    pushLabel(const std::string &lbl)
923    {
924        if (isPrint())
925            safe_cast<PrintReqState*>(senderState)->pushLabel(lbl);
926    }
927
928    /**
929     * Pop label for PrintReq (safe to call unconditionally).
930     */
931    void
932    popLabel()
933    {
934        if (isPrint())
935            safe_cast<PrintReqState*>(senderState)->popLabel();
936    }
937
938    void print(std::ostream &o, int verbosity = 0,
939               const std::string &prefix = "") const;
940
941    /**
942     * A no-args wrapper of print(std::ostream...)
943     * meant to be invoked from DPRINTFs
944     * avoiding string overheads in fast mode
945     * @return string with the request's type and start<->end addresses
946     */
947    std::string print() const;
948};
949
950#endif //__MEM_PACKET_HH
951