*** empty log message ***
[bpt/emacs.git] / src / .gdbinit
... / ...
CommitLineData
1# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001,
2# 2004, 2005, 2006 Free Software Foundation, Inc.
3#
4# This file is part of GNU Emacs.
5#
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.
10#
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.
15#
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.
20
21# Force loading of symbols, enough to give us gdb_valbits etc.
22set main
23
24# Find lwlib source files too.
25dir ../lwlib
26#dir /gd/gnu/lesstif-0.89.9/lib/Xm
27
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.
32handle 2 noprint pass
33
34# Make it work like SIGINT normally does.
35handle SIGTSTP nopass
36
37# Don't pass SIGALRM to Emacs. This makes problems when
38# debugging.
39handle SIGALRM ignore
40
41# $valmask and $tagmask are mask values set up by the xreload macro below.
42
43# Use $bugfix so that the value isn't a constant.
44# Using a constant runs into GDB bugs sometimes.
45define xgetptr
46 set $bugfix = $arg0
47 set $ptr = (gdb_use_union ? $bugfix.u.val : $bugfix & $valmask) | gdb_data_seg_bits
48end
49
50define xgetint
51 set $bugfix = $arg0
52 set $int = gdb_use_union ? $bugfix.s.val : (gdb_use_lsb ? $bugfix : $bugfix << gdb_gctypebits) >> gdb_gctypebits
53end
54
55define xgettype
56 set $bugfix = $arg0
57 set $type = gdb_use_union ? $bugfix.s.type : (enum Lisp_Type) (gdb_use_lsb ? $bugfix & $tagmask : $bugfix >> gdb_valbits)
58end
59
60# Set up something to print out s-expressions.
61# We save and restore print_output_debug_flag to prevent the w32 port
62# from calling OutputDebugString, which causes GDB to display each
63# character twice (yuk!).
64define pr
65 set $output_debug = print_output_debug_flag
66 set print_output_debug_flag = 0
67 set debug_print ($)
68 set print_output_debug_flag = $output_debug
69end
70document pr
71Print the emacs s-expression which is $.
72Works only when an inferior emacs is executing.
73end
74
75# Print out s-expressions
76define pp
77 set $tmp = $arg0
78 set $output_debug = print_output_debug_flag
79 set print_output_debug_flag = 0
80 set safe_debug_print ($tmp)
81 set print_output_debug_flag = $output_debug
82end
83document pp
84Print the argument as an emacs s-expression
85Works only when an inferior emacs is executing.
86end
87
88# Print out s-expressions from tool bar
89define pp1
90 set $tmp = $arg0
91 set $output_debug = print_output_debug_flag
92 set print_output_debug_flag = 0
93 set safe_debug_print ($tmp)
94 set print_output_debug_flag = $output_debug
95end
96document pp1
97Print the argument as an emacs s-expression.
98Works only when an inferior emacs is executing.
99For use on tool bar when debugging in Emacs
100where the variable name would not otherwise
101be recorded in the GUD buffer.
102end
103
104# Print value of lisp variable
105define pv
106 set $tmp = "$arg0"
107 set $output_debug = print_output_debug_flag
108 set print_output_debug_flag = 0
109 set safe_debug_print ( find_symbol_value (intern ($tmp)))
110 set print_output_debug_flag = $output_debug
111end
112document pv
113Print the value of the lisp variable given as argument.
114Works only when an inferior emacs is executing.
115end
116
117# Print value of lisp variable
118define pv1
119 set $tmp = "$arg0"
120 set $output_debug = print_output_debug_flag
121 set print_output_debug_flag = 0
122 set safe_debug_print (find_symbol_value (intern ($tmp)))
123 set print_output_debug_flag = $output_debug
124end
125document pv1
126Print the value of the lisp variable given as argument.
127Works only when an inferior emacs is executing.
128For use when debugging in Emacs where the variable
129name would not otherwise be recorded in the GUD buffer.
130end
131
132# Print out current buffer point and boundaries
133define ppt
134 set $b = current_buffer
135 set $t = $b->text
136 printf "BUF PT: %d", $b->pt
137 if ($b->pt != $b->pt_byte)
138 printf "[%d]", $b->pt_byte
139 end
140 printf " of 1..%d", $t->z
141 if ($t->z != $t->z_byte)
142 printf "[%d]", $t->z_byte
143 end
144 if ($b->begv != 1 || $b->zv != $t->z)
145 printf " NARROW=%d..%d", $b->begv, $b->zv
146 if ($b->begv != $b->begv_byte || $b->zv != $b->zv_byte)
147 printf " [%d..%d]", $b->begv_byte, $b->zv_byte
148 end
149 end
150 printf " GAP: %d", $t->gpt
151 if ($t->gpt != $t->gpt_byte)
152 printf "[%d]", $t->gpt_byte
153 end
154 printf " SZ=%d\n", $t->gap_size
155end
156document ppt
157Print point, beg, end, narrow, and gap for current buffer.
158end
159
160# Print out iterator given as first arg
161define pitx
162 set $it = $arg0
163 printf "cur=%d", $it->current.pos.charpos
164 if ($it->current.pos.charpos != $it->current.pos.bytepos)
165 printf "[%d]", $it->current.pos.bytepos
166 end
167 printf " start=%d", $it->start.pos.charpos
168 if ($it->start.pos.charpos != $it->start.pos.bytepos)
169 printf "[%d]", $it->start.pos.bytepos
170 end
171 printf " end=%d", $it->end_charpos
172 printf " stop=%d", $it->stop_charpos
173 printf " face=%d", $it->face_id
174 if ($it->multibyte_p)
175 printf " MB"
176 end
177 if ($it->header_line_p)
178 printf " HL"
179 end
180 if ($it->n_overlay_strings > 0)
181 printf " nov=%d", $it->n_overlay_strings
182 end
183 if ($it->sp != 0)
184 printf " sp=%d", $it->sp
185 end
186 if ($it->what == IT_CHARACTER)
187 if ($it->len == 1 && $it->c >= ' ' && it->c < 255)
188 printf " ch='%c'", $it->c
189 else
190 printf " ch=[%d,%d]", $it->c, $it->len
191 end
192 else
193 printf " "
194 output $it->what
195 end
196 if ($it->method != GET_FROM_BUFFER)
197 printf " next="
198 output $it->method
199 if ($it->method == GET_FROM_STRING)
200 printf "[%d]", $it->current.string_pos.charpos
201 end
202 if ($it->method == GET_FROM_IMAGE)
203 printf "[%d]", $it->image_id
204 end
205 if ($it->method == GET_FROM_COMPOSITION)
206 printf "[%d,%d,%d]", $it->cmp_id, $it->len, $it->cmp_len
207 end
208 end
209 printf "\n"
210 if ($it->region_beg_charpos >= 0)
211 printf "reg=%d-%d ", $it->region_beg_charpos, $it->region_end_charpos
212 end
213 printf "vpos=%d hpos=%d", $it->vpos, $it->hpos,
214 printf " y=%d lvy=%d", $it->current_y, $it->last_visible_y
215 printf " x=%d vx=%d-%d", $it->current_x, $it->first_visible_x, $it->last_visible_x
216 printf " w=%d", $it->pixel_width
217 printf " a+d=%d+%d=%d", $it->ascent, $it->descent, $it->ascent+$it->descent
218 printf " max=%d+%d=%d", $it->max_ascent, $it->max_descent, $it->max_ascent+$it->max_descent
219 printf "\n"
220end
221document pitx
222Pretty print a display iterator.
223Take one arg, an iterator object or pointer.
224end
225
226define pit
227 pitx it
228end
229document pit
230Pretty print the display iterator it.
231end
232
233define prowx
234 set $row = $arg0
235 printf "y=%d x=%d pwid=%d", $row->y, $row->x, $row->pixel_width
236 printf " a+d=%d+%d=%d", $row->ascent, $row->height-$row->ascent, $row->height
237 printf " phys=%d+%d=%d", $row->phys_ascent, $row->phys_height-$row->phys_ascent, $row->phys_height
238 printf " vis=%d", $row->visible_height
239 printf " L=%d T=%d R=%d", $row->used[0], $row->used[1], $row->used[2]
240 printf "\n"
241 printf "start=%d end=%d", $row->start.pos.charpos, $row->end.pos.charpos
242 if ($row->enabled_p)
243 printf " ENA"
244 end
245 if ($row->displays_text_p)
246 printf " DISP"
247 end
248 if ($row->mode_line_p)
249 printf " MODEL"
250 end
251 if ($row->continued_p)
252 printf " CONT"
253 end
254 if ($row-> truncated_on_left_p)
255 printf " TRUNC:L"
256 end
257 if ($row-> truncated_on_right_p)
258 printf " TRUNC:R"
259 end
260 if ($row->starts_in_middle_of_char_p)
261 printf " STARTMID"
262 end
263 if ($row->ends_in_middle_of_char_p)
264 printf " ENDMID"
265 end
266 if ($row->ends_in_newline_from_string_p)
267 printf " ENDNLFS"
268 end
269 if ($row->ends_at_zv_p)
270 printf " ENDZV"
271 end
272 if ($row->overlapped_p)
273 printf " OLAPD"
274 end
275 if ($row->overlapping_p)
276 printf " OLAPNG"
277 end
278 printf "\n"
279end
280document prowx
281Pretty print information about glyph_row.
282Takes one argument, a row object or pointer.
283end
284
285define prow
286 prowx row
287end
288document prow
289Pretty print information about glyph_row in row.
290end
291
292
293define pcursorx
294 set $cp = $arg0
295 printf "y=%d x=%d vpos=%d hpos=%d", $cp->y, $cp->x, $cp->vpos, $cp->hpos
296end
297document pcursorx
298Pretty print a window cursor
299end
300
301define pcursor
302 printf "output: "
303 pcursorx output_cursor
304 printf "\n"
305end
306document pcursor
307Pretty print the output_cursor
308end
309
310define pwinx
311 set $w = $arg0
312 xgetint $w->sequence_number
313 if ($w->mini_p != Qnil)
314 printf "Mini "
315 end
316 printf "Window %d ", $int
317 xgetptr $w->buffer
318 set $tem = (struct buffer *) $ptr
319 xgetptr $tem->name
320 printf "%s", ((struct Lisp_String *) $ptr)->data
321 printf "\n"
322 xgetptr $w->start
323 set $tem = (struct Lisp_Marker *) $ptr
324 printf "start=%d end:", $tem->charpos
325 if ($w->window_end_valid != Qnil)
326 xgetint $w->window_end_pos
327 printf "pos=%d", $int
328 xgetint $w->window_end_vpos
329 printf " vpos=%d", $int
330 else
331 printf "invalid"
332 end
333 printf " vscroll=%d", $w->vscroll
334 if ($w->force_start != Qnil)
335 printf " FORCE_START"
336 end
337 if ($w->must_be_updated_p)
338 printf " MUST_UPD"
339 end
340 printf "\n"
341 printf "cursor: "
342 pcursorx $w->cursor
343 printf " phys: "
344 pcursorx $w->phys_cursor
345 if ($w->phys_cursor_on_p)
346 printf " ON"
347 else
348 printf " OFF"
349 end
350 printf " blk="
351 if ($w->last_cursor_off_p != $w->cursor_off_p)
352 if ($w->last_cursor_off_p)
353 printf "ON->"
354 else
355 printf "OFF->"
356 end
357 end
358 if ($w->cursor_off_p)
359 printf "ON"
360 else
361 printf "OFF"
362 end
363 printf "\n"
364end
365document pwinx
366Pretty print a window structure.
367Takes one argument, a pointer to a window structure
368end
369
370define pwin
371 pwinx w
372end
373document pwin
374Pretty print window structure w.
375end
376
377define pgx
378 set $g = $arg0
379 if ($g->type == CHAR_GLYPH)
380 if ($g->u.ch >= ' ' && $g->u.ch < 127)
381 printf "CHAR[%c]", $g->u.ch
382 else
383 printf "CHAR[0x%x]", $g->u.ch
384 end
385 end
386 if ($g->type == COMPOSITE_GLYPH)
387 printf "COMP[%d]", $g->u.cmp_id
388 end
389 if ($g->type == IMAGE_GLYPH)
390 printf "IMAGE[%d]", $g->u.img_id
391 end
392 if ($g->type == STRETCH_GLYPH)
393 printf "STRETCH[%d+%d]", $g->u.stretch.height, $g->u.stretch.ascent
394 end
395 xgettype ($g->object)
396 if ($type == Lisp_String)
397 printf " str=%x[%d]", $g->object, $g->charpos
398 else
399 printf " pos=%d", $g->charpos
400 end
401 printf " w=%d a+d=%d+%d", $g->pixel_width, $g->ascent, $g->descent
402 if ($g->face_id != DEFAULT_FACE_ID)
403 printf " face=%d", $g->face_id
404 end
405 if ($g->voffset)
406 printf " vof=%d", $g->voffset
407 end
408 if ($g->multibyte_p)
409 printf " MB"
410 end
411 if ($g->padding_p)
412 printf " PAD"
413 end
414 if ($g->glyph_not_available_p)
415 printf " N/A"
416 end
417 if ($g->overlaps_vertically_p)
418 printf " OVL"
419 end
420 if ($g->left_box_line_p)
421 printf " ["
422 end
423 if ($g->right_box_line_p)
424 printf " ]"
425 end
426 if ($g->slice.x || $g->slice.y || $g->slice.width || $g->slice.height)
427 printf " slice=%d,%d,%d,%d" ,$g->slice.x, $g->slice.y, $g->slice.width, $g->slice.height
428 end
429 printf "\n"
430end
431document pgx
432Pretty print a glyph structure.
433Takes one argument, a pointer to a glyph structure
434end
435
436define pg
437 set $pgidx = 0
438 pgx glyph
439end
440document pg
441Pretty print glyph structure glyph.
442end
443
444define pgi
445 set $pgidx = $arg0
446 pgx (&glyph[$pgidx])
447end
448document pgi
449Pretty print glyph structure glyph[I].
450Takes one argument, a integer I.
451end
452
453define pgn
454 set $pgidx = $pgidx + 1
455 pgx (&glyph[$pgidx])
456end
457document pgn
458Pretty print next glyph structure.
459end
460
461define pgrowx
462 set $row = $arg0
463 set $area = 0
464 set $xofs = $row->x
465 while ($area < 3)
466 set $used = $row->used[$area]
467 if ($used > 0)
468 set $gl0 = $row->glyphs[$area]
469 set $pgidx = 0
470 printf "%s: %d glyphs\n", ($area == 0 ? "LEFT" : $area == 2 ? "RIGHT" : "TEXT"), $used
471 while ($pgidx < $used)
472 printf "%3d %4d: ", $pgidx, $xofs
473 pgx $gl0[$pgidx]
474 set $xofs = $xofs + $gl0[$pgidx]->pixel_width
475 set $pgidx = $pgidx + 1
476 end
477 end
478 set $area = $area + 1
479 end
480end
481document pgrowx
482Pretty print all glyphs in a row structure.
483Takes one argument, a pointer to a row structure.
484end
485
486define pgrow
487 pgrowx row
488end
489document pgrow
490Pretty print all glyphs in row structure row.
491end
492
493define xtype
494 xgettype $
495 output $type
496 echo \n
497 if $type == Lisp_Misc
498 xmisctype
499 else
500 if $type == Lisp_Vectorlike
501 xvectype
502 end
503 end
504end
505document xtype
506Print the type of $, assuming it is an Emacs Lisp value.
507If the first type printed is Lisp_Vector or Lisp_Misc,
508a second line gives the more precise type.
509end
510
511define xvectype
512 xgetptr $
513 set $size = ((struct Lisp_Vector *) $ptr)->size
514 output ($size & PVEC_FLAG) ? (enum pvec_type) ($size & PVEC_TYPE_MASK) : $size & ~gdb_array_mark_flag
515 echo \n
516end
517document xvectype
518Print the size or vector subtype of $, assuming it is a vector or pseudovector.
519end
520
521define xmisctype
522 xgetptr $
523 output (enum Lisp_Misc_Type) (((struct Lisp_Free *) $ptr)->type)
524 echo \n
525end
526document xmisctype
527Print the specific type of $, assuming it is some misc type.
528end
529
530define xint
531 xgetint $
532 print $int
533end
534document xint
535Print $, assuming it is an Emacs Lisp integer. This gets the sign right.
536end
537
538define xptr
539 xgetptr $
540 print (void *) $ptr
541end
542document xptr
543Print the pointer portion of $, assuming it is an Emacs Lisp value.
544end
545
546define xmarker
547 xgetptr $
548 print (struct Lisp_Marker *) $ptr
549end
550document xmarker
551Print $ as a marker pointer, assuming it is an Emacs Lisp marker value.
552end
553
554define xoverlay
555 xgetptr $
556 print (struct Lisp_Overlay *) $ptr
557end
558document xoverlay
559Print $ as a overlay pointer, assuming it is an Emacs Lisp overlay value.
560end
561
562define xmiscfree
563 xgetptr $
564 print (struct Lisp_Free *) $ptr
565end
566document xmiscfree
567Print $ as a misc free-cell pointer, assuming it is an Emacs Lisp Misc value.
568end
569
570define xintfwd
571 xgetptr $
572 print (struct Lisp_Intfwd *) $ptr
573end
574document xintfwd
575Print $ as an integer forwarding pointer, assuming it is an Emacs Lisp Misc value.
576end
577
578define xboolfwd
579 xgetptr $
580 print (struct Lisp_Boolfwd *) $ptr
581end
582document xboolfwd
583Print $ as a boolean forwarding pointer, assuming it is an Emacs Lisp Misc value.
584end
585
586define xobjfwd
587 xgetptr $
588 print (struct Lisp_Objfwd *) $ptr
589end
590document xobjfwd
591Print $ as an object forwarding pointer, assuming it is an Emacs Lisp Misc value.
592end
593
594define xbufobjfwd
595 xgetptr $
596 print (struct Lisp_Buffer_Objfwd *) $ptr
597end
598document xbufobjfwd
599Print $ as a buffer-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
600end
601
602define xkbobjfwd
603 xgetptr $
604 print (struct Lisp_Kboard_Objfwd *) $ptr
605end
606document xkbobjfwd
607Print $ as a kboard-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
608end
609
610define xbuflocal
611 xgetptr $
612 print (struct Lisp_Buffer_Local_Value *) $ptr
613end
614document xbuflocal
615Print $ as a buffer-local-value pointer, assuming it is an Emacs Lisp Misc value.
616end
617
618define xsymbol
619 set $sym = $
620 xgetptr $sym
621 print (struct Lisp_Symbol *) $ptr
622 xprintsym $sym
623 echo \n
624end
625document xsymbol
626Print the name and address of the symbol $.
627This command assumes that $ is an Emacs Lisp symbol value.
628end
629
630define xstring
631 xgetptr $
632 print (struct Lisp_String *) $ptr
633 xprintstr $
634 echo \n
635end
636document xstring
637Print the contents and address of the string $.
638This command assumes that $ is an Emacs Lisp string value.
639end
640
641define xvector
642 xgetptr $
643 print (struct Lisp_Vector *) $ptr
644 output ($->size > 50) ? 0 : ($->contents[0])@($->size & ~gdb_array_mark_flag)
645echo \n
646end
647document xvector
648Print the contents and address of the vector $.
649This command assumes that $ is an Emacs Lisp vector value.
650end
651
652define xprocess
653 xgetptr $
654 print (struct Lisp_Process *) $ptr
655 output *$
656 echo \n
657end
658document xprocess
659Print the address of the struct Lisp_process which the Lisp_Object $ points to.
660end
661
662define xframe
663 xgetptr $
664 print (struct frame *) $ptr
665 xgetptr $->name
666 set $ptr = (struct Lisp_String *) $ptr
667 xprintstr $ptr
668 echo \n
669end
670document xframe
671Print $ as a frame pointer, assuming it is an Emacs Lisp frame value.
672end
673
674define xcompiled
675 xgetptr $
676 print (struct Lisp_Vector *) $ptr
677 output ($->contents[0])@($->size & 0xff)
678end
679document xcompiled
680Print $ as a compiled function pointer, assuming it is an Emacs Lisp compiled value.
681end
682
683define xwindow
684 xgetptr $
685 print (struct window *) $ptr
686 set $window = (struct window *) $ptr
687 xgetint $window->total_cols
688 set $width=$int
689 xgetint $window->total_lines
690 set $height=$int
691 xgetint $window->left_col
692 set $left=$int
693 xgetint $window->top_line
694 set $top=$int
695 printf "%dx%d+%d+%d\n", $width, $height, $left, $top
696end
697document xwindow
698Print $ as a window pointer, assuming it is an Emacs Lisp window value.
699Print the window's position as "WIDTHxHEIGHT+LEFT+TOP".
700end
701
702define xwinconfig
703 xgetptr $
704 print (struct save_window_data *) $ptr
705end
706document xwinconfig
707Print $ as a window configuration pointer, assuming it is an Emacs Lisp window configuration value.
708end
709
710define xsubr
711 xgetptr $
712 print (struct Lisp_Subr *) $ptr
713 output *$
714 echo \n
715end
716document xsubr
717Print the address of the subr which the Lisp_Object $ points to.
718end
719
720define xchartable
721 xgetptr $
722 print (struct Lisp_Char_Table *) $ptr
723 printf "Purpose: "
724 xprintsym $->purpose
725 printf " %d extra slots", ($->size & 0x1ff) - 388
726 echo \n
727end
728document xchartable
729Print the address of the char-table $, and its purpose.
730This command assumes that $ is an Emacs Lisp char-table value.
731end
732
733define xboolvector
734 xgetptr $
735 print (struct Lisp_Bool_Vector *) $ptr
736 output ($->size > 256) ? 0 : ($->data[0])@((($->size & ~gdb_array_mark_flag) + 7)/ 8)
737 echo \n
738end
739document xboolvector
740Print the contents and address of the bool-vector $.
741This command assumes that $ is an Emacs Lisp bool-vector value.
742end
743
744define xbuffer
745 xgetptr $
746 print (struct buffer *) $ptr
747 xgetptr $->name
748 output ((struct Lisp_String *) $ptr)->data
749 echo \n
750end
751document xbuffer
752Set $ as a buffer pointer, assuming it is an Emacs Lisp buffer value.
753Print the name of the buffer.
754end
755
756define xhashtable
757 xgetptr $
758 print (struct Lisp_Hash_Table *) $ptr
759end
760document xhashtable
761Set $ as a hash table pointer, assuming it is an Emacs Lisp hash table value.
762end
763
764define xcons
765 xgetptr $
766 print (struct Lisp_Cons *) $ptr
767 output/x *$
768 echo \n
769end
770document xcons
771Print the contents of $, assuming it is an Emacs Lisp cons.
772end
773
774define nextcons
775 p $.u.cdr
776 xcons
777end
778document nextcons
779Print the contents of the next cell in a list.
780This assumes that the last thing you printed was a cons cell contents
781(type struct Lisp_Cons) or a pointer to one.
782end
783define xcar
784 xgetptr $
785 xgettype $
786 print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->car : 0)
787end
788document xcar
789Print the car of $, assuming it is an Emacs Lisp pair.
790end
791
792define xcdr
793 xgetptr $
794 xgettype $
795 print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->u.cdr : 0)
796end
797document xcdr
798Print the cdr of $, assuming it is an Emacs Lisp pair.
799end
800
801define xlist
802 xgetptr $
803 set $cons = (struct Lisp_Cons *) $ptr
804 xgetptr Qnil
805 set $nil = $ptr
806 set $i = 0
807 while $cons != $nil && $i < 10
808 p/x $cons->car
809 xpr
810 xgetptr $cons->u.cdr
811 set $cons = (struct Lisp_Cons *) $ptr
812 set $i = $i + 1
813 printf "---\n"
814 end
815 if $cons == $nil
816 printf "nil\n"
817 else
818 printf "...\n"
819 p $ptr
820 end
821end
822document xlist
823Print $ assuming it is a list.
824end
825
826define xfloat
827 xgetptr $
828 print ((struct Lisp_Float *) $ptr)->u.data
829end
830document xfloat
831Print $ assuming it is a lisp floating-point number.
832end
833
834define xscrollbar
835 xgetptr $
836 print (struct scrollbar *) $ptr
837output *$
838echo \n
839end
840document xscrollbar
841Print $ as a scrollbar pointer.
842end
843
844define xpr
845 xtype
846 if $type == Lisp_Int
847 xint
848 end
849 if $type == Lisp_Symbol
850 xsymbol
851 end
852 if $type == Lisp_String
853 xstring
854 end
855 if $type == Lisp_Cons
856 xcons
857 end
858 if $type == Lisp_Float
859 xfloat
860 end
861 if $type == Lisp_Misc
862 set $misc = (enum Lisp_Misc_Type) (((struct Lisp_Free *) $ptr)->type)
863 if $misc == Lisp_Misc_Free
864 xmiscfree
865 end
866 if $misc == Lisp_Misc_Boolfwd
867 xboolfwd
868 end
869 if $misc == Lisp_Misc_Marker
870 xmarker
871 end
872 if $misc == Lisp_Misc_Intfwd
873 xintfwd
874 end
875 if $misc == Lisp_Misc_Boolfwd
876 xboolfwd
877 end
878 if $misc == Lisp_Misc_Objfwd
879 xobjfwd
880 end
881 if $misc == Lisp_Misc_Buffer_Objfwd
882 xbufobjfwd
883 end
884 if $misc == Lisp_Misc_Buffer_Local_Value
885 xbuflocal
886 end
887# if $misc == Lisp_Misc_Some_Buffer_Local_Value
888# xvalue
889# end
890 if $misc == Lisp_Misc_Overlay
891 xoverlay
892 end
893 if $misc == Lisp_Misc_Kboard_Objfwd
894 xkbobjfwd
895 end
896# if $misc == Lisp_Misc_Save_Value
897# xsavevalue
898# end
899 end
900 if $type == Lisp_Vectorlike
901 set $size = ((struct Lisp_Vector *) $ptr)->size
902 if ($size & PVEC_FLAG)
903 set $vec = (enum pvec_type) ($size & PVEC_TYPE_MASK)
904 if $vec == PVEC_NORMAL_VECTOR
905 xvector
906 end
907 if $vec == PVEC_PROCESS
908 xprocess
909 end
910 if $vec == PVEC_FRAME
911 xframe
912 end
913 if $vec == PVEC_COMPILED
914 xcompiled
915 end
916 if $vec == PVEC_WINDOW
917 xwindow
918 end
919 if $vec == PVEC_WINDOW_CONFIGURATION
920 xwinconfig
921 end
922 if $vec == PVEC_SUBR
923 xsubr
924 end
925 if $vec == PVEC_CHAR_TABLE
926 xchartable
927 end
928 if $vec == PVEC_BOOL_VECTOR
929 xboolvector
930 end
931 if $vec == PVEC_BUFFER
932 xbuffer
933 end
934 if $vec == PVEC_HASH_TABLE
935 xhashtable
936 end
937 else
938 xvector
939 end
940 end
941end
942document xpr
943Print $ as a lisp object of any type.
944end
945
946define xprintstr
947 set $data = $arg0->data
948 output ($arg0->size > 1000) ? 0 : ($data[0])@($arg0->size_byte < 0 ? $arg0->size & ~gdb_array_mark_flag : $arg0->size_byte)
949end
950
951define xprintsym
952 xgetptr $arg0
953 set $sym = (struct Lisp_Symbol *) $ptr
954 xgetptr $sym->xname
955 set $sym_name = (struct Lisp_String *) $ptr
956 xprintstr $sym_name
957end
958document xprintsym
959 Print argument as a symbol.
960end
961
962define xbacktrace
963 set $bt = backtrace_list
964 while $bt
965 xgettype (*$bt->function)
966 if $type == Lisp_Symbol
967 xprintsym (*$bt->function)
968 printf " (0x%x)\n", *$bt->args
969 else
970 printf "0x%x ", *$bt->function
971 if $type == Lisp_Vectorlike
972 xgetptr (*$bt->function)
973 set $size = ((struct Lisp_Vector *) $ptr)->size
974 output ($size & PVEC_FLAG) ? (enum pvec_type) ($size & PVEC_TYPE_MASK) : $size & ~gdb_array_mark_flag
975 else
976 printf "Lisp type %d", $type
977 end
978 echo \n
979 end
980 set $bt = $bt->next
981 end
982end
983document xbacktrace
984 Print a backtrace of Lisp function calls from backtrace_list.
985 Set a breakpoint at Fsignal and call this to see from where
986 an error was signaled.
987end
988
989define which
990 set debug_print (which_symbols ($arg0))
991end
992document which
993 Print symbols which references a given lisp object,
994 either as its symbol value or symbol function.
995end
996
997define xbytecode
998 set $bt = byte_stack_list
999 while $bt
1000 xgettype ($bt->byte_string)
1001 printf "0x%x => ", $bt->byte_string
1002 which $bt->byte_string
1003 set $bt = $bt->next
1004 end
1005end
1006document xbytecode
1007 Print a backtrace of the byte code stack.
1008end
1009
1010# Show Lisp backtrace after normal backtrace.
1011define hookpost-backtrace
1012 set $bt = backtrace_list
1013 if $bt
1014 echo \n
1015 echo Lisp Backtrace:\n
1016 xbacktrace
1017 end
1018end
1019
1020define xreload
1021 set $tagmask = (((long)1 << gdb_gctypebits) - 1)
1022 set $valmask = gdb_use_lsb ? ~($tagmask) : ((long)1 << gdb_valbits) - 1
1023end
1024document xreload
1025 When starting Emacs a second time in the same gdb session under
1026 FreeBSD 2.2.5, gdb 4.13, $valmask have lost
1027 their values. (The same happens on current (2000) versions of GNU/Linux
1028 with gdb 5.0.)
1029 This function reloads them.
1030end
1031xreload
1032
1033# Flush display (X only)
1034define ff
1035 set x_flush (0)
1036end
1037document ff
1038Flush pending X window display updates to screen.
1039Works only when an inferior emacs is executing.
1040end
1041
1042
1043define hook-run
1044 xreload
1045end
1046
1047# Call xreload if a new Emacs executable is loaded.
1048define hookpost-run
1049 xreload
1050end
1051
1052set print pretty on
1053set print sevenbit-strings
1054
1055show environment DISPLAY
1056show environment TERM
1057set args -geometry 80x40+0+0
1058
1059# People get bothered when they see messages about non-existent functions...
1060xgetptr Vsystem_type
1061# $ptr is NULL in temacs
1062if ($ptr != 0)
1063 set $tem = (struct Lisp_Symbol *) $ptr
1064 xgetptr $tem->xname
1065 set $tem = (struct Lisp_String *) $ptr
1066 set $tem = (char *) $tem->data
1067
1068 # Don't let abort actually run, as it will make stdio stop working and
1069 # therefore the `pr' command above as well.
1070 if $tem[0] == 'w' && $tem[1] == 'i' && $tem[2] == 'n' && $tem[3] == 'd'
1071 # The windows-nt build replaces abort with its own function.
1072 break w32_abort
1073 else
1074 break abort
1075 end
1076end
1077
1078# x_error_quitter is defined only on X. But window-system is set up
1079# only at run time, during Emacs startup, so we need to defer setting
1080# the breakpoint. init_sys_modes is the first function called on
1081# every platform after init_display, where window-system is set.
1082tbreak init_sys_modes
1083commands
1084 silent
1085 xgetptr Vwindow_system
1086 set $tem = (struct Lisp_Symbol *) $ptr
1087 xgetptr $tem->xname
1088 set $tem = (struct Lisp_String *) $ptr
1089 set $tem = (char *) $tem->data
1090 # If we are running in synchronous mode, we want a chance to look
1091 # around before Emacs exits. Perhaps we should put the break
1092 # somewhere else instead...
1093 if $tem[0] == 'x' && $tem[1] == '\0'
1094 break x_error_quitter
1095 end
1096 continue
1097end
1098# arch-tag: 12f34321-7bfa-4240-b77a-3cd3a1696dfe