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
sim
faults.hh
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2003-2005 The Regents of The University of Michigan
3
* All rights reserved.
4
*
5
* Redistribution and use in source and binary forms, with or without
6
* modification, are permitted provided that the following conditions are
7
* met: redistributions of source code must retain the above copyright
8
* notice, this list of conditions and the following disclaimer;
9
* redistributions in binary form must reproduce the above copyright
10
* notice, this list of conditions and the following disclaimer in the
11
* documentation and/or other materials provided with the distribution;
12
* neither the name of the copyright holders nor the names of its
13
* contributors may be used to endorse or promote products derived from
14
* this software without specific prior written permission.
15
*
16
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
*/
28
29
#ifndef __FAULTS_HH__
30
#define __FAULTS_HH__
31
32
#include "
base/types.hh
"
33
#include "
cpu/static_inst.hh
"
34
#include "
sim/stats.hh
"
35
36
class
ThreadContext
;
37
38
typedef
const
char
*
FaultName
;
39
typedef
Stats::Scalar
FaultStat
;
40
41
class
FaultBase
42
{
43
public
:
44
virtual
FaultName
name
()
const
= 0;
45
virtual
void
invoke
(
ThreadContext
* tc,
const
StaticInstPtr
&inst =
46
StaticInst::nullStaticInstPtr
);
47
48
virtual
~FaultBase
() {};
49
};
50
51
class
UnimpFault
:
public
FaultBase
52
{
53
private
:
54
std::string
panicStr
;
55
public
:
56
UnimpFault
(std::string _str)
57
: panicStr(_str)
58
{ }
59
60
FaultName
name
()
const
{
return
"Unimplemented simulator feature"
; }
61
void
invoke
(
ThreadContext
* tc,
const
StaticInstPtr
&inst =
62
StaticInst::nullStaticInstPtr
);
63
};
64
65
class
ReExec
:
public
FaultBase
66
{
67
public
:
68
virtual
FaultName
name
()
const
{
return
"Re-execution fault"
; }
69
ReExec
() {}
70
void
invoke
(
ThreadContext
*tc,
const
StaticInstPtr
&inst =
71
StaticInst::nullStaticInstPtr
);
72
};
73
74
/*
75
* This class is needed to allow system call retries to occur for blocking
76
* system calls in SE mode. A retry fault will be generated by the system call
77
* emulation code if blocking conditions arise; the fault is passed up the
78
* function call chain into the CPU model where it is handled by retrying the
79
* syscall instruction on a later tick.
80
*/
81
class
SyscallRetryFault
:
public
FaultBase
82
{
83
public
:
84
virtual
FaultName
name
()
const
{
return
"System call retry fault"
; }
85
SyscallRetryFault
() {}
86
void
invoke
(
ThreadContext
*tc,
const
StaticInstPtr
&inst =
87
StaticInst::nullStaticInstPtr
);
88
};
89
90
class
GenericPageTableFault
:
public
FaultBase
91
{
92
private
:
93
Addr
vaddr
;
94
public
:
95
FaultName
name
()
const
{
return
"Generic page table fault"
; }
96
GenericPageTableFault
(
Addr
va
) : vaddr(va) {}
97
void
invoke
(
ThreadContext
* tc,
const
StaticInstPtr
&inst =
98
StaticInst::nullStaticInstPtr
);
99
Addr
getFaultVAddr
()
const
{
return
vaddr
; }
100
};
101
102
class
GenericAlignmentFault
:
public
FaultBase
103
{
104
private
:
105
Addr
vaddr
;
106
public
:
107
FaultName
name
()
const
{
return
"Generic alignment fault"
; }
108
GenericAlignmentFault
(
Addr
va
) : vaddr(va) {}
109
void
invoke
(
ThreadContext
* tc,
const
StaticInstPtr
&inst =
110
StaticInst::nullStaticInstPtr
);
111
Addr
getFaultVAddr
()
const
{
return
vaddr
; }
112
};
113
114
#endif // __FAULTS_HH__
FaultBase::~FaultBase
virtual ~FaultBase()
Definition:
faults.hh:48
GenericPageTableFault::vaddr
Addr vaddr
Definition:
faults.hh:93
stats.hh
FaultStat
Stats::Scalar FaultStat
Definition:
faults.hh:39
ReExec::name
virtual FaultName name() const
Definition:
faults.hh:68
GenericAlignmentFault::name
FaultName name() const
Definition:
faults.hh:107
RefCountingPtr< StaticInst >
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Definition:
thread_context.hh:91
SyscallRetryFault::name
virtual FaultName name() const
Definition:
faults.hh:84
FaultBase::name
virtual FaultName name() const =0
Stats::Scalar
This is a simple scalar statistic, like a counter.
Definition:
statistics.hh:2505
SyscallRetryFault::SyscallRetryFault
SyscallRetryFault()
Definition:
faults.hh:85
GenericAlignmentFault::vaddr
Addr vaddr
Definition:
faults.hh:105
GenericPageTableFault::GenericPageTableFault
GenericPageTableFault(Addr va)
Definition:
faults.hh:96
GenericAlignmentFault
Definition:
faults.hh:102
ReExec
Definition:
faults.hh:65
static_inst.hh
GenericAlignmentFault::GenericAlignmentFault
GenericAlignmentFault(Addr va)
Definition:
faults.hh:108
FaultName
const char * FaultName
Definition:
faults.hh:36
UnimpFault::UnimpFault
UnimpFault(std::string _str)
Definition:
faults.hh:56
MipsISA::vaddr
vaddr
Definition:
pra_constants.hh:275
SyscallRetryFault
Definition:
faults.hh:81
GenericAlignmentFault::getFaultVAddr
Addr getFaultVAddr() const
Definition:
faults.hh:111
types.hh
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition:
types.hh:140
GenericPageTableFault
Definition:
faults.hh:90
ArmISA::va
Bitfield< 8 > va
Definition:
miscregs_types.hh:272
UnimpFault
Definition:
faults.hh:51
GenericPageTableFault::name
FaultName name() const
Definition:
faults.hh:95
ReExec::ReExec
ReExec()
Definition:
faults.hh:69
UnimpFault::panicStr
std::string panicStr
Definition:
faults.hh:54
UnimpFault::name
FaultName name() const
Definition:
faults.hh:60
StaticInst::nullStaticInstPtr
static StaticInstPtr nullStaticInstPtr
Pointer to a statically allocated "null" instruction object.
Definition:
static_inst.hh:225
FaultBase
Definition:
faults.hh:41
FaultBase::invoke
virtual void invoke(ThreadContext *tc, const StaticInstPtr &inst=StaticInst::nullStaticInstPtr)
Definition:
faults.cc:40
GenericPageTableFault::getFaultVAddr
Addr getFaultVAddr() const
Definition:
faults.hh:99
Generated on Fri Jul 3 2020 15:42:38 for gem5 by
doxygen
1.8.13