tracy/client/TracyScoped.hpp

115 lines
3.0 KiB
C++
Raw Normal View History

2017-09-10 18:09:57 +00:00
#ifndef __TRACYSCOPED_HPP__
#define __TRACYSCOPED_HPP__
#include <stdint.h>
2017-09-28 19:10:02 +00:00
#include <string.h>
2017-09-10 18:09:57 +00:00
#include "../common/TracySystem.hpp"
#include "../common/TracyAlign.hpp"
#include "../common/TracyAlloc.hpp"
2017-09-10 18:09:57 +00:00
#include "TracyProfiler.hpp"
namespace tracy
{
class ScopedZone
{
public:
tracy_force_inline ScopedZone( const SourceLocationData* srcloc, bool is_active = true )
#ifdef TRACY_ON_DEMAND
2019-02-19 17:38:08 +00:00
: m_active( is_active && GetProfiler().IsConnected() )
#else
: m_active( is_active )
#endif
2017-09-10 18:09:57 +00:00
{
2018-07-10 19:55:52 +00:00
if( !m_active ) return;
#ifdef TRACY_ON_DEMAND
m_connectionId = GetProfiler().ConnectionId();
#endif
TracyLfqPrepare( QueueType::ZoneBegin );
2019-08-12 17:18:17 +00:00
MemWrite( &item->zoneBegin.time, Profiler::GetTime() );
MemWrite( &item->zoneBegin.srcloc, (uint64_t)srcloc );
TracyLfqCommit;
2017-09-10 18:09:57 +00:00
}
tracy_force_inline ScopedZone( const SourceLocationData* srcloc, int depth, bool is_active = true )
#ifdef TRACY_ON_DEMAND
2019-02-19 17:38:08 +00:00
: m_active( is_active && GetProfiler().IsConnected() )
#else
: m_active( is_active )
#endif
2018-06-21 22:56:01 +00:00
{
2018-07-10 19:55:52 +00:00
if( !m_active ) return;
#ifdef TRACY_ON_DEMAND
m_connectionId = GetProfiler().ConnectionId();
#endif
TracyLfqPrepare( QueueType::ZoneBeginCallstack );
2019-08-12 17:18:17 +00:00
MemWrite( &item->zoneBegin.time, Profiler::GetTime() );
2018-06-21 22:56:01 +00:00
MemWrite( &item->zoneBegin.srcloc, (uint64_t)srcloc );
TracyLfqCommit;
2018-06-21 22:56:01 +00:00
GetProfiler().SendCallstack( depth );
2018-06-21 22:56:01 +00:00
}
2017-10-03 13:10:25 +00:00
tracy_force_inline ~ScopedZone()
2017-09-10 18:09:57 +00:00
{
2018-07-10 19:55:52 +00:00
if( !m_active ) return;
#ifdef TRACY_ON_DEMAND
if( GetProfiler().ConnectionId() != m_connectionId ) return;
#endif
TracyLfqPrepare( QueueType::ZoneEnd );
2019-08-12 17:18:17 +00:00
MemWrite( &item->zoneEnd.time, Profiler::GetTime() );
TracyLfqCommit;
2017-09-10 18:09:57 +00:00
}
2017-10-03 13:10:25 +00:00
tracy_force_inline void Text( const char* txt, size_t size )
2017-09-27 00:18:17 +00:00
{
2018-07-10 19:55:52 +00:00
if( !m_active ) return;
#ifdef TRACY_ON_DEMAND
if( GetProfiler().ConnectionId() != m_connectionId ) return;
#endif
auto ptr = (char*)tracy_malloc( size+1 );
2017-09-27 00:18:17 +00:00
memcpy( ptr, txt, size );
ptr[size] = '\0';
TracyLfqPrepare( QueueType::ZoneText );
MemWrite( &item->zoneText.text, (uint64_t)ptr );
TracyLfqCommit;
2017-09-27 00:18:17 +00:00
}
2018-06-29 14:01:31 +00:00
tracy_force_inline void Name( const char* txt, size_t size )
{
2018-07-10 19:55:52 +00:00
if( !m_active ) return;
#ifdef TRACY_ON_DEMAND
if( GetProfiler().ConnectionId() != m_connectionId ) return;
#endif
2018-06-29 14:01:31 +00:00
auto ptr = (char*)tracy_malloc( size+1 );
memcpy( ptr, txt, size );
ptr[size] = '\0';
TracyLfqPrepare( QueueType::ZoneName );
2018-06-29 14:01:31 +00:00
MemWrite( &item->zoneText.text, (uint64_t)ptr );
TracyLfqCommit;
2018-06-29 14:01:31 +00:00
}
tracy_force_inline void Value( uint64_t value )
{
if( !m_active ) return;
#ifdef TRACY_ON_DEMAND
if( GetProfiler().ConnectionId() != m_connectionId ) return;
#endif
TracyLfqPrepare( QueueType::ZoneValue );
MemWrite( &item->zoneValue.value, value );
TracyLfqCommit;
}
2017-09-10 18:09:57 +00:00
private:
const bool m_active;
#ifdef TRACY_ON_DEMAND
uint64_t m_connectionId;
#endif
2017-09-10 18:09:57 +00:00
};
}
#endif