tracy/client/TracyCallstack.cpp

70 lines
1.4 KiB
C++
Raw Normal View History

2018-06-18 23:17:19 +00:00
#include "TracyCallstack.hpp"
#ifdef TRACY_HAS_CALLSTACK
2018-06-19 17:49:21 +00:00
#if defined _WIN32 || defined __CYGWIN__
# include <windows.h>
# include <dbghelp.h>
2018-06-18 23:17:19 +00:00
#endif
namespace tracy
{
void InitCallstack()
{
SymInitialize( GetCurrentProcess(), nullptr, true );
SymSetOptions( SYMOPT_LOAD_LINES );
}
CallstackEntry DecodeCallstackPtr( uint64_t ptr )
{
CallstackEntry ret;
const auto proc = GetCurrentProcess();
char buf[sizeof( SYMBOL_INFO ) + 255];
auto si = (SYMBOL_INFO*)buf;
si->SizeOfStruct = sizeof( SYMBOL_INFO );
si->MaxNameLen = 255;
2018-06-19 23:05:44 +00:00
if( SymFromAddr( proc, ptr, nullptr, si ) == 0 )
{
memcpy( si->Name, "[unknown]", 10 );
si->NameLen = 9;
}
2018-06-18 23:17:19 +00:00
auto name = (char*)tracy_malloc( si->NameLen + 1 );
memcpy( name, si->Name, si->NameLen );
name[si->NameLen] = '\0';
ret.name = name;
const char* filename;
2018-06-18 23:17:19 +00:00
IMAGEHLP_LINE64 line;
DWORD displacement = 0;
2018-06-18 23:17:19 +00:00
line.SizeOfStruct = sizeof( IMAGEHLP_LINE64 );
2018-06-19 23:05:44 +00:00
if( SymGetLineFromAddr64( proc, ptr, &displacement, &line ) == 0 )
{
filename = "[unknown]";
2018-06-19 23:05:44 +00:00
ret.line = 0;
}
else
{
filename = line.FileName;
2018-06-19 23:05:44 +00:00
ret.line = line.LineNumber;
}
2018-06-18 23:17:19 +00:00
const auto fsz = strlen( filename );
auto file = (char*)tracy_malloc( fsz + 1 );
memcpy( file, filename, fsz );
file[fsz] = '\0';
ret.file = file;
2018-06-18 23:17:19 +00:00
return ret;
}
}
#endif