36 #ifndef __MEM_CACHE_REPLACEMENT_POLICIES_FIFO_RP_HH__ 37 #define __MEM_CACHE_REPLACEMENT_POLICIES_FIFO_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_FIFO_RP_HH__ void invalidate(const std::shared_ptr< ReplacementData > &replacement_data) const override
Invalidate replacement data to set it as the next probable victim.
A common base class of cache replacement policy objects.
Tick tickInserted
Tick on which the entry was inserted.
FIFOReplData()
Default constructor.
Copyright (c) 2018 Inria All rights reserved.
FIFORP(const Params *p)
Construct and initiliaze this replacement policy.
uint64_t Tick
Tick count type.
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
void touch(const std::shared_ptr< ReplacementData > &replacement_data) const override
Touch an entry to update its replacement data.
ReplaceableEntry * getVictim(const ReplacementCandidates &candidates) const override
Find replacement victim using insertion timestamps.
FIFO-specific implementation of replacement data.
A replaceable entry is a basic entry in a 2d table-like structure that needs to have replacement func...
FIFORPParams Params
Convenience typedef.
void reset(const std::shared_ptr< ReplacementData > &replacement_data) const override
Reset replacement data.
std::shared_ptr< ReplacementData > instantiateEntry() override
Instantiate a replacement data entry.