34#include "params/LRURP.hh"
40namespace replacement_policy
52 std::static_pointer_cast<LRUReplData>(
53 replacement_data)->lastTouchTick =
Tick(0);
57LRU::touch(
const std::shared_ptr<ReplacementData>& replacement_data)
const
60 std::static_pointer_cast<LRUReplData>(
61 replacement_data)->lastTouchTick =
curTick();
65LRU::reset(
const std::shared_ptr<ReplacementData>& replacement_data)
const
68 std::static_pointer_cast<LRUReplData>(
69 replacement_data)->lastTouchTick =
curTick();
76 assert(candidates.size() > 0);
80 for (
const auto& candidate : candidates) {
82 if (std::static_pointer_cast<LRUReplData>(
83 candidate->replacementData)->lastTouchTick <
84 std::static_pointer_cast<LRUReplData>(
93std::shared_ptr<ReplacementData>
96 return std::shared_ptr<ReplacementData>(
new LRUReplData());
A replaceable entry is a basic entry in a 2d table-like structure that needs to have replacement func...
std::shared_ptr< replacement_policy::ReplacementData > replacementData
Replacement data associated to this entry.
A common base class of cache replacement policy objects.
void reset(const std::shared_ptr< ReplacementData > &replacement_data) const override
Reset replacement data.
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) override
Invalidate replacement data to set it as the next probable victim.
ReplaceableEntry * getVictim(const ReplacementCandidates &candidates) const override
Find replacement victim using LRU timestamps.
std::shared_ptr< ReplacementData > instantiateEntry() override
Instantiate a replacement data entry.
Copyright (c) 2018-2020 Inria All rights reserved.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Tick curTick()
The universal simulation clock.
uint64_t Tick
Tick count type.
LRU-specific implementation of replacement data.