tracy/common/TracySystem.cpp

198 lines
4.8 KiB
C++
Raw Normal View History

#if defined _MSC_VER || defined __CYGWIN__ || defined _WIN32
2018-08-01 12:07:30 +00:00
# ifndef WIN32_LEAN_AND_MEAN
# define WIN32_LEAN_AND_MEAN
# endif
# ifndef NOMINMAX
# define NOMINMAX
# endif
#endif
2017-09-10 15:46:20 +00:00
#ifdef _WIN32
# include <windows.h>
#else
# include <pthread.h>
2017-09-22 19:48:21 +00:00
# include <string.h>
2017-09-10 15:46:20 +00:00
# include <unistd.h>
#endif
#ifdef __linux__
2018-07-24 11:43:25 +00:00
# ifndef __ANDROID__
# include <syscall.h>
# endif
# include <fcntl.h>
#endif
2019-01-19 11:03:30 +00:00
#ifdef __MINGW32__
# define __STDC_FORMAT_MACROS
#endif
#include <inttypes.h>
2017-10-30 20:51:24 +00:00
#include <stdio.h>
2017-09-10 15:46:20 +00:00
#include "TracySystem.hpp"
#ifdef TRACY_COLLECT_THREAD_NAMES
# include <atomic>
2017-11-02 11:57:02 +00:00
# include "TracyAlloc.hpp"
#endif
2017-09-10 15:46:20 +00:00
namespace tracy
{
#ifdef TRACY_COLLECT_THREAD_NAMES
struct ThreadNameData
{
uint64_t id;
const char* name;
ThreadNameData* next;
};
2019-02-19 18:33:37 +00:00
std::atomic<ThreadNameData*>& GetThreadNameData();
void InitRPMallocThread();
#endif
2017-09-10 15:46:20 +00:00
void SetThreadName( std::thread& thread, const char* name )
{
SetThreadName( thread.native_handle(), name );
}
void SetThreadName( std::thread::native_handle_type handle, const char* name )
2017-09-10 15:46:20 +00:00
{
2019-01-19 11:03:30 +00:00
#if defined _WIN32 && !defined PTW32_VERSION && !defined __WINPTHREADS_VERSION
# if defined NTDDI_WIN10_RS2 && NTDDI_VERSION >= NTDDI_WIN10_RS2
wchar_t buf[256];
mbstowcs( buf, name, 256 );
SetThreadDescription( static_cast<HANDLE>( handle ), buf );
2017-09-21 22:37:28 +00:00
# else
const DWORD MS_VC_EXCEPTION=0x406D1388;
# pragma pack( push, 8 )
struct THREADNAME_INFO
{
DWORD dwType;
LPCSTR szName;
DWORD dwThreadID;
DWORD dwFlags;
};
# pragma pack(pop)
DWORD ThreadId = GetThreadId( static_cast<HANDLE>( handle ) );
2017-09-21 22:37:28 +00:00
THREADNAME_INFO info;
info.dwType = 0x1000;
info.szName = name;
info.dwThreadID = ThreadId;
info.dwFlags = 0;
__try
{
RaiseException( MS_VC_EXCEPTION, 0, sizeof(info)/sizeof(ULONG_PTR), (ULONG_PTR*)&info );
}
__except(EXCEPTION_EXECUTE_HANDLER)
{
}
# endif
2017-11-29 10:11:16 +00:00
#elif defined _GNU_SOURCE && !defined __EMSCRIPTEN__
{
const auto sz = strlen( name );
if( sz <= 15 )
{
pthread_setname_np( handle, name );
}
else
{
char buf[16];
memcpy( buf, name, 15 );
buf[15] = '\0';
pthread_setname_np( handle, buf );
}
}
2017-09-10 15:46:20 +00:00
#endif
#ifdef TRACY_COLLECT_THREAD_NAMES
{
InitRPMallocThread();
const auto sz = strlen( name );
char* buf = (char*)tracy_malloc( sz+1 );
memcpy( buf, name, sz );
buf[sz+1] = '\0';
2017-11-02 11:57:02 +00:00
auto data = (ThreadNameData*)tracy_malloc( sizeof( ThreadNameData ) );
# ifdef _WIN32
2019-01-19 11:03:30 +00:00
# if defined PTW32_VERSION
data->id = pthread_getw32threadid_np( static_cast<pthread_t>( handle ) );
# elif defined __WINPTHREADS_VERSION
data->id = GetThreadId( pthread_gethandle( static_cast<pthread_t>( handle ) ) );
# else
data->id = GetThreadId( static_cast<HANDLE>( handle ) );
2019-01-19 11:03:30 +00:00
# endif
2017-11-03 10:09:31 +00:00
# elif defined __APPLE__
2017-11-03 10:13:02 +00:00
pthread_threadid_np( handle, &data->id );
# else
data->id = (uint64_t)handle;
# endif
data->name = buf;
2019-02-19 18:33:37 +00:00
data->next = GetThreadNameData().load( std::memory_order_relaxed );
while( !GetThreadNameData().compare_exchange_weak( data->next, data, std::memory_order_release, std::memory_order_relaxed ) ) {}
}
#endif
2017-09-10 15:46:20 +00:00
}
const char* GetThreadName( uint64_t id )
{
static char buf[256];
#ifdef TRACY_COLLECT_THREAD_NAMES
2019-02-19 18:33:37 +00:00
auto ptr = GetThreadNameData().load( std::memory_order_relaxed );
while( ptr )
{
if( ptr->id == id )
{
2018-03-30 23:38:57 +00:00
return ptr->name;
}
ptr = ptr->next;
}
#else
# ifdef _WIN32
# if defined NTDDI_WIN10_RS2 && NTDDI_VERSION >= NTDDI_WIN10_RS2
auto hnd = OpenThread( THREAD_QUERY_LIMITED_INFORMATION, FALSE, (DWORD)id );
2017-10-15 11:26:05 +00:00
if( hnd != 0 )
{
2017-10-15 11:26:05 +00:00
PWSTR tmp;
GetThreadDescription( hnd, &tmp );
auto ret = wcstombs( buf, tmp, 256 );
CloseHandle( hnd );
if( ret != 0 )
{
return buf;
}
}
# endif
# elif defined __GLIBC__ && !defined __ANDROID__ && !defined __EMSCRIPTEN__
if( pthread_getname_np( (pthread_t)id, buf, 256 ) == 0 )
{
return buf;
}
# elif defined __linux__
int cs, fd;
char path[32];
2018-07-24 11:43:25 +00:00
# ifdef __ANDROID__
int tid = gettid();
# else
2018-07-14 11:46:25 +00:00
int tid = (int) syscall( SYS_gettid );
2018-07-24 11:43:25 +00:00
# endif
2018-07-14 11:46:25 +00:00
snprintf( path, sizeof( path ), "/proc/self/task/%d/comm", tid );
sprintf( buf, "%" PRIu64, id );
2018-09-07 15:21:27 +00:00
# ifndef __ANDROID__
pthread_setcancelstate( PTHREAD_CANCEL_DISABLE, &cs );
2018-09-07 15:21:27 +00:00
# endif
2018-07-14 11:46:25 +00:00
if ( ( fd = open( path, O_RDONLY ) ) > 0) {
int len = read( fd, buf, 255 );
2018-07-14 11:46:25 +00:00
if ( len > 0 )
buf[len] = 0;
2018-07-14 11:46:25 +00:00
close( fd );
}
2018-09-07 15:21:27 +00:00
# ifndef __ANDROID__
2018-07-14 11:46:25 +00:00
pthread_setcancelstate( cs, 0 );
2018-09-07 15:21:27 +00:00
# endif
return buf;
# endif
#endif
sprintf( buf, "%" PRIu64, id );
return buf;
}
2017-09-22 19:48:21 +00:00
}