tracy/profiler/build/win32/DebugVis.natvis

48 lines
2.2 KiB
Plaintext
Raw Normal View History

2017-11-20 14:57:40 +00:00
<?xml version="1.0" encoding="utf-8"?>
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
<Type Name="tracy::Vector&lt;*&gt;">
<DisplayString>{{ size={m_size} }}</DisplayString>
<Expand>
<Item Name="[capacity]" ExcludeView="simple">m_capacity == 255 ? m_size : m_ptr == nullptr ? 0 : 1 &lt;&lt; m_capacity</Item>
2017-11-20 14:57:40 +00:00
<ArrayItems>
<Size>m_size</Size>
<ValuePointer>m_ptr</ValuePointer>
</ArrayItems>
</Expand>
</Type>
2018-06-19 18:54:46 +00:00
<Type Name="tracy::VarArray&lt;*&gt;">
<DisplayString>{{ size={m_size} hash={m_hash} }}</DisplayString>
<Expand>
<ArrayItems>
<Size>m_size</Size>
<ValuePointer>m_ptr</ValuePointer>
</ArrayItems>
</Expand>
</Type>
2019-06-09 23:50:26 +00:00
<Type Name="tracy::FastVector&lt;*&gt;">
<DisplayString>{{ size={m_write - m_ptr} }}</DisplayString>
<Expand>
<Item Name="[capacity]" ExcludeView="simple">m_end - m_ptr</Item>
<ArrayItems>
<Size>m_write - m_ptr</Size>
<ValuePointer>m_ptr</ValuePointer>
</ArrayItems>
</Expand>
</Type>
<Type Name="tracy::ContextSwitchData">
2020-02-11 22:45:04 +00:00
<DisplayString>{{ start={int64_t( _start_cpu ) >> 16} end={int64_t( _end_reason_state ) >> 16} cpu={uint8_t( _start_cpu &amp; 0xFF )} reason={int8_t( (_end_reason_state >> 8) &amp; 0xFF )} state={int8_t( _end_reason_state &amp; 0xFF )} }}</DisplayString>
</Type>
<Type Name="tracy::ContextSwitchCpu">
<DisplayString>{{ start={int64_t( _start_thread ) >> 16} end={_end} thread={uint16_t( _start_thread )} }}</DisplayString>
</Type>
2019-11-04 23:30:57 +00:00
<Type Name="tracy::ContextSwitchUsage">
<DisplayString>{{ time={int64_t( _time_other_own ) >> 16} own={uint8_t( _time_other_own >> 8 )} other={uint8_t( _time_other_own )} }}</DisplayString>
</Type>
2020-02-22 17:11:06 +00:00
<Type Name="tracy::Int24">
<DisplayString>{{ value={m_val[0] | (m_val[1]&lt;&lt;8) | (m_val[2]&lt;&lt;16)} }}</DisplayString>
</Type>
<Type Name="tracy::Int48">
<DisplayString>{{ value={int64_t( uint64_t(m_val[0]) | (uint64_t(m_val[1])&lt;&lt;8) | (uint64_t(m_val[2])&lt;&lt;16) | (uint64_t(m_val[3])&lt;&lt;24) | (uint64_t(m_val[4])&lt;&lt;32) | (uint64_t(m_val[5])&lt;&lt;40) )} }}</DisplayString>
</Type>
2017-11-20 14:57:40 +00:00
</AutoVisualizer>