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 # $valmask and $tagmask are mask values set up by the xreload macro below.
40 # Use $bugfix so that the value isn't a constant.
41 # Using a constant runs into GDB bugs sometimes.
44 set $ptr = (gdb_use_union ? $bugfix.u.val : $bugfix & $valmask) | gdb_data_seg_bits
49 set $int = gdb_use_union ? $bugfix.s.val : (gdb_use_lsb ? $bugfix : $bugfix << gdb_gctypebits) >> gdb_gctypebits
54 set $type = gdb_use_union ? $bugfix.s.type : (enum Lisp_Type) (gdb_use_lsb ? $bugfix & $tagmask : $bugfix >> gdb_valbits)
57 # Set up something to print out s-expressions.
62 Print the emacs s-expression which is $.
63 Works only when an inferior emacs is executing.
66 # Print out s-expressions
69 set debug_print ($tmp)
72 Print the argument as an emacs s-expression
73 Works only when an inferior emacs is executing.
76 # Print out current buffer point and boundaries
78 set $b = current_buffer
80 printf "BUF PT: %d", $b->pt
81 if ($b->pt != $b->pt_byte)
82 printf "[%d]", $b->pt_byte
84 printf " of 1..%d", $t->z
85 if ($t->z != $t->z_byte)
86 printf "[%d]", $t->z_byte
88 if ($b->begv != 1 || $b->zv != $t->z)
89 printf " NARROW=%d..%d", $b->begv, $b->zv
90 if ($b->begv != $b->begv_byte || $b->zv != $b->zv_byte)
91 printf " [%d..%d]", $b->begv_byte, $b->zv_byte
94 printf " GAP: %d", $t->gpt
95 if ($t->gpt != $t->gpt_byte)
96 printf "[%d]", $t->gpt_byte
98 printf " SZ=%d\n", $t->gap_size
101 Print point, beg, end, narrow, and gap for current buffer.
108 if $type == Lisp_Misc
111 if $type == Lisp_Vectorlike
117 Print the type of $, assuming it is an Emacs Lisp value.
118 If the first type printed is Lisp_Vector or Lisp_Misc,
119 a second line gives the more precise type.
124 set $size = ((struct Lisp_Vector *) $ptr)->size
125 output ($size & PVEC_FLAG) ? (enum pvec_type) ($size & PVEC_TYPE_MASK) : $size & ~gdb_array_mark_flag
129 Print the size or vector subtype of $, assuming it is a vector or pseudovector.
134 output (enum Lisp_Misc_Type) (((struct Lisp_Free *) $ptr)->type)
138 Print the specific type of $, assuming it is some misc type.
146 Print $, assuming it is an Emacs Lisp integer. This gets the sign right.
154 Print the pointer portion of $, assuming it is an Emacs Lisp value.
159 print (struct Lisp_Marker *) $ptr
162 Print $ as a marker pointer, assuming it is an Emacs Lisp marker value.
167 print (struct Lisp_Overlay *) $ptr
170 Print $ as a overlay pointer, assuming it is an Emacs Lisp overlay value.
175 print (struct Lisp_Free *) $ptr
178 Print $ as a misc free-cell pointer, assuming it is an Emacs Lisp Misc value.
183 print (struct Lisp_Intfwd *) $ptr
186 Print $ as an integer forwarding pointer, assuming it is an Emacs Lisp Misc value.
191 print (struct Lisp_Boolfwd *) $ptr
194 Print $ as a boolean forwarding pointer, assuming it is an Emacs Lisp Misc value.
199 print (struct Lisp_Objfwd *) $ptr
202 Print $ as an object forwarding pointer, assuming it is an Emacs Lisp Misc value.
207 print (struct Lisp_Buffer_Objfwd *) $ptr
210 Print $ as a buffer-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
215 print (struct Lisp_Kboard_Objfwd *) $ptr
218 Print $ as a kboard-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
223 print (struct Lisp_Buffer_Local_Value *) $ptr
226 Print $ as a buffer-local-value pointer, assuming it is an Emacs Lisp Misc value.
232 print (struct Lisp_Symbol *) $ptr
237 Print the name and address of the symbol $.
238 This command assumes that $ is an Emacs Lisp symbol value.
243 print (struct Lisp_String *) $ptr
248 Print the contents and address of the string $.
249 This command assumes that $ is an Emacs Lisp string value.
254 print (struct Lisp_Vector *) $ptr
255 output ($->size > 50) ? 0 : ($->contents[0])@($->size & ~gdb_array_mark_flag)
259 Print the contents and address of the vector $.
260 This command assumes that $ is an Emacs Lisp vector value.
265 print (struct Lisp_Process *) $ptr
270 Print the address of the struct Lisp_process which the Lisp_Object $ points to.
275 print (struct frame *) $ptr
278 Print $ as a frame pointer, assuming it is an Emacs Lisp frame value.
283 print (struct Lisp_Vector *) $ptr
284 output ($->contents[0])@($->size & 0xff)
287 Print $ as a compiled function pointer, assuming it is an Emacs Lisp compiled value.
292 print (struct window *) $ptr
293 printf "%dx%d+%d+%d\n", $->width, $->height, $->left, $->top
296 Print $ as a window pointer, assuming it is an Emacs Lisp window value.
297 Print the window's position as "WIDTHxHEIGHT+LEFT+TOP".
302 print (struct save_window_data *) $ptr
305 Print $ as a window configuration pointer, assuming it is an Emacs Lisp window configuration value.
310 print (struct Lisp_Subr *) $ptr
315 Print the address of the subr which the Lisp_Object $ points to.
320 print (struct Lisp_Char_Table *) $ptr
323 printf " %d extra slots", ($->size & 0x1ff) - 388
327 Print the address of the char-table $, and its purpose.
328 This command assumes that $ is an Emacs Lisp char-table value.
333 print (struct Lisp_Bool_Vector *) $ptr
334 output ($->size > 256) ? 0 : ($->data[0])@((($->size & ~gdb_array_mark_flag) + 7)/ 8)
338 Print the contents and address of the bool-vector $.
339 This command assumes that $ is an Emacs Lisp bool-vector value.
344 print (struct buffer *) $ptr
346 output ((struct Lisp_String *) $ptr)->data
350 Set $ as a buffer pointer, assuming it is an Emacs Lisp buffer value.
351 Print the name of the buffer.
356 print (struct Lisp_Hash_Table *) $ptr
359 Set $ as a hash table pointer, assuming it is an Emacs Lisp hash table value.
364 print (struct Lisp_Cons *) $ptr
369 Print the contents of $, assuming it is an Emacs Lisp cons.
377 Print the contents of the next cell in a list.
378 This assumes that the last thing you printed was a cons cell contents
379 (type struct Lisp_Cons) or a pointer to one.
384 print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->car : 0)
387 Print the car of $, assuming it is an Emacs Lisp pair.
393 print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->cdr : 0)
396 Print the cdr of $, assuming it is an Emacs Lisp pair.
401 print ((struct Lisp_Float *) $ptr)->data
404 Print $ assuming it is a lisp floating-point number.
409 print (struct scrollbar *) $ptr
414 Print $ as a scrollbar pointer.
418 set $data = $arg0->data
419 output ($arg0->size > 1000) ? 0 : ($data[0])@($arg0->size_byte < 0 ? $arg0->size & ~gdb_array_mark_flag : $arg0->size_byte)
424 set $sym = (struct Lisp_Symbol *) $ptr
426 set $sym_name = (struct Lisp_String *) $ptr
430 Print argument as a symbol.
434 set $bt = backtrace_list
436 xgettype (*$bt->function)
437 if $type == Lisp_Symbol
438 xprintsym (*$bt->function)
441 printf "0x%x ", *$bt->function
442 if $type == Lisp_Vectorlike
443 xgetptr (*$bt->function)
444 set $size = ((struct Lisp_Vector *) $ptr)->size
445 output ($size & PVEC_FLAG) ? (enum pvec_type) ($size & PVEC_TYPE_MASK) : $size & ~gdb_array_mark_flag
447 printf "Lisp type %d", $type
455 Print a backtrace of Lisp function calls from backtrace_list.
456 Set a breakpoint at Fsignal and call this to see from where
457 an error was signaled.
461 set $tagmask = (((long)1 << gdb_gctypebits) - 1)
462 set $valmask = gdb_use_lsb ? ~($tagmask) : ((long)1 << gdb_valbits) - 1
465 When starting Emacs a second time in the same gdb session under
466 FreeBSD 2.2.5, gdb 4.13, $valmask have lost
467 their values. (The same happens on current (2000) versions of GNU/Linux
469 This function reloads them.
473 # Flush display (X only)
478 Flush pending X window display updates to screen.
479 Works only when an inferior emacs is executing.
487 # Call xreload if a new Emacs executable is loaded.
493 set print sevenbit-strings
495 show environment DISPLAY
496 show environment TERM
497 set args -geometry 80x40+0+0
499 # Don't let abort actually run, as it will make
500 # stdio stop working and therefore the `pr' command above as well.
503 # If we are running in synchronous mode, we want a chance to look around
504 # before Emacs exits. Perhaps we should put the break somewhere else
506 break x_error_quitter
508 # arch-tag: 12f34321-7bfa-4240-b77a-3cd3a1696dfe