(batch-update-autoloads): Call `update-directory-autoloads'.
[emacs.git] / lisp / gdb-ui.el
blob79e185fe7a5a0c73094804e7639605ddac90948f
1 ;;; gdb-ui.el --- User Interface for running GDB
3 ;; Author: Nick Roberts <nick@nick.uklinux.net>
4 ;; Maintainer: FSF
5 ;; Keywords: unix, tools
7 ;; Copyright (C) 2002 Free Software Foundation, Inc.
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
26 ;;; Commentary:
28 ;; This mode acts as a graphical user interface to GDB. You can interact with
29 ;; GDB through the GUD buffer in the usual way, but there are also further
30 ;; buffers which control the execution and describe the state of your program.
31 ;; It separates the input/output of your program from that of GDB and displays
32 ;; expressions and their current values in their own buffers. It also uses
33 ;; features of Emacs 21 such as the display margin for breakpoints, and the
34 ;; toolbar (see the GDB User Interface section in the Emacs info manual).
36 ;; Start the debugger with M-x gdba.
38 ;; This file is based on gdba.el from GDB 5.0 written by Tom Lord and Jim
39 ;; Kingdon and uses GDB's annotation interface. You don't need to know about
40 ;; annotations to use this mode as a debugger, but if you are interested
41 ;; developing the mode itself, then see the Annotations section in the GDB
42 ;; info manual.
44 ;; Known Bugs: Does not auto-display arrays of structures or structures
45 ;; containing arrays.
47 ;;; Code:
49 (require 'gud)
51 (defcustom gdb-window-height 20
52 "*Number of lines in a frame for a displayed expression in GDB-UI."
53 :type 'integer
54 :group 'gud)
56 (defcustom gdb-window-width 30
57 "Width of a frame for a displayed expression in GDB-UI."
58 :type 'integer
59 :group 'gud)
61 (defvar gdb-main-or-pc nil "Initialisation for Assembler buffer.")
62 (defvar gdb-current-address nil)
63 (defvar gdb-display-in-progress nil)
64 (defvar gdb-dive nil)
65 (defvar gdb-buffer-type nil)
66 (defvar gdb-variables '()
67 "A list of variables that are local to the GUD buffer.")
70 ;;;###autoload
71 (defun gdba (command-line)
72 "Run gdb on program FILE in buffer *gud-FILE*.
73 The directory containing FILE becomes the initial working directory
74 and source-file directory for your debugger.
76 If `gdb-many-windows' is nil (the default value) then gdb starts with
77 just two windows : the GUD and the source buffer. If it is t the
78 following layout will appear (keybindings given in relevant buffer) :
80 ---------------------------------------------------------------------
81 GDB Toolbar
82 ---------------------------------------------------------------------
83 GUD buffer (I/O of GDB) | Locals buffer
87 ---------------------------------------------------------------------
88 Source buffer | Input/Output (of debuggee) buffer
89 | (comint-mode)
96 ---------------------------------------------------------------------
97 Stack buffer | Breakpoints buffer
98 RET gdb-frames-select | SPC gdb-toggle-breakpoint
99 | RET gdb-goto-breakpoint
100 | d gdb-delete-breakpoint
101 ---------------------------------------------------------------------
103 All the buffers share the toolbar and source should always display in the same
104 window e.g after typing g on a breakpoint in the breakpoints buffer. Breakpoint
105 icons are displayed both by setting a break with gud-break and by typing break
106 in the GUD buffer.
108 This works best (depending on the size of your monitor) using most of the
109 screen.
111 Displayed expressions appear in separate frames. Arrays may be displayed
112 as slices and visualised using the graph program from plotutils if installed.
113 Pointers in structures may be followed in a tree-like fashion.
115 The following interactive lisp functions help control operation :
117 `gdb-many-windows' - Toggle the number of windows gdb uses.
118 `gdb-restore-windows' - To restore the window layout.
119 `gdb-quit' - To delete (most) of the buffers used by GDB-UI and
120 reset variables."
122 (interactive (list (gud-query-cmdline 'gdba)))
124 ;; Let's start with a basic gud-gdb buffer and then modify it a bit.
125 (gdb command-line)
127 (set (make-local-variable 'gud-minor-mode) 'gdba)
128 (set (make-local-variable 'gud-marker-filter) 'gud-gdba-marker-filter)
130 (gud-def gud-break (if (not (string-equal mode-name "Assembler"))
131 (gud-call "break %f:%l" arg)
132 (save-excursion
133 (beginning-of-line)
134 (forward-char 2)
135 (gud-call "break *%a" arg)))
136 "\C-b" "Set breakpoint at current line or address.")
138 (gud-def gud-remove (if (not (string-equal mode-name "Assembler"))
139 (gud-call "clear %f:%l" arg)
140 (save-excursion
141 (beginning-of-line)
142 (forward-char 2)
143 (gud-call "clear *%a" arg)))
144 "\C-d" "Remove breakpoint at current line or address.")
146 (setq comint-input-sender 'gdb-send)
148 ;; (re-)initialise
149 (setq gdb-main-or-pc "main")
150 (setq gdb-current-address nil)
151 (setq gdb-display-in-progress nil)
152 (setq gdb-dive nil)
154 (mapc 'make-local-variable gdb-variables)
155 (setq gdb-buffer-type 'gdba)
157 (gdb-clear-inferior-io)
159 (gdb-enqueue-input (list "set height 0\n" 'ignore))
160 ;; find source file and compilation directory here
161 (gdb-enqueue-input (list "server list\n" 'ignore))
162 (gdb-enqueue-input (list "server info source\n"
163 'gdb-source-info))
165 (run-hooks 'gdba-mode-hook))
167 (defun gud-display ()
168 "Auto-display (possibly dereferenced) C expression at point."
169 (interactive)
170 (save-excursion
171 (let ((expr (gud-find-c-expr)))
172 (gdb-enqueue-input
173 (list (concat "server ptype " expr "\n")
174 `(lambda () (gud-display1 ,expr)))))))
176 (defun gud-display1 (expr)
177 (goto-char (point-min))
178 (if (looking-at "No symbol")
179 (progn
180 (gdb-set-output-sink 'user)
181 (gud-call (concat "server ptype " expr)))
182 (goto-char (- (point-max) 1))
183 (if (equal (char-before) (string-to-char "\*"))
184 (gdb-enqueue-input
185 (list (concat "server display* " expr "\n") 'ignore))
186 (gdb-enqueue-input
187 (list (concat "server display " expr "\n") 'ignore)))))
189 ; this would messy because these bindings don't work with M-x gdb
190 ; (define-key global-map "\C-x\C-a\C-a" 'gud-display)
191 ; (define-key gud-minor-mode-map "\C-c\C-a" 'gud-display)
195 ;; ======================================================================
197 ;; In this world, there are gdb variables (of unspecified
198 ;; representation) and buffers associated with those objects.
199 ;; The list of variables is built up by the expansions of
200 ;; def-gdb-variable
202 (defmacro def-gdb-var (root-symbol &optional default doc)
203 (let* ((root (symbol-name root-symbol))
204 (accessor (intern (concat "gdb-get-" root)))
205 (setter (intern (concat "gdb-set-" root)))
206 (name (intern (concat "gdb-" root))))
207 `(progn
208 (defvar ,name ,default ,doc)
209 (if (not (memq ',name gdb-variables))
210 (push ',name gdb-variables))
211 (defun ,accessor ()
212 (buffer-local-value ',name gud-comint-buffer))
213 (defun ,setter (val)
214 (with-current-buffer gud-comint-buffer
215 (setq ,name val))))))
217 (def-gdb-var buffer-type nil
218 "One of the symbols bound in gdb-buffer-rules")
220 (def-gdb-var burst ""
221 "A string of characters from gdb that have not yet been processed.")
223 (def-gdb-var input-queue ()
224 "A list of high priority gdb command objects.")
226 (def-gdb-var idle-input-queue ()
227 "A list of low priority gdb command objects.")
229 (def-gdb-var prompting nil
230 "True when gdb is idle with no pending input.")
232 (def-gdb-var output-sink 'user
233 "The disposition of the output of the current gdb command.
234 Possible values are these symbols:
236 user -- gdb output should be copied to the GUD buffer
237 for the user to see.
239 inferior -- gdb output should be copied to the inferior-io buffer
241 pre-emacs -- output should be ignored util the post-prompt
242 annotation is received. Then the output-sink
243 becomes:...
244 emacs -- output should be collected in the partial-output-buffer
245 for subsequent processing by a command. This is the
246 disposition of output generated by commands that
247 gdb mode sends to gdb on its own behalf.
248 post-emacs -- ignore input until the prompt annotation is
249 received, then go to USER disposition.
252 (def-gdb-var current-item nil
253 "The most recent command item sent to gdb.")
255 (def-gdb-var pending-triggers '()
256 "A list of trigger functions that have run later than their output
257 handlers.")
259 ;; end of gdb variables
261 (defun gdb-get-target-string ()
262 (with-current-buffer gud-comint-buffer
263 gud-target-name))
267 ;; gdb buffers.
269 ;; Each buffer has a TYPE -- a symbol that identifies the function
270 ;; of that particular buffer.
272 ;; The usual gdb interaction buffer is given the type `gdba' and
273 ;; is constructed specially.
275 ;; Others are constructed by gdb-get-create-buffer and
276 ;; named according to the rules set forth in the gdb-buffer-rules-assoc
278 (defvar gdb-buffer-rules-assoc '())
280 (defun gdb-get-buffer (key)
281 "Return the gdb buffer tagged with type KEY.
282 The key should be one of the cars in `gdb-buffer-rules-assoc'."
283 (save-excursion
284 (gdb-look-for-tagged-buffer key (buffer-list))))
286 (defun gdb-get-create-buffer (key)
287 "Create a new gdb buffer of the type specified by KEY.
288 The key should be one of the cars in `gdb-buffer-rules-assoc'."
289 (or (gdb-get-buffer key)
290 (let* ((rules (assoc key gdb-buffer-rules-assoc))
291 (name (funcall (gdb-rules-name-maker rules)))
292 (new (get-buffer-create name)))
293 (with-current-buffer new
294 ;; FIXME: This should be set after calling the function, since the
295 ;; function should run kill-all-local-variables.
296 (set (make-local-variable 'gdb-buffer-type) key)
297 (if (cdr (cdr rules))
298 (funcall (car (cdr (cdr rules)))))
299 (set (make-local-variable 'gud-comint-buffer) gud-comint-buffer)
300 (set (make-local-variable 'gud-minor-mode) 'gdba)
301 (set (make-local-variable 'tool-bar-map) gud-tool-bar-map)
302 new))))
304 (defun gdb-rules-name-maker (rules) (car (cdr rules)))
306 (defun gdb-look-for-tagged-buffer (key bufs)
307 (let ((retval nil))
308 (while (and (not retval) bufs)
309 (set-buffer (car bufs))
310 (if (eq gdb-buffer-type key)
311 (setq retval (car bufs)))
312 (setq bufs (cdr bufs)))
313 retval))
316 ;; This assoc maps buffer type symbols to rules. Each rule is a list of
317 ;; at least one and possible more functions. The functions have these
318 ;; roles in defining a buffer type:
320 ;; NAME - Return a name for this buffer type.
322 ;; The remaining function(s) are optional:
324 ;; MODE - called in a new buffer with no arguments, should establish
325 ;; the proper mode for the buffer.
328 (defun gdb-set-buffer-rules (buffer-type &rest rules)
329 (let ((binding (assoc buffer-type gdb-buffer-rules-assoc)))
330 (if binding
331 (setcdr binding rules)
332 (push (cons buffer-type rules)
333 gdb-buffer-rules-assoc))))
335 ;; GUD buffers are an exception to the rules
336 (gdb-set-buffer-rules 'gdba 'error)
339 ;; Partial-output buffer : This accumulates output from a command executed on
340 ;; behalf of emacs (rather than the user).
342 (gdb-set-buffer-rules 'gdb-partial-output-buffer
343 'gdb-partial-output-name)
345 (defun gdb-partial-output-name ()
346 (concat "*partial-output-"
347 (gdb-get-target-string)
348 "*"))
351 (gdb-set-buffer-rules 'gdb-inferior-io
352 'gdb-inferior-io-name
353 'gdb-inferior-io-mode)
355 (defun gdb-inferior-io-name ()
356 (concat "*input/output of "
357 (gdb-get-target-string)
358 "*"))
360 (defvar gdb-inferior-io-mode-map
361 (let ((map (make-sparse-keymap)))
362 (define-key map "\C-c\C-c" 'gdb-inferior-io-interrupt)
363 (define-key map "\C-c\C-z" 'gdb-inferior-io-stop)
364 (define-key map "\C-c\C-\\" 'gdb-inferior-io-quit)
365 (define-key map "\C-c\C-d" 'gdb-inferior-io-eof)
366 map))
368 (define-derived-mode gdb-inferior-io-mode comint-mode "Debuggee I/O"
369 "Major mode for gdb inferior-io."
370 :syntax-table nil :abbrev-table nil
371 ;; We want to use comint because it has various nifty and familiar
372 ;; features. We don't need a process, but comint wants one, so create
373 ;; a dummy one.
374 (make-comint-in-buffer
375 (substring (buffer-name) 1 (- (length (buffer-name)) 1))
376 (current-buffer) "cat")
377 (setq comint-input-sender 'gdb-inferior-io-sender))
379 (defun gdb-inferior-io-sender (proc string)
380 ;; PROC is the pseudo-process created to satisfy comint.
381 (with-current-buffer (process-buffer proc)
382 (setq proc (get-buffer-process gud-comint-buffer))
383 (process-send-string proc string)
384 (process-send-string proc "\n")))
386 (defun gdb-inferior-io-interrupt ()
387 "Interrupt the program being debugged."
388 (interactive)
389 (interrupt-process
390 (get-buffer-process gud-comint-buffer) comint-ptyp))
392 (defun gdb-inferior-io-quit ()
393 "Send quit signal to the program being debugged."
394 (interactive)
395 (quit-process
396 (get-buffer-process gud-comint-buffer) comint-ptyp))
398 (defun gdb-inferior-io-stop ()
399 "Stop the program being debugged."
400 (interactive)
401 (stop-process
402 (get-buffer-process gud-comint-buffer) comint-ptyp))
404 (defun gdb-inferior-io-eof ()
405 "Send end-of-file to the program being debugged."
406 (interactive)
407 (process-send-eof
408 (get-buffer-process gud-comint-buffer)))
412 ;; gdb communications
415 ;; INPUT: things sent to gdb
417 ;; There is a high and low priority input queue. Low priority input is sent
418 ;; only when the high priority queue is idle.
420 ;; The queues are lists. Each element is either a string (indicating user or
421 ;; user-like input) or a list of the form:
423 ;; (INPUT-STRING HANDLER-FN)
425 ;; The handler function will be called from the partial-output buffer when the
426 ;; command completes. This is the way to write commands which invoke gdb
427 ;; commands autonomously.
429 ;; These lists are consumed tail first.
432 (defun gdb-send (proc string)
433 "A comint send filter for gdb.
434 This filter may simply queue output for a later time."
435 (gdb-enqueue-input (concat string "\n")))
437 ;; Note: Stuff enqueued here will be sent to the next prompt, even if it
438 ;; is a query, or other non-top-level prompt. To guarantee stuff will get
439 ;; sent to the top-level prompt, currently it must be put in the idle queue.
440 ;; ^^^^^^^^^
441 ;; [This should encourage gdb extensions that invoke gdb commands to let
442 ;; the user go first; it is not a bug. -t]
445 (defun gdb-enqueue-input (item)
446 (if (gdb-get-prompting)
447 (progn
448 (gdb-send-item item)
449 (gdb-set-prompting nil))
450 (gdb-set-input-queue
451 (cons item (gdb-get-input-queue)))))
453 (defun gdb-dequeue-input ()
454 (let ((queue (gdb-get-input-queue)))
455 (and queue
456 (if (not (cdr queue))
457 (let ((answer (car queue)))
458 (gdb-set-input-queue '())
459 answer)
460 (gdb-take-last-elt queue)))))
462 (defun gdb-enqueue-idle-input (item)
463 (if (and (gdb-get-prompting)
464 (not (gdb-get-input-queue)))
465 (progn
466 (gdb-send-item item)
467 (gdb-set-prompting nil))
468 (gdb-set-idle-input-queue
469 (cons item (gdb-get-idle-input-queue)))))
471 (defun gdb-dequeue-idle-input ()
472 (let ((queue (gdb-get-idle-input-queue)))
473 (and queue
474 (if (not (cdr queue))
475 (let ((answer (car queue)))
476 (gdb-set-idle-input-queue '())
477 answer)
478 (gdb-take-last-elt queue)))))
480 ;; Don't use this in general.
481 (defun gdb-take-last-elt (l)
482 (if (cdr (cdr l))
483 (gdb-take-last-elt (cdr l))
484 (let ((answer (car (cdr l))))
485 (setcdr l '())
486 answer)))
490 ;; output -- things gdb prints to emacs
492 ;; GDB output is a stream interrupted by annotations.
493 ;; Annotations can be recognized by their beginning
494 ;; with \C-j\C-z\C-z<tag><opt>\C-j
496 ;; The tag is a string obeying symbol syntax.
498 ;; The optional part `<opt>' can be either the empty string
499 ;; or a space followed by more data relating to the annotation.
500 ;; For example, the SOURCE annotation is followed by a filename,
501 ;; line number and various useless goo. This data must not include
502 ;; any newlines.
505 (defcustom gud-gdba-command-name "gdb -annotate=2"
506 "Default command to execute an executable under the GDB-UI debugger."
507 :type 'string
508 :group 'gud)
510 (defvar gdb-annotation-rules
511 '(("frames-invalid" gdb-invalidate-frame-and-assembler)
512 ("breakpoints-invalid" gdb-invalidate-breakpoints-and-assembler)
513 ("pre-prompt" gdb-pre-prompt)
514 ("prompt" gdb-prompt)
515 ("commands" gdb-subprompt)
516 ("overload-choice" gdb-subprompt)
517 ("query" gdb-subprompt)
518 ("prompt-for-continue" gdb-subprompt)
519 ("post-prompt" gdb-post-prompt)
520 ("source" gdb-source)
521 ("starting" gdb-starting)
522 ("exited" gdb-stopping)
523 ("signalled" gdb-stopping)
524 ("signal" gdb-stopping)
525 ("breakpoint" gdb-stopping)
526 ("watchpoint" gdb-stopping)
527 ("frame-begin" gdb-frame-begin)
528 ("stopped" gdb-stopped)
529 ("display-begin" gdb-display-begin)
530 ("display-end" gdb-display-end)
531 ; GDB commands info stack, info locals and frame generate an error-begin
532 ; annotation at start when there is no stack but this is a quirk/bug in
533 ; annotations.
534 ; ("error-begin" gdb-error-begin)
535 ("display-number-end" gdb-display-number-end)
536 ("array-section-begin" gdb-array-section-begin)
537 ("array-section-end" gdb-array-section-end)
538 ;; ("elt" gdb-elt)
539 ("field-begin" gdb-field-begin)
540 ("field-end" gdb-field-end)
541 ) "An assoc mapping annotation tags to functions which process them.")
543 (defun gdb-ignore-annotation (args)
544 nil)
546 (defconst gdb-source-spec-regexp
547 "\\(.*\\):\\([0-9]*\\):[0-9]*:[a-z]*:\\(0x[a-f0-9]*\\)")
549 ;; Do not use this except as an annotation handler.
550 (defun gdb-source (args)
551 (string-match gdb-source-spec-regexp args)
552 ;; Extract the frame position from the marker.
553 (setq gud-last-frame
554 (cons
555 (match-string 1 args)
556 (string-to-int (match-string 2 args))))
557 (setq gdb-current-address (match-string 3 args))
558 (setq gdb-main-or-pc gdb-current-address)
559 ;;update with new frame for machine code if necessary
560 (gdb-invalidate-assembler))
562 (defun gdb-send-item (item)
563 (gdb-set-current-item item)
564 (if (stringp item)
565 (progn
566 (gdb-set-output-sink 'user)
567 (process-send-string (get-buffer-process gud-comint-buffer) item))
568 (progn
569 (gdb-clear-partial-output)
570 (gdb-set-output-sink 'pre-emacs)
571 (process-send-string (get-buffer-process gud-comint-buffer)
572 (car item)))))
574 (defun gdb-pre-prompt (ignored)
575 "An annotation handler for `pre-prompt'. This terminates the collection of
576 output from a previous command if that happens to be in effect."
577 (let ((sink (gdb-get-output-sink)))
578 (cond
579 ((eq sink 'user) t)
580 ((eq sink 'emacs)
581 (gdb-set-output-sink 'post-emacs)
582 (let ((handler
583 (car (cdr (gdb-get-current-item)))))
584 (save-excursion
585 (set-buffer (gdb-get-create-buffer
586 'gdb-partial-output-buffer))
587 (funcall handler))))
589 (gdb-set-output-sink 'user)
590 (error "Phase error in gdb-pre-prompt (got %s)" sink)))))
592 (defun gdb-prompt (ignored)
593 "An annotation handler for `prompt'.
594 This sends the next command (if any) to gdb."
595 (let ((sink (gdb-get-output-sink)))
596 (cond
597 ((eq sink 'user) t)
598 ((eq sink 'post-emacs)
599 (gdb-set-output-sink 'user))
601 (gdb-set-output-sink 'user)
602 (error "Phase error in gdb-prompt (got %s)" sink))))
603 (let ((highest (gdb-dequeue-input)))
604 (if highest
605 (gdb-send-item highest)
606 (let ((lowest (gdb-dequeue-idle-input)))
607 (if lowest
608 (gdb-send-item lowest)
609 (progn
610 (gdb-set-prompting t)
611 (gud-display-frame)))))))
613 (defun gdb-subprompt (ignored)
614 "An annotation handler for non-top-level prompts."
615 (let ((highest (gdb-dequeue-input)))
616 (if highest
617 (gdb-send-item highest)
618 (gdb-set-prompting t))))
620 (defun gdb-starting (ignored)
621 "An annotation handler for `starting'. This says that I/O for the
622 subprocess is now the program being debugged, not GDB."
623 (let ((sink (gdb-get-output-sink)))
624 (cond
625 ((eq sink 'user)
626 (progn
627 (setq gud-running t)
628 (gdb-set-output-sink 'inferior)))
629 (t (error "Unexpected `starting' annotation")))))
631 (defun gdb-stopping (ignored)
632 "An annotation handler for `exited' and other annotations which say that I/O
633 for the subprocess is now GDB, not the program being debugged."
634 (let ((sink (gdb-get-output-sink)))
635 (cond
636 ((eq sink 'inferior)
637 (gdb-set-output-sink 'user))
638 (t (error "Unexpected stopping annotation")))))
640 (defun gdb-frame-begin (ignored)
641 (let ((sink (gdb-get-output-sink)))
642 (cond
643 ((eq sink 'inferior)
644 (gdb-set-output-sink 'user))
645 ((eq sink 'user) t)
646 ((eq sink 'emacs) t)
647 (t (error "Unexpected frame-begin annotation (%S)" sink)))))
649 (defun gdb-stopped (ignored)
650 "An annotation handler for `stopped'. It is just like gdb-stopping, except
651 that if we already set the output sink to 'user in gdb-stopping, that is fine."
652 (setq gud-running nil)
653 (let ((sink (gdb-get-output-sink)))
654 (cond
655 ((eq sink 'inferior)
656 (gdb-set-output-sink 'user))
657 ((eq sink 'user) t)
658 (t (error "Unexpected stopped annotation")))))
660 (defun gdb-post-prompt (ignored)
661 "An annotation handler for `post-prompt'. This begins the collection of
662 output from the current command if that happens to be appropriate."
663 (if (not (gdb-get-pending-triggers))
664 (progn
665 (gdb-get-current-frame)
666 (gdb-invalidate-registers ignored)
667 (gdb-invalidate-locals ignored)
668 (gdb-invalidate-display ignored)))
669 (let ((sink (gdb-get-output-sink)))
670 (cond
671 ((eq sink 'user) t)
672 ((eq sink 'pre-emacs)
673 (gdb-set-output-sink 'emacs))
675 (gdb-set-output-sink 'user)
676 (error "Phase error in gdb-post-prompt (got %s)" sink)))))
678 ;; If we get an error whilst evaluating one of the expressions
679 ;; we won't get the display-end annotation. Set the sink back to
680 ;; user to make sure that the error message is seen.
681 ;; NOT USED: see annotation-rules for reason.
682 ;(defun gdb-error-begin (ignored)
683 ; (gdb-set-output-sink 'user))
685 (defun gdb-display-begin (ignored)
686 (gdb-set-output-sink 'emacs)
687 (gdb-clear-partial-output)
688 (setq gdb-display-in-progress t))
690 (defvar gdb-expression-buffer-name)
691 (defvar gdb-display-number)
692 (defvar gdb-dive-display-number)
694 (defun gdb-display-number-end (ignored)
695 (set-buffer (gdb-get-buffer 'gdb-partial-output-buffer))
696 (setq gdb-display-number (buffer-string))
697 (setq gdb-expression-buffer-name
698 (concat "*display " gdb-display-number "*"))
699 (save-excursion
700 (if (progn
701 (set-buffer (window-buffer))
702 gdb-dive)
703 (progn
704 (let ((number gdb-display-number))
705 (switch-to-buffer
706 (set-buffer (get-buffer-create gdb-expression-buffer-name)))
707 (gdb-expressions-mode)
708 (setq gdb-dive-display-number number)))
709 (set-buffer (get-buffer-create gdb-expression-buffer-name))
710 (gdb-expressions-mode)
711 (if (and (display-graphic-p) (not gdb-dive))
712 (catch 'frame-exists
713 (dolist (frame (frame-list))
714 (if (string-equal (frame-parameter frame 'name)
715 gdb-expression-buffer-name)
716 (throw 'frame-exists nil)))
717 (make-frame `((height . ,gdb-window-height)
718 (width . ,gdb-window-width)
719 (tool-bar-lines . nil)
720 (menu-bar-lines . nil)
721 (minibuffer . nil))))
722 (gdb-display-buffer (get-buffer gdb-expression-buffer-name)))))
723 (set-buffer (gdb-get-buffer 'gdb-partial-output-buffer))
724 (setq gdb-dive nil))
726 (defvar gdb-current-frame nil)
727 (defvar gdb-nesting-level)
728 (defvar gdb-expression)
729 (defvar gdb-point)
730 (defvar gdb-annotation-arg)
732 (defun gdb-delete-line ()
733 "Delete the current line."
734 (delete-region (line-beginning-position) (line-beginning-position 2)))
736 (defun gdb-display-end (ignored)
737 (set-buffer (gdb-get-buffer 'gdb-partial-output-buffer))
738 (goto-char (point-min))
739 (search-forward ": ")
740 (looking-at "\\(.*?\\) =")
741 (let ((char "")
742 (gdb-temp-value (match-string 1)))
743 ;;move * to front of expression if necessary
744 (if (looking-at ".*\\*")
745 (progn
746 (setq char "*")
747 (setq gdb-temp-value (substring gdb-temp-value 1 nil))))
748 (save-excursion
749 (set-buffer gdb-expression-buffer-name)
750 (setq gdb-expression gdb-temp-value)
751 (if (not (string-match "::" gdb-expression))
752 (setq gdb-expression (concat char gdb-current-frame
753 "::" gdb-expression))
754 ;;else put * back on if necessary
755 (setq gdb-expression (concat char gdb-expression)))
756 (if (not header-line-format)
757 (setq header-line-format (concat "-- " gdb-expression " %-")))))
759 ;;-if scalar/string
760 (if (not (re-search-forward "##" nil t))
761 (progn
762 (save-excursion
763 (set-buffer gdb-expression-buffer-name)
764 (let ((buffer-read-only nil))
765 (delete-region (point-min) (point-max))
766 (insert-buffer-substring
767 (gdb-get-buffer 'gdb-partial-output-buffer)))))
768 ;; display expression name...
769 (goto-char (point-min))
770 (let ((start (progn (point)))
771 (end (progn (end-of-line) (point))))
772 (save-excursion
773 (set-buffer gdb-expression-buffer-name)
774 (setq buffer-read-only nil)
775 (delete-region (point-min) (point-max))
776 (insert-buffer-substring (gdb-get-buffer
777 'gdb-partial-output-buffer)
778 start end)
779 (insert "\n")))
780 (goto-char (point-min))
781 (re-search-forward "##" nil t)
782 (setq gdb-nesting-level 0)
783 (if (looking-at "array-section-begin")
784 (progn
785 (gdb-delete-line)
786 (setq gdb-point (point))
787 (gdb-array-format)))
788 (if (looking-at "field-begin \\(.\\)")
789 (progn
790 (setq gdb-annotation-arg (match-string 1))
791 (gdb-field-format-begin))))
792 (save-excursion
793 (set-buffer gdb-expression-buffer-name)
794 (if gdb-dive-display-number
795 (progn
796 (let ((buffer-read-only nil))
797 (goto-char (point-max))
798 (insert "\n")
799 (insert-text-button "[back]" 'type 'gdb-display-back)))))
800 (gdb-clear-partial-output)
801 (gdb-set-output-sink 'user)
802 (setq gdb-display-in-progress nil))
804 (define-button-type 'gdb-display-back
805 'help-echo (purecopy "mouse-2, RET: go back to previous display buffer")
806 'action (lambda (button) (gdb-display-go-back)))
808 (defun gdb-display-go-back ()
809 ;; delete display so they don't accumulate and delete buffer
810 (let ((number gdb-display-number))
811 (gdb-enqueue-input
812 (list (concat "server delete display " number "\n") 'ignore))
813 (switch-to-buffer (concat "*display " gdb-dive-display-number "*"))
814 (kill-buffer (get-buffer (concat "*display " number "*")))))
816 ;; prefix annotations with ## and process whole output in one chunk
817 ;; in gdb-partial-output-buffer (to allow recursion).
819 ;; array-section flags are just removed again but after counting. They
820 ;; might also be useful for arrays of structures and structures with arrays.
821 (defun gdb-array-section-begin (args)
822 (if gdb-display-in-progress
823 (progn
824 (save-excursion
825 (set-buffer (gdb-get-buffer 'gdb-partial-output-buffer))
826 (goto-char (point-max))
827 (insert (concat "\n##array-section-begin " args "\n"))))))
829 (defun gdb-array-section-end (ignored)
830 (if gdb-display-in-progress
831 (progn
832 (save-excursion
833 (set-buffer (gdb-get-buffer 'gdb-partial-output-buffer))
834 (goto-char (point-max))
835 (insert "\n##array-section-end\n")))))
837 (defun gdb-field-begin (args)
838 (if gdb-display-in-progress
839 (progn
840 (save-excursion
841 (set-buffer (gdb-get-buffer 'gdb-partial-output-buffer))
842 (goto-char (point-max))
843 (insert (concat "\n##field-begin " args "\n"))))))
845 (defun gdb-field-end (ignored)
846 (if gdb-display-in-progress
847 (progn
848 (save-excursion
849 (set-buffer (gdb-get-buffer 'gdb-partial-output-buffer))
850 (goto-char (point-max))
851 (insert "\n##field-end\n")))))
853 (defun gdb-elt (ignored)
854 (if gdb-display-in-progress
855 (progn
856 (goto-char (point-max))
857 (insert "\n##elt\n"))))
859 (defun gdb-field-format-begin ()
860 ;; get rid of ##field-begin
861 (gdb-delete-line)
862 (gdb-insert-field)
863 (setq gdb-nesting-level (+ gdb-nesting-level 1))
864 (while (re-search-forward "##" nil t)
865 ;; keep making recursive calls...
866 (if (looking-at "field-begin \\(.\\)")
867 (progn
868 (setq gdb-annotation-arg (match-string 1))
869 (gdb-field-format-begin)))
870 ;; until field-end.
871 (if (looking-at "field-end") (gdb-field-format-end))))
873 (defun gdb-field-format-end ()
874 ;; get rid of ##field-end and `,' or `}'
875 (gdb-delete-line)
876 (gdb-delete-line)
877 (setq gdb-nesting-level (- gdb-nesting-level 1)))
879 (defvar gdb-dive-map
880 (let ((map (make-sparse-keymap)))
881 (define-key map [mouse-2] 'gdb-dive)
882 (define-key map [S-mouse-2] 'gdb-dive-new-frame)
883 map))
885 (defun gdb-dive (event)
886 "Dive into structure."
887 (interactive "e")
888 (setq gdb-dive t)
889 (gdb-dive-new-frame event))
891 (defun gdb-dive-new-frame (event)
892 "Dive into structure and display in a new frame."
893 (interactive "e")
894 (save-excursion
895 (mouse-set-point event)
896 (let ((point (point)) (gdb-full-expression gdb-expression)
897 (end (progn (end-of-line) (point)))
898 (gdb-part-expression "") (gdb-last-field nil) (gdb-display-char nil))
899 (beginning-of-line)
900 (if (looking-at "\*") (setq gdb-display-char "*"))
901 (re-search-forward "\\(\\S-+\\) = " end t)
902 (setq gdb-last-field (match-string-no-properties 1))
903 (goto-char (match-beginning 1))
904 (let ((last-column (current-column)))
905 (while (re-search-backward "\\s-\\(\\S-+\\) = {" nil t)
906 (goto-char (match-beginning 1))
907 (if (and (< (current-column) last-column)
908 (> (count-lines 1 (point)) 1))
909 (progn
910 (setq gdb-part-expression
911 (concat "." (match-string-no-properties 1)
912 gdb-part-expression))
913 (setq last-column (current-column))))))
914 ;; * not needed for components of a pointer to a structure in gdb
915 (if (string-equal "*" (substring gdb-full-expression 0 1))
916 (setq gdb-full-expression (substring gdb-full-expression 1 nil)))
917 (setq gdb-full-expression
918 (concat gdb-full-expression gdb-part-expression "." gdb-last-field))
919 (gdb-enqueue-input
920 (list (concat "server display" gdb-display-char
921 " " gdb-full-expression "\n")
922 'ignore)))))
924 (defun gdb-insert-field ()
925 (let ((start (progn (point)))
926 (end (progn (next-line) (point)))
927 (num 0))
928 (save-excursion
929 (set-buffer gdb-expression-buffer-name)
930 (let ((buffer-read-only nil))
931 (if (string-equal gdb-annotation-arg "\*") (insert "\*"))
932 (while (<= num gdb-nesting-level)
933 (insert "\t")
934 (setq num (+ num 1)))
935 (insert-buffer-substring (gdb-get-buffer
936 'gdb-partial-output-buffer)
937 start end)
938 (put-text-property (- (point) (- end start)) (- (point) 1)
939 'mouse-face 'highlight)
940 (put-text-property (- (point) (- end start)) (- (point) 1)
941 'local-map gdb-dive-map)))
942 (delete-region start end)))
944 (defvar gdb-values)
946 (defun gdb-array-format ()
947 (while (re-search-forward "##" nil t)
948 ;; keep making recursive calls...
949 (if (looking-at "array-section-begin")
950 (progn
951 ;;get rid of ##array-section-begin
952 (gdb-delete-line)
953 (setq gdb-nesting-level (+ gdb-nesting-level 1))
954 (gdb-array-format)))
955 ;;until *matching* array-section-end is found
956 (if (looking-at "array-section-end")
957 (if (eq gdb-nesting-level 0)
958 (progn
959 (let ((values (buffer-substring gdb-point (- (point) 2))))
960 (save-excursion
961 (set-buffer gdb-expression-buffer-name)
962 (setq gdb-values
963 (concat "{" (replace-regexp-in-string "\n" "" values)
964 "}"))
965 (gdb-array-format1))))
966 ;;else get rid of ##array-section-end etc
967 (gdb-delete-line)
968 (setq gdb-nesting-level (- gdb-nesting-level 1))
969 (gdb-array-format)))))
971 (defvar gdb-array-start)
972 (defvar gdb-array-stop)
974 (defvar gdb-array-slice-map
975 (let ((map (make-sparse-keymap)))
976 (define-key map [mouse-2] 'gdb-array-slice)
977 map))
979 (defun gdb-array-slice (event)
980 "Select an array slice to display."
981 (interactive "e")
982 (mouse-set-point event)
983 (save-excursion
984 (let ((n -1) (stop 0) (start 0) (point (point)))
985 (beginning-of-line)
986 (while (search-forward "[" point t)
987 (setq n (+ n 1)))
988 (setq start (string-to-int (read-string "Start index: ")))
989 (aset gdb-array-start n start)
990 (setq stop (string-to-int (read-string "Stop index: ")))
991 (aset gdb-array-stop n stop)))
992 (gdb-array-format1))
994 (defvar gdb-display-string)
995 (defvar gdb-array-size)
997 (defun gdb-array-format1 ()
998 (setq gdb-display-string "")
999 (let ((buffer-read-only nil))
1000 (delete-region (point-min) (point-max))
1001 (let ((gdb-value-list (split-string gdb-values ", ")))
1002 (string-match "\\({+\\)" (car gdb-value-list))
1003 (let* ((depth (- (match-end 1) (match-beginning 1)))
1004 (indices (make-vector depth '0))
1005 (index 0) (num 0) (array-start "")
1006 (array-stop "") (array-slice "") (array-range nil)
1007 (flag t) (indices-string ""))
1008 (dolist (gdb-value gdb-value-list)
1009 (string-match "{*\\([^}]*\\)\\(}*\\)" gdb-value)
1010 (setq num 0)
1011 (while (< num depth)
1012 (setq indices-string
1013 (concat indices-string
1014 "[" (int-to-string (aref indices num)) "]"))
1015 (if (not (= (aref gdb-array-start num) -1))
1016 (if (or (< (aref indices num) (aref gdb-array-start num))
1017 (> (aref indices num) (aref gdb-array-stop num)))
1018 (setq flag nil))
1019 (aset gdb-array-size num (aref indices num)))
1020 (setq num (+ num 1)))
1021 (if flag
1022 (let ((gdb-display-value (match-string 1 gdb-value)))
1023 (setq gdb-display-string (concat gdb-display-string " "
1024 gdb-display-value))
1025 (insert
1026 (concat indices-string "\t" gdb-display-value "\n"))))
1027 (setq indices-string "")
1028 (setq flag t)
1029 ;; 0<= index < depth, start at right : (- depth 1)
1030 (setq index (- (- depth 1)
1031 (- (match-end 2) (match-beginning 2))))
1032 ;;don't set for very last brackets
1033 (when (>= index 0)
1034 (aset indices index (+ 1 (aref indices index)))
1035 (setq num (+ 1 index))
1036 (while (< num depth)
1037 (aset indices num 0)
1038 (setq num (+ num 1)))))
1039 (setq num 0)
1040 (while (< num depth)
1041 (if (= (aref gdb-array-start num) -1)
1042 (progn
1043 (aset gdb-array-start num 0)
1044 (aset gdb-array-stop num (aref indices num))))
1045 (setq array-start (int-to-string (aref gdb-array-start num)))
1046 (setq array-stop (int-to-string (aref gdb-array-stop num)))
1047 (setq array-range (concat "[" array-start
1048 ":" array-stop "]"))
1049 (put-text-property 1 (+ (length array-start)
1050 (length array-stop) 2)
1051 'mouse-face 'highlight array-range)
1052 (put-text-property 1 (+ (length array-start)
1053 (length array-stop) 2)
1054 'local-map gdb-array-slice-map array-range)
1055 (goto-char (point-min))
1056 (setq array-slice (concat array-slice array-range))
1057 (setq num (+ num 1)))
1058 (goto-char (point-min))
1059 (insert "Array Size : ")
1060 (setq num 0)
1061 (while (< num depth)
1062 (insert
1063 (concat "["
1064 (int-to-string (+ (aref gdb-array-size num) 1)) "]"))
1065 (setq num (+ num 1)))
1066 (insert
1067 (concat "\n Slice : " array-slice "\n\nIndex\tValues\n\n"))))))
1069 (defun gud-gdba-marker-filter (string)
1070 "A gud marker filter for gdb. Handle a burst of output from GDB."
1071 (let (
1072 ;; Recall the left over burst from last time
1073 (burst (concat (gdb-get-burst) string))
1074 ;; Start accumulating output for the GUD buffer
1075 (output ""))
1077 ;; Process all the complete markers in this chunk.
1078 (while (string-match "\n\032\032\\(.*\\)\n" burst)
1079 (let ((annotation (match-string 1 burst)))
1081 ;; Stuff prior to the match is just ordinary output.
1082 ;; It is either concatenated to OUTPUT or directed
1083 ;; elsewhere.
1084 (setq output
1085 (gdb-concat-output
1086 output
1087 (substring burst 0 (match-beginning 0))))
1089 ;; Take that stuff off the burst.
1090 (setq burst (substring burst (match-end 0)))
1092 ;; Parse the tag from the annotation, and maybe its arguments.
1093 (string-match "\\(\\S-*\\) ?\\(.*\\)" annotation)
1094 (let* ((annotation-type (match-string 1 annotation))
1095 (annotation-arguments (match-string 2 annotation))
1096 (annotation-rule (assoc annotation-type
1097 gdb-annotation-rules)))
1098 ;; Call the handler for this annotation.
1099 (if annotation-rule
1100 (funcall (car (cdr annotation-rule))
1101 annotation-arguments)
1102 ;; Else the annotation is not recognized. Ignore it silently,
1103 ;; so that GDB can add new annotations without causing
1104 ;; us to blow up.
1105 ))))
1107 ;; Does the remaining text end in a partial line?
1108 ;; If it does, then keep part of the burst until we get more.
1109 (if (string-match "\n\\'\\|\n\032\\'\\|\n\032\032.*\\'"
1110 burst)
1111 (progn
1112 ;; Everything before the potential marker start can be output.
1113 (setq output
1114 (gdb-concat-output output
1115 (substring burst 0 (match-beginning 0))))
1117 ;; Everything after, we save, to combine with later input.
1118 (setq burst (substring burst (match-beginning 0))))
1120 ;; In case we know the burst contains no partial annotations:
1121 (progn
1122 (setq output (gdb-concat-output output burst))
1123 (setq burst "")))
1125 ;; Save the remaining burst for the next call to this function.
1126 (gdb-set-burst burst)
1127 output))
1129 (defun gdb-concat-output (so-far new)
1130 (let ((sink (gdb-get-output-sink )))
1131 (cond
1132 ((eq sink 'user) (concat so-far new))
1133 ((or (eq sink 'pre-emacs) (eq sink 'post-emacs)) so-far)
1134 ((eq sink 'emacs)
1135 (gdb-append-to-partial-output new)
1136 so-far)
1137 ((eq sink 'inferior)
1138 (gdb-append-to-inferior-io new)
1139 so-far)
1140 (t (error "Bogon output sink %S" sink)))))
1142 (defun gdb-append-to-partial-output (string)
1143 (save-excursion
1144 (set-buffer
1145 (gdb-get-create-buffer 'gdb-partial-output-buffer))
1146 (goto-char (point-max))
1147 (insert string)))
1149 (defun gdb-clear-partial-output ()
1150 (save-excursion
1151 (set-buffer
1152 (gdb-get-create-buffer 'gdb-partial-output-buffer))
1153 (delete-region (point-min) (point-max))))
1155 (defun gdb-append-to-inferior-io (string)
1156 (save-excursion
1157 (set-buffer
1158 (gdb-get-create-buffer 'gdb-inferior-io))
1159 (goto-char (point-max))
1160 (insert-before-markers string))
1161 (if (not (string-equal string ""))
1162 (gdb-display-buffer
1163 (gdb-get-create-buffer 'gdb-inferior-io))))
1165 (defun gdb-clear-inferior-io ()
1166 (save-excursion
1167 (set-buffer
1168 (gdb-get-create-buffer 'gdb-inferior-io))
1169 (delete-region (point-min) (point-max))))
1172 ;; One trick is to have a command who's output is always available in a buffer
1173 ;; of it's own, and is always up to date. We build several buffers of this
1174 ;; type.
1176 ;; There are two aspects to this: gdb has to tell us when the output for that
1177 ;; command might have changed, and we have to be able to run the command
1178 ;; behind the user's back.
1180 ;; The idle input queue and the output phasing associated with the variable
1181 ;; gdb-output-sink help us to run commands behind the user's back.
1183 ;; Below is the code for specificly managing buffers of output from one
1184 ;; command.
1187 ;; The trigger function is suitable for use in the assoc GDB-ANNOTATION-RULES
1188 ;; It adds an idle input for the command we are tracking. It should be the
1189 ;; annotation rule binding of whatever gdb sends to tell us this command
1190 ;; might have changed it's output.
1192 ;; NAME is the function name. DEMAND-PREDICATE tests if output is really needed.
1193 ;; GDB-COMMAND is a string of such. OUTPUT-HANDLER is the function bound to the
1194 ;; input in the input queue (see comment about ``gdb communications'' above).
1196 (defmacro def-gdb-auto-update-trigger (name demand-predicate gdb-command
1197 output-handler)
1198 `(defun ,name (&optional ignored)
1199 (if (and (,demand-predicate)
1200 (not (member ',name
1201 (gdb-get-pending-triggers))))
1202 (progn
1203 (gdb-enqueue-idle-input
1204 (list ,gdb-command ',output-handler))
1205 (gdb-set-pending-triggers
1206 (cons ',name
1207 (gdb-get-pending-triggers)))))))
1209 (defmacro def-gdb-auto-update-handler (name trigger buf-key custom-defun)
1210 `(defun ,name ()
1211 (gdb-set-pending-triggers
1212 (delq ',trigger
1213 (gdb-get-pending-triggers)))
1214 (let ((buf (gdb-get-buffer ',buf-key)))
1215 (and buf
1216 (save-excursion
1217 (set-buffer buf)
1218 (let ((p (point))
1219 (buffer-read-only nil))
1220 (delete-region (point-min) (point-max))
1221 (insert-buffer-substring (gdb-get-create-buffer
1222 'gdb-partial-output-buffer))
1223 (goto-char p)))))
1224 ;; put customisation here
1225 (,custom-defun)))
1227 (defmacro def-gdb-auto-updated-buffer (buffer-key trigger-name gdb-command
1228 output-handler-name custom-defun)
1229 `(progn
1230 (def-gdb-auto-update-trigger ,trigger-name
1231 ;; The demand predicate:
1232 (lambda () (gdb-get-buffer ',buffer-key))
1233 ,gdb-command
1234 ,output-handler-name)
1235 (def-gdb-auto-update-handler ,output-handler-name
1236 ,trigger-name ,buffer-key ,custom-defun)))
1240 ;; Breakpoint buffer : This displays the output of `info breakpoints'.
1242 (gdb-set-buffer-rules 'gdb-breakpoints-buffer
1243 'gdb-breakpoints-buffer-name
1244 'gdb-breakpoints-mode)
1246 (def-gdb-auto-updated-buffer gdb-breakpoints-buffer
1247 ;; This defines the auto update rule for buffers of type
1248 ;; `gdb-breakpoints-buffer'.
1250 ;; It defines a function to serve as the annotation handler that
1251 ;; handles the `foo-invalidated' message. That function is called:
1252 gdb-invalidate-breakpoints
1254 ;; To update the buffer, this command is sent to gdb.
1255 "server info breakpoints\n"
1257 ;; This also defines a function to be the handler for the output
1258 ;; from the command above. That function will copy the output into
1259 ;; the appropriately typed buffer. That function will be called:
1260 gdb-info-breakpoints-handler
1261 ;; buffer specific functions
1262 gdb-info-breakpoints-custom)
1264 (defvar gdb-cdir nil "Compilation directory.")
1266 (defconst breakpoint-xpm-data "/* XPM */
1267 static char *magick[] = {
1268 /* columns rows colors chars-per-pixel */
1269 \"12 12 2 1\",
1270 \" c red\",
1271 \"+ c None\",
1272 /* pixels */
1273 \"++++++++++++\",
1274 \"+++ +++\",
1275 \"++ ++\",
1276 \"+ +\",
1277 \"+ +\",
1278 \"+ +\",
1279 \"+ +\",
1280 \"+ +\",
1281 \"+ +\",
1282 \"++ ++\",
1283 \"+++ +++\",
1284 \"++++++++++++\"
1286 "XPM data used for breakpoint icon.")
1288 (defconst breakpoint-enabled-pbm-data
1290 12 12\",
1291 0 0 0 0 0 0 0 0 0 0 0 0
1292 0 0 0 1 1 1 1 1 1 0 0 0
1293 0 0 1 1 1 1 1 1 1 1 0 0
1294 0 1 1 1 1 1 1 1 1 1 1 0
1295 0 1 1 1 1 1 1 1 1 1 1 0
1296 0 1 1 1 1 1 1 1 1 1 1 0
1297 0 1 1 1 1 1 1 1 1 1 1 0
1298 0 1 1 1 1 1 1 1 1 1 1 0
1299 0 1 1 1 1 1 1 1 1 1 1 0
1300 0 0 1 1 1 1 1 1 1 1 0 0
1301 0 0 0 1 1 1 1 1 1 0 0 0
1302 0 0 0 0 0 0 0 0 0 0 0 0"
1303 "PBM data used for enabled breakpoint icon.")
1305 (defconst breakpoint-disabled-pbm-data
1307 12 12\",
1308 0 0 0 0 0 0 0 0 0 0 0 0
1309 0 0 0 1 0 1 0 1 0 0 0 0
1310 0 0 1 0 1 0 1 0 1 0 0 0
1311 0 1 0 1 0 1 0 1 0 1 0 0
1312 0 0 1 0 1 0 1 0 1 0 1 0
1313 0 1 0 1 0 1 0 1 0 1 0 0
1314 0 0 1 0 1 0 1 0 1 0 1 0
1315 0 1 0 1 0 1 0 1 0 1 0 0
1316 0 0 1 0 1 0 1 0 1 0 1 0
1317 0 0 0 1 0 1 0 1 0 1 0 0
1318 0 0 0 0 1 0 1 0 1 0 0 0
1319 0 0 0 0 0 0 0 0 0 0 0 0"
1320 "PBM data used for disabled breakpoint icon.")
1322 (defvar breakpoint-enabled-icon
1323 (find-image `((:type xpm :data ,breakpoint-xpm-data)
1324 (:type pbm :data ,breakpoint-enabled-pbm-data)))
1325 "Icon for enabled breakpoint in display margin")
1327 (defvar breakpoint-disabled-icon
1328 (find-image `((:type xpm :data ,breakpoint-xpm-data :conversion disabled)
1329 (:type pbm :data ,breakpoint-disabled-pbm-data)))
1330 "Icon for disabled breakpoint in display margin")
1332 ;;-put breakpoint icons in relevant margins (even those set in the GUD buffer)
1333 (defun gdb-info-breakpoints-custom ()
1334 (let ((flag)(address))
1336 ;; remove all breakpoint-icons in source buffers but not assembler buffer
1337 (dolist (buffer (buffer-list))
1338 (save-excursion
1339 (set-buffer buffer)
1340 (if (and (eq gud-minor-mode 'gdba)
1341 (not (string-match "^\*" (buffer-name))))
1342 (if (display-graphic-p)
1343 (remove-images (point-min) (point-max))
1344 (remove-strings (point-min) (point-max))))))
1345 (save-excursion
1346 (set-buffer (gdb-get-buffer 'gdb-breakpoints-buffer))
1347 (save-excursion
1348 (goto-char (point-min))
1349 (while (< (point) (- (point-max) 1))
1350 (forward-line 1)
1351 (if (looking-at "[^\t].*breakpoint")
1352 (progn
1353 (looking-at "\\([0-9]*\\)\\s-*\\S-*\\s-*\\S-*\\s-*\\(.\\)")
1354 (setq flag (char-after (match-beginning 2)))
1355 (beginning-of-line)
1356 (if (re-search-forward "in\\s-+\\S-+\\s-+at\\s-+" nil t)
1357 (progn
1358 (looking-at "\\(\\S-*\\):\\([0-9]+\\)")
1359 (let ((line (match-string 2)) (buffer-read-only nil)
1360 (file (match-string 1)))
1361 (put-text-property (progn (beginning-of-line) (point))
1362 (progn (end-of-line) (point))
1363 'mouse-face 'highlight)
1364 (save-excursion
1365 (set-buffer
1366 (find-file-noselect
1367 (if (file-exists-p file) file
1368 (expand-file-name file gdb-cdir))))
1369 (save-current-buffer
1370 (set (make-local-variable 'gud-minor-mode) 'gdba)
1371 (set (make-local-variable 'tool-bar-map)
1372 gud-tool-bar-map)
1373 (setq left-margin-width 2)
1374 (if (get-buffer-window (current-buffer))
1375 (set-window-margins (get-buffer-window
1376 (current-buffer))
1377 left-margin-width
1378 right-margin-width)))
1379 ;; only want one breakpoint icon at each location
1380 (save-excursion
1381 (goto-line (string-to-number line))
1382 (let ((start (progn (beginning-of-line)
1383 (- (point) 1)))
1384 (end (progn (end-of-line) (+ (point) 1))))
1385 (if (display-graphic-p)
1386 (progn
1387 (remove-images start end)
1388 (if (eq ?y flag)
1389 (put-image breakpoint-enabled-icon
1390 (point)
1391 "breakpoint icon enabled"
1392 'left-margin)
1393 (put-image breakpoint-disabled-icon (point)
1394 "breakpoint icon disabled"
1395 'left-margin)))
1396 (remove-strings start end)
1397 (if (eq ?y flag)
1398 (put-string "B" (point) "enabled"
1399 'left-margin)
1400 (put-string "b" (point) "disabled"
1401 'left-margin)))))))))))
1402 (end-of-line))))))
1404 (defun gdb-breakpoints-buffer-name ()
1405 (with-current-buffer gud-comint-buffer
1406 (concat "*breakpoints of " (gdb-get-target-string) "*")))
1408 (defun gdb-display-breakpoints-buffer ()
1409 (interactive)
1410 (gdb-display-buffer
1411 (gdb-get-create-buffer 'gdb-breakpoints-buffer)))
1413 (defun gdb-frame-breakpoints-buffer ()
1414 (interactive)
1415 (switch-to-buffer-other-frame
1416 (gdb-get-create-buffer 'gdb-breakpoints-buffer)))
1418 (defvar gdb-breakpoints-mode-map
1419 (let ((map (make-sparse-keymap))
1420 (menu (make-sparse-keymap "Breakpoints")))
1421 (define-key menu [toggle] '("Toggle" . gdb-toggle-breakpoint))
1422 (define-key menu [delete] '("Delete" . gdb-delete-breakpoint))
1423 (define-key menu [goto] '("Goto" . gdb-goto-breakpoint))
1425 (suppress-keymap map)
1426 (define-key map [menu-bar breakpoints] (cons "Breakpoints" menu))
1427 (define-key map " " 'gdb-toggle-breakpoint)
1428 (define-key map "d" 'gdb-delete-breakpoint)
1429 (define-key map "\r" 'gdb-goto-breakpoint)
1430 (define-key map [mouse-2] 'gdb-mouse-goto-breakpoint)
1431 map))
1433 (defun gdb-breakpoints-mode ()
1434 "Major mode for gdb breakpoints.
1436 \\{gdb-breakpoints-mode-map}"
1437 (setq major-mode 'gdb-breakpoints-mode)
1438 (setq mode-name "Breakpoints")
1439 (use-local-map gdb-breakpoints-mode-map)
1440 (setq buffer-read-only t)
1441 (gdb-invalidate-breakpoints))
1443 (defun gdb-toggle-breakpoint ()
1444 "Enable/disable the breakpoint at current line."
1445 (interactive)
1446 (save-excursion
1447 (beginning-of-line 1)
1448 (if (not (looking-at "\\([0-9]+\\).*point\\s-*\\S-*\\s-*\\(.\\)"))
1449 (error "Not recognized as break/watchpoint line")
1450 (gdb-enqueue-input
1451 (list
1452 (concat
1453 (if (eq ?y (char-after (match-beginning 2)))
1454 "server disable "
1455 "server enable ")
1456 (match-string 1) "\n")
1457 'ignore)))))
1459 (defun gdb-delete-breakpoint ()
1460 "Delete the breakpoint at current line."
1461 (interactive)
1462 (beginning-of-line 1)
1463 (if (not (looking-at "\\([0-9]+\\).*point\\s-*\\S-*\\s-*\\(.\\)"))
1464 (error "Not recognized as break/watchpoint line")
1465 (gdb-enqueue-input
1466 (list (concat "server delete " (match-string 1) "\n") 'ignore))))
1468 (defvar gdb-source-window nil)
1470 (defun gdb-goto-breakpoint ()
1471 "Display the file in the source buffer at the breakpoint specified on the
1472 current line."
1473 (interactive)
1474 (save-excursion
1475 (beginning-of-line 1)
1476 (re-search-forward "in\\s-+\\S-+\\s-+at\\s-+" nil t)
1477 (looking-at "\\(\\S-*\\):\\([0-9]+\\)"))
1478 (if (match-string 2)
1479 (let ((line (match-string 2))
1480 (file (match-string 1)))
1481 (save-selected-window
1482 (select-window gdb-source-window)
1483 (switch-to-buffer (find-file-noselect
1484 (if (file-exists-p file)
1485 file
1486 (expand-file-name file gdb-cdir))))
1487 (goto-line (string-to-number line))))))
1489 (defun gdb-mouse-goto-breakpoint (event)
1490 "Display the file in the source buffer at the selected breakpoint."
1491 (interactive "e")
1492 (mouse-set-point event)
1493 (gdb-goto-breakpoint))
1496 ;; Frames buffer. This displays a perpetually correct bactracktrace
1497 ;; (from the command `where').
1499 ;; Alas, if your stack is deep, it is costly.
1501 (gdb-set-buffer-rules 'gdb-stack-buffer
1502 'gdb-stack-buffer-name
1503 'gdb-frames-mode)
1505 (def-gdb-auto-updated-buffer gdb-stack-buffer
1506 gdb-invalidate-frames
1507 "server where\n"
1508 gdb-info-frames-handler
1509 gdb-info-frames-custom)
1511 (defun gdb-info-frames-custom ()
1512 (save-excursion
1513 (set-buffer (gdb-get-buffer 'gdb-stack-buffer))
1514 (let ((buffer-read-only nil))
1515 (goto-char (point-min))
1516 (while (< (point) (point-max))
1517 (put-text-property (progn (beginning-of-line) (point))
1518 (progn (end-of-line) (point))
1519 'mouse-face 'highlight)
1520 (forward-line 1)))))
1522 (defun gdb-stack-buffer-name ()
1523 (with-current-buffer gud-comint-buffer
1524 (concat "*stack frames of " (gdb-get-target-string) "*")))
1526 (defun gdb-display-stack-buffer ()
1527 (interactive)
1528 (gdb-display-buffer
1529 (gdb-get-create-buffer 'gdb-stack-buffer)))
1531 (defun gdb-frame-stack-buffer ()
1532 (interactive)
1533 (switch-to-buffer-other-frame
1534 (gdb-get-create-buffer 'gdb-stack-buffer)))
1536 (defvar gdb-frames-mode-map
1537 (let ((map (make-sparse-keymap)))
1538 (suppress-keymap map)
1539 (define-key map "\r" 'gdb-frames-select)
1540 (define-key map [mouse-2] 'gdb-frames-mouse-select)
1541 map))
1543 (defun gdb-frames-mode ()
1544 "Major mode for gdb frames.
1546 \\{gdb-frames-mode-map}"
1547 (setq major-mode 'gdb-frames-mode)
1548 (setq mode-name "Frames")
1549 (setq buffer-read-only t)
1550 (use-local-map gdb-frames-mode-map)
1551 (gdb-invalidate-frames))
1553 (defun gdb-get-frame-number ()
1554 (save-excursion
1555 (let* ((pos (re-search-backward "^#\\([0-9]*\\)" nil t))
1556 (n (or (and pos (match-string-no-properties 1)) "0")))
1557 n)))
1559 (defun gdb-frames-select ()
1560 "Make the frame on the current line become the current frame and display the
1561 source in the source buffer."
1562 (interactive)
1563 (gdb-enqueue-input
1564 (list (concat "server frame " (gdb-get-frame-number) "\n") 'ignore))
1565 (gud-display-frame))
1567 (defun gdb-frames-mouse-select (event)
1568 "Make the selected frame become the current frame and display the source in
1569 the source buffer."
1570 (interactive "e")
1571 (mouse-set-point event)
1572 (gdb-frames-select))
1575 ;; Registers buffer.
1577 (gdb-set-buffer-rules 'gdb-registers-buffer
1578 'gdb-registers-buffer-name
1579 'gdb-registers-mode)
1581 (def-gdb-auto-updated-buffer gdb-registers-buffer
1582 gdb-invalidate-registers
1583 "server info registers\n"
1584 gdb-info-registers-handler
1585 gdb-info-registers-custom)
1587 (defun gdb-info-registers-custom ())
1589 (defvar gdb-registers-mode-map
1590 (let ((map (make-sparse-keymap)))
1591 (suppress-keymap map)
1592 map))
1594 (defun gdb-registers-mode ()
1595 "Major mode for gdb registers.
1597 \\{gdb-registers-mode-map}"
1598 (setq major-mode 'gdb-registers-mode)
1599 (setq mode-name "Registers")
1600 (setq buffer-read-only t)
1601 (use-local-map gdb-registers-mode-map)
1602 (gdb-invalidate-registers))
1604 (defun gdb-registers-buffer-name ()
1605 (with-current-buffer gud-comint-buffer
1606 (concat "*registers of " (gdb-get-target-string) "*")))
1608 (defun gdb-display-registers-buffer ()
1609 (interactive)
1610 (gdb-display-buffer
1611 (gdb-get-create-buffer 'gdb-registers-buffer)))
1613 (defun gdb-frame-registers-buffer ()
1614 (interactive)
1615 (switch-to-buffer-other-frame
1616 (gdb-get-create-buffer 'gdb-registers-buffer)))
1619 ;; Locals buffer.
1621 (gdb-set-buffer-rules 'gdb-locals-buffer
1622 'gdb-locals-buffer-name
1623 'gdb-locals-mode)
1625 (def-gdb-auto-updated-buffer gdb-locals-buffer
1626 gdb-invalidate-locals
1627 "server info locals\n"
1628 gdb-info-locals-handler
1629 gdb-info-locals-custom)
1631 ;; Abbreviate for arrays and structures.
1632 ;; These can be expanded using gud-display.
1633 (defun gdb-info-locals-handler nil
1634 (gdb-set-pending-triggers (delq 'gdb-invalidate-locals
1635 (gdb-get-pending-triggers)))
1636 (let ((buf (gdb-get-buffer 'gdb-partial-output-buffer)))
1637 (save-excursion
1638 (set-buffer buf)
1639 (goto-char (point-min))
1640 (while (re-search-forward "^ .*\n" nil t)
1641 (replace-match "" nil nil))
1642 (goto-char (point-min))
1643 (while (re-search-forward "{[-0-9, {}\]*\n" nil t)
1644 (replace-match "(array);\n" nil nil))
1645 (goto-char (point-min))
1646 (while (re-search-forward "{.*=.*\n" nil t)
1647 (replace-match "(structure);\n" nil nil))))
1648 (let ((buf (gdb-get-buffer 'gdb-locals-buffer)))
1649 (and buf (save-excursion
1650 (set-buffer buf)
1651 (let ((p (point))
1652 (buffer-read-only nil))
1653 (delete-region (point-min) (point-max))
1654 (insert-buffer-substring (gdb-get-create-buffer
1655 'gdb-partial-output-buffer))
1656 (goto-char p)))))
1657 (run-hooks 'gdb-info-locals-hook))
1659 (defun gdb-info-locals-custom ()
1660 nil)
1662 (defvar gdb-locals-mode-map
1663 (let ((map (make-sparse-keymap)))
1664 (suppress-keymap map)
1665 map))
1667 (defun gdb-locals-mode ()
1668 "Major mode for gdb locals.
1670 \\{gdb-locals-mode-map}"
1671 (setq major-mode 'gdb-locals-mode)
1672 (setq mode-name "Locals")
1673 (setq buffer-read-only t)
1674 (use-local-map gdb-locals-mode-map)
1675 (gdb-invalidate-locals))
1677 (defun gdb-locals-buffer-name ()
1678 (with-current-buffer gud-comint-buffer
1679 (concat "*locals of " (gdb-get-target-string) "*")))
1681 (defun gdb-display-locals-buffer ()
1682 (interactive)
1683 (gdb-display-buffer
1684 (gdb-get-create-buffer 'gdb-locals-buffer)))
1686 (defun gdb-frame-locals-buffer ()
1687 (interactive)
1688 (switch-to-buffer-other-frame
1689 (gdb-get-create-buffer 'gdb-locals-buffer)))
1692 ;; Display expression buffer.
1694 (gdb-set-buffer-rules 'gdb-display-buffer
1695 'gdb-display-buffer-name
1696 'gdb-display-mode)
1698 (def-gdb-auto-updated-buffer gdb-display-buffer
1699 ;; `gdb-display-buffer'.
1700 gdb-invalidate-display
1701 "server info display\n"
1702 gdb-info-display-handler
1703 gdb-info-display-custom)
1705 (defun gdb-info-display-custom ()
1706 (let ((display-list nil))
1707 (save-excursion
1708 (set-buffer (gdb-get-buffer 'gdb-display-buffer))
1709 (goto-char (point-min))
1710 (while (< (point) (- (point-max) 1))
1711 (forward-line 1)
1712 (if (looking-at "\\([0-9]+\\): \\([ny]\\)")
1713 (setq display-list
1714 (cons (string-to-int (match-string 1)) display-list)))
1715 (end-of-line)))
1716 (if (not (display-graphic-p))
1717 (progn
1718 (dolist (buffer (buffer-list))
1719 (if (string-match "\\*display \\([0-9]+\\)\\*" (buffer-name buffer))
1720 (progn
1721 (let ((number
1722 (match-string 1 (buffer-name buffer))))
1723 (if (not (memq (string-to-int number) display-list))
1724 (kill-buffer
1725 (get-buffer (concat "*display " number "*")))))))))
1726 (gdb-delete-frames display-list))))
1728 (defun gdb-delete-frames (display-list)
1729 (dolist (frame (frame-list))
1730 (let ((frame-name (frame-parameter frame 'name)))
1731 (if (string-match "\\*display \\([0-9]+\\)\\*" frame-name)
1732 (progn
1733 (let ((number (match-string 1 frame-name)))
1734 (if (not (memq (string-to-int number) display-list))
1735 (progn (kill-buffer
1736 (get-buffer (concat "*display " number "*")))
1737 (delete-frame frame)))))))))
1739 (defvar gdb-display-mode-map
1740 (let ((map (make-sparse-keymap))
1741 (menu (make-sparse-keymap "Display")))
1742 (define-key menu [toggle] '("Toggle" . gdb-toggle-display))
1743 (define-key menu [delete] '("Delete" . gdb-delete-display))
1745 (suppress-keymap map)
1746 (define-key map [menu-bar display] (cons "Display" menu))
1747 (define-key map " " 'gdb-toggle-display)
1748 (define-key map "d" 'gdb-delete-display)
1749 map))
1751 (defun gdb-display-mode ()
1752 "Major mode for gdb display.
1754 \\{gdb-display-mode-map}"
1755 (setq major-mode 'gdb-display-mode)
1756 (setq mode-name "Display")
1757 (setq buffer-read-only t)
1758 (use-local-map gdb-display-mode-map)
1759 (gdb-invalidate-display))
1761 (defun gdb-display-buffer-name ()
1762 (with-current-buffer gud-comint-buffer
1763 (concat "*Displayed expressions of " (gdb-get-target-string) "*")))
1765 (defun gdb-display-display-buffer ()
1766 (interactive)
1767 (gdb-display-buffer
1768 (gdb-get-create-buffer 'gdb-display-buffer)))
1770 (defun gdb-frame-display-buffer ()
1771 (interactive)
1772 (switch-to-buffer-other-frame
1773 (gdb-get-create-buffer 'gdb-display-buffer)))
1775 (defun gdb-toggle-display ()
1776 "Enable/disable the displayed expression at current line."
1777 (interactive)
1778 (save-excursion
1779 (beginning-of-line 1)
1780 (if (not (looking-at "\\([0-9]+\\): \\([ny]\\)"))
1781 (error "No expression on this line")
1782 (gdb-enqueue-input
1783 (list
1784 (concat
1785 (if (eq ?y (char-after (match-beginning 2)))
1786 "server disable display "
1787 "server enable display ")
1788 (match-string 1) "\n")
1789 'ignore)))))
1791 (defun gdb-delete-display ()
1792 "Delete the displayed expression at current line."
1793 (interactive)
1794 (save-excursion
1795 (set-buffer
1796 (gdb-get-buffer 'gdb-display-buffer))
1797 (beginning-of-line 1)
1798 (if (not (looking-at "\\([0-9]+\\): \\([ny]\\)"))
1799 (error "No expression on this line")
1800 (let ((number (match-string 1)))
1801 (gdb-enqueue-input
1802 (list (concat "server delete display " number "\n") 'ignore))))))
1804 (defvar gdb-expressions-mode-map
1805 (let ((map (make-sparse-keymap)))
1806 (suppress-keymap map)
1807 (define-key map "v" 'gdb-array-visualise)
1808 (define-key map "q" 'gdb-delete-expression)
1809 (define-key map [mouse-3] 'gdb-expressions-popup-menu)
1810 map))
1812 (defvar gdb-expressions-mode-menu
1813 '("GDB Expressions Commands"
1814 "----"
1815 ["Visualise" gdb-array-visualise t]
1816 ["Delete" gdb-delete-expression t])
1817 "Menu for `gdb-expressions-mode'.")
1819 (defun gdb-expressions-popup-menu (event)
1820 "Explicit Popup menu as this buffer doesn't have a menubar."
1821 (interactive "@e")
1822 (mouse-set-point event)
1823 (popup-menu gdb-expressions-mode-menu))
1825 (defun gdb-expressions-mode ()
1826 "Major mode for display expressions.
1828 \\{gdb-expressions-mode-map}"
1829 (setq major-mode 'gdb-expressions-mode)
1830 (setq mode-name "Expressions")
1831 (use-local-map gdb-expressions-mode-map)
1832 (make-local-variable 'gdb-display-number)
1833 (make-local-variable 'gdb-values)
1834 (make-local-variable 'gdb-expression)
1835 (set (make-local-variable 'gdb-display-string) nil)
1836 (set (make-local-variable 'gdb-dive-display-number) nil)
1837 (set (make-local-variable 'gud-minor-mode) 'gdba)
1838 (set (make-local-variable 'gdb-array-start) (make-vector 16 '-1))
1839 (set (make-local-variable 'gdb-array-stop) (make-vector 16 '-1))
1840 (set (make-local-variable 'gdb-array-size) (make-vector 16 '-1))
1841 (setq buffer-read-only t))
1844 ;;;; Window management
1846 ;;; The way we abuse the dedicated-p flag is pretty gross, but seems
1847 ;;; to do the right thing. Seeing as there is no way for Lisp code to
1848 ;;; get at the use_time field of a window, I'm not sure there exists a
1849 ;;; more elegant solution without writing C code.
1851 (defun gdb-display-buffer (buf &optional size)
1852 (let ((must-split nil)
1853 (answer nil))
1854 (unwind-protect
1855 (progn
1856 (walk-windows
1857 '(lambda (win)
1858 (if (or (eq gud-comint-buffer (window-buffer win))
1859 (eq gdb-source-window win))
1860 (set-window-dedicated-p win t))))
1861 (setq answer (get-buffer-window buf))
1862 (if (not answer)
1863 (let ((window (get-lru-window)))
1864 (if window
1865 (progn
1866 (set-window-buffer window buf)
1867 (setq answer window))
1868 (setq must-split t)))))
1869 (walk-windows
1870 '(lambda (win)
1871 (if (or (eq gud-comint-buffer (window-buffer win))
1872 (eq gdb-source-window win))
1873 (set-window-dedicated-p win nil)))))
1874 (if must-split
1875 (let* ((largest (get-largest-window))
1876 (cur-size (window-height largest))
1877 (new-size (and size (< size cur-size) (- cur-size size))))
1878 (setq answer (split-window largest new-size))
1879 (set-window-buffer answer buf)))
1880 answer))
1882 (defun gdb-display-source-buffer (buffer)
1883 (set-window-buffer gdb-source-window buffer)
1884 gdb-source-window)
1887 ;;; Shared keymap initialization:
1889 (defun gdb-display-gdb-buffer ()
1890 (interactive)
1891 (gdb-display-buffer
1892 (gdb-get-create-buffer 'gdba)))
1894 (let ((menu (make-sparse-keymap "GDB-Windows")))
1895 (define-key gud-menu-map [displays]
1896 `(menu-item "GDB-Windows" ,menu :visible (eq gud-minor-mode 'gdba)))
1897 (define-key menu [gdb] '("Gdb" . gdb-display-gdb-buffer))
1898 (define-key menu [locals] '("Locals" . gdb-display-locals-buffer))
1899 (define-key menu [registers] '("Registers" . gdb-display-registers-buffer))
1900 (define-key menu [frames] '("Stack" . gdb-display-stack-buffer))
1901 (define-key menu [breakpoints] '("Breakpoints" . gdb-display-breakpoints-buffer))
1902 (define-key menu [display] '("Display" . gdb-display-display-buffer))
1903 (define-key menu [assembler] '("Assembler" . gdb-display-assembler-buffer)))
1905 (defun gdb-frame-gdb-buffer ()
1906 (interactive)
1907 (switch-to-buffer-other-frame
1908 (gdb-get-create-buffer 'gdba)))
1910 (let ((menu (make-sparse-keymap "GDB-Frames")))
1911 (define-key gud-menu-map [frames]
1912 `(menu-item "GDB-Frames" ,menu :visible (eq gud-minor-mode 'gdba)))
1913 (define-key menu [gdb] '("Gdb" . gdb-frame-gdb-buffer))
1914 (define-key menu [locals] '("Locals" . gdb-frame-locals-buffer))
1915 (define-key menu [registers] '("Registers" . gdb-frame-registers-buffer))
1916 (define-key menu [frames] '("Stack" . gdb-frame-stack-buffer))
1917 (define-key menu [breakpoints] '("Breakpoints" . gdb-frame-breakpoints-buffer))
1918 (define-key menu [display] '("Display" . gdb-frame-display-buffer))
1919 (define-key menu [assembler] '("Assembler" . gdb-frame-assembler-buffer)))
1921 (defvar gdb-main-file nil "Source file from which program execution begins.")
1923 ;; layout for all the windows
1924 (defun gdb-setup-windows ()
1925 (gdb-display-locals-buffer)
1926 (gdb-display-stack-buffer)
1927 (delete-other-windows)
1928 (gdb-display-breakpoints-buffer)
1929 (gdb-display-display-buffer)
1930 (delete-other-windows)
1931 (split-window nil ( / ( * (window-height) 3) 4))
1932 (split-window nil ( / (window-height) 3))
1933 (split-window-horizontally)
1934 (other-window 1)
1935 (switch-to-buffer (gdb-locals-buffer-name))
1936 (other-window 1)
1937 (switch-to-buffer
1938 (if gud-last-last-frame
1939 (gud-find-file (car gud-last-last-frame))
1940 (gud-find-file gdb-main-file)))
1941 (setq gdb-source-window (get-buffer-window (current-buffer)))
1942 (split-window-horizontally)
1943 (other-window 1)
1944 (switch-to-buffer (gdb-inferior-io-name))
1945 (other-window 1)
1946 (switch-to-buffer (gdb-stack-buffer-name))
1947 (split-window-horizontally)
1948 (other-window 1)
1949 (switch-to-buffer (gdb-breakpoints-buffer-name))
1950 (other-window 1))
1952 (define-minor-mode gdb-many-windows
1953 "Toggle the number of windows in the basic arrangement."
1954 :group 'gud
1955 :init-value nil
1956 (gdb-restore-windows))
1958 (defun gdb-restore-windows ()
1959 "Restore the basic arrangement of windows used by gdba.
1960 This arrangement depends on the value of `gdb-many-windows'."
1961 (interactive)
1962 (if gdb-many-windows
1963 (progn
1964 (switch-to-buffer gud-comint-buffer)
1965 (delete-other-windows)
1966 (gdb-setup-windows))
1967 (switch-to-buffer gud-comint-buffer)
1968 (delete-other-windows)
1969 (split-window)
1970 (other-window 1)
1971 (switch-to-buffer
1972 (if gud-last-last-frame
1973 (gud-find-file (car gud-last-last-frame))
1974 (gud-find-file gdb-main-file)))
1975 (other-window 1)))
1977 (defun gdb-reset ()
1978 "Exit a debugging session cleanly by killing the gdb buffers and resetting
1979 the source buffers."
1980 (gdb-delete-frames '())
1981 (dolist (buffer (buffer-list))
1982 (if (not (eq buffer gud-comint-buffer))
1983 (with-current-buffer buffer
1984 (if (eq gud-minor-mode 'gdba)
1985 (if (string-match "^\*.+*$" (buffer-name))
1986 (kill-buffer nil)
1987 (if (display-graphic-p)
1988 (remove-images (point-min) (point-max))
1989 (remove-strings (point-min) (point-max)))
1990 (setq left-margin-width 0)
1991 (setq gud-minor-mode nil)
1992 (kill-local-variable 'tool-bar-map)
1993 (setq gud-running nil)
1994 (if (get-buffer-window (current-buffer))
1995 (set-window-margins (get-buffer-window
1996 (current-buffer))
1997 left-margin-width
1998 right-margin-width))))))))
2000 (defun gdb-source-info ()
2001 "Find the source file where the program starts and displays it with related
2002 buffers."
2003 (goto-char (point-min))
2004 (when (search-forward "directory is " nil t)
2005 (looking-at "\\S-*")
2006 (setq gdb-cdir (match-string 0))
2007 (search-forward "Located in ")
2008 (looking-at "\\S-*")
2009 (setq gdb-main-file (match-string 0))
2010 ;; Make sure we are not in the minibuffer window when we try to delete
2011 ;; all other windows.
2012 (if (window-minibuffer-p (selected-window))
2013 (other-window 1))
2014 (delete-other-windows)
2015 (if gdb-many-windows
2016 (gdb-setup-windows)
2017 (gdb-display-breakpoints-buffer)
2018 (gdb-display-display-buffer)
2019 (delete-other-windows)
2020 (split-window)
2021 (other-window 1)
2022 (switch-to-buffer (gud-find-file gdb-main-file))
2023 (setq gdb-source-window (get-buffer-window (current-buffer)))
2024 (other-window 1))))
2026 ;;from put-image
2027 (defun put-string (putstring pos &optional string area)
2028 "Put string PUTSTRING in front of POS in the current buffer.
2029 PUTSTRING is displayed by putting an overlay into the current buffer with a
2030 `before-string' STRING that has a `display' property whose value is
2031 PUTSTRING. STRING is defaulted if you omit it.
2032 POS may be an integer or marker.
2033 AREA is where to display the string. AREA nil or omitted means
2034 display it in the text area, a value of `left-margin' means
2035 display it in the left marginal area, a value of `right-margin'
2036 means display it in the right marginal area."
2037 (unless string (setq string "x"))
2038 (let ((buffer (current-buffer)))
2039 (unless (or (null area) (memq area '(left-margin right-margin)))
2040 (error "Invalid area %s" area))
2041 (setq string (copy-sequence string))
2042 (let ((overlay (make-overlay pos pos buffer))
2043 (prop (if (null area) putstring (list (list 'margin area) putstring))))
2044 (put-text-property 0 (length string) 'display prop string)
2045 (overlay-put overlay 'put-text t)
2046 (overlay-put overlay 'before-string string))))
2048 ;;from remove-images
2049 (defun remove-strings (start end &optional buffer)
2050 "Remove strings between START and END in BUFFER.
2051 Remove only images that were put in BUFFER with calls to `put-string'.
2052 BUFFER nil or omitted means use the current buffer."
2053 (unless buffer
2054 (setq buffer (current-buffer)))
2055 (let ((overlays (overlays-in start end)))
2056 (while overlays
2057 (let ((overlay (car overlays)))
2058 (when (overlay-get overlay 'put-text)
2059 (delete-overlay overlay)))
2060 (setq overlays (cdr overlays)))))
2062 (defun put-arrow (putstring pos &optional string area)
2063 "Put arrow string PUTSTRING in front of POS in the current buffer.
2064 PUTSTRING is displayed by putting an overlay into the current buffer with a
2065 `before-string' \"gdb-arrow\" that has a `display' property whose value is
2066 PUTSTRING. STRING is defaulted if you omit it.
2067 POS may be an integer or marker.
2068 AREA is where to display the string. AREA nil or omitted means
2069 display it in the text area, a value of `left-margin' means
2070 display it in the left marginal area, a value of `right-margin'
2071 means display it in the right marginal area."
2072 (setq string "gdb-arrow")
2073 (let ((buffer (current-buffer)))
2074 (unless (or (null area) (memq area '(left-margin right-margin)))
2075 (error "Invalid area %s" area))
2076 (setq string (copy-sequence string))
2077 (let ((overlay (make-overlay pos pos buffer))
2078 (prop (if (null area) putstring (list (list 'margin area) putstring))))
2079 (put-text-property 0 (length string) 'display prop string)
2080 (overlay-put overlay 'put-text t)
2081 (overlay-put overlay 'before-string string))))
2083 (defun remove-arrow (&optional buffer)
2084 "Remove arrow in BUFFER.
2085 Remove only images that were put in BUFFER with calls to `put-arrow'.
2086 BUFFER nil or omitted means use the current buffer."
2087 (unless buffer
2088 (setq buffer (current-buffer)))
2089 (let ((overlays (overlays-in (point-min) (point-max))))
2090 (while overlays
2091 (let ((overlay (car overlays)))
2092 (when (string-equal (overlay-get overlay 'before-string) "gdb-arrow")
2093 (delete-overlay overlay)))
2094 (setq overlays (cdr overlays)))))
2096 (defun gdb-array-visualise ()
2097 "Visualise arrays and slices using graph program from plotutils."
2098 (interactive)
2099 (when (and (display-graphic-p) gdb-display-string)
2100 (let ((n 0) m)
2101 (catch 'multi-dimensional
2102 (while (eq (aref gdb-array-start n) (aref gdb-array-stop n))
2103 (setq n (+ n 1)))
2104 (setq m (+ n 1))
2105 (while (< m (length gdb-array-start))
2106 (if (not (eq (aref gdb-array-start m) (aref gdb-array-stop m)))
2107 (progn
2108 (x-popup-dialog
2109 t `(,(concat "Only one dimensional data can be visualised.\n"
2110 "Use an array slice to reduce the number of\n"
2111 "dimensions") ("OK" t)))
2112 (throw 'multi-dimensional nil))
2113 (setq m (+ m 1))))
2114 (shell-command (concat "echo" gdb-display-string " | graph -a 1 "
2115 (int-to-string (aref gdb-array-start n))
2116 " -x "
2117 (int-to-string (aref gdb-array-start n))
2119 (int-to-string (aref gdb-array-stop n))
2120 " 1 -T X"))))))
2122 (defun gdb-delete-expression ()
2123 "Delete displayed expression and its frame."
2124 (interactive)
2125 (gdb-enqueue-input
2126 (list (concat "server delete display " gdb-display-number "\n")
2127 'ignore)))
2130 ;; Assembler buffer.
2132 (gdb-set-buffer-rules 'gdb-assembler-buffer
2133 'gdb-assembler-buffer-name
2134 'gdb-assembler-mode)
2136 (def-gdb-auto-updated-buffer gdb-assembler-buffer
2137 gdb-invalidate-assembler
2138 (concat "server disassemble " gdb-main-or-pc "\n")
2139 gdb-assembler-handler
2140 gdb-assembler-custom)
2142 (defun gdb-assembler-custom ()
2143 (let ((buffer (gdb-get-buffer 'gdb-assembler-buffer))
2144 (gdb-arrow-position) (address) (flag))
2145 (if gdb-current-address
2146 (progn
2147 (save-excursion
2148 (set-buffer buffer)
2149 (remove-arrow)
2150 (goto-char (point-min))
2151 (re-search-forward gdb-current-address)
2152 (setq gdb-arrow-position (point))
2153 (put-arrow "=>" gdb-arrow-position nil 'left-margin))))
2154 ;; remove all breakpoint-icons in assembler buffer before updating.
2155 (save-excursion
2156 (set-buffer buffer)
2157 (if (display-graphic-p)
2158 (remove-images (point-min) (point-max))
2159 (remove-strings (point-min) (point-max))))
2160 (save-excursion
2161 (set-buffer (gdb-get-buffer 'gdb-breakpoints-buffer))
2162 (goto-char (point-min))
2163 (while (< (point) (- (point-max) 1))
2164 (forward-line 1)
2165 (if (looking-at "[^\t].*breakpoint")
2166 (progn
2167 (looking-at
2168 "\\([0-9]*\\)\\s-*\\S-*\\s-*\\S-*\\s-*\\(.\\)\\s-*0x0\\(\\S-*\\)")
2169 ;; info break gives '0x0' (8 digit) while dump gives '0x' (7 digit)
2170 (setq address (concat "0x" (match-string 3)))
2171 (setq flag (char-after (match-beginning 2)))
2172 (save-excursion
2173 (set-buffer buffer)
2174 (goto-char (point-min))
2175 (if (re-search-forward address nil t)
2176 (let ((start (progn (beginning-of-line) (- (point) 1)))
2177 (end (progn (end-of-line) (+ (point) 1))))
2178 (if (display-graphic-p)
2179 (progn
2180 (remove-images start end)
2181 (if (eq ?y flag)
2182 (put-image breakpoint-enabled-icon (point)
2183 "breakpoint icon enabled"
2184 'left-margin)
2185 (put-image breakpoint-disabled-icon (point)
2186 "breakpoint icon disabled"
2187 'left-margin)))
2188 (remove-strings start end)
2189 (if (eq ?y flag)
2190 (put-string "B" (point) "enabled" 'left-margin)
2191 (put-string "b" (point) "disabled"
2192 'left-margin))))))))))
2193 (if gdb-current-address
2194 (set-window-point (get-buffer-window buffer) gdb-arrow-position))))
2196 (defvar gdb-assembler-mode-map
2197 (let ((map (make-sparse-keymap)))
2198 (suppress-keymap map)
2199 map))
2201 (defun gdb-assembler-mode ()
2202 "Major mode for viewing code assembler.
2204 \\{gdb-assembler-mode-map}"
2205 (setq major-mode 'gdb-assembler-mode)
2206 (setq mode-name "Assembler")
2207 (setq left-margin-width 2)
2208 (setq buffer-read-only t)
2209 (use-local-map gdb-assembler-mode-map)
2210 (gdb-invalidate-assembler)
2211 (gdb-invalidate-breakpoints))
2213 (defun gdb-assembler-buffer-name ()
2214 (with-current-buffer gud-comint-buffer
2215 (concat "*Machine Code " (gdb-get-target-string) "*")))
2217 (defun gdb-display-assembler-buffer ()
2218 (interactive)
2219 (gdb-display-buffer
2220 (gdb-get-create-buffer 'gdb-assembler-buffer)))
2222 (defun gdb-frame-assembler-buffer ()
2223 (interactive)
2224 (switch-to-buffer-other-frame
2225 (gdb-get-create-buffer 'gdb-assembler-buffer)))
2227 (defun gdb-invalidate-frame-and-assembler (&optional ignored)
2228 (gdb-invalidate-frames)
2229 (gdb-invalidate-assembler))
2231 (defun gdb-invalidate-breakpoints-and-assembler (&optional ignored)
2232 (gdb-invalidate-breakpoints)
2233 (gdb-invalidate-assembler))
2235 (defvar gdb-prev-main-or-pc nil)
2237 ;; modified because if gdb-main-or-pc has changed value a new command
2238 ;; must be enqueued to update the buffer with the new output
2239 (defun gdb-invalidate-assembler (&optional ignored)
2240 (if (and (gdb-get-buffer 'gdb-assembler-buffer)
2241 (or (not (member 'gdb-invalidate-assembler
2242 (gdb-get-pending-triggers)))
2243 (not (string-equal gdb-main-or-pc gdb-prev-main-or-pc))))
2244 (progn
2245 ;; take previous disassemble command off the queue
2246 (save-excursion
2247 (set-buffer gud-comint-buffer)
2248 (let ((queue gdb-idle-input-queue) (item))
2249 (while queue
2250 (setq item (car queue))
2251 (if (equal (cdr item) '(gdb-assembler-handler))
2252 (delete item gdb-idle-input-queue))
2253 (setq queue (cdr queue)))))
2254 (gdb-enqueue-idle-input
2255 (list (concat "server disassemble " gdb-main-or-pc "\n")
2256 'gdb-assembler-handler))
2257 (gdb-set-pending-triggers
2258 (cons 'gdb-invalidate-assembler
2259 (gdb-get-pending-triggers)))
2260 (setq gdb-prev-main-or-pc gdb-main-or-pc))))
2262 (defun gdb-get-current-frame ()
2263 (if (not (member 'gdb-get-current-frame (gdb-get-pending-triggers)))
2264 (progn
2265 (gdb-enqueue-idle-input
2266 (list (concat "server frame\n") 'gdb-frame-handler))
2267 (gdb-set-pending-triggers
2268 (cons 'gdb-get-current-frame
2269 (gdb-get-pending-triggers))))))
2271 (defun gdb-frame-handler ()
2272 (gdb-set-pending-triggers
2273 (delq 'gdb-get-current-frame (gdb-get-pending-triggers)))
2274 (save-excursion
2275 (set-buffer (gdb-get-create-buffer 'gdb-partial-output-buffer))
2276 (goto-char (point-min))
2277 (if (looking-at "^#[0-9]*\\s-*0x\\S-* in \\(\\S-*\\)")
2278 (setq gdb-current-frame (match-string 1))
2279 (if (looking-at "^#[0-9]*\\s-*\\(\\S-*\\)")
2280 (setq gdb-current-frame (match-string 1))))))
2282 (provide 'gdb-ui)
2284 ;;; gdb-ui.el ends here