Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-483
[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 & ~gdb_array_mark_flag
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 set $sym = $
190 xgetptr $sym
191 print (struct Lisp_Symbol *) $ptr
192 xprintsym $sym
193 echo \n
194 end
195 document xsymbol
196 Print the name and address of the symbol $.
197 This command assumes that $ is an Emacs Lisp symbol value.
198 end
199
200 define xstring
201 xgetptr $
202 print (struct Lisp_String *) $ptr
203 xprintstr $
204 echo \n
205 end
206 document xstring
207 Print the contents and address of the string $.
208 This command assumes that $ is an Emacs Lisp string value.
209 end
210
211 define xvector
212 xgetptr $
213 print (struct Lisp_Vector *) $ptr
214 output ($->size > 50) ? 0 : ($->contents[0])@($->size & ~gdb_array_mark_flag)
215 echo \n
216 end
217 document xvector
218 Print the contents and address of the vector $.
219 This command assumes that $ is an Emacs Lisp vector value.
220 end
221
222 define xprocess
223 xgetptr $
224 print (struct Lisp_Process *) $ptr
225 output *$
226 echo \n
227 end
228 document xprocess
229 Print the address of the struct Lisp_process which the Lisp_Object $ points to.
230 end
231
232 define xframe
233 xgetptr $
234 print (struct frame *) $ptr
235 end
236 document xframe
237 Print $ as a frame pointer, assuming it is an Emacs Lisp frame value.
238 end
239
240 define xcompiled
241 xgetptr $
242 print (struct Lisp_Vector *) $ptr
243 output ($->contents[0])@($->size & 0xff)
244 end
245 document xcompiled
246 Print $ as a compiled function pointer, assuming it is an Emacs Lisp compiled value.
247 end
248
249 define xwindow
250 xgetptr $
251 print (struct window *) $ptr
252 printf "%dx%d+%d+%d\n", $->width, $->height, $->left, $->top
253 end
254 document xwindow
255 Print $ as a window pointer, assuming it is an Emacs Lisp window value.
256 Print the window's position as "WIDTHxHEIGHT+LEFT+TOP".
257 end
258
259 define xwinconfig
260 xgetptr $
261 print (struct save_window_data *) $ptr
262 end
263 document xwinconfig
264 Print $ as a window configuration pointer, assuming it is an Emacs Lisp window configuration value.
265 end
266
267 define xsubr
268 xgetptr $
269 print (struct Lisp_Subr *) $ptr
270 output *$
271 echo \n
272 end
273 document xsubr
274 Print the address of the subr which the Lisp_Object $ points to.
275 end
276
277 define xchartable
278 xgetptr $
279 print (struct Lisp_Char_Table *) $ptr
280 printf "Purpose: "
281 xprintsym $->purpose
282 printf " %d extra slots", ($->size & 0x1ff) - 388
283 echo \n
284 end
285 document xchartable
286 Print the address of the char-table $, and its purpose.
287 This command assumes that $ is an Emacs Lisp char-table value.
288 end
289
290 define xboolvector
291 xgetptr $
292 print (struct Lisp_Bool_Vector *) $ptr
293 output ($->size > 256) ? 0 : ($->data[0])@((($->size & ~gdb_array_mark_flag) + 7)/ 8)
294 echo \n
295 end
296 document xboolvector
297 Print the contents and address of the bool-vector $.
298 This command assumes that $ is an Emacs Lisp bool-vector value.
299 end
300
301 define xbuffer
302 xgetptr $
303 print (struct buffer *) $ptr
304 xgetptr $->name
305 output ((struct Lisp_String *) $ptr)->data
306 echo \n
307 end
308 document xbuffer
309 Set $ as a buffer pointer, assuming it is an Emacs Lisp buffer value.
310 Print the name of the buffer.
311 end
312
313 define xhashtable
314 xgetptr $
315 print (struct Lisp_Hash_Table *) $ptr
316 end
317 document xhashtable
318 Set $ as a hash table pointer, assuming it is an Emacs Lisp hash table value.
319 end
320
321 define xcons
322 xgetptr $
323 print (struct Lisp_Cons *) $ptr
324 output/x *$
325 echo \n
326 end
327 document xcons
328 Print the contents of $, assuming it is an Emacs Lisp cons.
329 end
330
331 define nextcons
332 p $.cdr
333 xcons
334 end
335 document nextcons
336 Print the contents of the next cell in a list.
337 This assumes that the last thing you printed was a cons cell contents
338 (type struct Lisp_Cons) or a pointer to one.
339 end
340 define xcar
341 xgetptr $
342 xgettype $
343 print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->car : 0)
344 end
345 document xcar
346 Print the car of $, assuming it is an Emacs Lisp pair.
347 end
348
349 define xcdr
350 xgetptr $
351 xgettype $
352 print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->cdr : 0)
353 end
354 document xcdr
355 Print the cdr of $, assuming it is an Emacs Lisp pair.
356 end
357
358 define xfloat
359 xgetptr $
360 print ((struct Lisp_Float *) $ptr)->data
361 end
362 document xfloat
363 Print $ assuming it is a lisp floating-point number.
364 end
365
366 define xscrollbar
367 xgetptr $
368 print (struct scrollbar *) $ptr
369 output *$
370 echo \n
371 end
372 document xscrollbar
373 Print $ as a scrollbar pointer.
374 end
375
376 define xprintstr
377 set $data = $arg0->data
378 output ($arg0->size > 1000) ? 0 : ($data[0])@($arg0->size_byte < 0 ? $arg0->size & ~gdb_array_mark_flag : $arg0->size_byte)
379 end
380
381 define xprintsym
382 xgetptr $arg0
383 set $sym = (struct Lisp_Symbol *) $ptr
384 xgetptr $sym->xname
385 set $sym_name = (struct Lisp_String *) $ptr
386 xprintstr $sym_name
387 end
388 document xprintsym
389 Print argument as a symbol.
390 end
391
392 define xbacktrace
393 set $bt = backtrace_list
394 while $bt
395 xgettype (*$bt->function)
396 if $type == Lisp_Symbol
397 xprintsym (*$bt->function)
398 echo \n
399 else
400 printf "0x%x ", *$bt->function
401 if $type == Lisp_Vectorlike
402 xgetptr (*$bt->function)
403 set $size = ((struct Lisp_Vector *) $ptr)->size
404 output ($size & PVEC_FLAG) ? (enum pvec_type) ($size & PVEC_TYPE_MASK) : $size & ~gdb_array_mark_flag
405 else
406 printf "Lisp type %d", $type
407 end
408 echo \n
409 end
410 set $bt = $bt->next
411 end
412 end
413 document xbacktrace
414 Print a backtrace of Lisp function calls from backtrace_list.
415 Set a breakpoint at Fsignal and call this to see from where
416 an error was signaled.
417 end
418
419 define xreload
420 set $tagmask = (((long)1 << gdb_gctypebits) - 1)
421 set $valmask = gdb_use_lsb ? ~($tagmask) : ((long)1 << gdb_valbits) - 1
422 end
423 document xreload
424 When starting Emacs a second time in the same gdb session under
425 FreeBSD 2.2.5, gdb 4.13, $valmask have lost
426 their values. (The same happens on current (2000) versions of GNU/Linux
427 with gdb 5.0.)
428 This function reloads them.
429 end
430 xreload
431
432 define hook-run
433 xreload
434 end
435
436 # Call xreload if a new Emacs executable is loaded.
437 define hookpost-run
438 xreload
439 end
440
441 set print pretty on
442 set print sevenbit-strings
443
444 show environment DISPLAY
445 show environment TERM
446 set args -geometry 80x40+0+0
447
448 # Don't let abort actually run, as it will make
449 # stdio stop working and therefore the `pr' command above as well.
450 break abort
451
452 # If we are running in synchronous mode, we want a chance to look around
453 # before Emacs exits. Perhaps we should put the break somewhere else
454 # instead...
455 break x_error_quitter
456
457 # arch-tag: 12f34321-7bfa-4240-b77a-3cd3a1696dfe