tracy/client/TracyProfiler.cpp

560 lines
16 KiB
C++
Raw Normal View History

#ifdef TRACY_ENABLE
2017-09-14 17:25:16 +00:00
#ifdef _MSC_VER
# include <winsock2.h>
2017-10-03 21:17:16 +00:00
# include <windows.h>
2017-09-14 17:25:16 +00:00
#else
# include <sys/time.h>
#endif
2017-10-03 21:17:16 +00:00
#ifdef _GNU_SOURCE
# include <errno.h>
#endif
2017-09-23 19:33:05 +00:00
#include <atomic>
2017-09-10 15:43:56 +00:00
#include <assert.h>
2017-09-23 19:09:46 +00:00
#include <chrono>
2017-09-14 17:25:16 +00:00
#include <limits>
2017-09-21 22:36:36 +00:00
#include <memory>
2017-10-30 13:59:05 +00:00
#include <stdlib.h>
2017-09-19 00:19:20 +00:00
#include <string.h>
2017-09-10 15:43:56 +00:00
#include "../common/TracyProtocol.hpp"
2017-09-11 20:51:47 +00:00
#include "../common/TracySocket.hpp"
#include "../common/TracySystem.hpp"
2017-10-14 14:59:43 +00:00
#include "tracy_rpmalloc.hpp"
2017-09-24 14:02:09 +00:00
#include "TracyScoped.hpp"
2017-09-10 15:43:56 +00:00
#include "TracyProfiler.hpp"
#include "TracyThread.hpp"
2017-09-10 15:43:56 +00:00
#ifdef __GNUC__
#define init_order( val ) __attribute__ ((init_priority(val)))
#else
#define init_order(x)
#endif
2017-09-10 15:43:56 +00:00
namespace tracy
{
2017-10-14 14:59:43 +00:00
struct RPMallocInit
{
RPMallocInit() { rpmalloc_initialize(); }
};
struct RPMallocThreadInit
{
RPMallocThreadInit() { rpmalloc_thread_initialize(); }
};
2017-10-16 23:07:34 +00:00
struct InitTimeWrapper
{
int64_t val;
};
2017-10-03 21:17:16 +00:00
static const char* GetProcessName()
{
#if defined _MSC_VER
2017-10-03 21:17:16 +00:00
static char buf[_MAX_PATH];
GetModuleFileNameA( nullptr, buf, _MAX_PATH );
const char* ptr = buf;
while( *ptr != '\0' ) ptr++;
while( ptr > buf && *ptr != '\\' && *ptr != '/' ) ptr--;
if( ptr > buf ) ptr++;
return ptr;
2017-10-30 13:59:05 +00:00
#elif defined __ANDROID__
# if __ANDROID_API__ >= 21
auto buf = getprogname();
if( buf ) return buf;
# endif
#elif defined _GNU_SOURCE || defined __CYGWIN__
2017-10-03 21:17:16 +00:00
return program_invocation_short_name;
#endif
2017-10-30 13:59:05 +00:00
return "unknown";
2017-10-03 21:17:16 +00:00
}
2017-09-24 13:59:53 +00:00
enum { QueuePrealloc = 256 * 1024 };
2017-10-16 22:36:15 +00:00
// MSVC static initialization order solution. gcc/clang uses init_order() to avoid all this.
2017-09-10 15:43:56 +00:00
static Profiler* s_instance = nullptr;
static Thread* s_thread = nullptr;
2017-09-10 15:43:56 +00:00
2017-10-16 22:36:15 +00:00
// 1a. But s_queue is needed for initialization of variables in point 2.
extern moodycamel::ConcurrentQueue<QueueItem> s_queue;
static thread_local RPMallocThreadInit init_order(106) s_rpmalloc_thread_init;
2017-10-16 22:36:15 +00:00
// 2. If these variables would be in the .CRT$XCB section, they would be initialized only in main thread.
static thread_local moodycamel::ProducerToken init_order(107) s_token_detail( s_queue );
thread_local ProducerWrapper init_order(108) s_token { s_queue.get_explicit_producer( s_token_detail ) };
2017-10-16 22:36:15 +00:00
#ifdef _MSC_VER
// 1. Initialize these static variables before all other variables.
# pragma warning( disable : 4075 )
# pragma init_seg( ".CRT$XCB" )
#endif
static InitTimeWrapper init_order(101) s_initTime { Profiler::GetTime() };
2017-10-16 23:07:34 +00:00
static RPMallocInit init_order(102) s_rpmalloc_init;
moodycamel::ConcurrentQueue<QueueItem> init_order(103) s_queue( QueuePrealloc );
std::atomic<uint32_t> init_order(104) s_lockCounter( 0 );
#ifdef TRACY_COLLECT_THREAD_NAMES
struct ThreadNameData;
std::atomic<ThreadNameData*> init_order(104) s_threadNameData( nullptr );
#endif
static Profiler init_order(105) s_profiler;
2017-10-16 22:36:15 +00:00
2017-11-02 11:56:13 +00:00
enum { BulkSize = TargetFrameSize / QueueItemSize };
2017-09-10 15:43:56 +00:00
Profiler::Profiler()
: m_timeBegin( 0 )
, m_mainThread( GetThreadHandle() )
, m_epoch( std::chrono::duration_cast<std::chrono::seconds>( std::chrono::system_clock::now().time_since_epoch() ).count() )
2017-09-10 18:14:16 +00:00
, m_shutdown( false )
2017-10-18 17:49:17 +00:00
, m_sock( nullptr )
, m_stream( LZ4_createStream() )
, m_buffer( (char*)tracy_malloc( TargetFrameSize*3 ) )
, m_bufferOffset( 0 )
, m_bufferStart( 0 )
2017-11-02 11:56:13 +00:00
, m_itemBuf( (QueueItem*)tracy_malloc( sizeof( QueueItem ) * BulkSize ) )
2017-11-02 16:37:10 +00:00
, m_lz4Buf( (char*)tracy_malloc( LZ4Size + sizeof( lz4sz_t ) ) )
2017-09-10 15:43:56 +00:00
{
assert( !s_instance );
s_instance = this;
2017-10-16 22:36:15 +00:00
#ifdef _MSC_VER
// 3. But these variables need to be initialized in main thread within the .CRT$XCB section. Do it here.
s_token_detail = moodycamel::ProducerToken( s_queue );
s_token = ProducerWrapper { s_queue.get_explicit_producer( s_token_detail ) };
#endif
2017-09-23 19:33:05 +00:00
CalibrateTimer();
2017-09-24 14:02:09 +00:00
CalibrateDelay();
2017-09-23 19:33:05 +00:00
s_thread = (Thread*)tracy_malloc( sizeof( Thread ) );
new(s_thread) Thread( LaunchWorker, this );
SetThreadName( s_thread->Handle(), "Tracy Profiler" );
m_timeBegin.store( GetTime(), std::memory_order_relaxed );
2017-09-10 15:43:56 +00:00
}
Profiler::~Profiler()
{
m_shutdown.store( true, std::memory_order_relaxed );
s_thread->~Thread();
tracy_free( s_thread );
2017-11-02 16:37:10 +00:00
tracy_free( m_lz4Buf );
2017-11-02 11:56:13 +00:00
tracy_free( m_itemBuf );
tracy_free( m_buffer );
LZ4_freeStream( m_stream );
2017-10-18 17:49:17 +00:00
if( m_sock )
{
m_sock->~Socket();
tracy_free( m_sock );
}
2017-09-10 15:43:56 +00:00
assert( s_instance );
s_instance = nullptr;
}
bool Profiler::ShouldExit()
{
return s_instance->m_shutdown.load( std::memory_order_relaxed );
}
2017-09-10 15:43:56 +00:00
void Profiler::Worker()
{
rpmalloc_thread_initialize();
const auto procname = GetProcessName();
const auto pnsz = std::min<size_t>( strlen( procname ), WelcomeMessageProgramNameSize - 1 );
while( m_timeBegin.load( std::memory_order_relaxed ) == 0 ) std::this_thread::sleep_for( std::chrono::milliseconds( 10 ) );
WelcomeMessage welcome;
welcome.timerMul = m_timerMul;
welcome.initBegin = s_initTime.val;
welcome.initEnd = m_timeBegin.load( std::memory_order_relaxed );
welcome.delay = m_delay;
welcome.resolution = m_resolution;
welcome.epoch = m_epoch;
memcpy( welcome.programName, procname, pnsz );
memset( welcome.programName + pnsz, 0, WelcomeMessageProgramNameSize - pnsz );
moodycamel::ConsumerToken token( s_queue );
2017-09-11 20:51:47 +00:00
ListenSocket listen;
listen.Listen( "8086", 8 );
2017-09-10 15:43:56 +00:00
for(;;)
{
2017-09-11 20:51:47 +00:00
for(;;)
{
2017-10-18 18:01:12 +00:00
#ifndef TRACY_NO_EXIT
if( ShouldExit() ) return;
2017-10-18 18:01:12 +00:00
#endif
m_sock = listen.Accept();
if( m_sock ) break;
}
2017-09-11 20:51:47 +00:00
m_sock->Send( &welcome, sizeof( welcome ) );
LZ4_resetStream( m_stream );
2017-09-11 20:51:47 +00:00
for(;;)
{
2017-10-18 16:48:51 +00:00
const auto status = Dequeue( token );
if( status == ConnectionLost )
2017-09-11 20:51:47 +00:00
{
2017-10-18 16:48:51 +00:00
break;
2017-09-11 20:51:47 +00:00
}
2017-10-18 16:48:51 +00:00
else if( status == QueueEmpty )
2017-09-11 20:51:47 +00:00
{
2017-10-18 16:48:51 +00:00
if( ShouldExit() ) break;
if( m_bufferOffset != m_bufferStart ) CommitData();
2017-09-11 20:51:47 +00:00
std::this_thread::sleep_for( std::chrono::milliseconds( 10 ) );
}
2017-09-14 17:25:16 +00:00
while( m_sock->HasData() )
{
if( !HandleServerQuery() ) break;
2017-09-14 17:25:16 +00:00
}
}
2017-10-18 16:48:51 +00:00
if( ShouldExit() ) break;
}
QueueItem terminate;
terminate.hdr.type = QueueType::Terminate;
if( !SendData( (const char*)&terminate, 1 ) ) return;
for(;;)
{
if( m_sock->HasData() )
{
while( m_sock->HasData() )
{
if( !HandleServerQuery() )
{
if( m_bufferOffset != m_bufferStart ) CommitData();
return;
}
}
2017-10-18 16:48:51 +00:00
while( Dequeue( token ) == Success ) {}
if( m_bufferOffset != m_bufferStart )
{
if( !CommitData() ) return;
}
2017-10-18 16:48:51 +00:00
}
else
{
if( m_bufferOffset != m_bufferStart ) CommitData();
2017-10-18 16:48:51 +00:00
std::this_thread::sleep_for( std::chrono::milliseconds( 10 ) );
}
}
}
Profiler::DequeueStatus Profiler::Dequeue( moodycamel::ConsumerToken& token )
{
2017-11-02 11:56:13 +00:00
const auto sz = s_queue.try_dequeue_bulk( token, m_itemBuf, BulkSize );
2017-10-18 16:48:51 +00:00
if( sz > 0 )
{
for( size_t i=0; i<sz; i++ )
{
2017-11-11 14:22:55 +00:00
const auto item = m_itemBuf + i;
2017-11-11 14:41:21 +00:00
uint64_t ptr;
2017-11-11 14:22:55 +00:00
switch( item->hdr.type )
{
case QueueType::ZoneText:
2017-11-11 14:41:21 +00:00
ptr = item->zoneText.text;
SendString( ptr, (const char*)ptr, QueueType::CustomStringData );
tracy_free( (void*)ptr );
break;
case QueueType::Message:
ptr = item->message.text;
2017-11-11 14:22:55 +00:00
SendString( ptr, (const char*)ptr, QueueType::CustomStringData );
tracy_free( (void*)ptr );
break;
case QueueType::ZoneBeginAllocSrcLoc:
ptr = item->zoneBegin.srcloc;
SendSourceLocationPayload( ptr );
tracy_free( (void*)ptr );
break;
2017-11-11 14:22:55 +00:00
default:
break;
}
if( !AppendData( item, QueueDataSize[m_itemBuf[i].hdr.idx] ) ) return ConnectionLost;
2017-10-18 16:48:51 +00:00
}
}
else
{
return QueueEmpty;
2017-09-10 15:43:56 +00:00
}
2017-10-18 16:48:51 +00:00
return Success;
2017-09-10 15:43:56 +00:00
}
bool Profiler::AppendData( const void* data, size_t len )
{
auto ret = true;
ret = NeedDataSize( len );
memcpy( m_buffer + m_bufferOffset, data, len );
2017-11-11 13:35:46 +00:00
m_bufferOffset += int( len );
return ret;
}
bool Profiler::CommitData()
{
bool ret = SendData( m_buffer + m_bufferStart, m_bufferOffset - m_bufferStart );
if( m_bufferOffset > TargetFrameSize * 2 ) m_bufferOffset = 0;
m_bufferStart = m_bufferOffset;
return ret;
}
bool Profiler::NeedDataSize( size_t len )
{
bool ret = true;
if( m_bufferOffset - m_bufferStart + len > TargetFrameSize )
{
ret = CommitData();
}
return ret;
}
bool Profiler::SendData( const char* data, size_t len )
{
2017-11-02 16:37:10 +00:00
const lz4sz_t lz4sz = LZ4_compress_fast_continue( m_stream, data, m_lz4Buf + sizeof( lz4sz_t ), (int)len, LZ4Size, 1 );
memcpy( m_lz4Buf, &lz4sz, sizeof( lz4sz ) );
return m_sock->Send( m_lz4Buf, lz4sz + sizeof( lz4sz_t ) ) != -1;
}
bool Profiler::SendString( uint64_t str, const char* ptr, QueueType type )
{
2017-11-11 14:41:21 +00:00
assert( type == QueueType::StringData || type == QueueType::ThreadName || type == QueueType::CustomStringData || type == QueueType::PlotName );
2017-10-03 14:41:32 +00:00
QueueItem item;
item.hdr.type = type;
item.stringTransfer.ptr = str;
auto len = strlen( ptr );
assert( len <= std::numeric_limits<uint16_t>::max() );
2017-10-16 18:42:53 +00:00
auto l16 = uint16_t( len );
NeedDataSize( QueueDataSize[item.hdr.idx] + sizeof( l16 ) + l16 );
AppendData( &item, QueueDataSize[item.hdr.idx] );
AppendData( &l16, sizeof( l16 ) );
AppendData( ptr, l16 );
return true;
}
void Profiler::SendSourceLocation( uint64_t ptr )
{
auto srcloc = (const SourceLocation*)ptr;
QueueItem item;
item.hdr.type = QueueType::SourceLocation;
2017-10-03 14:41:32 +00:00
item.srcloc.ptr = ptr;
item.srcloc.file = (uint64_t)srcloc->file;
item.srcloc.function = (uint64_t)srcloc->function;
item.srcloc.line = srcloc->line;
item.srcloc.r = ( srcloc->color ) & 0xFF;
item.srcloc.g = ( srcloc->color >> 8 ) & 0xFF;
item.srcloc.b = ( srcloc->color >> 16 ) & 0xFF;
AppendData( &item, QueueDataSize[item.hdr.idx] );
}
bool Profiler::SendSourceLocationPayload( uint64_t _ptr )
{
auto ptr = (const char*)_ptr;
QueueItem item;
item.hdr.type = QueueType::SourceLocationPayload;
item.stringTransfer.ptr = _ptr;
const auto len = *((uint32_t*)ptr);
assert( len <= std::numeric_limits<uint16_t>::max() );
assert( len > 4 );
const auto l16 = uint16_t( len - 4 );
NeedDataSize( QueueDataSize[item.hdr.idx] + sizeof( l16 ) + l16 );
AppendData( &item, QueueDataSize[item.hdr.idx] );
AppendData( &l16, sizeof( l16 ) );
AppendData( ptr + 4, l16 );
return true;
}
2017-10-17 20:02:47 +00:00
static bool DontExit() { return false; }
bool Profiler::HandleServerQuery()
{
timeval tv;
tv.tv_sec = 0;
tv.tv_usec = 10000;
uint8_t type;
2017-10-17 20:02:47 +00:00
if( !m_sock->Read( &type, sizeof( type ), &tv, DontExit ) ) return false;
uint64_t ptr;
2017-10-17 20:02:47 +00:00
if( !m_sock->Read( &ptr, sizeof( ptr ), &tv, DontExit ) ) return false;
switch( type )
{
case ServerQueryString:
SendString( ptr, (const char*)ptr, QueueType::StringData );
break;
2017-09-21 23:55:02 +00:00
case ServerQueryThreadString:
2017-09-22 23:38:26 +00:00
if( ptr == m_mainThread )
{
SendString( ptr, "Main thread", QueueType::ThreadName );
}
else
{
SendString( ptr, GetThreadName( ptr ), QueueType::ThreadName );
}
2017-09-21 23:55:02 +00:00
break;
case ServerQuerySourceLocation:
SendSourceLocation( ptr );
break;
2017-10-13 01:36:59 +00:00
case ServerQueryPlotName:
SendString( ptr, (const char*)ptr, QueueType::PlotName );
break;
2017-10-18 16:48:51 +00:00
case ServerQueryTerminate:
return false;
default:
assert( false );
break;
}
return true;
}
2017-09-23 19:33:05 +00:00
void Profiler::CalibrateTimer()
{
2017-10-03 13:35:43 +00:00
#ifdef TRACY_RDTSCP_SUPPORTED
uint32_t cpu;
2017-09-23 19:33:05 +00:00
std::atomic_signal_fence( std::memory_order_acq_rel );
const auto t0 = std::chrono::high_resolution_clock::now();
2017-10-03 13:35:43 +00:00
const auto r0 = tracy_rdtscp( cpu );
2017-09-23 19:33:05 +00:00
std::atomic_signal_fence( std::memory_order_acq_rel );
std::this_thread::sleep_for( std::chrono::milliseconds( 100 ) );
std::atomic_signal_fence( std::memory_order_acq_rel );
const auto t1 = std::chrono::high_resolution_clock::now();
2017-10-03 13:35:43 +00:00
const auto r1 = tracy_rdtscp( cpu );
2017-09-23 19:33:05 +00:00
std::atomic_signal_fence( std::memory_order_acq_rel );
const auto dt = std::chrono::duration_cast<std::chrono::nanoseconds>( t1 - t0 ).count();
const auto dr = r1 - r0;
m_timerMul = double( dt ) / double( dr );
#else
m_timerMul = 1.;
2017-09-23 19:33:05 +00:00
#endif
}
2017-09-24 14:02:09 +00:00
class FakeZone
{
public:
2017-10-01 15:42:22 +00:00
FakeZone( const SourceLocation* srcloc ) : m_id( (uint64_t)srcloc ) {}
2017-09-24 14:02:09 +00:00
~FakeZone() {}
private:
2017-10-01 15:42:22 +00:00
volatile uint64_t m_id;
2017-09-24 14:02:09 +00:00
};
void Profiler::CalibrateDelay()
{
enum { Iterations = 50000 };
enum { Events = Iterations * 2 }; // start + end
static_assert( Events * 2 < QueuePrealloc, "Delay calibration loop will allocate memory in queue" );
2017-10-10 23:04:21 +00:00
moodycamel::ProducerToken ptoken_detail( s_queue );
moodycamel::ConcurrentQueue<QueueItem>::ExplicitProducer* ptoken = s_queue.get_explicit_producer( ptoken_detail );
2017-09-24 14:02:09 +00:00
for( int i=0; i<Iterations; i++ )
{
static const tracy::SourceLocation __tracy_source_location { __FUNCTION__, __FILE__, (uint32_t)__LINE__, 0 };
{
2017-10-03 12:50:55 +00:00
Magic magic;
2017-10-10 23:27:22 +00:00
auto& tail = ptoken->get_tail_index();
2017-10-10 23:04:21 +00:00
auto item = ptoken->enqueue_begin<moodycamel::CanAlloc>( magic );
item->hdr.type = QueueType::ZoneBegin;
2017-10-03 14:41:32 +00:00
item->zoneBegin.thread = GetThreadHandle();
2017-10-01 17:11:01 +00:00
item->zoneBegin.time = GetTime( item->zoneBegin.cpu );
item->zoneBegin.srcloc = (uint64_t)&__tracy_source_location;
2017-10-10 23:27:22 +00:00
tail.store( magic + 1, std::memory_order_release );
}
{
2017-10-03 12:50:55 +00:00
Magic magic;
2017-10-10 23:27:22 +00:00
auto& tail = ptoken->get_tail_index();
2017-10-10 23:04:21 +00:00
auto item = ptoken->enqueue_begin<moodycamel::CanAlloc>( magic );
item->hdr.type = QueueType::ZoneEnd;
2017-10-03 14:41:32 +00:00
item->zoneEnd.thread = 0;
2017-10-01 17:11:01 +00:00
item->zoneEnd.time = GetTime( item->zoneEnd.cpu );
2017-10-10 23:27:22 +00:00
tail.store( magic + 1, std::memory_order_release );
}
2017-09-24 14:02:09 +00:00
}
const auto f0 = GetTime();
2017-09-24 14:02:09 +00:00
for( int i=0; i<Iterations; i++ )
{
2017-10-16 18:42:53 +00:00
static const tracy::SourceLocation __tracy_source_location { __FUNCTION__, __FILE__, (uint32_t)__LINE__, 0 };
FakeZone ___tracy_scoped_zone( &__tracy_source_location );
2017-09-24 14:02:09 +00:00
}
const auto t0 = GetTime();
2017-09-24 14:02:09 +00:00
for( int i=0; i<Iterations; i++ )
{
static const tracy::SourceLocation __tracy_source_location { __FUNCTION__, __FILE__, (uint32_t)__LINE__, 0 };
{
2017-10-03 12:50:55 +00:00
Magic magic;
2017-10-10 23:27:22 +00:00
auto& tail = ptoken->get_tail_index();
2017-10-10 23:04:21 +00:00
auto item = ptoken->enqueue_begin<moodycamel::CanAlloc>( magic );
item->hdr.type = QueueType::ZoneBegin;
2017-10-03 14:41:32 +00:00
item->zoneBegin.thread = GetThreadHandle();
2017-10-01 17:11:01 +00:00
item->zoneBegin.time = GetTime( item->zoneBegin.cpu );
item->zoneBegin.srcloc = (uint64_t)&__tracy_source_location;
2017-10-10 23:27:22 +00:00
tail.store( magic + 1, std::memory_order_release );
}
{
2017-10-03 12:50:55 +00:00
Magic magic;
2017-10-10 23:27:22 +00:00
auto& tail = ptoken->get_tail_index();
2017-10-10 23:04:21 +00:00
auto item = ptoken->enqueue_begin<moodycamel::CanAlloc>( magic );
item->hdr.type = QueueType::ZoneEnd;
2017-10-03 14:41:32 +00:00
item->zoneEnd.thread = 0;
2017-10-01 17:11:01 +00:00
item->zoneEnd.time = GetTime( item->zoneEnd.cpu );
2017-10-10 23:27:22 +00:00
tail.store( magic + 1, std::memory_order_release );
}
2017-09-24 14:02:09 +00:00
}
const auto t1 = GetTime();
2017-09-24 14:02:09 +00:00
const auto dt = t1 - t0;
const auto df = t0 - f0;
m_delay = ( dt - df ) / Events;
2017-10-16 18:42:53 +00:00
auto mindiff = std::numeric_limits<int64_t>::max();
2017-09-29 16:29:39 +00:00
for( int i=0; i<Iterations * 10; i++ )
{
const auto t0 = GetTime();
const auto t1 = GetTime();
2017-09-29 16:29:39 +00:00
const auto dt = t1 - t0;
if( dt > 0 && dt < mindiff ) mindiff = dt;
}
m_resolution = mindiff;
2017-09-24 14:02:09 +00:00
enum { Bulk = 1000 };
moodycamel::ConsumerToken token( s_queue );
int left = Events * 2;
QueueItem item[Bulk];
while( left != 0 )
{
const auto sz = s_queue.try_dequeue_bulk( token, item, std::min( left, (int)Bulk ) );
assert( sz > 0 );
2017-10-16 18:42:53 +00:00
left -= (int)sz;
2017-09-24 14:02:09 +00:00
}
}
2017-09-10 15:43:56 +00:00
}
#endif