Deleted Added
sdiff udiff text old ( 9031:32ecc0217c5e ) new ( 9044:904ddeecc653 )
full compact
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

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

50
51#ifndef __MEM_BRIDGE_HH__
52#define __MEM_BRIDGE_HH__
53
54#include <list>
55#include <queue>
56#include <string>
57
58#include "base/types.hh"
59#include "mem/mem_object.hh"
60#include "mem/packet.hh"
61#include "mem/port.hh"
62#include "params/Bridge.hh"
63#include "sim/eventq.hh"
64
65/**

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

79{
80 protected:
81
82 /**
83 * A bridge request state stores packets along with their sender
84 * state and original source. It has enough information to also
85 * restore the response once it comes back to the bridge.
86 */
87 class RequestState : public Packet::SenderState
88 {
89
90 public:
91
92 Packet::SenderState *origSenderState;
93 PortID origSrc;
94
95 RequestState(PacketPtr _pkt)

--- 325 unchanged lines hidden ---