base.cc (13750:11dd302dfaa4) base.cc (13752:135bb759ee9c)
1/*
2 * Copyright (c) 2012-2013, 2018 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

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

1354 unusedPrefetches++;
1355 }
1356
1357 evictBlock(blk, writebacks);
1358 }
1359 }
1360
1361 // Insert new block at victimized entry
1/*
2 * Copyright (c) 2012-2013, 2018 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

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

1354 unusedPrefetches++;
1355 }
1356
1357 evictBlock(blk, writebacks);
1358 }
1359 }
1360
1361 // Insert new block at victimized entry
1362 tags->insertBlock(addr, is_secure, pkt->req->masterId(),
1363 pkt->req->taskId(), victim);
1362 tags->insertBlock(pkt, victim);
1364
1365 return victim;
1366}
1367
1368void
1369BaseCache::invalidateBlock(CacheBlk *blk)
1370{
1371 // If handling a block present in the Tags, let it do its invalidation

--- 1153 unchanged lines hidden ---
1363
1364 return victim;
1365}
1366
1367void
1368BaseCache::invalidateBlock(CacheBlk *blk)
1369{
1370 // If handling a block present in the Tags, let it do its invalidation

--- 1153 unchanged lines hidden ---