initial
This commit is contained in:
Vendored
+49
@@ -0,0 +1,49 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/../cmake/version.cmake)
|
||||
|
||||
# we target C++11 for the client part
|
||||
set(CMAKE_CXX_STANDARD 11)
|
||||
|
||||
project(
|
||||
tracy-test
|
||||
LANGUAGES C CXX
|
||||
VERSION ${TRACY_VERSION_STRING})
|
||||
|
||||
file(GENERATE OUTPUT .gitignore CONTENT "*")
|
||||
set(CMAKE_COLOR_DIAGNOSTICS ON)
|
||||
|
||||
option(TRACY_ENABLE "Enable profiling" ON)
|
||||
|
||||
# a bit weird but works: include the client cmake config coming from top-level
|
||||
# cmake needs us to specify the build subfolder -> client/ this way we can
|
||||
# simply link the test executable against TracyClient
|
||||
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/.. client/)
|
||||
|
||||
add_executable(tracy-test test.cpp)
|
||||
if(NOT CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
||||
target_link_options(tracy-test PRIVATE -rdynamic)
|
||||
endif()
|
||||
target_link_libraries(tracy-test TracyClient)
|
||||
|
||||
# Lua support (optional)
|
||||
find_package(Lua)
|
||||
if(LUA_FOUND)
|
||||
message(STATUS "Lua found, enabling Lua support in tracy-test")
|
||||
target_compile_definitions(tracy-test PRIVATE TRACY_HAS_LUA)
|
||||
target_include_directories(tracy-test PRIVATE ${LUA_INCLUDE_DIR})
|
||||
target_link_libraries(tracy-test ${LUA_LIBRARIES})
|
||||
else()
|
||||
message(STATUS "Lua not found, building tracy-test without Lua support")
|
||||
endif()
|
||||
|
||||
# OS-specific options
|
||||
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")
|
||||
target_link_libraries(tracy-test "execinfo")
|
||||
endif()
|
||||
|
||||
# copy image file in build folder
|
||||
configure_file(${CMAKE_CURRENT_LIST_DIR}/image.jpg image.jpg COPYONLY)
|
||||
|
||||
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT tracy-test)
|
||||
Vendored
BIN
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
Vendored
+7987
File diff suppressed because it is too large
Load Diff
Vendored
+528
@@ -0,0 +1,528 @@
|
||||
#include <atomic>
|
||||
#include <chrono>
|
||||
#include <iostream>
|
||||
#include <mutex>
|
||||
#include <thread>
|
||||
#include <signal.h>
|
||||
#include <stdlib.h>
|
||||
#include "tracy/Tracy.hpp"
|
||||
|
||||
#ifdef TRACY_HAS_LUA
|
||||
extern "C"
|
||||
{
|
||||
#include <lua.h>
|
||||
#include <lauxlib.h>
|
||||
#include <lualib.h>
|
||||
}
|
||||
#include "tracy/TracyLua.hpp"
|
||||
#endif
|
||||
|
||||
#define STB_IMAGE_IMPLEMENTATION
|
||||
#define STBI_ONLY_JPEG
|
||||
#include "stb_image.h"
|
||||
|
||||
struct static_init_test_t
|
||||
{
|
||||
static_init_test_t()
|
||||
{
|
||||
#ifdef TRACY_MANUAL_LIFETIME
|
||||
tracy::StartupProfiler();
|
||||
#endif
|
||||
ZoneScoped;
|
||||
ZoneTextF( "Static %s", "init test" );
|
||||
TracyLogString( tracy::MessageSeverity::Info, 0, TRACY_CALLSTACK, "Static init" );
|
||||
|
||||
new char[64*1024];
|
||||
}
|
||||
};
|
||||
|
||||
static std::atomic<bool> s_triggerCrash{false};
|
||||
static std::atomic<bool> s_triggerInstrumentationFailure{false};
|
||||
|
||||
void SignalHandler_TriggerCrash(int)
|
||||
{
|
||||
s_triggerCrash.store(true, std::memory_order_relaxed);
|
||||
}
|
||||
|
||||
void SignalHandler_TriggerInstrumentationFailure(int)
|
||||
{
|
||||
s_triggerInstrumentationFailure.store(true, std::memory_order_relaxed);
|
||||
}
|
||||
|
||||
static const static_init_test_t static_init_test;
|
||||
|
||||
void* operator new( std::size_t count )
|
||||
{
|
||||
auto ptr = malloc( count );
|
||||
TracyAllocS( ptr, count, 10 );
|
||||
return ptr;
|
||||
}
|
||||
|
||||
void operator delete( void* ptr ) noexcept
|
||||
{
|
||||
TracyFreeS( ptr, 10 );
|
||||
free( ptr );
|
||||
}
|
||||
|
||||
// We need to have the same pointer for both TracyAllocNS and TracyFreeNS
|
||||
static const char* customAllocStr = "Custom alloc";
|
||||
void* CustomAlloc( size_t count )
|
||||
{
|
||||
auto ptr = malloc( count );
|
||||
TracyAllocNS( ptr, count, 10, customAllocStr );
|
||||
return ptr;
|
||||
}
|
||||
|
||||
void CustomFree( void* ptr )
|
||||
{
|
||||
TracyFreeNS( ptr, 10, customAllocStr );
|
||||
free( ptr );
|
||||
}
|
||||
|
||||
void TestFunction()
|
||||
{
|
||||
tracy::SetThreadName( "First/second thread" );
|
||||
for(;;)
|
||||
{
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
ZoneScopedN( "Test function" );
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
}
|
||||
}
|
||||
|
||||
void ResolutionCheck()
|
||||
{
|
||||
tracy::SetThreadName( "Resolution check" );
|
||||
for(;;)
|
||||
{
|
||||
{
|
||||
ZoneScoped;
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
}
|
||||
{
|
||||
ZoneScoped;
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void ScopeCheck()
|
||||
{
|
||||
tracy::SetThreadName( "Scope check" );
|
||||
for(;;)
|
||||
{
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
ZoneScoped;
|
||||
}
|
||||
}
|
||||
|
||||
static TracyLockable( std::mutex, mutex );
|
||||
static TracyLockable( std::recursive_mutex, recmutex );
|
||||
|
||||
void Lock1()
|
||||
{
|
||||
tracy::SetThreadName( "Lock 1" );
|
||||
for(;;)
|
||||
{
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 4 ) );
|
||||
std::lock_guard<LockableBase( std::mutex )> lock( mutex );
|
||||
LockMark( mutex );
|
||||
ZoneScoped;
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 4 ) );
|
||||
}
|
||||
}
|
||||
|
||||
void Lock2()
|
||||
{
|
||||
tracy::SetThreadName( "Lock 2" );
|
||||
for(;;)
|
||||
{
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 3 ) );
|
||||
std::unique_lock<LockableBase( std::mutex )> lock( mutex );
|
||||
LockMark( mutex );
|
||||
ZoneScoped;
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 5 ) );
|
||||
}
|
||||
}
|
||||
|
||||
void Lock3()
|
||||
{
|
||||
tracy::SetThreadName( "Lock 3" );
|
||||
for(;;)
|
||||
{
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
std::unique_lock<LockableBase( std::mutex )> lock( mutex );
|
||||
LockMark( mutex );
|
||||
ZoneScoped;
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
}
|
||||
}
|
||||
|
||||
void RecLock()
|
||||
{
|
||||
tracy::SetThreadName( "Recursive mtx 1/2" );
|
||||
for(;;)
|
||||
{
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 7 ) );
|
||||
std::lock_guard<LockableBase( std::recursive_mutex )> lock1( recmutex );
|
||||
TracyLogString( tracy::MessageSeverity::Trace, 0, TRACY_CALLSTACK, "First lock" );
|
||||
LockMark( recmutex );
|
||||
ZoneScoped;
|
||||
{
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 3 ) );
|
||||
std::lock_guard<LockableBase( std::recursive_mutex )> lock2( recmutex );
|
||||
TracyLogString( tracy::MessageSeverity::Trace, 0, TRACY_CALLSTACK, "Second lock" );
|
||||
LockMark( recmutex );
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 2 ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void Plot()
|
||||
{
|
||||
tracy::SetThreadNameWithHint( "Plot 1/2", -1 );
|
||||
unsigned char i = 0;
|
||||
for(;;)
|
||||
{
|
||||
for( int j=0; j<1024; j++ )
|
||||
{
|
||||
TracyPlot( "Test plot", (int64_t)i++ );
|
||||
}
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
}
|
||||
}
|
||||
|
||||
void MessageTest()
|
||||
{
|
||||
tracy::SetThreadName( "Message test" );
|
||||
for(;;)
|
||||
{
|
||||
TracyMessage( "Tock", 4 );
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 5 ) );
|
||||
}
|
||||
}
|
||||
|
||||
static int Fibonacci( int n );
|
||||
|
||||
static inline int FibonacciInline( int n )
|
||||
{
|
||||
return Fibonacci( n );
|
||||
}
|
||||
|
||||
static int Fibonacci( int n )
|
||||
{
|
||||
ZoneScoped;
|
||||
if( n < 2 ) return n;
|
||||
return FibonacciInline( n-1 ) + FibonacciInline( n-2 );
|
||||
}
|
||||
|
||||
void DepthTest()
|
||||
{
|
||||
tracy::SetThreadName( "Depth test" );
|
||||
for(;;)
|
||||
{
|
||||
TracyLogString( tracy::MessageSeverity::Debug, 0, TRACY_CALLSTACK, "Fibonacci Sleep" );
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
ZoneScoped;
|
||||
const auto txt = "Fibonacci (15)";
|
||||
ZoneText( txt, strlen( txt ) );
|
||||
Fibonacci( 15 );
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef __cpp_lib_shared_mutex
|
||||
|
||||
#include <shared_mutex>
|
||||
|
||||
static TracySharedLockable( std::shared_mutex, sharedMutex );
|
||||
|
||||
void SharedRead1()
|
||||
{
|
||||
tracy::SetThreadName( "Shared read 1/2" );
|
||||
for(;;)
|
||||
{
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
std::shared_lock<SharedLockableBase( std::shared_mutex )> lock( sharedMutex );
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 4 ) );
|
||||
}
|
||||
}
|
||||
|
||||
void SharedRead2()
|
||||
{
|
||||
tracy::SetThreadName( "Shared read 3" );
|
||||
for(;;)
|
||||
{
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 6 ) );
|
||||
std::shared_lock<SharedLockableBase( std::shared_mutex )> lock( sharedMutex );
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
}
|
||||
}
|
||||
|
||||
void SharedWrite1()
|
||||
{
|
||||
tracy::SetThreadName( "Shared write 1" );
|
||||
for(;;)
|
||||
{
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 3 ) );
|
||||
std::unique_lock<SharedLockableBase( std::shared_mutex )> lock( sharedMutex );
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 2 ) );
|
||||
}
|
||||
}
|
||||
|
||||
void SharedWrite2()
|
||||
{
|
||||
tracy::SetThreadName( "Shared write 2" );
|
||||
for(;;)
|
||||
{
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 5 ) );
|
||||
std::unique_lock<SharedLockableBase( std::shared_mutex )> lock( sharedMutex );
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
void CaptureCallstack()
|
||||
{
|
||||
ZoneScopedS( 10 );
|
||||
}
|
||||
|
||||
void CallstackTime()
|
||||
{
|
||||
tracy::SetThreadName( "Callstack time" );
|
||||
for(;;)
|
||||
{
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
CaptureCallstack();
|
||||
}
|
||||
}
|
||||
|
||||
void OnlyMemory()
|
||||
{
|
||||
tracy::SetThreadName( "Only memory" );
|
||||
new int;
|
||||
|
||||
void* ptrs[16];
|
||||
for( int i=1; i<16; i++ )
|
||||
{
|
||||
ptrs[i] = CustomAlloc( i * 1024 );
|
||||
}
|
||||
for( int i=1; i<16; i++ )
|
||||
{
|
||||
CustomFree( ptrs[i] );
|
||||
}
|
||||
}
|
||||
|
||||
static TracyLockable( std::mutex, deadlockMutex1 );
|
||||
static TracyLockable( std::mutex, deadlockMutex2 );
|
||||
|
||||
void DeadlockTest1()
|
||||
{
|
||||
tracy::SetThreadName( "Deadlock test 1" );
|
||||
deadlockMutex1.lock();
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 100 ) );
|
||||
deadlockMutex2.lock();
|
||||
}
|
||||
|
||||
void DeadlockTest2()
|
||||
{
|
||||
tracy::SetThreadName( "Deadlock test 2" );
|
||||
deadlockMutex2.lock();
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 100 ) );
|
||||
deadlockMutex1.lock();
|
||||
}
|
||||
|
||||
void ArenaAllocatorTest()
|
||||
{
|
||||
tracy::SetThreadName( "Arena allocator test" );
|
||||
|
||||
auto arena = (char*)0x12345678;
|
||||
auto aptr = arena;
|
||||
|
||||
// We need to have the same pointer for both TracyAllocN and TracyMemoryDiscard
|
||||
static const char* arenaAllocName = "Arena alloc";
|
||||
for( int i=0; i<10; i++ )
|
||||
{
|
||||
for( int j=0; j<10; j++ )
|
||||
{
|
||||
const auto allocSize = 1024 + j * 128 - i * 64;
|
||||
TracyAllocN( aptr, allocSize, arenaAllocName );
|
||||
aptr += allocSize;
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
}
|
||||
TracyMemoryDiscard( arenaAllocName );
|
||||
aptr = arena;
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef TRACY_HAS_LUA
|
||||
|
||||
void LuaTest()
|
||||
{
|
||||
tracy::SetThreadName( "Lua test" );
|
||||
|
||||
lua_State* L = luaL_newstate();
|
||||
luaL_openlibs( L );
|
||||
tracy::LuaRegister( L );
|
||||
|
||||
const char* luaScript = R"(
|
||||
for i = 1, 10 do
|
||||
tracy.ZoneBeginN("Lua iteration")
|
||||
tracy.ZoneText("Iteration: " .. i)
|
||||
tracy.Message("Lua message: " .. i)
|
||||
tracy.ZoneEnd()
|
||||
end
|
||||
)";
|
||||
|
||||
for(;;)
|
||||
{
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 10 ) );
|
||||
ZoneScopedN( "Lua script execution" );
|
||||
|
||||
if( luaL_dostring( L, luaScript ) != 0 )
|
||||
{
|
||||
const char* error = lua_tostring( L, -1 );
|
||||
TracyLogString( tracy::MessageSeverity::Error, 0, TRACY_CALLSTACK, error );
|
||||
lua_pop( L, 1 );
|
||||
}
|
||||
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 10 ) );
|
||||
}
|
||||
|
||||
lua_close( L );
|
||||
}
|
||||
|
||||
void LuaHookTest()
|
||||
{
|
||||
tracy::SetThreadName( "Lua hook test" );
|
||||
|
||||
lua_State* L = luaL_newstate();
|
||||
luaL_openlibs( L );
|
||||
tracy::LuaRegister( L );
|
||||
|
||||
// Enable Lua hook for automatic function profiling
|
||||
lua_sethook( L, tracy::LuaHook, LUA_MASKCALL | LUA_MASKRET, 0 );
|
||||
|
||||
const char* luaScript = R"(
|
||||
function fibonacci(n)
|
||||
if n < 2 then
|
||||
return n
|
||||
end
|
||||
return fibonacci(n-1) + fibonacci(n-2)
|
||||
end
|
||||
|
||||
for i = 1, 5 do
|
||||
local result = fibonacci(10)
|
||||
end
|
||||
)";
|
||||
|
||||
for(;;)
|
||||
{
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 20 ) );
|
||||
ZoneScopedN( "Lua hook script execution" );
|
||||
|
||||
if( luaL_dostring( L, luaScript ) != 0 )
|
||||
{
|
||||
const char* error = lua_tostring( L, -1 );
|
||||
TracyLogString( tracy::MessageSeverity::Error, 0, TRACY_CALLSTACK, error );
|
||||
lua_pop( L, 1 );
|
||||
}
|
||||
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 20 ) );
|
||||
}
|
||||
|
||||
lua_close( L );
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
int main()
|
||||
{
|
||||
#ifndef _WIN32
|
||||
struct sigaction sigusr1, oldsigusr1,sigusr2, oldsigusr2 ;
|
||||
memset( &sigusr1, 0, sizeof( sigusr1 ) );
|
||||
sigusr1.sa_handler = SignalHandler_TriggerCrash;
|
||||
sigaction( SIGUSR1, &sigusr1, &oldsigusr1 );
|
||||
|
||||
memset( &sigusr2, 0, sizeof( sigusr2 ) );
|
||||
sigusr2.sa_handler = SignalHandler_TriggerInstrumentationFailure;
|
||||
sigaction( SIGUSR2, &sigusr2, &oldsigusr2 );
|
||||
#endif
|
||||
|
||||
auto t1 = std::thread( TestFunction );
|
||||
auto t2 = std::thread( TestFunction );
|
||||
auto t3 = std::thread( ResolutionCheck );
|
||||
auto t4 = std::thread( ScopeCheck );
|
||||
auto t5 = std::thread( Lock1 );
|
||||
auto t6 = std::thread( Lock2 );
|
||||
auto t7 = std::thread( Lock3 );
|
||||
auto t8 = std::thread( Plot );
|
||||
auto t9 = std::thread( Plot );
|
||||
auto t10 = std::thread( MessageTest );
|
||||
auto t11 = std::thread( DepthTest );
|
||||
auto t12 = std::thread( RecLock );
|
||||
auto t13 = std::thread( RecLock );
|
||||
#ifdef __cpp_lib_shared_mutex
|
||||
auto t14 = std::thread( SharedRead1 );
|
||||
auto t15 = std::thread( SharedRead1 );
|
||||
auto t16 = std::thread( SharedRead2 );
|
||||
auto t17 = std::thread( SharedWrite1 );
|
||||
auto t18 = std::thread( SharedWrite2 );
|
||||
#endif
|
||||
auto t19 = std::thread( CallstackTime );
|
||||
auto t20 = std::thread( OnlyMemory );
|
||||
auto t21 = std::thread( DeadlockTest1 );
|
||||
auto t22 = std::thread( DeadlockTest2 );
|
||||
auto t23 = std::thread( ArenaAllocatorTest );
|
||||
#ifdef TRACY_HAS_LUA
|
||||
auto t24 = std::thread( LuaTest );
|
||||
auto t25 = std::thread( LuaHookTest );
|
||||
#endif
|
||||
|
||||
int x, y;
|
||||
auto image = stbi_load( "image.jpg", &x, &y, nullptr, 4 );
|
||||
if(image == nullptr)
|
||||
{
|
||||
std::cerr << "Could not find image.jpg in the current working directory, skipping" << std::endl;
|
||||
}
|
||||
for(;;)
|
||||
{
|
||||
TracyMessageL( "Tick" );
|
||||
|
||||
const int randValue = rand();
|
||||
if( ( randValue % 100 ) == 0 )
|
||||
TracyLogString( tracy::MessageSeverity::Warning, 0, TRACY_CALLSTACK, "Random warning" );
|
||||
|
||||
if( ( randValue % 500 ) == 0 )
|
||||
TracyLogString( tracy::MessageSeverity::Error, 0, TRACY_CALLSTACK, "Random error" );
|
||||
|
||||
if( ( randValue % 1000 ) == 0 )
|
||||
TracyLogString( tracy::MessageSeverity::Fatal, 0, TRACY_CALLSTACK, "Random fatal error" );
|
||||
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 2 ) );
|
||||
{
|
||||
ZoneScoped;
|
||||
if(s_triggerCrash.load(std::memory_order_relaxed))
|
||||
{
|
||||
std::cout << "Abort requested" << std::endl;
|
||||
std::abort();
|
||||
}
|
||||
if (s_triggerInstrumentationFailure.load(std::memory_order_relaxed))
|
||||
{
|
||||
std::cout << "Triggering instrumentation failure" << std::endl;
|
||||
char const* randomPtr = "Hello!";
|
||||
TracyFree(randomPtr);
|
||||
std::this_thread::sleep_for(std::chrono::milliseconds(50));
|
||||
return 2;
|
||||
}
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 2 ) );
|
||||
}
|
||||
if(image != nullptr)
|
||||
{
|
||||
FrameImage( image, x, y, 0, false );
|
||||
}
|
||||
FrameMark;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user