gem5
v21.1.0.1
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
mru_rp.hh
Go to the documentation of this file.
1
36
#ifndef __MEM_CACHE_REPLACEMENT_POLICIES_MRU_RP_HH__
37
#define __MEM_CACHE_REPLACEMENT_POLICIES_MRU_RP_HH__
38
39
#include "
base/types.hh
"
40
#include "
mem/cache/replacement_policies/base.hh
"
41
42
namespace
gem5
43
{
44
45
struct
MRURPParams;
46
47
GEM5_DEPRECATED_NAMESPACE
(ReplacementPolicy, replacement_policy);
48
namespace
replacement_policy
49
{
50
51
class
MRU
:
public
Base
52
{
53
protected
:
55
struct
MRUReplData
:
ReplacementData
56
{
58
Tick
lastTouchTick
;
59
63
MRUReplData
() :
lastTouchTick
(0) {}
64
};
65
66
public
:
67
typedef
MRURPParams
Params
;
68
MRU
(
const
Params
&
p
);
69
~MRU
() =
default
;
70
77
void
invalidate
(
const
std::shared_ptr<ReplacementData>& replacement_data)
78
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
}
// namespace replacement_policy
116
}
// namespace gem5
117
118
#endif // __MEM_CACHE_REPLACEMENT_POLICIES_MRU_RP_HH__
gem5::replacement_policy::Base::Params
BaseReplacementPolicyParams Params
Definition:
base.hh:58
std::vector
STL vector class.
Definition:
stl.hh:37
gem5::replacement_policy::MRU::getVictim
ReplaceableEntry * getVictim(const ReplacementCandidates &candidates) const override
Find replacement victim using access timestamps.
Definition:
mru_rp.cc:74
gem5::replacement_policy::ReplacementData
The replacement data needed by replacement policies.
Definition:
replaceable_entry.hh:49
gem5::replacement_policy::MRU::Params
MRURPParams Params
Definition:
mru_rp.hh:67
gem5::MipsISA::p
Bitfield< 0 > p
Definition:
pra_constants.hh:326
gem5::Tick
uint64_t Tick
Tick count type.
Definition:
types.hh:58
gem5::replacement_policy::MRU::MRUReplData
MRU-specific implementation of replacement data.
Definition:
mru_rp.hh:55
gem5::replacement_policy::Base
A common base class of cache replacement policy objects.
Definition:
base.hh:55
base.hh
gem5::GEM5_DEPRECATED_NAMESPACE
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
gem5::replacement_policy::MRU::MRU
MRU(const Params &p)
Definition:
mru_rp.cc:44
gem5::replacement_policy::MRU::reset
void reset(const std::shared_ptr< ReplacementData > &replacement_data) const override
Reset replacement data.
Definition:
mru_rp.cc:66
gem5::replacement_policy::MRU::invalidate
void invalidate(const std::shared_ptr< ReplacementData > &replacement_data) override
Invalidate replacement data to set it as the next probable victim.
Definition:
mru_rp.cc:50
gem5::replacement_policy::MRU::MRUReplData::lastTouchTick
Tick lastTouchTick
Tick on which the entry was last touched.
Definition:
mru_rp.hh:58
types.hh
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::MRU
Definition:
mru_rp.hh:51
gem5::replacement_policy::MRU::touch
void touch(const std::shared_ptr< ReplacementData > &replacement_data) const override
Touch an entry to update its replacement data.
Definition:
mru_rp.cc:58
gem5::replacement_policy::MRU::instantiateEntry
std::shared_ptr< ReplacementData > instantiateEntry() override
Instantiate a replacement data entry.
Definition:
mru_rp.cc:100
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition:
decoder.cc:40
gem5::replacement_policy::MRU::~MRU
~MRU()=default
gem5::replacement_policy::MRU::MRUReplData::MRUReplData
MRUReplData()
Default constructor.
Definition:
mru_rp.hh:63
Generated on Tue Sep 7 2021 14:53:48 for gem5 by
doxygen
1.8.17