tracy/server/TracyEvent.hpp
Bartosz Taudul cc8683a399 Store TextData pointer as an index in array.
This further reduces ZoneEvent size by 4 bytes.
2017-10-22 16:40:15 +02:00

62 lines
968 B
C++

#ifndef __TRACYEVENT_HPP__
#define __TRACYEVENT_HPP__
#include <limits>
#include "TracyVector.hpp"
namespace tracy
{
struct TextData
{
const char* userText;
uint64_t zoneName; // ptr
};
#pragma pack( 1 )
struct ZoneEvent
{
int64_t start;
int64_t end;
uint64_t srcloc;
int8_t cpu_start;
int8_t cpu_end;
int32_t text;
Vector<ZoneEvent*> child;
};
enum { ZoneEventSize = sizeof( ZoneEvent ) };
struct LockEvent
{
enum class Type : uint8_t
{
Wait,
Obtain,
Release
};
int64_t time;
uint64_t srcloc;
uint64_t waitList;
uint8_t thread;
uint8_t lockingThread;
uint8_t lockCount;
Type type;
};
enum { LockEventSize = sizeof( LockEvent ) };
enum { MaxLockThreads = sizeof( LockEvent::waitList ) * 8 };
static_assert( std::numeric_limits<decltype(LockEvent::lockCount)>::max() >= MaxLockThreads, "Not enough space for lock count." );
#pragma pack()
}
#endif