gem5
v20.0.0.2
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
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
arch
x86
stacktrace.hh
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2006 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 __ARCH_X86_STACKTRACE_HH__
30
#define __ARCH_X86_STACKTRACE_HH__
31
32
#include "
base/trace.hh
"
33
#include "
cpu/static_inst.hh
"
34
#include "debug/Stack.hh"
35
36
class
ThreadContext
;
37
namespace
X86ISA
38
{
39
class
StackTrace;
40
41
class
ProcessInfo
42
{
43
private
:
44
ThreadContext
*
tc
;
45
46
int
thread_info_size
;
47
int
task_struct_size
;
48
int
task_off
;
49
int
pid_off
;
50
int
name_off
;
51
52
public
:
53
ProcessInfo
(
ThreadContext
*_tc);
54
55
Addr
task
(
Addr
ksp)
const
;
56
int
pid
(
Addr
ksp)
const
;
57
std::string
name
(
Addr
ksp)
const
;
58
};
59
60
class
StackTrace
61
{
62
private
:
63
ThreadContext
*
tc
;
64
std::vector<Addr>
stack
;
65
66
private
:
67
bool
isEntry(
Addr
addr
);
68
bool
decodePrologue(
Addr
sp
,
Addr
callpc,
Addr
func,
int
&size,
Addr
&
ra
);
69
bool
decodeSave(
MachInst
inst,
int
&
reg
,
int
&disp);
70
bool
decodeStack(
MachInst
inst,
int
&disp);
71
72
void
trace(
ThreadContext
*tc,
bool
is_call);
73
74
public
:
75
StackTrace
();
76
StackTrace
(
ThreadContext
*tc,
const
StaticInstPtr
&inst);
77
~
StackTrace
();
78
79
void
clear
()
80
{
81
tc = 0;
82
stack.clear();
83
}
84
85
bool
valid
()
const
{
return
tc != NULL; }
86
bool
trace(
ThreadContext
*tc,
const
StaticInstPtr
&inst);
87
88
public
:
89
const
std::vector<Addr>
&
getstack
()
const
{
return
stack
; }
90
91
static
const
int
user = 1;
92
static
const
int
console = 2;
93
static
const
int
unknown = 3;
94
95
#if TRACING_ON
96
private
:
97
void
dump
();
98
99
public
:
100
void
dprintf() {
if
(
DTRACE
(Stack))
dump
(); }
101
#else
102
public
:
103
void
dprintf
() {}
104
#endif
105
};
106
107
inline
bool
108
StackTrace::trace
(
ThreadContext
*tc,
const
StaticInstPtr
&inst)
109
{
110
if
(!inst->
isCall
() && !inst->
isReturn
())
111
return
false
;
112
113
if
(valid())
114
clear();
115
116
trace(tc, !inst->
isReturn
());
117
return
true
;
118
}
119
}
120
121
#endif // __ARCH_X86_STACKTRACE_HH__
X86ISA::reg
Bitfield< 5, 3 > reg
Definition:
types.hh:87
X86ISA::StackTrace::dprintf
void dprintf()
Definition:
stacktrace.hh:103
X86ISA::StackTrace::tc
ThreadContext * tc
Definition:
stacktrace.hh:63
X86ISA::ProcessInfo::name_off
int name_off
Definition:
stacktrace.hh:50
X86ISA::ProcessInfo::tc
ThreadContext * tc
Definition:
stacktrace.hh:44
X86ISA::ProcessInfo::ProcessInfo
ProcessInfo(ThreadContext *_tc)
Definition:
stacktrace.cc:56
X86ISA::ProcessInfo
Definition:
stacktrace.hh:41
X86ISA::ProcessInfo::task
Addr task(Addr ksp) const
Definition:
stacktrace.cc:66
ArmISA::sp
Bitfield< 0 > sp
Definition:
miscregs_types.hh:71
DTRACE
#define DTRACE(x)
Definition:
debug.hh:143
StaticInst::isReturn
bool isReturn() const
Definition:
static_inst.hh:177
RefCountingPtr< StaticInst >
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Definition:
thread_context.hh:91
X86ISA::ProcessInfo::task_off
int task_off
Definition:
stacktrace.hh:48
X86ISA::ProcessInfo::task_struct_size
int task_struct_size
Definition:
stacktrace.hh:47
std::vector< Addr >
trace.hh
X86ISA::StackTrace::clear
void clear()
Definition:
stacktrace.hh:79
static_inst.hh
X86ISA::ProcessInfo::name
std::string name(Addr ksp) const
Definition:
stacktrace.cc:96
X86ISA::ProcessInfo::thread_info_size
int thread_info_size
Definition:
stacktrace.hh:46
StaticInst::isCall
bool isCall() const
Definition:
static_inst.hh:176
X86ISA::MachInst
uint64_t MachInst
Definition:
types.hh:52
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition:
types.hh:140
X86ISA::StackTrace
Definition:
stacktrace.hh:60
PowerISA::ra
Bitfield< 20, 16 > ra
Definition:
types.hh:45
X86ISA::stack
Bitfield< 17, 16 > stack
Definition:
misc.hh:587
X86ISA::StackTrace::trace
void trace(ThreadContext *tc, bool is_call)
Definition:
stacktrace.cc:126
X86ISA
This is exposed globally, independent of the ISA.
Definition:
acpi.hh:55
Stats::dump
void dump()
Dump all statistics data to the registered outputs.
Definition:
statistics.cc:560
X86ISA::ProcessInfo::pid
int pid(Addr ksp) const
Definition:
stacktrace.cc:81
X86ISA::addr
Bitfield< 3 > addr
Definition:
types.hh:79
X86ISA::ProcessInfo::pid_off
int pid_off
Definition:
stacktrace.hh:49
X86ISA::StackTrace::getstack
const std::vector< Addr > & getstack() const
Definition:
stacktrace.hh:89
X86ISA::StackTrace::stack
std::vector< Addr > stack
Definition:
stacktrace.hh:64
X86ISA::StackTrace::valid
bool valid() const
Definition:
stacktrace.hh:85
Generated on Mon Jun 8 2020 15:34:40 for gem5 by
doxygen
1.8.13