gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mru_rp.hh
Go to the documentation of this file.
1 
36 #ifndef __MEM_CACHE_REPLACEMENT_POLICIES_MRU_RP_HH__
37 #define __MEM_CACHE_REPLACEMENT_POLICIES_MRU_RP_HH__
38 
39 #include "base/types.hh"
41 
42 struct MRURPParams;
43 
45 {
46  protected:
49  {
52 
56  MRUReplData() : lastTouchTick(0) {}
57  };
58 
59  public:
61  typedef MRURPParams Params;
62 
66  MRURP(const Params *p);
67 
71  ~MRURP() {}
72 
79  void invalidate(const std::shared_ptr<ReplacementData>& replacement_data)
80  const override;
81 
88  void touch(const std::shared_ptr<ReplacementData>& replacement_data) const
89  override;
90 
97  void reset(const std::shared_ptr<ReplacementData>& replacement_data) const
98  override;
99 
106  ReplaceableEntry* getVictim(const ReplacementCandidates& candidates) const
107  override;
108 
114  std::shared_ptr<ReplacementData> instantiateEntry() override;
115 };
116 
117 #endif // __MEM_CACHE_REPLACEMENT_POLICIES_MRU_RP_HH__
void touch(const std::shared_ptr< ReplacementData > &replacement_data) const override
Touch an entry to update its replacement data.
Definition: mru_rp.cc:51
void invalidate(const std::shared_ptr< ReplacementData > &replacement_data) const override
Invalidate replacement data to set it as the next probable victim.
Definition: mru_rp.cc:42
MRURP(const Params *p)
Construct and initiliaze this replacement policy.
Definition: mru_rp.cc:36
A common base class of cache replacement policy objects.
Definition: base.hh:46
std::shared_ptr< ReplacementData > instantiateEntry() override
Instantiate a replacement data entry.
Definition: mru_rp.cc:93
STL vector class.
Definition: stl.hh:37
MRUReplData()
Default constructor.
Definition: mru_rp.hh:56
Copyright (c) 2018 Inria All rights reserved.
~MRURP()
Destructor.
Definition: mru_rp.hh:71
uint64_t Tick
Tick count type.
Definition: types.hh:61
Tick lastTouchTick
Tick on which the entry was last touched.
Definition: mru_rp.hh:51
MRU-specific implementation of replacement data.
Definition: mru_rp.hh:48
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
void reset(const std::shared_ptr< ReplacementData > &replacement_data) const override
Reset replacement data.
Definition: mru_rp.cc:59
A replaceable entry is a basic entry in a 2d table-like structure that needs to have replacement func...
Definition: mru_rp.hh:44
MRURPParams Params
Convenience typedef.
Definition: mru_rp.hh:61
ReplaceableEntry * getVictim(const ReplacementCandidates &candidates) const override
Find replacement victim using access timestamps.
Definition: mru_rp.cc:67
Bitfield< 0 > p

Generated on Thu May 28 2020 16:21:34 for gem5 by doxygen 1.8.13