gem5 v24.1.0.1
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 "params/BIPRP.hh"
34#include "sim/cur_tick.hh"
35
36namespace gem5
37{
38
39namespace replacement_policy
40{
41
43 : LRU(p), btp(p.btp)
44{
45}
46
47void
48BIP::reset(const std::shared_ptr<ReplacementData>& replacement_data) const
49{
50 std::shared_ptr<LRUReplData> casted_replacement_data =
51 std::static_pointer_cast<LRUReplData>(replacement_data);
52
53 // Entries are inserted as MRU if lower than btp, LRU otherwise
54 if (rng->random<unsigned>(1, 100) <= btp) {
55 casted_replacement_data->lastTouchTick = curTick();
56 } else {
57 // Make their timestamps as old as possible, so that they become LRU
58 casted_replacement_data->lastTouchTick = 1;
59 }
60}
61
62} // namespace replacement_policy
63} // namespace gem5
Copyright (c) 2018-2020 Inria All rights reserved.
const unsigned btp
Bimodal throtle parameter.
Definition bip_rp.hh:63
void reset(const std::shared_ptr< ReplacementData > &replacement_data) const override
Reset replacement data for an entry.
Definition bip_rp.cc:48
BIP(const Params &p)
Definition bip_rp.cc:42
Random::RandomPtr rng
Definition bip_rp.hh:65
Bitfield< 0 > p
Copyright (c) 2024 Arm Limited All rights reserved.
Definition binary32.hh:36
Tick curTick()
The universal simulation clock.
Definition cur_tick.hh:46

Generated on Mon Jan 13 2025 04:28:38 for gem5 by doxygen 1.9.8