comm_monitor.hh (9785:face72b7bb78) comm_monitor.hh (9814:7ad2b0186a32)
1/*
2 * Copyright (c) 2012-2013 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

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

166 mon.recvRangeChange();
167 }
168
169 bool isSnooping() const
170 {
171 return mon.isSnooping();
172 }
173
1/*
2 * Copyright (c) 2012-2013 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

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

166 mon.recvRangeChange();
167 }
168
169 bool isSnooping() const
170 {
171 return mon.isSnooping();
172 }
173
174 unsigned deviceBlockSize() const
175 {
176 return mon.deviceBlockSizeMaster();
177 }
178
179 void recvRetry()
180 {
181 mon.recvRetryMaster();
182 }
183
184 private:
185
186 CommMonitor& mon;

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

222 return mon.recvTimingReq(pkt);
223 }
224
225 bool recvTimingSnoopResp(PacketPtr pkt)
226 {
227 return mon.recvTimingSnoopResp(pkt);
228 }
229
174 void recvRetry()
175 {
176 mon.recvRetryMaster();
177 }
178
179 private:
180
181 CommMonitor& mon;

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

217 return mon.recvTimingReq(pkt);
218 }
219
220 bool recvTimingSnoopResp(PacketPtr pkt)
221 {
222 return mon.recvTimingSnoopResp(pkt);
223 }
224
230 unsigned deviceBlockSize() const
231 {
232 return mon.deviceBlockSizeSlave();
233 }
234
235 AddrRangeList getAddrRanges() const
236 {
237 return mon.getAddrRanges();
238 }
239
240 void recvRetry()
241 {
242 mon.recvRetrySlave();

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

262 bool recvTimingReq(PacketPtr pkt);
263
264 bool recvTimingResp(PacketPtr pkt);
265
266 void recvTimingSnoopReq(PacketPtr pkt);
267
268 bool recvTimingSnoopResp(PacketPtr pkt);
269
225 AddrRangeList getAddrRanges() const
226 {
227 return mon.getAddrRanges();
228 }
229
230 void recvRetry()
231 {
232 mon.recvRetrySlave();

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

252 bool recvTimingReq(PacketPtr pkt);
253
254 bool recvTimingResp(PacketPtr pkt);
255
256 void recvTimingSnoopReq(PacketPtr pkt);
257
258 bool recvTimingSnoopResp(PacketPtr pkt);
259
270 unsigned deviceBlockSizeMaster();
271
272 unsigned deviceBlockSizeSlave();
273
274 AddrRangeList getAddrRanges() const;
275
276 bool isSnooping() const;
277
278 void recvRetryMaster();
279
280 void recvRetrySlave();
281

--- 156 unchanged lines hidden ---
260 AddrRangeList getAddrRanges() const;
261
262 bool isSnooping() const;
263
264 void recvRetryMaster();
265
266 void recvRetrySlave();
267

--- 156 unchanged lines hidden ---