lsq.hh (10713:eddb533708cb) lsq.hh (11331:cd5c48db28e6)
1/*
2 * Copyright (c) 2013-2014 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

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

98 { }
99
100 protected:
101 bool recvTimingResp(PacketPtr pkt)
102 { return lsq.recvTimingResp(pkt); }
103
104 void recvReqRetry() { lsq.recvReqRetry(); }
105
1/*
2 * Copyright (c) 2013-2014 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

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

98 { }
99
100 protected:
101 bool recvTimingResp(PacketPtr pkt)
102 { return lsq.recvTimingResp(pkt); }
103
104 void recvReqRetry() { lsq.recvReqRetry(); }
105
106 bool isSnooping() const override { return true; }
107
106 void recvTimingSnoopReq(PacketPtr pkt)
107 { return lsq.recvTimingSnoopReq(pkt); }
108 void recvTimingSnoopReq(PacketPtr pkt)
109 { return lsq.recvTimingSnoopReq(pkt); }
110
111 void recvFunctionalSnoop(PacketPtr pkt) { }
108 };
109
110 DcachePort dcachePort;
111
112 public:
113 /** Derived SenderState to carry data access info. through address
114 * translation, the queues in this port and back from the memory
115 * system. */

--- 616 unchanged lines hidden ---
112 };
113
114 DcachePort dcachePort;
115
116 public:
117 /** Derived SenderState to carry data access info. through address
118 * translation, the queues in this port and back from the memory
119 * system. */

--- 616 unchanged lines hidden ---