gem5  v20.0.0.3
CacheMemory.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 1999-2012 Mark D. Hill and David A. Wood
3  * Copyright (c) 2013 Advanced Micro Devices, Inc.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are
8  * met: redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer;
10  * redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution;
13  * neither the name of the copyright holders nor the names of its
14  * contributors may be used to endorse or promote products derived from
15  * this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29 
30 #ifndef __MEM_RUBY_STRUCTURES_CACHEMEMORY_HH__
31 #define __MEM_RUBY_STRUCTURES_CACHEMEMORY_HH__
32 
33 #include <string>
34 #include <unordered_map>
35 #include <vector>
36 
37 #include "base/statistics.hh"
41 #include "mem/ruby/protocol/CacheRequestType.hh"
42 #include "mem/ruby/protocol/CacheResourceType.hh"
43 #include "mem/ruby/protocol/RubyRequest.hh"
48 #include "params/RubyCache.hh"
49 #include "sim/sim_object.hh"
50 
51 class CacheMemory : public SimObject
52 {
53  public:
54  typedef RubyCacheParams Params;
55  typedef std::shared_ptr<ReplacementData> ReplData;
56  CacheMemory(const Params *p);
57  ~CacheMemory();
58 
59  void init();
60 
61  // Public Methods
62  // perform a cache access and see if we hit or not. Return true on a hit.
63  bool tryCacheAccess(Addr address, RubyRequestType type,
64  DataBlock*& data_ptr);
65 
66  // similar to above, but doesn't require full access check
67  bool testCacheAccess(Addr address, RubyRequestType type,
68  DataBlock*& data_ptr);
69 
70  // tests to see if an address is present in the cache
71  bool isTagPresent(Addr address) const;
72 
73  // Returns true if there is:
74  // a) a tag match on this address or there is
75  // b) an unused line in the same cache "way"
76  bool cacheAvail(Addr address) const;
77 
78  // Returns a NULL entry that acts as a placeholder for invalid lines
80  getNullEntry() const
81  {
82  return nullptr;
83  }
84 
85  // find an unused entry and sets the tag appropriate for the address
86  AbstractCacheEntry* allocate(Addr address, AbstractCacheEntry* new_entry);
87  void allocateVoid(Addr address, AbstractCacheEntry* new_entry)
88  {
89  allocate(address, new_entry);
90  }
91 
92  // Explicitly free up this address
93  void deallocate(Addr address);
94 
95  // Returns with the physical address of the conflicting cache line
96  Addr cacheProbe(Addr address) const;
97 
98  // looks an address up in the cache
99  AbstractCacheEntry* lookup(Addr address);
100  const AbstractCacheEntry* lookup(Addr address) const;
101 
102  Cycles getTagLatency() const { return tagArray.getLatency(); }
104 
105  bool isBlockInvalid(int64_t cache_set, int64_t loc);
106  bool isBlockNotBusy(int64_t cache_set, int64_t loc);
107 
108  // Hook for checkpointing the contents of the cache
109  void recordCacheContents(int cntrl, CacheRecorder* tr) const;
110 
111  // Set this address to most recently used
112  void setMRU(Addr address);
113  void setMRU(Addr addr, int occupancy);
114  int getReplacementWeight(int64_t set, int64_t loc);
115  void setMRU(const AbstractCacheEntry *e);
116 
117  // Functions for locking and unlocking cache lines corresponding to the
118  // provided address. These are required for supporting atomic memory
119  // accesses. These are to be used when only the address of the cache entry
120  // is available. In case the entry itself is available. use the functions
121  // provided by the AbstractCacheEntry class.
122  void setLocked (Addr addr, int context);
123  void clearLocked (Addr addr);
124  bool isLocked (Addr addr, int context);
125 
126  // Print cache contents
127  void print(std::ostream& out) const;
128  void printData(std::ostream& out) const;
129 
130  void regStats();
131  bool checkResourceAvailable(CacheResourceType res, Addr addr);
132  void recordRequestType(CacheRequestType requestType, Addr addr);
133 
134  public:
138 
142 
144 
149 
152 
153  int getCacheSize() const { return m_cache_size; }
154  int getCacheAssoc() const { return m_cache_assoc; }
155  int getNumBlocks() const { return m_cache_num_sets * m_cache_assoc; }
156  Addr getAddressAtIdx(int idx) const;
157 
158  private:
159  // convert a Address to its location in the cache
160  int64_t addressToCacheSet(Addr address) const;
161 
162  // Given a cache tag: returns the index of the tag in a set.
163  // returns -1 if the tag is not found.
164  int findTagInSet(int64_t line, Addr tag) const;
165  int findTagInSetIgnorePermissions(int64_t cacheSet, Addr tag) const;
166 
167  // Private copy constructor and assignment operator
168  CacheMemory(const CacheMemory& obj);
169  CacheMemory& operator=(const CacheMemory& obj);
170 
171  private:
172  // Data Members (m_prefix)
174 
175  // The first index is the # of cache lines.
176  // The second index is the the amount associativity.
177  std::unordered_map<Addr, int> m_tag_index;
179 
185 
188 
196 
206 
212 };
213 
214 std::ostream& operator<<(std::ostream& out, const CacheMemory& obj);
215 
216 #endif // __MEM_RUBY_STRUCTURES_CACHEMEMORY_HH__
Stats::Scalar m_demand_misses
Definition: CacheMemory.hh:136
Addr cacheProbe(Addr address) const
Definition: CacheMemory.cc:322
BankedArray tagArray
Definition: CacheMemory.hh:187
Stats::Vector m_accessModeType
Definition: CacheMemory.hh:143
void recordCacheContents(int cntrl, CacheRecorder *tr) const
Definition: CacheMemory.cc:420
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
BankedArray dataArray
Definition: CacheMemory.hh:186
void recordRequestType(CacheRequestType requestType, Addr addr)
Definition: CacheMemory.cc:611
Stats::Formula m_demand_accesses
Definition: CacheMemory.hh:137
int m_cache_num_set_bits
Definition: CacheMemory.hh:191
void print(std::ostream &out) const
Definition: CacheMemory.cc:459
bool m_resource_stalls
Definition: CacheMemory.hh:194
bool isBlockNotBusy(int64_t cache_set, int64_t loc)
Definition: CacheMemory.cc:679
int findTagInSetIgnorePermissions(int64_t cacheSet, Addr tag) const
Definition: CacheMemory.cc:138
bool testCacheAccess(Addr address, RubyRequestType type, DataBlock *&data_ptr)
Definition: CacheMemory.cc:201
ip6_addr_t addr
Definition: inet.hh:330
RubyCacheParams Params
Definition: CacheMemory.hh:54
Stats::Scalar m_hw_prefetches
Definition: CacheMemory.hh:140
std::shared_ptr< ReplacementData > ReplData
Definition: CacheMemory.hh:55
void clearLocked(Addr addr)
Definition: CacheMemory.cc:495
A vector of scalar stats.
Definition: statistics.hh:2547
AbstractCacheEntry * allocate(Addr address, AbstractCacheEntry *new_entry)
Definition: CacheMemory.cc:267
bool isLocked(Addr addr, int context)
Definition: CacheMemory.cc:506
void regStats()
Callback to set stat parameters.
Definition: CacheMemory.cc:518
bool m_use_occupancy
Set to true when using WeightedLRU replacement policy, otherwise, set to false.
Definition: CacheMemory.hh:211
Stats::Scalar numTagArrayStalls
Definition: CacheMemory.hh:150
Declaration of Statistics objects.
A common base class of cache replacement policy objects.
Definition: base.hh:46
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
void printData(std::ostream &out) const
Definition: CacheMemory.cc:478
STL vector class.
Definition: stl.hh:37
Cycles getLatency() const
Definition: BankedArray.hh:75
void deallocate(Addr address)
Definition: CacheMemory.cc:305
void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: CacheMemory.cc:77
bool cacheAvail(Addr address) const
Definition: CacheMemory.cc:245
BaseReplacementPolicy * m_replacementPolicy_ptr
We use BaseReplacementPolicy from Classic system here, hence we can use different replacement policie...
Definition: CacheMemory.hh:184
Cycles getTagLatency() const
Definition: CacheMemory.hh:102
AbstractCacheEntry * getNullEntry() const
Definition: CacheMemory.hh:80
uint8_t type
Definition: inet.hh:328
std::unordered_map< Addr, int > m_tag_index
Definition: CacheMemory.hh:177
int getCacheAssoc() const
Definition: CacheMemory.hh:154
void setMRU(Addr address)
Definition: CacheMemory.cc:364
std::vector< std::vector< ReplData > > replacement_data
We store all the ReplacementData in a 2-dimensional array.
Definition: CacheMemory.hh:205
std::ostream & operator<<(std::ostream &out, const CacheMemory &obj)
CacheMemory(const Params *p)
Definition: CacheMemory.cc:58
bool isBlockInvalid(int64_t cache_set, int64_t loc)
Definition: CacheMemory.cc:673
bool tryCacheAccess(Addr address, RubyRequestType type, DataBlock *&data_ptr)
Definition: CacheMemory.cc:173
Stats::Scalar m_demand_hits
Definition: CacheMemory.hh:135
int findTagInSet(int64_t line, Addr tag) const
Definition: CacheMemory.cc:123
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
Cycles getDataLatency() const
Definition: CacheMemory.hh:103
Stats::Scalar numDataArrayWrites
Definition: CacheMemory.hh:146
Addr getAddressAtIdx(int idx) const
Definition: CacheMemory.cc:153
bool m_is_instruction_only_cache
Definition: CacheMemory.hh:173
A formula for statistics that is calculated when printed.
Definition: statistics.hh:3009
Bitfield< 9 > e
CacheMemory & operator=(const CacheMemory &obj)
bool isTagPresent(Addr address) const
Definition: CacheMemory.cc:226
int m_start_index_bit
Definition: CacheMemory.hh:193
Stats::Scalar m_sw_prefetches
Definition: CacheMemory.hh:139
int getReplacementWeight(int64_t set, int64_t loc)
Definition: CacheMemory.cc:406
void setLocked(Addr addr, int context)
Definition: CacheMemory.cc:484
Stats::Scalar numTagArrayWrites
Definition: CacheMemory.hh:148
Stats::Scalar numDataArrayStalls
Definition: CacheMemory.hh:151
Stats::Scalar numDataArrayReads
Definition: CacheMemory.hh:145
Stats::Scalar numTagArrayReads
Definition: CacheMemory.hh:147
Stats::Formula m_prefetches
Definition: CacheMemory.hh:141
Bitfield< 0 > p
bool checkResourceAvailable(CacheResourceType res, Addr addr)
Definition: CacheMemory.cc:643
int getNumBlocks() const
Definition: CacheMemory.hh:155
AbstractCacheEntry * lookup(Addr address)
Definition: CacheMemory.cc:342
Abstract superclass for simulation objects.
Definition: sim_object.hh:93
int64_t addressToCacheSet(Addr address) const
Definition: CacheMemory.cc:113
std::vector< std::vector< AbstractCacheEntry * > > m_cache
Definition: CacheMemory.hh:178
int m_cache_num_sets
Definition: CacheMemory.hh:190
int getCacheSize() const
Definition: CacheMemory.hh:153
void allocateVoid(Addr address, AbstractCacheEntry *new_entry)
Definition: CacheMemory.hh:87

Generated on Fri Jul 3 2020 15:53:04 for gem5 by doxygen 1.8.13