Sync to HEAD
[bpt/emacs.git] / src / .gdbinit
1 # Copyright (C) 1992, 93, 94, 95, 96, 97, 1998, 2000, 01, 2004
2 # Free Software Foundation, Inc.
3 #
4 # This file is part of GNU Emacs.
5 #
6 # GNU Emacs is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
10 #
11 # GNU Emacs is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Emacs; see the file COPYING. If not, write to the
18 # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 # Boston, MA 02111-1307, USA.
20
21 # Force loading of symbols, enough to give us gdb_valbits etc.
22 set main
23
24 # Find lwlib source files too.
25 dir ../lwlib
26 #dir /gd/gnu/lesstif-0.89.9/lib/Xm
27
28 # Don't enter GDB when user types C-g to quit.
29 # This has one unfortunate effect: you can't type C-c
30 # at the GDB to stop Emacs, when using X.
31 # However, C-z works just as well in that case.
32 handle 2 noprint pass
33
34 # Don't pass SIGALRM to Emacs. This makes problems when
35 # debugging.
36 handle SIGALRM ignore
37
38 # Set up a mask to use.
39 # This should be EMACS_INT, but in some cases that is a macro.
40 # long ought to work in all cases right now.
41
42 define xgetptr
43 set $ptr = (gdb_use_union ? $arg0.u.val : $arg0 & $valmask) | gdb_data_seg_bits
44 end
45
46 define xgetint
47 set $int = gdb_use_union ? $arg0.s.val : (gdb_use_lsb ? $arg0 : $arg0 << gdb_gctypebits) >> gdb_gctypebits
48 end
49
50 define xgettype
51 set $type = gdb_use_union ? $arg0.s.type : (enum Lisp_Type) (gdb_use_lsb ? $arg0 & $tagmask : $arg0 >> gdb_valbits)
52 end
53
54 # Set up something to print out s-expressions.
55 define pr
56 set debug_print ($)
57 end
58 document pr
59 Print the emacs s-expression which is $.
60 Works only when an inferior emacs is executing.
61 end
62
63 define xtype
64 xgettype $
65 output $type
66 echo \n
67 if $type == Lisp_Misc
68 xmisctype
69 else
70 if $type == Lisp_Vectorlike
71 xvectype
72 end
73 end
74 end
75 document xtype
76 Print the type of $, assuming it is an Emacs Lisp value.
77 If the first type printed is Lisp_Vector or Lisp_Misc,
78 a second line gives the more precise type.
79 end
80
81 define xvectype
82 xgetptr $
83 set $size = ((struct Lisp_Vector *) $ptr)->size
84 output ($size & PVEC_FLAG) ? (enum pvec_type) ($size & PVEC_TYPE_MASK) : $size
85 echo \n
86 end
87 document xvectype
88 Print the size or vector subtype of $, assuming it is a vector or pseudovector.
89 end
90
91 define xmisctype
92 xgetptr $
93 output (enum Lisp_Misc_Type) (((struct Lisp_Free *) $ptr)->type)
94 echo \n
95 end
96 document xmisctype
97 Print the specific type of $, assuming it is some misc type.
98 end
99
100 define xint
101 xgetint $
102 print $int
103 end
104 document xint
105 Print $, assuming it is an Emacs Lisp integer. This gets the sign right.
106 end
107
108 define xptr
109 xgetptr $
110 print (void *) $ptr
111 end
112 document xptr
113 Print the pointer portion of $, assuming it is an Emacs Lisp value.
114 end
115
116 define xmarker
117 xgetptr $
118 print (struct Lisp_Marker *) $ptr
119 end
120 document xmarker
121 Print $ as a marker pointer, assuming it is an Emacs Lisp marker value.
122 end
123
124 define xoverlay
125 xgetptr $
126 print (struct Lisp_Overlay *) $ptr
127 end
128 document xoverlay
129 Print $ as a overlay pointer, assuming it is an Emacs Lisp overlay value.
130 end
131
132 define xmiscfree
133 xgetptr $
134 print (struct Lisp_Free *) $ptr
135 end
136 document xmiscfree
137 Print $ as a misc free-cell pointer, assuming it is an Emacs Lisp Misc value.
138 end
139
140 define xintfwd
141 xgetptr $
142 print (struct Lisp_Intfwd *) $ptr
143 end
144 document xintfwd
145 Print $ as an integer forwarding pointer, assuming it is an Emacs Lisp Misc value.
146 end
147
148 define xboolfwd
149 xgetptr $
150 print (struct Lisp_Boolfwd *) $ptr
151 end
152 document xboolfwd
153 Print $ as a boolean forwarding pointer, assuming it is an Emacs Lisp Misc value.
154 end
155
156 define xobjfwd
157 xgetptr $
158 print (struct Lisp_Objfwd *) $ptr
159 end
160 document xobjfwd
161 Print $ as an object forwarding pointer, assuming it is an Emacs Lisp Misc value.
162 end
163
164 define xbufobjfwd
165 xgetptr $
166 print (struct Lisp_Buffer_Objfwd *) $ptr
167 end
168 document xbufobjfwd
169 Print $ as a buffer-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
170 end
171
172 define xkbobjfwd
173 xgetptr $
174 print (struct Lisp_Kboard_Objfwd *) $ptr
175 end
176 document xkbobjfwd
177 Print $ as a kboard-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
178 end
179
180 define xbuflocal
181 xgetptr $
182 print (struct Lisp_Buffer_Local_Value *) $ptr
183 end
184 document xbuflocal
185 Print $ as a buffer-local-value pointer, assuming it is an Emacs Lisp Misc value.
186 end
187
188 define xsymbol
189 xgetptr $
190 print (struct Lisp_Symbol *) $ptr
191 xprintsym $
192 echo \n
193 end
194 document xsymbol
195 Print the name and address of the symbol $.
196 This command assumes that $ is an Emacs Lisp symbol value.
197 end
198
199 define xstring
200 xgetptr $
201 print (struct Lisp_String *) $ptr
202 output ($->size > 1000) ? 0 : ($->data[0])@($->size_byte < 0 ? $->size : $->size_byte)
203 echo \n
204 end
205 document xstring
206 Print the contents and address of the string $.
207 This command assumes that $ is an Emacs Lisp string value.
208 end
209
210 define xvector
211 xgetptr $
212 print (struct Lisp_Vector *) $ptr
213 output ($->size > 50) ? 0 : ($->contents[0])@($->size)
214 echo \n
215 end
216 document xvector
217 Print the contents and address of the vector $.
218 This command assumes that $ is an Emacs Lisp vector value.
219 end
220
221 define xprocess
222 xgetptr $
223 print (struct Lisp_Process *) $ptr
224 output *$
225 echo \n
226 end
227 document xprocess
228 Print the address of the struct Lisp_process which the Lisp_Object $ points to.
229 end
230
231 define xframe
232 xgetptr $
233 print (struct frame *) $ptr
234 end
235 document xframe
236 Print $ as a frame pointer, assuming it is an Emacs Lisp frame value.
237 end
238
239 define xcompiled
240 xgetptr $
241 print (struct Lisp_Vector *) $ptr
242 output ($->contents[0])@($->size & 0xff)
243 end
244 document xcompiled
245 Print $ as a compiled function pointer, assuming it is an Emacs Lisp compiled value.
246 end
247
248 define xwindow
249 xgetptr $
250 print (struct window *) $ptr
251 printf "%dx%d+%d+%d\n", $->width, $->height, $->left, $->top
252 end
253 document xwindow
254 Print $ as a window pointer, assuming it is an Emacs Lisp window value.
255 Print the window's position as "WIDTHxHEIGHT+LEFT+TOP".
256 end
257
258 define xwinconfig
259 xgetptr $
260 print (struct save_window_data *) $ptr
261 end
262 document xwinconfig
263 Print $ as a window configuration pointer, assuming it is an Emacs Lisp window configuration value.
264 end
265
266 define xsubr
267 xgetptr $
268 print (struct Lisp_Subr *) $ptr
269 output *$
270 echo \n
271 end
272 document xsubr
273 Print the address of the subr which the Lisp_Object $ points to.
274 end
275
276 define xchartable
277 xgetptr $
278 print (struct Lisp_Char_Table *) $ptr
279 printf "Purpose: "
280 xprintsym $->purpose
281 printf " %d extra slots", ($->size & 0x1ff) - 68
282 echo \n
283 end
284 document xchartable
285 Print the address of the char-table $, and its purpose.
286 This command assumes that $ is an Emacs Lisp char-table value.
287 end
288
289 define xboolvector
290 xgetptr $
291 print (struct Lisp_Bool_Vector *) $ptr
292 output ($->size > 256) ? 0 : ($->data[0])@(($->size + 7)/ 8)
293 echo \n
294 end
295 document xboolvector
296 Print the contents and address of the bool-vector $.
297 This command assumes that $ is an Emacs Lisp bool-vector value.
298 end
299
300 define xbuffer
301 xgetptr $
302 print (struct buffer *) $ptr
303 xgetptr $->name
304 output ((struct Lisp_String *) $ptr)->data
305 echo \n
306 end
307 document xbuffer
308 Set $ as a buffer pointer, assuming it is an Emacs Lisp buffer value.
309 Print the name of the buffer.
310 end
311
312 define xhashtable
313 xgetptr $
314 print (struct Lisp_Hash_Table *) $ptr
315 end
316 document xhashtable
317 Set $ as a hash table pointer, assuming it is an Emacs Lisp hash table value.
318 end
319
320 define xcons
321 xgetptr $
322 print (struct Lisp_Cons *) $ptr
323 output/x *$
324 echo \n
325 end
326 document xcons
327 Print the contents of $, assuming it is an Emacs Lisp cons.
328 end
329
330 define nextcons
331 p $.cdr
332 xcons
333 end
334 document nextcons
335 Print the contents of the next cell in a list.
336 This assumes that the last thing you printed was a cons cell contents
337 (type struct Lisp_Cons) or a pointer to one.
338 end
339 define xcar
340 xgetptr $
341 xgettype $
342 print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->car : 0)
343 end
344 document xcar
345 Print the car of $, assuming it is an Emacs Lisp pair.
346 end
347
348 define xcdr
349 xgetptr $
350 xgettype $
351 print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->cdr : 0)
352 end
353 document xcdr
354 Print the cdr of $, assuming it is an Emacs Lisp pair.
355 end
356
357 define xfloat
358 xgetptr $
359 print ((struct Lisp_Float *) $ptr)->data
360 end
361 document xfloat
362 Print $ assuming it is a lisp floating-point number.
363 end
364
365 define xscrollbar
366 xgetptr $
367 print (struct scrollbar *) $ptr
368 output *$
369 echo \n
370 end
371 document xscrollbar
372 Print $ as a scrollbar pointer.
373 end
374
375 define xprintsym
376 xgetptr $arg0
377 set $sym = (struct Lisp_Symbol *) $ptr
378 xgetptr $sym->xname
379 set $sym_name = (struct Lisp_String *) $ptr
380 output ($sym_name->data[0])@($sym_name->size_byte < 0 ? $sym_name->size : $sym_name->size_byte)
381 end
382 document xprintsym
383 Print argument as a symbol.
384 end
385
386 define xcoding
387 set $tmp = (struct Lisp_Hash_Table *) ((Vcoding_system_hash_table & $valmask) | gdb_data_seg_bits)
388 set $tmp = (struct Lisp_Vector *) (($tmp->key_and_value & $valmask) | gdb_data_seg_bits)
389 set $name = $tmp->contents[$arg0 * 2]
390 print $name
391 pr
392 print $tmp->contents[$arg0 * 2 + 1]
393 pr
394 end
395 document xcoding
396 Print the name and attributes of coding system that has ID (argument).
397 end
398
399 define xcharset
400 set $tmp = (struct Lisp_Hash_Table *) ((Vcharset_hash_table & $valmask) | gdb_data_seg_bits)
401 set $tmp = (struct Lisp_Vector *) (($tmp->key_and_value & $valmask) | gdb_data_seg_bits)
402 p $tmp->contents[$arg0->hash_index * 2]
403 pr
404 end
405 document xcharset
406 Print the name of charset that has ID (argument).
407 end
408
409 define xbacktrace
410 set $bt = backtrace_list
411 while $bt
412 xgettype (*$bt->function)
413 if $type == Lisp_Symbol
414 xprintsym (*$bt->function)
415 echo \n
416 else
417 printf "0x%x ", *$bt->function
418 if $type == Lisp_Vectorlike
419 xgetptr (*$bt->function)
420 set $size = ((struct Lisp_Vector *) $ptr)->size
421 output ($size & PVEC_FLAG) ? (enum pvec_type) ($size & PVEC_TYPE_MASK) : $size
422 else
423 printf "Lisp type %d", $type
424 end
425 echo \n
426 end
427 set $bt = $bt->next
428 end
429 end
430 document xbacktrace
431 Print a backtrace of Lisp function calls from backtrace_list.
432 Set a breakpoint at Fsignal and call this to see from where
433 an error was signaled.
434 end
435
436 define xreload
437 set $tagmask = (((long)1 << gdb_gctypebits) - 1)
438 set $valmask = gdb_use_lsb ? ~($tagmask) : ((long)1 << gdb_valbits) - 1
439 end
440 document xreload
441 When starting Emacs a second time in the same gdb session under
442 FreeBSD 2.2.5, gdb 4.13, $valmask have lost
443 their values. (The same happens on current (2000) versions of GNU/Linux
444 with gdb 5.0.)
445 This function reloads them.
446 end
447 xreload
448
449 define hook-run
450 xreload
451 end
452
453 # Call xreload if a new Emacs executable is loaded.
454 define hookpost-run
455 xreload
456 end
457
458 set print pretty on
459 set print sevenbit-strings
460
461 show environment DISPLAY
462 show environment TERM
463 set args -geometry 80x40+0+0
464
465 # Don't let abort actually run, as it will make
466 # stdio stop working and therefore the `pr' command above as well.
467 break abort
468
469 # If we are running in synchronous mode, we want a chance to look around
470 # before Emacs exits. Perhaps we should put the break somewhere else
471 # instead...
472 break x_error_quitter
473
474 # arch-tag: 12f34321-7bfa-4240-b77a-3cd3a1696dfe