gem5
v21.1.0.0
Main Page
Related Pages
Modules
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
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
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 Functions
:
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
e
f
g
h
i
l
m
n
o
p
s
t
v
Variables
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
v
w
Typedefs
a
b
c
d
h
i
m
p
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
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/sat_counter.hh
"
56
#include "
mem/cache/replacement_policies/base.hh
"
57
58
namespace
gem5
59
{
60
61
struct
BRRIPRPParams;
62
63
GEM5_DEPRECATED_NAMESPACE
(ReplacementPolicy, replacement_policy);
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
}
92
};
93
100
const
unsigned
numRRPVBits
;
101
107
const
bool
hitPriority
;
108
113
const
unsigned
btp
;
114
115
public
:
116
typedef
BRRIPRPParams
Params
;
117
BRRIP
(
const
Params
&
p
);
118
~BRRIP
() =
default
;
119
126
void
invalidate
(
const
std::shared_ptr<ReplacementData>& replacement_data)
127
override
;
128
134
void
touch
(
const
std::shared_ptr<ReplacementData>& replacement_data)
const
135
override
;
136
143
void
reset
(
const
std::shared_ptr<ReplacementData>& replacement_data)
const
144
override
;
145
152
ReplaceableEntry
*
getVictim
(
const
ReplacementCandidates
& candidates)
const
153
override
;
154
160
std::shared_ptr<ReplacementData>
instantiateEntry
()
override
;
161
};
162
163
}
// namespace replacement_policy
164
}
// namespace gem5
165
166
#endif // __MEM_CACHE_REPLACEMENT_POLICIES_BRRIP_RP_HH__
gem5::replacement_policy::BRRIP::instantiateEntry
std::shared_ptr< ReplacementData > instantiateEntry() override
Instantiate a replacement data entry.
Definition:
brrip_rp.cc:146
gem5::replacement_policy::BRRIP
Definition:
brrip_rp.hh:67
gem5::replacement_policy::BRRIP::btp
const unsigned btp
Bimodal throtle parameter.
Definition:
brrip_rp.hh:113
gem5::replacement_policy::BRRIP::getVictim
ReplaceableEntry * getVictim(const ReplacementCandidates &candidates) const override
Find replacement victim using rrpv.
Definition:
brrip_rp.cc:97
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:63
gem5::replacement_policy::Base::Params
BaseReplacementPolicyParams Params
Definition:
base.hh:58
std::vector
STL vector class.
Definition:
stl.hh:37
sat_counter.hh
gem5::replacement_policy::BRRIP::BRRIPReplData::valid
bool valid
Whether the entry is valid.
Definition:
brrip_rp.hh:83
gem5::GenericSatCounter< uint8_t >
gem5::replacement_policy::BRRIP::BRRIP
BRRIP(const Params &p)
Definition:
brrip_rp.cc:45
gem5::replacement_policy::ReplacementData
The replacement data needed by replacement policies.
Definition:
replaceable_entry.hh:49
gem5::replacement_policy::BRRIP::BRRIPReplData
BRRIP-specific implementation of replacement data.
Definition:
brrip_rp.hh:71
gem5::replacement_policy::BRRIP::~BRRIP
~BRRIP()=default
gem5::MipsISA::p
Bitfield< 0 > p
Definition:
pra_constants.hh:326
gem5::replacement_policy::BRRIP::Params
BRRIPRPParams Params
Definition:
brrip_rp.hh:116
gem5::replacement_policy::Base
A common base class of cache replacement policy objects.
Definition:
base.hh:55
base.hh
gem5::replacement_policy::BRRIP::numRRPVBits
const unsigned numRRPVBits
Number of RRPV bits.
Definition:
brrip_rp.hh:100
gem5::GEM5_DEPRECATED_NAMESPACE
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
gem5::replacement_policy::BRRIP::reset
void reset(const std::shared_ptr< ReplacementData > &replacement_data) const override
Reset replacement data.
Definition:
brrip_rp.cc:79
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::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:53
gem5::replacement_policy::BRRIP::BRRIPReplData::rrpv
SatCounter8 rrpv
Re-Reference Interval Prediction Value.
Definition:
brrip_rp.hh:80
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
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition:
decoder.cc:40
gem5::replacement_policy::BRRIP::BRRIPReplData::BRRIPReplData
BRRIPReplData(const int num_bits)
Default constructor.
Definition:
brrip_rp.hh:88
Generated on Wed Jul 28 2021 12:10:28 for gem5 by
doxygen
1.8.17