(cvs-version): Use cvs-program rather than "cvs".
[bpt/emacs.git] / src / .gdbinit
CommitLineData
e3efab9c
GM
1# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001
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
7faa0236
RS
21# Force loading of symbols, enough to give us gdb_valbits etc.
22set main
23
39d10e52
RS
24# Find lwlib source files too.
25dir ../lwlib
892d8fcd 26#dir /gd/gnu/lesstif-0.89.9/lib/Xm
39d10e52 27
056515d8
KH
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.
32handle 2 noprint pass
33
3266f62b
GM
34# Don't pass SIGALRM to Emacs. This makes problems when
35# debugging.
36handle SIGALRM ignore
37
056515d8 38# Set up a mask to use.
b8d3c872
RS
39# This should be EMACS_INT, but in some cases that is a macro.
40# long ought to work in all cases right now.
41set $valmask = ((long)1 << gdb_valbits) - 1
b74f15c6
KH
42set $nonvalbits = gdb_emacs_intbits - gdb_valbits
43
a6ffc6a2
JB
44# Set up something to print out s-expressions.
45define pr
36fa5981 46set debug_print ($)
a6ffc6a2 47end
a6ffc6a2
JB
48document pr
49Print the emacs s-expression which is $.
50Works only when an inferior emacs is executing.
51end
52
53define xtype
b74f15c6 54output (enum Lisp_Type) (($ >> gdb_valbits) & 0x7)
3fe8bda5 55echo \n
b74f15c6 56output ((($ >> gdb_valbits) & 0x7) == Lisp_Misc ? (enum Lisp_Misc_Type) (((struct Lisp_Free *) (($ & $valmask) | gdb_data_seg_bits))->type) : (($ >> gdb_valbits) & 0x7) == Lisp_Vectorlike ? ($size = ((struct Lisp_Vector *) (($ & $valmask) | gdb_data_seg_bits))->size, (enum pvec_type) (($size & PVEC_FLAG) ? $size & PVEC_TYPE_MASK : 0)) : 0)
ef15f270 57echo \n
a6ffc6a2 58end
e065a56e 59document xtype
ba1e23bf 60Print the type of $, assuming it is an Emacs Lisp value.
3fe8bda5
RS
61If the first type printed is Lisp_Vector or Lisp_Misc,
62the second line gives the more precise type.
63Otherwise the second line doesn't mean anything.
64end
65
66define xvectype
b74f15c6 67set $size = ((struct Lisp_Vector *) (($ & $valmask) | gdb_data_seg_bits))->size
3fe8bda5
RS
68output (enum pvec_type) (($size & PVEC_FLAG) ? $size & PVEC_TYPE_MASK : 0)
69echo \n
70end
71document xvectype
72Print the vector subtype of $, assuming it is a vector or pseudovector.
73end
74
75define xmisctype
b74f15c6 76output (enum Lisp_Misc_Type) (((struct Lisp_Free *) (($ & $valmask) | gdb_data_seg_bits))->type)
3fe8bda5
RS
77echo \n
78end
79document xmisctype
80Print the specific type of $, assuming it is some misc type.
e065a56e 81end
a6ffc6a2
JB
82
83define xint
b74f15c6 84print (($ & $valmask) << $nonvalbits) >> $nonvalbits
a6ffc6a2 85end
e065a56e 86document xint
ba1e23bf 87Print $, assuming it is an Emacs Lisp integer. This gets the sign right.
e065a56e 88end
a6ffc6a2
JB
89
90define xptr
b74f15c6 91print (void *) (($ & $valmask) | gdb_data_seg_bits)
a6ffc6a2 92end
e065a56e 93document xptr
ba1e23bf 94Print the pointer portion of $, assuming it is an Emacs Lisp value.
e065a56e 95end
a6ffc6a2 96
a6ffc6a2 97define xmarker
b74f15c6 98print (struct Lisp_Marker *) (($ & $valmask) | gdb_data_seg_bits)
a6ffc6a2 99end
e065a56e 100document xmarker
ba1e23bf 101Print $ as a marker pointer, assuming it is an Emacs Lisp marker value.
e065a56e 102end
a6ffc6a2 103
a6a3acf0 104define xoverlay
b74f15c6 105print (struct Lisp_Overlay *) (($ & $valmask) | gdb_data_seg_bits)
a6a3acf0
KH
106end
107document xoverlay
108Print $ as a overlay pointer, assuming it is an Emacs Lisp overlay value.
109end
110
111define xmiscfree
b74f15c6 112print (struct Lisp_Free *) (($ & $valmask) | gdb_data_seg_bits)
a6a3acf0
KH
113end
114document xmiscfree
115Print $ as a misc free-cell pointer, assuming it is an Emacs Lisp Misc value.
116end
117
118define xintfwd
b74f15c6 119print (struct Lisp_Intfwd *) (($ & $valmask) | gdb_data_seg_bits)
a6a3acf0
KH
120end
121document xintfwd
122Print $ as an integer forwarding pointer, assuming it is an Emacs Lisp Misc value.
123end
124
125define xboolfwd
b74f15c6 126print (struct Lisp_Boolfwd *) (($ & $valmask) | gdb_data_seg_bits)
a6a3acf0
KH
127end
128document xboolfwd
129Print $ as a boolean forwarding pointer, assuming it is an Emacs Lisp Misc value.
130end
131
132define xobjfwd
b74f15c6 133print (struct Lisp_Objfwd *) (($ & $valmask) | gdb_data_seg_bits)
a6a3acf0
KH
134end
135document xobjfwd
136Print $ as an object forwarding pointer, assuming it is an Emacs Lisp Misc value.
137end
138
029c56f6 139define xbufobjfwd
b74f15c6 140print (struct Lisp_Buffer_Objfwd *) (($ & $valmask) | gdb_data_seg_bits)
a6a3acf0 141end
029c56f6 142document xbufobjfwd
a6a3acf0
KH
143Print $ as a buffer-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
144end
145
a0371857 146define xkbobjfwd
b74f15c6 147print (struct Lisp_Kboard_Objfwd *) (($ & $valmask) | gdb_data_seg_bits)
cd39e946 148end
a0371857
KH
149document xkbobjfwd
150Print $ as a kboard-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
cd39e946
KH
151end
152
029c56f6 153define xbuflocal
b74f15c6 154print (struct Lisp_Buffer_Local_Value *) (($ & $valmask) | gdb_data_seg_bits)
a6a3acf0 155end
029c56f6 156document xbuflocal
a6a3acf0
KH
157Print $ as a buffer-local-value pointer, assuming it is an Emacs Lisp Misc value.
158end
159
a6ffc6a2 160define xsymbol
b74f15c6 161print (struct Lisp_Symbol *) ((((int) $) & $valmask) | gdb_data_seg_bits)
bff1fa19
SM
162set $xsymbol_name = ((struct Lisp_String *)(($->xname & $valmask) | gdb_data_seg_bits))
163output ($xsymbol_name->data[0])@($xsymbol_name->size_byte < 0 ? $xsymbol_name->size : $xsymbol_name->size_byte)
ef15f270 164echo \n
a6ffc6a2 165end
e065a56e
JB
166document xsymbol
167Print the name and address of the symbol $.
ba1e23bf 168This command assumes that $ is an Emacs Lisp symbol value.
e065a56e 169end
a6ffc6a2
JB
170
171define xstring
b74f15c6 172print (struct Lisp_String *) (($ & $valmask) | gdb_data_seg_bits)
14a8902a 173output ($->size > 1000) ? 0 : ($->data[0])@($->size_byte < 0 ? $->size : $->size_byte)
ef15f270 174echo \n
a6ffc6a2 175end
a6ffc6a2 176document xstring
e065a56e 177Print the contents and address of the string $.
ba1e23bf 178This command assumes that $ is an Emacs Lisp string value.
a6ffc6a2
JB
179end
180
181define xvector
b74f15c6 182print (struct Lisp_Vector *) (($ & $valmask) | gdb_data_seg_bits)
4ea0847a 183output ($->size > 50) ? 0 : ($->contents[0])@($->size)
ef15f270 184echo \n
a6ffc6a2 185end
a6ffc6a2 186document xvector
e065a56e 187Print the contents and address of the vector $.
ba1e23bf 188This command assumes that $ is an Emacs Lisp vector value.
a6ffc6a2
JB
189end
190
14a8902a
RS
191define xprocess
192print (struct Lisp_Process *) (($ & $valmask) | gdb_data_seg_bits)
193output *$
194echo \n
195end
196document xprocess
197Print the address of the struct Lisp_process which the Lisp_Object $ points to.
198end
199
ec558adc 200define xframe
b74f15c6 201print (struct frame *) (($ & $valmask) | gdb_data_seg_bits)
a6ffc6a2 202end
ec558adc 203document xframe
ba1e23bf 204Print $ as a frame pointer, assuming it is an Emacs Lisp frame value.
e065a56e 205end
a6ffc6a2 206
14a8902a
RS
207define xcompiled
208print (struct Lisp_Vector *) (($ & $valmask) | gdb_data_seg_bits)
209output ($->contents[0])@($->size & 0xff)
210end
211document xcompiled
212Print $ as a compiled function pointer, assuming it is an Emacs Lisp compiled value.
213end
214
215define xwindow
216print (struct window *) (($ & $valmask) | gdb_data_seg_bits)
217printf "%dx%d+%d+%d\n", $->width, $->height, $->left, $->top
218end
219document xwindow
220Print $ as a window pointer, assuming it is an Emacs Lisp window value.
221Print the window's position as "WIDTHxHEIGHT+LEFT+TOP".
222end
223
029c56f6 224define xwinconfig
b74f15c6 225print (struct save_window_data *) (($ & $valmask) | gdb_data_seg_bits)
a6a3acf0 226end
029c56f6 227document xwinconfig
a6a3acf0
KH
228Print $ as a window configuration pointer, assuming it is an Emacs Lisp window configuration value.
229end
230
14a8902a
RS
231define xsubr
232print (struct Lisp_Subr *) (($ & $valmask) | gdb_data_seg_bits)
233output *$
234echo \n
a6a3acf0 235end
14a8902a
RS
236document xsubr
237Print the address of the subr which the Lisp_Object $ points to.
238end
239
240define xchartable
241print (struct Lisp_Char_Table *) (($ & $valmask) | gdb_data_seg_bits)
242printf "Purpose: "
243output (char*)&((struct Lisp_Symbol *) ((((int) $->purpose) & $valmask) | gdb_data_seg_bits))->name->data
244printf " %d extra slots", ($->size & 0x1ff) - 388
245echo \n
246end
247document xchartable
248Print the address of the char-table $, and its purpose.
249This command assumes that $ is an Emacs Lisp char-table value.
250end
251
252define xboolvector
253print (struct Lisp_Bool_Vector *) (($ & $valmask) | gdb_data_seg_bits)
254output ($->size > 256) ? 0 : ($->data[0])@(($->size + 7)/ 8)
255echo \n
256end
257document xboolvector
258Print the contents and address of the bool-vector $.
259This command assumes that $ is an Emacs Lisp bool-vector value.
260end
261
262define xbuffer
263print (struct buffer *) (($ & $valmask) | gdb_data_seg_bits)
9f696a00 264output ((struct Lisp_String *) ((($->name) & $valmask) | gdb_data_seg_bits))->data
14a8902a
RS
265echo \n
266end
267document xbuffer
268Set $ as a buffer pointer, assuming it is an Emacs Lisp buffer value.
269Print the name of the buffer.
a6a3acf0
KH
270end
271
3266f62b
GM
272define xhashtable
273print (struct Lisp_Hash_Table *) (($ & $valmask) | gdb_data_seg_bits)
274end
275document xhashtable
276Set $ as a hash table pointer, assuming it is an Emacs Lisp hash table value.
277end
278
a6ffc6a2 279define xcons
b74f15c6 280print (struct Lisp_Cons *) (($ & $valmask) | gdb_data_seg_bits)
6f493884 281output/x *$
ef15f270 282echo \n
a6ffc6a2 283end
e065a56e 284document xcons
ba1e23bf 285Print the contents of $, assuming it is an Emacs Lisp cons.
e065a56e 286end
a6ffc6a2 287
6f493884
RS
288define nextcons
289p $.cdr
290xcons
291end
292document nextcons
293Print the contents of the next cell in a list.
294This assumes that the last thing you printed was a cons cell contents
295(type struct Lisp_Cons) or a pointer to one.
296end
a6ffc6a2 297define xcar
de2436ef 298print/x ((($ >> gdb_valbits) & 0xf) == Lisp_Cons ? ((struct Lisp_Cons *) (($ & $valmask) | gdb_data_seg_bits))->car : 0)
a6ffc6a2 299end
e065a56e 300document xcar
ba1e23bf 301Print the car of $, assuming it is an Emacs Lisp pair.
e065a56e 302end
a6ffc6a2
JB
303
304define xcdr
de2436ef 305print/x ((($ >> gdb_valbits) & 0xf) == Lisp_Cons ? ((struct Lisp_Cons *) (($ & $valmask) | gdb_data_seg_bits))->cdr : 0)
a6ffc6a2 306end
e065a56e 307document xcdr
ba1e23bf 308Print the cdr of $, assuming it is an Emacs Lisp pair.
e065a56e 309end
a6ffc6a2 310
df86e57e 311define xfloat
b74f15c6 312print ((struct Lisp_Float *) (($ & $valmask) | gdb_data_seg_bits))->data
df86e57e
JB
313end
314document xfloat
315Print $ assuming it is a lisp floating-point number.
316end
317
b2367490 318define xscrollbar
b74f15c6 319print (struct scrollbar *) (($ & $valmask) | gdb_data_seg_bits)
b2367490
JB
320output *$
321echo \n
322end
dec5f4e3 323document xscrollbar
b2367490
JB
324Print $ as a scrollbar pointer.
325end
326
24b4d1bc
GM
327define xprintsym
328 set $sym = (struct Lisp_Symbol *) ((((int) $arg0) & $valmask) | gdb_data_seg_bits)
329 output (char*)$sym->name->data
330 echo \n
331end
332document xprintsym
333 Print argument as a symbol.
334end
335
336define xbacktrace
337 set $bt = backtrace_list
338 while $bt
3176a27e
GM
339 set $type = (enum Lisp_Type) ((*$bt->function >> gdb_valbits) & 0x7)
340 if $type == Lisp_Symbol
341 xprintsym *$bt->function
342 else
343 printf "0x%x ", *$bt->function
344 if $type == Lisp_Vectorlike
345 set $size = ((struct Lisp_Vector *) ((*$bt->function & $valmask) | gdb_data_seg_bits))->size
346 output (enum pvec_type) (($size & PVEC_FLAG) ? $size & PVEC_TYPE_MASK : 0)
347 else
348 printf "Lisp type %d", $type
349 end
350 echo \n
351 end
24b4d1bc
GM
352 set $bt = $bt->next
353 end
354end
355document xbacktrace
356 Print a backtrace of Lisp function calls from backtrace_list.
357 Set a breakpoint at Fsignal and call this to see from where
3176a27e 358 an error was signaled.
24b4d1bc
GM
359end
360
361define xreload
362 set $valmask = ((long)1 << gdb_valbits) - 1
363 set $nonvalbits = gdb_emacs_intbits - gdb_valbits
364end
365document xreload
366 When starting Emacs a second time in the same gdb session under
367 FreeBSD 2.2.5, gdb 4.13, $valmask and $nonvalbits have lost
be9e8331
DL
368 their values. (The same happens on current (2000) versions of GNU/Linux
369 with gdb 5.0.)
c71ea231 370 This function reloads them.
24b4d1bc
GM
371end
372
be9e8331
DL
373define hook-run
374 xreload
375end
376
e869a29d
RS
377# Call xreload if a new Emacs executable is loaded.
378define hookpost-run
379 xreload
380end
381
e065a56e 382set print pretty on
df86e57e 383set print sevenbit-strings
a6ffc6a2 384
e5d77022 385show environment DISPLAY
6f5d1a4f 386show environment TERM
6f5d1a4f 387set args -geometry 80x40+0+0
e5d77022 388
a6ffc6a2 389# Don't let abort actually run, as it will make
7f692070 390# stdio stop working and therefore the `pr' command above as well.
a6ffc6a2
JB
391break abort
392
393# If we are running in synchronous mode, we want a chance to look around
394# before Emacs exits. Perhaps we should put the break somewhere else
395# instead...
998ee976 396break x_error_quitter