91578edc69
Merge commit '8bf66a678af746fce336851a8ddf8fa08d358a20' as 'externals/robin-map'
78 lines
4.5 KiB
XML
78 lines
4.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
|
|
<!-- Written in VC 2017 15.7 but is expected to be compatible with VC 2015 -->
|
|
|
|
<!-- Visualization that shows the index in the name column and the key-value pair in the value column -->
|
|
<Type Name="tsl::robin_map<*>" Priority="Medium">
|
|
<AlternativeType Name="tsl::robin_set<*>"/>
|
|
<DisplayString>{{ size={m_ht.m_nb_elements} }}</DisplayString>
|
|
<Expand>
|
|
<Item Name="[bucket_count]" IncludeView="detailed">m_ht.m_buckets_data._Mypair._Myval2._Mylast - m_ht.m_buckets_data._Mypair._Myval2._Myfirst</Item>
|
|
<Item Name="[load_factor]" Condition="m_ht.m_buckets_data._Mypair._Myval2._Myfirst != m_ht.m_buckets_data._Mypair._Myval2._Mylast" IncludeView="detailed">
|
|
((float)m_ht.m_nb_elements) / ((float)(m_ht.m_buckets_data._Mypair._Myval2._Mylast - m_ht.m_buckets_data._Mypair._Myval2._Myfirst))
|
|
</Item>
|
|
<Item Name="[load_factor]" Condition="m_ht.m_buckets_data._Mypair._Myval2._Myfirst == m_ht.m_buckets_data._Mypair._Myval2._Mylast" IncludeView="detailed">
|
|
0
|
|
</Item>
|
|
<Item Name="[max_load_factor]" IncludeView="detailed">m_ht.m_max_load_factor</Item>
|
|
<CustomListItems>
|
|
<Variable Name="bucket" InitialValue="m_ht.m_buckets"/>
|
|
|
|
<Size>m_ht.m_nb_elements</Size>
|
|
<Loop>
|
|
<Item Condition="bucket->m_dist_from_ideal_bucket != -1">*bucket</Item>
|
|
<Break Condition="bucket->m_last_bucket"/>
|
|
<Exec>++bucket</Exec>
|
|
</Loop>
|
|
</CustomListItems>
|
|
</Expand>
|
|
</Type>
|
|
|
|
<!-- Visualization that shows the key in the name column and the key-value pair in the value column -->
|
|
<Type Name="tsl::robin_map<*>" ExcludeView="ShowElementsByIndex" Priority="MediumHigh">
|
|
<DisplayString>{{ size={m_ht.m_nb_elements} }}</DisplayString>
|
|
<Expand>
|
|
<Item Name="[bucket_count]" IncludeView="detailed">m_ht.m_buckets_data._Mypair._Myval2._Mylast - m_ht.m_buckets_data._Mypair._Myval2._Myfirst</Item>
|
|
<Item Name="[load_factor]" Condition="m_ht.m_buckets_data._Mypair._Myval2._Myfirst != m_ht.m_buckets_data._Mypair._Myval2._Mylast" IncludeView="detailed">
|
|
((float)m_ht.m_nb_elements) / ((float)(m_ht.m_buckets_data._Mypair._Myval2._Mylast - m_ht.m_buckets_data._Mypair._Myval2._Myfirst))
|
|
</Item>
|
|
<Item Name="[load_factor]" Condition="m_ht.m_buckets_data._Mypair._Myval2._Myfirst == m_ht.m_buckets_data._Mypair._Myval2._Mylast" IncludeView="detailed">
|
|
0
|
|
</Item>
|
|
<Item Name="[max_load_factor]" IncludeView="detailed">m_ht.m_max_load_factor</Item>
|
|
<CustomListItems>
|
|
<Variable Name="bucket" InitialValue="m_ht.m_buckets"/>
|
|
|
|
<Size>m_ht.m_nb_elements</Size>
|
|
<Loop>
|
|
<Item Condition="bucket->m_dist_from_ideal_bucket != -1" Name="[{reinterpret_cast<std::pair<$T1,$T2>*>(&bucket->m_value)->first}]">*bucket</Item>
|
|
<Break Condition="bucket->m_last_bucket"/>
|
|
<Exec>++bucket</Exec>
|
|
</Loop>
|
|
</CustomListItems>
|
|
</Expand>
|
|
</Type>
|
|
|
|
<Type Name="tsl::detail_robin_hash::robin_hash<*>::robin_iterator<*>">
|
|
<DisplayString>{*m_bucket}</DisplayString>
|
|
<Expand>
|
|
<ExpandedItem>*m_bucket</ExpandedItem>
|
|
</Expand>
|
|
</Type>
|
|
|
|
<Type Name="tsl::detail_robin_hash::bucket_entry<*>">
|
|
<DisplayString Condition="m_dist_from_ideal_bucket == -1">empty</DisplayString>
|
|
<DisplayString Condition="m_dist_from_ideal_bucket != -1">{*reinterpret_cast<$T1*>(&m_value)}</DisplayString>
|
|
<Expand>
|
|
<ExpandedItem Condition="m_dist_from_ideal_bucket != -1">*reinterpret_cast<$T1*>(&m_value)</ExpandedItem>
|
|
</Expand>
|
|
</Type>
|
|
|
|
<Type Name="tsl::detail_robin_hash::bucket_entry<*>" IncludeView="MapHelper">
|
|
<DisplayString Condition="m_dist_from_ideal_bucket == -1">empty</DisplayString>
|
|
<DisplayString Condition="m_dist_from_ideal_bucket != -1">{reinterpret_cast<$T1*>(&m_value)->second}</DisplayString>
|
|
<Expand>
|
|
<ExpandedItem Condition="m_dist_from_ideal_bucket != -1">*reinterpret_cast<$T1*>(&m_value)</ExpandedItem>
|
|
</Expand>
|
|
</Type>
|
|
</AutoVisualizer>
|