base.hh (10025:fdf737112e46) base.hh (10693:c0979b2ebda5)
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

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

63 */
64class BaseTags : public ClockedObject
65{
66 protected:
67 /** The block size of the cache. */
68 const unsigned blkSize;
69 /** The size of the cache. */
70 const unsigned size;
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

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

63 */
64class BaseTags : public ClockedObject
65{
66 protected:
67 /** The block size of the cache. */
68 const unsigned blkSize;
69 /** The size of the cache. */
70 const unsigned size;
71 /** The hit latency of the cache. */
72 const Cycles hitLatency;
73
71 /** The access latency of the cache. */
72 const Cycles accessLatency;
74 /** Pointer to the parent cache. */
75 BaseCache *cache;
76
77 /**
78 * The number of tags that need to be touched to meet the warmup
79 * percentage.
80 */
81 int warmupBound;

--- 120 unchanged lines hidden ---
73 /** Pointer to the parent cache. */
74 BaseCache *cache;
75
76 /**
77 * The number of tags that need to be touched to meet the warmup
78 * percentage.
79 */
80 int warmupBound;

--- 120 unchanged lines hidden ---