This repository has been archived by the owner on Sep 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
hfsm.natvis
176 lines (139 loc) · 6.27 KB
/
hfsm.natvis
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<?xml version="1.0" encoding="utf-8"?>
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
<!-- · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · -->
<Type Name="std::type_index">
<DisplayString Condition="_Tptr->_Data._UndecoratedName">{_Tptr->_Data._UndecoratedName,sb}</DisplayString>
<DisplayString Condition="_Tptr->_Data._DecoratedName[5]=='$'">
{&_Tptr->_Data._DecoratedName[6],[strchr(_Tptr->_Data._DecoratedName,'@') - _Tptr->_Data._DecoratedName - 6]sb}
<
{strstr(_Tptr->_Data._DecoratedName,"@V") + 2,[strstr(_Tptr->_Data._DecoratedName,"@?") - strstr(_Tptr->_Data._DecoratedName,"@V") - 2]sb}
>
</DisplayString>
<DisplayString>{&_Tptr->_Data._DecoratedName[4],[strchr(_Tptr->_Data._DecoratedName,'@') - _Tptr->_Data._DecoratedName - 4]sb}</DisplayString>
<Expand HideRawView="true" />
</Type>
<!-- · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · -->
<Type Name="hfsm::detail::ArrayView<*>">
<DisplayString>{_count} / {_capacity}</DisplayString>
<Expand HideRawView="true">
<IndexListItems Condition="_count > 0">
<Size>_count</Size>
<ValueNode>*(($T1*) &((Item*) (&_count + 1))[$i])</ValueNode>
</IndexListItems>
</Expand>
</Type>
<!-- · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · -->
<Type Name="hfsm::detail::Array<*,*>">
<DisplayString>{_count} / {_capacity}</DisplayString>
<Expand HideRawView="true">
<IndexListItems Condition="_count > 0">
<Size>_count</Size>
<ValueNode>*(($T1*) &_storage[$i])</ValueNode>
</IndexListItems>
</Expand>
</Type>
<!-- · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · -->
<Type Name="hfsm::detail::HashTable<*,*,*,*>">
<DisplayString>{_count}</DisplayString>
<Expand>
<IndexListItems>
<Size>$T3</Size>
<ValueNode Condition="_items[$i]._hash >> USED_SHIFT != 0">_items[$i],na</ValueNode>
</IndexListItems>
</Expand>
</Type>
<Type Name="hfsm::detail::HashTable<*,*,*,*>::Item">
<DisplayString>{_keyWrap} : {_value}</DisplayString>
<Expand>
<Item Name="key">_keyWrap</Item>
<Item Name="value">_value</Item>
</Expand>
</Type>
<!-- · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · -->
<Type Name="hfsm::detail::Wrap<*>">
<DisplayString>{*($T1*) &_storage._Val}</DisplayString>
<Expand HideRawView="true">
<ExpandedItem>*($T1*) &_storage._Val</ExpandedItem>
</Expand>
</Type>
<!-- · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · -->
<Type Name="hfsm::StructureEntry">
<DisplayString Condition=" isActive">█ {prefix,sub}{name,sb}</DisplayString>
<DisplayString Condition="!isActive">░ {prefix,sub}{name,sb}</DisplayString>
<Expand HideRawView="true" />
</Type>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<Type Name="hfsm::M<*>::Parent">
<DisplayString>{forkType} ► {prongType}</DisplayString>
<Expand HideRawView="true" />
</Type>
<!-- · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · -->
<Type Name="hfsm::M<*>::StateRegistryT<*>">
<DisplayString>{_typeToIndex,na}</DisplayString>
<Expand HideRawView="true">
<ExpandedItem>_typeToIndex,na</ExpandedItem>
</Expand>
</Type>
<!-- · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · -->
<Type Name="hfsm::M<*>::Transition">
<DisplayString>{type}: {*(std::type_index*)&stateType._storage}</DisplayString>
<Expand HideRawView="true" />
</Type>
<!-- · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · -->
<Type Name="hfsm::M<*>::Fork">
<DisplayString>[{type}] <{resumableType,na}> ◄ <{activeType,na}> ► <{requestedType,na}></DisplayString>
<Expand HideRawView="true">
<Item Name="type">type</Item>
<Item Name="active">activeType</Item>
<Item Name="resumable">resumableType</Item>
<Item Name="requested">requestedType</Item>
</Expand>
</Type>
<!-- · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · -->
<Type Name="hfsm::M<*>::_S<*>">
<DisplayString>{_type}</DisplayString>
<Expand HideRawView="true">
<Item Name="client">_client</Item>
</Expand>
</Type>
<!-- · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · -->
<Type Name="hfsm::Machine<*>::_C<*>">
<DisplayString>{_fork}</DisplayString>
<Expand>
<Item Name="head">_state</Item>
<Item Name="sub-states">_subStates</Item>
</Expand>
</Type>
<Type Name="hfsm::Machine<*>::_C<*>::Sub<*>" Priority="Low">
<DisplayString>{initial} {remaining}</DisplayString>
</Type>
<Type Name="hfsm::Machine<*>::_C<*>::Sub<*>">
<DisplayString>{initial}</DisplayString>
</Type>
<!-- · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · -->
<Type Name="hfsm::Machine<*>::_O<*>">
<DisplayString>{_type}</DisplayString>
<Expand>
<Item Name="client">_state</Item>
<Item Name="states">_subStates</Item>
</Expand>
</Type>
<Type Name="hfsm::Machine<*>::_O<*>::Sub<*>">
<DisplayString>{initial} {remaining}</DisplayString>
</Type>
<!-- · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · -->
<Type Name="hfsm::Machine<*>::_R<*>">
<DisplayString>{_structure}</DisplayString>
<Expand>
<ExpandedItem>{_structure}</ExpandedItem>
</Expand>
</Type>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<Type Name="hfsm::Iterator<*>">
<DisplayString>[{_cursor}] = {_t[_cursor]}</DisplayString>
<Expand>
<ExpandedItem>_container</ExpandedItem>
</Expand>
</Type>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
</AutoVisualizer>