*** empty log message ***
[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 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 xprintstr $
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 & ~gdb_array_mark_flag)
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) - 388
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 & ~gdb_array_mark_flag) + 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 xprintstr
376 set $data = $arg0->data
377 output ($arg0->size > 1000) ? 0 : ($data[0])@($arg0->size_byte < 0 ? $arg0->size & ~gdb_array_mark_flag : $arg0->size_byte)
378 end
379
380 define xprintsym
381 xgetptr $arg0
382 set $sym = (struct Lisp_Symbol *) $ptr
383 xgetptr $sym->xname
384 set $sym_name = (struct Lisp_String *) $ptr
385 xprintstr $sym_name
386 end
387 document xprintsym
388 Print argument as a symbol.
389 end
390
391 define xbacktrace
392 set $bt = backtrace_list
393 while $bt
394 xgettype (*$bt->function)
395 if $type == Lisp_Symbol
396 xprintsym (*$bt->function)
397 echo \n
398 else
399 printf "0x%x ", *$bt->function
400 if $type == Lisp_Vectorlike
401 xgetptr (*$bt->function)
402 set $size = ((struct Lisp_Vector *) $ptr)->size
403 output ($size & PVEC_FLAG) ? (enum pvec_type) ($size & PVEC_TYPE_MASK) : $size & ~gdb_array_mark_flag
404 else
405 printf "Lisp type %d", $type
406 end
407 echo \n
408 end
409 set $bt = $bt->next
410 end
411 end
412 document xbacktrace
413 Print a backtrace of Lisp function calls from backtrace_list.
414 Set a breakpoint at Fsignal and call this to see from where
415 an error was signaled.
416 end
417
418 define xreload
419 set $tagmask = (((long)1 << gdb_gctypebits) - 1)
420 set $valmask = gdb_use_lsb ? ~($tagmask) : ((long)1 << gdb_valbits) - 1
421 end
422 document xreload
423 When starting Emacs a second time in the same gdb session under
424 FreeBSD 2.2.5, gdb 4.13, $valmask have lost
425 their values. (The same happens on current (2000) versions of GNU/Linux
426 with gdb 5.0.)
427 This function reloads them.
428 end
429 xreload
430
431 define hook-run
432 xreload
433 end
434
435 # Call xreload if a new Emacs executable is loaded.
436 define hookpost-run
437 xreload
438 end
439
440 set print pretty on
441 set print sevenbit-strings
442
443 show environment DISPLAY
444 show environment TERM
445 set args -geometry 80x40+0+0
446
447 # Don't let abort actually run, as it will make
448 # stdio stop working and therefore the `pr' command above as well.
449 break abort
450
451 # If we are running in synchronous mode, we want a chance to look around
452 # before Emacs exits. Perhaps we should put the break somewhere else
453 # instead...
454 break x_error_quitter
455
456 # arch-tag: 12f34321-7bfa-4240-b77a-3cd3a1696dfe