gem5
v20.0.0.3
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
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
+
Enumerations
a
b
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
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
k
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
r
s
t
v
w
+
Enumerator
_
a
b
c
d
e
f
g
h
i
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
mem
cache
replacement_policies
lru_rp.hh
Go to the documentation of this file.
1
35
#ifndef __MEM_CACHE_REPLACEMENT_POLICIES_LRU_RP_HH__
36
#define __MEM_CACHE_REPLACEMENT_POLICIES_LRU_RP_HH__
37
38
#include "
mem/cache/replacement_policies/base.hh
"
39
40
struct
LRURPParams;
41
42
class
LRURP
:
public
BaseReplacementPolicy
43
{
44
protected
:
46
struct
LRUReplData
:
ReplacementData
47
{
49
Tick
lastTouchTick
;
50
54
LRUReplData
() : lastTouchTick(0) {}
55
};
56
57
public
:
59
typedef
LRURPParams
Params
;
60
64
LRURP
(
const
Params *
p
);
65
69
~LRURP
() {}
70
77
void
invalidate
(
const
std::shared_ptr<ReplacementData>& replacement_data)
78
const override
;
79
86
void
touch
(
const
std::shared_ptr<ReplacementData>& replacement_data)
const
87
override
;
88
95
void
reset
(
const
std::shared_ptr<ReplacementData>& replacement_data)
const
96
override
;
97
104
ReplaceableEntry
*
getVictim
(
const
ReplacementCandidates
& candidates)
const
105
override
;
106
112
std::shared_ptr<ReplacementData>
instantiateEntry
()
override
;
113
};
114
115
#endif // __MEM_CACHE_REPLACEMENT_POLICIES_LRU_RP_HH__
LRURP::invalidate
void invalidate(const std::shared_ptr< ReplacementData > &replacement_data) const override
Invalidate replacement data to set it as the next probable victim.
Definition:
lru_rp.cc:42
LRURP::LRURP
LRURP(const Params *p)
Construct and initiliaze this replacement policy.
Definition:
lru_rp.cc:36
LRURP::LRUReplData::LRUReplData
LRUReplData()
Default constructor.
Definition:
lru_rp.hh:54
BaseReplacementPolicy
A common base class of cache replacement policy objects.
Definition:
base.hh:46
std::vector
STL vector class.
Definition:
stl.hh:37
LRURP::LRUReplData
LRU-specific implementation of replacement data.
Definition:
lru_rp.hh:46
ReplacementData
Copyright (c) 2018 Inria All rights reserved.
Definition:
replaceable_entry.hh:41
Tick
uint64_t Tick
Tick count type.
Definition:
types.hh:61
LRURP::Params
LRURPParams Params
Convenience typedef.
Definition:
lru_rp.hh:59
LRURP
Definition:
lru_rp.hh:42
LRURP::reset
void reset(const std::shared_ptr< ReplacementData > &replacement_data) const override
Reset replacement data.
Definition:
lru_rp.cc:59
LRURP::getVictim
ReplaceableEntry * getVictim(const ReplacementCandidates &candidates) const override
Find replacement victim using LRU timestamps.
Definition:
lru_rp.cc:67
LRURP::~LRURP
~LRURP()
Destructor.
Definition:
lru_rp.hh:69
LRURP::instantiateEntry
std::shared_ptr< ReplacementData > instantiateEntry() override
Instantiate a replacement data entry.
Definition:
lru_rp.cc:88
ReplaceableEntry
A replaceable entry is a basic entry in a 2d table-like structure that needs to have replacement func...
Definition:
replaceable_entry.hh:53
LRURP::touch
void touch(const std::shared_ptr< ReplacementData > &replacement_data) const override
Touch an entry to update its replacement data.
Definition:
lru_rp.cc:51
base.hh
LRURP::LRUReplData::lastTouchTick
Tick lastTouchTick
Tick on which the entry was last touched.
Definition:
lru_rp.hh:49
MipsISA::p
Bitfield< 0 > p
Definition:
pra_constants.hh:323
Generated on Fri Jul 3 2020 15:53:03 for gem5 by
doxygen
1.8.13