gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
random_rp.cc
Go to the documentation of this file.
1 
30 
31 #include <cassert>
32 #include <memory>
33 
34 #include "base/random.hh"
35 #include "params/RandomRP.hh"
36 
37 namespace ReplacementPolicy {
38 
40  : Base(p)
41 {
42 }
43 
44 void
45 Random::invalidate(const std::shared_ptr<ReplacementData>& replacement_data)
46 const
47 {
48  // Unprioritize replacement data victimization
49  std::static_pointer_cast<RandomReplData>(
50  replacement_data)->valid = false;
51 }
52 
53 void
54 Random::touch(const std::shared_ptr<ReplacementData>& replacement_data) const
55 {
56 }
57 
58 void
59 Random::reset(const std::shared_ptr<ReplacementData>& replacement_data) const
60 {
61  // Unprioritize replacement data victimization
62  std::static_pointer_cast<RandomReplData>(
63  replacement_data)->valid = true;
64 }
65 
67 Random::getVictim(const ReplacementCandidates& candidates) const
68 {
69  // There must be at least one replacement candidate
70  assert(candidates.size() > 0);
71 
72  // Choose one candidate at random
73  ReplaceableEntry* victim = candidates[random_mt.random<unsigned>(0,
74  candidates.size() - 1)];
75 
76  // Visit all candidates to search for an invalid entry. If one is found,
77  // its eviction is prioritized
78  for (const auto& candidate : candidates) {
79  if (!std::static_pointer_cast<RandomReplData>(
80  candidate->replacementData)->valid) {
81  victim = candidate;
82  break;
83  }
84  }
85 
86  return victim;
87 }
88 
89 std::shared_ptr<ReplacementData>
91 {
92  return std::shared_ptr<ReplacementData>(new RandomReplData());
93 }
94 
95 } // namespace ReplacementPolicy
ReplaceableEntry
A replaceable entry is a basic entry in a 2d table-like structure that needs to have replacement func...
Definition: replaceable_entry.hh:57
ReplacementPolicy::Random::Random
Random(const Params &p)
Definition: random_rp.cc:39
random.hh
ReplacementPolicy::Random::invalidate
void invalidate(const std::shared_ptr< ReplacementData > &replacement_data) const override
Invalidate replacement data to set it as the next probable victim.
Definition: random_rp.cc:45
std::vector
STL vector class.
Definition: stl.hh:37
ReplacementPolicy::Random::reset
void reset(const std::shared_ptr< ReplacementData > &replacement_data) const override
Reset replacement data.
Definition: random_rp.cc:59
Random::random
std::enable_if_t< std::is_integral< T >::value, T > random()
Use the SFINAE idiom to choose an implementation based on whether the type is integral or floating po...
Definition: random.hh:86
random_mt
Random random_mt
Definition: random.cc:96
ReplacementPolicy
Copyright (c) 2018-2020 Inria All rights reserved.
Definition: stride.hh:64
ReplacementPolicy::Base::Params
BaseReplacementPolicyParams Params
Definition: base.hh:51
random_rp.hh
Copyright (c) 2018-2020 Inria All rights reserved.
ReplacementPolicy::Random::instantiateEntry
std::shared_ptr< ReplacementData > instantiateEntry() override
Instantiate a replacement data entry.
Definition: random_rp.cc:90
ReplacementPolicy::Random::RandomReplData
Random-specific implementation of replacement data.
Definition: random_rp.hh:48
ReplacementPolicy::Base
A common base class of cache replacement policy objects.
Definition: base.hh:48
ReplacementPolicy::Random::getVictim
ReplaceableEntry * getVictim(const ReplacementCandidates &candidates) const override
Find replacement victim at random.
Definition: random_rp.cc:67
ReplacementPolicy::Random::touch
void touch(const std::shared_ptr< ReplacementData > &replacement_data) const override
Touch an entry to update its replacement data.
Definition: random_rp.cc:54
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323

Generated on Tue Mar 23 2021 19:41:27 for gem5 by doxygen 1.8.17