-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstacktrace.hpp
More file actions
193 lines (154 loc) · 5.36 KB
/
stacktrace.hpp
File metadata and controls
193 lines (154 loc) · 5.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
#ifndef _STACKTRACE_HPP_
#define _STACKTRACE_HPP_
#include <execinfo.h>
#ifdef __GLIBCXX__
#include <cxxabi.h>
#endif
#include <cstdio>
#include <cstdlib>
#include <string>
/** Print a demangled stack backtrace of the caller function to FILE* out. */
template< size_t max_frames = 63 >
inline void print_stacktrace( FILE *out = stderr )
{
fprintf( out, "stack trace:\n" );
// storage array for stack trace address data
void* addrlist[ max_frames + 1 ];
// retrieve current stack addresses
int addrlen = backtrace( addrlist, sizeof( addrlist ) / sizeof( void* ) );
if ( addrlen == 0 )
{
fprintf( out, " <empty, possibly corrupt>\n" );
return;
}
// resolve addresses into strings containing "filename(function+address)",
// this array must be free()-ed
char** symbollist = backtrace_symbols( addrlist, addrlen );
// allocate string which will be filled with the demangled function name
size_t funcnamesize = 256;
char* funcname = (char*) malloc( funcnamesize );
// iterate over the returned symbol lines. skip the first, it is the
// address of this function.
for ( int i = 1; i < addrlen; i++ )
{
char *begin_name = 0, *begin_offset = 0, *end_offset = 0;
// find parentheses and +address offset surrounding the mangled name:
// ./module(function+0x15c) [0x8048a6d]
for ( char *p = symbollist[ i ]; *p; ++p )
{
if ( *p == '(' )
begin_name = p;
else if ( *p == '+' )
begin_offset = p;
else if ( *p == ')' && begin_offset )
{
end_offset = p;
break;
}
}
if ( begin_name && begin_offset && end_offset && begin_name < begin_offset )
{
*begin_name++ = '\0';
*begin_offset++ = '\0';
*end_offset = '\0';
// mangled name is now in [begin_name, begin_offset) and caller
// offset in [begin_offset, end_offset). now apply
// __cxa_demangle():
int status = 0;
char* ret = nullptr;
#ifdef __GLIBCXX__
ret = abi::__cxa_demangle( begin_name, funcname, &funcnamesize, &status );
#endif
if ( status == 0 )
{
funcname = ret; // use possibly realloc()-ed string
fprintf( out, " %s : %s+%s\n", symbollist[ i ], funcname, begin_offset );
}
else
{
// demangling failed. Output function name as a C function with
// no arguments.
ret = nullptr; // avoiding unused warning...
fprintf( out, " %s : %s()+%s\n", symbollist[ i ], begin_name, begin_offset );
}
}
else
{
// couldn't parse the line? print the whole line.
fprintf( out, " %s\n", symbollist[ i ] );
}
}
free( funcname );
free( symbollist );
}
template< size_t max_frames = 63 >
std::string get_function_name( size_t i=0 )
{
i += 1; // we don't want the name of this here...
// storage array for stack trace address data
void* addrlist[ max_frames + 1 ];
// retrieve current stack addresses
int addrlen = backtrace( addrlist, sizeof( addrlist ) / sizeof( void* ) );
if ( addrlen == 0 )
{
return "";
}
// resolve addresses into strings containing "filename(function+address)",
// this array must be free()-ed
char** symbollist = backtrace_symbols( addrlist, addrlen );
// allocate string which will be filled with the demangled function name
size_t funcnamesize = 256;
char* funcname = (char*) malloc( funcnamesize );
// iterate over the returned symbol lines. skip the first, it is the
// address of this function.
char *begin_name = 0, *begin_offset = 0, *end_offset = 0;
// find parentheses and +address offset surrounding the mangled name:
// ./module(function+0x15c) [0x8048a6d]
for ( char *p = symbollist[ i ]; *p; ++p )
{
if ( *p == '(' )
begin_name = p;
else if ( *p == '+' )
begin_offset = p;
else if ( *p == ')' && begin_offset )
{
end_offset = p;
break;
}
}
std::string name;
if ( begin_name && begin_offset && end_offset && begin_name < begin_offset )
{
*begin_name++ = '\0';
*begin_offset++ = '\0';
*end_offset = '\0';
// mangled name is now in [begin_name, begin_offset) and caller
// offset in [begin_offset, end_offset). now apply
// __cxa_demangle():
int status = 0;
char* ret = nullptr;
#ifdef __GLIBCXX__
ret = abi::__cxa_demangle( begin_name, funcname, &funcnamesize, &status );
#endif
if ( status == 0 )
{
#ifdef __GLIBCXX__
funcname = ret; // use possibly realloc()-ed string
#endif
name = funcname;
}
else // demangle failed
{
name = begin_name;
}
}
else
{
// couldn't parse the line? print the whole line.
name = symbollist[ i ];
}
free( funcname );
free( symbollist );
return name;
}
#endif // _STACKTRACE_HPP_