52 #ifndef __MEM_CACHE_REPLACEMENT_POLICIES_BRRIP_RP_HH__ 53 #define __MEM_CACHE_REPLACEMENT_POLICIES_BRRIP_RP_HH__ 82 : rrpv(num_bits), valid(false)
128 void invalidate(
const std::shared_ptr<ReplacementData>& replacement_data)
136 void touch(
const std::shared_ptr<ReplacementData>& replacement_data)
const 145 void reset(
const std::shared_ptr<ReplacementData>& replacement_data)
const 165 #endif // __MEM_CACHE_REPLACEMENT_POLICIES_BRRIP_RP_HH__ bool valid
Whether the entry is valid.
std::shared_ptr< ReplacementData > instantiateEntry() override
Instantiate a replacement data entry.
BRRIPReplData(const int num_bits)
Default constructor.
void touch(const std::shared_ptr< ReplacementData > &replacement_data) const override
Touch an entry to update its replacement data.
A common base class of cache replacement policy objects.
Copyright (c) 2018 Inria All rights reserved.
const unsigned numRRPVBits
Number of RRPV bits.
const unsigned btp
Bimodal throtle parameter.
Implements an n bit saturating counter and provides methods to increment, decrement, and read it.
void invalidate(const std::shared_ptr< ReplacementData > &replacement_data) const override
Invalidate replacement data to set it as the next probable victim.
BRRIPRP(const Params *p)
Construct and initiliaze this replacement policy.
BRRIP-specific implementation of replacement data.
void reset(const std::shared_ptr< ReplacementData > &replacement_data) const override
Reset replacement data.
const bool hitPriority
The hit priority (HP) policy replaces entries that do not receive cache hits over any cache entry tha...
SatCounter rrpv
Re-Reference Interval Prediction Value.
BRRIPRPParams Params
Convenience typedef.
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.