fetch_impl.hh (8089:4a59661d3fd1) fetch_impl.hh (8134:b01a51ff05fa)
1/*
2 * Copyright (c) 2010 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

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

107}
108
109template<class Impl>
110bool
111DefaultFetch<Impl>::IcachePort::recvTiming(PacketPtr pkt)
112{
113 DPRINTF(Fetch, "Received timing\n");
114 if (pkt->isResponse()) {
1/*
2 * Copyright (c) 2010 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

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

107}
108
109template<class Impl>
110bool
111DefaultFetch<Impl>::IcachePort::recvTiming(PacketPtr pkt)
112{
113 DPRINTF(Fetch, "Received timing\n");
114 if (pkt->isResponse()) {
115 // We shouldn't ever get a block in ownership state
116 assert(!(pkt->memInhibitAsserted() && !pkt->sharedAsserted()));
117
115 fetch->processCacheCompletion(pkt);
116 }
117 //else Snooped a coherence request, just return
118 return true;
119}
120
121template<class Impl>
122void

--- 1358 unchanged lines hidden ---
118 fetch->processCacheCompletion(pkt);
119 }
120 //else Snooped a coherence request, just return
121 return true;
122}
123
124template<class Impl>
125void

--- 1358 unchanged lines hidden ---