34 #include "params/MRURP.hh"
41 namespace replacement_policy
53 std::static_pointer_cast<MRUReplData>(
54 replacement_data)->lastTouchTick =
Tick(0);
58 MRU::touch(
const std::shared_ptr<ReplacementData>& replacement_data)
const
61 std::static_pointer_cast<MRUReplData>(
62 replacement_data)->lastTouchTick =
curTick();
66 MRU::reset(
const std::shared_ptr<ReplacementData>& replacement_data)
const
69 std::static_pointer_cast<MRUReplData>(
70 replacement_data)->lastTouchTick =
curTick();
77 assert(candidates.size() > 0);
81 for (
const auto& candidate : candidates) {
82 std::shared_ptr<MRUReplData> candidate_replacement_data =
83 std::static_pointer_cast<MRUReplData>(candidate->replacementData);
86 if (candidate_replacement_data->lastTouchTick == 0) {
89 }
else if (candidate_replacement_data->lastTouchTick >
90 std::static_pointer_cast<MRUReplData>(
99 std::shared_ptr<ReplacementData>
102 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.
BaseReplacementPolicyParams Params
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.
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
MRU-specific implementation of replacement data.