Skip to content

Commit a8b7b28

Browse files
committed
Vec, LinkedList, VecDeque, String, and Option NatVis visualizations
1 parent e8154a0 commit a8b7b28

File tree

2 files changed

+95
-0
lines changed

2 files changed

+95
-0
lines changed

src/etc/natvis/libcollections.natvis

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
3+
<Type Name="collections::vec::Vec&lt;*&gt;">
4+
    <DisplayString>{{ size={len} }}</DisplayString>
5+
    <Expand>
6+
<Item Name="[size]" ExcludeView="simple">len</Item>
7+
<Item Name="[capacity]" ExcludeView="simple">buf.cap</Item>
8+
<ArrayItems>
9+
<Size>len</Size>
10+
<ValuePointer>buf.ptr.pointer.__0</ValuePointer>
11+
</ArrayItems>
12+
    </Expand>
13+
  </Type>
14+
<Type Name="collections::vec_deque::VecDeque&lt;*&gt;">
15+
<DisplayString>{{ size={tail &lt;= head ? head - tail : buf.cap - tail + head} }}</DisplayString>
16+
<Expand>
17+
<Item Name="[size]" ExcludeView="simple">tail &lt;= head ? head - tail : buf.cap - tail + head</Item>
18+
<Item Name="[capacity]" ExcludeView="simple">buf.cap</Item>
19+
<CustomListItems>
20+
<Variable Name="i" InitialValue="tail" />
21+
22+
<Size>tail &lt;= head ? head - tail : buf.cap - tail + head</Size>
23+
<Loop>
24+
<If Condition="i == head">
25+
<Break/>
26+
</If>
27+
<Item>buf.ptr.pointer.__0 + i</Item>
28+
<Exec>i = (i + 1 == buf.cap ? 0 : i + 1)</Exec>
29+
</Loop>
30+
</CustomListItems>
31+
</Expand>
32+
</Type>
33+
<Type Name="collections::linked_list::LinkedList&lt;*&gt;">
34+
<DisplayString>{{ size={len} }}</DisplayString>
35+
<Expand>
36+
<LinkedListItems>
37+
<Size>len</Size>
38+
<HeadPointer>*(collections::linked_list::Node&lt;$T1&gt; **)&amp;head</HeadPointer>
39+
<NextPointer>*(collections::linked_list::Node&lt;$T1&gt; **)&amp;next</NextPointer>
40+
<ValueNode>element</ValueNode>
41+
</LinkedListItems>
42+
</Expand>
43+
</Type>
44+
<Type Name="collections::string::String">
45+
<DisplayString>{*(char**)this,[vec.len]}</DisplayString>
46+
<StringView>*(char**)this,[vec.len]</StringView>
47+
<Expand>
48+
<Item Name="[size]" ExcludeView="simple">vec.len</Item>
49+
<Item Name="[capacity]" ExcludeView="simple">vec.buf.cap</Item>
50+
<ArrayItems>
51+
<Size>vec.len</Size>
52+
<ValuePointer>*(char**)this</ValuePointer>
53+
</ArrayItems>
54+
</Expand>
55+
</Type>
56+
</AutoVisualizer>

src/etc/natvis/libcore.natvis

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
3+
<Type Name="core::ptr::Unique&lt;*&gt;">
4+
<DisplayString>{{ Unique {*pointer.__0} }}</DisplayString>
5+
<Expand>
6+
<Item Name="[ptr]">pointer.__0</Item>
7+
</Expand>
8+
</Type>
9+
<Type Name="core::ptr::Shared&lt;*&gt;">
10+
<DisplayString>{{ Shared {*pointer.__0} }}</DisplayString>
11+
<Expand>
12+
<Item Name="[ptr]">pointer.__0</Item>
13+
</Expand>
14+
</Type>
15+
<Type Name="core::option::Option&lt;*&gt;">
16+
<DisplayString Condition="RUST$ENUM$DISR == 0x0">{{ None }}</DisplayString>
17+
<DisplayString Condition="RUST$ENUM$DISR == 0x1">{{ Some {__0} }}</DisplayString>
18+
<Expand>
19+
<Item Name="[size]" ExcludeView="simple">(ULONG)(RUST$ENUM$DISR != 0)</Item>
20+
<Item Name="[value]" ExcludeView="simple">__0</Item>
21+
<ArrayItems>
22+
<Size>(ULONG)(RUST$ENUM$DISR != 0)</Size>
23+
<ValuePointer>&amp;__0</ValuePointer>
24+
</ArrayItems>
25+
</Expand>
26+
</Type>
27+
<Type Name="core::option::Option&lt;*&gt;" Priority="MediumLow">
28+
<DisplayString Condition="*(PVOID *)this == nullptr">{{ None }}</DisplayString>
29+
<DisplayString>{{ Some {($T1 *)this} }}</DisplayString>
30+
<Expand>
31+
<Item Name="[size]" ExcludeView="simple">(ULONG)(*(PVOID *)this != nullptr)</Item>
32+
<Item Name="[value]" ExcludeView="simple" Condition="*(PVOID *)this != nullptr">($T1 *)this</Item>
33+
<ArrayItems>
34+
<Size>(ULONG)(*(PVOID *)this != nullptr)</Size>
35+
<ValuePointer>($T1 *)this</ValuePointer>
36+
</ArrayItems>
37+
</Expand>
38+
</Type>
39+
</AutoVisualizer>

0 commit comments

Comments
 (0)