265c265,271
< * Find replacement victim based on address.
---
> * Find replacement victim based on address. If the address requires
> * blocks to be evicted, their locations are listed for eviction. If a
> * conventional cache is being used, the list only contains the victim.
> * However, if using sector or compressed caches, the victim is one of
> * the blocks to be evicted, but its location is the only one that will
> * be assigned to the newly allocated block associated to this address.
> * @sa insertBlock
267a274
> * @param evict_blks Cache blocks to be evicted.
270c277,278
< virtual CacheBlk* findVictim(Addr addr) = 0;
---
> virtual CacheBlk* findVictim(Addr addr, std::vector<CacheBlk*>& evict_blks)
> const = 0;