-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathblc.natvis
25 lines (24 loc) · 844 Bytes
/
blc.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
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) Microsoft Corporation.
SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
-->
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
<Type Name="mir_instr">
<DisplayString>[{id}: {kind} | {state}]</DisplayString>
<Expand>
<Item Name="[id]">id</Item>
<Item Name="[kind]">kind</Item>
<Item Name="[state]">state</Item>
<Item Name="[file]">node->location->unit->name</Item>
<Item Name="[line]">node->location->line</Item>
</Expand>
</Type>
<Type Name="str_t">
<DisplayString>[{len}] {ptr,[len]na}</DisplayString>
<Expand>
<Item Name="[len]">len</Item>
<Item Name="[ptr]">ptr,[len]na</Item>
</Expand>
</Type>
</AutoVisualizer>