gem5
v22.0.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
q
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
d
e
f
g
h
i
l
m
n
o
p
s
t
v
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
Typedefs
a
b
c
d
g
h
i
l
m
r
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-2021 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
el2Enabled
=
EL2Enabled
(tc);
99
100
getMMUPtr
(tc)->
flush
(*
this
);
101
102
// If CheckerCPU is connected, need to notify it of a flush
103
CheckerCPU
*checker = tc->
getCheckerCpuPtr
();
104
if
(checker) {
105
getMMUPtr
(checker)->
flush
(*
this
);
106
}
107
}
108
109
void
110
TLBIASID::operator()
(
ThreadContext
* tc)
111
{
112
HCR hcr = tc->
readMiscReg
(
MISCREG_HCR_EL2
);
113
inHost
= (hcr.tge == 1 && hcr.e2h == 1);
114
el2Enabled
=
EL2Enabled
(tc);
115
116
getMMUPtr
(tc)->
flushStage1
(*
this
);
117
CheckerCPU
*checker = tc->
getCheckerCpuPtr
();
118
if
(checker) {
119
getMMUPtr
(checker)->
flushStage1
(*
this
);
120
}
121
}
122
123
void
124
ITLBIASID::operator()
(
ThreadContext
* tc)
125
{
126
el2Enabled
=
EL2Enabled
(tc);
127
getMMUPtr
(tc)->
iflush
(*
this
);
128
}
129
130
void
131
DTLBIASID::operator()
(
ThreadContext
* tc)
132
{
133
el2Enabled
=
EL2Enabled
(tc);
134
getMMUPtr
(tc)->
dflush
(*
this
);
135
}
136
137
void
138
TLBIALLN::operator()
(
ThreadContext
* tc)
139
{
140
getMMUPtr
(tc)->
flush
(*
this
);
141
142
CheckerCPU
*checker = tc->
getCheckerCpuPtr
();
143
if
(checker) {
144
getMMUPtr
(checker)->
flush
(*
this
);
145
}
146
}
147
148
void
149
TLBIMVAA::operator()
(
ThreadContext
* tc)
150
{
151
HCR hcr = tc->
readMiscReg
(
MISCREG_HCR_EL2
);
152
inHost
= (hcr.tge == 1 && hcr.e2h == 1);
153
getMMUPtr
(tc)->
flushStage1
(*
this
);
154
155
CheckerCPU
*checker = tc->
getCheckerCpuPtr
();
156
if
(checker) {
157
getMMUPtr
(checker)->
flushStage1
(*
this
);
158
}
159
}
160
161
void
162
TLBIMVA::operator()
(
ThreadContext
* tc)
163
{
164
HCR hcr = tc->
readMiscReg
(
MISCREG_HCR_EL2
);
165
inHost
= (hcr.tge == 1 && hcr.e2h == 1);
166
getMMUPtr
(tc)->
flushStage1
(*
this
);
167
168
CheckerCPU
*checker = tc->
getCheckerCpuPtr
();
169
if
(checker) {
170
getMMUPtr
(checker)->
flushStage1
(*
this
);
171
}
172
}
173
174
void
175
ITLBIMVA::operator()
(
ThreadContext
* tc)
176
{
177
getMMUPtr
(tc)->
iflush
(*
this
);
178
}
179
180
void
181
DTLBIMVA::operator()
(
ThreadContext
* tc)
182
{
183
getMMUPtr
(tc)->
dflush
(*
this
);
184
}
185
186
void
187
TLBIIPA::operator()
(
ThreadContext
* tc)
188
{
189
getMMUPtr
(tc)->
flushStage2
(
makeStage2
());
190
191
CheckerCPU
*checker = tc->
getCheckerCpuPtr
();
192
if
(checker) {
193
getMMUPtr
(checker)->
flushStage2
(
makeStage2
());
194
}
195
}
196
197
}
// namespace ArmISA
198
}
// namespace gem5
gem5::ArmISA::TLBIIPA::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:187
gem5::ArmISA::MMU::flush
void flush(const OP &tlbi_op)
Definition:
mmu.hh:302
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::DTLBIASID::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:131
gem5::ArmISA::ITLBIASID::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:124
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:512
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:138
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:162
gem5::ArmISA::TLBIALL::currentEL
ExceptionLevel currentEL
Definition:
tlbi_op.hh:132
gem5::ArmISA::MMU::iflush
void iflush(const OP &tlbi_op)
Definition:
mmu.hh:338
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition:
thread_context.hh:94
gem5::ArmISA::TLBIALLEL::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:80
gem5::CheckerCPU
CheckerCPU class.
Definition:
cpu.hh:84
cpu.hh
gem5::ArmISA::MMU::flushStage2
void flushStage2(const OP &tlbi_op)
Definition:
mmu.hh:330
gem5::ArmISA::EL2Enabled
bool EL2Enabled(ThreadContext *tc)
Definition:
utility.cc:264
tlbi_op.hh
gem5::ArmISA::MMU::dflush
void dflush(const OP &tlbi_op)
Definition:
mmu.hh:350
gem5::ArmISA::TLBIASID::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:110
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::el2Enabled
bool el2Enabled
Definition:
tlbi_op.hh:211
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::currEL
ExceptionLevel currEL(const ThreadContext *tc)
Returns the current Exception Level (EL) of the provided ThreadContext.
Definition:
utility.cc:129
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:181
gem5::ArmISA::ITLBIMVA::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:175
gem5::ArmISA::TLBIVMALL::inHost
bool inHost
Definition:
tlbi_op.hh:210
gem5::ArmISA::MMU::flushStage1
void flushStage1(const OP &tlbi_op)
Definition:
mmu.hh:315
gem5::ArmISA::MISCREG_HCR_EL2
@ MISCREG_HCR_EL2
Definition:
misc.hh:587
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition:
gpu_translation_state.hh:37
gem5::ThreadContext::getCheckerCpuPtr
virtual CheckerCPU * getCheckerCpuPtr()=0
gem5::ArmISA::TLBIMVAA::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:149
gem5::ArmISA::TLBIALL::operator()
void operator()(ThreadContext *tc) override
Definition:
tlbi_op.cc:49
Generated on Thu Jun 16 2022 10:41:41 for gem5 by
doxygen
1.8.17