gem5
v24.1.0.1
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
q
r
s
t
v
x
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Symbols
:
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
s
t
v
w
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
Typedefs
a
b
c
d
g
h
i
l
m
r
s
t
u
w
Enumerations
b
h
i
o
p
Enumerator
h
i
o
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
mem
cache
replacement_policies
brrip_rp.hh
Go to the documentation of this file.
1
52
#ifndef __MEM_CACHE_REPLACEMENT_POLICIES_BRRIP_RP_HH__
53
#define __MEM_CACHE_REPLACEMENT_POLICIES_BRRIP_RP_HH__
54
55
#include "
base/random.hh
"
56
#include "
base/sat_counter.hh
"
57
#include "
mem/cache/replacement_policies/base.hh
"
58
59
namespace
gem5
60
{
61
62
struct
BRRIPRPParams;
63
64
namespace
replacement_policy
65
{
66
67
class
BRRIP
:
public
Base
68
{
69
protected
:
71
struct
BRRIPReplData
:
ReplacementData
72
{
80
SatCounter8
rrpv
;
81
83
bool
valid
;
84
88
BRRIPReplData
(
const
int
num_bits)
89
:
rrpv
(num_bits),
valid
(false)
90
{
91
}
88
BRRIPReplData
(
const
int
num_bits) {
…
}
92
};
71
struct
BRRIPReplData
:
ReplacementData
{
…
};
93
100
const
unsigned
numRRPVBits
;
101
107
const
bool
hitPriority
;
108
113
const
unsigned
btp
;
114
115
mutable
Random::RandomPtr
rng
=
Random::genRandom
();
116
117
public
:
118
typedef
BRRIPRPParams
Params
;
119
BRRIP
(
const
Params
&
p
);
120
~BRRIP
() =
default
;
121
128
void
invalidate
(
const
std::shared_ptr<ReplacementData>& replacement_data)
129
override
;
130
136
void
touch
(
const
std::shared_ptr<ReplacementData>& replacement_data)
const
137
override
;
138
145
void
reset
(
const
std::shared_ptr<ReplacementData>& replacement_data)
const
146
override
;
147
154
ReplaceableEntry
*
getVictim
(
const
ReplacementCandidates
& candidates)
const
155
override
;
156
162
std::shared_ptr<ReplacementData>
instantiateEntry
()
override
;
163
};
67
class
BRRIP
:
public
Base
{
…
};
164
165
}
// namespace replacement_policy
166
}
// namespace gem5
167
168
#endif
// __MEM_CACHE_REPLACEMENT_POLICIES_BRRIP_RP_HH__
gem5::GenericSatCounter< uint8_t >
gem5::Random::RandomPtr
std::shared_ptr< Random > RandomPtr
Definition
random.hh:65
gem5::Random::genRandom
static RandomPtr genRandom()
Definition
random.hh:68
gem5::ReplaceableEntry
A replaceable entry is a basic entry in a 2d table-like structure that needs to have replacement func...
Definition
replaceable_entry.hh:63
gem5::replacement_policy::BRRIP
Definition
brrip_rp.hh:68
gem5::replacement_policy::BRRIP::getVictim
ReplaceableEntry * getVictim(const ReplacementCandidates &candidates) const override
Find replacement victim using rrpv.
Definition
brrip_rp.cc:95
gem5::replacement_policy::BRRIP::Params
BRRIPRPParams Params
Definition
brrip_rp.hh:118
gem5::replacement_policy::BRRIP::~BRRIP
~BRRIP()=default
gem5::replacement_policy::BRRIP::numRRPVBits
const unsigned numRRPVBits
Number of RRPV bits.
Definition
brrip_rp.hh:100
gem5::replacement_policy::BRRIP::invalidate
void invalidate(const std::shared_ptr< ReplacementData > &replacement_data) override
Invalidate replacement data to set it as the next probable victim.
Definition
brrip_rp.cc:51
gem5::replacement_policy::BRRIP::touch
void touch(const std::shared_ptr< ReplacementData > &replacement_data) const override
Touch an entry to update its replacement data.
Definition
brrip_rp.cc:61
gem5::replacement_policy::BRRIP::rng
Random::RandomPtr rng
Definition
brrip_rp.hh:115
gem5::replacement_policy::BRRIP::hitPriority
const bool hitPriority
The hit priority (HP) policy replaces entries that do not receive cache hits over any cache entry tha...
Definition
brrip_rp.hh:107
gem5::replacement_policy::BRRIP::btp
const unsigned btp
Bimodal throtle parameter.
Definition
brrip_rp.hh:113
gem5::replacement_policy::BRRIP::instantiateEntry
std::shared_ptr< ReplacementData > instantiateEntry() override
Instantiate a replacement data entry.
Definition
brrip_rp.cc:144
gem5::replacement_policy::Base
A common base class of cache replacement policy objects.
Definition
base.hh:55
std::vector
STL vector class.
Definition
stl.hh:37
base.hh
gem5::MipsISA::p
Bitfield< 0 > p
Definition
pra_constants.hh:326
gem5::statistics::reset
void reset()
Definition
statistics.cc:309
gem5
Copyright (c) 2024 Arm Limited All rights reserved.
Definition
binary32.hh:36
random.hh
sat_counter.hh
gem5::replacement_policy::BRRIP::BRRIPReplData
BRRIP-specific implementation of replacement data.
Definition
brrip_rp.hh:72
gem5::replacement_policy::BRRIP::BRRIPReplData::valid
bool valid
Whether the entry is valid.
Definition
brrip_rp.hh:83
gem5::replacement_policy::BRRIP::BRRIPReplData::BRRIPReplData
BRRIPReplData(const int num_bits)
Default constructor.
Definition
brrip_rp.hh:88
gem5::replacement_policy::BRRIP::BRRIPReplData::rrpv
SatCounter8 rrpv
Re-Reference Interval Prediction Value.
Definition
brrip_rp.hh:80
gem5::replacement_policy::ReplacementData
The replacement data needed by replacement policies.
Definition
replaceable_entry.hh:48
Generated on Mon Jan 13 2025 04:28:38 for gem5 by
doxygen
1.9.8