packet.cc (13367:dc06baae4275) packet.cc (13732:43e7199f511f)
1/*
1/*
2 * Copyright (c) 2011-2018 ARM Limited
2 * Copyright (c) 2011-2019 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

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

298 panic("Don't know how to handle command %s\n", cmdString());
299 }
300
301 // keep going with request by default
302 return false;
303}
304
305void
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

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

298 panic("Don't know how to handle command %s\n", cmdString());
299 }
300
301 // keep going with request by default
302 return false;
303}
304
305void
306Packet::copyResponderFlags(const PacketPtr pkt)
307{
308 assert(isRequest());
309 // If we have already found a responder, no other cache should
310 // commit to responding
311 assert(!pkt->cacheResponding() || !cacheResponding());
312 flags.set(pkt->flags & RESPONDER_FLAGS);
313}
314
315void
306Packet::pushSenderState(Packet::SenderState *sender_state)
307{
308 assert(sender_state != NULL);
309 sender_state->predecessor = senderState;
310 senderState = sender_state;
311}
312
313Packet::SenderState *

--- 130 unchanged lines hidden ---
316Packet::pushSenderState(Packet::SenderState *sender_state)
317{
318 assert(sender_state != NULL);
319 sender_state->predecessor = senderState;
320 senderState = sender_state;
321}
322
323Packet::SenderState *

--- 130 unchanged lines hidden ---