Deleted Added
sdiff udiff text old ( 12728:57bdea4f96aa ) new ( 12731:36a41bd85c0f )
full compact
1/*
2 * Copyright (c) 2012-2013,2016,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

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

216 * @return The tag.
217 */
218 Addr extractTag(Addr addr) const override
219 {
220 return blkAlign(addr);
221 }
222
223 /**
224 * Regenerate the block address from the tag.
225 *
226 * @param block The block.
227 * @return the block address.
228 */
229 Addr regenerateBlkAddr(const CacheBlk* blk) const override
230 {
231 return blk->tag;

--- 143 unchanged lines hidden ---