packet.cc revision 12347
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"},
18712347Snikos.nikoleris@arm.com    /* Cache Clean Request -- Update with the latest data all existing
18812347Snikos.nikoleris@arm.com       copies of the block down to the point indicated by the
18912347Snikos.nikoleris@arm.com       request */
19012347Snikos.nikoleris@arm.com    { SET4(IsRequest, IsClean, NeedsResponse, FromCache),
19112347Snikos.nikoleris@arm.com      CleanSharedResp, "CleanSharedReq" },
19212347Snikos.nikoleris@arm.com    /* Cache Clean Response - Indicates that all caches up to the
19312347Snikos.nikoleris@arm.com       specified point of reference have a up-to-date copy of the
19412347Snikos.nikoleris@arm.com       cache block or no copy at all */
19512347Snikos.nikoleris@arm.com    { SET2(IsResponse, IsClean), InvalidCmd, "CleanSharedResp" },
19612347Snikos.nikoleris@arm.com    /* Cache Clean and Invalidate Request -- Invalidate all existing
19712347Snikos.nikoleris@arm.com       copies down to the point indicated by the request */
19812347Snikos.nikoleris@arm.com    { SET5(IsRequest, IsInvalidate, IsClean, NeedsResponse, FromCache),
19912347Snikos.nikoleris@arm.com      CleanInvalidResp, "CleanInvalidReq" },
20012347Snikos.nikoleris@arm.com     /* Cache Clean and Invalidate Respose -- Indicates that no cache
20112347Snikos.nikoleris@arm.com        above the specified point holds the block and that the block
20212347Snikos.nikoleris@arm.com        was written to a memory below the specified point. */
20312347Snikos.nikoleris@arm.com    { SET3(IsResponse, IsInvalidate, IsClean),
20412347Snikos.nikoleris@arm.com      InvalidCmd, "CleanInvalidResp" },
2054870Sstever@eecs.umich.edu    /* InvalidDestError  -- packet dest field invalid */
2064986Ssaidi@eecs.umich.edu    { SET2(IsResponse, IsError), InvalidCmd, "InvalidDestError" },
2074870Sstever@eecs.umich.edu    /* BadAddressError   -- memory address invalid */
2085314Sstever@gmail.com    { SET2(IsResponse, IsError), InvalidCmd, "BadAddressError" },
2098436SBrad.Beckmann@amd.com    /* FunctionalReadError */
2108436SBrad.Beckmann@amd.com    { SET3(IsRead, IsResponse, IsError), InvalidCmd, "FunctionalReadError" },
2118436SBrad.Beckmann@amd.com    /* FunctionalWriteError */
2128436SBrad.Beckmann@amd.com    { SET3(IsWrite, IsResponse, IsError), InvalidCmd, "FunctionalWriteError" },
2135314Sstever@gmail.com    /* PrintReq */
2148184Ssomayeh@cs.wisc.edu    { SET2(IsRequest, IsPrint), InvalidCmd, "PrintReq" },
2158184Ssomayeh@cs.wisc.edu    /* Flush Request */
21611284Sandreas.hansson@arm.com    { SET3(IsRequest, IsFlush, NeedsWritable), InvalidCmd, "FlushReq" },
2178716Snilay@cs.wisc.edu    /* Invalidation Request */
21811600Sandreas.hansson@arm.com    { SET5(IsInvalidate, IsRequest, NeedsWritable, NeedsResponse, FromCache),
21910886Sandreas.hansson@arm.com      InvalidateResp, "InvalidateReq" },
22010886Sandreas.hansson@arm.com    /* Invalidation Response */
22111287Sandreas.hansson@arm.com    { SET2(IsInvalidate, IsResponse),
22210886Sandreas.hansson@arm.com      InvalidCmd, "InvalidateResp" }
2234022Sstever@eecs.umich.edu};
2242592SN/A
2253607Srdreslin@umich.edubool
22610028SGiacomo.Gabrielli@arm.comPacket::checkFunctional(Printable *obj, Addr addr, bool is_secure, int size,
22710570Sandreas.hansson@arm.com                        uint8_t *_data)
2282641Sstever@eecs.umich.edu{
2294626Sstever@eecs.umich.edu    Addr func_start = getAddr();
2304626Sstever@eecs.umich.edu    Addr func_end   = getAddr() + getSize() - 1;
2314626Sstever@eecs.umich.edu    Addr val_start  = addr;
2324626Sstever@eecs.umich.edu    Addr val_end    = val_start + size - 1;
2333260Ssaidi@eecs.umich.edu
23410028SGiacomo.Gabrielli@arm.com    if (is_secure != _isSecure || func_start > val_end ||
23510028SGiacomo.Gabrielli@arm.com        val_start > func_end) {
2364626Sstever@eecs.umich.edu        // no intersection
2374626Sstever@eecs.umich.edu        return false;
2384626Sstever@eecs.umich.edu    }
2393260Ssaidi@eecs.umich.edu
2405314Sstever@gmail.com    // check print first since it doesn't require data
2415314Sstever@gmail.com    if (isPrint()) {
24210570Sandreas.hansson@arm.com        assert(!_data);
24310376Sandreas.hansson@arm.com        safe_cast<PrintReqState*>(senderState)->printObj(obj);
2445314Sstever@gmail.com        return false;
2455314Sstever@gmail.com    }
2465314Sstever@gmail.com
24710570Sandreas.hansson@arm.com    // we allow the caller to pass NULL to signify the other packet
24810570Sandreas.hansson@arm.com    // has no data
24910570Sandreas.hansson@arm.com    if (!_data) {
2505314Sstever@gmail.com        return false;
2515314Sstever@gmail.com    }
2525314Sstever@gmail.com
2534626Sstever@eecs.umich.edu    // offset of functional request into supplied value (could be
2544626Sstever@eecs.umich.edu    // negative if partial overlap)
2554626Sstever@eecs.umich.edu    int offset = func_start - val_start;
2563260Ssaidi@eecs.umich.edu
2574626Sstever@eecs.umich.edu    if (isRead()) {
2584626Sstever@eecs.umich.edu        if (func_start >= val_start && func_end <= val_end) {
25910570Sandreas.hansson@arm.com            memcpy(getPtr<uint8_t>(), _data + offset, getSize());
26010723Sandreas.hansson@arm.com            if (bytesValid.empty())
26110723Sandreas.hansson@arm.com                bytesValid.resize(getSize(), true);
26210570Sandreas.hansson@arm.com            // complete overlap, and as the current packet is a read
26310570Sandreas.hansson@arm.com            // we are done
2644626Sstever@eecs.umich.edu            return true;
2653260Ssaidi@eecs.umich.edu        } else {
2668668Sgeoffrey.blake@arm.com            // Offsets and sizes to copy in case of partial overlap
2678668Sgeoffrey.blake@arm.com            int func_offset;
2688668Sgeoffrey.blake@arm.com            int val_offset;
2698668Sgeoffrey.blake@arm.com            int overlap_size;
2708668Sgeoffrey.blake@arm.com
2718668Sgeoffrey.blake@arm.com            // calculate offsets and copy sizes for the two byte arrays
2728668Sgeoffrey.blake@arm.com            if (val_start < func_start && val_end <= func_end) {
27310723Sandreas.hansson@arm.com                // the one we are checking against starts before and
27410723Sandreas.hansson@arm.com                // ends before or the same
2758668Sgeoffrey.blake@arm.com                val_offset = func_start - val_start;
2768668Sgeoffrey.blake@arm.com                func_offset = 0;
2778668Sgeoffrey.blake@arm.com                overlap_size = val_end - func_start;
2788668Sgeoffrey.blake@arm.com            } else if (val_start >= func_start && val_end > func_end) {
27910723Sandreas.hansson@arm.com                // the one we are checking against starts after or the
28010723Sandreas.hansson@arm.com                // same, and ends after
2818668Sgeoffrey.blake@arm.com                val_offset = 0;
2828668Sgeoffrey.blake@arm.com                func_offset = val_start - func_start;
2838668Sgeoffrey.blake@arm.com                overlap_size = func_end - val_start;
2848668Sgeoffrey.blake@arm.com            } else if (val_start >= func_start && val_end <= func_end) {
28510723Sandreas.hansson@arm.com                // the one we are checking against is completely
28610723Sandreas.hansson@arm.com                // subsumed in the current packet, possibly starting
28710723Sandreas.hansson@arm.com                // and ending at the same address
2888668Sgeoffrey.blake@arm.com                val_offset = 0;
2898668Sgeoffrey.blake@arm.com                func_offset = val_start - func_start;
2908668Sgeoffrey.blake@arm.com                overlap_size = size;
29110723Sandreas.hansson@arm.com            } else if (val_start < func_start && val_end > func_end) {
29210723Sandreas.hansson@arm.com                // the current packet is completely subsumed in the
29310723Sandreas.hansson@arm.com                // one we are checking against
29410723Sandreas.hansson@arm.com                val_offset = func_start - val_start;
29510723Sandreas.hansson@arm.com                func_offset = 0;
29610723Sandreas.hansson@arm.com                overlap_size = func_end - func_start;
2978668Sgeoffrey.blake@arm.com            } else {
29810723Sandreas.hansson@arm.com                panic("Missed a case for checkFunctional with "
29910723Sandreas.hansson@arm.com                      " %s 0x%x size %d, against 0x%x size %d\n",
30010723Sandreas.hansson@arm.com                      cmdString(), getAddr(), getSize(), addr, size);
3018668Sgeoffrey.blake@arm.com            }
3028668Sgeoffrey.blake@arm.com
3038668Sgeoffrey.blake@arm.com            // copy partial data into the packet's data array
3048668Sgeoffrey.blake@arm.com            uint8_t *dest = getPtr<uint8_t>() + func_offset;
30510570Sandreas.hansson@arm.com            uint8_t *src = _data + val_offset;
3068668Sgeoffrey.blake@arm.com            memcpy(dest, src, overlap_size);
3078668Sgeoffrey.blake@arm.com
30810723Sandreas.hansson@arm.com            // initialise the tracking of valid bytes if we have not
30910723Sandreas.hansson@arm.com            // used it already
31010723Sandreas.hansson@arm.com            if (bytesValid.empty())
31110723Sandreas.hansson@arm.com                bytesValid.resize(getSize(), false);
31210723Sandreas.hansson@arm.com
31310723Sandreas.hansson@arm.com            // track if we are done filling the functional access
31410723Sandreas.hansson@arm.com            bool all_bytes_valid = true;
31510723Sandreas.hansson@arm.com
31610723Sandreas.hansson@arm.com            int i = 0;
31710723Sandreas.hansson@arm.com
31810723Sandreas.hansson@arm.com            // check up to func_offset
31910723Sandreas.hansson@arm.com            for (; all_bytes_valid && i < func_offset; ++i)
32010723Sandreas.hansson@arm.com                all_bytes_valid &= bytesValid[i];
32110723Sandreas.hansson@arm.com
32210723Sandreas.hansson@arm.com            // update the valid bytes
32310723Sandreas.hansson@arm.com            for (i = func_offset; i < func_offset + overlap_size; ++i)
32410723Sandreas.hansson@arm.com                bytesValid[i] = true;
32510723Sandreas.hansson@arm.com
32610723Sandreas.hansson@arm.com            // check the bit after the update we just made
32710723Sandreas.hansson@arm.com            for (; all_bytes_valid && i < getSize(); ++i)
32810723Sandreas.hansson@arm.com                all_bytes_valid &= bytesValid[i];
32910723Sandreas.hansson@arm.com
33010723Sandreas.hansson@arm.com            return all_bytes_valid;
3313260Ssaidi@eecs.umich.edu        }
3324626Sstever@eecs.umich.edu    } else if (isWrite()) {
3334626Sstever@eecs.umich.edu        if (offset >= 0) {
33410570Sandreas.hansson@arm.com            memcpy(_data + offset, getConstPtr<uint8_t>(),
3355735Snate@binkert.org                   (min(func_end, val_end) - func_start) + 1);
3365735Snate@binkert.org        } else {
3375735Snate@binkert.org            // val_start > func_start
33810570Sandreas.hansson@arm.com            memcpy(_data, getConstPtr<uint8_t>() - offset,
3395735Snate@binkert.org                   (min(func_end, val_end) - val_start) + 1);
3403260Ssaidi@eecs.umich.edu        }
3415314Sstever@gmail.com    } else {
3424626Sstever@eecs.umich.edu        panic("Don't know how to handle command %s\n", cmdString());
3435314Sstever@gmail.com    }
3445314Sstever@gmail.com
3455314Sstever@gmail.com    // keep going with request by default
3465314Sstever@gmail.com    return false;
3472641Sstever@eecs.umich.edu}
3483260Ssaidi@eecs.umich.edu
3495314Sstever@gmail.comvoid
3509542Sandreas.hansson@arm.comPacket::pushSenderState(Packet::SenderState *sender_state)
3519542Sandreas.hansson@arm.com{
3529542Sandreas.hansson@arm.com    assert(sender_state != NULL);
3539542Sandreas.hansson@arm.com    sender_state->predecessor = senderState;
3549542Sandreas.hansson@arm.com    senderState = sender_state;
3559542Sandreas.hansson@arm.com}
3569542Sandreas.hansson@arm.com
3579542Sandreas.hansson@arm.comPacket::SenderState *
3589542Sandreas.hansson@arm.comPacket::popSenderState()
3599542Sandreas.hansson@arm.com{
3609542Sandreas.hansson@arm.com    assert(senderState != NULL);
3619542Sandreas.hansson@arm.com    SenderState *sender_state = senderState;
3629542Sandreas.hansson@arm.com    senderState = sender_state->predecessor;
3639542Sandreas.hansson@arm.com    sender_state->predecessor = NULL;
3649542Sandreas.hansson@arm.com    return sender_state;
3659542Sandreas.hansson@arm.com}
3669542Sandreas.hansson@arm.com
3679542Sandreas.hansson@arm.comvoid
3685735Snate@binkert.orgPacket::print(ostream &o, const int verbosity, const string &prefix) const
3693260Ssaidi@eecs.umich.edu{
37012346Snikos.nikoleris@arm.com    ccprintf(o, "%s%s [%x:%x]%s%s%s%s%s%s", prefix, cmdString(),
37111744Snikos.nikoleris@arm.com             getAddr(), getAddr() + getSize() - 1,
37211744Snikos.nikoleris@arm.com             req->isSecure() ? " (s)" : "",
37311744Snikos.nikoleris@arm.com             req->isInstFetch() ? " IF" : "",
37411744Snikos.nikoleris@arm.com             req->isUncacheable() ? " UC" : "",
37512346Snikos.nikoleris@arm.com             isExpressSnoop() ? " ES" : "",
37612346Snikos.nikoleris@arm.com             req->isToPOC() ? " PoC" : "",
37712346Snikos.nikoleris@arm.com             req->isToPOU() ? " PoU" : "");
3783260Ssaidi@eecs.umich.edu}
3793260Ssaidi@eecs.umich.edu
3809663Suri.wiener@arm.comstd::string
3819663Suri.wiener@arm.comPacket::print() const {
3829663Suri.wiener@arm.com    ostringstream str;
3839663Suri.wiener@arm.com    print(str);
3849663Suri.wiener@arm.com    return str.str();
3859663Suri.wiener@arm.com}
3869663Suri.wiener@arm.com
3875735Snate@binkert.orgPacket::PrintReqState::PrintReqState(ostream &_os, int _verbosity)
3885735Snate@binkert.org    : curPrefixPtr(new string("")), os(_os), verbosity(_verbosity)
3895314Sstever@gmail.com{
3905314Sstever@gmail.com    labelStack.push_back(LabelStackEntry("", curPrefixPtr));
3915314Sstever@gmail.com}
3925314Sstever@gmail.com
3935314Sstever@gmail.comPacket::PrintReqState::~PrintReqState()
3945314Sstever@gmail.com{
3955314Sstever@gmail.com    labelStack.pop_back();
3965314Sstever@gmail.com    assert(labelStack.empty());
3975314Sstever@gmail.com    delete curPrefixPtr;
3985314Sstever@gmail.com}
3995314Sstever@gmail.com
4005314Sstever@gmail.comPacket::PrintReqState::
4015735Snate@binkert.orgLabelStackEntry::LabelStackEntry(const string &_label, string *_prefix)
4025314Sstever@gmail.com    : label(_label), prefix(_prefix), labelPrinted(false)
4035314Sstever@gmail.com{
4045314Sstever@gmail.com}
4055314Sstever@gmail.com
4065314Sstever@gmail.comvoid
4075735Snate@binkert.orgPacket::PrintReqState::pushLabel(const string &lbl, const string &prefix)
4085314Sstever@gmail.com{
4095314Sstever@gmail.com    labelStack.push_back(LabelStackEntry(lbl, curPrefixPtr));
4105735Snate@binkert.org    curPrefixPtr = new string(*curPrefixPtr);
4115314Sstever@gmail.com    *curPrefixPtr += prefix;
4125314Sstever@gmail.com}
4135314Sstever@gmail.com
4145314Sstever@gmail.comvoid
4155314Sstever@gmail.comPacket::PrintReqState::popLabel()
4165314Sstever@gmail.com{
4175314Sstever@gmail.com    delete curPrefixPtr;
4185314Sstever@gmail.com    curPrefixPtr = labelStack.back().prefix;
4195314Sstever@gmail.com    labelStack.pop_back();
4205314Sstever@gmail.com    assert(!labelStack.empty());
4215314Sstever@gmail.com}
4225314Sstever@gmail.com
4235314Sstever@gmail.comvoid
4245314Sstever@gmail.comPacket::PrintReqState::printLabels()
4255314Sstever@gmail.com{
4265314Sstever@gmail.com    if (!labelStack.back().labelPrinted) {
4275314Sstever@gmail.com        LabelStack::iterator i = labelStack.begin();
4285314Sstever@gmail.com        LabelStack::iterator end = labelStack.end();
4295314Sstever@gmail.com        while (i != end) {
4305314Sstever@gmail.com            if (!i->labelPrinted) {
4315314Sstever@gmail.com                ccprintf(os, "%s%s\n", *(i->prefix), i->label);
4325314Sstever@gmail.com                i->labelPrinted = true;
4335314Sstever@gmail.com            }
4345314Sstever@gmail.com            i++;
4355314Sstever@gmail.com        }
4365314Sstever@gmail.com    }
4375314Sstever@gmail.com}
4385314Sstever@gmail.com
4395314Sstever@gmail.com
4405314Sstever@gmail.comvoid
4415314Sstever@gmail.comPacket::PrintReqState::printObj(Printable *obj)
4425314Sstever@gmail.com{
4435314Sstever@gmail.com    printLabels();
4445314Sstever@gmail.com    obj->print(os, verbosity, curPrefix());
4455314Sstever@gmail.com}
446