mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
Merged in Leandros99/tracy/original-master (pull request #10)
Support for callstacks on Linux without glibc
This commit is contained in:
commit
d461cbb6d2
@ -3,10 +3,10 @@
|
||||
|
||||
#ifdef TRACY_HAS_CALLSTACK
|
||||
|
||||
#if defined _WIN32 || defined __CYGWIN__
|
||||
#if TRACY_HAS_CALLSTACK == 1
|
||||
# include <windows.h>
|
||||
# include <dbghelp.h>
|
||||
#elif defined _GNU_SOURCE
|
||||
#elif TRACY_HAS_CALLSTACK >= 2
|
||||
# include <dlfcn.h>
|
||||
# include <cxxabi.h>
|
||||
#endif
|
||||
@ -14,7 +14,7 @@
|
||||
namespace tracy
|
||||
{
|
||||
|
||||
#if defined _WIN32 || defined __CYGWIN__
|
||||
#if TRACY_HAS_CALLSTACK == 1
|
||||
|
||||
extern "C" t_RtlWalkFrameChain RtlWalkFrameChain = 0;
|
||||
|
||||
@ -77,7 +77,7 @@ CallstackEntry DecodeCallstackPtr( uint64_t ptr )
|
||||
return ret;
|
||||
}
|
||||
|
||||
#elif defined __ANDROID__
|
||||
#elif TRACY_HAS_CALLSTACK == 2
|
||||
|
||||
CallstackEntry DecodeCallstackPtr( uint64_t ptr )
|
||||
{
|
||||
@ -156,7 +156,7 @@ CallstackEntry DecodeCallstackPtr( uint64_t ptr )
|
||||
return ret;
|
||||
}
|
||||
|
||||
#elif defined _GNU_SOURCE
|
||||
#elif TRACY_HAS_CALLSTACK == 3
|
||||
|
||||
CallstackEntry DecodeCallstackPtr( uint64_t ptr )
|
||||
{
|
||||
|
@ -2,18 +2,23 @@
|
||||
#define __TRACYCALLSTACK_HPP__
|
||||
|
||||
#if defined _WIN32 || defined __CYGWIN__
|
||||
# define TRACY_HAS_CALLSTACK
|
||||
# define TRACY_HAS_CALLSTACK 1
|
||||
extern "C"
|
||||
{
|
||||
typedef unsigned long (__stdcall *t_RtlWalkFrameChain)( void**, unsigned long, unsigned long );
|
||||
extern t_RtlWalkFrameChain RtlWalkFrameChain;
|
||||
}
|
||||
#elif defined __ANDROID__
|
||||
# define TRACY_HAS_CALLSTACK
|
||||
# define TRACY_HAS_CALLSTACK 2
|
||||
# include <unwind.h>
|
||||
#elif defined _GNU_SOURCE
|
||||
# define TRACY_HAS_CALLSTACK
|
||||
# include <execinfo.h>
|
||||
#elif defined __linux
|
||||
# if defined _GNU_SOURCE && defined __GLIBC__
|
||||
# define TRACY_HAS_CALLSTACK 3
|
||||
# include <execinfo.h>
|
||||
# else
|
||||
# define TRACY_HAS_CALLSTACK 2
|
||||
# include <unwind.h>
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
||||
@ -38,7 +43,7 @@ struct CallstackEntry
|
||||
|
||||
CallstackEntry DecodeCallstackPtr( uint64_t ptr );
|
||||
|
||||
#if defined _WIN32 || defined __CYGWIN__
|
||||
#if TRACY_HAS_CALLSTACK == 1
|
||||
|
||||
void InitCallstack();
|
||||
|
||||
@ -53,7 +58,7 @@ static tracy_force_inline void* Callstack( int depth )
|
||||
return trace;
|
||||
}
|
||||
|
||||
#elif defined __ANDROID__
|
||||
#elif TRACY_HAS_CALLSTACK == 2
|
||||
|
||||
static tracy_force_inline void InitCallstack() {}
|
||||
|
||||
@ -88,7 +93,7 @@ static tracy_force_inline void* Callstack( int depth )
|
||||
return trace;
|
||||
}
|
||||
|
||||
#elif defined _GNU_SOURCE
|
||||
#elif TRACY_HAS_CALLSTACK == 3
|
||||
|
||||
static tracy_force_inline void InitCallstack() {}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user