34#include "params/MRURP.hh"
40namespace replacement_policy
52 std::static_pointer_cast<MRUReplData>(
53 replacement_data)->lastTouchTick =
Tick(0);
57MRU::touch(
const std::shared_ptr<ReplacementData>& replacement_data)
const
60 std::static_pointer_cast<MRUReplData>(
61 replacement_data)->lastTouchTick =
curTick();
65MRU::reset(
const std::shared_ptr<ReplacementData>& replacement_data)
const
68 std::static_pointer_cast<MRUReplData>(
69 replacement_data)->lastTouchTick =
curTick();
76 assert(candidates.size() > 0);
80 for (
const auto& candidate : candidates) {
81 std::shared_ptr<MRUReplData> candidate_replacement_data =
82 std::static_pointer_cast<MRUReplData>(candidate->replacementData);
85 if (candidate_replacement_data->lastTouchTick == 0) {
88 }
else if (candidate_replacement_data->lastTouchTick >
89 std::static_pointer_cast<MRUReplData>(
98std::shared_ptr<ReplacementData>
101 return std::shared_ptr<ReplacementData>(
new MRUReplData());
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.
ReplaceableEntry * getVictim(const ReplacementCandidates &candidates) const override
Find replacement victim using access timestamps.
void invalidate(const std::shared_ptr< ReplacementData > &replacement_data) override
Invalidate replacement data to set it as the next probable victim.
std::shared_ptr< ReplacementData > instantiateEntry() override
Instantiate a replacement data entry.
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.
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.
MRU-specific implementation of replacement data.