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
arch
arm
tlbi_op.cc
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2018-2020 ARM Limited
3
* All rights reserved
4
*
5
* The license below extends only to copyright in the software and shall
6
* not be construed as granting a license to any other intellectual
7
* property including but not limited to intellectual property relating
8
* to a hardware implementation of the functionality of the software
9
* licensed hereunder. You may use the software subject to the license
10
* terms below provided that you ensure that this notice is replicated
11
* unmodified and in its entirety in all distributions of the software,
12
* modified or unmodified, in source code or in binary form.
13
*
14
* Redistribution and use in source and binary forms, with or without
15
* modification, are permitted provided that the following conditions are
16
* met: redistributions of source code must retain the above copyright
17
* notice, this list of conditions and the following disclaimer;
18
* redistributions in binary form must reproduce the above copyright
19
* notice, this list of conditions and the following disclaimer in the
20
* documentation and/or other materials provided with the distribution;
21
* neither the name of the copyright holders nor the names of its
22
* contributors may be used to endorse or promote products derived from
23
* this software without specific prior written permission.
24
*
25
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36
*/
37
38
#include "
arch/arm/tlbi_op.hh
"
39
40
#include "
arch/arm/mmu.hh
"
41
#include "
cpu/checker/cpu.hh
"
42
43
namespace
gem5
44
{
45
46
namespace
ArmISA {
47
48
void
49
TLBIALL::operator()
(
ThreadContext
* tc)
50
{
51
HCR hcr = tc->
readMiscReg
(
MISCREG_HCR_EL2
);
52
inHost
= (hcr.tge == 1 && hcr.e2h == 1);
53
el2Enabled
=
EL2Enabled
(tc);
54
currentEL
=
currEL
(tc);
55
56
getMMUPtr
(tc)->
flush
(*
this
);
57
58
// If CheckerCPU is connected, need to notify it of a flush
59
CheckerCPU
*checker = tc->
getCheckerCpuPtr
();
60
if
(checker) {
61
getMMUPtr
(checker)->
flush
(*
this
);
62
}
63
}
64
65
void
66
ITLBIALL::operator()
(
ThreadContext
* tc)
67
{
68
el2Enabled
=
EL2Enabled
(tc);
69
getMMUPtr
(tc)->
iflush
(*
this
);
70
}
71
72
void
73
DTLBIALL::operator()
(
ThreadContext
* tc)
74
{
75
el2Enabled
=
EL2Enabled
(tc);
76
getMMUPtr
(tc)->
dflush
(*
this
);
77
}
78
79
void
80
TLBIALLEL::operator()
(
ThreadContext
* tc)
81
{
82
HCR hcr = tc->
readMiscReg
(
MISCREG_HCR_EL2
);
83
inHost
= (hcr.tge == 1 && hcr.e2h == 1);
84
getMMUPtr
(tc)->
flush
(*
this
);
85
86
// If CheckerCPU is connected, need to notify it of a flush
87
CheckerCPU
*checker = tc->
getCheckerCpuPtr
();
88
if
(checker) {
89
getMMUPtr
(checker)->
flush
(*
this
);
90
}
91
}
92
93
void
94
TLBIVMALL::operator()
(
ThreadContext
* tc)
95
{
96
HCR hcr = tc->
readMiscReg
(
MISCREG_HCR_EL2
);
97
inHost
= (hcr.tge == 1 && hcr.e2h == 1);
98
99
getMMUPtr
(tc)->
flush
(*
this
);
100
101
// If CheckerCPU is connected, need to notify it of a flush
102
CheckerCPU
*checker = tc->
getCheckerCpuPtr
();
103
if
(checker) {
104
getMMUPtr
(checker)->
flush
(*
this
);
105
}
106
}
107
108
void
109
TLBIASID::operator()
(
ThreadContext
* tc)
110
{
111
HCR hcr = tc->
readMiscReg
(
MISCREG_HCR_EL2
);
112
inHost
= (hcr.tge == 1 && hcr.e2h == 1);
113
el2Enabled
=
EL2Enabled
(tc);
114
115
getMMUPtr
(tc)->
flushStage1
(*
this
);
116
CheckerCPU
*checker = tc->
getCheckerCpuPtr
();
117
if
(checker) {
118
getMMUPtr
(checker)->
flushStage1
(*
this
);
119
}
120
}
121
122
void
123
ITLBIASID::operator()
(
ThreadContext
* tc)
124
{
125
el2Enabled
=
EL2Enabled
(tc);
126
getMMUPtr
(tc)->
iflush
(*
this
);
127
}
128
129
void
130
DTLBIASID::operator()
(
ThreadContext
* tc)
131
{
132
el2Enabled
=
EL2Enabled
(tc);
133
getMMUPtr
(tc)->
dflush
(*
this
);
134
}
135
136
void
137
TLBIALLN::operator()
(
ThreadContext
* tc)
138
{
139
getMMUPtr
(tc)->
flush
(*
this
);
140
141
CheckerCPU
*checker = tc->
getCheckerCpuPtr
();
142
if
(checker) {
143
getMMUPtr
(checker)->
flush
(*
this
);
144
}
145
}
146
147
void
148
TLBIMVAA::operator()
(
ThreadContext
* tc)
149
{
150
HCR hcr = tc->
readMiscReg
(
MISCREG_HCR_EL2
);
151
inHost
= (hcr.tge == 1 && hcr.e2h == 1);
152
getMMUPtr
(tc)->
flushStage1
(*
this
);
153
154
CheckerCPU
*checker = tc->
getCheckerCpuPtr
();
155
if
(checker) {
156
getMMUPtr
(checker)->
flushStage1
(*
this
);
157
}
158
}
159
160
void
161
TLBIMVA::operator()
(
ThreadContext
* tc)
162
{
163
HCR hcr = tc->
readMiscReg
(
MISCREG_HCR_EL2
);
164
inHost
= (hcr.tge == 1 && hcr.e2h == 1);
165
getMMUPtr
(tc)->
flushStage1
(*
this
);
166
167
CheckerCPU
*checker = tc->
getCheckerCpuPtr
();
168
if
(checker) {
169
getMMUPtr
(checker)->
flushStage1
(*
this
);
170
}
171
}
172
173
void
174
ITLBIMVA::operator()
(
ThreadContext
* tc)
175
{
176
getMMUPtr
(tc)->
iflush
(*
this
);
177
}
178
179
void
180
DTLBIMVA::operator()
(
ThreadContext
* tc)
181
{
182
getMMUPtr
(tc)->
dflush
(*
this
);
183
}
184
185
void
186
TLBIIPA::operator()
(
ThreadContext
* tc)
187
{
188
getMMUPtr
(tc)->
flushStage2
(
makeStage2
());
189
190
CheckerCPU
*checker = tc->
getCheckerCpuPtr
();
191
if
(checker) {
192
getMMUPtr
(checker)->
flushStage2
(
makeStage2
());
193
}
194
}
195
196
}
// namespace ArmISA
197
}
// namespace gem5
gem5::ArmISA::TLBIIPA::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:186
gem5::ArmISA::MMU::flush
void flush(const OP &tlbi_op)
Definition:
mmu.hh:109
gem5::ThreadContext::readMiscReg
virtual RegVal readMiscReg(RegIndex misc_reg)=0
gem5::ArmISA::DTLBIALL::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:73
gem5::ArmISA::currEL
static ExceptionLevel currEL(const ThreadContext *tc)
Definition:
utility.hh:119
gem5::ArmISA::DTLBIASID::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:130
gem5::ArmISA::ITLBIASID::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:123
gem5::ArmISA::TLBIALL::inHost
bool inHost
Definition:
tlbi_op.hh:130
gem5::ArmISA::TLBIIPA::makeStage2
TLBIMVAA makeStage2() const
TLBIIPA is basically a TLBIMVAA for stage2 TLBs.
Definition:
tlbi_op.hh:358
gem5::ArmISA::getMMUPtr
MMU * getMMUPtr(T *tc)
Definition:
mmu.hh:167
gem5::ArmISA::ITLBIALL::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:66
gem5::ArmISA::TLBIALLN::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:137
gem5::ArmISA::TLBIASID::el2Enabled
bool el2Enabled
Definition:
tlbi_op.hh:228
mmu.hh
gem5::ArmISA::TLBIMVA::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:161
gem5::ArmISA::TLBIALL::currentEL
ExceptionLevel currentEL
Definition:
tlbi_op.hh:132
gem5::ArmISA::MMU::iflush
void iflush(const OP &tlbi_op)
Definition:
mmu.hh:138
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition:
thread_context.hh:93
gem5::ArmISA::TLBIALLEL::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:80
gem5::CheckerCPU
CheckerCPU class.
Definition:
cpu.hh:85
cpu.hh
gem5::ArmISA::MMU::flushStage2
void flushStage2(const OP &tlbi_op)
Definition:
mmu.hh:130
gem5::ArmISA::EL2Enabled
bool EL2Enabled(ThreadContext *tc)
Definition:
utility.cc:274
tlbi_op.hh
gem5::ArmISA::MMU::dflush
void dflush(const OP &tlbi_op)
Definition:
mmu.hh:145
gem5::ArmISA::TLBIASID::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:109
gem5::ArmISA::TLBIALL::el2Enabled
bool el2Enabled
Definition:
tlbi_op.hh:131
gem5::ArmISA::TLBIASID::inHost
bool inHost
Definition:
tlbi_op.hh:227
gem5::ArmISA::TLBIVMALL::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:94
gem5::ArmISA::TLBIMVAA::inHost
bool inHost
Definition:
tlbi_op.hh:292
gem5::ArmISA::TLBIMVA::inHost
bool inHost
Definition:
tlbi_op.hh:309
gem5::ArmISA::TLBIALLEL::inHost
bool inHost
Definition:
tlbi_op.hh:184
gem5::ArmISA::DTLBIMVA::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:180
gem5::ArmISA::ITLBIMVA::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:174
gem5::ArmISA::TLBIVMALL::inHost
bool inHost
Definition:
tlbi_op.hh:210
gem5::ArmISA::MMU::flushStage1
void flushStage1(const OP &tlbi_op)
Definition:
mmu.hh:122
gem5::ArmISA::MISCREG_HCR_EL2
@ MISCREG_HCR_EL2
Definition:
misc.hh:586
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition:
decoder.cc:40
gem5::ThreadContext::getCheckerCpuPtr
virtual CheckerCPU * getCheckerCpuPtr()=0
gem5::ArmISA::TLBIMVAA::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:148
gem5::ArmISA::TLBIALL::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:49
Generated on Wed Jul 28 2021 12:10:22 for gem5 by
doxygen
1.8.17