gem5
v21.0.1.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
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
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Enumerations
a
c
d
e
f
i
l
m
o
p
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
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Variables
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
_
a
b
c
d
e
f
g
h
i
l
m
o
p
q
r
s
t
v
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
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
struct
BRRIPRPParams;
59
60
namespace
ReplacementPolicy
{
61
62
class
BRRIP
:
public
Base
63
{
64
protected
:
66
struct
BRRIPReplData
:
ReplacementData
67
{
75
SatCounter8
rrpv
;
76
78
bool
valid
;
79
83
BRRIPReplData
(
const
int
num_bits)
84
:
rrpv
(num_bits),
valid
(false)
85
{
86
}
87
};
88
95
const
unsigned
numRRPVBits
;
96
102
const
bool
hitPriority
;
103
108
const
unsigned
btp
;
109
110
public
:
111
typedef
BRRIPRPParams
Params
;
112
BRRIP
(
const
Params
&
p
);
113
~BRRIP
() =
default
;
114
121
void
invalidate
(
const
std::shared_ptr<ReplacementData>& replacement_data)
122
const override
;
123
129
void
touch
(
const
std::shared_ptr<ReplacementData>& replacement_data)
const
130
override
;
131
138
void
reset
(
const
std::shared_ptr<ReplacementData>& replacement_data)
const
139
override
;
140
147
ReplaceableEntry
*
getVictim
(
const
ReplacementCandidates
& candidates)
const
148
override
;
149
155
std::shared_ptr<ReplacementData>
instantiateEntry
()
override
;
156
};
157
158
}
// namespace ReplacementPolicy
159
160
#endif // __MEM_CACHE_REPLACEMENT_POLICIES_BRRIP_RP_HH__
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::BRRIP::btp
const unsigned btp
Bimodal throtle parameter.
Definition:
brrip_rp.hh:108
ReplacementPolicy::BRRIP::invalidate
void invalidate(const std::shared_ptr< ReplacementData > &replacement_data) const override
Invalidate replacement data to set it as the next probable victim.
Definition:
brrip_rp.cc:48
ReplacementPolicy::BRRIP::Params
BRRIPRPParams Params
Definition:
brrip_rp.hh:111
std::vector
STL vector class.
Definition:
stl.hh:37
ReplacementPolicy::BRRIP::instantiateEntry
std::shared_ptr< ReplacementData > instantiateEntry() override
Instantiate a replacement data entry.
Definition:
brrip_rp.cc:142
sat_counter.hh
ReplacementPolicy::BRRIP::BRRIPReplData::valid
bool valid
Whether the entry is valid.
Definition:
brrip_rp.hh:78
ReplacementPolicy
Copyright (c) 2018-2020 Inria All rights reserved.
Definition:
stride.hh:64
ReplacementPolicy::BRRIP::getVictim
ReplaceableEntry * getVictim(const ReplacementCandidates &candidates) const override
Find replacement victim using rrpv.
Definition:
brrip_rp.cc:93
ReplacementPolicy::ReplacementData
The replacement data needed by replacement policies.
Definition:
replaceable_entry.hh:43
ReplacementPolicy::Base::Params
BaseReplacementPolicyParams Params
Definition:
base.hh:51
ReplacementPolicy::BRRIP::numRRPVBits
const unsigned numRRPVBits
Number of RRPV bits.
Definition:
brrip_rp.hh:95
ReplacementPolicy::BRRIP::BRRIPReplData
BRRIP-specific implementation of replacement data.
Definition:
brrip_rp.hh:66
ReplacementPolicy::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:59
ReplacementPolicy::BRRIP
Definition:
brrip_rp.hh:62
ReplacementPolicy::Base
A common base class of cache replacement policy objects.
Definition:
base.hh:48
base.hh
GenericSatCounter< uint8_t >
ReplacementPolicy::BRRIP::BRRIP
BRRIP(const Params &p)
Definition:
brrip_rp.cc:40
ReplacementPolicy::BRRIP::~BRRIP
~BRRIP()=default
ReplacementPolicy::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:102
MipsISA::p
Bitfield< 0 > p
Definition:
pra_constants.hh:323
ReplacementPolicy::BRRIP::BRRIPReplData::rrpv
SatCounter8 rrpv
Re-Reference Interval Prediction Value.
Definition:
brrip_rp.hh:75
ReplacementPolicy::BRRIP::reset
void reset(const std::shared_ptr< ReplacementData > &replacement_data) const override
Reset replacement data.
Definition:
brrip_rp.cc:75
ReplacementPolicy::BRRIP::BRRIPReplData::BRRIPReplData
BRRIPReplData(const int num_bits)
Default constructor.
Definition:
brrip_rp.hh:83
Generated on Tue Jun 22 2021 15:28:29 for gem5 by
doxygen
1.8.17