Trailing whitespace deleted.
[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)
f352c826 162xprintsym $
a6ffc6a2 163end
e065a56e
JB
164document xsymbol
165Print the name and address of the symbol $.
ba1e23bf 166This command assumes that $ is an Emacs Lisp symbol value.
e065a56e 167end
a6ffc6a2
JB
168
169define xstring
b74f15c6 170print (struct Lisp_String *) (($ & $valmask) | gdb_data_seg_bits)
14a8902a 171output ($->size > 1000) ? 0 : ($->data[0])@($->size_byte < 0 ? $->size : $->size_byte)
ef15f270 172echo \n
a6ffc6a2 173end
a6ffc6a2 174document xstring
e065a56e 175Print the contents and address of the string $.
ba1e23bf 176This command assumes that $ is an Emacs Lisp string value.
a6ffc6a2
JB
177end
178
179define xvector
b74f15c6 180print (struct Lisp_Vector *) (($ & $valmask) | gdb_data_seg_bits)
4ea0847a 181output ($->size > 50) ? 0 : ($->contents[0])@($->size)
ef15f270 182echo \n
a6ffc6a2 183end
a6ffc6a2 184document xvector
e065a56e 185Print the contents and address of the vector $.
ba1e23bf 186This command assumes that $ is an Emacs Lisp vector value.
a6ffc6a2
JB
187end
188
14a8902a
RS
189define xprocess
190print (struct Lisp_Process *) (($ & $valmask) | gdb_data_seg_bits)
191output *$
192echo \n
193end
194document xprocess
195Print the address of the struct Lisp_process which the Lisp_Object $ points to.
196end
197
ec558adc 198define xframe
b74f15c6 199print (struct frame *) (($ & $valmask) | gdb_data_seg_bits)
a6ffc6a2 200end
ec558adc 201document xframe
ba1e23bf 202Print $ as a frame pointer, assuming it is an Emacs Lisp frame value.
e065a56e 203end
a6ffc6a2 204
14a8902a
RS
205define xcompiled
206print (struct Lisp_Vector *) (($ & $valmask) | gdb_data_seg_bits)
207output ($->contents[0])@($->size & 0xff)
208end
209document xcompiled
210Print $ as a compiled function pointer, assuming it is an Emacs Lisp compiled value.
211end
212
213define xwindow
214print (struct window *) (($ & $valmask) | gdb_data_seg_bits)
215printf "%dx%d+%d+%d\n", $->width, $->height, $->left, $->top
216end
217document xwindow
218Print $ as a window pointer, assuming it is an Emacs Lisp window value.
219Print the window's position as "WIDTHxHEIGHT+LEFT+TOP".
220end
221
029c56f6 222define xwinconfig
b74f15c6 223print (struct save_window_data *) (($ & $valmask) | gdb_data_seg_bits)
a6a3acf0 224end
029c56f6 225document xwinconfig
a6a3acf0
KH
226Print $ as a window configuration pointer, assuming it is an Emacs Lisp window configuration value.
227end
228
14a8902a
RS
229define xsubr
230print (struct Lisp_Subr *) (($ & $valmask) | gdb_data_seg_bits)
231output *$
232echo \n
a6a3acf0 233end
14a8902a
RS
234document xsubr
235Print the address of the subr which the Lisp_Object $ points to.
236end
237
238define xchartable
239print (struct Lisp_Char_Table *) (($ & $valmask) | gdb_data_seg_bits)
240printf "Purpose: "
241output (char*)&((struct Lisp_Symbol *) ((((int) $->purpose) & $valmask) | gdb_data_seg_bits))->name->data
242printf " %d extra slots", ($->size & 0x1ff) - 388
243echo \n
244end
245document xchartable
246Print the address of the char-table $, and its purpose.
247This command assumes that $ is an Emacs Lisp char-table value.
248end
249
250define xboolvector
251print (struct Lisp_Bool_Vector *) (($ & $valmask) | gdb_data_seg_bits)
252output ($->size > 256) ? 0 : ($->data[0])@(($->size + 7)/ 8)
253echo \n
254end
255document xboolvector
256Print the contents and address of the bool-vector $.
257This command assumes that $ is an Emacs Lisp bool-vector value.
258end
259
260define xbuffer
261print (struct buffer *) (($ & $valmask) | gdb_data_seg_bits)
9f696a00 262output ((struct Lisp_String *) ((($->name) & $valmask) | gdb_data_seg_bits))->data
14a8902a
RS
263echo \n
264end
265document xbuffer
266Set $ as a buffer pointer, assuming it is an Emacs Lisp buffer value.
267Print the name of the buffer.
a6a3acf0
KH
268end
269
3266f62b
GM
270define xhashtable
271print (struct Lisp_Hash_Table *) (($ & $valmask) | gdb_data_seg_bits)
272end
273document xhashtable
274Set $ as a hash table pointer, assuming it is an Emacs Lisp hash table value.
275end
276
a6ffc6a2 277define xcons
b74f15c6 278print (struct Lisp_Cons *) (($ & $valmask) | gdb_data_seg_bits)
6f493884 279output/x *$
ef15f270 280echo \n
a6ffc6a2 281end
e065a56e 282document xcons
ba1e23bf 283Print the contents of $, assuming it is an Emacs Lisp cons.
e065a56e 284end
a6ffc6a2 285
6f493884
RS
286define nextcons
287p $.cdr
288xcons
289end
290document nextcons
291Print the contents of the next cell in a list.
292This assumes that the last thing you printed was a cons cell contents
293(type struct Lisp_Cons) or a pointer to one.
294end
a6ffc6a2 295define xcar
de2436ef 296print/x ((($ >> gdb_valbits) & 0xf) == Lisp_Cons ? ((struct Lisp_Cons *) (($ & $valmask) | gdb_data_seg_bits))->car : 0)
a6ffc6a2 297end
e065a56e 298document xcar
ba1e23bf 299Print the car of $, assuming it is an Emacs Lisp pair.
e065a56e 300end
a6ffc6a2
JB
301
302define xcdr
de2436ef 303print/x ((($ >> gdb_valbits) & 0xf) == Lisp_Cons ? ((struct Lisp_Cons *) (($ & $valmask) | gdb_data_seg_bits))->cdr : 0)
a6ffc6a2 304end
e065a56e 305document xcdr
ba1e23bf 306Print the cdr of $, assuming it is an Emacs Lisp pair.
e065a56e 307end
a6ffc6a2 308
df86e57e 309define xfloat
b74f15c6 310print ((struct Lisp_Float *) (($ & $valmask) | gdb_data_seg_bits))->data
df86e57e
JB
311end
312document xfloat
313Print $ assuming it is a lisp floating-point number.
314end
315
b2367490 316define xscrollbar
b74f15c6 317print (struct scrollbar *) (($ & $valmask) | gdb_data_seg_bits)
b2367490
JB
318output *$
319echo \n
320end
dec5f4e3 321document xscrollbar
b2367490
JB
322Print $ as a scrollbar pointer.
323end
324
24b4d1bc
GM
325define xprintsym
326 set $sym = (struct Lisp_Symbol *) ((((int) $arg0) & $valmask) | gdb_data_seg_bits)
f352c826
SM
327 set $sym_name = ((struct Lisp_String *)(($sym->xname & $valmask) | gdb_data_seg_bits))
328 output ($sym_name->data[0])@($sym_name->size_byte < 0 ? $sym_name->size : $sym_name->size_byte)
24b4d1bc
GM
329 echo \n
330end
331document xprintsym
332 Print argument as a symbol.
333end
334
335define xbacktrace
336 set $bt = backtrace_list
337 while $bt
3176a27e
GM
338 set $type = (enum Lisp_Type) ((*$bt->function >> gdb_valbits) & 0x7)
339 if $type == Lisp_Symbol
340 xprintsym *$bt->function
341 else
342 printf "0x%x ", *$bt->function
343 if $type == Lisp_Vectorlike
344 set $size = ((struct Lisp_Vector *) ((*$bt->function & $valmask) | gdb_data_seg_bits))->size
345 output (enum pvec_type) (($size & PVEC_FLAG) ? $size & PVEC_TYPE_MASK : 0)
346 else
347 printf "Lisp type %d", $type
348 end
349 echo \n
350 end
24b4d1bc
GM
351 set $bt = $bt->next
352 end
353end
354document xbacktrace
355 Print a backtrace of Lisp function calls from backtrace_list.
356 Set a breakpoint at Fsignal and call this to see from where
3176a27e 357 an error was signaled.
24b4d1bc
GM
358end
359
360define xreload
361 set $valmask = ((long)1 << gdb_valbits) - 1
362 set $nonvalbits = gdb_emacs_intbits - gdb_valbits
363end
364document xreload
365 When starting Emacs a second time in the same gdb session under
366 FreeBSD 2.2.5, gdb 4.13, $valmask and $nonvalbits have lost
be9e8331
DL
367 their values. (The same happens on current (2000) versions of GNU/Linux
368 with gdb 5.0.)
c71ea231 369 This function reloads them.
24b4d1bc
GM
370end
371
be9e8331
DL
372define hook-run
373 xreload
374end
375
e869a29d
RS
376# Call xreload if a new Emacs executable is loaded.
377define hookpost-run
378 xreload
379end
380
e065a56e 381set print pretty on
df86e57e 382set print sevenbit-strings
a6ffc6a2 383
e5d77022 384show environment DISPLAY
6f5d1a4f 385show environment TERM
6f5d1a4f 386set args -geometry 80x40+0+0
e5d77022 387
a6ffc6a2 388# Don't let abort actually run, as it will make
7f692070 389# stdio stop working and therefore the `pr' command above as well.
a6ffc6a2
JB
390break abort
391
392# If we are running in synchronous mode, we want a chance to look around
393# before Emacs exits. Perhaps we should put the break somewhere else
394# instead...
998ee976 395break x_error_quitter