mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
64-bit only version of callstack payload sender.
This commit is contained in:
parent
9e9c7db5b1
commit
23fe3e623d
@ -2149,6 +2149,25 @@ void Profiler::SendCallstackPayload( uint64_t _ptr )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Profiler::SendCallstackPayload64( uint64_t _ptr )
|
||||||
|
{
|
||||||
|
auto ptr = (uint64_t*)_ptr;
|
||||||
|
|
||||||
|
QueueItem item;
|
||||||
|
MemWrite( &item.hdr.type, QueueType::CallstackPayload );
|
||||||
|
MemWrite( &item.stringTransfer.ptr, _ptr );
|
||||||
|
|
||||||
|
const auto sz = *ptr++;
|
||||||
|
const auto len = sz * sizeof( uint64_t );
|
||||||
|
const auto l16 = uint16_t( len );
|
||||||
|
|
||||||
|
NeedDataSize( QueueDataSize[(int)QueueType::CallstackPayload] + sizeof( l16 ) + l16 );
|
||||||
|
|
||||||
|
AppendDataUnsafe( &item, QueueDataSize[(int)QueueType::CallstackPayload] );
|
||||||
|
AppendDataUnsafe( &l16, sizeof( l16 ) );
|
||||||
|
AppendDataUnsafe( ptr, sizeof( uint64_t ) * sz );
|
||||||
|
}
|
||||||
|
|
||||||
void Profiler::SendCallstackAlloc( uint64_t _ptr )
|
void Profiler::SendCallstackAlloc( uint64_t _ptr )
|
||||||
{
|
{
|
||||||
auto ptr = (const char*)_ptr;
|
auto ptr = (const char*)_ptr;
|
||||||
|
@ -533,6 +533,7 @@ private:
|
|||||||
void SendSourceLocation( uint64_t ptr );
|
void SendSourceLocation( uint64_t ptr );
|
||||||
void SendSourceLocationPayload( uint64_t ptr );
|
void SendSourceLocationPayload( uint64_t ptr );
|
||||||
void SendCallstackPayload( uint64_t ptr );
|
void SendCallstackPayload( uint64_t ptr );
|
||||||
|
void SendCallstackPayload64( uint64_t ptr );
|
||||||
void SendCallstackAlloc( uint64_t ptr );
|
void SendCallstackAlloc( uint64_t ptr );
|
||||||
void SendCallstackFrame( uint64_t ptr );
|
void SendCallstackFrame( uint64_t ptr );
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user