packet.cc revision 12346
12568SN/A/*
212344Snikos.nikoleris@arm.com * Copyright (c) 2011-2017 ARM Limited
38668Sgeoffrey.blake@arm.com * All rights reserved
48668Sgeoffrey.blake@arm.com *
58668Sgeoffrey.blake@arm.com * The license below extends only to copyright in the software and shall
68668Sgeoffrey.blake@arm.com * not be construed as granting a license to any other intellectual
78668Sgeoffrey.blake@arm.com * property including but not limited to intellectual property relating
88668Sgeoffrey.blake@arm.com * to a hardware implementation of the functionality of the software
98668Sgeoffrey.blake@arm.com * licensed hereunder.  You may use the software subject to the license
108668Sgeoffrey.blake@arm.com * terms below provided that you ensure that this notice is replicated
118668Sgeoffrey.blake@arm.com * unmodified and in its entirety in all distributions of the software,
128668Sgeoffrey.blake@arm.com * modified or unmodified, in source code or in binary form.
138668Sgeoffrey.blake@arm.com *
142568SN/A * Copyright (c) 2006 The Regents of The University of Michigan
1510975Sdavid.hashe@amd.com * Copyright (c) 2010,2015 Advanced Micro Devices, Inc.
162568SN/A * All rights reserved.
172568SN/A *
182568SN/A * Redistribution and use in source and binary forms, with or without
192568SN/A * modification, are permitted provided that the following conditions are
202568SN/A * met: redistributions of source code must retain the above copyright
212568SN/A * notice, this list of conditions and the following disclaimer;
222568SN/A * redistributions in binary form must reproduce the above copyright
232568SN/A * notice, this list of conditions and the following disclaimer in the
242568SN/A * documentation and/or other materials provided with the distribution;
252568SN/A * neither the name of the copyright holders nor the names of its
262568SN/A * contributors may be used to endorse or promote products derived from
272568SN/A * this software without specific prior written permission.
282568SN/A *
292568SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
302568SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
312568SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
322568SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
332568SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
342568SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
352568SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
362568SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
372568SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
382568SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
392568SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
402665Ssaidi@eecs.umich.edu *
412665Ssaidi@eecs.umich.edu * Authors: Ali Saidi
422665Ssaidi@eecs.umich.edu *          Steve Reinhardt
432568SN/A */
442568SN/A
452568SN/A/**
462568SN/A * @file
472568SN/A * Definition of the Packet Class, a packet is a transaction occuring
482568SN/A * between a single level of the memory heirarchy (ie L1->L2).
492568SN/A */
503260Ssaidi@eecs.umich.edu
5111793Sbrandon.potter@amd.com#include "mem/packet.hh"
5211793Sbrandon.potter@amd.com
538229Snate@binkert.org#include <cstring>
543260Ssaidi@eecs.umich.edu#include <iostream>
558229Snate@binkert.org
565314Sstever@gmail.com#include "base/cprintf.hh"
5712334Sgabeblack@google.com#include "base/logging.hh"
583348Sbinkertn@umich.edu#include "base/trace.hh"
592568SN/A
605735Snate@binkert.orgusing namespace std;
615735Snate@binkert.org
624022Sstever@eecs.umich.edu// The one downside to bitsets is that static initializers can get ugly.
634022Sstever@eecs.umich.edu#define SET1(a1)                     (1 << (a1))
644022Sstever@eecs.umich.edu#define SET2(a1, a2)                 (SET1(a1) | SET1(a2))
654022Sstever@eecs.umich.edu#define SET3(a1, a2, a3)             (SET2(a1, a2) | SET1(a3))
664022Sstever@eecs.umich.edu#define SET4(a1, a2, a3, a4)         (SET3(a1, a2, a3) | SET1(a4))
674022Sstever@eecs.umich.edu#define SET5(a1, a2, a3, a4, a5)     (SET4(a1, a2, a3, a4) | SET1(a5))
684022Sstever@eecs.umich.edu#define SET6(a1, a2, a3, a4, a5, a6) (SET5(a1, a2, a3, a4, a5) | SET1(a6))
6911600Sandreas.hansson@arm.com#define SET7(a1, a2, a3, a4, a5, a6, a7) (SET6(a1, a2, a3, a4, a5, a6) | \
7011600Sandreas.hansson@arm.com                                          SET1(a7))
712641Sstever@eecs.umich.edu
724022Sstever@eecs.umich.educonst MemCmd::CommandInfo
734022Sstever@eecs.umich.eduMemCmd::commandInfo[] =
742641Sstever@eecs.umich.edu{
754022Sstever@eecs.umich.edu    /* InvalidCmd */
764022Sstever@eecs.umich.edu    { 0, InvalidCmd, "InvalidCmd" },
7710885Sandreas.hansson@arm.com    /* ReadReq - Read issued by a non-caching agent such as a CPU or
7810885Sandreas.hansson@arm.com     * device, with no restrictions on alignment. */
794022Sstever@eecs.umich.edu    { SET3(IsRead, IsRequest, NeedsResponse), ReadResp, "ReadReq" },
804473Sstever@eecs.umich.edu    /* ReadResp */
814473Sstever@eecs.umich.edu    { SET3(IsRead, IsResponse, HasData), InvalidCmd, "ReadResp" },
825319Sstever@gmail.com    /* ReadRespWithInvalidate */
835319Sstever@gmail.com    { SET4(IsRead, IsResponse, HasData, IsInvalidate),
845319Sstever@gmail.com            InvalidCmd, "ReadRespWithInvalidate" },
854022Sstever@eecs.umich.edu    /* WriteReq */
8611284Sandreas.hansson@arm.com    { SET5(IsWrite, NeedsWritable, IsRequest, NeedsResponse, HasData),
874022Sstever@eecs.umich.edu            WriteResp, "WriteReq" },
884022Sstever@eecs.umich.edu    /* WriteResp */
8911287Sandreas.hansson@arm.com    { SET2(IsWrite, IsResponse), InvalidCmd, "WriteResp" },
9011199Sandreas.hansson@arm.com    /* WritebackDirty */
9111600Sandreas.hansson@arm.com    { SET5(IsWrite, IsRequest, IsEviction, HasData, FromCache),
9211199Sandreas.hansson@arm.com            InvalidCmd, "WritebackDirty" },
9311199Sandreas.hansson@arm.com    /* WritebackClean - This allows the upstream cache to writeback a
9411199Sandreas.hansson@arm.com     * line to the downstream cache without it being considered
9511199Sandreas.hansson@arm.com     * dirty. */
9611600Sandreas.hansson@arm.com    { SET5(IsWrite, IsRequest, IsEviction, HasData, FromCache),
9711199Sandreas.hansson@arm.com            InvalidCmd, "WritebackClean" },
9812344Snikos.nikoleris@arm.com    /* WriteClean - This allows a cache to write a dirty block to a memory
9912344Snikos.nikoleris@arm.com       below without evicting its copy. */
10012344Snikos.nikoleris@arm.com    { SET4(IsWrite, IsRequest, HasData, FromCache), InvalidCmd, "WriteClean" },
10110883Sali.jafri@arm.com    /* CleanEvict */
10211600Sandreas.hansson@arm.com    { SET3(IsRequest, IsEviction, FromCache), InvalidCmd, "CleanEvict" },
1034022Sstever@eecs.umich.edu    /* SoftPFReq */
1044022Sstever@eecs.umich.edu    { SET4(IsRead, IsRequest, IsSWPrefetch, NeedsResponse),
1054022Sstever@eecs.umich.edu            SoftPFResp, "SoftPFReq" },
1064022Sstever@eecs.umich.edu    /* HardPFReq */
10711600Sandreas.hansson@arm.com    { SET5(IsRead, IsRequest, IsHWPrefetch, NeedsResponse, FromCache),
1084022Sstever@eecs.umich.edu            HardPFResp, "HardPFReq" },
1094022Sstever@eecs.umich.edu    /* SoftPFResp */
1104022Sstever@eecs.umich.edu    { SET4(IsRead, IsResponse, IsSWPrefetch, HasData),
1114022Sstever@eecs.umich.edu            InvalidCmd, "SoftPFResp" },
1124022Sstever@eecs.umich.edu    /* HardPFResp */
1134022Sstever@eecs.umich.edu    { SET4(IsRead, IsResponse, IsHWPrefetch, HasData),
1144022Sstever@eecs.umich.edu            InvalidCmd, "HardPFResp" },
11510886Sandreas.hansson@arm.com    /* WriteLineReq */
11611284Sandreas.hansson@arm.com    { SET5(IsWrite, NeedsWritable, IsRequest, NeedsResponse, HasData),
11710886Sandreas.hansson@arm.com            WriteResp, "WriteLineReq" },
1184022Sstever@eecs.umich.edu    /* UpgradeReq */
11911600Sandreas.hansson@arm.com    { SET6(IsInvalidate, NeedsWritable, IsUpgrade, IsRequest, NeedsResponse,
12011600Sandreas.hansson@arm.com            FromCache),
1214628Sstever@eecs.umich.edu            UpgradeResp, "UpgradeReq" },
1227465Ssteve.reinhardt@amd.com    /* SCUpgradeReq: response could be UpgradeResp or UpgradeFailResp */
12311600Sandreas.hansson@arm.com    { SET7(IsInvalidate, NeedsWritable, IsUpgrade, IsLlsc,
12411600Sandreas.hansson@arm.com           IsRequest, NeedsResponse, FromCache),
1257465Ssteve.reinhardt@amd.com            UpgradeResp, "SCUpgradeReq" },
1264628Sstever@eecs.umich.edu    /* UpgradeResp */
12711287Sandreas.hansson@arm.com    { SET2(IsUpgrade, IsResponse),
1287465Ssteve.reinhardt@amd.com            InvalidCmd, "UpgradeResp" },
12910325Sgeoffrey.blake@arm.com    /* SCUpgradeFailReq: generates UpgradeFailResp but still gets the data */
13011600Sandreas.hansson@arm.com    { SET7(IsRead, NeedsWritable, IsInvalidate,
13111600Sandreas.hansson@arm.com           IsLlsc, IsRequest, NeedsResponse, FromCache),
1327465Ssteve.reinhardt@amd.com            UpgradeFailResp, "SCUpgradeFailReq" },
13310325Sgeoffrey.blake@arm.com    /* UpgradeFailResp - Behaves like a ReadExReq, but notifies an SC
13410325Sgeoffrey.blake@arm.com     * that it has failed, acquires line as Dirty*/
13511287Sandreas.hansson@arm.com    { SET3(IsRead, IsResponse, HasData),
1367465Ssteve.reinhardt@amd.com            InvalidCmd, "UpgradeFailResp" },
13710885Sandreas.hansson@arm.com    /* ReadExReq - Read issues by a cache, always cache-line aligned,
13810885Sandreas.hansson@arm.com     * and the response is guaranteed to be writeable (exclusive or
13910885Sandreas.hansson@arm.com     * even modified) */
14011600Sandreas.hansson@arm.com    { SET6(IsRead, NeedsWritable, IsInvalidate, IsRequest, NeedsResponse,
14111600Sandreas.hansson@arm.com            FromCache),
1424022Sstever@eecs.umich.edu            ReadExResp, "ReadExReq" },
14310885Sandreas.hansson@arm.com    /* ReadExResp - Response matching a read exclusive, as we check
14410885Sandreas.hansson@arm.com     * the need for exclusive also on responses */
14511287Sandreas.hansson@arm.com    { SET3(IsRead, IsResponse, HasData),
1464040Ssaidi@eecs.umich.edu            InvalidCmd, "ReadExResp" },
14710885Sandreas.hansson@arm.com    /* ReadCleanReq - Read issued by a cache, always cache-line
14810885Sandreas.hansson@arm.com     * aligned, and the response is guaranteed to not contain dirty data
14910885Sandreas.hansson@arm.com     * (exclusive or shared).*/
15011600Sandreas.hansson@arm.com    { SET4(IsRead, IsRequest, NeedsResponse, FromCache),
15111600Sandreas.hansson@arm.com            ReadResp, "ReadCleanReq" },
15210885Sandreas.hansson@arm.com    /* ReadSharedReq - Read issued by a cache, always cache-line
15310885Sandreas.hansson@arm.com     * aligned, response is shared, possibly exclusive, owned or even
15410885Sandreas.hansson@arm.com     * modified. */
15511600Sandreas.hansson@arm.com    { SET4(IsRead, IsRequest, NeedsResponse, FromCache),
15611600Sandreas.hansson@arm.com            ReadResp, "ReadSharedReq" },
1575507Sstever@gmail.com    /* LoadLockedReq: note that we use plain ReadResp as response, so that
1585507Sstever@gmail.com     *                we can also use ReadRespWithInvalidate when needed */
1596076Sgblack@eecs.umich.edu    { SET4(IsRead, IsLlsc, IsRequest, NeedsResponse),
1605507Sstever@gmail.com            ReadResp, "LoadLockedReq" },
1614626Sstever@eecs.umich.edu    /* StoreCondReq */
16211284Sandreas.hansson@arm.com    { SET6(IsWrite, NeedsWritable, IsLlsc,
1634626Sstever@eecs.umich.edu           IsRequest, NeedsResponse, HasData),
1644626Sstever@eecs.umich.edu            StoreCondResp, "StoreCondReq" },
16510325Sgeoffrey.blake@arm.com    /* StoreCondFailReq: generates failing StoreCondResp */
16611284Sandreas.hansson@arm.com    { SET6(IsWrite, NeedsWritable, IsLlsc,
1677669Ssteve.reinhardt@amd.com           IsRequest, NeedsResponse, HasData),
1687669Ssteve.reinhardt@amd.com            StoreCondResp, "StoreCondFailReq" },
1694626Sstever@eecs.umich.edu    /* StoreCondResp */
17011287Sandreas.hansson@arm.com    { SET3(IsWrite, IsLlsc, IsResponse),
1714626Sstever@eecs.umich.edu            InvalidCmd, "StoreCondResp" },
1724040Ssaidi@eecs.umich.edu    /* SwapReq -- for Swap ldstub type operations */
17311284Sandreas.hansson@arm.com    { SET6(IsRead, IsWrite, NeedsWritable, IsRequest, HasData, NeedsResponse),
1744040Ssaidi@eecs.umich.edu        SwapResp, "SwapReq" },
1754040Ssaidi@eecs.umich.edu    /* SwapResp -- for Swap ldstub type operations */
17611287Sandreas.hansson@arm.com    { SET4(IsRead, IsWrite, IsResponse, HasData),
1774870Sstever@eecs.umich.edu            InvalidCmd, "SwapResp" },
1785650Sgblack@eecs.umich.edu    /* IntReq -- for interrupts */
1795650Sgblack@eecs.umich.edu    { SET4(IsWrite, IsRequest, NeedsResponse, HasData),
1806063Sgblack@eecs.umich.edu        MessageResp, "MessageReq" },
1815650Sgblack@eecs.umich.edu    /* IntResp -- for interrupts */
1826063Sgblack@eecs.umich.edu    { SET2(IsWrite, IsResponse), InvalidCmd, "MessageResp" },
18311256Santhony.gutierrez@amd.com    /* MemFenceReq -- for synchronization requests */
18411256Santhony.gutierrez@amd.com    {SET2(IsRequest, NeedsResponse), MemFenceResp, "MemFenceReq"},
18511256Santhony.gutierrez@amd.com    /* MemFenceResp -- for synchronization responses */
18611256Santhony.gutierrez@amd.com    {SET1(IsResponse), InvalidCmd, "MemFenceResp"},
1874870Sstever@eecs.umich.edu    /* InvalidDestError  -- packet dest field invalid */
1884986Ssaidi@eecs.umich.edu    { SET2(IsResponse, IsError), InvalidCmd, "InvalidDestError" },
1894870Sstever@eecs.umich.edu    /* BadAddressError   -- memory address invalid */
1905314Sstever@gmail.com    { SET2(IsResponse, IsError), InvalidCmd, "BadAddressError" },
1918436SBrad.Beckmann@amd.com    /* FunctionalReadError */
1928436SBrad.Beckmann@amd.com    { SET3(IsRead, IsResponse, IsError), InvalidCmd, "FunctionalReadError" },
1938436SBrad.Beckmann@amd.com    /* FunctionalWriteError */
1948436SBrad.Beckmann@amd.com    { SET3(IsWrite, IsResponse, IsError), InvalidCmd, "FunctionalWriteError" },
1955314Sstever@gmail.com    /* PrintReq */
1968184Ssomayeh@cs.wisc.edu    { SET2(IsRequest, IsPrint), InvalidCmd, "PrintReq" },
1978184Ssomayeh@cs.wisc.edu    /* Flush Request */
19811284Sandreas.hansson@arm.com    { SET3(IsRequest, IsFlush, NeedsWritable), InvalidCmd, "FlushReq" },
1998716Snilay@cs.wisc.edu    /* Invalidation Request */
20011600Sandreas.hansson@arm.com    { SET5(IsInvalidate, IsRequest, NeedsWritable, NeedsResponse, FromCache),
20110886Sandreas.hansson@arm.com      InvalidateResp, "InvalidateReq" },
20210886Sandreas.hansson@arm.com    /* Invalidation Response */
20311287Sandreas.hansson@arm.com    { SET2(IsInvalidate, IsResponse),
20410886Sandreas.hansson@arm.com      InvalidCmd, "InvalidateResp" }
2054022Sstever@eecs.umich.edu};
2062592SN/A
2073607Srdreslin@umich.edubool
20810028SGiacomo.Gabrielli@arm.comPacket::checkFunctional(Printable *obj, Addr addr, bool is_secure, int size,
20910570Sandreas.hansson@arm.com                        uint8_t *_data)
2102641Sstever@eecs.umich.edu{
2114626Sstever@eecs.umich.edu    Addr func_start = getAddr();
2124626Sstever@eecs.umich.edu    Addr func_end   = getAddr() + getSize() - 1;
2134626Sstever@eecs.umich.edu    Addr val_start  = addr;
2144626Sstever@eecs.umich.edu    Addr val_end    = val_start + size - 1;
2153260Ssaidi@eecs.umich.edu
21610028SGiacomo.Gabrielli@arm.com    if (is_secure != _isSecure || func_start > val_end ||
21710028SGiacomo.Gabrielli@arm.com        val_start > func_end) {
2184626Sstever@eecs.umich.edu        // no intersection
2194626Sstever@eecs.umich.edu        return false;
2204626Sstever@eecs.umich.edu    }
2213260Ssaidi@eecs.umich.edu
2225314Sstever@gmail.com    // check print first since it doesn't require data
2235314Sstever@gmail.com    if (isPrint()) {
22410570Sandreas.hansson@arm.com        assert(!_data);
22510376Sandreas.hansson@arm.com        safe_cast<PrintReqState*>(senderState)->printObj(obj);
2265314Sstever@gmail.com        return false;
2275314Sstever@gmail.com    }
2285314Sstever@gmail.com
22910570Sandreas.hansson@arm.com    // we allow the caller to pass NULL to signify the other packet
23010570Sandreas.hansson@arm.com    // has no data
23110570Sandreas.hansson@arm.com    if (!_data) {
2325314Sstever@gmail.com        return false;
2335314Sstever@gmail.com    }
2345314Sstever@gmail.com
2354626Sstever@eecs.umich.edu    // offset of functional request into supplied value (could be
2364626Sstever@eecs.umich.edu    // negative if partial overlap)
2374626Sstever@eecs.umich.edu    int offset = func_start - val_start;
2383260Ssaidi@eecs.umich.edu
2394626Sstever@eecs.umich.edu    if (isRead()) {
2404626Sstever@eecs.umich.edu        if (func_start >= val_start && func_end <= val_end) {
24110570Sandreas.hansson@arm.com            memcpy(getPtr<uint8_t>(), _data + offset, getSize());
24210723Sandreas.hansson@arm.com            if (bytesValid.empty())
24310723Sandreas.hansson@arm.com                bytesValid.resize(getSize(), true);
24410570Sandreas.hansson@arm.com            // complete overlap, and as the current packet is a read
24510570Sandreas.hansson@arm.com            // we are done
2464626Sstever@eecs.umich.edu            return true;
2473260Ssaidi@eecs.umich.edu        } else {
2488668Sgeoffrey.blake@arm.com            // Offsets and sizes to copy in case of partial overlap
2498668Sgeoffrey.blake@arm.com            int func_offset;
2508668Sgeoffrey.blake@arm.com            int val_offset;
2518668Sgeoffrey.blake@arm.com            int overlap_size;
2528668Sgeoffrey.blake@arm.com
2538668Sgeoffrey.blake@arm.com            // calculate offsets and copy sizes for the two byte arrays
2548668Sgeoffrey.blake@arm.com            if (val_start < func_start && val_end <= func_end) {
25510723Sandreas.hansson@arm.com                // the one we are checking against starts before and
25610723Sandreas.hansson@arm.com                // ends before or the same
2578668Sgeoffrey.blake@arm.com                val_offset = func_start - val_start;
2588668Sgeoffrey.blake@arm.com                func_offset = 0;
2598668Sgeoffrey.blake@arm.com                overlap_size = val_end - func_start;
2608668Sgeoffrey.blake@arm.com            } else if (val_start >= func_start && val_end > func_end) {
26110723Sandreas.hansson@arm.com                // the one we are checking against starts after or the
26210723Sandreas.hansson@arm.com                // same, and ends after
2638668Sgeoffrey.blake@arm.com                val_offset = 0;
2648668Sgeoffrey.blake@arm.com                func_offset = val_start - func_start;
2658668Sgeoffrey.blake@arm.com                overlap_size = func_end - val_start;
2668668Sgeoffrey.blake@arm.com            } else if (val_start >= func_start && val_end <= func_end) {
26710723Sandreas.hansson@arm.com                // the one we are checking against is completely
26810723Sandreas.hansson@arm.com                // subsumed in the current packet, possibly starting
26910723Sandreas.hansson@arm.com                // and ending at the same address
2708668Sgeoffrey.blake@arm.com                val_offset = 0;
2718668Sgeoffrey.blake@arm.com                func_offset = val_start - func_start;
2728668Sgeoffrey.blake@arm.com                overlap_size = size;
27310723Sandreas.hansson@arm.com            } else if (val_start < func_start && val_end > func_end) {
27410723Sandreas.hansson@arm.com                // the current packet is completely subsumed in the
27510723Sandreas.hansson@arm.com                // one we are checking against
27610723Sandreas.hansson@arm.com                val_offset = func_start - val_start;
27710723Sandreas.hansson@arm.com                func_offset = 0;
27810723Sandreas.hansson@arm.com                overlap_size = func_end - func_start;
2798668Sgeoffrey.blake@arm.com            } else {
28010723Sandreas.hansson@arm.com                panic("Missed a case for checkFunctional with "
28110723Sandreas.hansson@arm.com                      " %s 0x%x size %d, against 0x%x size %d\n",
28210723Sandreas.hansson@arm.com                      cmdString(), getAddr(), getSize(), addr, size);
2838668Sgeoffrey.blake@arm.com            }
2848668Sgeoffrey.blake@arm.com
2858668Sgeoffrey.blake@arm.com            // copy partial data into the packet's data array
2868668Sgeoffrey.blake@arm.com            uint8_t *dest = getPtr<uint8_t>() + func_offset;
28710570Sandreas.hansson@arm.com            uint8_t *src = _data + val_offset;
2888668Sgeoffrey.blake@arm.com            memcpy(dest, src, overlap_size);
2898668Sgeoffrey.blake@arm.com
29010723Sandreas.hansson@arm.com            // initialise the tracking of valid bytes if we have not
29110723Sandreas.hansson@arm.com            // used it already
29210723Sandreas.hansson@arm.com            if (bytesValid.empty())
29310723Sandreas.hansson@arm.com                bytesValid.resize(getSize(), false);
29410723Sandreas.hansson@arm.com
29510723Sandreas.hansson@arm.com            // track if we are done filling the functional access
29610723Sandreas.hansson@arm.com            bool all_bytes_valid = true;
29710723Sandreas.hansson@arm.com
29810723Sandreas.hansson@arm.com            int i = 0;
29910723Sandreas.hansson@arm.com
30010723Sandreas.hansson@arm.com            // check up to func_offset
30110723Sandreas.hansson@arm.com            for (; all_bytes_valid && i < func_offset; ++i)
30210723Sandreas.hansson@arm.com                all_bytes_valid &= bytesValid[i];
30310723Sandreas.hansson@arm.com
30410723Sandreas.hansson@arm.com            // update the valid bytes
30510723Sandreas.hansson@arm.com            for (i = func_offset; i < func_offset + overlap_size; ++i)
30610723Sandreas.hansson@arm.com                bytesValid[i] = true;
30710723Sandreas.hansson@arm.com
30810723Sandreas.hansson@arm.com            // check the bit after the update we just made
30910723Sandreas.hansson@arm.com            for (; all_bytes_valid && i < getSize(); ++i)
31010723Sandreas.hansson@arm.com                all_bytes_valid &= bytesValid[i];
31110723Sandreas.hansson@arm.com
31210723Sandreas.hansson@arm.com            return all_bytes_valid;
3133260Ssaidi@eecs.umich.edu        }
3144626Sstever@eecs.umich.edu    } else if (isWrite()) {
3154626Sstever@eecs.umich.edu        if (offset >= 0) {
31610570Sandreas.hansson@arm.com            memcpy(_data + offset, getConstPtr<uint8_t>(),
3175735Snate@binkert.org                   (min(func_end, val_end) - func_start) + 1);
3185735Snate@binkert.org        } else {
3195735Snate@binkert.org            // val_start > func_start
32010570Sandreas.hansson@arm.com            memcpy(_data, getConstPtr<uint8_t>() - offset,
3215735Snate@binkert.org                   (min(func_end, val_end) - val_start) + 1);
3223260Ssaidi@eecs.umich.edu        }
3235314Sstever@gmail.com    } else {
3244626Sstever@eecs.umich.edu        panic("Don't know how to handle command %s\n", cmdString());
3255314Sstever@gmail.com    }
3265314Sstever@gmail.com
3275314Sstever@gmail.com    // keep going with request by default
3285314Sstever@gmail.com    return false;
3292641Sstever@eecs.umich.edu}
3303260Ssaidi@eecs.umich.edu
3315314Sstever@gmail.comvoid
3329542Sandreas.hansson@arm.comPacket::pushSenderState(Packet::SenderState *sender_state)
3339542Sandreas.hansson@arm.com{
3349542Sandreas.hansson@arm.com    assert(sender_state != NULL);
3359542Sandreas.hansson@arm.com    sender_state->predecessor = senderState;
3369542Sandreas.hansson@arm.com    senderState = sender_state;
3379542Sandreas.hansson@arm.com}
3389542Sandreas.hansson@arm.com
3399542Sandreas.hansson@arm.comPacket::SenderState *
3409542Sandreas.hansson@arm.comPacket::popSenderState()
3419542Sandreas.hansson@arm.com{
3429542Sandreas.hansson@arm.com    assert(senderState != NULL);
3439542Sandreas.hansson@arm.com    SenderState *sender_state = senderState;
3449542Sandreas.hansson@arm.com    senderState = sender_state->predecessor;
3459542Sandreas.hansson@arm.com    sender_state->predecessor = NULL;
3469542Sandreas.hansson@arm.com    return sender_state;
3479542Sandreas.hansson@arm.com}
3489542Sandreas.hansson@arm.com
3499542Sandreas.hansson@arm.comvoid
3505735Snate@binkert.orgPacket::print(ostream &o, const int verbosity, const string &prefix) const
3513260Ssaidi@eecs.umich.edu{
35212346Snikos.nikoleris@arm.com    ccprintf(o, "%s%s [%x:%x]%s%s%s%s%s%s", prefix, cmdString(),
35311744Snikos.nikoleris@arm.com             getAddr(), getAddr() + getSize() - 1,
35411744Snikos.nikoleris@arm.com             req->isSecure() ? " (s)" : "",
35511744Snikos.nikoleris@arm.com             req->isInstFetch() ? " IF" : "",
35611744Snikos.nikoleris@arm.com             req->isUncacheable() ? " UC" : "",
35712346Snikos.nikoleris@arm.com             isExpressSnoop() ? " ES" : "",
35812346Snikos.nikoleris@arm.com             req->isToPOC() ? " PoC" : "",
35912346Snikos.nikoleris@arm.com             req->isToPOU() ? " PoU" : "");
3603260Ssaidi@eecs.umich.edu}
3613260Ssaidi@eecs.umich.edu
3629663Suri.wiener@arm.comstd::string
3639663Suri.wiener@arm.comPacket::print() const {
3649663Suri.wiener@arm.com    ostringstream str;
3659663Suri.wiener@arm.com    print(str);
3669663Suri.wiener@arm.com    return str.str();
3679663Suri.wiener@arm.com}
3689663Suri.wiener@arm.com
3695735Snate@binkert.orgPacket::PrintReqState::PrintReqState(ostream &_os, int _verbosity)
3705735Snate@binkert.org    : curPrefixPtr(new string("")), os(_os), verbosity(_verbosity)
3715314Sstever@gmail.com{
3725314Sstever@gmail.com    labelStack.push_back(LabelStackEntry("", curPrefixPtr));
3735314Sstever@gmail.com}
3745314Sstever@gmail.com
3755314Sstever@gmail.comPacket::PrintReqState::~PrintReqState()
3765314Sstever@gmail.com{
3775314Sstever@gmail.com    labelStack.pop_back();
3785314Sstever@gmail.com    assert(labelStack.empty());
3795314Sstever@gmail.com    delete curPrefixPtr;
3805314Sstever@gmail.com}
3815314Sstever@gmail.com
3825314Sstever@gmail.comPacket::PrintReqState::
3835735Snate@binkert.orgLabelStackEntry::LabelStackEntry(const string &_label, string *_prefix)
3845314Sstever@gmail.com    : label(_label), prefix(_prefix), labelPrinted(false)
3855314Sstever@gmail.com{
3865314Sstever@gmail.com}
3875314Sstever@gmail.com
3885314Sstever@gmail.comvoid
3895735Snate@binkert.orgPacket::PrintReqState::pushLabel(const string &lbl, const string &prefix)
3905314Sstever@gmail.com{
3915314Sstever@gmail.com    labelStack.push_back(LabelStackEntry(lbl, curPrefixPtr));
3925735Snate@binkert.org    curPrefixPtr = new string(*curPrefixPtr);
3935314Sstever@gmail.com    *curPrefixPtr += prefix;
3945314Sstever@gmail.com}
3955314Sstever@gmail.com
3965314Sstever@gmail.comvoid
3975314Sstever@gmail.comPacket::PrintReqState::popLabel()
3985314Sstever@gmail.com{
3995314Sstever@gmail.com    delete curPrefixPtr;
4005314Sstever@gmail.com    curPrefixPtr = labelStack.back().prefix;
4015314Sstever@gmail.com    labelStack.pop_back();
4025314Sstever@gmail.com    assert(!labelStack.empty());
4035314Sstever@gmail.com}
4045314Sstever@gmail.com
4055314Sstever@gmail.comvoid
4065314Sstever@gmail.comPacket::PrintReqState::printLabels()
4075314Sstever@gmail.com{
4085314Sstever@gmail.com    if (!labelStack.back().labelPrinted) {
4095314Sstever@gmail.com        LabelStack::iterator i = labelStack.begin();
4105314Sstever@gmail.com        LabelStack::iterator end = labelStack.end();
4115314Sstever@gmail.com        while (i != end) {
4125314Sstever@gmail.com            if (!i->labelPrinted) {
4135314Sstever@gmail.com                ccprintf(os, "%s%s\n", *(i->prefix), i->label);
4145314Sstever@gmail.com                i->labelPrinted = true;
4155314Sstever@gmail.com            }
4165314Sstever@gmail.com            i++;
4175314Sstever@gmail.com        }
4185314Sstever@gmail.com    }
4195314Sstever@gmail.com}
4205314Sstever@gmail.com
4215314Sstever@gmail.com
4225314Sstever@gmail.comvoid
4235314Sstever@gmail.comPacket::PrintReqState::printObj(Printable *obj)
4245314Sstever@gmail.com{
4255314Sstever@gmail.com    printLabels();
4265314Sstever@gmail.com    obj->print(os, verbosity, curPrefix());
4275314Sstever@gmail.com}
428