Deleted Added
sdiff udiff text old ( 10815:169af9a2779f ) new ( 10941:a39646f4c407 )
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
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated

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

191 * @param addr the address to get the offset of.
192 * @return the block offset.
193 */
194 int extractBlkOffset(Addr addr) const
195 {
196 return (addr & (Addr)(blkSize-1));
197 }
198
199 virtual void invalidate(CacheBlk *blk) = 0;
200
201 virtual CacheBlk* accessBlock(Addr addr, bool is_secure, Cycles &lat,
202 int context_src) = 0;
203
204 virtual Addr extractTag(Addr addr) const = 0;
205
206 virtual void insertBlock(PacketPtr pkt, CacheBlk *blk) = 0;

--- 27 unchanged lines hidden ---