gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
bip_rp.cc
Go to the documentation of this file.
1 
30 
31 #include <memory>
32 
33 #include "base/random.hh"
34 #include "params/BIPRP.hh"
35 
37  : LRURP(p), btp(p->btp)
38 {
39 }
40 
41 void
42 BIPRP::reset(const std::shared_ptr<ReplacementData>& replacement_data) const
43 {
44  std::shared_ptr<LRUReplData> casted_replacement_data =
45  std::static_pointer_cast<LRUReplData>(replacement_data);
46 
47  // Entries are inserted as MRU if lower than btp, LRU otherwise
48  if (random_mt.random<unsigned>(1, 100) <= btp) {
49  casted_replacement_data->lastTouchTick = curTick();
50  } else {
51  // Make their timestamps as old as possible, so that they become LRU
52  casted_replacement_data->lastTouchTick = 1;
53  }
54 }
55 
56 BIPRP*
57 BIPRPParams::create()
58 {
59  return new BIPRP(this);
60 }
BaseReplacementPolicyParams Params
Convenience typedef.
Definition: base.hh:52
std::enable_if< std::is_integral< T >::value, T >::type random()
Use the SFINAE idiom to choose an implementation based on whether the type is integral or floating po...
Definition: random.hh:79
LRU-specific implementation of replacement data.
Definition: lru_rp.hh:46
Tick curTick()
The current simulated tick.
Definition: core.hh:44
Definition: lru_rp.hh:42
Definition: bip_rp.hh:49
const unsigned btp
Bimodal throtle parameter.
Definition: bip_rp.hh:56
Random random_mt
Definition: random.cc:96
void reset(const std::shared_ptr< ReplacementData > &replacement_data) const override
Reset replacement data for an entry.
Definition: bip_rp.cc:42
BIPRP(const Params *p)
Construct and initiliaze this replacement policy.
Definition: bip_rp.cc:36
Tick lastTouchTick
Tick on which the entry was last touched.
Definition: lru_rp.hh:49
Bitfield< 0 > p
Copyright (c) 2018 Inria All rights reserved.

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