2017-09-14 00:00:13 +00:00
|
|
|
#ifndef __TRACYEVENT_HPP__
|
|
|
|
#define __TRACYEVENT_HPP__
|
|
|
|
|
2017-10-08 21:03:38 +00:00
|
|
|
#include <limits>
|
|
|
|
|
2017-09-15 18:17:39 +00:00
|
|
|
#include "TracyVector.hpp"
|
2017-09-14 00:00:13 +00:00
|
|
|
|
|
|
|
namespace tracy
|
|
|
|
{
|
|
|
|
|
2017-11-11 00:39:34 +00:00
|
|
|
#pragma pack( 1 )
|
|
|
|
|
|
|
|
struct StringRef
|
|
|
|
{
|
2017-11-11 01:02:47 +00:00
|
|
|
enum Type { Ptr, Idx };
|
|
|
|
|
|
|
|
StringRef() {}
|
|
|
|
StringRef( Type t, uint64_t data )
|
|
|
|
: isidx( t == Idx )
|
|
|
|
{
|
|
|
|
if( isidx )
|
|
|
|
{
|
2017-11-11 01:31:51 +00:00
|
|
|
stridx = data;
|
2017-11-11 01:02:47 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strptr = data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-11 00:39:34 +00:00
|
|
|
union
|
|
|
|
{
|
|
|
|
uint64_t strptr;
|
2017-11-11 01:31:51 +00:00
|
|
|
uint64_t stridx;
|
2017-11-11 00:39:34 +00:00
|
|
|
};
|
2017-11-11 01:02:47 +00:00
|
|
|
bool isidx;
|
2017-11-11 00:39:34 +00:00
|
|
|
};
|
|
|
|
|
2017-09-28 17:06:39 +00:00
|
|
|
struct TextData
|
|
|
|
{
|
|
|
|
const char* userText;
|
2017-09-28 17:28:24 +00:00
|
|
|
uint64_t zoneName; // ptr
|
2017-09-28 17:06:39 +00:00
|
|
|
};
|
|
|
|
|
2017-11-05 19:54:49 +00:00
|
|
|
struct SourceLocation
|
|
|
|
{
|
2017-11-11 01:02:47 +00:00
|
|
|
StringRef function;
|
|
|
|
StringRef file;
|
2017-11-05 19:54:49 +00:00
|
|
|
uint32_t line;
|
2017-11-11 01:02:47 +00:00
|
|
|
uint32_t color;
|
2017-11-05 19:54:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum { SourceLocationSize = sizeof( SourceLocation ) };
|
|
|
|
|
|
|
|
|
2017-10-22 13:37:24 +00:00
|
|
|
struct ZoneEvent
|
2017-09-14 00:00:13 +00:00
|
|
|
{
|
|
|
|
int64_t start;
|
|
|
|
int64_t end;
|
2017-11-05 20:24:50 +00:00
|
|
|
int32_t srcloc;
|
2017-10-01 17:16:44 +00:00
|
|
|
int8_t cpu_start;
|
|
|
|
int8_t cpu_end;
|
2017-09-14 00:00:13 +00:00
|
|
|
|
2017-10-22 14:40:15 +00:00
|
|
|
int32_t text;
|
2017-10-22 13:37:24 +00:00
|
|
|
Vector<ZoneEvent*> child;
|
2017-09-14 00:00:13 +00:00
|
|
|
};
|
|
|
|
|
2017-10-22 13:37:24 +00:00
|
|
|
enum { ZoneEventSize = sizeof( ZoneEvent ) };
|
2017-09-14 00:00:13 +00:00
|
|
|
|
2017-10-04 14:16:40 +00:00
|
|
|
|
|
|
|
struct LockEvent
|
|
|
|
{
|
2017-10-04 16:17:31 +00:00
|
|
|
enum class Type : uint8_t
|
|
|
|
{
|
|
|
|
Wait,
|
|
|
|
Obtain,
|
|
|
|
Release
|
|
|
|
};
|
|
|
|
|
|
|
|
int64_t time;
|
2017-11-05 20:24:50 +00:00
|
|
|
int32_t srcloc;
|
2017-10-08 21:03:38 +00:00
|
|
|
uint64_t waitList;
|
2017-10-29 15:49:22 +00:00
|
|
|
uint16_t thread : 6;
|
|
|
|
uint16_t lockingThread : 6;
|
|
|
|
uint16_t type : 2;
|
2017-10-04 17:42:44 +00:00
|
|
|
uint8_t lockCount;
|
2017-10-04 14:16:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum { LockEventSize = sizeof( LockEvent ) };
|
|
|
|
|
2017-10-08 21:03:38 +00:00
|
|
|
enum { MaxLockThreads = sizeof( LockEvent::waitList ) * 8 };
|
|
|
|
static_assert( std::numeric_limits<decltype(LockEvent::lockCount)>::max() >= MaxLockThreads, "Not enough space for lock count." );
|
|
|
|
|
2017-10-04 16:12:11 +00:00
|
|
|
#pragma pack()
|
|
|
|
|
2017-09-14 00:00:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|