tracy/TracyLua.hpp

423 lines
12 KiB
C++
Raw Normal View History

#ifndef __TRACYLUA_HPP__
#define __TRACYLUA_HPP__
2017-11-09 18:04:04 +00:00
// Include this file after you include lua headers.
2017-11-06 14:16:12 +00:00
#ifndef TRACY_ENABLE
2017-11-06 14:16:12 +00:00
#include <string.h>
namespace tracy
{
namespace detail
{
static inline int noop( lua_State* L ) { return 0; }
}
static inline void LuaRegister( lua_State* L )
{
lua_newtable( L );
lua_pushcfunction( L, detail::noop );
lua_setfield( L, -2, "ZoneBegin" );
lua_pushcfunction( L, detail::noop );
lua_setfield( L, -2, "ZoneBeginN" );
lua_pushcfunction( L, detail::noop );
2019-02-28 19:16:19 +00:00
lua_setfield( L, -2, "ZoneBeginS" );
lua_pushcfunction( L, detail::noop );
lua_setfield( L, -2, "ZoneBeginNS" );
lua_pushcfunction( L, detail::noop );
lua_setfield( L, -2, "ZoneEnd" );
2017-11-06 23:28:23 +00:00
lua_pushcfunction( L, detail::noop );
2017-11-06 23:35:15 +00:00
lua_setfield( L, -2, "ZoneText" );
lua_pushcfunction( L, detail::noop );
2018-06-29 14:01:31 +00:00
lua_setfield( L, -2, "ZoneName" );
lua_pushcfunction( L, detail::noop );
2017-11-06 23:28:23 +00:00
lua_setfield( L, -2, "Message" );
lua_setglobal( L, "tracy" );
}
2017-11-06 23:35:15 +00:00
static inline char* FindEnd( char* ptr )
{
unsigned int cnt = 1;
while( cnt != 0 )
{
if( *ptr == '(' ) cnt++;
else if( *ptr == ')' ) cnt--;
ptr++;
}
return ptr;
}
static inline void LuaRemove( char* script )
{
while( *script )
{
2017-11-06 23:28:23 +00:00
if( strncmp( script, "tracy.", 6 ) == 0 )
{
2017-11-06 23:28:23 +00:00
if( strncmp( script + 6, "Zone", 4 ) == 0 )
{
2017-11-06 23:28:23 +00:00
if( strncmp( script + 10, "End()", 5 ) == 0 )
{
memset( script, ' ', 15 );
script += 15;
}
else if( strncmp( script + 10, "Begin()", 7 ) == 0 )
{
memset( script, ' ', 17 );
script += 17;
}
2017-11-06 23:35:15 +00:00
else if( strncmp( script + 10, "Text(", 5 ) == 0 )
{
auto end = FindEnd( script + 15 );
memset( script, ' ', end - script );
script = end;
}
2018-06-29 14:01:31 +00:00
else if( strncmp( script + 10, "Name(", 5 ) == 0 )
{
auto end = FindEnd( script + 15 );
memset( script, ' ', end - script );
script = end;
}
2017-11-15 13:14:48 +00:00
else if( strncmp( script + 10, "BeginN(", 7 ) == 0 )
{
auto end = FindEnd( script + 17 );
memset( script, ' ', end - script );
script = end;
}
2019-02-28 19:16:19 +00:00
else if( strncmp( script + 10, "BeginS(", 7 ) == 0 )
{
auto end = FindEnd( script + 17 );
memset( script, ' ', end - script );
script = end;
}
else if( strncmp( script + 10, "BeginNS(", 8 ) == 0 )
{
auto end = FindEnd( script + 18 );
memset( script, ' ', end - script );
script = end;
}
2017-11-06 23:28:23 +00:00
else
{
script += 10;
}
}
2017-11-06 23:28:23 +00:00
else if( strncmp( script + 6, "Message(", 8 ) == 0 )
{
2017-11-06 23:35:15 +00:00
auto end = FindEnd( script + 14 );
2017-11-06 23:28:23 +00:00
memset( script, ' ', end - script );
script = end;
}
else
{
2017-11-06 23:28:23 +00:00
script += 6;
}
}
else
{
script++;
}
}
}
2017-11-06 14:16:12 +00:00
}
#else
2018-07-12 10:53:35 +00:00
#include <assert.h>
2017-11-25 14:32:44 +00:00
#include "common/TracyColor.hpp"
#include "common/TracyAlign.hpp"
2019-03-05 01:07:28 +00:00
#include "common/TracyForceInline.hpp"
2017-11-06 14:16:12 +00:00
#include "common/TracySystem.hpp"
#include "client/TracyProfiler.hpp"
namespace tracy
{
2018-07-13 18:20:37 +00:00
#ifdef TRACY_ON_DEMAND
TRACY_API LuaZoneState& GetLuaZoneState();
2018-07-13 18:20:37 +00:00
#endif
2018-07-12 10:53:35 +00:00
namespace detail
{
#ifdef TRACY_HAS_CALLSTACK
2019-03-05 01:07:28 +00:00
static tracy_force_inline void SendLuaCallstack( lua_State* L, uint32_t depth )
2019-02-28 19:16:19 +00:00
{
assert( depth <= 64 );
lua_Debug dbg[64];
const char* func[64];
uint32_t fsz[64];
uint32_t ssz[64];
uint32_t spaceNeeded = 4; // cnt
uint32_t cnt;
for( cnt=0; cnt<depth; cnt++ )
{
if( lua_getstack( L, cnt+1, dbg+cnt ) == 0 ) break;
lua_getinfo( L, "Snl", dbg+cnt );
func[cnt] = dbg[cnt].name ? dbg[cnt].name : dbg[cnt].short_src;
fsz[cnt] = uint32_t( strlen( func[cnt] ) );
ssz[cnt] = uint32_t( strlen( dbg[cnt].source ) );
spaceNeeded += fsz[cnt] + ssz[cnt];
}
spaceNeeded += cnt * ( 4 + 4 + 4 ); // source line, function string length, source string length
auto ptr = (char*)tracy_malloc( spaceNeeded + 4 );
auto dst = ptr;
memcpy( dst, &spaceNeeded, 4 ); dst += 4;
memcpy( dst, &cnt, 4 ); dst += 4;
for( uint32_t i=0; i<cnt; i++ )
{
const uint32_t line = dbg[i].currentline;
memcpy( dst, &line, 4 ); dst += 4;
memcpy( dst, fsz+i, 4 ); dst += 4;
memcpy( dst, func[i], fsz[i] ); dst += fsz[i];
memcpy( dst, ssz+i, 4 ); dst += 4;
memcpy( dst, dbg[i].source, ssz[i] ), dst += ssz[i];
}
assert( dst - ptr == spaceNeeded + 4 );
TracyLfqPrepare( QueueType::CallstackAlloc );
MemWrite( &item->callstackAlloc.ptr, (uint64_t)ptr );
MemWrite( &item->callstackAlloc.nativePtr, (uint64_t)Callstack( depth ) );
TracyLfqCommit;
2019-02-28 19:16:19 +00:00
}
static inline int LuaZoneBeginS( lua_State* L )
{
#ifdef TRACY_ON_DEMAND
const auto zoneCnt = GetLuaZoneState().counter++;
if( zoneCnt != 0 && !GetLuaZoneState().active ) return 0;
GetLuaZoneState().active = GetProfiler().IsConnected();
if( !GetLuaZoneState().active ) return 0;
#endif
lua_Debug dbg;
lua_getstack( L, 1, &dbg );
lua_getinfo( L, "Snl", &dbg );
const auto srcloc = Profiler::AllocSourceLocation( dbg.currentline, dbg.source, dbg.name ? dbg.name : dbg.short_src );
2019-02-28 19:16:19 +00:00
TracyLfqPrepare( QueueType::ZoneBeginAllocSrcLocCallstack );
2019-08-12 17:18:17 +00:00
MemWrite( &item->zoneBegin.time, Profiler::GetTime() );
MemWrite( &item->zoneBegin.srcloc, srcloc );
TracyLfqCommit;
2019-02-28 19:16:19 +00:00
#ifdef TRACY_CALLSTACK
const uint32_t depth = TRACY_CALLSTACK;
#else
const auto depth = uint32_t( lua_tointeger( L, 1 ) );
#endif
SendLuaCallstack( L, depth );
return 0;
}
static inline int LuaZoneBeginNS( lua_State* L )
{
#ifdef TRACY_ON_DEMAND
const auto zoneCnt = GetLuaZoneState().counter++;
if( zoneCnt != 0 && !GetLuaZoneState().active ) return 0;
GetLuaZoneState().active = GetProfiler().IsConnected();
if( !GetLuaZoneState().active ) return 0;
#endif
lua_Debug dbg;
lua_getstack( L, 1, &dbg );
lua_getinfo( L, "Snl", &dbg );
size_t nsz;
const auto name = lua_tolstring( L, 1, &nsz );
const auto srcloc = Profiler::AllocSourceLocation( dbg.currentline, dbg.source, dbg.name ? dbg.name : dbg.short_src, name, nsz );
2019-02-28 19:16:19 +00:00
TracyLfqPrepare( QueueType::ZoneBeginAllocSrcLocCallstack );
2019-08-12 17:18:17 +00:00
MemWrite( &item->zoneBegin.time, Profiler::GetTime() );
MemWrite( &item->zoneBegin.srcloc, srcloc );
TracyLfqCommit;
2019-02-28 19:16:19 +00:00
#ifdef TRACY_CALLSTACK
const uint32_t depth = TRACY_CALLSTACK;
#else
2019-03-05 18:48:02 +00:00
const auto depth = uint32_t( lua_tointeger( L, 2 ) );
2019-02-28 19:16:19 +00:00
#endif
SendLuaCallstack( L, depth );
return 0;
}
#endif
2019-02-28 19:16:19 +00:00
static inline int LuaZoneBegin( lua_State* L )
{
#if defined TRACY_HAS_CALLSTACK && defined TRACY_CALLSTACK
2019-02-28 19:16:19 +00:00
return LuaZoneBeginS( L );
#else
2018-07-12 10:53:35 +00:00
#ifdef TRACY_ON_DEMAND
2019-02-19 18:33:37 +00:00
const auto zoneCnt = GetLuaZoneState().counter++;
if( zoneCnt != 0 && !GetLuaZoneState().active ) return 0;
GetLuaZoneState().active = GetProfiler().IsConnected();
if( !GetLuaZoneState().active ) return 0;
2018-07-12 10:53:35 +00:00
#endif
lua_Debug dbg;
lua_getstack( L, 1, &dbg );
lua_getinfo( L, "Snl", &dbg );
const auto srcloc = Profiler::AllocSourceLocation( dbg.currentline, dbg.source, dbg.name ? dbg.name : dbg.short_src );
TracyLfqPrepare( QueueType::ZoneBeginAllocSrcLoc );
2019-08-12 17:18:17 +00:00
MemWrite( &item->zoneBegin.time, Profiler::GetTime() );
MemWrite( &item->zoneBegin.srcloc, srcloc );
TracyLfqCommit;
return 0;
2019-02-28 19:16:19 +00:00
#endif
}
static inline int LuaZoneBeginN( lua_State* L )
{
#if defined TRACY_HAS_CALLSTACK && defined TRACY_CALLSTACK
2019-02-28 19:16:19 +00:00
return LuaZoneBeginNS( L );
#else
2018-07-12 10:53:35 +00:00
#ifdef TRACY_ON_DEMAND
2019-02-19 18:33:37 +00:00
const auto zoneCnt = GetLuaZoneState().counter++;
if( zoneCnt != 0 && !GetLuaZoneState().active ) return 0;
GetLuaZoneState().active = GetProfiler().IsConnected();
if( !GetLuaZoneState().active ) return 0;
2018-07-12 10:53:35 +00:00
#endif
lua_Debug dbg;
lua_getstack( L, 1, &dbg );
lua_getinfo( L, "Snl", &dbg );
size_t nsz;
const auto name = lua_tolstring( L, 1, &nsz );
const auto srcloc = Profiler::AllocSourceLocation( dbg.currentline, dbg.source, dbg.name ? dbg.name : dbg.short_src, name, nsz );
TracyLfqPrepare( QueueType::ZoneBeginAllocSrcLoc );
2019-08-12 17:18:17 +00:00
MemWrite( &item->zoneBegin.time, Profiler::GetTime() );
MemWrite( &item->zoneBegin.srcloc, srcloc );
TracyLfqCommit;
return 0;
2019-02-28 19:16:19 +00:00
#endif
}
static inline int LuaZoneEnd( lua_State* L )
2017-11-06 23:35:15 +00:00
{
2018-07-12 10:53:35 +00:00
#ifdef TRACY_ON_DEMAND
2019-02-19 18:33:37 +00:00
assert( GetLuaZoneState().counter != 0 );
GetLuaZoneState().counter--;
if( !GetLuaZoneState().active ) return 0;
2019-02-19 17:38:08 +00:00
if( !GetProfiler().IsConnected() )
2018-07-12 10:53:35 +00:00
{
2019-02-19 18:33:37 +00:00
GetLuaZoneState().active = false;
2018-07-12 10:53:35 +00:00
return 0;
}
#endif
TracyLfqPrepare( QueueType::ZoneEnd );
2019-08-12 17:18:17 +00:00
MemWrite( &item->zoneEnd.time, Profiler::GetTime() );
TracyLfqCommit;
2017-11-06 23:35:15 +00:00
return 0;
}
static inline int LuaZoneText( lua_State* L )
2017-11-11 16:56:41 +00:00
{
2018-07-12 10:53:35 +00:00
#ifdef TRACY_ON_DEMAND
2019-02-19 18:33:37 +00:00
if( !GetLuaZoneState().active ) return 0;
2019-02-19 17:38:08 +00:00
if( !GetProfiler().IsConnected() )
2018-07-12 10:53:35 +00:00
{
2019-02-19 18:33:37 +00:00
GetLuaZoneState().active = false;
2018-07-12 10:53:35 +00:00
return 0;
}
#endif
2017-11-11 16:56:41 +00:00
auto txt = lua_tostring( L, 1 );
const auto size = strlen( txt );
auto ptr = (char*)tracy_malloc( size+1 );
memcpy( ptr, txt, size );
ptr[size] = '\0';
TracyLfqPrepare( QueueType::ZoneText );
MemWrite( &item->zoneText.text, (uint64_t)ptr );
TracyLfqCommit;
2017-11-11 16:56:41 +00:00
return 0;
}
2018-06-29 14:01:31 +00:00
static inline int LuaZoneName( lua_State* L )
{
2018-07-12 10:53:35 +00:00
#ifdef TRACY_ON_DEMAND
2019-02-19 18:33:37 +00:00
if( !GetLuaZoneState().active ) return 0;
2019-02-19 17:38:08 +00:00
if( !GetProfiler().IsConnected() )
2018-07-12 10:53:35 +00:00
{
2019-02-19 18:33:37 +00:00
GetLuaZoneState().active = false;
2018-07-12 10:53:35 +00:00
return 0;
}
#endif
2018-06-29 14:01:31 +00:00
auto txt = lua_tostring( L, 1 );
const auto size = strlen( txt );
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
return 0;
}
2017-11-06 23:28:23 +00:00
static inline int LuaMessage( lua_State* L )
{
2018-07-12 10:53:35 +00:00
#ifdef TRACY_ON_DEMAND
2019-02-19 17:38:08 +00:00
if( !GetProfiler().IsConnected() ) return 0;
2018-07-12 10:53:35 +00:00
#endif
2017-11-06 23:28:23 +00:00
auto txt = lua_tostring( L, 1 );
const auto size = strlen( txt );
auto ptr = (char*)tracy_malloc( size+1 );
memcpy( ptr, txt, size );
ptr[size] = '\0';
TracyLfqPrepare( QueueType::Message );
MemWrite( &item->message.time, Profiler::GetTime() );
MemWrite( &item->message.text, (uint64_t)ptr );
TracyLfqCommit;
2017-11-06 23:28:23 +00:00
return 0;
}
}
static inline void LuaRegister( lua_State* L )
{
lua_newtable( L );
lua_pushcfunction( L, detail::LuaZoneBegin );
lua_setfield( L, -2, "ZoneBegin" );
2017-11-14 22:53:16 +00:00
lua_pushcfunction( L, detail::LuaZoneBeginN );
lua_setfield( L, -2, "ZoneBeginN" );
#ifdef TRACY_HAS_CALLSTACK
2019-02-28 19:16:19 +00:00
lua_pushcfunction( L, detail::LuaZoneBeginS );
lua_setfield( L, -2, "ZoneBeginS" );
lua_pushcfunction( L, detail::LuaZoneBeginNS );
lua_setfield( L, -2, "ZoneBeginNS" );
#else
lua_pushcfunction( L, detail::LuaZoneBegin );
lua_setfield( L, -2, "ZoneBeginS" );
lua_pushcfunction( L, detail::LuaZoneBeginN );
lua_setfield( L, -2, "ZoneBeginNS" );
#endif
lua_pushcfunction( L, detail::LuaZoneEnd );
lua_setfield( L, -2, "ZoneEnd" );
2017-11-06 23:35:15 +00:00
lua_pushcfunction( L, detail::LuaZoneText );
lua_setfield( L, -2, "ZoneText" );
2018-06-29 14:01:31 +00:00
lua_pushcfunction( L, detail::LuaZoneName );
lua_setfield( L, -2, "ZoneName" );
2017-11-06 23:28:23 +00:00
lua_pushcfunction( L, detail::LuaMessage );
lua_setfield( L, -2, "Message" );
lua_setglobal( L, "tracy" );
}
static inline void LuaRemove( char* script ) {}
}
#endif
2017-11-06 14:16:12 +00:00
#endif