Deleted Added
sdiff udiff text old ( 13215:82cdb8db4643 ) new ( 13217:725b1701b4ee )
full compact
1/*
2 * Copyright (c) 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

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

73
74void
75BaseTags::setCache(BaseCache *_cache)
76{
77 assert(!cache);
78 cache = _cache;
79}
80
81void
82BaseTags::insertBlock(const Addr addr, const bool is_secure,
83 const int src_master_ID, const uint32_t task_ID,
84 CacheBlk *blk)
85{
86 assert(!blk->isValid());
87
88 // Previous block, if existed, has been removed, and now we have

--- 180 unchanged lines hidden ---