gem5
[DEVELOP-FOR-23.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
y
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
generic
tlb.hh
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2011, 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
* Copyright (c) 2006 The Regents of The University of Michigan
15
* All rights reserved.
16
*
17
* Redistribution and use in source and binary forms, with or without
18
* modification, are permitted provided that the following conditions are
19
* met: redistributions of source code must retain the above copyright
20
* notice, this list of conditions and the following disclaimer;
21
* redistributions in binary form must reproduce the above copyright
22
* notice, this list of conditions and the following disclaimer in the
23
* documentation and/or other materials provided with the distribution;
24
* neither the name of the copyright holders nor the names of its
25
* contributors may be used to endorse or promote products derived from
26
* this software without specific prior written permission.
27
*
28
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39
*/
40
41
#ifndef __ARCH_GENERIC_TLB_HH__
42
#define __ARCH_GENERIC_TLB_HH__
43
44
#include <type_traits>
45
46
#include "
arch/generic/mmu.hh
"
47
#include "
base/logging.hh
"
48
#include "enums/TypeTLB.hh"
49
#include "
mem/request.hh
"
50
#include "params/BaseTLB.hh"
51
#include "
sim/sim_object.hh
"
52
53
namespace
gem5
54
{
55
56
class
ThreadContext;
57
58
class
BaseTLB
:
public
SimObject
59
{
60
protected
:
61
BaseTLB
(
const
BaseTLBParams &
p
)
62
:
SimObject
(
p
),
_type
(
p
.entry_type),
_nextLevel
(
p
.next_level)
63
{}
64
65
TypeTLB
_type
;
66
67
BaseTLB
*
_nextLevel
;
68
69
public
:
70
virtual
void
demapPage
(
Addr
vaddr
, uint64_t asn) = 0;
71
72
virtual
Fault
translateAtomic
(
73
const
RequestPtr
&req,
ThreadContext
*tc,
BaseMMU::Mode
mode
) = 0;
74
virtual
void
translateTiming
(
75
const
RequestPtr
&req,
ThreadContext
*tc,
76
BaseMMU::Translation
*translation,
BaseMMU::Mode
mode
) = 0;
77
virtual
Fault
78
translateFunctional
(
const
RequestPtr
&req,
ThreadContext
*tc,
79
BaseMMU::Mode
mode
)
80
{
81
panic
(
"Not implemented.\n"
);
82
}
83
98
virtual
Fault
finalizePhysical
(
99
const
RequestPtr
&req,
ThreadContext
*tc,
100
BaseMMU::Mode
mode
)
const
= 0;
101
105
virtual
void
flushAll
() = 0;
106
110
virtual
void
takeOverFrom
(
BaseTLB
*otlb) = 0;
111
121
virtual
Port
*
getTableWalkerPort
() {
return
NULL; }
122
123
void
memInvalidate
() {
flushAll
(); }
124
125
TypeTLB
type
()
const
{
return
_type
; }
126
127
BaseTLB
*
nextLevel
()
const
{
return
_nextLevel
; }
128
};
129
138
inline
auto
139
operator&
(TypeTLB lhs, TypeTLB rhs)
140
{
141
using
T = std::underlying_type_t<TypeTLB>;
142
return
static_cast<
T
>
(lhs) &
static_cast<
T
>
(rhs);
143
}
144
145
}
// namespace gem5
146
147
#endif // __ARCH_GENERIC_TLB_HH__
gem5::BaseTLB::takeOverFrom
virtual void takeOverFrom(BaseTLB *otlb)=0
Take over from an old tlb context.
gem5::BaseTLB::nextLevel
BaseTLB * nextLevel() const
Definition:
tlb.hh:127
gem5::BaseMMU::Mode
Mode
Definition:
mmu.hh:56
gem5::BaseTLB::finalizePhysical
virtual Fault finalizePhysical(const RequestPtr &req, ThreadContext *tc, BaseMMU::Mode mode) const =0
Do post-translation physical address finalization.
gem5::BaseTLB::_type
TypeTLB _type
Definition:
tlb.hh:65
request.hh
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition:
thread_context.hh:88
gem5::Fault
std::shared_ptr< FaultBase > Fault
Definition:
types.hh:248
gem5::VegaISA::p
Bitfield< 54 > p
Definition:
pagetable.hh:70
gem5::BaseTLB::type
TypeTLB type() const
Definition:
tlb.hh:125
sim_object.hh
gem5::BaseTLB::_nextLevel
BaseTLB * _nextLevel
Definition:
tlb.hh:67
gem5::BaseTLB::memInvalidate
void memInvalidate()
Invalidate the contents of memory buffers.
Definition:
tlb.hh:123
gem5::RequestPtr
std::shared_ptr< Request > RequestPtr
Definition:
request.hh:92
mmu.hh
gem5::BaseTLB
Definition:
tlb.hh:58
gem5::BaseTLB::demapPage
virtual void demapPage(Addr vaddr, uint64_t asn)=0
gem5::operator&
auto operator&(TypeTLB lhs, TypeTLB rhs)
Implementing the "&" bitwise operator for TypeTLB allows us to handle TypeTLB::unified efficiently.
Definition:
tlb.hh:139
gem5::BaseTLB::translateFunctional
virtual Fault translateFunctional(const RequestPtr &req, ThreadContext *tc, BaseMMU::Mode mode)
Definition:
tlb.hh:78
gem5::SimObject
Abstract superclass for simulation objects.
Definition:
sim_object.hh:146
gem5::BaseTLB::translateTiming
virtual void translateTiming(const RequestPtr &req, ThreadContext *tc, BaseMMU::Translation *translation, BaseMMU::Mode mode)=0
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition:
types.hh:147
gem5::BaseTLB::BaseTLB
BaseTLB(const BaseTLBParams &p)
Definition:
tlb.hh:61
gem5::BaseTLB::translateAtomic
virtual Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, BaseMMU::Mode mode)=0
gem5::BaseMMU::Translation
Definition:
mmu.hh:58
gem5::Port
Ports are used to interface objects to each other.
Definition:
port.hh:61
logging.hh
gem5::MipsISA::vaddr
vaddr
Definition:
pra_constants.hh:278
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition:
gpu_translation_state.hh:37
gem5::BaseTLB::getTableWalkerPort
virtual Port * getTableWalkerPort()
Get the table walker port if present.
Definition:
tlb.hh:121
gem5::BaseTLB::flushAll
virtual void flushAll()=0
Remove all entries from the TLB.
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition:
logging.hh:188
gem5::ArmISA::mode
Bitfield< 4, 0 > mode
Definition:
misc_types.hh:74
Generated on Sun Jul 30 2023 01:56:33 for gem5 by
doxygen
1.8.17