gem5 v24.1.0.1
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/random.hh"
56#include "base/sat_counter.hh"
58
59namespace gem5
60{
61
62struct BRRIPRPParams;
63
64namespace replacement_policy
65{
66
67class BRRIP : public Base
68{
69 protected:
72 {
81
83 bool valid;
84
88 BRRIPReplData(const int num_bits)
89 : rrpv(num_bits), valid(false)
90 {
91 }
92 };
93
100 const unsigned numRRPVBits;
101
107 const bool hitPriority;
108
113 const unsigned btp;
114
116
117 public:
118 typedef BRRIPRPParams Params;
119 BRRIP(const Params &p);
120 ~BRRIP() = default;
121
128 void invalidate(const std::shared_ptr<ReplacementData>& replacement_data)
129 override;
130
136 void touch(const std::shared_ptr<ReplacementData>& replacement_data) const
137 override;
138
145 void reset(const std::shared_ptr<ReplacementData>& replacement_data) const
146 override;
147
154 ReplaceableEntry* getVictim(const ReplacementCandidates& candidates) const
155 override;
156
162 std::shared_ptr<ReplacementData> instantiateEntry() override;
163};
164
165} // namespace replacement_policy
166} // namespace gem5
167
168#endif // __MEM_CACHE_REPLACEMENT_POLICIES_BRRIP_RP_HH__
std::shared_ptr< Random > RandomPtr
Definition random.hh:65
static RandomPtr genRandom()
Definition random.hh:68
A replaceable entry is a basic entry in a 2d table-like structure that needs to have replacement func...
ReplaceableEntry * getVictim(const ReplacementCandidates &candidates) const override
Find replacement victim using rrpv.
Definition brrip_rp.cc:95
const unsigned numRRPVBits
Number of RRPV bits.
Definition brrip_rp.hh:100
void invalidate(const std::shared_ptr< ReplacementData > &replacement_data) override
Invalidate replacement data to set it as the next probable victim.
Definition brrip_rp.cc:51
void touch(const std::shared_ptr< ReplacementData > &replacement_data) const override
Touch an entry to update its replacement data.
Definition brrip_rp.cc:61
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:107
const unsigned btp
Bimodal throtle parameter.
Definition brrip_rp.hh:113
std::shared_ptr< ReplacementData > instantiateEntry() override
Instantiate a replacement data entry.
Definition brrip_rp.cc:144
A common base class of cache replacement policy objects.
Definition base.hh:55
STL vector class.
Definition stl.hh:37
Bitfield< 0 > p
Copyright (c) 2024 Arm Limited All rights reserved.
Definition binary32.hh:36
BRRIP-specific implementation of replacement data.
Definition brrip_rp.hh:72
bool valid
Whether the entry is valid.
Definition brrip_rp.hh:83
BRRIPReplData(const int num_bits)
Default constructor.
Definition brrip_rp.hh:88
SatCounter8 rrpv
Re-Reference Interval Prediction Value.
Definition brrip_rp.hh:80
The replacement data needed by replacement policies.

Generated on Mon Jan 13 2025 04:28:38 for gem5 by doxygen 1.9.8