queued.cc (13552:86c9a15aa4ef) queued.cc (13624:3d8220c2d41d)
1/*
2 * Copyright (c) 2014-2015 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

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

119 DPRINTF(HWPrefetch, "No hardware prefetches available.\n");
120 return nullptr;
121 }
122
123 PacketPtr pkt = pfq.front().pkt;
124 pfq.pop_front();
125
126 pfIssued++;
1/*
2 * Copyright (c) 2014-2015 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

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

119 DPRINTF(HWPrefetch, "No hardware prefetches available.\n");
120 return nullptr;
121 }
122
123 PacketPtr pkt = pfq.front().pkt;
124 pfq.pop_front();
125
126 pfIssued++;
127 issuedPrefetches += 1;
127 assert(pkt != nullptr);
128 DPRINTF(HWPrefetch, "Generating prefetch for %#x.\n", pkt->getAddr());
129 return pkt;
130}
131
132QueuedPrefetcher::const_iterator
133QueuedPrefetcher::inPrefetch(const PrefetchInfo &pfi) const
134{

--- 160 unchanged lines hidden ---
128 assert(pkt != nullptr);
129 DPRINTF(HWPrefetch, "Generating prefetch for %#x.\n", pkt->getAddr());
130 return pkt;
131}
132
133QueuedPrefetcher::const_iterator
134QueuedPrefetcher::inPrefetch(const PrefetchInfo &pfi) const
135{

--- 160 unchanged lines hidden ---