queued.cc (10922:5ee72f4b2931) queued.cc (10942:224c85495f96)
1/*
2 * Copyright (c) 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

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

74 itr->pkt->isSecure() == is_secure) {
75 delete itr->pkt->req;
76 delete itr->pkt;
77 itr = pfq.erase(itr);
78 } else {
79 ++itr;
80 }
81 }
1/*
2 * Copyright (c) 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

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

74 itr->pkt->isSecure() == is_secure) {
75 delete itr->pkt->req;
76 delete itr->pkt;
77 itr = pfq.erase(itr);
78 } else {
79 ++itr;
80 }
81 }
82
83 if (pfq.empty())
84 cache->deassertMemSideBusRequest(BaseCache::Request_PF);
85 }
86
87 // Calculate prefetches given this access
88 std::vector<Addr> addresses;
89 calculatePrefetch(pkt, addresses);
90
91 // Queue up generated prefetches
92 for (Addr pf_addr : addresses) {

--- 121 unchanged lines hidden ---
82 }
83
84 // Calculate prefetches given this access
85 std::vector<Addr> addresses;
86 calculatePrefetch(pkt, addresses);
87
88 // Queue up generated prefetches
89 for (Addr pf_addr : addresses) {

--- 121 unchanged lines hidden ---