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