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)
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.
24 # Find lwlib source files too.
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.
34 # Don't pass SIGALRM to Emacs. This makes problems when
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.
43 set $ptr = (gdb_use_union ? $arg0.u.val : $arg0 & $valmask) | gdb_data_seg_bits
47 set $int = gdb_use_union ? $arg0.s.val : (gdb_use_lsb ? $arg0 : $arg0 << gdb_gctypebits) >> gdb_gctypebits
51 set $type = gdb_use_union ? $arg0.s.type : (enum Lisp_Type) (gdb_use_lsb ? $arg0 & $tagmask : $arg0 >> gdb_valbits)
54 # Set up something to print out s-expressions.
59 Print the emacs s-expression which is $.
60 Works only when an inferior emacs is executing.
63 # Print out s-expressions
66 set debug_print ($tmp)
69 Print the argument as an emacs s-expression
70 Works only when an inferior emacs is executing.
80 if $type == Lisp_Vectorlike
86 Print the type of $, assuming it is an Emacs Lisp value.
87 If the first type printed is Lisp_Vector or Lisp_Misc,
88 a second line gives the more precise type.
93 set $size = ((struct Lisp_Vector *) $ptr)->size
94 output ($size & PVEC_FLAG) ? (enum pvec_type) ($size & PVEC_TYPE_MASK) : $size & ~gdb_array_mark_flag
98 Print the size or vector subtype of $, assuming it is a vector or pseudovector.
103 output (enum Lisp_Misc_Type) (((struct Lisp_Free *) $ptr)->type)
107 Print the specific type of $, assuming it is some misc type.
115 Print $, assuming it is an Emacs Lisp integer. This gets the sign right.
123 Print the pointer portion of $, assuming it is an Emacs Lisp value.
128 print (struct Lisp_Marker *) $ptr
131 Print $ as a marker pointer, assuming it is an Emacs Lisp marker value.
136 print (struct Lisp_Overlay *) $ptr
139 Print $ as a overlay pointer, assuming it is an Emacs Lisp overlay value.
144 print (struct Lisp_Free *) $ptr
147 Print $ as a misc free-cell pointer, assuming it is an Emacs Lisp Misc value.
152 print (struct Lisp_Intfwd *) $ptr
155 Print $ as an integer forwarding pointer, assuming it is an Emacs Lisp Misc value.
160 print (struct Lisp_Boolfwd *) $ptr
163 Print $ as a boolean forwarding pointer, assuming it is an Emacs Lisp Misc value.
168 print (struct Lisp_Objfwd *) $ptr
171 Print $ as an object forwarding pointer, assuming it is an Emacs Lisp Misc value.
176 print (struct Lisp_Buffer_Objfwd *) $ptr
179 Print $ as a buffer-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
184 print (struct Lisp_Kboard_Objfwd *) $ptr
187 Print $ as a kboard-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
192 print (struct Lisp_Buffer_Local_Value *) $ptr
195 Print $ as a buffer-local-value pointer, assuming it is an Emacs Lisp Misc value.
201 print (struct Lisp_Symbol *) $ptr
206 Print the name and address of the symbol $.
207 This command assumes that $ is an Emacs Lisp symbol value.
212 print (struct Lisp_String *) $ptr
217 Print the contents and address of the string $.
218 This command assumes that $ is an Emacs Lisp string value.
223 print (struct Lisp_Vector *) $ptr
224 output ($->size > 50) ? 0 : ($->contents[0])@($->size & ~gdb_array_mark_flag)
228 Print the contents and address of the vector $.
229 This command assumes that $ is an Emacs Lisp vector value.
234 print (struct Lisp_Process *) $ptr
239 Print the address of the struct Lisp_process which the Lisp_Object $ points to.
244 print (struct frame *) $ptr
247 Print $ as a frame pointer, assuming it is an Emacs Lisp frame value.
252 print (struct Lisp_Vector *) $ptr
253 output ($->contents[0])@($->size & 0xff)
256 Print $ as a compiled function pointer, assuming it is an Emacs Lisp compiled value.
261 print (struct window *) $ptr
262 printf "%dx%d+%d+%d\n", $->width, $->height, $->left, $->top
265 Print $ as a window pointer, assuming it is an Emacs Lisp window value.
266 Print the window's position as "WIDTHxHEIGHT+LEFT+TOP".
271 print (struct save_window_data *) $ptr
274 Print $ as a window configuration pointer, assuming it is an Emacs Lisp window configuration value.
279 print (struct Lisp_Subr *) $ptr
284 Print the address of the subr which the Lisp_Object $ points to.
289 print (struct Lisp_Char_Table *) $ptr
292 printf " %d extra slots", ($->size & 0x1ff) - 388
296 Print the address of the char-table $, and its purpose.
297 This command assumes that $ is an Emacs Lisp char-table value.
302 print (struct Lisp_Bool_Vector *) $ptr
303 output ($->size > 256) ? 0 : ($->data[0])@((($->size & ~gdb_array_mark_flag) + 7)/ 8)
307 Print the contents and address of the bool-vector $.
308 This command assumes that $ is an Emacs Lisp bool-vector value.
313 print (struct buffer *) $ptr
315 output ((struct Lisp_String *) $ptr)->data
319 Set $ as a buffer pointer, assuming it is an Emacs Lisp buffer value.
320 Print the name of the buffer.
325 print (struct Lisp_Hash_Table *) $ptr
328 Set $ as a hash table pointer, assuming it is an Emacs Lisp hash table value.
333 print (struct Lisp_Cons *) $ptr
338 Print the contents of $, assuming it is an Emacs Lisp cons.
346 Print the contents of the next cell in a list.
347 This assumes that the last thing you printed was a cons cell contents
348 (type struct Lisp_Cons) or a pointer to one.
353 print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->car : 0)
356 Print the car of $, assuming it is an Emacs Lisp pair.
362 print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->cdr : 0)
365 Print the cdr of $, assuming it is an Emacs Lisp pair.
370 print ((struct Lisp_Float *) $ptr)->data
373 Print $ assuming it is a lisp floating-point number.
378 print (struct scrollbar *) $ptr
383 Print $ as a scrollbar pointer.
387 set $data = $arg0->data
388 output ($arg0->size > 1000) ? 0 : ($data[0])@($arg0->size_byte < 0 ? $arg0->size & ~gdb_array_mark_flag : $arg0->size_byte)
393 set $sym = (struct Lisp_Symbol *) $ptr
395 set $sym_name = (struct Lisp_String *) $ptr
399 Print argument as a symbol.
403 set $bt = backtrace_list
405 xgettype (*$bt->function)
406 if $type == Lisp_Symbol
407 xprintsym (*$bt->function)
410 printf "0x%x ", *$bt->function
411 if $type == Lisp_Vectorlike
412 xgetptr (*$bt->function)
413 set $size = ((struct Lisp_Vector *) $ptr)->size
414 output ($size & PVEC_FLAG) ? (enum pvec_type) ($size & PVEC_TYPE_MASK) : $size & ~gdb_array_mark_flag
416 printf "Lisp type %d", $type
424 Print a backtrace of Lisp function calls from backtrace_list.
425 Set a breakpoint at Fsignal and call this to see from where
426 an error was signaled.
430 set $tagmask = (((long)1 << gdb_gctypebits) - 1)
431 set $valmask = gdb_use_lsb ? ~($tagmask) : ((long)1 << gdb_valbits) - 1
434 When starting Emacs a second time in the same gdb session under
435 FreeBSD 2.2.5, gdb 4.13, $valmask have lost
436 their values. (The same happens on current (2000) versions of GNU/Linux
438 This function reloads them.
442 # Flush display (X only)
447 Flush pending X window display updates to screen.
448 Works only when an inferior emacs is executing.
456 # Call xreload if a new Emacs executable is loaded.
462 set print sevenbit-strings
464 show environment DISPLAY
465 show environment TERM
466 set args -geometry 80x40+0+0
468 # Don't let abort actually run, as it will make
469 # stdio stop working and therefore the `pr' command above as well.
472 # If we are running in synchronous mode, we want a chance to look around
473 # before Emacs exits. Perhaps we should put the break somewhere else
475 break x_error_quitter
477 # arch-tag: 12f34321-7bfa-4240-b77a-3cd3a1696dfe