gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
brrip_rp.hh
Go to the documentation of this file.
1 
52 #ifndef __MEM_CACHE_REPLACEMENT_POLICIES_BRRIP_RP_HH__
53 #define __MEM_CACHE_REPLACEMENT_POLICIES_BRRIP_RP_HH__
54 
55 #include "base/sat_counter.hh"
57 
58 struct BRRIPRPParams;
59 
60 namespace ReplacementPolicy {
61 
62 class BRRIP : public Base
63 {
64  protected:
67  {
76 
78  bool valid;
79 
83  BRRIPReplData(const int num_bits)
84  : rrpv(num_bits), valid(false)
85  {
86  }
87  };
88 
95  const unsigned numRRPVBits;
96 
102  const bool hitPriority;
103 
108  const unsigned btp;
109 
110  public:
111  typedef BRRIPRPParams Params;
112  BRRIP(const Params &p);
113  ~BRRIP() = default;
114 
121  void invalidate(const std::shared_ptr<ReplacementData>& replacement_data)
122  const override;
123 
129  void touch(const std::shared_ptr<ReplacementData>& replacement_data) const
130  override;
131 
138  void reset(const std::shared_ptr<ReplacementData>& replacement_data) const
139  override;
140 
147  ReplaceableEntry* getVictim(const ReplacementCandidates& candidates) const
148  override;
149 
155  std::shared_ptr<ReplacementData> instantiateEntry() override;
156 };
157 
158 } // namespace ReplacementPolicy
159 
160 #endif // __MEM_CACHE_REPLACEMENT_POLICIES_BRRIP_RP_HH__
ReplaceableEntry
A replaceable entry is a basic entry in a 2d table-like structure that needs to have replacement func...
Definition: replaceable_entry.hh:57
ReplacementPolicy::BRRIP::btp
const unsigned btp
Bimodal throtle parameter.
Definition: brrip_rp.hh:108
ReplacementPolicy::BRRIP::invalidate
void invalidate(const std::shared_ptr< ReplacementData > &replacement_data) const override
Invalidate replacement data to set it as the next probable victim.
Definition: brrip_rp.cc:48
ReplacementPolicy::BRRIP::Params
BRRIPRPParams Params
Definition: brrip_rp.hh:111
std::vector
STL vector class.
Definition: stl.hh:37
ReplacementPolicy::BRRIP::instantiateEntry
std::shared_ptr< ReplacementData > instantiateEntry() override
Instantiate a replacement data entry.
Definition: brrip_rp.cc:142
sat_counter.hh
ReplacementPolicy::BRRIP::BRRIPReplData::valid
bool valid
Whether the entry is valid.
Definition: brrip_rp.hh:78
ReplacementPolicy
Copyright (c) 2018-2020 Inria All rights reserved.
Definition: stride.hh:64
ReplacementPolicy::BRRIP::getVictim
ReplaceableEntry * getVictim(const ReplacementCandidates &candidates) const override
Find replacement victim using rrpv.
Definition: brrip_rp.cc:93
ReplacementPolicy::ReplacementData
The replacement data needed by replacement policies.
Definition: replaceable_entry.hh:43
ReplacementPolicy::Base::Params
BaseReplacementPolicyParams Params
Definition: base.hh:51
ReplacementPolicy::BRRIP::numRRPVBits
const unsigned numRRPVBits
Number of RRPV bits.
Definition: brrip_rp.hh:95
ReplacementPolicy::BRRIP::BRRIPReplData
BRRIP-specific implementation of replacement data.
Definition: brrip_rp.hh:66
ReplacementPolicy::BRRIP::touch
void touch(const std::shared_ptr< ReplacementData > &replacement_data) const override
Touch an entry to update its replacement data.
Definition: brrip_rp.cc:59
ReplacementPolicy::BRRIP
Definition: brrip_rp.hh:62
ReplacementPolicy::Base
A common base class of cache replacement policy objects.
Definition: base.hh:48
base.hh
GenericSatCounter< uint8_t >
ReplacementPolicy::BRRIP::BRRIP
BRRIP(const Params &p)
Definition: brrip_rp.cc:40
ReplacementPolicy::BRRIP::~BRRIP
~BRRIP()=default
ReplacementPolicy::BRRIP::hitPriority
const bool hitPriority
The hit priority (HP) policy replaces entries that do not receive cache hits over any cache entry tha...
Definition: brrip_rp.hh:102
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
ReplacementPolicy::BRRIP::BRRIPReplData::rrpv
SatCounter8 rrpv
Re-Reference Interval Prediction Value.
Definition: brrip_rp.hh:75
ReplacementPolicy::BRRIP::reset
void reset(const std::shared_ptr< ReplacementData > &replacement_data) const override
Reset replacement data.
Definition: brrip_rp.cc:75
ReplacementPolicy::BRRIP::BRRIPReplData::BRRIPReplData
BRRIPReplData(const int num_bits)
Default constructor.
Definition: brrip_rp.hh:83

Generated on Tue Jun 22 2021 15:28:29 for gem5 by doxygen 1.8.17