Deleted Added
sdiff udiff text old ( 10048:1548b7aa657c ) new ( 10693:c0979b2ebda5 )
full compact
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

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

205 * @param pkt The request to a find a replacement candidate for.
206 * @return The block to place the replacement in.
207 */
208 FALRUBlk* findVictim(Addr addr);
209
210 void insertBlock(PacketPtr pkt, BlkType *blk);
211
212 /**
213 * Return the block size of this cache.
214 * @return The block size.
215 */
216 unsigned
217 getBlockSize() const
218 {
219 return blkSize;
220 }

--- 97 unchanged lines hidden ---