(Fpos_visible_in_window_p, Fset_window_hscroll)
[emacs.git] / src / .gdbinit
blobfe9ddf7dbb7348e88887ec283bd5b95ad7db0cae
1 # Copyright (C) 1992, 93, 94, 95, 96, 97, 1998, 2000, 01, 2004
2 #   Free Software Foundation, Inc.
4 # This file is part of GNU Emacs.
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.
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.
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.
21 # Force loading of symbols, enough to give us gdb_valbits etc.
22 set main
24 # Find lwlib source files too.
25 dir ../lwlib
26 #dir /gd/gnu/lesstif-0.89.9/lib/Xm
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
34 # Don't pass SIGALRM to Emacs.  This makes problems when
35 # debugging.
36 handle SIGALRM ignore
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.
42 define xgetptr
43   set $ptr = (gdb_use_union ? $arg0.u.val : $arg0 & $valmask) | gdb_data_seg_bits
44 end
46 define xgetint
47   set $int = gdb_use_union ? $arg0.s.val : (gdb_use_lsb ? $arg0 : $arg0 << gdb_gctypebits) >> gdb_gctypebits
48 end
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
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
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
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
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
100 define xint
101   xgetint $
102   print $int
104 document xint
105 Print $, assuming it is an Emacs Lisp integer.  This gets the sign right.
108 define xptr
109   xgetptr $
110   print (void *) $ptr
112 document xptr
113 Print the pointer portion of $, assuming it is an Emacs Lisp value.
116 define xmarker
117   xgetptr $
118   print (struct Lisp_Marker *) $ptr
120 document xmarker
121 Print $ as a marker pointer, assuming it is an Emacs Lisp marker value.
124 define xoverlay
125   xgetptr $
126   print (struct Lisp_Overlay *) $ptr
128 document xoverlay
129 Print $ as a overlay pointer, assuming it is an Emacs Lisp overlay value.
132 define xmiscfree
133   xgetptr $
134   print (struct Lisp_Free *) $ptr
136 document xmiscfree
137 Print $ as a misc free-cell pointer, assuming it is an Emacs Lisp Misc value.
140 define xintfwd
141   xgetptr $
142   print (struct Lisp_Intfwd *) $ptr
144 document xintfwd
145 Print $ as an integer forwarding pointer, assuming it is an Emacs Lisp Misc value.
148 define xboolfwd
149   xgetptr $
150   print (struct Lisp_Boolfwd *) $ptr
152 document xboolfwd
153 Print $ as a boolean forwarding pointer, assuming it is an Emacs Lisp Misc value.
156 define xobjfwd
157   xgetptr $
158   print (struct Lisp_Objfwd *) $ptr
160 document xobjfwd
161 Print $ as an object forwarding pointer, assuming it is an Emacs Lisp Misc value.
164 define xbufobjfwd
165   xgetptr $
166   print (struct Lisp_Buffer_Objfwd *) $ptr
168 document xbufobjfwd
169 Print $ as a buffer-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
172 define xkbobjfwd
173   xgetptr $
174   print (struct Lisp_Kboard_Objfwd *) $ptr
176 document xkbobjfwd
177 Print $ as a kboard-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
180 define xbuflocal
181   xgetptr $
182   print (struct Lisp_Buffer_Local_Value *) $ptr
184 document xbuflocal
185 Print $ as a buffer-local-value pointer, assuming it is an Emacs Lisp Misc value.
188 define xsymbol
189   set $sym = $
190   xgetptr $sym
191   print (struct Lisp_Symbol *) $ptr
192   xprintsym $sym
193   echo \n
195 document xsymbol
196 Print the name and address of the symbol $.
197 This command assumes that $ is an Emacs Lisp symbol value.
200 define xstring
201   xgetptr $
202   print (struct Lisp_String *) $ptr
203   xprintstr $
204   echo \n
206 document xstring
207 Print the contents and address of the string $.
208 This command assumes that $ is an Emacs Lisp string value.
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
217 document xvector
218 Print the contents and address of the vector $.
219 This command assumes that $ is an Emacs Lisp vector value.
222 define xprocess
223   xgetptr $
224   print (struct Lisp_Process *) $ptr
225   output *$
226   echo \n
228 document xprocess
229 Print the address of the struct Lisp_process which the Lisp_Object $ points to.
232 define xframe
233   xgetptr $
234   print (struct frame *) $ptr
236 document xframe
237 Print $ as a frame pointer, assuming it is an Emacs Lisp frame value.
240 define xcompiled
241   xgetptr $
242   print (struct Lisp_Vector *) $ptr
243   output ($->contents[0])@($->size & 0xff)
245 document xcompiled
246 Print $ as a compiled function pointer, assuming it is an Emacs Lisp compiled value.
249 define xwindow
250   xgetptr $
251   print (struct window *) $ptr
252   printf "%dx%d+%d+%d\n", $->width, $->height, $->left, $->top
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".
259 define xwinconfig
260   xgetptr $
261   print (struct save_window_data *) $ptr
263 document xwinconfig
264 Print $ as a window configuration pointer, assuming it is an Emacs Lisp window configuration value.
267 define xsubr
268   xgetptr $
269   print (struct Lisp_Subr *) $ptr
270   output *$
271   echo \n
273 document xsubr
274 Print the address of the subr which the Lisp_Object $ points to.
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
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.
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
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.
301 define xbuffer
302   xgetptr $
303   print (struct buffer *) $ptr
304   xgetptr $->name
305   output ((struct Lisp_String *) $ptr)->data
306   echo \n
308 document xbuffer
309 Set $ as a buffer pointer, assuming it is an Emacs Lisp buffer value.
310 Print the name of the buffer.
313 define xhashtable
314   xgetptr $
315   print (struct Lisp_Hash_Table *) $ptr
317 document xhashtable
318 Set $ as a hash table pointer, assuming it is an Emacs Lisp hash table value.
321 define xcons
322   xgetptr $
323   print (struct Lisp_Cons *) $ptr
324   output/x *$
325   echo \n
327 document xcons
328 Print the contents of $, assuming it is an Emacs Lisp cons.
331 define nextcons
332   p $.cdr
333   xcons
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.
340 define xcar
341   xgetptr $
342   xgettype $
343   print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->car : 0)
345 document xcar
346 Print the car of $, assuming it is an Emacs Lisp pair.
349 define xcdr
350   xgetptr $
351   xgettype $
352   print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->cdr : 0)
354 document xcdr
355 Print the cdr of $, assuming it is an Emacs Lisp pair.
358 define xfloat
359   xgetptr $
360   print ((struct Lisp_Float *) $ptr)->data
362 document xfloat
363 Print $ assuming it is a lisp floating-point number.
366 define xscrollbar
367   xgetptr $
368   print (struct scrollbar *) $ptr
369 output *$
370 echo \n
372 document xscrollbar
373 Print $ as a scrollbar pointer.
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)
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
388 document xprintsym
389   Print argument as a symbol.
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
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.
419 define xreload
420   set $tagmask = (((long)1 << gdb_gctypebits) - 1)
421   set $valmask = gdb_use_lsb ? ~($tagmask) : ((long)1 << gdb_valbits) - 1
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.
430 xreload
432 define hook-run
433   xreload
436 # Call xreload if a new Emacs executable is loaded.
437 define hookpost-run
438   xreload
441 set print pretty on
442 set print sevenbit-strings
444 show environment DISPLAY
445 show environment TERM
446 set args -geometry 80x40+0+0
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
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
457 # arch-tag: 12f34321-7bfa-4240-b77a-3cd3a1696dfe