gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
base_set_assoc.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2014,2017 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
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2003-2005,2014 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  *
40  * Authors: Erik Hallnor
41  */
42 
48 #ifndef __MEM_CACHE_TAGS_BASE_SET_ASSOC_HH__
49 #define __MEM_CACHE_TAGS_BASE_SET_ASSOC_HH__
50 
51 #include <cstdint>
52 #include <functional>
53 #include <string>
54 #include <vector>
55 
56 #include "base/logging.hh"
57 #include "base/types.hh"
58 #include "mem/cache/base.hh"
59 #include "mem/cache/cache_blk.hh"
62 #include "mem/cache/tags/base.hh"
64 #include "mem/packet.hh"
65 #include "params/BaseSetAssoc.hh"
66 
74 class BaseSetAssoc : public BaseTags
75 {
76  protected:
78  unsigned allocAssoc;
79 
82 
84  const bool sequentialAccess;
85 
88 
89  public:
91  typedef BaseSetAssocParams Params;
92 
96  BaseSetAssoc(const Params *p);
97 
101  virtual ~BaseSetAssoc() {};
102 
106  void tagsInit() override;
107 
114  void invalidate(CacheBlk *blk) override;
115 
127  CacheBlk* accessBlock(Addr addr, bool is_secure, Cycles &lat) override
128  {
129  CacheBlk *blk = findBlock(addr, is_secure);
130 
131  // Access all tags in parallel, hence one in each way. The data side
132  // either accesses all blocks in parallel, or one block sequentially on
133  // a hit. Sequential access with a miss doesn't access data.
135  if (sequentialAccess) {
136  if (blk != nullptr) {
137  stats.dataAccesses += 1;
138  }
139  } else {
141  }
142 
143  // If a cache hit
144  if (blk != nullptr) {
145  // Update number of references to accessed block
146  blk->refCount++;
147 
148  // Update replacement data of accessed block
149  replacementPolicy->touch(blk->replacementData);
150  }
151 
152  // The tag lookup latency is the same for a hit or a miss
153  lat = lookupLatency;
154 
155  return blk;
156  }
157 
168  CacheBlk* findVictim(Addr addr, const bool is_secure,
169  const std::size_t size,
170  std::vector<CacheBlk*>& evict_blks) override
171  {
172  // Get possible entries to be victimized
173  const std::vector<ReplaceableEntry*> entries =
175 
176  // Choose replacement victim from replacement candidates
177  CacheBlk* victim = static_cast<CacheBlk*>(replacementPolicy->getVictim(
178  entries));
179 
180  // There is only one eviction for this replacement
181  evict_blks.push_back(victim);
182 
183  return victim;
184  }
185 
192  void insertBlock(const PacketPtr pkt, CacheBlk *blk) override
193  {
194  // Insert block
195  BaseTags::insertBlock(pkt, blk);
196 
197  // Increment tag counter
198  stats.tagsInUse++;
199 
200  // Update replacement policy
201  replacementPolicy->reset(blk->replacementData);
202  }
203 
208  virtual void setWayAllocationMax(int ways) override
209  {
210  fatal_if(ways < 1, "Allocation limit must be greater than zero");
211  allocAssoc = ways;
212  }
213 
218  virtual int getWayAllocationMax() const override
219  {
220  return allocAssoc;
221  }
222 
229  Addr regenerateBlkAddr(const CacheBlk* blk) const override
230  {
231  return indexingPolicy->regenerateAddr(blk->tag, blk);
232  }
233 
234  void forEachBlk(std::function<void(CacheBlk &)> visitor) override {
235  for (CacheBlk& blk : blks) {
236  visitor(blk);
237  }
238  }
239 
240  bool anyBlk(std::function<bool(CacheBlk &)> visitor) override {
241  for (CacheBlk& blk : blks) {
242  if (visitor(blk)) {
243  return true;
244  }
245  }
246  return false;
247  }
248 };
249 
250 #endif //__MEM_CACHE_TAGS_BASE_SET_ASSOC_HH__
const bool sequentialAccess
Whether tags and data are accessed sequentially.
virtual CacheBlk * findBlock(Addr addr, bool is_secure) const
Finds the block in the cache without touching it.
Definition: base.cc:80
unsigned allocAssoc
The allocatable associativity of the cache (alloc mask).
Declares a basic cache interface BaseCache.
const Cycles lookupLatency
The tag lookup latency of the cache.
Definition: base.hh:83
Stats::Scalar dataAccesses
Number of data blocks consulted over all accesses.
Definition: base.hh:157
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:83
Stats::Average tagsInUse
Per cycle average of the number of tags that hold valid data.
Definition: base.hh:118
virtual std::vector< ReplaceableEntry * > getPossibleEntries(const Addr addr) const =0
Find all possible entries for insertion and replacement of an address.
Addr tag
Data block tag value.
Definition: cache_blk.hh:94
virtual void touch(const std::shared_ptr< ReplacementData > &replacement_data) const =0
Update replacement data.
ip6_addr_t addr
Definition: inet.hh:335
virtual ReplaceableEntry * getVictim(const ReplacementCandidates &candidates) const =0
Find replacement victim among candidates.
unsigned refCount
Number of references to this block since it was brought in.
Definition: cache_blk.hh:117
CacheBlk * accessBlock(Addr addr, bool is_secure, Cycles &lat) override
Access block and update replacement data.
A common base class of cache replacement policy objects.
Definition: base.hh:48
Declaration of a common base class for cache tagstore objects.
A Basic Cache block.
Definition: cache_blk.hh:87
BaseSetAssoc(const Params *p)
Construct and initialize this tag store.
A basic cache tag store.
std::shared_ptr< ReplacementData > replacementData
Replacement data associated to this entry.
void tagsInit() override
Initialize blocks as CacheBlk instances.
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:203
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
void invalidate(CacheBlk *blk) override
This function updates the tags when a block is invalidated.
void insertBlock(const PacketPtr pkt, CacheBlk *blk) override
Insert the new block into the cache and update replacement data.
virtual void insertBlock(const PacketPtr pkt, CacheBlk *blk)
Insert the new block into the cache and update stats.
Definition: base.cc:103
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:255
void forEachBlk(std::function< void(CacheBlk &)> visitor) override
Visit each block in the tags and apply a visitor.
bool anyBlk(std::function< bool(CacheBlk &)> visitor) override
Find if any of the blocks satisfies a condition.
Stats::Scalar tagAccesses
Number of tags consulted over all accesses.
Definition: base.hh:155
virtual void reset(const std::shared_ptr< ReplacementData > &replacement_data) const =0
Reset replacement data.
Definitions of a simple cache block class.
BaseTags::BaseTagStats stats
BaseSetAssocParams Params
Convenience typedef.
CacheBlk * findVictim(Addr addr, const bool is_secure, const std::size_t size, std::vector< CacheBlk *> &evict_blks) override
Find replacement victim based on address.
Declaration of the Packet class.
virtual void setWayAllocationMax(int ways) override
Limit the allocation for the cache ways.
std::vector< CacheBlk > blks
The cache blocks.
Addr regenerateBlkAddr(const CacheBlk *blk) const override
Regenerate the block address from the tag and indexing location.
BaseReplacementPolicy * replacementPolicy
Replacement policy.
virtual ~BaseSetAssoc()
Destructor.
BaseIndexingPolicy * indexingPolicy
Indexing policy.
Definition: base.hh:89
virtual int getWayAllocationMax() const override
Get the way allocation mask limit.
Bitfield< 0 > p
A common base class of Cache tagstore objects.
Definition: base.hh:73
Declaration of a common framework for indexing policies.
virtual Addr regenerateAddr(const Addr tag, const ReplaceableEntry *entry) const =0
Regenerate an entry&#39;s address from its tag and assigned indexing bits.
const unsigned size
The size of the cache.
Definition: base.hh:81

Generated on Fri Feb 28 2020 16:27:02 for gem5 by doxygen 1.8.13