gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
lru_rp.cc
Go to the documentation of this file.
1 
30 
31 #include <cassert>
32 #include <memory>
33 
34 #include "params/LRURP.hh"
35 
38 {
39 }
40 
41 void
42 LRURP::invalidate(const std::shared_ptr<ReplacementData>& replacement_data)
43 const
44 {
45  // Reset last touch timestamp
46  std::static_pointer_cast<LRUReplData>(
47  replacement_data)->lastTouchTick = Tick(0);
48 }
49 
50 void
51 LRURP::touch(const std::shared_ptr<ReplacementData>& replacement_data) const
52 {
53  // Update last touch timestamp
54  std::static_pointer_cast<LRUReplData>(
55  replacement_data)->lastTouchTick = curTick();
56 }
57 
58 void
59 LRURP::reset(const std::shared_ptr<ReplacementData>& replacement_data) const
60 {
61  // Set last touch timestamp
62  std::static_pointer_cast<LRUReplData>(
63  replacement_data)->lastTouchTick = curTick();
64 }
65 
67 LRURP::getVictim(const ReplacementCandidates& candidates) const
68 {
69  // There must be at least one replacement candidate
70  assert(candidates.size() > 0);
71 
72  // Visit all candidates to find victim
73  ReplaceableEntry* victim = candidates[0];
74  for (const auto& candidate : candidates) {
75  // Update victim entry if necessary
76  if (std::static_pointer_cast<LRUReplData>(
77  candidate->replacementData)->lastTouchTick <
78  std::static_pointer_cast<LRUReplData>(
79  victim->replacementData)->lastTouchTick) {
80  victim = candidate;
81  }
82  }
83 
84  return victim;
85 }
86 
87 std::shared_ptr<ReplacementData>
89 {
90  return std::shared_ptr<ReplacementData>(new LRUReplData());
91 }
92 
93 LRURP*
94 LRURPParams::create()
95 {
96  return new LRURP(this);
97 }
BaseReplacementPolicyParams Params
Convenience typedef.
Definition: base.hh:52
void invalidate(const std::shared_ptr< ReplacementData > &replacement_data) const override
Invalidate replacement data to set it as the next probable victim.
Definition: lru_rp.cc:42
LRURP(const Params *p)
Construct and initiliaze this replacement policy.
Definition: lru_rp.cc:36
A common base class of cache replacement policy objects.
Definition: base.hh:46
STL vector class.
Definition: stl.hh:37
LRU-specific implementation of replacement data.
Definition: lru_rp.hh:46
Tick curTick()
The current simulated tick.
Definition: core.hh:44
uint64_t Tick
Tick count type.
Definition: types.hh:61
Definition: lru_rp.hh:42
void reset(const std::shared_ptr< ReplacementData > &replacement_data) const override
Reset replacement data.
Definition: lru_rp.cc:59
ReplaceableEntry * getVictim(const ReplacementCandidates &candidates) const override
Find replacement victim using LRU timestamps.
Definition: lru_rp.cc:67
std::shared_ptr< ReplacementData > instantiateEntry() override
Instantiate a replacement data entry.
Definition: lru_rp.cc:88
A replaceable entry is a basic entry in a 2d table-like structure that needs to have replacement func...
Copyright (c) 2018 Inria All rights reserved.
void touch(const std::shared_ptr< ReplacementData > &replacement_data) const override
Touch an entry to update its replacement data.
Definition: lru_rp.cc:51
Bitfield< 0 > p

Generated on Thu May 28 2020 16:21:34 for gem5 by doxygen 1.8.13