tracy/client/TracyLock.hpp

118 lines
3.5 KiB
C++
Raw Normal View History

2017-10-04 13:41:02 +00:00
#ifndef __TRACYLOCK_HPP__
#define __TRACYLOCK_HPP__
#include <atomic>
#include <limits>
2017-10-04 14:45:46 +00:00
#include "../common/TracySystem.hpp"
2017-10-04 13:41:02 +00:00
#include "TracyProfiler.hpp"
namespace tracy
{
static std::atomic<uint32_t> s_lockCounter( 0 );
2017-10-04 13:41:02 +00:00
template<class T>
class Lockable
{
public:
2017-10-06 14:33:11 +00:00
tracy_force_inline Lockable( const SourceLocation* srcloc )
: m_id( s_lockCounter.fetch_add( 1, std::memory_order_relaxed ) )
, m_lckloc( (uint64_t)srcloc )
2017-10-04 13:41:02 +00:00
{
assert( m_id != std::numeric_limits<uint32_t>::max() );
2017-10-04 13:41:02 +00:00
}
Lockable( const Lockable& ) = delete;
Lockable& operator=( const Lockable& ) = delete;
2017-10-06 14:33:11 +00:00
tracy_force_inline void lock()
2017-10-04 13:41:02 +00:00
{
uint32_t cpu;
2017-10-04 14:45:46 +00:00
const auto thread = GetThreadHandle();
{
Magic magic;
2017-10-10 23:44:35 +00:00
auto& token = s_token.ptr;
2017-10-10 23:27:22 +00:00
auto& tail = token->get_tail_index();
2017-10-10 23:04:21 +00:00
auto item = token->enqueue_begin<moodycamel::CanAlloc>( magic );
2017-10-04 14:45:46 +00:00
item->hdr.type = QueueType::LockWait;
item->lockWait.id = m_id;
2017-10-04 14:45:46 +00:00
item->lockWait.thread = thread;
2017-10-05 01:07:26 +00:00
item->lockWait.time = Profiler::GetTime( cpu );
item->lockWait.lckloc = m_lckloc;
2017-10-10 23:27:22 +00:00
tail.store( magic + 1, std::memory_order_release );
2017-10-04 14:45:46 +00:00
}
2017-10-04 13:41:02 +00:00
m_lockable.lock();
2017-10-04 14:45:46 +00:00
{
Magic magic;
2017-10-10 23:44:35 +00:00
auto& token = s_token.ptr;
2017-10-10 23:27:22 +00:00
auto& tail = token->get_tail_index();
2017-10-10 23:04:21 +00:00
auto item = token->enqueue_begin<moodycamel::CanAlloc>( magic );
2017-10-04 14:45:46 +00:00
item->hdr.type = QueueType::LockObtain;
item->lockObtain.id = m_id;
2017-10-04 14:45:46 +00:00
item->lockObtain.thread = thread;
2017-10-05 01:07:26 +00:00
item->lockObtain.time = Profiler::GetTime( cpu );
2017-10-10 23:27:22 +00:00
tail.store( magic + 1, std::memory_order_release );
2017-10-04 14:45:46 +00:00
}
2017-10-04 13:41:02 +00:00
}
2017-10-06 14:33:11 +00:00
tracy_force_inline void unlock()
2017-10-04 13:41:02 +00:00
{
m_lockable.unlock();
2017-10-04 14:45:46 +00:00
uint32_t cpu;
2017-10-04 14:45:46 +00:00
Magic magic;
2017-10-10 23:44:35 +00:00
auto& token = s_token.ptr;
2017-10-10 23:27:22 +00:00
auto& tail = token->get_tail_index();
2017-10-10 23:04:21 +00:00
auto item = token->enqueue_begin<moodycamel::CanAlloc>( magic );
2017-10-04 14:45:46 +00:00
item->hdr.type = QueueType::LockRelease;
item->lockRelease.id = m_id;
2017-10-04 14:45:46 +00:00
item->lockRelease.thread = GetThreadHandle();
2017-10-05 01:07:26 +00:00
item->lockRelease.time = Profiler::GetTime( cpu );
2017-10-10 23:27:22 +00:00
tail.store( magic + 1, std::memory_order_release );
2017-10-04 13:41:02 +00:00
}
2017-10-06 14:33:11 +00:00
tracy_force_inline bool try_lock()
2017-10-04 13:41:02 +00:00
{
2017-10-04 14:45:46 +00:00
const auto ret = m_lockable.try_lock();
if( ret )
{
uint32_t cpu;
2017-10-04 14:45:46 +00:00
Magic magic;
2017-10-10 23:44:35 +00:00
auto& token = s_token.ptr;
2017-10-10 23:27:22 +00:00
auto& tail = token->get_tail_index();
2017-10-10 23:04:21 +00:00
auto item = token->enqueue_begin<moodycamel::CanAlloc>( magic );
2017-10-04 14:45:46 +00:00
item->hdr.type = QueueType::LockObtain;
item->lockObtain.id = (uint64_t)&m_lockable;
item->lockObtain.thread = GetThreadHandle();
2017-10-05 01:07:26 +00:00
item->lockObtain.time = Profiler::GetTime( cpu );
2017-10-10 23:27:22 +00:00
tail.store( magic + 1, std::memory_order_release );
2017-10-04 14:45:46 +00:00
}
return ret;
2017-10-04 13:41:02 +00:00
}
tracy_force_inline void Mark( const SourceLocation* srcloc ) const
2017-10-06 14:32:32 +00:00
{
Magic magic;
2017-10-10 23:44:35 +00:00
auto& token = s_token.ptr;
2017-10-10 23:27:22 +00:00
auto& tail = token->get_tail_index();
2017-10-10 23:04:21 +00:00
auto item = token->enqueue_begin<moodycamel::CanAlloc>( magic );
2017-10-06 14:32:32 +00:00
item->hdr.type = QueueType::LockMark;
item->lockMark.id = m_id;
item->lockMark.thread = GetThreadHandle();
item->lockMark.srcloc = (uint64_t)srcloc;
2017-10-10 23:27:22 +00:00
tail.store( magic + 1, std::memory_order_release );
2017-10-06 14:32:32 +00:00
}
2017-10-04 13:41:02 +00:00
private:
T m_lockable;
uint32_t m_id;
uint64_t m_lckloc;
2017-10-04 13:41:02 +00:00
};
};
#endif