mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Send callstack payload without iteration, if possible.
This commit is contained in:
parent
a7ace6ef9e
commit
a2c6848433
@ -557,10 +557,17 @@ void Profiler::SendCallstackPayload( uint64_t _ptr )
|
||||
AppendData( &item, QueueDataSize[(int)QueueType::CallstackPayload] );
|
||||
AppendData( &l16, sizeof( l16 ) );
|
||||
|
||||
for( uintptr_t i=0; i<sz; i++ )
|
||||
if( sizeof( uintptr_t ) == sizeof( uint64_t ) )
|
||||
{
|
||||
const auto val = uint64_t( *ptr++ );
|
||||
AppendData( &val, sizeof( uint64_t ) );
|
||||
AppendData( ptr, sizeof( uint64_t ) * sz );
|
||||
}
|
||||
else
|
||||
{
|
||||
for( uintptr_t i=0; i<sz; i++ )
|
||||
{
|
||||
const auto val = uint64_t( *ptr++ );
|
||||
AppendData( &val, sizeof( uint64_t ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user