bridge.hh (8948:e95ee70f876c) bridge.hh (8949:3fa1ee293096)
1/*
2 * Copyright (c) 2011-2012 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

--- 77 unchanged lines hidden (view full) ---

86 */
87 class PacketBuffer : public Packet::SenderState, public FastAlloc {
88
89 public:
90 Tick ready;
91 PacketPtr pkt;
92 bool nackedHere;
93 Packet::SenderState *origSenderState;
1/*
2 * Copyright (c) 2011-2012 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

--- 77 unchanged lines hidden (view full) ---

86 */
87 class PacketBuffer : public Packet::SenderState, public FastAlloc {
88
89 public:
90 Tick ready;
91 PacketPtr pkt;
92 bool nackedHere;
93 Packet::SenderState *origSenderState;
94 short origSrc;
94 Packet::NodeID origSrc;
95 bool expectResponse;
96
97 PacketBuffer(PacketPtr _pkt, Tick t, bool nack = false)
98 : ready(t), pkt(_pkt), nackedHere(nack),
99 origSenderState(_pkt->senderState),
100 origSrc(nack ? _pkt->getDest() : _pkt->getSrc() ),
101 expectResponse(_pkt->needsResponse() && !nack)
102

--- 288 unchanged lines hidden ---
95 bool expectResponse;
96
97 PacketBuffer(PacketPtr _pkt, Tick t, bool nack = false)
98 : ready(t), pkt(_pkt), nackedHere(nack),
99 origSenderState(_pkt->senderState),
100 origSrc(nack ? _pkt->getDest() : _pkt->getSrc() ),
101 expectResponse(_pkt->needsResponse() && !nack)
102

--- 288 unchanged lines hidden ---