base.hh (10052:5bb8e054456b) base.hh (10360:919c02740209)
1/*
2 * Copyright (c) 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

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

78
79 /** The number of MSHRs in the Prefetch Queue. */
80 const unsigned size;
81
82 /** Pointr to the parent cache. */
83 BaseCache* cache;
84
85 /** The block size of the parent cache. */
1/*
2 * Copyright (c) 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

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

78
79 /** The number of MSHRs in the Prefetch Queue. */
80 const unsigned size;
81
82 /** Pointr to the parent cache. */
83 BaseCache* cache;
84
85 /** The block size of the parent cache. */
86 int blkSize;
86 unsigned blkSize;
87
88 /** The latency before a prefetch is issued */
89 const Cycles latency;
90
91 /** The number of prefetches to issue */
92 const unsigned degree;
93
94 /** If patterns should be found per context id */

--- 90 unchanged lines hidden ---
87
88 /** The latency before a prefetch is issued */
89 const Cycles latency;
90
91 /** The number of prefetches to issue */
92 const unsigned degree;
93
94 /** If patterns should be found per context id */

--- 90 unchanged lines hidden ---