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.
73 # Print out current buffer point and boundaries
75 set $b = current_buffer
77 printf "BUF PT: %d", $b->pt
78 if ($b->pt != $b->pt_byte)
79 printf "[%d]", $b->pt_byte
81 printf " of 1..%d", $t->z
82 if ($t->z != $t->z_byte)
83 printf "[%d]", $t->z_byte
85 if ($b->begv != 1 || $b->zv != $t->z)
86 printf " NARROW=%d..%d", $b->begv, $b->zv
87 if ($b->begv != $b->begv_byte || $b->zv != $b->zv_byte)
88 printf " [%d..%d]", $b->begv_byte, $b->zv_byte
91 printf " GAP: %d", $t->gpt
92 if ($t->gpt != $t->gpt_byte)
93 printf "[%d]", $t->gpt_byte
95 printf " SZ=%d\n", $t->gap_size
98 Print point, beg, end, narrow, and gap for current buffer.
105 if $type == Lisp_Misc
108 if $type == Lisp_Vectorlike
114 Print the type of $, assuming it is an Emacs Lisp value.
115 If the first type printed is Lisp_Vector or Lisp_Misc,
116 a second line gives the more precise type.
121 set $size = ((struct Lisp_Vector *) $ptr)->size
122 output ($size & PVEC_FLAG) ? (enum pvec_type) ($size & PVEC_TYPE_MASK) : $size & ~gdb_array_mark_flag
126 Print the size or vector subtype of $, assuming it is a vector or pseudovector.
131 output (enum Lisp_Misc_Type) (((struct Lisp_Free *) $ptr)->type)
135 Print the specific type of $, assuming it is some misc type.
143 Print $, assuming it is an Emacs Lisp integer. This gets the sign right.
151 Print the pointer portion of $, assuming it is an Emacs Lisp value.
156 print (struct Lisp_Marker *) $ptr
159 Print $ as a marker pointer, assuming it is an Emacs Lisp marker value.
164 print (struct Lisp_Overlay *) $ptr
167 Print $ as a overlay pointer, assuming it is an Emacs Lisp overlay value.
172 print (struct Lisp_Free *) $ptr
175 Print $ as a misc free-cell pointer, assuming it is an Emacs Lisp Misc value.
180 print (struct Lisp_Intfwd *) $ptr
183 Print $ as an integer forwarding pointer, assuming it is an Emacs Lisp Misc value.
188 print (struct Lisp_Boolfwd *) $ptr
191 Print $ as a boolean forwarding pointer, assuming it is an Emacs Lisp Misc value.
196 print (struct Lisp_Objfwd *) $ptr
199 Print $ as an object forwarding pointer, assuming it is an Emacs Lisp Misc value.
204 print (struct Lisp_Buffer_Objfwd *) $ptr
207 Print $ as a buffer-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
212 print (struct Lisp_Kboard_Objfwd *) $ptr
215 Print $ as a kboard-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
220 print (struct Lisp_Buffer_Local_Value *) $ptr
223 Print $ as a buffer-local-value pointer, assuming it is an Emacs Lisp Misc value.
229 print (struct Lisp_Symbol *) $ptr
234 Print the name and address of the symbol $.
235 This command assumes that $ is an Emacs Lisp symbol value.
240 print (struct Lisp_String *) $ptr
245 Print the contents and address of the string $.
246 This command assumes that $ is an Emacs Lisp string value.
251 print (struct Lisp_Vector *) $ptr
252 output ($->size > 50) ? 0 : ($->contents[0])@($->size & ~gdb_array_mark_flag)
256 Print the contents and address of the vector $.
257 This command assumes that $ is an Emacs Lisp vector value.
262 print (struct Lisp_Process *) $ptr
267 Print the address of the struct Lisp_process which the Lisp_Object $ points to.
272 print (struct frame *) $ptr
275 Print $ as a frame pointer, assuming it is an Emacs Lisp frame value.
280 print (struct Lisp_Vector *) $ptr
281 output ($->contents[0])@($->size & 0xff)
284 Print $ as a compiled function pointer, assuming it is an Emacs Lisp compiled value.
289 print (struct window *) $ptr
290 printf "%dx%d+%d+%d\n", $->width, $->height, $->left, $->top
293 Print $ as a window pointer, assuming it is an Emacs Lisp window value.
294 Print the window's position as "WIDTHxHEIGHT+LEFT+TOP".
299 print (struct save_window_data *) $ptr
302 Print $ as a window configuration pointer, assuming it is an Emacs Lisp window configuration value.
307 print (struct Lisp_Subr *) $ptr
312 Print the address of the subr which the Lisp_Object $ points to.
317 print (struct Lisp_Char_Table *) $ptr
320 printf " %d extra slots", ($->size & 0x1ff) - 388
324 Print the address of the char-table $, and its purpose.
325 This command assumes that $ is an Emacs Lisp char-table value.
330 print (struct Lisp_Bool_Vector *) $ptr
331 output ($->size > 256) ? 0 : ($->data[0])@((($->size & ~gdb_array_mark_flag) + 7)/ 8)
335 Print the contents and address of the bool-vector $.
336 This command assumes that $ is an Emacs Lisp bool-vector value.
341 print (struct buffer *) $ptr
343 output ((struct Lisp_String *) $ptr)->data
347 Set $ as a buffer pointer, assuming it is an Emacs Lisp buffer value.
348 Print the name of the buffer.
353 print (struct Lisp_Hash_Table *) $ptr
356 Set $ as a hash table pointer, assuming it is an Emacs Lisp hash table value.
361 print (struct Lisp_Cons *) $ptr
366 Print the contents of $, assuming it is an Emacs Lisp cons.
374 Print the contents of the next cell in a list.
375 This assumes that the last thing you printed was a cons cell contents
376 (type struct Lisp_Cons) or a pointer to one.
381 print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->car : 0)
384 Print the car of $, assuming it is an Emacs Lisp pair.
390 print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->cdr : 0)
393 Print the cdr of $, assuming it is an Emacs Lisp pair.
398 print ((struct Lisp_Float *) $ptr)->data
401 Print $ assuming it is a lisp floating-point number.
406 print (struct scrollbar *) $ptr
411 Print $ as a scrollbar pointer.
415 set $data = $arg0->data
416 output ($arg0->size > 1000) ? 0 : ($data[0])@($arg0->size_byte < 0 ? $arg0->size & ~gdb_array_mark_flag : $arg0->size_byte)
421 set $sym = (struct Lisp_Symbol *) $ptr
423 set $sym_name = (struct Lisp_String *) $ptr
427 Print argument as a symbol.
431 set $bt = backtrace_list
433 xgettype (*$bt->function)
434 if $type == Lisp_Symbol
435 xprintsym (*$bt->function)
438 printf "0x%x ", *$bt->function
439 if $type == Lisp_Vectorlike
440 xgetptr (*$bt->function)
441 set $size = ((struct Lisp_Vector *) $ptr)->size
442 output ($size & PVEC_FLAG) ? (enum pvec_type) ($size & PVEC_TYPE_MASK) : $size & ~gdb_array_mark_flag
444 printf "Lisp type %d", $type
452 Print a backtrace of Lisp function calls from backtrace_list.
453 Set a breakpoint at Fsignal and call this to see from where
454 an error was signaled.
458 set $tagmask = (((long)1 << gdb_gctypebits) - 1)
459 set $valmask = gdb_use_lsb ? ~($tagmask) : ((long)1 << gdb_valbits) - 1
462 When starting Emacs a second time in the same gdb session under
463 FreeBSD 2.2.5, gdb 4.13, $valmask have lost
464 their values. (The same happens on current (2000) versions of GNU/Linux
466 This function reloads them.
470 # Flush display (X only)
475 Flush pending X window display updates to screen.
476 Works only when an inferior emacs is executing.
484 # Call xreload if a new Emacs executable is loaded.
490 set print sevenbit-strings
492 show environment DISPLAY
493 show environment TERM
494 set args -geometry 80x40+0+0
496 # Don't let abort actually run, as it will make
497 # stdio stop working and therefore the `pr' command above as well.
500 # If we are running in synchronous mode, we want a chance to look around
501 # before Emacs exits. Perhaps we should put the break somewhere else
503 break x_error_quitter
505 # arch-tag: 12f34321-7bfa-4240-b77a-3cd3a1696dfe