summaryrefslogtreecommitdiffstats
path: root/autoexp.visualizer
blob: f5c664cd43d35d5dd138c35904a95dc703358408 (plain)
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
;; added to [Visualizer] for cv2pdb - keep this line for uninstaller
;; add DO NOT REMOVE to the line above after the '-' to not remove/update 
;;  this section by the installer/uninstaller

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;	 D types visualizer
;; 
;; add the remainder of this file to the [Visualizer] section
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

; strings not as dynamic arrays, use dviewhelper instead
char[]|const(char)[]|immutable(char)[] {
	preview ( [(string)$e] )
}
		
wchar[]|const(wchar)[]|immutable(wchar)[] {
	preview ( [(wstring)$e] )
}

dchar[]|const(dchar)[]|immutable(dchar)[] {
	preview ( [(dstring)$e] )
}

const void[]|void[] {
	preview ( 
		#if ($e.ptr == 0) ( "null" )
		#else ( 
			#( "[", $e.length, "] ", [(void*) $e.ptr] )
		)
	)
	children (
		#(
			length: [$e.length],
			ptr: [(void*) $e.ptr]
		)
	)
}

; dynamic array
*[]|dArray* {
	preview ( 
		#if ($e.ptr == 0) ( "null" )
		#else ( 
			#if($e.length > 1024) (
				#( "[", $e.length, "] ", (void*) $e.ptr, " too large for expansion" )
			)
			#else (
				#(
					"[", $e.length, "](",
					#array (
						expr : ($e.ptr)[$i],
						size : $e.length
					),
					")"
				)
			)
		)
	)
	children (
		#if($e.length > 4096) (
			#(
				length: [$e.length],
				ptr: [$e.ptr]
			)
		)
		#else (
			#(
				length: [$e.length],
				#array (
					expr: $e.ptr[$i],
					size: $e.length
				)
			)
		)
	)
}

;; display associative array
;;
;; the "magic" sizes of the basic dynamic array are used to check for uninitialized
;; arrays
;;              97UL,            389UL,
;;           1_543UL,          6_151UL,
;;          24_593UL,         98_317UL,
;;          393_241UL,      1_572_869UL,
;;        6_291_469UL,     25_165_843UL,
;;      100_663_319UL,    402_653_189UL,
;;    1_610_612_741UL,  4_294_967_291UL,
aa<*> {
	preview(
		#if($e.a == 0 || $e.a->b.ptr == 0) ( "null" )
		; expressions must be in a single line (sigh)
		#elif($e.a->b.length == 97 || $e.a->b.length == 389 || $e.a->b.length == 1543 || $e.a->b.length == 6151 || $e.a->b.length == 24593 || $e.a->b.length == 98317 || $e.a->b.length == 393241 || $e.a->b.length == 1572869 || $e.a->b.length == 6291469 || $e.a->b.length == 25165843)
		(
			#if($e.a->nodes > 1024) (
				#( "[", $e.a->nodes, "] ", [(void*) $e.a], " too large for expansion" )
			)
			#else (
				#( "[", $e.a->nodes, "] ", [(void*) $e.a] )
			)
		)
		#elif (1)  ; no #else in a series of #elif !?
		(
			#( "[", $e.a->nodes, "] ", [(void*) $e.a], " uninitialized" )
		)
	)
	children(
		#if($e.a == 0 || $e.a->b.ptr == 0 || $e.a->nodes > 1024) 
			( #array( expr: 0, size: 0 ) )
		#else (
			#( 
				#array (
					expr: &$e.a->b.ptr[$i],
					size: $e.a->b.length
				) : 
				#tree (
					head : $e,
					left : left,
					right : right
; limit size for sanity, hope rehashing takes care of not long lists
; limiting the number does not work, it will try to show the given number of elements
;					size : 32
				) : $e
			)
		)
	)
}

;; display associative array (starting with with dmd2.043, new sizes 4 and 31 were added, and
;;  a list is used per hash entry instead of a tree
;; remember to pass -D 2.043 to cv2pdb to produce suitable debug info
;;
aa2<*> {
	preview(
		#if($e.a == 0 || $e.a->b.ptr == 0) ( "null" )
		; expressions must be in a single line (sigh)
		#elif($e.a->b.length == 4 || $e.a->b.length == 31 || $e.a->b.length == 97 || $e.a->b.length == 389 || $e.a->b.length == 1543 || $e.a->b.length == 6151 || $e.a->b.length == 24593 || $e.a->b.length == 98317 || $e.a->b.length == 393241 || $e.a->b.length == 1572869 || $e.a->b.length == 6291469 || $e.a->b.length == 25165843)
		(
			#if($e.a->nodes > 1024) (
				#( "[", $e.a->nodes, "] ", [(void*) $e.a], " too large for expansion" )
			)
			#else (
				#( "[", $e.a->nodes, "] ", [(void*) $e.a] )
			)
		)
		#elif (1)  ; no #else in a series of #elif !?
		(
			#( "[", $e.a->nodes, "] ", [(void*) $e.a], " uninitialized" )
		)
	)
	children(
		#if($e.a == 0 || $e.a->b.ptr == 0) 
			( #array( expr: 0, size: 0 ) )
		; expressions must be in a single line (sigh)
		#elif($e.a->b.length == 4 || $e.a->b.length == 31 || $e.a->b.length == 97 || $e.a->b.length == 389 || $e.a->b.length == 1543 || $e.a->b.length == 6151 || $e.a->b.length == 24593 || $e.a->b.length == 98317 || $e.a->b.length == 393241 || $e.a->b.length == 1572869 || $e.a->b.length == 6291469 || $e.a->b.length == 25165843)
		(
			#( 
				#array (
					expr: &$e.a->b.ptr[$i],
					size: $e.a->b.length
				) : 
				; DMD 2.043+
				#list (
					head : $e,
					next : next
; limit size for sanity, hope rehashing takes care of not long lists
; limiting the number does not work, it will try to show the given number of elements
;					size : 32
				) : $e
			)
		)
		#elif (1)  ; no #else in a series of #elif !?
		(
			#( "[", $e.a->nodes, "] ", [(void*) $e.a], " uninitialized" )
		)
	)
}

; display tree
internal@aaA<*,*> {
	preview(
		#( "<", $e.key, ", ", $e.value, ">" )
	)
	children (
		#(
			key: [$e.key],
			value: [$e.value]
		)
	)
}

; display null references and class name for class objects
*@* {
	preview(
		#( 
			#if (&$e == 0) ( "null" )
			#elif ($e.__classtype == 1) ( ;;; classes
				#( "[", [$e.__viewhelper], "] ", [$e,!] ) 
			)
			#elif ($e.__classtype == 2) ( ;;; DInterface
				#( "[D-Interface ", [**(object_viewhelper**)&$e], "] " ) 
			)
			#elif ($e.__classtype == 3) ( ;;; CppInterface
				#( "[C++Interface]") 
			)
			#elif ($e.__classtype == 4) ( ;;; Struct
				#( [$e,!] ) 
			)
			#elif (1) (
				#( [$e,!] ) 
			)
		)
	)
}

;; eo section Visualizer for D variables ;;;;;;;;;;;;;;;;;;;;;;
;; eo added for cv2pdb - keep this line for uninstaller