Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TracyThreadCompress.cpp « server - github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: be2ebaffe098934afe807e19e708b2d6b2ae0bf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include <limits>

#include "TracyFileRead.hpp"
#include "TracyFileWrite.hpp"
#include "TracyThreadCompress.hpp"

namespace tracy
{

ThreadCompress::ThreadCompress()
    : m_threadLast( std::numeric_limits<uint64_t>::max(), 0 )
{
}

void ThreadCompress::InitZero()
{
    assert( m_threadExpand.empty() );
    m_threadExpand.push_back( 0 );
}

void ThreadCompress::Load( FileRead& f, int fileVer )
{
    assert( m_threadExpand.empty() );
    assert( m_threadMap.empty() );

    uint64_t sz;
    f.Read( sz );
    if( sz != 0 )
    {
        m_threadExpand.reserve_and_use( sz );
        f.Read( m_threadExpand.data(), sizeof( uint64_t ) * sz );
        m_threadMap.reserve( sz );
        for( size_t i=0; i<sz; i++ )
        {
            m_threadMap.emplace( m_threadExpand[i], i );
        }
    }
}

void ThreadCompress::Save( FileWrite& f ) const
{
    uint64_t sz = m_threadExpand.size();
    f.Write( &sz, sizeof( sz ) );
    if( sz != 0 ) f.Write( m_threadExpand.data(), sz * sizeof( uint64_t ) );
}

uint16_t ThreadCompress::CompressThreadReal( uint64_t thread )
{
    auto it = m_threadMap.find( thread );
    if( it != m_threadMap.end() )
    {
        m_threadLast.first = thread;
        m_threadLast.second = it->second;
        return it->second;
    }
    else
    {
        return CompressThreadNew( thread );
    }
}

uint16_t ThreadCompress::CompressThreadNew( uint64_t thread )
{
    auto sz = m_threadExpand.size();
    m_threadExpand.push_back( thread );
    m_threadMap.emplace( thread, sz );
    m_threadLast.first = thread;
    m_threadLast.second = sz;
    return sz;
}

}