Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tnl-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TNL
tnl-dev
Commits
f65a6be3
There was an error fetching the commit references. Please try again later.
Commit
f65a6be3
authored
8 years ago
by
Jakub Klinkovský
Browse files
Options
Downloads
Patches
Plain Diff
Added Debugging/StackBacktrace.h
parent
3dcba9bd
No related branches found
No related tags found
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/TNL/Debugging/CMakeLists.txt
+1
-0
1 addition, 0 deletions
src/TNL/Debugging/CMakeLists.txt
src/TNL/Debugging/StackBacktrace.h
+104
-0
104 additions, 0 deletions
src/TNL/Debugging/StackBacktrace.h
with
105 additions
and
0 deletions
src/TNL/Debugging/CMakeLists.txt
+
1
−
0
View file @
f65a6be3
SET
(
headers
MemoryUsage.h
StackBacktrace.h
)
INSTALL
(
FILES
${
headers
}
DESTINATION include/tnl-
${
tnlVersion
}
/TNL/Debugging
)
This diff is collapsed.
Click to expand it.
src/TNL/Debugging/StackBacktrace.h
0 → 100644
+
104
−
0
View file @
f65a6be3
/***************************************************************************
MeshConfigBase.h - description
-------------------
begin : Nov 6, 2016
copyright : (C) 2016 by Tomas Oberhuber et al.
email : tomas.oberhuber@fjfi.cvut.cz
***************************************************************************/
/* See Copyright Notice in tnl/Copyright */
#pragma once
#include
<stdio.h>
#include
<stdlib.h>
#include
<execinfo.h>
#include
<cxxabi.h>
namespace
TNL
{
namespace
Debugging
{
/*
* Print a demangled stack backtrace of the caller function to FILE* out.
*
* Reference: http://panthema.net/2008/0901-stacktrace-demangled/
*
* Note that the program must be linked with the -rdynamic flag, otherwise
* demangling will not work.
*/
static
void
printStackBacktrace
(
FILE
*
out
=
stderr
,
unsigned
int
max_frames
=
63
)
{
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
;
char
*
ret
=
abi
::
__cxa_demangle
(
begin_name
,
funcname
,
&
funcnamesize
,
&
status
);
if
(
status
==
0
)
{
funcname
=
ret
;
// use possibly realloc()-ed string
fprintf
(
out
,
" %d %s : %s+%s
\n
"
,
i
,
symbollist
[
i
],
funcname
,
begin_offset
);
}
else
{
// demangling failed. Output function name as a C function with no arguments.
fprintf
(
out
,
" %d %s : %s()+%s
\n
"
,
i
,
symbollist
[
i
],
begin_name
,
begin_offset
);
}
}
else
{
// couldn't parse the line? print the whole line.
fprintf
(
out
,
" %d %s
\n
"
,
i
,
symbollist
[
i
]);
}
}
free
(
funcname
);
free
(
symbollist
);
}
}
// namespace Debugging
}
// namespace TNL
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment