36 #ifndef __MEM_CACHE_REPLACEMENT_POLICIES_MRU_RP_HH__ 37 #define __MEM_CACHE_REPLACEMENT_POLICIES_MRU_RP_HH__ 79 void invalidate(
const std::shared_ptr<ReplacementData>& replacement_data)
88 void touch(
const std::shared_ptr<ReplacementData>& replacement_data)
const 97 void reset(
const std::shared_ptr<ReplacementData>& replacement_data)
const 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.
void invalidate(const std::shared_ptr< ReplacementData > &replacement_data) const override
Invalidate replacement data to set it as the next probable victim.
MRURP(const Params *p)
Construct and initiliaze this replacement policy.
A common base class of cache replacement policy objects.
std::shared_ptr< ReplacementData > instantiateEntry() override
Instantiate a replacement data entry.
MRUReplData()
Default constructor.
Copyright (c) 2018 Inria All rights reserved.
uint64_t Tick
Tick count type.
Tick lastTouchTick
Tick on which the entry was last touched.
MRU-specific implementation of replacement data.
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.
A replaceable entry is a basic entry in a 2d table-like structure that needs to have replacement func...
MRURPParams Params
Convenience typedef.
ReplaceableEntry * getVictim(const ReplacementCandidates &candidates) const override
Find replacement victim using access timestamps.