tracy/test/test.cpp

314 lines
7.5 KiB
C++
Raw Normal View History

2017-09-22 17:32:49 +00:00
#include <chrono>
2017-10-03 23:39:43 +00:00
#include <mutex>
2017-09-22 17:32:49 +00:00
#include <thread>
2017-12-10 19:36:10 +00:00
#include <shared_mutex>
#include <stdlib.h>
2017-10-16 19:28:38 +00:00
#include "../Tracy.hpp"
2017-09-22 17:32:49 +00:00
#include "../common/TracySystem.hpp"
2019-06-12 23:53:47 +00:00
#define STB_IMAGE_IMPLEMENTATION
#define STBI_ONLY_JPEG
#include "stb_image.h"
2018-08-13 10:13:28 +00:00
struct static_init_test_t
{
static_init_test_t()
{
ZoneScoped;
new char[64*1024];
}
};
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 );
}
2017-09-22 17:32:49 +00:00
void TestFunction()
{
tracy::SetThreadName( "First/second thread" );
2017-09-22 17:32:49 +00:00
for(;;)
{
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
2017-11-14 22:24:40 +00:00
ZoneScopedN( "Test function" );
2017-09-22 17:32:49 +00:00
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
}
}
void ResolutionCheck()
{
tracy::SetThreadName( "Resolution check" );
2017-09-22 17:32:49 +00:00
for(;;)
{
{
ZoneScoped;
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
}
{
ZoneScoped;
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
}
}
}
2017-09-23 19:37:14 +00:00
void ScopeCheck()
{
tracy::SetThreadName( "Scope check" );
2017-09-23 19:37:14 +00:00
for(;;)
{
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
ZoneScoped;
}
}
2017-09-22 17:32:49 +00:00
2017-10-04 13:41:23 +00:00
static TracyLockable( std::mutex, mutex );
2017-10-25 21:08:14 +00:00
static TracyLockable( std::recursive_mutex, recmutex );
2017-10-03 23:39:43 +00:00
void Lock1()
{
tracy::SetThreadName( "Lock 1" );
2017-10-03 23:39:43 +00:00
for(;;)
{
std::this_thread::sleep_for( std::chrono::milliseconds( 4 ) );
2017-10-04 13:41:23 +00:00
std::lock_guard<LockableBase( std::mutex )> lock( mutex );
2017-10-06 16:15:00 +00:00
LockMark( mutex );
2017-10-03 23:39:43 +00:00
ZoneScoped;
std::this_thread::sleep_for( std::chrono::milliseconds( 4 ) );
}
}
void Lock2()
{
tracy::SetThreadName( "Lock 2" );
2017-10-03 23:39:43 +00:00
for(;;)
{
std::this_thread::sleep_for( std::chrono::milliseconds( 3 ) );
2017-10-04 13:41:23 +00:00
std::unique_lock<LockableBase( std::mutex )> lock( mutex );
2017-10-06 16:15:00 +00:00
LockMark( mutex );
2017-10-03 23:39:43 +00:00
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 ) );
}
}
2017-10-25 21:08:14 +00:00
void RecLock()
{
tracy::SetThreadName( "Recursive mtx 1/2" );
2017-10-25 21:08:14 +00:00
for(;;)
{
std::this_thread::sleep_for( std::chrono::milliseconds( 7 ) );
std::lock_guard<LockableBase( std::recursive_mutex )> lock1( recmutex );
TracyMessageL( "First lock" );
LockMark( recmutex );
ZoneScoped;
{
std::this_thread::sleep_for( std::chrono::milliseconds( 3 ) );
std::lock_guard<LockableBase( std::recursive_mutex )> lock2( recmutex );
TracyMessageL( "Second lock" );
LockMark( recmutex );
std::this_thread::sleep_for( std::chrono::milliseconds( 2 ) );
}
}
}
2017-10-19 16:57:41 +00:00
void Plot()
{
tracy::SetThreadName( "Plot 1/2" );
2017-10-19 16:57:41 +00:00
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 ) );
}
}
2017-10-20 16:30:28 +00:00
void MessageTest()
{
tracy::SetThreadName( "Message test" );
2017-10-20 16:30:28 +00:00
for(;;)
{
TracyMessage( "Tock", 4 );
std::this_thread::sleep_for( std::chrono::milliseconds( 5 ) );
}
}
2019-01-20 15:55:09 +00:00
static int Fibonacci( int n );
static inline int FibonacciInline( int n )
{
return Fibonacci( n );
}
2017-10-22 13:57:08 +00:00
static int Fibonacci( int n )
{
ZoneScoped;
if( n < 2 ) return n;
2019-01-20 15:55:09 +00:00
return FibonacciInline( n-1 ) + FibonacciInline( n-2 );
2017-10-22 13:57:08 +00:00
}
void DepthTest()
{
tracy::SetThreadName( "Depth test" );
2017-10-22 13:57:08 +00:00
for(;;)
{
std::this_thread::sleep_for( std::chrono::milliseconds( 20 ) );
ZoneScoped;
const auto txt = "Fibonacci (15)";
ZoneText( txt, strlen( txt ) );
2017-10-22 13:57:08 +00:00
Fibonacci( 15 );
}
}
2017-12-10 20:52:26 +00:00
static TracySharedLockable( std::shared_mutex, sharedMutex );
2017-12-10 19:36:10 +00:00
2017-12-10 20:59:17 +00:00
void SharedRead1()
2017-12-10 19:36:10 +00:00
{
tracy::SetThreadName( "Shared read 1/2" );
2017-12-10 19:36:10 +00:00
for(;;)
{
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
2017-12-10 20:52:26 +00:00
std::shared_lock<SharedLockableBase( std::shared_mutex )> lock( sharedMutex );
2017-12-10 19:36:10 +00:00
std::this_thread::sleep_for( std::chrono::milliseconds( 4 ) );
}
}
2017-12-10 20:59:17 +00:00
void SharedRead2()
2017-12-10 19:36:10 +00:00
{
tracy::SetThreadName( "Shared read 3" );
2017-12-10 19:36:10 +00:00
for(;;)
{
2017-12-10 20:59:17 +00:00
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" );
2017-12-10 20:59:17 +00:00
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" );
2017-12-10 20:59:17 +00:00
for(;;)
{
std::this_thread::sleep_for( std::chrono::milliseconds( 5 ) );
2017-12-10 20:52:26 +00:00
std::unique_lock<SharedLockableBase( std::shared_mutex )> lock( sharedMutex );
2017-12-10 19:36:10 +00:00
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
}
}
2018-06-24 15:55:05 +00:00
void CaptureCallstack()
{
ZoneScopedS( 10 );
}
void CallstackTime()
{
tracy::SetThreadName( "Callstack time" );
2018-06-24 15:55:05 +00:00
for(;;)
{
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
CaptureCallstack();
}
}
2018-08-27 23:48:03 +00:00
void OnlyMemory()
{
tracy::SetThreadName( "Only memory" );
2018-08-27 23:48:03 +00:00
new int;
}
2019-01-09 19:15:45 +00:00
static TracyLockable( std::mutex, deadlockMutex1 );
static TracyLockable( std::mutex, deadlockMutex2 );
void DeadlockTest1()
{
tracy::SetThreadName( "Deadlock test 1" );
2019-01-09 19:15:45 +00:00
deadlockMutex1.lock();
std::this_thread::sleep_for( std::chrono::milliseconds( 100 ) );
deadlockMutex2.lock();
}
void DeadlockTest2()
{
tracy::SetThreadName( "Deadlock test 2" );
2019-01-09 19:15:45 +00:00
deadlockMutex2.lock();
std::this_thread::sleep_for( std::chrono::milliseconds( 100 ) );
deadlockMutex1.lock();
}
2017-09-22 17:32:49 +00:00
int main()
{
auto t1 = std::thread( TestFunction );
auto t2 = std::thread( TestFunction );
auto t3 = std::thread( ResolutionCheck );
2017-09-23 19:37:14 +00:00
auto t4 = std::thread( ScopeCheck );
2017-10-03 23:39:43 +00:00
auto t5 = std::thread( Lock1 );
auto t6 = std::thread( Lock2 );
auto t7 = std::thread( Lock3 );
2017-10-19 16:57:41 +00:00
auto t8 = std::thread( Plot );
auto t9 = std::thread( Plot );
2017-10-20 16:30:28 +00:00
auto t10 = std::thread( MessageTest );
2017-10-22 13:57:08 +00:00
auto t11 = std::thread( DepthTest );
2017-10-25 21:08:14 +00:00
auto t12 = std::thread( RecLock );
auto t13 = std::thread( RecLock );
2017-12-10 20:59:17 +00:00
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 );
2018-06-24 15:55:05 +00:00
auto t19 = std::thread( CallstackTime );
2018-08-27 23:48:03 +00:00
auto t20 = std::thread( OnlyMemory );
2019-01-09 19:15:45 +00:00
auto t21 = std::thread( DeadlockTest1 );
auto t22 = std::thread( DeadlockTest2 );
2017-09-22 17:32:49 +00:00
2019-06-12 23:53:47 +00:00
int x, y;
auto image = stbi_load( "image.jpg", &x, &y, nullptr, 4 );
2017-09-22 17:32:49 +00:00
for(;;)
{
2017-10-20 16:30:28 +00:00
TracyMessageL( "Tick" );
2017-09-22 17:32:49 +00:00
std::this_thread::sleep_for( std::chrono::milliseconds( 2 ) );
{
ZoneScoped;
std::this_thread::sleep_for( std::chrono::milliseconds( 2 ) );
}
2019-06-12 23:53:47 +00:00
FrameImage( image, x, y, 0, false );
2017-09-22 17:32:49 +00:00
FrameMark;
}
}