-
Notifications
You must be signed in to change notification settings - Fork 9
/
manifest.1.xml
110 lines (107 loc) · 5.2 KB
/
manifest.1.xml
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
<?xml version="1.0" encoding="utf-8"?>
<ExtensionPackages Version="1.0.0.0" Compression="none">
<ExtensionPackage>
<Name>CommonHelpers</Name>
<Version>1.0.0.1</Version>
<Description>Some common helpers.</Description>
<Components>
<ScriptComponent Name="CommonHelpers" Type="Engine" File="common.js" FilePathKind="RepositoryRelative">
<FunctionAliases>
<FunctionAlias Name="exccandidates">
<AliasItem>
<Syntax>
<![CDATA[!exccandidates 0x[<thread ID>]]]>
</Syntax>
<Description>
<![CDATA[Searches for possible exception records in stack of the thread specified by [<thread ID>] or in stack of the current thread]]>
</Description>
</AliasItem>
</FunctionAlias>
<FunctionAlias Name="walk_stdmap">
<AliasItem>
<Syntax>
<![CDATA[!walk_stdmap [<head ptr(_Myhead field of std::map)>]]]>
</Syntax>
<Description>
<![CDATA[Dumps all elements of the map (no interpretation, just dds) with address [<head ptr>]. The [<head ptr>] should be taken from _Myhead field of std::map]]>
</Description>
</AliasItem>
</FunctionAlias>
</FunctionAliases>
</ScriptComponent>
</Components>
</ExtensionPackage>
<ExtensionPackage>
<Name>NoexceptHelper</Name>
<Version>1.0.0.1</Version>
<Description>Shows correct stack if it is shown wrong due to exception from noexcept functions.</Description>
<Components>
<ScriptComponent Name="NoexceptHelper" Type="Engine" File="noexcept.js" FilePathKind="RepositoryRelative">
<FunctionAliases>
<FunctionAlias Name="fix_stack">
<AliasItem>
<Syntax>
<![CDATA[!fix_stack]]>
</Syntax>
<Description>
<![CDATA[Try to show corrected stack of the current thread if it is shown wrong due to an exception from noexcept function.]]>
</Description>
</AliasItem>
</FunctionAlias>
</FunctionAliases>
</ScriptComponent>
</Components>
</ExtensionPackage>
<ExtensionPackage>
<Name>X64Helper</Name>
<Version>1.0.0.1</Version>
<Description>Try to show x32 stacks of all threads in x64 dump.</Description>
<Components>
<ScriptComponent Name="X64Helper" Type="Engine" File="x64.js" FilePathKind="RepositoryRelative">
<FunctionAliases>
<FunctionAlias Name="x32stacks">
<AliasItem>
<Syntax>
<![CDATA[!x32stacks]]>
</Syntax>
<Description>
<![CDATA[Try to show x32 stacks of all threads in x64 dump.]]>
</Description>
</AliasItem>
</FunctionAlias>
</FunctionAliases>
</ScriptComponent>
</Components>
</ExtensionPackage>
<ExtensionPackage>
<Name>MemoryHelpers</Name>
<Version>1.0.0.1</Version>
<Description>Heap and memory helpers.</Description>
<Components>
<ScriptComponent Name="MemoryHelpers" Type="Engine" File="memory.js" FilePathKind="RepositoryRelative">
<FunctionAliases>
<FunctionAlias Name="av_heap_alloc_stats">
<AliasItem>
<Syntax>
<![CDATA[!av_heap_alloc_stats 0x[<heap address>], 0x[<block size in hex>]]]>
</Syntax>
<Description>
<![CDATA[Collect stats about allocation stacks of block with size [<block size in hex>] in heap [<heap address>]. Note! This command requires AppVerifier for heap to be enabled]]>
</Description>
</AliasItem>
</FunctionAlias>
<FunctionAlias Name="heap_alloc_stats">
<AliasItem>
<Syntax>
<![CDATA[!heap_alloc_stats 0x[<heap address>]]]>
</Syntax>
<Description>
<![CDATA[Collect stats about data in the first 16 bytes of blocks in heap [<heap address>]]]>
</Description>
</AliasItem>
</FunctionAlias>
</FunctionAliases>
</ScriptComponent>
</Components>
</ExtensionPackage>
</ExtensionPackages>