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., 51 Franklin Street, Fifth Floor,
19 # Boston, MA 02110-1301, 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.
104 # Print out iterator given as first arg
107 printf "cur=%d", $it->current.pos.charpos
108 if ($it->current.pos.charpos != $it->current.pos.bytepos)
109 printf "[%d]", $it->current.pos.bytepos
111 printf " start=%d", $it->start.pos.charpos
112 if ($it->start.pos.charpos != $it->start.pos.bytepos)
113 printf "[%d]", $it->start.pos.bytepos
115 printf " end=%d", $it->end_charpos
116 printf " stop=%d", $it->stop_charpos
117 printf " face=%d", $it->face_id
118 if ($it->multibyte_p)
121 if ($it->header_line_p)
124 if ($it->n_overlay_strings > 0)
128 printf " sp=%d", $it->sp
130 if ($it->what == IT_CHARACTER)
131 if ($it->len == 1 && $it->c >= ' ' && it->c < 255)
132 printf " ch='%c'", $it->c
134 printf " ch=[%d,%d]", $it->c, $it->len
137 if ($it->what == IT_IMAGE)
138 printf " IMAGE=%d", $it->image_id
144 if ($it->method != GET_FROM_BUFFER)
147 if ($it->method == GET_FROM_STRING)
148 printf "[%d]", $it->current.string_pos.charpos
152 if ($it->region_beg_charpos >= 0)
153 printf "reg=%d-%d ", $it->region_beg_charpos, $it->region_end_charpos
155 printf "vpos=%d hpos=%d", $it->vpos, $it->hpos,
156 printf " y=%d lvy=%d", $it->current_y, $it->last_visible_y
157 printf " x=%d vx=%d-%d", $it->current_x, $it->first_visible_x, $it->last_visible_x
158 printf " a+d=%d+%d=%d", $it->ascent, $it->descent, $it->ascent+$it->descent
159 printf " max=%d+%d=%d", $it->max_ascent, $it->max_descent, $it->max_ascent+$it->max_descent
163 Pretty print a display iterator.
164 Take one arg, an iterator object or pointer.
171 Pretty print the display iterator it.
176 printf "y=%d x=%d pwid=%d", $row->y, $row->x, $row->pixel_width
177 printf " a+d=%d+%d=%d", $row->ascent, $row->height-$row->ascent, $row->height
178 printf " phys=%d+%d=%d", $row->phys_ascent, $row->phys_height-$row->phys_ascent, $row->phys_height
179 printf " vis=%d", $row->visible_height
180 printf " L=%d T=%d R=%d", $row->used[0], $row->used[1], $row->used[2]
182 printf "start=%d end=%d", $row->start.pos.charpos, $row->end.pos.charpos
186 if ($row->displays_text_p)
189 if ($row->mode_line_p)
192 if ($row->continued_p)
195 if ($row-> truncated_on_left_p)
198 if ($row-> truncated_on_right_p)
201 if ($row->starts_in_middle_of_char_p)
204 if ($row->ends_in_middle_of_char_p)
207 if ($row->ends_in_newline_from_string_p)
210 if ($row->ends_at_zv_p)
213 if ($row->overlapped_p)
216 if ($row->overlapping_p)
222 Pretty print information about glyph_row.
223 Takes one argument, a row object or pointer.
230 Pretty print information about glyph_row in row.
236 printf "y=%d x=%d vpos=%d hpos=%d", $cp->y, $cp->x, $cp->vpos, $cp->hpos
239 Pretty print a window cursor
244 pcursorx output_cursor
248 Pretty print the output_cursor
253 xgetint $w->sequence_number
254 if ($w->mini_p != Qnil)
257 printf "Window %d ", $int
259 set $tem = (struct buffer *) $ptr
261 printf "%s", ((struct Lisp_String *) $ptr)->data
264 set $tem = (struct Lisp_Marker *) $ptr
265 printf "start=%d end:", $tem->charpos
266 if ($w->window_end_valid != Qnil)
267 xgetint $w->window_end_pos
268 printf "pos=%d", $int
269 xgetint $w->window_end_vpos
270 printf " vpos=%d", $int
274 printf " vscroll=%d", $w->vscroll
275 if ($w->force_start != Qnil)
276 printf " FORCE_START"
278 if ($w->must_be_updated_p)
285 pcursorx $w->phys_cursor
286 if ($w->phys_cursor_on_p)
292 if ($w->last_cursor_off_p != $w->cursor_off_p)
293 if ($w->last_cursor_off_p)
299 if ($w->cursor_off_p)
307 Pretty print a window structure.
308 Takes one argument, a pointer to a window structure
315 Pretty print window structure w.
323 if $type == Lisp_Misc
326 if $type == Lisp_Vectorlike
332 Print the type of $, assuming it is an Emacs Lisp value.
333 If the first type printed is Lisp_Vector or Lisp_Misc,
334 a second line gives the more precise type.
339 set $size = ((struct Lisp_Vector *) $ptr)->size
340 output ($size & PVEC_FLAG) ? (enum pvec_type) ($size & PVEC_TYPE_MASK) : $size & ~gdb_array_mark_flag
344 Print the size or vector subtype of $, assuming it is a vector or pseudovector.
349 output (enum Lisp_Misc_Type) (((struct Lisp_Free *) $ptr)->type)
353 Print the specific type of $, assuming it is some misc type.
361 Print $, assuming it is an Emacs Lisp integer. This gets the sign right.
369 Print the pointer portion of $, assuming it is an Emacs Lisp value.
374 print (struct Lisp_Marker *) $ptr
377 Print $ as a marker pointer, assuming it is an Emacs Lisp marker value.
382 print (struct Lisp_Overlay *) $ptr
385 Print $ as a overlay pointer, assuming it is an Emacs Lisp overlay value.
390 print (struct Lisp_Free *) $ptr
393 Print $ as a misc free-cell pointer, assuming it is an Emacs Lisp Misc value.
398 print (struct Lisp_Intfwd *) $ptr
401 Print $ as an integer forwarding pointer, assuming it is an Emacs Lisp Misc value.
406 print (struct Lisp_Boolfwd *) $ptr
409 Print $ as a boolean forwarding pointer, assuming it is an Emacs Lisp Misc value.
414 print (struct Lisp_Objfwd *) $ptr
417 Print $ as an object forwarding pointer, assuming it is an Emacs Lisp Misc value.
422 print (struct Lisp_Buffer_Objfwd *) $ptr
425 Print $ as a buffer-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
430 print (struct Lisp_Kboard_Objfwd *) $ptr
433 Print $ as a kboard-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
438 print (struct Lisp_Buffer_Local_Value *) $ptr
441 Print $ as a buffer-local-value pointer, assuming it is an Emacs Lisp Misc value.
447 print (struct Lisp_Symbol *) $ptr
452 Print the name and address of the symbol $.
453 This command assumes that $ is an Emacs Lisp symbol value.
458 print (struct Lisp_String *) $ptr
463 Print the contents and address of the string $.
464 This command assumes that $ is an Emacs Lisp string value.
469 print (struct Lisp_Vector *) $ptr
470 output ($->size > 50) ? 0 : ($->contents[0])@($->size & ~gdb_array_mark_flag)
474 Print the contents and address of the vector $.
475 This command assumes that $ is an Emacs Lisp vector value.
480 print (struct Lisp_Process *) $ptr
485 Print the address of the struct Lisp_process which the Lisp_Object $ points to.
490 print (struct frame *) $ptr
493 Print $ as a frame pointer, assuming it is an Emacs Lisp frame value.
498 print (struct Lisp_Vector *) $ptr
499 output ($->contents[0])@($->size & 0xff)
502 Print $ as a compiled function pointer, assuming it is an Emacs Lisp compiled value.
507 print (struct window *) $ptr
508 printf "%dx%d+%d+%d\n", $->width, $->height, $->left, $->top
511 Print $ as a window pointer, assuming it is an Emacs Lisp window value.
512 Print the window's position as "WIDTHxHEIGHT+LEFT+TOP".
517 print (struct save_window_data *) $ptr
520 Print $ as a window configuration pointer, assuming it is an Emacs Lisp window configuration value.
525 print (struct Lisp_Subr *) $ptr
530 Print the address of the subr which the Lisp_Object $ points to.
535 print (struct Lisp_Char_Table *) $ptr
538 printf " %d extra slots", ($->size & 0x1ff) - 388
542 Print the address of the char-table $, and its purpose.
543 This command assumes that $ is an Emacs Lisp char-table value.
548 print (struct Lisp_Bool_Vector *) $ptr
549 output ($->size > 256) ? 0 : ($->data[0])@((($->size & ~gdb_array_mark_flag) + 7)/ 8)
553 Print the contents and address of the bool-vector $.
554 This command assumes that $ is an Emacs Lisp bool-vector value.
559 print (struct buffer *) $ptr
561 output ((struct Lisp_String *) $ptr)->data
565 Set $ as a buffer pointer, assuming it is an Emacs Lisp buffer value.
566 Print the name of the buffer.
571 print (struct Lisp_Hash_Table *) $ptr
574 Set $ as a hash table pointer, assuming it is an Emacs Lisp hash table value.
579 print (struct Lisp_Cons *) $ptr
584 Print the contents of $, assuming it is an Emacs Lisp cons.
592 Print the contents of the next cell in a list.
593 This assumes that the last thing you printed was a cons cell contents
594 (type struct Lisp_Cons) or a pointer to one.
599 print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->car : 0)
602 Print the car of $, assuming it is an Emacs Lisp pair.
608 print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->cdr : 0)
611 Print the cdr of $, assuming it is an Emacs Lisp pair.
616 print ((struct Lisp_Float *) $ptr)->data
619 Print $ assuming it is a lisp floating-point number.
624 print (struct scrollbar *) $ptr
629 Print $ as a scrollbar pointer.
633 set $data = $arg0->data
634 output ($arg0->size > 1000) ? 0 : ($data[0])@($arg0->size_byte < 0 ? $arg0->size & ~gdb_array_mark_flag : $arg0->size_byte)
639 set $sym = (struct Lisp_Symbol *) $ptr
641 set $sym_name = (struct Lisp_String *) $ptr
645 Print argument as a symbol.
649 set $bt = backtrace_list
651 xgettype (*$bt->function)
652 if $type == Lisp_Symbol
653 xprintsym (*$bt->function)
656 printf "0x%x ", *$bt->function
657 if $type == Lisp_Vectorlike
658 xgetptr (*$bt->function)
659 set $size = ((struct Lisp_Vector *) $ptr)->size
660 output ($size & PVEC_FLAG) ? (enum pvec_type) ($size & PVEC_TYPE_MASK) : $size & ~gdb_array_mark_flag
662 printf "Lisp type %d", $type
670 Print a backtrace of Lisp function calls from backtrace_list.
671 Set a breakpoint at Fsignal and call this to see from where
672 an error was signaled.
676 set $tagmask = (((long)1 << gdb_gctypebits) - 1)
677 set $valmask = gdb_use_lsb ? ~($tagmask) : ((long)1 << gdb_valbits) - 1
680 When starting Emacs a second time in the same gdb session under
681 FreeBSD 2.2.5, gdb 4.13, $valmask have lost
682 their values. (The same happens on current (2000) versions of GNU/Linux
684 This function reloads them.
688 # Flush display (X only)
693 Flush pending X window display updates to screen.
694 Works only when an inferior emacs is executing.
702 # Call xreload if a new Emacs executable is loaded.
708 set print sevenbit-strings
710 show environment DISPLAY
711 show environment TERM
712 set args -geometry 80x40+0+0
714 # Don't let abort actually run, as it will make
715 # stdio stop working and therefore the `pr' command above as well.
718 # If we are running in synchronous mode, we want a chance to look around
719 # before Emacs exits. Perhaps we should put the break somewhere else
721 break x_error_quitter
723 # arch-tag: 12f34321-7bfa-4240-b77a-3cd3a1696dfe