gem5
v19.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
+
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
z
+
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
+
Enumerations
a
b
c
d
e
f
g
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
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
arch
mips
stacktrace.hh
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2004-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
* Authors: Ali Saidi
29
*/
30
31
#ifndef __ARCH_MIPS_STACKTRACE_HH__
32
#define __ARCH_MIPS_STACKTRACE_HH__
33
34
#include "
base/trace.hh
"
35
#include "
cpu/static_inst.hh
"
36
#include "debug/Stack.hh"
37
38
class
ThreadContext
;
39
40
namespace
MipsISA
41
{
42
43
class
ProcessInfo
44
{
45
private
:
46
ThreadContext
*
tc
;
47
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
protected
:
63
typedef
MipsISA::MachInst
MachInst
;
64
private
:
65
ThreadContext
*
tc
;
66
std::vector<Addr>
stack
;
67
68
private
:
69
bool
isEntry(
Addr
addr
);
70
bool
decodePrologue(
Addr
sp
,
Addr
callpc,
Addr
func,
int
&size,
Addr
&
ra
);
71
bool
decodeSave(MachInst inst,
int
&
reg
,
int
&disp);
72
bool
decodeStack(MachInst inst,
int
&disp);
73
74
void
trace(
ThreadContext
*tc,
bool
is_call);
75
76
public
:
77
StackTrace
();
78
StackTrace
(
ThreadContext
*tc,
const
StaticInstPtr
&inst);
79
~
StackTrace
();
80
81
void
clear
()
82
{
83
tc = 0;
84
stack.clear();
85
}
86
87
bool
valid
()
const
{
return
tc != NULL; }
88
bool
trace(
ThreadContext
*tc,
const
StaticInstPtr
&inst);
89
90
public
:
91
const
std::vector<Addr>
&
getstack
()
const
{
return
stack
; }
92
93
static
const
int
user
= 1;
94
static
const
int
console = 2;
95
static
const
int
unknown = 3;
96
97
#if TRACING_ON
98
private
:
99
void
dump
();
100
101
public
:
102
void
dprintf() {
if
(
DTRACE
(Stack))
dump
(); }
103
#else
104
public
:
105
void
dprintf
() {}
106
#endif
107
};
108
109
inline
bool
110
StackTrace::trace
(
ThreadContext
*tc,
const
StaticInstPtr
&inst)
111
{
112
if
(!inst->
isCall
() && !inst->
isReturn
())
113
return
false
;
114
115
if
(valid())
116
clear();
117
118
trace(tc, !inst->
isReturn
());
119
return
true
;
120
}
121
122
}
123
124
#endif // __ARCH_MIPS_STACKTRACE_HH__
X86ISA::reg
Bitfield< 5, 3 > reg
Definition:
types.hh:89
MipsISA::ProcessInfo::ProcessInfo
ProcessInfo(ThreadContext *_tc)
Definition:
stacktrace.cc:46
addr
ip6_addr_t addr
Definition:
inet.hh:335
MipsISA::ProcessInfo::name
std::string name(Addr ksp) const
Definition:
stacktrace.cc:80
MipsISA::StackTrace::trace
void trace(ThreadContext *tc, bool is_call)
Definition:
stacktrace.cc:110
MipsISA::ProcessInfo::pid_off
int pid_off
Definition:
stacktrace.hh:49
StaticInst::isReturn
bool isReturn() const
Definition:
static_inst.hh:175
MipsISA::MachInst
uint32_t MachInst
Definition:
types.hh:40
MipsISA::StackTrace
Definition:
stacktrace.hh:60
MipsISA::ProcessInfo
Definition:
stacktrace.hh:43
RefCountingPtr< StaticInst >
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Definition:
thread_context.hh:93
MipsISA::ProcessInfo::tc
ThreadContext * tc
Definition:
stacktrace.hh:46
std::vector< Addr >
MipsISA::StackTrace::MachInst
MipsISA::MachInst MachInst
Definition:
stacktrace.hh:63
MipsISA::StackTrace::tc
ThreadContext * tc
Definition:
stacktrace.hh:65
trace.hh
MipsISA::StackTrace::stack
std::vector< Addr > stack
Definition:
stacktrace.hh:66
DTRACE
#define DTRACE(x)
Definition:
trace.hh:227
static_inst.hh
MipsISA::ProcessInfo::task_off
int task_off
Definition:
stacktrace.hh:48
MipsISA::ProcessInfo::task
Addr task(Addr ksp) const
Definition:
stacktrace.cc:50
StaticInst::isCall
bool isCall() const
Definition:
static_inst.hh:174
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition:
types.hh:142
PowerISA::ra
Bitfield< 20, 16 > ra
Definition:
types.hh:47
X86ISA::stack
Bitfield< 17, 16 > stack
Definition:
misc.hh:589
MipsISA::StackTrace::getstack
const std::vector< Addr > & getstack() const
Definition:
stacktrace.hh:91
AlphaISA::Kernel::user
Definition:
kernel_stats.hh:48
MipsISA::sp
Bitfield< 4 > sp
Definition:
pra_constants.hh:269
MipsISA
Definition:
decoder.cc:33
Stats::dump
void dump()
Dump all statistics data to the registered outputs.
Definition:
statistics.cc:561
MipsISA::StackTrace::valid
bool valid() const
Definition:
stacktrace.hh:87
MipsISA::ProcessInfo::name_off
int name_off
Definition:
stacktrace.hh:50
MipsISA::ProcessInfo::pid
int pid(Addr ksp) const
Definition:
stacktrace.cc:65
MipsISA::StackTrace::clear
void clear()
Definition:
stacktrace.hh:81
MipsISA::StackTrace::dprintf
void dprintf()
Definition:
stacktrace.hh:105
Generated on Fri Feb 28 2020 16:26:56 for gem5 by
doxygen
1.8.13